01.04.2012, 23:23
Around top of Script:
Around end of Script:
i think that all
Код:
new RandomMSG[][] = { "Message 1", //edit "Message 2", //edit "Message 3" //edit };
Код:
public OnGameModeInit() { DisableInteriorEnterExits(); SetTimer("SendMSG", 300000, true); //300000 is 5min (60000 X min to find the minutes) return 1; }
Код:
forward SendMSG(); public SendMSG() { new randMSG = random(sizeof(RandomMSG)); SendClientMessageToAll(COLOR_MSGCOLOR, RandomMSG[randMSG]); //Remember to change the color }