forked from akanyan/mu3-mods
32 lines
977 B
Markdown
32 lines
977 B
Markdown
## SkipCutscenes
|
|
|
|
### Daily bonus skip
|
|
|
|
Press the red menu button to instantly stamp the item and move on.
|
|
|
|
### Pre-battle ritual skip
|
|
|
|
Press the red menu button once the stage is loaded (after the boss sprite has been replaced with the boss chibi) to start the battle instantly.
|
|
|
|
This can be done automatically with a toggle from TestMenuOptions, or the following entry in mu3.ini:```
|
|
[Sequence]
|
|
QuickStart=1
|
|
```
|
|
|
|
### Post-battle fanfare skip
|
|
|
|
Press the red menu button during the lamp animation (ALL BREAK) or later to skip to the result screen.
|
|
|
|
### Post-score item giveaway
|
|
|
|
Currently not implemented, but you can speed this section up if you explicitly get rid of rewards:
|
|
|
|
* Remove UnlockGameEvents
|
|
* Disable all missions in Artemis like this:
|
|
```sql
|
|
update ongeki_static_events
|
|
set startDate = "2022-01-01 00:00:00", endDate = "2022-01-01 00:00:00"
|
|
where type = 13;
|
|
```
|
|
* Choose an event without ranking or silver jewels
|
|
* Use collab cards (they don't receive affection) |