01.03.2012, 12:30
Quote:
"SendRadioMessage" is no stock
Try adding pawn Код:
How is it suppose to "switch (PlayerInfo[playerid][pMember])" when you haven't even added that IF in the CMD? |
On Topic.
On the line
pawn Код:
format(string, sizeof(string), " %s %s: %s ,over ^", rank, GetPlayerName(playerid), params);
pawn Код:
GetPlayerName(playerid, const name[], len))
pawn Код:
stock GetName(playerid)
{
new name[24];
GetPlayerName(playerid,name,sizeof(name));
return name;
}
Now on the line
pawn Код:
format(string, sizeof(string), " %s %s: %s ,over ^", rank, GetPlayerName(playerid), params);
Код:
GetName(playerid)
Now that should fix two errors, to fix the last one. Post your SendRadioMessage function.