05.01.2011, 18:37
Yep money is an integer so thats why you get tag mismatch.
Shouldn't your message function look like this also,
Shouldn't your message function look like this also,
pawn Код:
stock SendAdminMessage(color,const string[])
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(!IsPlayerConnected(i))continue;
if(PlayerInfo[playerid][pAdminLevel] > 0)
SendClientMessage(i, color, string);
}
}

