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
|
{
"actions": {
"w": ["move", "north"],
"s": ["move", "south"],
"d": ["move", "east"],
"a": ["move", "west"],
"up": ["move", "north"],
"down": ["move", "south"],
"right": ["move", "east"],
"left": ["move", "west"],
"k": ["move", "north"],
"j": ["move", "south"],
"l": ["move", "east"],
"h": ["move", "west"],
"e": ["input", ["take", null]],
"q": ["drop"],
"Q": ["take"],
"E": ["use"],
"R": ["input", ["interact", ["none"]]],
"r": ["input", ["interact", ["none", "north", "south", "east", "west"]]],
"x": ["selectitem", -1, true, true],
"c": ["selectitem", 1, true, true],
"v": ["selectwidget", -1, true, true],
"b": ["selectwidget", 1, true, true],
"-": ["selectitem", -1, true, true],
"+": ["selectitem", 1, true, true],
"/": ["selectwidget", -1, true, true],
"*": ["selectwidget", 1, true, true],
"f": ["input", ["attack", ["none", "north", "south", "east", "west"]]],
"F": ["input", ["attack", ["none"]]],
"W": ["input", ["attack", ["north"]]],
"S": ["input", ["attack", ["south"]]],
"D": ["input", ["attack", ["east"]]],
"A": ["input", ["attack", ["west"]]],
"t": ["runinput"],
"enter": ["runinput"],
"pageup": ["scrollchat", 1],
"pagedown": ["scrollchat", -1],
"/": ["runinput", "/"]
},
"help": " Controls:\nwasd or arrows: Move around\ne: Grab\nq: Drop selected\nr: Interact\nf: Attack\nt: Chat\nE: Use selected\nxc: select item\nvb: select menu\nctrl-c: close client\nPgUp/PgDn: scroll chat"
}
|