21 lines
901 B
Lua
21 lines
901 B
Lua
Config = {}
|
|
|
|
--Default buttons only change on first join, to change later, change ingame
|
|
Config['DefaultToogle'] = 'E'
|
|
Config['DefaultChangeAnim'] = 'O'
|
|
Config['Locale'] = 'en' -- pl/en
|
|
Config['HelpBox'] = true -- true/false
|
|
Config['ShowAuthorInHelpBox'] = false -- true/false
|
|
Config['KeyMapping'] = true -- true/false (if false use commands 'toogleflash' and 'changeflashanim')
|
|
Config['CustomHelpEvent'] = false -- true/false
|
|
Config['FixAnimWhenStop'] = true -- true/false (Set it to true, if you want the anim to fix itself when you stop it somehow)
|
|
|
|
Config['Anims'] = { -- Toogle anims on/off
|
|
["PoliceTorchAnim"] = true, -- true/false
|
|
["SecGuard1Anim"] = true, -- true/false
|
|
["SecGuard2Anim"] = true, -- true/false
|
|
["SecGuard3Anim"] = true, -- true/false
|
|
["SecGuard4Anim"] = true, -- true/false
|
|
["SecGuard5Anim"] = true, -- true/false
|
|
["Default"] = true, -- true/false
|
|
} |