Failing zcmd + sscanf.. help?
#4

pawn Код:
CMD:aheal(playerid, params[])
{
    new targetid, Float:health, targetname[MAX_PLAYER_NAME], playername[MAX_PLAYER_NAME],string[128];
    if(!IsPlayerAdmin(playerid)) return SendClientMessage(playerid, COLOR_RED, "This command is only for administrators!");
    if(sscanf(params,"uf", targetid, health)) return SendClientMessage(playerid, COLOR_RED, "USAGE: /aheal [playerid/partofname] [health]");
    if(targetid == INVALID_PLAYER_ID) return SendClientMessage(playerid, COLOR_RED, "Invalid player ID!");
    SetPlayerHealth(targetid, health);
    GetPlayerName(targetid, targetname, MAX_PLAYER_NAME);
    GetPlayerName(playerid, playername, MAX_PLAYER_NAME);
    format(string, sizeof(string), "You've set %s's (%d) health to %0.1f.", targetname, targetid, health);
    SendClientMessage(playerid,COLOR_WHITE,string);
    format(string, sizeof(string), "%s has set your health to %0.1f.", playername, health);
    SendClientMessage(targetid,COLOR_WHITE,string);
    return 1;
}
Reply


Messages In This Thread
Failing zcmd + sscanf.. help? - by Region123 - 02.01.2012, 15:27
Re: Failing zcmd + sscanf.. help? - by Konstantinos - 02.01.2012, 15:31
Re: Failing zcmd + sscanf.. help? - by Region123 - 02.01.2012, 15:34
Re: Failing zcmd + sscanf.. help? - by Mokerr - 02.01.2012, 15:35
Re: Failing zcmd + sscanf.. help? - by Region123 - 02.01.2012, 15:38
Re: Failing zcmd + sscanf.. help? - by Danyal - 02.01.2012, 15:42
Re: Failing zcmd + sscanf.. help? - by Konstantinos - 02.01.2012, 15:44
Re: Failing zcmd + sscanf.. help? - by Region123 - 02.01.2012, 15:45
Re: Failing zcmd + sscanf.. help? - by Danyal - 02.01.2012, 15:47

Forum Jump:


Users browsing this thread: 1 Guest(s)