Configuration Preview

1
--[[
2
$$\ $$\
3
$$ | $$ |
4
$$ | $$ | $$$$$$\ $$$$$$\ $$$$$$$\ $$$$$$\
5
\$$\ $$ |$$ __$$\ $$ __$$\ $$ _____|$$ __$$\
6
\$$\$$ / $$$$$$$$ |$$ | \__|\$$$$$$\ $$$$$$$$ |
7
\$$$ / $$ ____|$$ | \____$$\ $$ ____|
8
\$ / \$$$$$$$\ $$ | $$$$$$$ |\$$$$$$$\
9
\_/ \_______|\__| \_______/ \_______|
10
store.VerseScripts.net
11
--]]
12
-- Need help? https://discord.gg/rbahmK8kR7
13
Config = {}
14
15
Config.Notify = "ox" -- qb | okok | es.lib | brutal | b-dev | ox
16
Config.Framework = "qb" -- qb | esx
17
18
Config.Item = "carjack" -- Name of the item
19
Config.WheelItem = "wheel" -- Name of the item that will be given to the player
20
21
Config.Minigame = "ox"
22
Config.MinigameDifficulty = { "easy", "easy", "easy", "easy", "easy", "easy" } -- easy | medium | hard
23
Config.MinigameKeys = { "w", "a", "s", "d" }
24
25
Config.MaxDistance = 2.0 -- Distance from the vehicle to start the minigame
26
27
-- Notifications
28
Config.TooFar = {
29
title = "Error",
30
text = "You are too far away from the vehicle",
31
}
32
33
Config.MinigameFailed = {
34
title = "Error",
35
text = "You failed the minigame",
36
}
37
38
Config.MinigameSuccess = {
39
title = "Success",
40
text = "You successfully stole the wheel",
41
}

Verse Scripts