Configuration

Contents of config.lua

This is just an example of a basic config.lua, in this file you will find door locations and so on that you can view and add more if you wish.

Config = Config or {}
Locales = Locales or {}

Config.Language = 'en'

--[[
    Please choose from the following options:

    Framework:
        'esx'
        'qb'
        'vrp'
        'vrpex'

    UseTarget:
        'ox_target'
        'qb-target'
        'bt-target'

        'none'
]]

Config.Framework = 'qb'
Config.UseTarget = 'none'


--[[
    System of items received when doing Trick or Treat, select
    the amount you will receive when doing this minigame
    and the list of items that they could give you, they
    will only give you one per door, so choose well!
]]

Config.Amount = math.random(1, 5)
Config.Items = {
    'pumpkin_mask',
    'haunted_lantern',
    'witch_broom',
    'spooky_ghost_cape',
    'vampire_fangs',
    'black_cat_ears',
    'lollipop_skeleton',
    'pumpkin_candy',
    'zombie_brain_candy',
    'mummy_wraps',
    'dracula_bleeding_candies',
    'cursed_werewolf_claw',
    'ghoul_glow_eyes',
    'haunted_grave_urn',
    'vampire_blood_vial',
    'bone_chilling_candy',
    'chocolate_ghost',
    'chocolate_pumpkin',
    'chocolate_bat',
    'bat_candy'
}

--[[
    Configure the peds that will come out to give gifts, you also have a
    chance system about if the ped gets angry when knocking on your door,
    he will try to hit the player, but don't worry, if you manage to
    defeat him he will also give a reward!
]]

Config.AngryChance = 5 -- Angry NPC Chance (1 to 100)
Config.Peds = {
    'a_f_m_ktown_02',
    'a_f_m_fatwhite_01',
    'a_f_y_hipster_02',
    'a_m_m_malibu_01',
    'a_m_o_beach_01',
    'ig_orleans',
    'ig_sol',
    'ig_paper',
    'ig_sss',
    'ig_tanisha',
    's_f_y_shop_low',
    's_f_y_shop_mid'
}

Last updated