Answered problem GSC MenuPlayer

Herdox Modz

New Member
Messages
12
Reaction score
5
Points
3
Hi everyone I have a problem in it is more than 9 in the game and I go into my player menu disappears and all the names I'd like to create a 2nd page name to be quiet thank you to 'm poura who help me solve this problem
 

TheHiddenHour

Veteran
Messages
58
Reaction score
49
Points
803
Hi everyone I have a problem in it is more than 9 in the game and I go into my player menu disappears and all the names I'd like to create a 2nd page name to be quiet thank you to 'm poura who help me solve this problem
Are you using the \n fix?
 

TheHiddenHour

Veteran
Messages
58
Reaction score
49
Points
803
You do not have permission to view link Log in or register now.
Code:
verificationToColor(status)
{
    if (status == "Host")
        return "^3H^7ost";
    if (status == "Co-Host")
        return "^3C^7o-^5H^7ost";
    if (status == "Admin")
        return "^3A^7dmin";
    if (status == "VIP")
        return "^3V^7IP";
    if (status == "Verified")
        return "^3V^7erified";
    else
        return "^3U^7nverified";
}
This might be your problem. What this does is add unnecessary characters to your options. Try replacing it with something more simple like this
Code:
verificationToColor(status)
{
    if (status == "Host")
        return "^2H";
    if (status == "CoHost")
        return "^5CH";
    if (status == "Admin")
        return "^1A";
    if (status == "VIP")
        return "^4VIP";
    if (status == "Verified")
        return "^3V";
    else
        return "^7";
}
 
Top