-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathconfig.lua
More file actions
21 lines (16 loc) · 803 Bytes
/
config.lua
File metadata and controls
21 lines (16 loc) · 803 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Config = {}
-- settings
Config.AutoDualWield = true
Config.SelectLocations = true
-- spawn location if Config.SelectLocations is false
Config.SpawnLocation = { coords = vector4(-169.47, 629.38, 114.03, 236.72) } -- valentine station
-- spawn locations if Config.SelectLocations is true
Config.SpawnLocations = {
{ id = 'valentine', label = 'Valentine', desc = 'The Heartlands', image = 'nui://rsg-spawn/html/img/valentine.jpg', coords = vec4(-169.47, 629.38, 114.03, 236.72) },
{ id = 'saintdenis', label = 'Saint Denis', desc = 'The Big City', image = 'nui://rsg-spawn/html/img/saintdenis.jpg', coords = vec4(2694.69, -1448.48, 46.27, 23.27) },
}
Config.RandomTips = {
'TIP : use [LALT] to target',
'TIP : use [H] to call your horse',
'TIP : use [I] to open your inventory',
}