Posts
503
Respect
391Add +1
Forum Rank
Zombie Enslaver
Primary Group
Member
Login Issues
Forgot password?Activate Issues
Account activation email not received? Wrong account activation email used?Other Problems?
Contact Support - Help Center Get help on the UGX Discord. Join it now!thread randomstartmessage();
zombiemode::main();
randomstartmessage()
{
flag_wait( "all_players_connected" );
/*
one of these "^" / add a number "3"/ and a letter "r" like "^3r"/ this will make the letter "r" yellow.
*/
phrase = [];
phrase[0] = "your random message";
phrase[1] = "ran^3dom altmessage";
phrase[2] = "???";
phrase[3] = "???";
phrase[4] = "";
//phrase[5] = "random 5"
/*
Colors
^1 = red
^2 = green
^3 = yellow
^4 = Blue
^5 = light blue
^6 = Purple (pink)
^7 = white
^8 = random
^0 = black
*/
color = [];
color[0] = "^1";
color[1] = "^2";
color[2] = "^3";
color[3] = "^4";
color[4] = "^5";
i = RandomInt(phrase.size);
j = RandomInt(color.size);
iPrintLnBold( color[j] , phrase[i] );
}