11.08.2010, 17:08
I set A timer to say a message every minute and it floods the chat every minute how can i make it say the message once a minute instead of like 20? here is the code i use.
Under OnGameModeInit
Rest Of The Code
Under OnGameModeInit
Код:
SetTimer("newcommand1", 60000, true);
Код:
public newcommand1(playerid) { { { SendClientMessage(playerid, COLOR_RED,"NEW! Type /alive to see the players that are alive"); } } return 1; }