21.05.2010, 09:46
Run a timer with how long you want a random message to go.
Код:
new RandomMSG[][] = { "we have houses on the server earn money to buy one", "Random Message 2", "Random Message 3" };
Код:
SetTimer("SendMSG", 60000, true); new randMSG = random(sizeof(RandomMSG)); SendClientMessageToAll(COLOR_FLBLUE, RandomMSG[randMSG]);