06.07.2013, 13:12
I did not understand you, but I will try to help you.
EDIT: I did not saw the previous post, sorry.
pawn Код:
new GameTextTimer;
forward GameTextTimer();
public OnGameModeInit() {
GameTextTimer = SetTimer("GameText", 2000, true); // the timer will checks every two seconds.
}
public GameTextTimer() {
for(new id=0;id<MAX_PLAYERS;id++) {
GameTextForPlayer(playerid, "Your message here", 3000, 5);
}
}