-
Notifications
You must be signed in to change notification settings - Fork 13
/
commands.py
60 lines (49 loc) · 1.09 KB
/
commands.py
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
import animal_crossing
import canned
import code_eval
import cryptolyze
import eve
import friend_code
import management
import poe
import sbds
import timer
import twitter
import utils
commands = {
'help': utils.help,
'botinfo': utils.botinfo,
'ping': utils.ping,
'calc': utils.calc,
'unicode': utils.unicode,
'units': utils.units,
'roll': utils.roll,
'time': utils.time,
'weather': utils.weather,
'ohno': utils.ohno,
'ohyes': utils.ohyes,
'ddd': utils.ddd,
'timer': timer.timer,
'price': eve.price_check,
'jumps': eve.jumps,
'ly': eve.lightyears,
'evewho': eve.who,
'js': code_eval.nodejs,
'ruby': code_eval.ruby,
'py2': code_eval.python2,
'py3': code_eval.python3,
'cryptolyze': cryptolyze.cryptolyze,
'join': management.join,
'leave': management.leave,
'roles': management.list_roles,
'groups': management.list_roles,
'cleanup': management.cleanup,
'massban': management.mass_ban,
'pc': poe.price,
'poe': poe.poedb,
'sbds': sbds.sbds,
'fc': friend_code.friend_code,
'stalks': animal_crossing.stalk_market,
'twitter_queue': twitter.queue_info,
'can': canned.canned,
}