This repository has been archived on 2025-12-11. You can view files and clone it, but cannot push or open issues or pull requests.

19 lines
400 B
Lua
Raw Normal View History

2025-02-02 10:40:42 +01:00
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
}