Else Probblem
#5

It's because you are returning the if statement then adding else in the next, like konstantinos said

Or you probably wanted like this:
pawn Код:
dcmd_bot(playerid,params[])
{
    #pragma unused params
    if(pInfo[playerid][Adminlevel] < 1) return SendClientMessage(playerid, COLOR_RED, ""ERROR_MESSAGE""); // if not an admin, then send error
    else
    { // if playerid's adminlevel > 0 then process
        if(IsPlayerAttachedObjectSlotUsed(playerid, 0)) // check if there is an attached object already (in slot 0)
        {
            RemovePlayerAttachedObject(playerid, 0); // remove the attached object (from slot 0)
        }
        else // or if not attached
        {
            SetPlayerAttachedObject(playerid, 0, 19078, 1, 0.337255, -0.102219, -0.170282, 0.000000, 0.000000, 0.000000, 1.000000, 1.000000, 1.000000); // set the player attached object (as slot 0)
        }
    }
    return 1;
}
Reply


Messages In This Thread
Else Probblem - by gekas - 10.04.2014, 13:53
Re: Else Probblem - by gekas - 10.04.2014, 13:57
Re: Else Probblem - by Danijel. - 10.04.2014, 14:04
Re: Else Probblem - by Konstantinos - 10.04.2014, 14:21
Re: Else Probblem - by RoboN1X - 10.04.2014, 14:34

Forum Jump:


Users browsing this thread: 1 Guest(s)