Skip to content

GTA V: Graffitis

Bob74 edited this page Nov 2, 2018 · 2 revisions

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

Default values set by bob74_ipl

    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)
Clone this wiki locally