24.04.2011, 15:23
So now it's working as it shoudl be working but the problem is that when I stop the car (without turning the engine off it shows me again press 2 to turn engine on it keeps showing me that gametext):
So,as I said aafter I turn the engine on,when I slow down it shows me again(I ONLY SLOW DOWN I DON'T TURN OFF THE ENGINE ) Press 2 to turn engine on.How to solve this?
pawn Код:
if(GetPlayerState(playerid) == PLAYER_STATE_DRIVER)
{
ToggleEngine(playerid);
GameTextForPlayer(playerid,"Press 2 to turn on engine!!!",100,4);
if (PRESSED( KEY_SUBMISSION ))
{
ToggleEngine(playerid);
GameTextForPlayer(playerid,"Engine is turned on.",500,4);
return 1;
}
}