19.04.2017, 04:33
your problem is here
PlayerName(playerid),reason,admin
you are in wrong with some of adresses did u define playername(playerid) ?
and also this stock will ban player instatly and player wont see the dialog )
so you have to do like this
PlayerName(playerid),reason,admin
you are in wrong with some of adresses did u define playername(playerid) ?
and also this stock will ban player instatly and player wont see the dialog )
so you have to do like this
PHP код:
forward BanExPlayer(playerid,reason[]);
Stock BanPlayer(playerid, reason[], admin[])
{
// here shows some thing you want to player see
SetTimerEx("BanExPlayer",1000,false,"ds",playerid,reason);
return 1;
}
public BanExPlayer(playerid,reason[])
{
BanEx(playerid,reason);
return 1;
}