14.02.2015, 06:37
or try this
Код:
public OnFilterScriptInit() { RandMsg = 0; SetTimer("GlobalAnnouncement" ,10000,true); // Change the time if you want to. But remember, 1000 = 1 sec return 1; } forward GlobalAnnouncement(); public GlobalAnnouncement() { for(new i=0; i<5; i++) { if(RandMsg >= 30) { RandMsg = 1; } SendClientMessageToAll(COL_WHITE,ANNOUNCEMENTS[RandMsg]); RandMsg++; } return 1; }