25.05.2009, 20:17
Suggest you use:
You can Mod it to work for other Factions and also as /r
pawn Код:
forward SendCopMessage(color, text[]);
public SendCopMessage(color, text[])
{
for(new i = 0; i < MAX_PLAYERS; i ++)
{
if(IsPlayerConnected(i))
{
if(PlayerInfo[i][pMember] == 1 || PlayerInfo[i][pLeader] == 1)
{
SendClientMessage(i, color, text);
}
}
}
return 1;
}