19.11.2013, 19:46
Is it possible to have a system where if a player wins big money in the casino, it will show a notification to the admins showing how much they have won?
public ABroadCast(color,const string[])
{
foreach(new i : Player)
{
if (PlayerInfo[i][pAdmin] >= 1)
{
SendClientMessage(i, color, string);
}
}
return 1;
}
format(string, 256, "[Winning]: [%d]%s has won $%d",playerid, playername,money);
ABroadCast(COLOR_RED,string);
Something like:
pawn Код:
pawn Код:
|