mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-08-30 09:48:52 +00:00
7d9e994846
commit4e52da5cf7Merge:c048b434c8f062b4Author: Csoki <feketetibi71@gmail.com> Date: Wed Oct 5 16:35:53 2022 +0200 Merge branch 'main' into locale-convar commitc048b434e5Merge:e9fb9882d16869b5Author: Csoki <feketetibi71@gmail.com> Date: Sat Sep 17 15:06:21 2022 +0200 Merge branch 'main' into locale-convar commite9fb988237Author: Csoki <feketetibi71@gmail.com> Date: Thu Sep 15 00:26:18 2022 +0200 add server.cfg esx:locale convar commitdffaa5caaeAuthor: Csoki <feketetibi71@gmail.com> Date: Thu Sep 15 00:24:55 2022 +0200 refactor translate function commitf665fc2c7fAuthor: Csoki <feketetibi71@gmail.com> Date: Thu Sep 15 00:23:24 2022 +0200 change all Config.locale to convar
18 lines
227 B
Lua
18 lines
227 B
Lua
Config = {}
|
|
Config.Locale = GetConvar('esx:locale', 'en')
|
|
Config.Visible = true
|
|
|
|
Config.Food = {
|
|
["bread"] = {
|
|
status = 200000,
|
|
remove = false
|
|
}
|
|
}
|
|
|
|
Config.Drinks = {
|
|
["water"] = {
|
|
status = 100000,
|
|
remove = true
|
|
}
|
|
}
|