-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathconfig.lua
42 lines (41 loc) · 1.76 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
Config = {
Prices = {
-- ['item'] = {min, max} --
['aluminum'] = {80, 120},
['copper'] = {120, 160},
['diamond'] = {200, 300}
},
ChanceToGetItem = 40, -- if math.random(0, 100) <= ChanceToGetItem then give item
Items = {
'aluminum', 'aluminum', 'aluminum',
'copper', 'copper',
'diamond'
},
Sell = vector3(-97.12, -1013.8, 26.3),
Objects = {
['pickaxe'] = 'prop_tool_pickaxe',
},
MiningPositions = {
{coords = vector3(2992.77, 2750.64, 42.78), heading = 209.29},
{coords = vector3(2983.03, 2750.90, 41.02), heading = 214.08},
{coords = vector3(2976.74, 2740.94, 42.63), heading = 246.21},
{coords = vector3(3003.53, 2762.80, 42.37), heading = 262.86},
{coords = vector3(3004.56, 2773.01, 42.03), heading = 273.75},
{coords = vector3(2934.81, 2762.60, 43.14), heading = 105.77},
{coords = vector3(2928.96, 2759.09, 44.09), heading = 121.55},
{coords = vector3(2911.58, 2779.23, 44.33), heading = 113.32},
{coords = vector3(2907.41, 2788.16, 45.40), heading = 102.02},
{coords = vector3(2913.32, 2796.60, 43.27), heading = 77.61 },
{coords = vector3(2946.08, 2726.14, 47.69), heading = 120.14},
{coords = vector3(2935.08, 2742.24, 44.19), heading = 118.27}
},
}
Strings = {
['press_mine'] = 'Press ~INPUT_CONTEXT~ to mine.',
['mining_info'] = 'Press ~INPUT_ATTACK~ to chop, ~INPUT_FRONTEND_RRIGHT~ to stop.',
['you_sold'] = 'You sold %sx %s for %s',
['e_sell'] = 'Press ~INPUT_CONTEXT~ to sell all your mined items.',
['someone_close'] = 'There is a player too close to you!',
['mining'] = 'Mining | Mine',
['sell_mine'] = 'Mining | Sell'
}