-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.lua
More file actions
81 lines (78 loc) · 2.33 KB
/
Copy pathconfig.lua
File metadata and controls
81 lines (78 loc) · 2.33 KB
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
Config = {}
Config.locale = "fr"
Config.keyToOpen = "U"
Config.keyToOpenBroadcast = "G"
Config.locations = {
{x= -179.0, y=626.0, z=113.0}
}
Config.TimeBetweenUsersRefresh = -1 -- time spent before server fetch all users from database another time. In Seconds. If value is negative or 0, users are only fetched once at server start and never again
Config.DelayBetweenTwoMessage = 600 -- time spent before user is allowed to send a message another time. In Seconds. If value is negative or 0, no delay is set
Config.DelayBetweenTwoBroadcast = 600 -- time spent before user is allowed to send a broadcast another time. In Seconds. If value is negative or 0, no delay is set
Config.MessageSendPrice = 0
Config.MessageBroadcastPrice = 3
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
}