forked from denkz/esx_fishing_mod
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.lua
100 lines (91 loc) · 2.13 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
Config = {}
Config.DrawDistance = 100.0
Config.FishPrices = {
SmallBass = 60,
SmallPike = 80,
SmallSalmon = 120,
Bass = 95,
Pike = 185,
Salmon = 515,
BigBass = 140,
BigPike = 245,
BigSalmon = 685
}
Config.Zones = {
FishingPosition1 = {
Pos = {x = 37.74, y = 860.75, z = 196.50},
Size = {x = 2.0, y = 2.0, z = 0.6},
Color = {r = 0, g = 0, b = 0},
Type = 1
},
FishingPosition2 = {
Pos = {x = 35.84, y = 858.64, z = 196.50},
Size = {x = 2.0, y = 2.0, z = 0.6},
Color = {r = 0, g = 0, b = 0},
Type = 1
},
FishingPosition3 = {
Pos = {x = 33.84, y = 856.54, z = 196.50},
Size = {x = 2.0, y = 2.0, z = 0.6},
Color = {r = 0, g = 0, b = 0},
Type = 1
},
FishingPosition4 = {
Pos = {x = 32.04, y = 854.73, z = 196.50},
Size = {x = 2.0, y = 2.0, z = 0.6},
Color = {r = 0, g = 0, b = 0},
Type = 1
},
FishingPosition5 = {
Pos = {x = 29.65, y = 852.61, z = 196.50},
Size = {x = 2.0, y = 2.0, z = 0.6},
Color = {r = 0, g = 0, b = 0},
Type = 1
},
FishingPosition6 = {
Pos = {x = 28.24, y = 851.10, z = 196.50},
Size = {x = 2.0, y = 2.0, z = 0.6},
Color = {r = 0, g = 0, b = 0},
Type = 1
},
SellFish = {
Pos = {x = -46.93, y = -1755.45, z = 28.42},
Size = {x = 1.5, y = 1.5, z = 1.0},
Color = {r = 204, g = 204, b = 0},
Type = 1
},
FishingLeaderboard = {
Pos = {x = 235.29, y = -897.50, z = 29.69},
Size = {x = 2.0, y = 2.0, z = 1.0},
Color = {r = 11, g = 38, b = 153},
Type = 1
},
}
Config.Blips = {
-- FishingHotSpot1 = {
-- Pos = {x = -1710.039, y = -1137.687, z = 14.684},
-- Size = {x = 3.5, y = 3.5, z = 2.0},
-- Color = {r = 204, g = 204, b = 0},
-- Type = 1,
-- BlipName = "Fishing Hotspot",
-- BlipId = 68
-- },
--
-- SellFish = {
-- Pos = {x = 392.039, y = -772.687, z = 30.684},
-- Size = {x = 3.5, y = 3.5, z = 2.0},
-- Color = {r = 204, g = 204, b = 0},
-- Type = 1,
-- BlipName = "Sell Fish",
-- BlipId = 108
-- },
--
FishingLeaderboard = {
Pos = {x = 235.11, y = -897.35, z = 30.69},
Size = {x = 3.5, y = 3.5, z = 2.0},
Color = {r = 204, g = 204, b = 0},
Type = 1,
BlipName = "Fishing Leaderboard",
BlipId = 280
},
}