bugg help
#1

Код:
#define PRESSED(%0) \
    (((newkeys & (%0)) == (%0)) && ((oldkeys & (%0)) != (%0)))

public OnPlayerKeyStateChange(playerid, newkeys, oldkeys)
{
    if(PRESSED(KEY_SPRINT))
    {
        if(GetPlayerState(playerid) == PLAYER_STATE_DRIVER)
        {
            new engine, lights, alarm, doors, bonnet, boot, objective;
            GetVehicleParamsEx(GetPlayerVehicleID(playerid), engine, lights, alarm, doors, bonnet, boot, objective);
            if(engine == 1)
            {
                SetVehicleParamsEx(GetPlayerVehicleID(playerid), 0, lights, alarm, doors, bonnet, boot, objective);
                SendClientMessage(playerid, 0xFF0000FF, "You Have Turned Your Vehicle's Engine Off."); //This line is not necessary and is completely optional.
            }
            else
            {
                SetVehicleParamsEx(GetPlayerVehicleID(playerid), 1, lights, alarm, doors, bonnet, boot, objective);
                SendClientMessage(playerid, 0x00FF00FF, "You Have Turned Your Vehicle's Engine On."); //Once again, this line is completely optional.
            }
        }
    }
	return 1;
}
when i press up it toggles engine?!
Reply
#2

What is your problem actually? .. can you explain a bit properly?
Reply
#3

With sprint key you turn off / on the engine of your car.

Doesn't work ?
Reply
#4

nope i press sprint nothing happens when i press up to drive it togs the engine
Reply
#5

It kinda aint the bug, You just need to fix the command and make a specific Command like /engine or /car engine
Reply
#6

i made a command already jeeez dont worry i used a different key and its work
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)