-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain_daemon.py
More file actions
31 lines (23 loc) · 821 Bytes
/
main_daemon.py
File metadata and controls
31 lines (23 loc) · 821 Bytes
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
from arona import startup, momotalk, cafe, tasks, mail, battle, group, alchemy, schedule
if __name__ == '__main__':
# demoviewer.start_viewer()
while True:
startup.wait_until_timer()
startup.run_startup()
# Tasks independent to rewards given
group.run_group() # ok
battle.run_wanted() # ok
battle.run_communication() # ok
cafe.run_cafe() # ok
schedule.run_schedule() # ok
momotalk.run_momotalk() # ok
mail.run_mail() # ok
tasks.run_tasks() # ok
battle.run_competition() # ok
# TODO: not implemented
# tasks.recover_ap()
# battle.run_task() total 20
# shop.buy_daily()
alchemy.run_alchemy() # ok
tasks.run_tasks() # ok
startup.stop_activity()