11.08.2010, 17:11
Quote:
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 Код:
SetTimer("newcommand1", 60000, true); Код:
public newcommand1(playerid) { { { SendClientMessage(playerid, COLOR_RED,"NEW! Type /alive to see the players that are alive"); } } return 1; } |
pawn Код:
public newcommand1()
{
SendClientMessageToAll(COLOR_RED,"NEW! Type /alive to see the players that are alive");
return 1;
}