19.10.2013, 00:40
Do you change SendClanMessage(color, string[]) to SendClanMessage(color, clanid, string[]) in your script?
//Edit:
Try this....
//Edit:
Try this....
PHP код:
stock SendClanMessage(color, string[])
{
foreach(Player, i)
{
if(PlayerInfo[i][pClan] == PlayerInfo[playerid][pClan])
{
SendClientMessage(i, color, string);
}
}
return 1;
}