mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-08-30 09:48:52 +00:00
20 lines
305 B
Lua
20 lines
305 B
Lua
Config = {}
|
|
Config.Locale = GetConvar('esx:locale', 'en')
|
|
Config.Visible = true
|
|
|
|
Config.Items = {
|
|
["bread"] = {
|
|
type = "food",
|
|
prop= "prop_cs_burger_01",
|
|
status = 200000,
|
|
remove = true
|
|
},
|
|
|
|
["water"] = {
|
|
type = "drink",
|
|
prop = "prop_ld_flow_bottle",
|
|
status = 100000,
|
|
remove = true
|
|
}
|
|
}
|