-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.lua
73 lines (59 loc) · 4.51 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
-------------------
-- C o n f i g s --
-------------------
Config = {}
Config.mechanic = 0 -- Minimum Amount of mechanics
Config.Price = 2000
companyName = "Smiths Recovery"
companyIcon = "CHAR_LS_CUSTOMS" -- https://wiki.gtanet.work/index.php?title=Notification_Pictures
spawnRadius = 100 -- Default Value:
drivingStyle = 786603 -- Default Value: 786603
simplerRepair = false -- When enabled, instead of getting out of the vehicle to repair, the mechanic stops his vehicle and the repair happens automatically.
repairComsticDamage = false -- When enabled, the vehicle's cosmetic damage gets reset.
flipVehicle = true -- When enabled, the vehicle will be flipped if on roof or side after repair.
-- To change the chat command (def. /mechanic), see line 1 of client.lua
-- Edit / Add Drivers and their information here!
mechPeds = {
-- * Find the icons here: https://wiki.gtanet.work/index.php?title=Notification_Pictures
-- * Find the ped models here: https://wiki.gtanet.work/index.php?title=Peds
-- * Find the vehicles here https://wiki.gtanet.work/index.php?title=Vehicle_Models
-- * Find the colours here: https://wiki.gtanet.work/index.php?title=Vehicle_Colors
[1] = {name = "Mechanic Dave", icon = "CHAR_MP_MECHANIC", model = "S_M_Y_DockWork_01", vehicle = 'UtilliTruck3', colour = 111,
['lines'] = {
"She's as good as new.",
"All done here.",
"Here you are, should be working now.",
"It's done.",
"What can I say, I'm a master of my craft.",
"I had to sprinkle a little bit of magic, but it should work now.",
"Who you gonna call? Dave Mechanic!",
"Easy peasy!",
"Easier on the gas pedal next time, will ya?",
"The only thing I can't fix is my marriage...",
"Fixed. Have a good day, drive safe!",
"It's a bit of a bodge, but it works.",}},
[2] = {name = "Mechanic Mark", icon = "CHAR_MP_BIKER_MECHANIC", model = "S_M_Y_Construct_01", vehicle = 'BobcatXL', colour = 118,
['lines'] = {
"Yeehaw, now she's fresher than a pillow with a mint on it!",
"All done here.",
"Job done.",
"I've done everything I could.",
"I hit it with a wrench a couple times and I think it worked!",
"Our company takes no responsibilities for spontanious combustions of the engine.",
"Sometimes I don't really think I know what I'm doing. Anyway, here's your car!",
"Ahh, yes... The water pipe needed to be replaced. All good now.",
"She's in perfect condition.",
"*slaps roof of the car* This bad boy can fit so many screws in it.",
"Should work now."}},
-- You can use this template to make your own driver.
-- * Find the icons here: https://wiki.gtanet.work/index.php?title=Notification_Pictures
-- * Find the ped models here: https://wiki.gtanet.work/index.php?title=Peds
-- * Find the colours here: https://wiki.gtanet.work/index.php?title=Vehicle_Colors
-- * Driver ID needs to be a number (in sequential order from the previous one. In this example it would be 3).
--[[
--Edit the NAME, ICON, PED MODEL and TRUCK COLOUR here:
[driver_ID] = {name = "driver_name", icon = "driver_icon", model = "ped_model", vehicle = 'vehicle_model' colour = 'driver_colour',
--You can add or edit any existing vehicle fix lines here:
[1] = {"Sample text 1","Sample text 2",}}, -- lines of dialogue.
]]
}