mirror of
https://github.com/pret/pokemon-reverse-engineering-tools.git
synced 2026-08-09 10:47:24 -05:00
use explicit skips in vba autoplayer
This commit is contained in:
parent
2268dd43b5
commit
38ecfa8705
|
|
@ -76,18 +76,18 @@ class SpeedRunner(Runner):
|
|||
Start the game.
|
||||
"""
|
||||
# get past the opening sequence
|
||||
self.skip_intro()
|
||||
self.skip_intro(skip=True)
|
||||
|
||||
# walk to mom and handle her text
|
||||
self.handle_mom()
|
||||
self.handle_mom(skip=True)
|
||||
|
||||
# walk outside into new bark town
|
||||
self.walk_into_new_bark_town()
|
||||
self.walk_into_new_bark_town(skip=True)
|
||||
|
||||
# walk to elm and do whatever he wants
|
||||
self.handle_elm("totodile")
|
||||
self.handle_elm("totodile", skip=True)
|
||||
|
||||
self.new_bark_level_grind(10, skip=False)
|
||||
self.new_bark_level_grind(6, skip=False)
|
||||
|
||||
@skippable
|
||||
def skip_intro(self, stop_at_name_selection=False):
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user