Jump to content

Train Speed Limit


CodX

Recommended Posts

  • Moderators

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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...