Need help with this Command[+rep]
#4

First of all indent your code. Second of all, if you'd read on the documentation on sscanf, you'd be able to easily do this yourself, however I will do it for you this time:
pawn Код:
COMMAND:jail(playerid, params[])
{
    if(PlayerInfo[playerid][PlayerAdmin] <= JAIL_LEVEL) return SendClientMessage(playerid,COLOR_WHITE, "SERVER: Unknown command.");
    new
        ID,
        reason[ 120 ]
    ;
    if(sscanf(params,"uS[120]", ID, reason)) return SendClientMessage(playerid, COLOR_WHITE, ""WHITE"Usage: "GREEN"/jail "WHITE"[playerid] [reason(optional)]");
    new string[128];
    if(IsPlayerConnected(ID))
    {
        new name[MAX_PLAYER_NAME];
        GetPlayerName(playerid, name, sizeof(name));
        format(string,sizeof(string),"You have been Admin jailed by "SININE"%s%s%s",name, ( reason[0] ? (" Reason: ") : (""), reason );
        SendClientMessage(ID,COLOR_SININE, string);
        new rand = random(sizeof(RandomJail));
        SetPlayerPos(ID, RandomJail[rand][0], RandomJail[rand][1], RandomJail[rand][2]);
        ResetPlayerWeapons(ID);
        SetPlayerInterior(ID, 3);
    }
    return 1;
}
Reply


Messages In This Thread
Need help with this Command[+rep] - by ZBits - 21.01.2013, 00:32
Re: Need help with this Command[+rep] - by Dragonborn - 21.01.2013, 00:38
Re: Need help with this Command[+rep] - by ZBits - 21.01.2013, 00:40
Re: Need help with this Command[+rep] - by LarzI - 21.01.2013, 00:55
Re: Need help with this Command[+rep] - by Jewell - 21.01.2013, 01:24
Re: Need help with this Command[+rep] - by batonsa - 21.01.2013, 08:13

Forum Jump:


Users browsing this thread: 1 Guest(s)