Jump to content

onVehicleEnter bug


Guest

Recommended Posts

Posted

Help please !

local playerBikes = { [522]=true, [468]=true }
addEventHandler ( "onVehicleEnter",root,
function ( thePlayer, seat, jacked )
if playerBikes[seat] then
addPedClothes ( thePlayer, 16 ) 
   end
end
)
addEventHandler ( "onVehicleExit",root,
function ( thePlayer, seat, jacked )
removePedClothes ( thePlayer, 16 )
end
)

 

  • Moderators
Posted

A vehicle seat isn't a vehicle model.

The vehicle seat: a number represents the location of the player in the vehicle.

 

But a vehicle model:

if playerBikes[getElementModel( source )] then

 

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

 

  Useful functions  3x 

  Tutorials  4x 

 

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