Config Files
Information
Our configuration files are highly detailed and structured for easy understanding. To make it as simple as possible for you, an explanation is provided next to each setting.
All configuration files can be found in the /configs
folder.
Included configuration files:
---------------------------------------------------------------------------------------------------------------
-- If you have any questions or issues, feel free to open a ticket on our Discord.
-- https://discord.gg/unique
-- "true" = activated, "false" = deactivated. (Applies universally)
-- DO NOT TOUCH THE KEYS BEFORE THE "=" CHARACTER TO PREVENT ERRORS!
-- YOU CAN ONLY EDIT THE VALUES BEHIND THE "=" CHARACTER UNLESS MENTIONED!
UNIQUE = {}
-----------------------------------------------------------------------
-- [POSITION]
UNIQUE.Position = {
['coords'] = vector3(234.26, -881.18, 30.49), -- At which coordinates should the XMAS-Calendar be accessible?
['Blip'] = {
['enabled'] = true, -- Would you like to activate the blip?
['name'] = "Christmas Tree", -- Blip name.
['sprite'] = 177, -- Blip sprite. [https://docs.fivem.net/docs/game-references/blips/]
['color'] = 47, -- Blip color. [https://docs.fivem.net/docs/game-references/blips/#blip-colors]
['scale'] = 1.0, -- Blip scale. [0.1 - ∞]
},
['Marker'] = {
['enabled'] = false, -- Would you like to use a marker?
['type'] = 21, -- Marker sprite. [https://docs.fivem.net/docs/game-references/markers/]
['rotate'] = true, -- Would you like the marker to rotate?
['bounce'] = true, -- Would you like the marker to bounce?
['color'] = '#F1A502', -- Marker color. [HEX-Code]
['opacity'] = 120, -- Marker opacity. [0 - 255]
['scale'] = {x = 1.0, y = 1.0, z = 1.0}, -- Marker scale.
['actiondistance'] = 2.0, -- Marker interaction radius.
['drawdistance'] = 10.0, -- Marker viewdistance.
},
['Entity'] = {
['enabled'] = true, -- Do you want to spawn an object at the location specified above? For example a Christmas tree?
['object'] = "xm_prop_x17_xmas_tree_int", -- Object Name.
},
}
-- [POSITION]
-----------------------------------------------------------------------
-----------------------------------------------------------------------
-- [NOTIFICATIONS]
UNIQUE.Locale = 'en' -- Select your language. ('en' or 'de')
UNIQUE.Customnotify = false -- Do you want to use your own notify?
function Notify(type, msg) -- Your Notify Trigger. ('msg' must be retained.)
if type == 'success' then
TriggerEvent('unique_hud:Notify', "Christmas Tree", msg, 'success', 5000)
end
if type == 'error' then
TriggerEvent('unique_hud:Notify', "Christmas Tree", msg, 'error', 5000)
end
end
UNIQUE.Helpnotify = false -- Do you want to use a helpnotify?
function HelpNotify() -- Your Helpnotify Trigger.
-- exports['unique_helpnotify']:TriggerHelpNotify("PRESS E TO INTERACT.")
end
UNIQUE.OX_Target = false -- Do you want to use ox_target?
function OX_Target()
exports.ox_target:addBoxZone({
coords = UNIQUE.Position.coords,
size = vec3(1.25, 1.25, 1.25),
options = {
{
icon = 'fa-solid fa-tree',
label = 'Open Christmas Tree',
event = 'unique_xmascalendar:openUI',
}
}
})
end
-- [NOTIFICATIONS]
-----------------------------------------------------------------------
-----------------------------------------------------------------------
-- [FUNCTIONS]
function GeneratePlate() -- This function creates the license plate for a vehicle prize.
local Prefix = "XMAS" -- Enter a 4-digit prefix here. [If this prefix is not desired and you need help modifying this function, please feel free to contact us via ticket :)]
local Suffix = math.random(1000, 9999)
local Plate = Prefix .. Suffix
return Plate
end
function OpenUI() -- This function is executed when the UI is opened.
-- exports['unique_hud']:Hide()
end
function CloseUI() -- This function is executed when the UI is closed.
-- exports['unique_hud']:Show()
end
-- [FUNCTIONS]
-----------------------------------------------------------------------
-----------------------------------------------------------------------
-- [MAIN SETTINGS]
UNIQUE.Settings = {
['Inventory'] = 'esx', -- Choose between 'esx', 'ox_inventory', 'qs-inventory'.
['ActivateDay25'] = false, -- Here you can set the calendar layout from 24 to 25.
['Dates'] = { -- Here you can find all the calendar data. Pay attention to the format! "MM/DD/YY"
['01_Dec'] = "12/01/24",
['02_Dec'] = "12/02/24",
['03_Dec'] = "12/03/24",
['04_Dec'] = "12/04/24",
['05_Dec'] = "12/05/24",
['06_Dec'] = "12/06/24",
['07_Dec'] = "12/07/24",
['08_Dec'] = "12/08/24",
['09_Dec'] = "12/09/24",
['10_Dec'] = "12/10/24",
['11_Dec'] = "12/11/24",
['12_Dec'] = "12/12/24",
['13_Dec'] = "12/13/24",
['14_Dec'] = "12/14/24",
['15_Dec'] = "12/15/24",
['16_Dec'] = "12/16/24",
['17_Dec'] = "12/17/24",
['18_Dec'] = "12/18/24",
['19_Dec'] = "12/19/24",
['20_Dec'] = "12/20/24",
['21_Dec'] = "12/21/24",
['22_Dec'] = "12/22/24",
['23_Dec'] = "12/23/24",
['24_Dec'] = "12/24/24",
['25_Dec'] = "12/25/24", -- Enable ['ActivateDay25'] to set the calendar to 25 days if desired.
},
['Whitelist'] = {
['enabled'] = false, -- Do you want to activate the whitelist?
['Identifiers'] = { -- Enter all the identifiers of the players who are allowed to use the advent calendar here.
-- '123',
-- 'char1:123',
-- 'char2:123',
-- 'char3:123',
},
},
['Gifts'] = {
['01_Dec'] = {
['Money'] = { -- Money settings for this gift.
['enabled'] = true, -- Enable/disable money reward.
['account'] = 'money', -- Account where the player receives the money.
['amount'] = {10000, 15000}, -- Fixed amount = for example, 10000, Randomly generated amount = {Minimum amount, Maximum amount}
},
['Items'] = { -- Item settings for this gift.
['enabled'] = false, -- Enable/disable item reward.
['ItemList'] = { -- Enter here all items the player should receive for this gift.
['bread'] = 1, -- Fixed amount = for example, 1.
['water'] = {1, 3}, -- Randomly generated amount = {Minimum amount, Maximum amount}
},
},
['Vehicle'] = { -- Vehicle settings for this gift.
['enabled'] = false, -- Enable/disable vehicle reward.
['model'] = 't20', -- Spawn name of the vehicle the player should receive.
['type'] = 'car', -- Vehicle type the player should receive.
['color'] = 0, -- Color of the vehicle. (All available colors: https://pastebin.com/pwHci0xK)
},
['Weapon'] = {
['enabled'] = false, -- Enable/disable weapon reward.
['name'] = 'weapon_pistol', -- Name of the weapon the player should receive.
},
},
['02_Dec'] = {
['Money'] = { -- Money settings for this gift.
['enabled'] = true, -- Enable/disable money reward.
['account'] = 'money', -- Account where the player receives the money.
['amount'] = {10000, 15000}, -- Fixed amount = for example, 10000, Randomly generated amount = {Minimum amount, Maximum amount}
},
['Items'] = { -- Item settings for this gift.
['enabled'] = false, -- Enable/disable item reward.
['ItemList'] = { -- Enter here all items the player should receive for this gift.
['bread'] = 1, -- Fixed amount = for example, 1.
['water'] = {1, 3}, -- Randomly generated amount = {Minimum amount, Maximum amount}
},
},
['Vehicle'] = { -- Vehicle settings for this gift.
['enabled'] = false, -- Enable/disable vehicle reward.
['model'] = 't20', -- Spawn name of the vehicle the player should receive.
['type'] = 'car', -- Vehicle type the player should receive.
['color'] = 0, -- Color of the vehicle. (All available colors: https://pastebin.com/pwHci0xK)
},
['Weapon'] = {
['enabled'] = false, -- Enable/disable weapon reward.
['name'] = 'weapon_pistol', -- Name of the weapon the player should receive.
},
},
['03_Dec'] = {
['Money'] = { -- Money settings for this gift.
['enabled'] = true, -- Enable/disable money reward.
['account'] = 'money', -- Account where the player receives the money.
['amount'] = {10000, 15000}, -- Fixed amount = for example, 10000, Randomly generated amount = {Minimum amount, Maximum amount}
},
['Items'] = { -- Item settings for this gift.
['enabled'] = false, -- Enable/disable item reward.
['ItemList'] = { -- Enter here all items the player should receive for this gift.
['bread'] = 1, -- Fixed amount = for example, 1.
['water'] = {1, 3}, -- Randomly generated amount = {Minimum amount, Maximum amount}
},
},
['Vehicle'] = { -- Vehicle settings for this gift.
['enabled'] = false, -- Enable/disable vehicle reward.
['model'] = 't20', -- Spawn name of the vehicle the player should receive.
['type'] = 'car', -- Vehicle type the player should receive.
['color'] = 0, -- Color of the vehicle. (All available colors: https://pastebin.com/pwHci0xK)
},
['Weapon'] = {
['enabled'] = false, -- Enable/disable weapon reward.
['name'] = 'weapon_pistol', -- Name of the weapon the player should receive.
},
},
['04_Dec'] = {
['Money'] = { -- Money settings for this gift.
['enabled'] = true, -- Enable/disable money reward.
['account'] = 'money', -- Account where the player receives the money.
['amount'] = {10000, 15000}, -- Fixed amount = for example, 10000, Randomly generated amount = {Minimum amount, Maximum amount}
},
['Items'] = { -- Item settings for this gift.
['enabled'] = false, -- Enable/disable item reward.
['ItemList'] = { -- Enter here all items the player should receive for this gift.
['bread'] = 1, -- Fixed amount = for example, 1.
['water'] = {1, 3}, -- Randomly generated amount = {Minimum amount, Maximum amount}
},
},
['Vehicle'] = { -- Vehicle settings for this gift.
['enabled'] = false, -- Enable/disable vehicle reward.
['model'] = 't20', -- Spawn name of the vehicle the player should receive.
['type'] = 'car', -- Vehicle type the player should receive.
['color'] = 0, -- Color of the vehicle. (All available colors: https://pastebin.com/pwHci0xK)
},
['Weapon'] = {
['enabled'] = false, -- Enable/disable weapon reward.
['name'] = 'weapon_pistol', -- Name of the weapon the player should receive.
},
},
['05_Dec'] = {
['Money'] = { -- Money settings for this gift.
['enabled'] = true, -- Enable/disable money reward.
['account'] = 'money', -- Account where the player receives the money.
['amount'] = {10000, 15000}, -- Fixed amount = for example, 10000, Randomly generated amount = {Minimum amount, Maximum amount}
},
['Items'] = { -- Item settings for this gift.
['enabled'] = false, -- Enable/disable item reward.
['ItemList'] = { -- Enter here all items the player should receive for this gift.
['bread'] = 1, -- Fixed amount = for example, 1.
['water'] = {1, 3}, -- Randomly generated amount = {Minimum amount, Maximum amount}
},
},
['Vehicle'] = { -- Vehicle settings for this gift.
['enabled'] = false, -- Enable/disable vehicle reward.
['model'] = 't20', -- Spawn name of the vehicle the player should receive.
['type'] = 'car', -- Vehicle type the player should receive.
['color'] = 0, -- Color of the vehicle. (All available colors: https://pastebin.com/pwHci0xK)
},
['Weapon'] = {
['enabled'] = false, -- Enable/disable weapon reward.
['name'] = 'weapon_pistol', -- Name of the weapon the player should receive.
},
},
['06_Dec'] = {
['Money'] = { -- Money settings for this gift.
['enabled'] = true, -- Enable/disable money reward.
['account'] = 'money', -- Account where the player receives the money.
['amount'] = {10000, 15000}, -- Fixed amount = for example, 10000, Randomly generated amount = {Minimum amount, Maximum amount}
},
['Items'] = { -- Item settings for this gift.
['enabled'] = false, -- Enable/disable item reward.
['ItemList'] = { -- Enter here all items the player should receive for this gift.
['bread'] = 1, -- Fixed amount = for example, 1.
['water'] = {1, 3}, -- Randomly generated amount = {Minimum amount, Maximum amount}
},
},
['Vehicle'] = { -- Vehicle settings for this gift.
['enabled'] = false, -- Enable/disable vehicle reward.
['model'] = 't20', -- Spawn name of the vehicle the player should receive.
['type'] = 'car', -- Vehicle type the player should receive.
['color'] = 0, -- Color of the vehicle. (All available colors: https://pastebin.com/pwHci0xK)
},
['Weapon'] = {
['enabled'] = false, -- Enable/disable weapon reward.
['name'] = 'weapon_pistol', -- Name of the weapon the player should receive.
},
},
['07_Dec'] = {
['Money'] = { -- Money settings for this gift.
['enabled'] = true, -- Enable/disable money reward.
['account'] = 'money', -- Account where the player receives the money.
['amount'] = {10000, 15000}, -- Fixed amount = for example, 10000, Randomly generated amount = {Minimum amount, Maximum amount}
},
['Items'] = { -- Item settings for this gift.
['enabled'] = false, -- Enable/disable item reward.
['ItemList'] = { -- Enter here all items the player should receive for this gift.
['bread'] = 1, -- Fixed amount = for example, 1.
['water'] = {1, 3}, -- Randomly generated amount = {Minimum amount, Maximum amount}
},
},
['Vehicle'] = { -- Vehicle settings for this gift.
['enabled'] = false, -- Enable/disable vehicle reward.
['model'] = 't20', -- Spawn name of the vehicle the player should receive.
['type'] = 'car', -- Vehicle type the player should receive.
['color'] = 0, -- Color of the vehicle. (All available colors: https://pastebin.com/pwHci0xK)
},
['Weapon'] = {
['enabled'] = false, -- Enable/disable weapon reward.
['name'] = 'weapon_pistol', -- Name of the weapon the player should receive.
},
},
['08_Dec'] = {
['Money'] = { -- Money settings for this gift.
['enabled'] = true, -- Enable/disable money reward.
['account'] = 'money', -- Account where the player receives the money.
['amount'] = {10000, 15000}, -- Fixed amount = for example, 10000, Randomly generated amount = {Minimum amount, Maximum amount}
},
['Items'] = { -- Item settings for this gift.
['enabled'] = false, -- Enable/disable item reward.
['ItemList'] = { -- Enter here all items the player should receive for this gift.
['bread'] = 1, -- Fixed amount = for example, 1.
['water'] = {1, 3}, -- Randomly generated amount = {Minimum amount, Maximum amount}
},
},
['Vehicle'] = { -- Vehicle settings for this gift.
['enabled'] = false, -- Enable/disable vehicle reward.
['model'] = 't20', -- Spawn name of the vehicle the player should receive.
['type'] = 'car', -- Vehicle type the player should receive.
['color'] = 0, -- Color of the vehicle. (All available colors: https://pastebin.com/pwHci0xK)
},
['Weapon'] = {
['enabled'] = false, -- Enable/disable weapon reward.
['name'] = 'weapon_pistol', -- Name of the weapon the player should receive.
},
},
['09_Dec'] = {
['Money'] = { -- Money settings for this gift.
['enabled'] = true, -- Enable/disable money reward.
['account'] = 'money', -- Account where the player receives the money.
['amount'] = {10000, 15000}, -- Fixed amount = for example, 10000, Randomly generated amount = {Minimum amount, Maximum amount}
},
['Items'] = { -- Item settings for this gift.
['enabled'] = false, -- Enable/disable item reward.
['ItemList'] = { -- Enter here all items the player should receive for this gift.
['bread'] = 1, -- Fixed amount = for example, 1.
['water'] = {1, 3}, -- Randomly generated amount = {Minimum amount, Maximum amount}
},
},
['Vehicle'] = { -- Vehicle settings for this gift.
['enabled'] = false, -- Enable/disable vehicle reward.
['model'] = 't20', -- Spawn name of the vehicle the player should receive.
['type'] = 'car', -- Vehicle type the player should receive.
['color'] = 0, -- Color of the vehicle. (All available colors: https://pastebin.com/pwHci0xK)
},
['Weapon'] = {
['enabled'] = false, -- Enable/disable weapon reward.
['name'] = 'weapon_pistol', -- Name of the weapon the player should receive.
},
},
['10_Dec'] = {
['Money'] = { -- Money settings for this gift.
['enabled'] = true, -- Enable/disable money reward.
['account'] = 'money', -- Account where the player receives the money.
['amount'] = {10000, 15000}, -- Fixed amount = for example, 10000, Randomly generated amount = {Minimum amount, Maximum amount}
},
['Items'] = { -- Item settings for this gift.
['enabled'] = false, -- Enable/disable item reward.
['ItemList'] = { -- Enter here all items the player should receive for this gift.
['bread'] = 1, -- Fixed amount = for example, 1.
['water'] = {1, 3}, -- Randomly generated amount = {Minimum amount, Maximum amount}
},
},
['Vehicle'] = { -- Vehicle settings for this gift.
['enabled'] = false, -- Enable/disable vehicle reward.
['model'] = 't20', -- Spawn name of the vehicle the player should receive.
['type'] = 'car', -- Vehicle type the player should receive.
['color'] = 0, -- Color of the vehicle. (All available colors: https://pastebin.com/pwHci0xK)
},
['Weapon'] = {
['enabled'] = false, -- Enable/disable weapon reward.
['name'] = 'weapon_pistol', -- Name of the weapon the player should receive.
},
},
['11_Dec'] = {
['Money'] = { -- Money settings for this gift.
['enabled'] = true, -- Enable/disable money reward.
['account'] = 'money', -- Account where the player receives the money.
['amount'] = {10000, 15000}, -- Fixed amount = for example, 10000, Randomly generated amount = {Minimum amount, Maximum amount}
},
['Items'] = { -- Item settings for this gift.
['enabled'] = false, -- Enable/disable item reward.
['ItemList'] = { -- Enter here all items the player should receive for this gift.
['bread'] = 1, -- Fixed amount = for example, 1.
['water'] = {1, 3}, -- Randomly generated amount = {Minimum amount, Maximum amount}
},
},
['Vehicle'] = { -- Vehicle settings for this gift.
['enabled'] = false, -- Enable/disable vehicle reward.
['model'] = 't20', -- Spawn name of the vehicle the player should receive.
['type'] = 'car', -- Vehicle type the player should receive.
['color'] = 0, -- Color of the vehicle. (All available colors: https://pastebin.com/pwHci0xK)
},
['Weapon'] = {
['enabled'] = false, -- Enable/disable weapon reward.
['name'] = 'weapon_pistol', -- Name of the weapon the player should receive.
},
},
['12_Dec'] = {
['Money'] = { -- Money settings for this gift.
['enabled'] = true, -- Enable/disable money reward.
['account'] = 'money', -- Account where the player receives the money.
['amount'] = {10000, 15000}, -- Fixed amount = for example, 10000, Randomly generated amount = {Minimum amount, Maximum amount}
},
['Items'] = { -- Item settings for this gift.
['enabled'] = false, -- Enable/disable item reward.
['ItemList'] = { -- Enter here all items the player should receive for this gift.
['bread'] = 1, -- Fixed amount = for example, 1.
['water'] = {1, 3}, -- Randomly generated amount = {Minimum amount, Maximum amount}
},
},
['Vehicle'] = { -- Vehicle settings for this gift.
['enabled'] = false, -- Enable/disable vehicle reward.
['model'] = 't20', -- Spawn name of the vehicle the player should receive.
['type'] = 'car', -- Vehicle type the player should receive.
['color'] = 0, -- Color of the vehicle. (All available colors: https://pastebin.com/pwHci0xK)
},
['Weapon'] = {
['enabled'] = false, -- Enable/disable weapon reward.
['name'] = 'weapon_pistol', -- Name of the weapon the player should receive.
},
},
['13_Dec'] = {
['Money'] = { -- Money settings for this gift.
['enabled'] = true, -- Enable/disable money reward.
['account'] = 'money', -- Account where the player receives the money.
['amount'] = {10000, 15000}, -- Fixed amount = for example, 10000, Randomly generated amount = {Minimum amount, Maximum amount}
},
['Items'] = { -- Item settings for this gift.
['enabled'] = false, -- Enable/disable item reward.
['ItemList'] = { -- Enter here all items the player should receive for this gift.
['bread'] = 1, -- Fixed amount = for example, 1.
['water'] = {1, 3}, -- Randomly generated amount = {Minimum amount, Maximum amount}
},
},
['Vehicle'] = { -- Vehicle settings for this gift.
['enabled'] = false, -- Enable/disable vehicle reward.
['model'] = 't20', -- Spawn name of the vehicle the player should receive.
['type'] = 'car', -- Vehicle type the player should receive.
['color'] = 0, -- Color of the vehicle. (All available colors: https://pastebin.com/pwHci0xK)
},
['Weapon'] = {
['enabled'] = false, -- Enable/disable weapon reward.
['name'] = 'weapon_pistol', -- Name of the weapon the player should receive.
},
},
['14_Dec'] = {
['Money'] = { -- Money settings for this gift.
['enabled'] = true, -- Enable/disable money reward.
['account'] = 'money', -- Account where the player receives the money.
['amount'] = {10000, 15000}, -- Fixed amount = for example, 10000, Randomly generated amount = {Minimum amount, Maximum amount}
},
['Items'] = { -- Item settings for this gift.
['enabled'] = false, -- Enable/disable item reward.
['ItemList'] = { -- Enter here all items the player should receive for this gift.
['bread'] = 1, -- Fixed amount = for example, 1.
['water'] = {1, 3}, -- Randomly generated amount = {Minimum amount, Maximum amount}
},
},
['Vehicle'] = { -- Vehicle settings for this gift.
['enabled'] = false, -- Enable/disable vehicle reward.
['model'] = 't20', -- Spawn name of the vehicle the player should receive.
['type'] = 'car', -- Vehicle type the player should receive.
['color'] = 0, -- Color of the vehicle. (All available colors: https://pastebin.com/pwHci0xK)
},
['Weapon'] = {
['enabled'] = false, -- Enable/disable weapon reward.
['name'] = 'weapon_pistol', -- Name of the weapon the player should receive.
},
},
['15_Dec'] = {
['Money'] = { -- Money settings for this gift.
['enabled'] = true, -- Enable/disable money reward.
['account'] = 'money', -- Account where the player receives the money.
['amount'] = {10000, 15000}, -- Fixed amount = for example, 10000, Randomly generated amount = {Minimum amount, Maximum amount}
},
['Items'] = { -- Item settings for this gift.
['enabled'] = false, -- Enable/disable item reward.
['ItemList'] = { -- Enter here all items the player should receive for this gift.
['bread'] = 1, -- Fixed amount = for example, 1.
['water'] = {1, 3}, -- Randomly generated amount = {Minimum amount, Maximum amount}
},
},
['Vehicle'] = { -- Vehicle settings for this gift.
['enabled'] = false, -- Enable/disable vehicle reward.
['model'] = 't20', -- Spawn name of the vehicle the player should receive.
['type'] = 'car', -- Vehicle type the player should receive.
['color'] = 0, -- Color of the vehicle. (All available colors: https://pastebin.com/pwHci0xK)
},
['Weapon'] = {
['enabled'] = false, -- Enable/disable weapon reward.
['name'] = 'weapon_pistol', -- Name of the weapon the player should receive.
},
},
['16_Dec'] = {
['Money'] = { -- Money settings for this gift.
['enabled'] = true, -- Enable/disable money reward.
['account'] = 'money', -- Account where the player receives the money.
['amount'] = {10000, 15000}, -- Fixed amount = for example, 10000, Randomly generated amount = {Minimum amount, Maximum amount}
},
['Items'] = { -- Item settings for this gift.
['enabled'] = false, -- Enable/disable item reward.
['ItemList'] = { -- Enter here all items the player should receive for this gift.
['bread'] = 1, -- Fixed amount = for example, 1.
['water'] = {1, 3}, -- Randomly generated amount = {Minimum amount, Maximum amount}
},
},
['Vehicle'] = { -- Vehicle settings for this gift.
['enabled'] = false, -- Enable/disable vehicle reward.
['model'] = 't20', -- Spawn name of the vehicle the player should receive.
['type'] = 'car', -- Vehicle type the player should receive.
['color'] = 0, -- Color of the vehicle. (All available colors: https://pastebin.com/pwHci0xK)
},
['Weapon'] = {
['enabled'] = false, -- Enable/disable weapon reward.
['name'] = 'weapon_pistol', -- Name of the weapon the player should receive.
},
},
['17_Dec'] = {
['Money'] = { -- Money settings for this gift.
['enabled'] = true, -- Enable/disable money reward.
['account'] = 'money', -- Account where the player receives the money.
['amount'] = {10000, 15000}, -- Fixed amount = for example, 10000, Randomly generated amount = {Minimum amount, Maximum amount}
},
['Items'] = { -- Item settings for this gift.
['enabled'] = false, -- Enable/disable item reward.
['ItemList'] = { -- Enter here all items the player should receive for this gift.
['bread'] = 1, -- Fixed amount = for example, 1.
['water'] = {1, 3}, -- Randomly generated amount = {Minimum amount, Maximum amount}
},
},
['Vehicle'] = { -- Vehicle settings for this gift.
['enabled'] = false, -- Enable/disable vehicle reward.
['model'] = 't20', -- Spawn name of the vehicle the player should receive.
['type'] = 'car', -- Vehicle type the player should receive.
['color'] = 0, -- Color of the vehicle. (All available colors: https://pastebin.com/pwHci0xK)
},
['Weapon'] = {
['enabled'] = false, -- Enable/disable weapon reward.
['name'] = 'weapon_pistol', -- Name of the weapon the player should receive.
},
},
['18_Dec'] = {
['Money'] = { -- Money settings for this gift.
['enabled'] = true, -- Enable/disable money reward.
['account'] = 'money', -- Account where the player receives the money.
['amount'] = {10000, 15000}, -- Fixed amount = for example, 10000, Randomly generated amount = {Minimum amount, Maximum amount}
},
['Items'] = { -- Item settings for this gift.
['enabled'] = false, -- Enable/disable item reward.
['ItemList'] = { -- Enter here all items the player should receive for this gift.
['bread'] = 1, -- Fixed amount = for example, 1.
['water'] = {1, 3}, -- Randomly generated amount = {Minimum amount, Maximum amount}
},
},
['Vehicle'] = { -- Vehicle settings for this gift.
['enabled'] = false, -- Enable/disable vehicle reward.
['model'] = 't20', -- Spawn name of the vehicle the player should receive.
['type'] = 'car', -- Vehicle type the player should receive.
['color'] = 0, -- Color of the vehicle. (All available colors: https://pastebin.com/pwHci0xK)
},
['Weapon'] = {
['enabled'] = false, -- Enable/disable weapon reward.
['name'] = 'weapon_pistol', -- Name of the weapon the player should receive.
},
},
['19_Dec'] = {
['Money'] = { -- Money settings for this gift.
['enabled'] = true, -- Enable/disable money reward.
['account'] = 'money', -- Account where the player receives the money.
['amount'] = {10000, 15000}, -- Fixed amount = for example, 10000, Randomly generated amount = {Minimum amount, Maximum amount}
},
['Items'] = { -- Item settings for this gift.
['enabled'] = false, -- Enable/disable item reward.
['ItemList'] = { -- Enter here all items the player should receive for this gift.
['bread'] = 1, -- Fixed amount = for example, 1.
['water'] = {1, 3}, -- Randomly generated amount = {Minimum amount, Maximum amount}
},
},
['Vehicle'] = { -- Vehicle settings for this gift.
['enabled'] = false, -- Enable/disable vehicle reward.
['model'] = 't20', -- Spawn name of the vehicle the player should receive.
['type'] = 'car', -- Vehicle type the player should receive.
['color'] = 0, -- Color of the vehicle. (All available colors: https://pastebin.com/pwHci0xK)
},
['Weapon'] = {
['enabled'] = false, -- Enable/disable weapon reward.
['name'] = 'weapon_pistol', -- Name of the weapon the player should receive.
},
},
['20_Dec'] = {
['Money'] = { -- Money settings for this gift.
['enabled'] = true, -- Enable/disable money reward.
['account'] = 'money', -- Account where the player receives the money.
['amount'] = {10000, 15000}, -- Fixed amount = for example, 10000, Randomly generated amount = {Minimum amount, Maximum amount}
},
['Items'] = { -- Item settings for this gift.
['enabled'] = false, -- Enable/disable item reward.
['ItemList'] = { -- Enter here all items the player should receive for this gift.
['bread'] = 1, -- Fixed amount = for example, 1.
['water'] = {1, 3}, -- Randomly generated amount = {Minimum amount, Maximum amount}
},
},
['Vehicle'] = { -- Vehicle settings for this gift.
['enabled'] = false, -- Enable/disable vehicle reward.
['model'] = 't20', -- Spawn name of the vehicle the player should receive.
['type'] = 'car', -- Vehicle type the player should receive.
['color'] = 0, -- Color of the vehicle. (All available colors: https://pastebin.com/pwHci0xK)
},
['Weapon'] = {
['enabled'] = false, -- Enable/disable weapon reward.
['name'] = 'weapon_pistol', -- Name of the weapon the player should receive.
},
},
['21_Dec'] = {
['Money'] = { -- Money settings for this gift.
['enabled'] = true, -- Enable/disable money reward.
['account'] = 'money', -- Account where the player receives the money.
['amount'] = {10000, 15000}, -- Fixed amount = for example, 10000, Randomly generated amount = {Minimum amount, Maximum amount}
},
['Items'] = { -- Item settings for this gift.
['enabled'] = false, -- Enable/disable item reward.
['ItemList'] = { -- Enter here all items the player should receive for this gift.
['bread'] = 1, -- Fixed amount = for example, 1.
['water'] = {1, 3}, -- Randomly generated amount = {Minimum amount, Maximum amount}
},
},
['Vehicle'] = { -- Vehicle settings for this gift.
['enabled'] = false, -- Enable/disable vehicle reward.
['model'] = 't20', -- Spawn name of the vehicle the player should receive.
['type'] = 'car', -- Vehicle type the player should receive.
['color'] = 0, -- Color of the vehicle. (All available colors: https://pastebin.com/pwHci0xK)
},
['Weapon'] = {
['enabled'] = false, -- Enable/disable weapon reward.
['name'] = 'weapon_pistol', -- Name of the weapon the player should receive.
},
},
['22_Dec'] = {
['Money'] = { -- Money settings for this gift.
['enabled'] = true, -- Enable/disable money reward.
['account'] = 'money', -- Account where the player receives the money.
['amount'] = {10000, 15000}, -- Fixed amount = for example, 10000, Randomly generated amount = {Minimum amount, Maximum amount}
},
['Items'] = { -- Item settings for this gift.
['enabled'] = false, -- Enable/disable item reward.
['ItemList'] = { -- Enter here all items the player should receive for this gift.
['bread'] = 1, -- Fixed amount = for example, 1.
['water'] = {1, 3}, -- Randomly generated amount = {Minimum amount, Maximum amount}
},
},
['Vehicle'] = { -- Vehicle settings for this gift.
['enabled'] = false, -- Enable/disable vehicle reward.
['model'] = 't20', -- Spawn name of the vehicle the player should receive.
['type'] = 'car', -- Vehicle type the player should receive.
['color'] = 0, -- Color of the vehicle. (All available colors: https://pastebin.com/pwHci0xK)
},
['Weapon'] = {
['enabled'] = false, -- Enable/disable weapon reward.
['name'] = 'weapon_pistol', -- Name of the weapon the player should receive.
},
},
['23_Dec'] = {
['Money'] = { -- Money settings for this gift.
['enabled'] = true, -- Enable/disable money reward.
['account'] = 'money', -- Account where the player receives the money.
['amount'] = {10000, 15000}, -- Fixed amount = for example, 10000, Randomly generated amount = {Minimum amount, Maximum amount}
},
['Items'] = { -- Item settings for this gift.
['enabled'] = false, -- Enable/disable item reward.
['ItemList'] = { -- Enter here all items the player should receive for this gift.
['bread'] = 1, -- Fixed amount = for example, 1.
['water'] = {1, 3}, -- Randomly generated amount = {Minimum amount, Maximum amount}
},
},
['Vehicle'] = { -- Vehicle settings for this gift.
['enabled'] = false, -- Enable/disable vehicle reward.
['model'] = 't20', -- Spawn name of the vehicle the player should receive.
['type'] = 'car', -- Vehicle type the player should receive.
['color'] = 0, -- Color of the vehicle. (All available colors: https://pastebin.com/pwHci0xK)
},
['Weapon'] = {
['enabled'] = false, -- Enable/disable weapon reward.
['name'] = 'weapon_pistol', -- Name of the weapon the player should receive.
},
},
['24_Dec'] = {
['Money'] = { -- Money settings for this gift.
['enabled'] = true, -- Enable/disable money reward.
['account'] = 'money', -- Account where the player receives the money.
['amount'] = {10000, 15000}, -- Fixed amount = for example, 10000, Randomly generated amount = {Minimum amount, Maximum amount}
},
['Items'] = { -- Item settings for this gift.
['enabled'] = false, -- Enable/disable item reward.
['ItemList'] = { -- Enter here all items the player should receive for this gift.
['bread'] = 1, -- Fixed amount = for example, 1.
['water'] = {1, 3}, -- Randomly generated amount = {Minimum amount, Maximum amount}
},
},
['Vehicle'] = { -- Vehicle settings for this gift.
['enabled'] = false, -- Enable/disable vehicle reward.
['model'] = 't20', -- Spawn name of the vehicle the player should receive.
['type'] = 'car', -- Vehicle type the player should receive.
['color'] = 0, -- Color of the vehicle. (All available colors: https://pastebin.com/pwHci0xK)
},
['Weapon'] = {
['enabled'] = false, -- Enable/disable weapon reward.
['name'] = 'weapon_pistol', -- Name of the weapon the player should receive.
},
},
['25_Dec'] = {
['Money'] = { -- Money settings for this gift.
['enabled'] = true, -- Enable/disable money reward.
['account'] = 'money', -- Account where the player receives the money.
['amount'] = {10000, 15000}, -- Fixed amount = for example, 10000, Randomly generated amount = {Minimum amount, Maximum amount}
},
['Items'] = { -- Item settings for this gift.
['enabled'] = false, -- Enable/disable item reward.
['ItemList'] = { -- Enter here all items the player should receive for this gift.
['bread'] = 1, -- Fixed amount = for example, 1.
['water'] = {1, 3}, -- Randomly generated amount = {Minimum amount, Maximum amount}
},
},
['Vehicle'] = { -- Vehicle settings for this gift.
['enabled'] = false, -- Enable/disable vehicle reward.
['model'] = 't20', -- Spawn name of the vehicle the player should receive.
['type'] = 'car', -- Vehicle type the player should receive.
['color'] = 0, -- Color of the vehicle. (All available colors: https://pastebin.com/pwHci0xK)
},
['Weapon'] = {
['enabled'] = false, -- Enable/disable weapon reward.
['name'] = 'weapon_pistol', -- Name of the weapon the player should receive.
},
},
},
}
-- [MAIN SETTINGS]
-----------------------------------------------------------------------
-- https://discord.gg/unique
-- If you have any questions or issues, feel free to open a ticket on our Discord.
---------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------
-- If you have any questions or issues, feel free to open a ticket on our Discord.
-- https://discord.gg/unique
-- "true" = activated, "false" = deactivated. (Applies universally)
-- DO NOT TOUCH THE KEYS BEFORE THE "=" CHARACTER TO PREVENT ERRORS!
-- YOU CAN ONLY EDIT THE VALUES BEHIND THE "=" CHARACTER UNLESS MENTIONED!
------------------------------------------------------------------------
-- [SQL SETTINGS]
UNIQUE.Commands = {
['ResetCalendar'] = { -- With this command, you reset the entire xmas calendar to 0.
['enabled'] = false, -- Would you like to activate this command?
['command'] = "resetcalendar", -- Example = "/resetxmas".
['Ranks'] = { -- Which ranks are allowed to use this command?
'superadmin',
'admin',
},
},
}
-- [SQL SETTINGS]
------------------------------------------------------------------------
------------------------------------------------------------------------
-- [SQL SETTINGS]
UNIQUE.SQL = {
['users_table'] = 'users', -- Table where all players are stored.
['identifier_column'] = 'identifier', -- Identifier.
['firstname_column'] = 'firstname', -- Firstname.
['lastname_column'] = 'lastname', -- Lastname.
['vehicles_table'] = 'owned_vehicles', -- Table where all player vehicles are stored.
['owner_column'] = 'owner', -- Owner.
['plate_column'] = 'plate', -- License plate.
['vehicle_column'] = 'vehicle', -- Vehicle information.
['type_column'] = {
['enabled'] = true, -- Would you like to activate the 'type' column?
['column'] = 'type', -- Vehicle type.
},
['stored_column'] = {
['enabled'] = true, -- Would you like to activate the 'stored' column?
['column'] = 'stored', -- Stored. (Parked or Unparked.)
['value'] = 1, -- Stored Value.
},
['garage_column'] = {
['enabled'] = true, -- Would you like to activate the 'garage' column?
['column'] = 'parking', -- Garage name.
['value'] = "VespucciBoulevard", -- Garage Value.
},
}
-- [SQL SETTINGS]
------------------------------------------------------------------------
------------------------------------------------------------------------
-- [DISCORD LOGS]
UNIQUE.Logs = {
['enabled'] = false, -- Do you want to enable Discord logs?
['webhook'] = "", -- Webhook URL.
['color'] = '#F1A502', -- Embed color. [HEX-Code]
['header'] = "unique_xmascalendar", -- Author text.
['header_link'] = "https://discord.gg/invite/unique", -- Author link.
['header_image'] = "https://cdn3d.iconscout.com/3d/free/thumb/free-christmas-gift-4575236-3798356.png", -- Author image.
['thumbnail'] = "https://unique-studio.de/UNIQUE/DESIGNS/Logo_New.png", -- Thumbnail image.
['image'] = "https://unique-studio.de/Embeds/Thanks.png", -- Normal image.
['footer_image'] = "https://unique-studio.de/UNIQUE/DESIGNS/Logo_New.png", -- Footer image.
['footer_date_format'] = "%d.%m.%Y 〢 %H:%M:%S", -- Date format. [%d = day, %m = month, %Y = year, %H = hour, %M = minute, %S = second.] <- Pay attention to the case sensitivity!
['footer_emoji'] = "📅", -- Footer emoji.
}
-- [DISCORD LOGS]
------------------------------------------------------------------------
-- https://discord.gg/unique
-- If you have any questions or issues, feel free to open a ticket on our Discord.
---------------------------------------------------------------------------------------------------------------
Last updated