Karuzo Posted January 17, 2014 Share Posted January 17, 2014 hey guys, so i wanted to check if a player is in a vehicle , but that doesnt work ... here's my code : local veh = getPedOccupiedVehicle () function Motor1(player) local veh = getPedOccupiedVehicle ( player ) if isPedInVehicle(player) then setVehicleHandling(veh, "engineAcceleration", 60) else outputChatBox("Get in a Vehicle dude!", getRootElement(), 255,0,0, false) end end addEvent("Motor1", true) addEventHandler("Motor1", getRootElement(), Motor1) Link to comment
Anubhav Posted January 17, 2014 Share Posted January 17, 2014 Any errors in /debugscript 3? if yes tell us. Link to comment
Forrest Posted January 17, 2014 Share Posted January 17, 2014 function Motor1(player) local veh = getPedOccupiedVehicle ( player ) if veh then setVehicleHandling(veh, "engineAcceleration", 60) else outputChatBox("Get in a Vehicle dude!", getRootElement(), 255,0,0, false) end end addEvent("Motor1", true) addEventHandler("Motor1", getRootElement(), Motor1) Try that. Link to comment
50p Posted January 17, 2014 Share Posted January 17, 2014 hey guys,so i wanted to check if a player is in a vehicle , but that doesnt work ... ... I just love it how people don't explain what their problem is. It looks like the event is not even triggered. If you don't get error messages or the "Get in a Vehicle dude" message, then it's not triggered because "else" would pass. Link to comment
Karuzo Posted January 17, 2014 Author Share Posted January 17, 2014 Fixed it now , but it doesn't change the acceleration , why ? Link to comment
50p Posted January 17, 2014 Share Posted January 17, 2014 http://projectcerbera.com/gta/sa/tutorials/acceleration Link to comment
Karuzo Posted January 17, 2014 Author Share Posted January 17, 2014 Oh, ok got it now , thanks Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now