This commit is contained in:
Nordi98 2025-06-10 17:37:12 +02:00
parent 6d90da2841
commit b71b47a9fb
169 changed files with 12687 additions and 2932 deletions

View file

@ -0,0 +1,57 @@
-- 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
}