12.06.2010, 06:56
Код:
stock OnBankRob(playerid, bankid, amount) // this goes anywhere in the script outside of a callback or function { new string[128], pNick[MAX_PLAYER_NAME]; GetPlayerName(playerid, pNick, MAX_PLAYER_NAME); switch(bankid) { case LS_BANK: format(string, sizeof string, "%s (%d) has stolen $%d from The Los Santos Bank In Pershing Square!", pNick, playerid, amount); } SendClientMessage(playerid,TEAL, string); return 1; }