24.12.2011, 18:35
It always say That use is not connected and i compiled it right
in other samp versions it works
but why in 0.3d NOT?
please
in other samp versions it works
but why in 0.3d NOT?
please
Код:
CMD:kick(playerid, params[]) { if(PInfo[playerid][pAdmin] >= 3) { new pID; if(sscanf(params, "us[60]", pID, params)) return SendClientMessage(playerid, COLOR_RED, "* Usage: /Kick < Player ID > < Reason >"); if(!IsPlayerConnected(pID)) return SendClientMessage(playerid, COLOR_RED, "That user is not connected!"); return Kick(pID); } else return AdminCMD(playerid, 3); }