help whit /heal command
#1

Problem is when i wanna /heal player and if player have 100% healths it heal him anywhay how to block that? Here is command

pawn Код:
dcmd_heal(playerid, params[])
{
    if(lije1[playerid] == 0 ) return SendClientMessage(playerid ,0xFF0000FF, "Moras biti zaposlen kao lijecnik kako bi mogao lijeciti ljude!");
        new id,optional[16],health;
        if (sscanf(params, "uz", id,optional))
        {
            SendClientMessage(playerid,0xFFB400FF, "Napisi: /Heal ID/Nick Helta: (1-100)");
        }
        else if (id == INVALID_PLAYER_ID)
        {
            new string[256];
            format(string,sizeof(string),"Igrac nije pronaden");
            SendClientMessage(playerid,0xFFB400FF,string);
            return 1;
        }
        else
        {
            if (sscanf(optional,"d",health))
            {
              health=90;
            }
            new Float:X,Float:Y,Float:Z,Float:InRange;
            GetPlayerPos(playerid,Float:X,Float:Y,Float:Z);
            InRange=IsPlayerInRangeOfPoint(id,24-(lije1[playerid] == 1 ),X,Y,Z);
            if (InRange>0)
            {
           
        if (id == playerid) return SendClientMessage(playerid, 0xFF0005FF, "Nemozes samog sebe ljeciti!");
        new Float:health2;
        GetPlayerHealth(playerid,health2);
        if (health2 > 95) return SendClientMessage(playerid, 0xFF0005FF, "Taj igrac ima preko >| 95 POSTO |< helti!");
                SetPlayerHealth(id,health);
              new Name2[MAX_PLAYER_NAME];
                GetPlayerName(playerid,Name2,sizeof(Name2));
                new string[256];
                format(string,sizeof(string),"[%d] %s te izljecio na %d\%",playerid,Name2,health);
                SendClientMessage(id,0xFFB400FF,string);
                GetPlayerName(id,Name2,sizeof(Name2));
                format(string,sizeof(string),"izljecio si [%d] %s na %d\"",id,Name2,health);
                SendClientMessage(playerid,0xFFB400FF,string);
                GivePlayerMoney(playerid,1000);
            }
        }
        return 1;
    }
Reply


Messages In This Thread
help whit /heal command - by DarkPower - 10.04.2010, 19:25
Re: help whit /heal command - by DarkPower - 11.04.2010, 20:27
Re: help whit /heal command - by aircombat - 11.04.2010, 20:31
Re: help whit /heal command - by DarkPower - 11.04.2010, 20:34
Re: help whit /heal command - by aircombat - 11.04.2010, 20:43
Re: help whit /heal command - by DarkPower - 11.04.2010, 20:44
Re: help whit /heal command - by aircombat - 11.04.2010, 20:49

Forum Jump:


Users browsing this thread: 2 Guest(s)