Keystroke Commands?
#6

No idea what you mean by brake key but try this. Without any returns the EngineStatus is IF and ELSE. At least that's my guess based on what you said.

Код:
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");
                return 1;
			}
			else
			{
				TogglePlayerControllable(playerid,0);
				EngineStatus[GetPlayerVehicleID(playerid)] = 0;
				PlayerActionMessage(playerid,15.0,"turns off the engine");
                return 1;
			}
		}
	}
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: 3 Guest(s)