29.07.2013, 15:41
pawn Код:
if(pClan[i] == 1 || pClan[i] == 2 || pClan[i] == 0)
If the value of pClan is either 1, 2 or 0, the message will be shown to the player.
I think you want to change that line to
pawn Код:
if(pClan[i] == pClan[playerid])
EDIT: [XST]O_x beat me to it ;P