Keystroke Commands?
#4

Sorry for double posting :S ok so i got the command working and all but... like i made it to where when you hit the jump key you start the engine cause i have a engine script in my server now it works until you hit your brake key can you help me out??

heres the code
Код:
	if (PRESSED(KEY_JUMP))
	{
		if(GetPlayerState(playerid) == PLAYER_STATE_DRIVER)
		{
		  if(EngineStatus[GetPlayerVehicleID(playerid)] == 0)
			{
				TogglePlayerControllable(playerid,1);
				EngineStatus[GetPlayerVehicleID(playerid)] = 1;
				PlayerActionMessage(playerid,15.0,"turns on the engine");
			}
			else
			{
				TogglePlayerControllable(playerid,0);
				EngineStatus[GetPlayerVehicleID(playerid)] = 0;
				PlayerActionMessage(playerid,15.0,"turns off the engine");
			}
		}
	}
Reply


Messages In This Thread
Keystroke Commands? - by External-Life - 12.12.2009, 01:03
Re: Keystroke Commands? - by Zeex - 12.12.2009, 01:14
Re: Keystroke Commands? - by External-Life - 12.12.2009, 01:38
Re: Keystroke Commands? - by External-Life - 12.12.2009, 02:10
Re: Keystroke Commands? - by External-Life - 14.12.2009, 12:44
Re: Keystroke Commands? - by Damon_Black - 14.12.2009, 13:07
Re: Keystroke Commands? - by Deat_Itself - 14.12.2009, 13:21
Re: Keystroke Commands? - by External-Life - 16.12.2009, 00:12
Re: Keystroke Commands? - by Chaprnks - 16.12.2009, 01:18

Forum Jump:


Users browsing this thread: 4 Guest(s)