zommer0532
Veteran
- Messages
- 167
- Reaction score
- 63
- Points
- 813
when there is 10+ players in the lobby, why cant i see their names in player menu?! How do i fix?
Try to remove players clan tagwhen there is 10+ players in the lobby, why cant i see their names in player menu?! How do i fix?
Ah okayi know why but idk how to setup overflow fix
If you're done, is your question answered and can we close this thread?im done my base lol, im not restarting
Are you using \n to draw your options?when there is 10+ players in the lobby, why cant i see their names in player menu?! How do i fix?
Then it might be the amount of characters you're passing through a text element.Sadly, yes
Answered.Then it might be the amount of characters you're passing through a text element.
The \n fix gets all of your option text and combines it together.
Say you have the options
What the \n fix does is makes your text into this string format: "Main Menu\nFun Menu\nTheme Menu" and then set your option text HUD to that string
- Main Menu
- Fun Menu
- Theme Menu
If you count it, that's 31 characters in total. If the max amount of characters allowed in a text HUD is only 30, and you're trying to pass 31 through, the text HUD is going to simply disappear.
The easy to fix this is to minimize the amount of characters in your string.
Instead of using things like [^5CoHost^7] for your verifications, use something simple like [^5CH^7]. This will reduce 12 characters to 8, so you save them.
You could also make a function to get rid of clantags in the option text.
The other way to fix this is to not use the \n fix
You could convert your base to use individual option huds instead of using the \n fix. What this will do is give you the option to use 300+ chars in every option instead of 300 in total. However, this also means that you are using more HUDs. You will no longer be using 1 HUD for your options, but instead use 1 HUD per displayed option.