07.05.2013, 20:01
How would I add a reason for slapping to this command?
Код:
CMD:slap(playerid,params[])
{
if(pInfo[playerid][pAdminLevel] >= 2 || IsPlayerAdmin(playerid))
{
new targetid,string[256];
if(sscanf(params, "u", targetid)) return SendClientMessage(playerid,-1,""chat" /slap [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]+20);
if(IsPlayerAdmin(playerid))
{
format(string, sizeof(string), ""chat" RCON Admin has slapped %s",PlayerName(targetid));
SendClientMessageToAll(-1,string);
}
else
{
format(string, sizeof(string), ""chat""COL_RED" %s %s has 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;
}

