Command problem
#9

pawn Код:
CMD:setarmour(playerid, params[])
{
    if(pInfo[playerid][pLevel] < 2) return ShowMessage(playerid, red, 1);
    new id, Float:amount;
    if(sscanf(params, "uf", id, amount)) return SendClientMessage(playerid, yellow, "Usage: /Setarmour <Player ID/Part of nick> <Amount> (0-99)!");
    if(!IsPlayerConnected(id)) return ShowMessage(playerid, red, 2);
    if(!(0.0 <= amount <= 99.0)) return SendClientMessage(playerid, red, "Invalid amount!");
    format(Jstring, sizeof(Jstring), "You have set %s's Armour to '%0.2f'", GetName(id), amount);
    SendClientMessage(playerid, yellow, Jstring);
    format(Jstring, sizeof(Jstring), "Admin '%s' has set your Armour to '%0.2f'", GetName(playerid), amount);
    SendClientMessage(id, yellow, Jstring);
    SetPlayerArmour(id, amount);
    CommandToAdmins(playerid, "setarmour");
    return 1;
}
idiot_count++;
Reply


Messages In This Thread
Command problem - by Mijata - 04.06.2016, 00:06
Re: Command problem - by WhiteGhost - 04.06.2016, 00:08
Re: Command problem - by Onfroi - 04.06.2016, 00:10
Re: Command problem - by CSLangdale - 04.06.2016, 00:16
Re: Command problem - by MBilal - 04.06.2016, 00:33
Re: Command problem - by Mijata - 04.06.2016, 00:51
Re: Command problem - by Dayrion - 04.06.2016, 01:14
Re: Command problem - by AbyssMorgan - 04.06.2016, 05:34
Re: Command problem - by Threshold - 04.06.2016, 06:19

Forum Jump:


Users browsing this thread: 1 Guest(s)