forked from WeaselRP/weasel-npc
-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.lua
56 lines (53 loc) · 1.68 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
Config = {
-- Robbing
EnableRobNPC = true,
RobTime = 20000,
RobPoliceAlertPercent = 40,
RobDisplayCode = '500',
RobCash = {20, 75}, --Random between the 2 values
RobCooldown = 3.5, -- in minutes
Items = {
{'green-dongle', 1, 5, {type=5}}, -- Item name, Item amount, Percent Chance
{'yellow-dongle', 1, 2, {type=5}},
{'red-dongle', 1, 1, {type=5}},
{'gold_necklace', 1, 10, {}},
{'gold_watch', 1, 10, {}},
{'platinum_watch', 1, 4, {}},
{'precious_tear', 1, 1, {}}
},
-- Drugs
UpdateTime = 2000,
TransactionTime = 30000,
AcceptPercent = 65,
DrugPoliceAlertPercent = 75, -- Percent cahnce on failure to alert police
MaxCanBuy = 3,
DrugDisplayCode = '420',
DrugCooldown = 0.5, -- In minutes
Drugs = {
{'weed_pouch', 300, 400},
{'meth_pouch', 400, 600},
{'coke_pouch', 350, 500},
{'crack_pouch', 300, 450},
{'lsd_tab', 8, 20},
{'dmt_pouch', 400, 900},
{'morphine_pouch', 250, 400},
{'heroin_pouch', 500, 900}
},
DrugHotspots = {
vector3(-496.0, -835.0, 35.0),
vector3(921.0, -843.0, 56.0),
vector3(-26.0, -1581.0, 31.0),
vector3(-1207.0, -1350.0, 10.0),
vector3(130.0, 212.0, 68.0),
vector3(-1000.0, -240.0, 39.0),
vector3(412.0, -944.0, 49.0),
vector3(148.0, -178.0, 29.0),
vector3(-1271.21, -720.0, 23.0),
vector3(-666.0, -892.0, 24.0),
vector3(-1099.0, -1460.0, 5.0),
vector3(944.0, -1813.0, 31.0),
},
DrugHotspotRadius = 1000.0,
DrugHotspotMultiplier = 1.25,
DrugHotspotSwapTime = 30 --minutes
}