Scripts/resources/[standalone]/bob74_ipl/gtav/stripclub.lua
2024-12-29 21:02:20 +01:00

19 lines
400 B
Lua

exports('GetStripClubObject', function()
return StripClub
end)
StripClub = {
interiorId = 197121,
Mess = {
mess = "V_19_Trevor_Mess", -- A bit of mess in the office
Enable = function(state)
SetIplPropState(StripClub.interiorId, StripClub.Mess.mess, state, true)
end
},
LoadDefault = function()
StripClub.Mess.Enable(false)
end
}