mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-08-29 09:18:53 +00:00
18 lines
226 B
Lua
18 lines
226 B
Lua
Config = {}
|
|
Config.Locale = GetConvar('esx:locale', 'en')
|
|
Config.Visible = true
|
|
|
|
Config.Food = {
|
|
["bread"] = {
|
|
status = 200000,
|
|
remove = true
|
|
}
|
|
}
|
|
|
|
Config.Drinks = {
|
|
["water"] = {
|
|
status = 100000,
|
|
remove = true
|
|
}
|
|
}
|