OnNPCEnterVehicle: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 12: | Line 12: | ||
} | } | ||
</source>|relfuncs= | </source>|relfuncs= | ||
*EnterVehicle | *[[EnterVehicle]] | ||
}} | }} |
Latest revision as of 14:10, 14 February 2023
Description:
Gets called when an NPC enters a vehicle. Or in other words, the server has put the NPC in a vehicle.
Parameters:
(vehicleid, seatid)
vehicleid : The ID of the vehicle in which NPC is entering.
seatid : The seat of the vehicle which the NPC occupies.
Return Values:
This function does not return any specific values.
Example
function OnNPCEnterVehicle(vehicleid, seatid) { if(!seatid) SendChat("Do anybody want a ride?"); }
Related Functions
The following functions may be helpful as they relate to this function in one way or another.