forked from Simnation/Main
33 lines
980 B
Lua
33 lines
980 B
Lua
EXTERNAL_EVENTS_NAMES = {
|
|
["esx:getSharedObject"] = nil, -- This is nil because it will be found automatically, change it to your one ONLY in the case it can't be found
|
|
}
|
|
|
|
-- Ped models that WON'T be used for NPC mugging
|
|
BLACKLISTED_PEDS_MODELS = {
|
|
--[[
|
|
Some examples:
|
|
|
|
[ GetHashKey("a_m_o_tramp_01") ] = true,
|
|
[ GetHashKey("csb_rashcosvki") ] = true,
|
|
[ GetHashKey("csb_stripper_02") ] = true,
|
|
]]
|
|
}
|
|
|
|
INTERACTION_POINTS_REFRESH = 1000
|
|
|
|
-- Seconds the blip of police alert will remain in the map
|
|
BLIP_TIME_AFTER_POLICE_ALERT = 40
|
|
|
|
-- Seconds each time the gas will damage the player
|
|
GAS_INTERVAL_SECONDS = 1
|
|
|
|
-- Used to investigate on an issue, keep false if you don't know what this is
|
|
DEBUG_OUTPUT_HEIST_STEPS = false
|
|
|
|
--[[
|
|
Default progressbar color (must be a hex code). Examples:
|
|
"#0fffef" - Light blue
|
|
"#ff0f0f" - Red
|
|
"#0f0fff" - Blue
|
|
]]
|
|
DEFAULT_PROGRESSBAR_COLOR = "#ff0f0f"
|