Scripts/resources/[standalone]/bob74_ipl/gta_online/apartment_hi_2.lua

58 lines
1.6 KiB
Lua
Raw Normal View History

2024-12-29 20:02:20 +00:00
-- Dell Perro Heights, Apt 7
-- High end apartment 2: -1477.14 -538.7499 55.5264
exports('GetGTAOApartmentHi2Object', function()
return GTAOApartmentHi2
end)
GTAOApartmentHi2 = {
interiorId = 145665,
Strip = {
A = "Apart_Hi_Strip_A",
B = "Apart_Hi_Strip_B",
C = "Apart_Hi_Strip_C",
Enable = function(details, state, refresh)
SetIplPropState(GTAOApartmentHi2.interiorId, details, state, refresh)
end
},
Booze = {
A = "Apart_Hi_Booze_A",
B = "Apart_Hi_Booze_B",
C = "Apart_Hi_Booze_C",
Enable = function(details, state, refresh)
SetIplPropState(GTAOApartmentHi2.interiorId, details, state, refresh)
end
},
Smoke = {
A = "Apart_Hi_Smokes_A",
B = "Apart_Hi_Smokes_B",
C = "Apart_Hi_Smokes_C",
Enable = function(details, state, refresh)
SetIplPropState(GTAOApartmentHi2.interiorId, details, state, refresh)
end
},
LoadDefault = function()
GTAOApartmentHi2.Strip.Enable({
GTAOApartmentHi2.Strip.A,
GTAOApartmentHi2.Strip.B,
GTAOApartmentHi2.Strip.C
}, false)
GTAOApartmentHi2.Booze.Enable({
GTAOApartmentHi2.Booze.A,
GTAOApartmentHi2.Booze.B,
GTAOApartmentHi2.Booze.C
}, false)
GTAOApartmentHi2.Smoke.Enable({
GTAOApartmentHi2.Smoke.A,
GTAOApartmentHi2.Smoke.B,
GTAOApartmentHi2.Smoke.C
}, false)
RefreshInterior(GTAOApartmentHi2.interiorId)
end
}