18.08.2013, 19:06
pawn Code:
//OnPlayerConnect
SetPlayerScore(playerid, GetPlayerScore(playerid) +1);
//OnGameModeInIt
SetTimer("ScoreGiver",180000,1);
//timer
forward ScoreGiver(playerid);
public ScoreGiver(playerid)
{
SetPlayerScore(playerid, GetPlayerScore(playerid) +1);
GivePlayerMoney(playerid, 5000);
return 1;
}