11.02.2014, 01:42
Alright, the stock you got is Path(playerid) where it requires the ID of the player.
and in your unban command, you wrote Path(unbanname) where unbanname is the name not the ID.
Therefore make another stock for it:
Then in your unban command use PathEx(unbanname);
and in your unban command, you wrote Path(unbanname) where unbanname is the name not the ID.
Therefore make another stock for it:
pawn Код:
stock PathEx(playername[])
{
new str[128];
format(str,sizeof(str),UserPath,playername);
return str;
}