This repository has been archived by the owner on Jun 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathconfig.lua
52 lines (52 loc) · 1.72 KB
/
config.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
Config = {}
Config.Framework = "ESX" -- "ESX" or "QB"
Config.DiscordLogs = true -- Set webhook in server.lua Line 1
Config.SpaceInLicensePlate = false -- Set to true if you want a space in license plate for vehicle reward
Config.LicensePlateLetters = 3 -- Amount of letters in plate for vehicle reward
Config.LicensePlateNumbers = 3 -- Amount of numbers in plate for vehicle reward
Config.Packages = {
{
PackageName = "Money Package", -- Exact package name from tebex
Items = {
{
name = "money", -- Item or account name depending on type specified below
amount = 2000000, -- Amount of item or money
type = "account" -- Four types: account, item, or weapon and car
},
},
},
{
PackageName = "Item Package", -- Exact package name from tebex
Items = {
{
name = "bandage", -- Item or account name depending on type specified below
amount = 1, -- Amount of item or money
type = "item" -- Four types: account, item, or weapon and car
},
},
},
{
PackageName = "Weapons Package", -- Exact package name from tebex
Items = {
{
name = "weapon_pistol", -- Item or account name depending on type specified below
amount = 51, -- Amount of item or money
type = "weapon" -- Four types: account, item, or weapon and car
},
{
name = "weapon_assaultrifle_mk2", -- Item or account name depending on type specified below
amount = 551, -- Amount of item or money
type = "weapon" -- Four types: account, item, or weapon and car
},
},
},
{
PackageName = "Vehicles Package", -- Exact package name from tebex
Items = {
{
model = "zentorno", -- Item or account name depending on type specified below
type = "car" -- Four types: account, item, or weapon and car
},
},
},
}