Skip to content

Commit

Permalink
add
Browse files Browse the repository at this point in the history
  • Loading branch information
pur1fying committed Feb 17, 2024
1 parent de998d9 commit 854f4bd
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 0 deletions.
2 changes: 2 additions & 0 deletions module/explore_hard_task.py
Original file line number Diff line number Diff line change
Expand Up @@ -329,6 +329,8 @@ def to_mission_info(self, y):


def get_explore_hard_task_data(st, need_sss=True, need_task=True, need_present=True):
if type(st) is not str:
st = str(st)
st = st.split(',')
tasks = []
for i in range(0, len(st)):
Expand Down
2 changes: 2 additions & 0 deletions module/explore_normal_task.py
Original file line number Diff line number Diff line change
Expand Up @@ -461,6 +461,8 @@ def to_normal_task_mission_operating_page(self, skip_first_screenshot=False):

def get_explore_normal_task_missions(self, st):
try:
if type(st) is not str:
st = str(st)
st = st.split(',')
tasks = []
for i in range(0, len(st)):
Expand Down
2 changes: 2 additions & 0 deletions module/main_story.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ def implement(self):
self.quick_method_to_main_page()
to_main_story(self, True)
push_episode_list = self.config['main_story_regions']
if type(push_episode_list) is not list:
push_episode_list = [push_episode_list]
if not push_episode_list:
default_list = {
'CN': [1, 2, 3],
Expand Down
27 changes: 27 additions & 0 deletions src/descriptions/自动主线剧情说明.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<p><span style="background-color: #f1c40f;"><strong>主线剧情参数设置</strong></span></p>
<p><span style="background-color: #f1c40f;"><strong>自动推剧情可以帮助走格子</strong><span style="background-color: #ffffff;"> 但是 </span><strong>最终章一些战斗无法自动打</strong></span></p>
<p><span style="background-color: #ffffff;">数字与章节对应表</span></p>
<p><span style="background-color: #ffffff;">1:第一章</span></p>
<p><span style="background-color: #ffffff;">2:第二章</span></p>
<p><span style="background-color: #ffffff;">3:第三章</span></p>
<p><span style="background-color: #ffffff;">4:第四章</span></p>
<p><span style="background-color: #ffffff;">5:最终章</span></p>
<p><span style="background-color: #ffffff;">6:第五章</span></p>
<p><span style="background-color: #ffffff;">用","隔开数字表示依次要推的章节</span></p>
<p><span style="background-color: #ffffff;">例:</span></p>
<p><span style="background-color: #ffffff;">1,3,5</span></p>
<p><span style="background-color: #ffffff;">表示依次推第一章,第三章,最终章</span></p>
<p><span style="background-color: #ffffff;">什么都不填会用默认配置</span></p>
<p><span style="background-color: #ffffff;">国服:1,2,3</span></p>
<p><span style="background-color: #ffffff;">国际服:1,2,3,4,5,4</span></p>
<p><span style="background-color: #ffffff;">日服:1,2,3,4,5,4,6</span></p>
<div>
<pre>&nbsp;</pre>
</div>
</body>
</html>

0 comments on commit 854f4bd

Please sign in to comment.