29.02.2012, 19:41
"SendRadioMessage" is no stock
Try adding
Edit it to fit your script then replace SendRadioMessage with SendToGroup
How is it suppose to "switch (PlayerInfo[playerid][pMember])" when you haven't even added that IF in the CMD?
Try adding
pawn Код:
stock SendToGroup(groupid, colour, string[]) {
if(groupid > 0) {
foreach(Player, i) {
if(playerVariables[i][pStatus] == 1 && playerVariables[i][pGroup] == groupid) {
SendClientMessage(i, colour, string);
}
}
}
return 1;
}
How is it suppose to "switch (PlayerInfo[playerid][pMember])" when you haven't even added that IF in the CMD?