Add A Reason
#7

You must have put them in the wrong order. Try this:

pawn Код:
CMD:wslap(playerid,params[])
{
    if(pInfo[playerid][pAdminLevel] >= 1)
    {
        new targetid,string[256], reason[60];
        if(sscanf(params, "u", targetid)) return  SendClientMessage(playerid,-1,""chat" /wslap [playerid]");
        if(!IsPlayerConnected(targetid)) return SendClientMessage(playerid,-1,""chat" Player is not online");
        if(strlen(reason) > 60 || strlen(reason) < 2) return SendClientMessage(playerid, -1, ""chat" Reason must be between 2 and 60 characters");

        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 - Reason: %s",GetAdminName(playerid),PlayerName(playerid),PlayerName(targetid), reason);
        SendClientMessageToAll(-1,string);
    }
    else {
        SendClientMessage(playerid,-1,""chat""COL_LIGHTBLUE" You do not have the right admin permissions for this command!");
    }
    return 1;
}
Reply


Messages In This Thread
Add A Reason - by NoahF - 22.06.2013, 13:24
Re: Add A Reason - by SMW - 22.06.2013, 13:27
Re: Add A Reason - by Kindred - 22.06.2013, 13:35
Re: Add A Reason - by NoahF - 22.06.2013, 13:37
Re: Add A Reason - by SMW - 22.06.2013, 15:24
Re: Add A Reason - by Jefff - 22.06.2013, 15:25
Re: Add A Reason - by Kindred - 22.06.2013, 15:47

Forum Jump:


Users browsing this thread: 1 Guest(s)