-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.lua
98 lines (95 loc) · 2.28 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
-- Item / Price to buy / Selling price
items = {
{"tobacco", 14, 9},
{"sugar", 10, 6},
{"corn", 7, 4},
{"lockpick", 50, 30},
{"wood", 13, 8},
{"water", 5, 3},
{"moonshine", 18, 12},
{"oldbuckle", 3, 2},
{"oldwatch", 4, 3},
{"goldring", 48, 22},
{"goldtooth", 36, 18},
{"oldcoin", 1, 1},
{"fishingrod", 25, 15},
{"tobaccoseed", 3, 1},
{"sugarcaneseed", 2, 1},
{"cornseed", 1, 1},
{"wateringcan", 2, 2},
{"yarrow", 5, 3},
{"carrots", 3, 1},
{"ginseng", 3, 1},
{"oleanderSage", 4, 2},
{"goldpan", 50, 35},
{"coal", 3, 1},
{"quartz", 4, 2},
{"emerald", 6, 3},
{"diamond", 20, 15},
}
keys = {
-- Letters
["A"] = 0x7065027D,
["B"] = 0x4CC0E2FE,
["C"] = 0x9959A6F0,
["D"] = 0xB4E465B4,
["E"] = 0xCEFD9220,
["F"] = 0xB2F377E8,
["G"] = 0x760A9C6F,
["H"] = 0x24978A28,
["I"] = 0xC1989F95,
["J"] = 0xF3830D8E,
-- Missing K, don't know if anything is actually bound to it
["L"] = 0x80F28E95,
["M"] = 0xE31C6A41,
["N"] = 0x4BC9DABB, -- Push to talk key
["O"] = 0xF1301666,
["P"] = 0xD82E0BD2,
["Q"] = 0xDE794E3E,
["R"] = 0xE30CD707,
["S"] = 0xD27782E3,
-- Missing T
["U"] = 0xD8F73058,
["V"] = 0x7F8D09B8,
["W"] = 0x8FD015D8,
["X"] = 0x8CC9CD42,
-- Missing Y
["Z"] = 0x26E9DC00,
-- Symbol Keys
["RIGHTBRACKET"] = 0xA5BDCD3C,
["LEFTBRACKET"] = 0x430593AA,
-- Mouse buttons
["MOUSE1"] = 0x07CE1E61,
["MOUSE2"] = 0xF84FA74F,
["MOUSE3"] = 0xCEE12B50,
["MWUP"] = 0x3076E97C,
-- Modifier Keys
["CTRL"] = 0xDB096B85,
["TAB"] = 0xB238FE0B,
["SHIFT"] = 0x8FFC75D6,
["SPACEBAR"] = 0xD9D0E1C0,
["ENTER"] = 0xC7B5340A,
["BACKSPACE"] = 0x156F7119,
["LALT"] = 0x8AAA0AD4,
["DEL"] = 0x4AF4D473,
["PGUP"] = 0x446258B6,
["PGDN"] = 0x3C3DD371,
-- Function Keys
["F1"] = 0xA8E3F467,
["F4"] = 0x1F6D95E5,
["F6"] = 0x3C0A40F2,
-- Number Keys
["1"] = 0xE6F612E4,
["2"] = 0x1CE6D9EB,
["3"] = 0x4F49CC4C,
["4"] = 0x8F9F9E58,
["5"] = 0xAB62E997,
["6"] = 0xA1FDE2A6,
["7"] = 0xB03A913B,
["8"] = 0x42385422,
-- Arrow Keys
["DOWN"] = 0x05CA7C52,
["UP"] = 0x6319DB71,
["LEFT"] = 0xA65EBAB4,
["RIGHT"] = 0xDEB34313,
}