05.12.2014, 13:55
pawn Код:
public payday()
{
for(new i = 0; i < MAX_PLAYERS; i++) if(IsPlayerConnected(i))
{
GameTextForPlayer(i, "PAYDAY + 10 0000$ and + 10 score", 1000, 1);
SetPlayerScore(playerid,GetPlayerScore(i)+10);
GivePlayerMoney(i, 10000); // You can change the ammount of money.
}
return 1;
}

