0.0.1
This commit is contained in:
29
resources/[standalone]/bob74_ipl/dlc_money/construction.lua
Normal file
29
resources/[standalone]/bob74_ipl/dlc_money/construction.lua
Normal file
@@ -0,0 +1,29 @@
|
||||
-- Construction
|
||||
exports("GetMoneyConstruction", function()
|
||||
return MoneyConstruction
|
||||
end)
|
||||
|
||||
MoneyConstruction = {
|
||||
-- 678.040, 769.674, 205.0
|
||||
Vinewood = {
|
||||
ipl = "m25_1_ch2_04_construction",
|
||||
|
||||
Enable = function(state)
|
||||
EnableIpl(MoneyConstruction.Vinewood.ipl, state)
|
||||
end
|
||||
},
|
||||
|
||||
-- -1671.08, 494.0945, 128.0
|
||||
Rockford = {
|
||||
ipl = "m25_1_cs1_06e_construction",
|
||||
|
||||
Enable = function(state)
|
||||
EnableIpl(MoneyConstruction.Rockford.ipl, state)
|
||||
end
|
||||
},
|
||||
|
||||
LoadDefault = function()
|
||||
MoneyConstruction.Vinewood.Enable(true)
|
||||
MoneyConstruction.Rockford.Enable(true)
|
||||
end
|
||||
}
|
||||
Reference in New Issue
Block a user