GTA V: Graffitis - Bob74/bob74_ipl GitHub Wiki
Getting the main object to interact with the interior:
Graffitis = exports['bob74_ipl']:GetGraffitisObject()
Coordinates
These ipls can be found at:
X | Y | Z |
---|---|---|
1861.28 | 2402.11 | 58.53 |
2697.32 | 3162.18 | 58.1 |
2119.12 | 3058.21 | 53.25 |
Object structure
Graffitis
+-- ipl
+-- Enable(state)
Enable/Disable
Enable or disable ipl files in game:
Graffitis.Enable(state)
Parameter | Description | Valid values |
---|---|---|
state | Enable or disable graffitis | true or false |
bob74_ipl
Default values set by Graffitis.Enable(true)
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
Graffitis = exports['bob74_ipl']:GetGraffitisObject()
-- Disable graffitis
Graffitis.Enable(false)
end)