GTA V: Red carpet - Bob74/bob74_ipl GitHub Wiki
Getting the main object to interact with the interior:
RedCarpet = exports['bob74_ipl']:GetRedCarpetObject()
Coordinates
This ipl can be found at:
X | Y | Z |
---|---|---|
300.5927 | 199.7589 | 104.3776 |
Object structure
RedCarpet
+-- ipl
+-- Enable(state)
Enable/Disable
Enable or disable the red carpet:
RedCarpet.Enable(state)
Parameter | Description | Valid values |
---|---|---|
state | Enabled or disabled | true or false |
bob74_ipl
Default values set by RedCarpet.Enable(false)
Example: How to use in your own resources
You can handle and customize the interiors in your own resources using the exported functions:
Citizen.CreateThread(function()
-- Getting the object to interact with
RedCarpet = exports['bob74_ipl']:GetRedCarpetObject()
-- Enabling the red carpet
RedCarpet.Enable(true)
end)