|
@@ -264,7 +264,7 @@ def add_auto_task(isMaxCollect, isJina, isSimple = False, isAddStrengh = False,
|
|
|
fight_big_monster_times = 0
|
|
|
config = read_Dailycfg()
|
|
|
print("config", config)
|
|
|
- g_times += 1
|
|
|
+
|
|
|
|
|
|
if check_daily_config(config):
|
|
|
today = datetime.now().strftime('%Y-%m-%d')
|
|
@@ -292,7 +292,7 @@ def add_auto_task(isMaxCollect, isJina, isSimple = False, isAddStrengh = False,
|
|
|
set_fight_big_monster_times(config, fight_big_monster_times + 1)
|
|
|
write_Dailycfg(config)
|
|
|
|
|
|
- if is_within_n_minutes(get_todo_time("巨熊行动"), 15, 30):
|
|
|
+ if isSimple == False and is_within_n_minutes(get_todo_time("巨熊行动"), 15, 30):
|
|
|
if len(task_queue) < 5:
|
|
|
task_queue.appendleft(task_returnAllLine())
|
|
|
task_queue.appendleft(task_paticipateInTeam())
|
|
@@ -301,7 +301,7 @@ def add_auto_task(isMaxCollect, isJina, isSimple = False, isAddStrengh = False,
|
|
|
myTimeSleep_big()
|
|
|
send_status(f'巨熊行动中')
|
|
|
continue
|
|
|
- elif is_within_n_minutes(get_todo_time("巨熊行动"), 60, 0):
|
|
|
+ elif isSimple == False and is_within_n_minutes(get_todo_time("巨熊行动"), 60, 0):
|
|
|
# 设置无尽运行和启动的游戏为0
|
|
|
always = True
|
|
|
update_rungame_type(0)
|
|
@@ -386,6 +386,8 @@ def add_auto_task(isMaxCollect, isJina, isSimple = False, isAddStrengh = False,
|
|
|
|
|
|
task_queue.appendleft(task_gotoTree())
|
|
|
#task_queue.appendleft(task_get_redPackage())
|
|
|
+
|
|
|
+ g_times += 1
|
|
|
restart_times = 7
|
|
|
if g_switch:
|
|
|
restart_times = 4
|