Converting command
#1

Hello guys, is anyone able to help me convert this zcmd to strcmd
pawn Код:
CMD:heal(playerid, params[])
        {
        if(gPlayerClass[playerid] == MEDIC_CLASS)
        {
        new Float:health, user, Float:x, Float:y, Float:z;
        if (sscanf(params, "i", user)) return SendClientMessage(playerid, COLOR_WHITE, "[USAGE]: /heal [playerid]");
        GetPlayerPos(user, x, y, z); GetPlayerHealth(user, health);
        if (!IsPlayerInRangeOfPoint(playerid, 5, x, y, z)) return SendClientMessage(playerid, COLOR_WHITE, "You Are Not Close Enough To The Player!");
        if (health < 1) return SendClientMessage(playerid, COLOR_WHITE, "Player's Health Is Above 1, And Cannot Be Healed!");
        SendClientMessage(playerid, COLOR_WHITE, "You have just been healed!");
        SetPlayerHealth(playerid, health + 50);
        }
        else return SendClientMessage(playerid,COLOR_WHITE,"You Are Not An Medic!");
        return 1;
Reply


Messages In This Thread
Converting command - by John Rockie - 15.02.2012, 21:53
Re: Converting command - by John Rockie - 18.02.2012, 13:46
Re: Converting command - by Vince - 18.02.2012, 14:12
Re: Converting command - by Twisted_Insane - 18.02.2012, 14:14
Re: Converting command - by Guitar - 18.02.2012, 14:20

Forum Jump:


Users browsing this thread: 1 Guest(s)