forked from Simnation/Main
25 lines
399 B
Lua
25 lines
399 B
Lua
![]() |
-- config.lua
|
||
|
Config = {}
|
||
|
|
||
|
Config.AllowedJobs = {
|
||
|
['police'] = true,
|
||
|
['ambulance'] = true,
|
||
|
}
|
||
|
|
||
|
Config.Items = {
|
||
|
{
|
||
|
name = "barrier",
|
||
|
label = "Absperrung",
|
||
|
model = "prop_barrier_work04a"
|
||
|
},
|
||
|
{
|
||
|
name = "cone",
|
||
|
label = "Verkehrskegel",
|
||
|
model = "prop_roadcone02a"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
Config.Hotkey = 'F5'
|
||
|
Config.Debug = true
|
||
|
|