[HELP]Server: Unknown Command!
#8

pawn Код:
if(strcmp(cmd, "/usedrugs", true) == 0) // Drug system
    {
        if(IsPlayerConnected(playerid))
        {
            if(UsingDrugs[playerid] == 1)
            {
                SendClientMessage(playerid, COLOR_NICERED,"You have to wait 5 seconds!");
                return 1;
            }
            else
            {
                if(PlayerInfo[playerid][pDrugs] >= 1)
                {
                    new Float:health
                    GetPlayerHealth(playerid, health)
                    if(health >= 95.0)
                    {
                        SetPlayerHealth(playerid, 100.0);
                    }
                    if(health == 100.0)
                    {
                        SendClientMessage(playerid,COLOR_NICERED,"Your health is already full!");
                        return 1;
                    }
                    else
                    {
                        SendClientMessage(playerid,COLOR_YELLOW,"You used 2 grams of drugs!");
                        SetPlayerHealth(playerid, health + 5.0);
                        PlayerInfo[playerid][pDrugs] -= 2;
                        UsingDrugs[playerid] = 1;
                        SetTimerEx("DrugEffectGone", 5000, false, "i", playerid);
                    }
                }
                else
                {
                    SendClientMessage(playerid,COLOR_NICERED,"You have no more drugs!");
                }
            }
        }
        return 1;
    }
Reply


Messages In This Thread
[HELP]Server: Unknown Command! - by Black_Sun1 - 18.02.2011, 15:35
Re: [HELP]Server: Unknown Command! - by Mean - 18.02.2011, 16:33
Re: [HELP]Server: Unknown Command! - by xRyder - 18.02.2011, 16:36
Re: [HELP]Server: Unknown Command! - by Black_Sun1 - 18.02.2011, 16:47
Re: [HELP]Server: Unknown Command! - by xRyder - 18.02.2011, 16:51
Re: [HELP]Server: Unknown Command! - by Black_Sun1 - 18.02.2011, 17:15
Re: [HELP]Server: Unknown Command! - by xRyder - 18.02.2011, 17:18
Re: [HELP]Server: Unknown Command! - by Black_Sun1 - 18.02.2011, 17:26
Re: [HELP]Server: Unknown Command! - by Markx - 18.02.2011, 17:30
Re: [HELP]Server: Unknown Command! - by Serbish - 19.02.2011, 12:43

Forum Jump:


Users browsing this thread: 1 Guest(s)