Jump to content

Vehicle check


jeremaniak

Recommended Posts

Posted
-- Wiki Example and some edit from me 
function addHelmetOnEnter ( thePlayer, seat, jacked ) 
    if ( getElementModel ( source ) == 522 ) then -- if its a nrg 
    outputChatBox("You entered the NRG-500 Vehicle",thePlayer,255,255,0) 
    end 
end 
addEventHandler ( "onVehicleEnter", getRootElement(), addHelmetOnEnter ) 

Vehicles ID

https://wiki.multitheftauto.com/wiki/Vehicle_IDs

آن يكون فكر المرء مختلآ , خيرآ من آن يكون فكره محتلآ !

my nick name in the game : =x=|DoN|=x= or 7eJAzZy- ( ͡° ͜ʖ ͡°)

http://community.multitheftauto.com/ind ... &id=337164 my profile

  • Moderators
Posted

Do you want to improve your Lua programming skills and make less mistakes?   Start with Lua Language Server!   🙀

 

  Useful functions  3x 

  Tutorials  4x 

 

Posted (edited)
function myVehicleType(theVehicle, seat, jacked) 
         outputChatBox("Your vehicle type is:" ..getVehicleType(theVehicle)..".", source, 255, 0, 0) 
end 
addEventHandler("onVehicleEnter", root, myVehicleType) 

Edited by Guest

"Get busy living or get busy dying"

Posted
function myVehicleType(player, seat, jacked) 
         outputChatBox("Your vehicle type is:" ..getVehicleType(source)..".", player, 255, 0, 0) 
end 
addEventHandler("onVehicleEnter", root, myVehicleType) 

Are you dreaming boss?

thePlayer: A player element representing the player who is entering the vehicle

Is the first parameter? Idk what's wrong and Player not defined!

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...