Jump to content

Recommended Posts

Posted

Salut, am o problema.

 

YCMD:set(playerid, params[], help) 
{
    if(playerData[playerid][playerAdmin] < 3) 
        return SCM(playerid, COLOR_LIGHTGREEN3, "You are not allowed to use this command."); 

    new 
        user,
        option[32],
        value;

    if(sscanf(params, "us[32]d", user, option, value))
    { 
        SCM(playerid, COLOR_GREY, "Usage: {ffffff}/set <name/playerid> <option> <value>");
        SCM(playerid, COLOR_WHITE, "Options: heal, armour");
        return 1;
    }

    switch(YHash(option, false))
    {
        case _H<health>:
        {
            SetPlayerHealth(user, value);

        }
        case _H<armour>:
        {
            SetPlayerArmour(user, value);
        }
    }

    return 1;
}
 

=> comanda nu rezulta nimic, am facut test cu strcmp imi seteaza heal si armour, dar cu YHash nu rezulta nimic.. am schimbate de multe ori multe include YHash nimic, nu stiu ce e gresit, am mai lucrat cu acest include si a functionat perfect, acum ce l-a apucat?

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more details you can also review our Terms of Use and Privacy Policy.