-
Notifications
You must be signed in to change notification settings - Fork 3
/
config.lua
81 lines (79 loc) · 2.47 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
Config = {}
Config.DiscordLogs = true -- Set webhook in server.lua Line 1
Config.VehicleDisplays = { --Simple vehicle spawner that allows you to display cars that are on sale in your webstore
{
blips = {
enabled = true,
pos = vector3(44.5147, -873.9191, 28.7612),
sprite = 272,
color = 2,
scale = 0.85,
shortRange = true,
name = "Paid Vehicle Displays",
},
vehicles = {
{model = "zentorno", pos = vector4(44.5147, -873.9191, 29.7612, 350.9439)}
}
},
}
Config.Packages = {
["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
},
},
},
["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
},
},
},
["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
},
},
},
["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
vehicletype = "car", -- This is for your garage script, either car boat or air depending on what script you are using(Used for ESX)
},
},
},
["Plate Changer Package"] = { -- Exact package name from tebex
Items = {
{
name = "platechanger", -- 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
},
},
},
["Name Changer Package"] = { -- Exact package name from tebex
Items = {
{
name = "namechanger", -- 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
},
},
},
}