generated from MaaXYZ/MaaPracticeBoilerplate
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1. 改善刷初始逻辑,显著减少卡死与点歪。 2. 上线新功能:弱智竞技场。反正不管打谁都是输,为什么不直接打第一个呢?
- Loading branch information
1 parent
0d60445
commit dd9769e
Showing
16 changed files
with
194 additions
and
104 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,134 @@ | ||
{ | ||
"Main_To_Contest": { | ||
"recognition": "TemplateMatch", | ||
"template": "icon_contest.png", | ||
"action": "Click", | ||
"next": [ | ||
"Enter_Contest_Page" | ||
] | ||
}, | ||
"Enter_Contest_Page": { | ||
"recognition": "TemplateMatch", | ||
"template": "text_contest.png", | ||
"roi": [ | ||
279, | ||
814, | ||
273, | ||
143 | ||
], | ||
"action": "Click", | ||
"next": [ | ||
"Loop_Enter_Contest_Battle" | ||
] | ||
}, | ||
"Loop_Enter_Contest_Battle": { | ||
"next": [ | ||
"Flag_Power_Empty", | ||
"Contest_Enemy_Choose" | ||
] | ||
}, | ||
"Contest_Enemy_Choose": { | ||
"recognition": "TemplateMatch", | ||
"template": "icon_enemy_level.png", | ||
"roi": [ | ||
63, | ||
580, | ||
153, | ||
74 | ||
], | ||
"action": "Click", | ||
"timeout_next": [ | ||
"Loop_Enter_Contest_Battle" | ||
], | ||
"next": [ | ||
"Contest_Enemy_Choose", | ||
"Start_Contest_Battle" | ||
] | ||
}, | ||
"Start_Contest_Battle": { | ||
"recognition": "TemplateMatch", | ||
"template": "button_contest_battle_start.png", | ||
"roi": [ | ||
231, | ||
1029, | ||
271, | ||
144 | ||
], | ||
"action": "Click", | ||
"next": [ | ||
"Start_Contest_Battle", | ||
"Loop_Contest_Battle" | ||
] | ||
}, | ||
"Loop_Contest_Battle": { | ||
"next": [ | ||
"Flag_Contest_Battle_Over", | ||
"Close_Present_And_Leave", | ||
"Skip_Battle", | ||
"Close_Others" | ||
] | ||
}, | ||
"Close_Present_And_Leave": { | ||
"recognition": "TemplateMatch", | ||
"template": "button_present_close.png", | ||
"roi": [ | ||
200, | ||
1104, | ||
315, | ||
120 | ||
], | ||
"action": "Click" | ||
}, | ||
"Skip_Battle": { | ||
"is_sub": true, | ||
"recognition": "TemplateMatch", | ||
"template": "button_battle_skip.png", | ||
"roi": [ | ||
579, | ||
1125, | ||
117, | ||
76 | ||
], | ||
"action": "Click" | ||
}, | ||
"Flag_Contest_Battle_Over": { | ||
"recognition": "TemplateMatch", | ||
"template": "icon_contest_battle_over.png", | ||
"roi": [ | ||
190, | ||
1094, | ||
331, | ||
144 | ||
], | ||
"action": "Click", | ||
"next": [ | ||
"Flag_Contest_Battle_Over", | ||
"Leave_Contest_Battle" | ||
] | ||
}, | ||
"Leave_Contest_Battle": { | ||
"recognition": "TemplateMatch", | ||
"template": "button_contest_battle_over.png", | ||
"roi": [ | ||
213, | ||
1084, | ||
297, | ||
142 | ||
], | ||
"action": "Click", | ||
"next": [ | ||
"Leave_Contest_Battle", | ||
"Loop_Enter_Contest_Battle" | ||
] | ||
}, | ||
"Flag_Power_Empty": { | ||
"recognition": "TemplateMatch", | ||
"template": "text_power_empty.png", | ||
"roi": [ | ||
430, | ||
0, | ||
290, | ||
101 | ||
] | ||
} | ||
} |
Oops, something went wrong.