19.06.2011, 07:33
Hey guys. Don't know if it's possible but,
My script i have made has a clan system. simple really /invite. then the other players name has a tag added to it '[CLAN1]'
Now i want on /uninvite
To remove '[CLAN1] from the name.
So far i got this.
But i have no idea what to put in there. Any one got any ideas??
My script i have made has a clan system. simple really /invite. then the other players name has a tag added to it '[CLAN1]'
Now i want on /uninvite
To remove '[CLAN1] from the name.
So far i got this.
pawn Код:
if(strfind(plname, "[CLAN1]", true) != -1)
{
SetPlayerName(plname, "");
}