Lights day |||| Lights night
#4

pawn Код:
if(strcmp(cmd, "/hood", true) == 0)
        {
        if(GetPlayerState(playerid) == PLAYER_STATE_DRIVER)
        {
            new vid = GetPlayerVehicleID(playerid);
            new engine, light, alarm, doors, bonnet, boot, objective;
            GetVehicleParamsEx(vid, engine, light, alarm, doors, bonnet, boot, objective);
            if(bonnet != VEHICLE_PARAMS_ON)
            {
                SetVehicleParamsEx(vid, engine, light, alarm, doors, VEHICLE_PARAMS_ON, boot, objective);
                return 1;
            }
            SetVehicleParamsEx(vid, engine, light, alarm, doors, VEHICLE_PARAMS_OFF, boot, objective);
            return 1;
        }
        else
        {
            SendClientMessage(playerid, COLOR_ORANGE, "[ERROR:] You are not in a vehicle as a driver.");
        }
        return 1;
    }

if(strcmp(cmd, "/trunk", true) == 0)
        {
        if(GetPlayerState(playerid) == PLAYER_STATE_DRIVER)
        {
            new vid = GetPlayerVehicleID(playerid);
            new engine, light, alarm, doors, bonnet, boot, objective;
            GetVehicleParamsEx(vid, engine, light, alarm, doors, bonnet, boot, objective);
            if(boot!= VEHICLE_PARAMS_ON)
            {
                SetVehicleParamsEx(vid, engine, light, alarm, doors, bonnet, VEHICLE_PARAMS_ON, objective);
                return 1;
            }
            SetVehicleParamsEx(vid, engine, light, alarm, doors, bonnet,  VEHICLE_PARAMS_OFF, objective);
            return 1;
        }
        else
        {
            SendClientMessage(playerid, COLOR_ORANGE, "[ERROR:] You are not in a vehicle as a driver.");
        }
        return 1;
    }
Reply


Messages In This Thread
Lights day |||| Lights night - by PaulDinam - 27.06.2012, 05:39
Re: Lights day |||| Lights night - by Makaveli93 - 27.06.2012, 05:44
Re: Lights day |||| Lights night - by PaulDinam - 27.06.2012, 05:54
Re: Lights day |||| Lights night - by Makaveli93 - 27.06.2012, 05:57
Re: Lights day |||| Lights night - by PaulDinam - 27.06.2012, 06:09
Re: Lights day |||| Lights night - by Makaveli93 - 27.06.2012, 06:14

Forum Jump:


Users browsing this thread: 1 Guest(s)