Outdated Help please=(

MagnateSnake13

Veteran
Messages
25
Reaction score
9
Points
783
Mi captura perfecta - captura de pantalla 2016-06-22 01-44-48.png
 

Harry

Certified Sick ℂunt
Premium Member
Messages
1,263
Reaction score
969
Points
973
Code:
//credits to YouViolateMe
recreateText()
{
    self endon("disconnect");
    self endon("death");

    self thread submenu(input); // ZeiiKeN's specific submenu function
}
//Credits to dtx12, jwm614, and xTurntUpLobbies
overflowFix()
{
    level endon("game_ended");
    level.test = createServerFontString("default", 1.5);
    level.test setText("xTUL");               
    level.test.alpha = 0;
   
    while(1)
    {
        level waittill("textset");
       
        self iprintln(level.result + " texts set"); // I used this for debugging and counting the text creations
       
        if(level.result >= 50)
        {
            level.test clearAllTextAfterHudElem();
            level.result = 0;

            foreach(player in level.players)
            {
                if(player.MenuOpen) // ZeiiKeN-specific way of knowing if the menu is currently opened
                {
                    player recreateText();
                }
            }
        }
       
        wait 0.01;   
    }
}

Next time, do a bit of googling. If this doesn't work, then you need to be a 1337 HaXoR and work with this script and edit it...
 
Top