Moderators IIYAMA Posted August 24, 2017 Moderators Posted August 24, 2017 Too much code guys. Try this: function getPlayersTrainSpeed () local veh = getPedOccupiedVehicle ( localPlayer ) if veh and getVehicleType (veh) == "Train" and not isTrainDerailed (veh) then local speed = getTrainSpeed ( veh ) outputChatBox ( "Viteza ta: " .. speed, 255, 0, 0 ) if speed > 30 then -- fill in the speed pls setTrainDerailed ( veh, true ) end end end addEventHandler ( "onClientRender", root, getPlayersTrainSpeed ) Do you want to improve your Lua programming skills and make less mistakes? Start with Lua Language Server! Useful functions 3x Spoiler checkPassiveTimer getScreenStartPositionFromBox getPedGender Tutorials 4x Spoiler Scaling DX Events Attach an addEventHandler on a group of elements Debugging
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