Moderators IIYAMA Posted August 24, 2017 Moderators Share 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 ) 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