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
|
{
"actions": {
"w": ["move", "north"],
"s": ["move", "south"],
"d": ["move", "east"],
"a": ["move", "west"],
"KEY_UP": ["move", "north"],
"KEY_DOWN": ["move", "south"],
"KEY_RIGHT": ["move", "east"],
"KEY_LEFT": ["move", "west"],
"k": ["move", "north"],
"j": ["move", "south"],
"l": ["move", "east"],
"h": ["move", "west"],
"e": ["input", ["take"]],
"q": ["unuse"],
"Q": ["take"],
"E": ["use"],
"R": ["input", ["interact"]],
"r": ["do", [
["input", ["interact"]],
["input", ["interact", "north"]],
["input", ["interact", "south"]],
["input", ["interact", "east"]],
["input", ["interact", "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": ["do", [
["input", ["attack"]],
["input", ["attack", "north"]],
["input", ["attack", "south"]],
["input", ["attack", "east"]],
["input", ["attack", "west"]]]],
"F": ["input", ["attack"]],
"W": ["input", ["attack", "north"]],
"S": ["input", ["attack", "south"]],
"D": ["input", ["attack", "east"]],
"A": ["input", ["attack", "west"]],
"t": ["runinput"],
"NEWLINE": ["runinput"],
"KEY_PPAGE": ["scrollchat", 1],
"KEY_NPAGE": ["scrollchat", -1],
"/": ["runinput", "/"]
},
"help": "Controls:\n wasd or arrows:\n Move around\n e: Grab\n q: Drop/unequip\n selected\n r: Interact\n f: Attack\n t: Chat\n E: Use selected\n Q: Take selected\n xc: select item\n vb: select menu\n ctrl-c: close client"
}
|