Compare commits

...

2 Commits

Author SHA1 Message Date
DLmaster
53049d4acd 添加对1-7连战适配 2024-05-26 12:31:24 +08:00
DLmaster
bb4b45bc36 请求祝福 2024-05-25 15:13:11 +08:00
8 changed files with 12 additions and 8 deletions

Binary file not shown.

View File

@@ -248,9 +248,7 @@ QQ群暂时没有
---------------------------------------------------------------------------------------------- ----------------------------------------------------------------------------------------------
如果喜欢本项目,可以打赏送作者一杯咖啡喵! 作者即将高考,如果喜欢本项目,请祝福他
![打赏](https://github.com/DLmaster361/AUTO_MAA/blob/main/res/README/payid.png "打赏")
---------------------------------------------------------------------------------------------- ----------------------------------------------------------------------------------------------
## 贡献者 ## 贡献者

Binary file not shown.

View File

@@ -4,7 +4,7 @@ VSVersionInfo(
ffi=FixedFileInfo( ffi=FixedFileInfo(
# filevers and prodvers should be always a tuple with four items: (1, 2, 3, 4) # filevers and prodvers should be always a tuple with four items: (1, 2, 3, 4)
# Set not needed items to zero 0. # Set not needed items to zero 0.
filevers=(2, 1, 4, 0), filevers=(2, 1, 5, 0),
prodvers=(0, 0, 0, 0), prodvers=(0, 0, 0, 0),
# Contains a bitmask that specifies the valid bits 'flags'r # Contains a bitmask that specifies the valid bits 'flags'r
mask=0x3f, mask=0x3f,
@@ -31,13 +31,13 @@ VSVersionInfo(
[StringStruct('Comments', 'https://github.com/DLmaster361/AUTO_MAA/'), [StringStruct('Comments', 'https://github.com/DLmaster361/AUTO_MAA/'),
StringStruct('CompanyName', 'AUTO_MAA Team'), StringStruct('CompanyName', 'AUTO_MAA Team'),
StringStruct('FileDescription', 'AUTO_MAA Component'), StringStruct('FileDescription', 'AUTO_MAA Component'),
StringStruct('FileVersion', '2.1.4'), StringStruct('FileVersion', '2.1.5'),
StringStruct('InternalName', 'AUTO_MAA'), StringStruct('InternalName', 'AUTO_MAA'),
StringStruct('LegalCopyright', 'Copyright © 2024 DLmaster361'), StringStruct('LegalCopyright', 'Copyright © 2024 DLmaster361'),
StringStruct('OriginalFilename', 'AUTO_MAA'), StringStruct('OriginalFilename', 'AUTO_MAA'),
StringStruct('ProductName', 'AUTO_MAA'), StringStruct('ProductName', 'AUTO_MAA'),
StringStruct('ProductVersion', 'v2.1.4'), StringStruct('ProductVersion', 'v2.1.5'),
StringStruct('Assembly Version', '2.1.4.0')]) StringStruct('Assembly Version', '2.1.5.0')])
]) ])
] ]
) )

View File

@@ -11,6 +11,7 @@
"MainFunction.Stage2": "" #备选关卡1 "MainFunction.Stage2": "" #备选关卡1
"MainFunction.Stage3": "" #备选关卡2 "MainFunction.Stage3": "" #备选关卡2
"Fight.RemainingSanityStage": "Annihilation" #剩余理智关卡 "Fight.RemainingSanityStage": "Annihilation" #剩余理智关卡
"MainFunction.Series.Quantity": "1" #连战次数
"Penguin.IsDrGrandet": "True" #博朗台模式 "Penguin.IsDrGrandet": "True" #博朗台模式
"GUI.CustomStageCode": "False" #手动输入关卡名 "GUI.CustomStageCode": "False" #手动输入关卡名
"GUI.UseAlternateStage": "False" #使用备选关卡 "GUI.UseAlternateStage": "False" #使用备选关卡

BIN
run.exe

Binary file not shown.

5
run.py
View File

@@ -48,6 +48,7 @@ def setmaa(s,tel,game):
data["Configurations"]["Default"]["MainFunction.Stage2"]="" #备选关卡1 data["Configurations"]["Default"]["MainFunction.Stage2"]="" #备选关卡1
data["Configurations"]["Default"]["MainFunction.Stage3"]="" #备选关卡2 data["Configurations"]["Default"]["MainFunction.Stage3"]="" #备选关卡2
data["Configurations"]["Default"]["Fight.RemainingSanityStage"]="" #剩余理智关卡 data["Configurations"]["Default"]["Fight.RemainingSanityStage"]="" #剩余理智关卡
data["Configurations"]["Default"]["MainFunction.Series.Quantity"]="1" #连战次数
data["Configurations"]["Default"]["Penguin.IsDrGrandet"]="False" #博朗台模式 data["Configurations"]["Default"]["Penguin.IsDrGrandet"]="False" #博朗台模式
data["Configurations"]["Default"]["GUI.CustomStageCode"]="True" #手动输入关卡名 data["Configurations"]["Default"]["GUI.CustomStageCode"]="True" #手动输入关卡名
data["Configurations"]["Default"]["GUI.UseAlternateStage"]="False" #使用备选关卡 data["Configurations"]["Default"]["GUI.UseAlternateStage"]="False" #使用备选关卡
@@ -65,6 +66,10 @@ def setmaa(s,tel,game):
data["Configurations"]["Default"]["MainFunction.Stage2"]="" #备选关卡1 data["Configurations"]["Default"]["MainFunction.Stage2"]="" #备选关卡1
data["Configurations"]["Default"]["MainFunction.Stage3"]="" #备选关卡2 data["Configurations"]["Default"]["MainFunction.Stage3"]="" #备选关卡2
data["Configurations"]["Default"]["Fight.RemainingSanityStage"]="" #剩余理智关卡 data["Configurations"]["Default"]["Fight.RemainingSanityStage"]="" #剩余理智关卡
if game=="1-7":
data["Configurations"]["Default"]["MainFunction.Series.Quantity"]="6" #连战次数
else:
data["Configurations"]["Default"]["MainFunction.Series.Quantity"]="1" #连战次数
data["Configurations"]["Default"]["Penguin.IsDrGrandet"]="False" #博朗台模式 data["Configurations"]["Default"]["Penguin.IsDrGrandet"]="False" #博朗台模式
data["Configurations"]["Default"]["GUI.CustomStageCode"]="True" #手动输入关卡名 data["Configurations"]["Default"]["GUI.CustomStageCode"]="True" #手动输入关卡名
data["Configurations"]["Default"]["GUI.UseAlternateStage"]="False" #使用备选关卡 data["Configurations"]["Default"]["GUI.UseAlternateStage"]="False" #使用备选关卡

View File

@@ -1,3 +1,3 @@
项目初始阶段,不会提供专门的版本更新程序,您需要手动更新程序。 项目初始阶段,不会提供专门的版本更新程序,您需要手动更新程序。
v2.1.2~v2.1.3版本的使用者将旧版本data文件夹移动至新版本软件根目录下覆盖掉预置文件即可完成更新。 v2.1.2~v2.1.4版本的使用者将旧版本data文件夹移动至新版本软件根目录下覆盖掉预置文件即可完成更新。
新用户请忽略本说明。 新用户请忽略本说明。