08.10.2016, 22:21
Quote:
#define MinutosPayDay 10 // a cada 10 minutos public OnGameModeInit() { SetTimer("pagamento", MinutosPayDay * 60000, true); return true; } forward pagamento(); public pagamento() { for(new i = 0; i != MAX_PLAYERS; ++i) if(IsPlayerConnected(i)) { SetPlayerScore(i, GetPlayerScore(i) + 3); //Oque mais Quiser... } return SendClientMessageToAll(-1, "Vocк ficou 10 minutos, Online e recebeu o Payday.); } |