22.06.2013, 13:24
How would I add a reason to this command?
Код:
CMD:wslap(playerid,params[]) { if(pInfo[playerid][pAdminLevel] >= 1) { new targetid,string[256]; if(sscanf(params, "u", targetid)) return SendClientMessage(playerid,-1,""chat" /wslap [playerid]"); if(!IsPlayerConnected(targetid)) return SendClientMessage(playerid,-1,""chat" Player is not online"); new Float:posxx[3]; GetPlayerPos(targetid, posxx[0], posxx[1], posxx[2]); SetPlayerPos(targetid, posxx[0], posxx[1], posxx[2]+4); format(string, sizeof(string), ""chat""COL_LIGHTBLUE" %s %s has warned slapped %s",GetAdminName(playerid),PlayerName(playerid),PlayerName(targetid)); SendClientMessageToAll(-1,string); } else { SendClientMessage(playerid,-1,""chat""COL_LIGHTBLUE" You do not have the right admin permissions for this command!"); } return 1; }