29 lines
665 B
Lua
29 lines
665 B
Lua
-- 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
|
|
} |