16.02.2010, 23:05
ok i wanna add a text draw on payday like every our it shows on the player screen a textdraw that sayz payday you get $$$$$$$ + 1 point.if soeone can help me i will really apreciaqte it thanks
pawn Код:
//OnGameModeInit
SetTimer("PayDay",60*60*1000,1);
//
//NOT in any callback
forward PayDay();
public PayDay()
{
for(new i; i <MAX_PLAYERS; i++)
{
SetPlayerScore(i,GetPlayerScore(i)+1);
GivePlayerMoney(i,5000);
}
}