housing
This commit is contained in:
parent
6d90da2841
commit
b71b47a9fb
169 changed files with 12687 additions and 2932 deletions
69
resources/[housing]/bob74_ipl/dlc_high_life/apartment1.lua
Normal file
69
resources/[housing]/bob74_ipl/dlc_high_life/apartment1.lua
Normal file
|
|
@ -0,0 +1,69 @@
|
|||
-- Apartment 1: -1462.28100000, -539.62760000, 72.44434000
|
||||
exports('GetHLApartment1Object', function()
|
||||
return HLApartment1
|
||||
end)
|
||||
|
||||
HLApartment1 = {
|
||||
interiorId = 145921,
|
||||
|
||||
Ipl = {
|
||||
Interior = {
|
||||
ipl = "mpbusiness_int_placement_interior_v_mp_apt_h_01_milo_",
|
||||
|
||||
Load = function()
|
||||
EnableIpl(HLApartment1.Ipl.Interior.ipl, true)
|
||||
end,
|
||||
Remove = function()
|
||||
EnableIpl(HLApartment1.Ipl.Interior.ipl, false)
|
||||
end
|
||||
}
|
||||
},
|
||||
Strip = {
|
||||
A = "Apart_Hi_Strip_A",
|
||||
B = "Apart_Hi_Strip_B",
|
||||
C = "Apart_Hi_Strip_C",
|
||||
|
||||
Enable = function(details, state, refresh)
|
||||
SetIplPropState(HLApartment1.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(HLApartment1.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(HLApartment1.interiorId, details, state, refresh)
|
||||
end
|
||||
},
|
||||
|
||||
LoadDefault = function()
|
||||
HLApartment1.Ipl.Interior.Load()
|
||||
HLApartment1.Strip.Enable({
|
||||
HLApartment1.Strip.A,
|
||||
HLApartment1.Strip.B,
|
||||
HLApartment1.Strip.C
|
||||
}, false)
|
||||
HLApartment1.Booze.Enable({
|
||||
HLApartment1.Booze.A,
|
||||
HLApartment1.Booze.B,
|
||||
HLApartment1.Booze.C
|
||||
}, false)
|
||||
HLApartment1.Smoke.Enable({
|
||||
HLApartment1.Smoke.A,
|
||||
HLApartment1.Smoke.B,
|
||||
HLApartment1.Smoke.C
|
||||
}, false)
|
||||
|
||||
RefreshInterior(HLApartment1.interiorId)
|
||||
end
|
||||
}
|
||||
69
resources/[housing]/bob74_ipl/dlc_high_life/apartment2.lua
Normal file
69
resources/[housing]/bob74_ipl/dlc_high_life/apartment2.lua
Normal file
|
|
@ -0,0 +1,69 @@
|
|||
-- Apartment 2: -914.90260000, -374.87310000, 112.6748
|
||||
exports('GetHLApartment2Object', function()
|
||||
return HLApartment2
|
||||
end)
|
||||
|
||||
HLApartment2 = {
|
||||
interiorId = 146177,
|
||||
|
||||
Ipl = {
|
||||
Interior = {
|
||||
ipl = "mpbusiness_int_placement_interior_v_mp_apt_h_01_milo__1",
|
||||
|
||||
Load = function()
|
||||
EnableIpl(HLApartment2.Ipl.Interior.ipl, true)
|
||||
end,
|
||||
Remove = function()
|
||||
EnableIpl(HLApartment2.Ipl.Interior.ipl, false)
|
||||
end
|
||||
},
|
||||
},
|
||||
Strip = {
|
||||
A = "Apart_Hi_Strip_A",
|
||||
B = "Apart_Hi_Strip_B",
|
||||
C = "Apart_Hi_Strip_C",
|
||||
|
||||
Enable = function(details, state, refresh)
|
||||
SetIplPropState(HLApartment2.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(HLApartment2.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(HLApartment2.interiorId, details, state, refresh)
|
||||
end
|
||||
},
|
||||
|
||||
LoadDefault = function()
|
||||
HLApartment2.Ipl.Interior.Load()
|
||||
HLApartment2.Strip.Enable({
|
||||
HLApartment2.Strip.A,
|
||||
HLApartment2.Strip.B,
|
||||
HLApartment2.Strip.C
|
||||
}, false)
|
||||
HLApartment2.Booze.Enable({
|
||||
HLApartment2.Booze.A,
|
||||
HLApartment2.Booze.B,
|
||||
HLApartment2.Booze.C
|
||||
}, false)
|
||||
HLApartment2.Smoke.Enable({
|
||||
HLApartment2.Smoke.A,
|
||||
HLApartment2.Smoke.B,
|
||||
HLApartment2.Smoke.C
|
||||
}, false)
|
||||
|
||||
RefreshInterior(HLApartment2.interiorId)
|
||||
end
|
||||
}
|
||||
69
resources/[housing]/bob74_ipl/dlc_high_life/apartment3.lua
Normal file
69
resources/[housing]/bob74_ipl/dlc_high_life/apartment3.lua
Normal file
|
|
@ -0,0 +1,69 @@
|
|||
-- Apartment 3: -609.56690000, 51.28212000, 96.60023000
|
||||
exports('GetHLApartment3Object', function()
|
||||
return HLApartment3
|
||||
end)
|
||||
|
||||
HLApartment3 = {
|
||||
interiorId = 146689,
|
||||
|
||||
Ipl = {
|
||||
Interior = {
|
||||
ipl = "mpbusiness_int_placement_interior_v_mp_apt_h_01_milo__2",
|
||||
|
||||
Load = function()
|
||||
EnableIpl(HLApartment3.Ipl.Interior.ipl, true)
|
||||
end,
|
||||
Remove = function()
|
||||
EnableIpl(HLApartment3.Ipl.Interior.ipl, false)
|
||||
end
|
||||
}
|
||||
},
|
||||
Strip = {
|
||||
A = "Apart_Hi_Strip_A",
|
||||
B = "Apart_Hi_Strip_B",
|
||||
C = "Apart_Hi_Strip_C",
|
||||
|
||||
Enable = function(details, state, refresh)
|
||||
SetIplPropState(HLApartment3.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(HLApartment3.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(HLApartment3.interiorId, details, state, refresh)
|
||||
end
|
||||
},
|
||||
|
||||
LoadDefault = function()
|
||||
HLApartment3.Ipl.Interior.Load()
|
||||
HLApartment3.Strip.Enable({
|
||||
HLApartment3.Strip.A,
|
||||
HLApartment3.Strip.B,
|
||||
HLApartment3.Strip.C
|
||||
}, false)
|
||||
HLApartment3.Booze.Enable({
|
||||
HLApartment3.Booze.A,
|
||||
HLApartment3.Booze.B,
|
||||
HLApartment3.Booze.C
|
||||
}, false)
|
||||
HLApartment3.Smoke.Enable({
|
||||
HLApartment3.Smoke.A,
|
||||
HLApartment3.Smoke.B,
|
||||
HLApartment3.Smoke.C
|
||||
}, false)
|
||||
|
||||
RefreshInterior(HLApartment3.interiorId)
|
||||
end
|
||||
}
|
||||
69
resources/[housing]/bob74_ipl/dlc_high_life/apartment4.lua
Normal file
69
resources/[housing]/bob74_ipl/dlc_high_life/apartment4.lua
Normal file
|
|
@ -0,0 +1,69 @@
|
|||
-- Apartment 4: -778.50610000, 331.31600000, 210.39720
|
||||
exports('GetHLApartment4Object', function()
|
||||
return HLApartment4
|
||||
end)
|
||||
|
||||
HLApartment4 = {
|
||||
interiorId = 146945,
|
||||
|
||||
Ipl = {
|
||||
Interior = {
|
||||
ipl = "mpbusiness_int_placement_interior_v_mp_apt_h_01_milo__3",
|
||||
|
||||
Load = function()
|
||||
EnableIpl(HLApartment4.Ipl.Interior.ipl, true)
|
||||
end,
|
||||
Remove = function()
|
||||
EnableIpl(HLApartment4.Ipl.Interior.ipl, false)
|
||||
end
|
||||
},
|
||||
},
|
||||
Strip = {
|
||||
A = "Apart_Hi_Strip_A",
|
||||
B = "Apart_Hi_Strip_B",
|
||||
C = "Apart_Hi_Strip_C",
|
||||
|
||||
Enable = function(details, state, refresh)
|
||||
SetIplPropState(HLApartment4.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(HLApartment4.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(HLApartment4.interiorId, details, state, refresh)
|
||||
end
|
||||
},
|
||||
|
||||
LoadDefault = function()
|
||||
HLApartment4.Ipl.Interior.Load()
|
||||
HLApartment4.Strip.Enable({
|
||||
HLApartment4.Strip.A,
|
||||
HLApartment4.Strip.B,
|
||||
HLApartment4.Strip.C
|
||||
}, false)
|
||||
HLApartment4.Booze.Enable({
|
||||
HLApartment4.Booze.A,
|
||||
HLApartment4.Booze.B,
|
||||
HLApartment4.Booze.C
|
||||
}, false)
|
||||
HLApartment4.Smoke.Enable({
|
||||
HLApartment4.Smoke.A,
|
||||
HLApartment4.Smoke.B,
|
||||
HLApartment4.Smoke.C
|
||||
}, false)
|
||||
|
||||
RefreshInterior(HLApartment4.interiorId)
|
||||
end
|
||||
}
|
||||
69
resources/[housing]/bob74_ipl/dlc_high_life/apartment5.lua
Normal file
69
resources/[housing]/bob74_ipl/dlc_high_life/apartment5.lua
Normal file
|
|
@ -0,0 +1,69 @@
|
|||
-- Apartment 5: -22.61353000, -590.14320000, 78.430910
|
||||
exports('GetHLApartment5Object', function()
|
||||
return HLApartment5
|
||||
end)
|
||||
|
||||
HLApartment5 = {
|
||||
interiorId = 147201,
|
||||
|
||||
Ipl = {
|
||||
Interior = {
|
||||
ipl = "mpbusiness_int_placement_interior_v_mp_apt_h_01_milo__4",
|
||||
|
||||
Load = function()
|
||||
EnableIpl(HLApartment5.Ipl.Interior.ipl, true)
|
||||
end,
|
||||
Remove = function()
|
||||
EnableIpl(HLApartment5.Ipl.Interior.ipl, false)
|
||||
end
|
||||
},
|
||||
},
|
||||
Strip = {
|
||||
A = "Apart_Hi_Strip_A",
|
||||
B = "Apart_Hi_Strip_B",
|
||||
C = "Apart_Hi_Strip_C",
|
||||
|
||||
Enable = function(details, state, refresh)
|
||||
SetIplPropState(HLApartment5.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(HLApartment5.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(HLApartment5.interiorId, details, state, refresh)
|
||||
end
|
||||
},
|
||||
|
||||
LoadDefault = function()
|
||||
HLApartment5.Ipl.Interior.Load()
|
||||
HLApartment5.Strip.Enable({
|
||||
HLApartment5.Strip.A,
|
||||
HLApartment5.Strip.B,
|
||||
HLApartment5.Strip.C
|
||||
}, false)
|
||||
HLApartment5.Booze.Enable({
|
||||
HLApartment5.Booze.A,
|
||||
HLApartment5.Booze.B,
|
||||
HLApartment5.Booze.C
|
||||
}, false)
|
||||
HLApartment5.Smoke.Enable({
|
||||
HLApartment5.Smoke.A,
|
||||
HLApartment5.Smoke.B,
|
||||
HLApartment5.Smoke.C
|
||||
}, false)
|
||||
|
||||
RefreshInterior(HLApartment5.interiorId)
|
||||
end
|
||||
}
|
||||
69
resources/[housing]/bob74_ipl/dlc_high_life/apartment6.lua
Normal file
69
resources/[housing]/bob74_ipl/dlc_high_life/apartment6.lua
Normal file
|
|
@ -0,0 +1,69 @@
|
|||
-- Apartment 6: -609.56690000, 51.28212000, -183.98080
|
||||
exports('GetHLApartment6Object', function()
|
||||
return HLApartment6
|
||||
end)
|
||||
|
||||
HLApartment6 = {
|
||||
interiorId = 147457,
|
||||
|
||||
Ipl = {
|
||||
Interior = {
|
||||
ipl = "mpbusiness_int_placement_interior_v_mp_apt_h_01_milo__5",
|
||||
|
||||
Load = function()
|
||||
EnableIpl(HLApartment6.Ipl.Interior.ipl, true)
|
||||
end,
|
||||
Remove = function()
|
||||
EnableIpl(HLApartment6.Ipl.Interior.ipl, false)
|
||||
end
|
||||
}
|
||||
},
|
||||
Strip = {
|
||||
A = "Apart_Hi_Strip_A",
|
||||
B = "Apart_Hi_Strip_B",
|
||||
C = "Apart_Hi_Strip_C",
|
||||
|
||||
Enable = function(details, state, refresh)
|
||||
SetIplPropState(HLApartment6.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(HLApartment6.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(HLApartment6.interiorId, details, state, refresh)
|
||||
end
|
||||
},
|
||||
|
||||
LoadDefault = function()
|
||||
HLApartment6.Ipl.Interior.Load()
|
||||
HLApartment6.Strip.Enable({
|
||||
HLApartment6.Strip.A,
|
||||
HLApartment6.Strip.B,
|
||||
HLApartment6.Strip.C
|
||||
}, false)
|
||||
HLApartment6.Booze.Enable({
|
||||
HLApartment6.Booze.A,
|
||||
HLApartment6.Booze.B,
|
||||
HLApartment6.Booze.C
|
||||
}, false)
|
||||
HLApartment6.Smoke.Enable({
|
||||
HLApartment6.Smoke.A,
|
||||
HLApartment6.Smoke.B,
|
||||
HLApartment6.Smoke.C
|
||||
}, false)
|
||||
|
||||
RefreshInterior(HLApartment6.interiorId)
|
||||
end
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue