How to add a reason?
#1

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;
}
Reply
#2

pawn Код:
CMD:slap(playerid,params[])
{
    if(pInfo[playerid][pAdminLevel] >= 2 || IsPlayerAdmin(playerid))
    {
        new targetid, reason[128], string[256];
        if(sscanf(params, "us[128]", targetid,reason)) return  SendClientMessage(playerid,-1,""chat" /slap [playerid] [reason]"); //after this, do whatever you want to with the reason.
        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;
}
Reply
#3

Doesn't work.
Reply
#4

What's the issue?
Reply
#5

Код:
CMD:slap(playerid,params[])
{
    if(pInfo[playerid][pAdminLevel] >= 2 || IsPlayerAdmin(playerid))
    {
        new targetid, reason[128], string[256];
        if(sscanf(params, "us[128]", targetid,reason)) return  SendClientMessage(playerid,-1,""chat" /slap [playerid] [reason]"); //after this, do whatever you want to with the reason.
        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 for %s",PlayerName(targetid), reason);
            SendClientMessageToAll(-1,string);
        }
        else
        {
            format(string, sizeof(string), ""chat""COL_RED" %s %s has slapped %s for %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!");
    }
Like this maybe?
Reply
#6

You forgot to include the reason in the message sent.

pawn Код:
CMD:slap(playerid,params[])
{
    if(pInfo[playerid][pAdminLevel] >= 2 || IsPlayerAdmin(playerid))
    {
        new targetid, reason[128], string[256];
        if(sscanf(params, "us[128]", targetid,reason)) return  SendClientMessage(playerid,-1,""chat" /slap [playerid] [reason]"); //after this, do whatever you want to with the reason.
        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 for reason: %s",PlayerName(targetid), reason);
            SendClientMessageToAll(-1,string);
        }
        else
        {
            format(string, sizeof(string), ""chat""COL_RED" %s %s has 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


Forum Jump:


Users browsing this thread: 2 Guest(s)