note Help Needed
This wiki is the result of an ongoing community effort — thank you all for helping!
If you want to provide changes to this page then please click here.
LinkVehicleToInterior
Description
Links a vehicle to an interior. Vehicles can only be seen by players in the same interior (SetPlayerInterior).
Name | Description |
---|---|
vehicleid | The ID of the vehicle to link to an interior. |
interiorid | The Interior ID to link it to. |
Returns
true - The function was executed successfully.
false - The function failed to execute. This means the vehicle does not exist.
Examples
public OnGameModeInit()
{
new vehicleId = AddStaticVehicle(559, 2543.7505, -21.8345, 27.1899, 52.6054, -1, -1);
LinkVehicleToInterior(vehicleId, 6);
}
Related Functions
- GetVehicleInterior: Get the interior id of a vehicle.
- SetVehicleVirtualWorld: Set the virtual world of a vehicle.
- SetPlayerInterior: Set a player's interior.