-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdata.lua
56 lines (56 loc) · 1.11 KB
/
data.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
data:extend({
{
type = "custom-input",
name = "autorun",
key_sequence = "mouse-button-5",
consuming = "game-only"
},
{
type = "custom-input",
name = "stop_autorun",
key_sequence = "mouse-button-4",
consuming = "game-only"
},
{
type = "custom-input",
name = "move-up",
key_sequence = "",
linked_game_control = "move-up"
},
{
type = "custom-input",
name = "move-right",
key_sequence = "",
linked_game_control = "move-right"
},
{
type = "custom-input",
name = "move-down",
key_sequence = "",
linked_game_control = "move-down"
},
{
type = "custom-input",
name = "move-left",
key_sequence = "",
linked_game_control = "move-left"
},
{
type = "custom-input",
name = "mine",
key_sequence = "",
linked_game_control = "mine"
},
{
type = "custom-input",
name = "shoot-selected",
key_sequence = "",
linked_game_control = "shoot-selected"
},
{
type = "custom-input",
name = "shoot-enemy",
key_sequence = "",
linked_game_control = "shoot-enemy"
},
})