We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c504b6a commit 8bd9b98Copy full SHA for 8bd9b98
auto_daily.py
@@ -1,9 +1,5 @@
1
-from autowsgr.scripts.daily_api import DailyOperation
2
from autowsgr.scripts.main import start_script
3
4
-
5
timer = start_script('./user_settings.yaml')
6
7
# 日常,可以实现日常出击,战役,演习等操作
8
-operation = DailyOperation(timer)
9
-operation.run()
+timer.run_daily_automation()
decisive_battle.py
@@ -1,9 +1,4 @@
-from autowsgr.fight import DecisiveBattle
-# 决战出击
-decisive_battle = DecisiveBattle(timer)
-decisive_battle.run_for_times(1) # 数字为决战出击的次数
+timer.run_decisive_battle(1) # 数字为决战出击的次数
0 commit comments