Bob74 / bob74_ipl

Fix holes and customize the map
https://forum.fivem.net/t/release-fix-holes-in-the-map/25240
MIT License
249 stars 230 forks source link

franklin aunties ipl #109

Closed C17DAGOAT closed 6 months ago

C17DAGOAT commented 1 year ago

hello i was wondering how i could stop the ipl from franklin aunties loading in

Bob74 commented 1 year ago

Hi, by default it doesn't load an ipl (it ensures the room is empty):

LoadDefault = function()

    -- This is where it would load an ipl but "Style.empty" is an empty string
    FranklinAunt.Style.Set(FranklinAunt.Style.empty)

   -- Disabling props to make sure the room is empty
    FranklinAunt.Details.Enable(FranklinAunt.Details.bandana, false)
    FranklinAunt.Details.Enable(FranklinAunt.Details.bag, false)

    RefreshInterior(FranklinAunt.interiorId)
end

If for any reason you still want to avoid this code being executed, you can comment client.lua line 13.