(Link to video)

Game objectives

  • Heavy luck manipulation
  • Takes intentional damage
  • Uses a game restart sequence
  • Forgoes save data corruption
The last one refers to the save glitch. It can be used in Seasons as well, although it's a bit slower to set up. I didn't use it here because it kind of skips the whole game.

Version Choice

The Japanese version has faster savewarps and faster text. The only other advantage is that your items are automatically reequipped after the Blaino fight, saving one menu.
This run is done in GBA mode. This is known to cause a bit more lag. Usually this just means we get the odd extra lag frame here and there but the last loading zone before Onox's Castle lags for an extra half second. I used it anyway because of console-verification.

Anyway, since this run already has subtitles I guess I just put the B-side comments here that didn't make the cut. You can safely skip all of this unless you really care to know about every last frame that was saved in this run. Maybe the section on Major Tricks just below or the explanation of Rooster Adventure towards the end of the run are worth reading.

Commonly used techniques

Major Tricks

Pit Walking

When Link is over a pit, he doesn't fall down immediately. Rather, he is pulled towards the middle of the tile and then falls down. This can be exploited by constantly changing which tile you fall into, in which case you will never fall down. You can get away with only switching between the tiles every other frame, so if you wanted to pit walk to the right for example, your inputs would be right, up-right, right, down-right and then repeat.
Link carries a bit of momentum into the pit, which means you don't have to start alternating between the pits immediately. It's actually a bit difficult to know when to stop holding one direction and start pit walking, so I just made a lua script that does it perfectly.
Pit Walking comes with some limitations: You need to have two pits next to each other, if there is only one it won't work. It also only works for pits, not water or lava. Finally, you can't transition to the next screen and you can't use any items without falling down.

RNG Manipulation

In general, the RNG in this game only changes when something random happens, which makes manipulating it very difficult in a TAS setting. There are however some situations when the RNG is quite volatile:
  • It advances 256 times for every screen transition. This isn't really helpful to us because the only way to exploit this would be to take extra screen transitions, which would be very slow
  • It advances once per frame on the title screen
  • Whenever an object on screen or the whole screen shakes, it advances once per frame
  • Some enemies call the RNG a lot. Notably Mini Moldorms call it every 8 frames, Keese call it every other frame and Leevers call it every frame
  • Slashing the Sword advances the RNG once because the sound the Sword makes is random. You can slash the Sword once every 4 frames
The above give us some means of manipulating the RNG but only if we're willing to plan far ahead. In practice this looks like this:
Let's say we're in Room A, where we can manipulate the RNG a lot. Maybe we have time to slash the Sword, maybe there's a Keese in the room we could kill to make the RNG advance less, maybe Room A is just the title screen (not really a room but you get it). We now have to find a Room B later in the run that really wants to be manipulated. Usually this will be a room where we have to kill all the enemies, whose spawn positions are random. Now we play through the game until we reach Room B. This will give us an idea of where the RNG will be at when we get to that room. Next we figure out how much we can change the RNG in Room A. This will give us a range of all possible RNG values in Room B. Out of all of these we find the one that gives us the best result. This can mean checking hundreds of seeds, so we better use a script for this rather than doing it by hand.
Now that we know what the RNG should be in Room B, you would be forgiven to think that the hard part is over. Just look at how many ticks the RNG needs to be advanced in Room B, then advance that many ticks in Room A. The problem with that is that there will probably be rooms with enemies between rooms A and B and how much these enemies advance the RNG depends on what the RNG is, going into those rooms. This means that the only way to know what the RNG should be after Room A is to start at Room B and go back through every single room that has enemies in it, writing down what the RNG has to be at at the start of the room, so you end up with the right value at the end of it. Sometimes you get unlucky and there won't be any such start RNG that will lead to the correct end RNG. In that case, you have to go all the way back to Room B and find a second best RNG value, then try again and see if that one works. Sometimes there will be several start RNGs that all lead to the correct end RNG. In that case you better write down all of them because some of them might lead to a dead end. The longer the distance between rooms A and B the more ridiculous this becomes, leading to an entire tree of RNG values that starts in one value in Room B and leads back through several branching points and you just have to hope that one of the branches makes it all the way back to Room A.
Anyway, not only is this extremely time-consuming to the point where I easily spent more time on this aspect of the run than all the other aspects combined. It also leaves us at the mercy of the game giving us enough opportunities to manipulate the RNG. In the beginning of the run, the game is generous and gives us two very good opportunities to do so (the mine cart ride in D1 and the Rosa hide and seek part). Towards the end of the run, not only are such opportunities few and far between but we also have to manipulate more random events (namely random Pegasus Seed drops). All this combined leads to the run looking noticably worse in the later half of the run, with us having to wait around for the RNG to advance much more than during the first half. Rest assured this is not because I got lazy halfway through, it's just kind of how this game works.
The one silver lining here is that this type of RNG makes it pretty easy to edit the inputs after the fact because saving time in one room will probably not affect the RNG at all. This means that whenever I made a mistake and found it later, I was able to fix it.

Wall Clipping

The walls in this game are not symmetrical (wall just means most types of collision here): When you're directly above a wall tile, you're only two pixels away from being considered inside the wall whereas the distance is much greater if you're on the right, left, or bottom of it. Using a Damage Boost, you can move at speeds of more than 2 pixels/frame. This means that if you're one pixel above the wall on one frame and then move three pixels down on the next one, you can effectively stand inside the wall, even if the tile above is a pit.

Minor Optimisations

32-Way Movement

Usually your movement is limited to 8 directions. However, there are two exceptions where 32-way movement is possible: ice and mid-air movement. This saves a bit of time because you can move in a straighter line towards your goal.
On ice D-pad input is only considered every 6th frame. Pressing a direction other than the one you are currently travelling in will change your direction by 1. If you don't hold any direction, you will slow down. This means that if you want to go in a direction that is not one of the 8 normal ones, you have to oscillate between two neighbouring directions every 6 frames.
When you jump with the feather, you will always travel in the initial direction for the first 14 frames of the jump. For the remaining 16 frames, your direction will change by 1 if you're holding a direction other than the one you're currently travelling in. In this case, you will not slow down if you don't hold any direction, so once you've reached the desired direction, it's best to just let go of the D-pad.
It should be noted that whenever you're in mid-air on any screen, you have to push against the edge of the screen for 4 frames before you can trigger the screen transition. Seems like the devs really wanted to prevent mid-air screen transitions like in Link's Awakening. This means that's it's not worth it to jump in order to optimise your movement unless you either have to jump on the current screen anyway (since the 4 frames don't stack) or you don't leave the screen through a normal transition (for example if you have to enter a building, enter a stairway, or savewarp).

Animation Cancelling

Some of Link's animations can be cancelled:
  • The Shovel animation takes 23 frames but it can be cancelled after 5 frames with the Power Bracelet, which is essential for Rooster Adventure. It can also be cancelled with the Sword, which saves one frame and changes the RNG, which may or may not be good. Cancelling it with the Rod of Seasons is break-even.
  • The throwing animation takes 9 frames and can be cancelled after one frame by throwing with the button that the Power Bracelet/Bombs are not on and then using the button they are on on the next frame.
  • Throwing an Ember Seed also takes 9 frames but can't be cancelled the same way. It can however be cancelled with the Sword, which usually loses time but can be faster if you have to turn around and immediately throw another seed.
  • The Sword's poking animation can be skipped by releasing the Sword button the same frame you hit an enemy. This does not work when poking a bush.

Camera Manipulation

Whenever a small key drops from the ceiling, it drops from directly above the camera. By scrolling the camera down before the key drops, the key will drop earlier.

Corner Boosting and Corner Clipping

There are two types of objects in this game; one allows for Corner Boosting and the other allows for Corner Clipping.
The type that allows for Corner Boosting consists of NPCs, mine carts, and pushable objects while they are moving. If you try to move into the corner of these objects, you will be pushed out one pixel. This doesn't work in every direction unless you're using Pegasus Seeds, in which case you can also get pushed two pixels sometimes.
The type that allows for Corner Clipping consists of all the other objects in the game, including walls, blocks, chests, and pushable objects while they are standing still. If you try to move into the corner of these objects, you will just clip one pixel into the object. This just saves one or two frames of movement and doesn't have any notable effects.

Damage Boosting

Normal walking speed is 1 pixel/frame. Getting hit by an enemy will move you at 1.25 pixels/frame for 14 frames and on the 15th frame both speeds are combined for a speed of 2.25 pixels/frame. This means you gain 4.75 pixels of distance and can expect to save 4 or 5 frames. In practice the boost can even save a bit more because damage boost are 32-way but it can also save less because you usually have to walk a bit out of your way to get the boost.
Walking through grass gives you a speed of 0.75 pixels/frame and walking over stairs is only 0.5 pixels/frame but damage boosts are still 1.25 pixels/frame. This means that if you get a perfect boost over stairs, you gain 10.75 pixels and save 21 or 22 frames.
Damage boosts also save more time if you get hit while Link is stuck in an animation because now you're moving at 1.25 pixels/frame instead of not moving at all.
Jumping out of a damage boost will combine the two speeds, so you will go at 2.25 pixels/frame for 15 frames.
Pegasus running speed is 1.5 pixels/frame, which means that damage boosting is now slower unless one of the cases outlined above applies. Notably, jumping out of a boost now gives you a speed of 2.75 pixels/frame, which is fast enough to Wall Clip.
Taking damage from your own Bombs is similar but you only get 11 frames of a boost instead of 14.

Essences

Picking up the Essence at the end of a dungeon is surprisingly hard to do as fast as possible. You want to be as close to it as possible because it slowly floats down towards Link in the cutscene. To this end, you can avoid the cutscene trigger by Corner Clipping into the block to the left or right of the stairs and only trigger the cutscene once you are close. This is however complicated by the fact that the Essence itself moves up and down before you reach it. It will move one pixel whenever the in-game clock is a multiple of 4. This means that Essences essentially act like mini-framerules.
This also applies when picking up the Rod of Seasons.

Lag Reduction

This game doesn't have much lag so there isn't much to say here.
Some screen transitions will lag a bit more than others. This seems to happen quite often on screens where a cutscene plays, even if you've already watched the cutscene. For example, when going through Horon Village after D1, we avoid the screen just south of the Maku Tree and instead go through the screen with the ring shop.
The same screen transition can also lag a bit more depending on when you take it. I tried to pay attention to this but there isn't always a choice on when to take the transition.
Enemies shooting projectiles can also lag the game for a frame or two, so they are manipulated to not shoot them whenever possible.
Finally, the portals connecting Holodrum to Subrosia can lag the game for 6 frames depending on the parity of the in-game clock. Sometimes a frame has to be sacrificed to avoid this.
Ideally, you would switch items as infrequently as possible to avoid menu time. This can sometimes mean using an item that is slower just because you happen to have it equipped, like picking up a bush with the Power Bracelet instead of slashing it with the Sword.
Whenever you do have to equip an item, it's best to do it during one of the fade-in transitions because the menu skips the fade-in, saving about 30 frames.
Whenever that is not possible, you should try to combine a menu with a savewarp because you can savewarp from the item menu, which is about 15 frames faster than closing it and then opening the S&Q menu.
The menu lag also varies slightly depending on what screen you're on, so if the above two are not available, you should check every screen to find the one with the least amount of lag.
Finally, I made an attempt to put the items in the menu in such a way that minimizes travel time between the items. However, this is a pretty hard optimisation problem to solve definitively, so I can't make any guarantee that there isn't some slightly better way to arrange the items.

Pushing Objects

When you push a block or a pot, you have to push against it for 20 frames; for example, if you want to push it up, you should have to push straight up for 20 frames. However, on the first frame, the game only checks if you're holding up, so you could be holding up-left or up-right on this frame. On the next 19 frames you do have to just hold up. Then on the 21st frame you have to hold any cardinal direction, so left, right or down also work. Keeping this in mind can often save a frame when pushing objects.
This also applies to key doors, except here it's 10 frames instead of 20.
Interestingly, this does not apply to the blue barrel-like things you find in D2 and D3, which seem to be coded correctly.

Ricky Movement

Ricky usually stops at the edge of a pit and waits a bit before jumping over it. However, if you punch in mid-air, she will just keep moving. Most of the time this just leads to her falling down the pit but if you're jumping downwards and you're very close to the pit before jumping, she can make it across.

Subpixels

The game keeps track of Link's position down to the 256th of a pixel in both directions. This means that whenever we have to wait, we can set up his subpixel position to be a bit closer to where we want to go. Also if you have to walk next to a wall, then turn a corner and go in the opposite direction, it might be faster to push diagonally into the wall for just a frame or two, as long as you don't lose a frame.
When using Pegasus Seeds, you have to pay special attention to screen transitions because you can overshoot the edge of the screen by a pixel. In that case it's usually also faster to move a frame diagonally to avoid that.

The run

--> D1

Right after creating the file, we set the text speed to 5. This doesn't matter for most textboxes in the game but it will make yes/no prompts appear faster.
It might seem obvious to talk to the tambourine player right after talking to Impa but if we talk to her last, we can take a more direct line from Impa to the top of the fire, which turns out to be just slightly faster.
Other than that there's not really much to talk about until we get to D1.

D1

If you compare this run to the old TAS by SwordlessLink and Tompa, you will notice that the RNG in the two Stalfos rooms is the exact same in this run. This is partly because the old TAS is good and partly because up until this point, there wasn't much of an opportunity to manipulate the RNG. That's about to change though because we're coming up on the mine cart ride.
The mine cart ride is actually a pretty intricate piece of RNG manipulation. We want to get perfect luck in the Boss Key room later but we also want to get a damage boost over the stairs in the small key room. Usually, the RNG would advance too much between the two rooms. However, we can make it advance less by killing 4 of the 5 Keese in the room with the Bomb chest because we have to pass through that room on the way from the small key to the Miniboss. But that means that the RNG will also advance less when we get the Bombs so we have to advance it more before that point. This means that we have to do more Sword slashes on the mine cart but it also means that we have to kill all the 4 Keese at the end of that room and not before. Where the Keese spawn and how they move is of course itself random, meaning that also needs to be manipulated. On top of that we then also have to get 5 Rupees and a Heart drop and to top it off one more damage boost in the room with the Goriyas.
For the Miniboss, it's actually slightly faster to kill the red Goriya since we're entering the room on the right side of the door because we have to dodge the Blade Trap in the previous room. Doing this however would mean that we end the fight on the right side of the room and then we don't have enough time to manipulate the RNG. Killing the blue one also means we can get the fairy, which in itself more than makes up for the small time loss.
This Miniboss is also a bit unique in that their I-frames depend on how you damage them. They get:
  • 16 I-frames when hit with a Sword slash
  • 21 I-frames when hit with a Bomb
  • 26 I-frames when hit with a spin attack
For this reason, a spin attack is only used on the final hit.
When lighting the torches it's slightly faster to light the one that's further away first because the Ember Seed will take longer to hit that torch.
We waste one frame after picking up the Boss Key. For some reason that makes the savewarp one frame faster. It seems like we gained nothing there but this means that the in-game clock is one frame higher which will save one frame when picking up the Essence.
The Boss is much more standard because it gets 32 I-frames no matter what. Doing a spin attack deals 4 damage (a normal slash deals 2) but it takes 60 frames to charge it and then another 24 frames for the animation. This means that doing only spin attacks would not be fast but by alternating spin attacks and normal slashes we can do 6 damage every 92 frames, which is slightly faster than just doing slashes. It is however faster to start with two spin attacks because the first one only hits on the last frame of the animation.

D1 --> D2

In Subrosia we don't have enough Bombs or health so we have to cut out one boost. We skip the one closest to the Temple of Seasons because that screen lags one frame more if you enter it with a Bomb. We cut out the boost on the way back because it means we're losing no time to the "framerule" when picking up the Rod of Seasons.
The part between Subrosia and D2 is a bit rough when it comes to RNG with us losing a tiny amount of time on almost every screen. We are rewarded with two Bomb drops for our troubles though while still hitting the right seed when entering D2.

D2

We can light the torches before or after getting the key. Since dark rooms take longer to load it's faster to light them immediately so we don't lose time after the savewarp.
After that we get three rooms back to back where we have to kill all the enemies. This is what we were manipulating during the Rosa section.
When damage boosting through the Thwomp, we're actually inside it and then snap to the top of it. This would be a cool time save if we didn't have to give the frames right back because of RNG. Oh well...
On the Japanese version you can beat Facade without spawning it. However, this isn't faster and we were a Bomb short anyway. This also advances the RNG a lot which happens to give us better luck for the later part of this run.

D2 --> D3

When we get the first Pegasus Seed drop by killing one of the Spiny Beetles, we kill the other one as well because the RNG would be even more awful for the Tektites if we didn't do that. It doesn't cost any time because we have to wait for the Pegasus Seed to drop anyway.
There is one pixel at the top of the bridge outside the MARKET where you can walk across. This let's us bypass the horizontal collision at the end of the bridge.
Going from Subrosia to D3, the Tektites decide to be even more awful. What can you do? They're sandwiched between getting two Pegasus Seed drops and manipulating the second room in D3 so they're expected to be a bit bad.

D3

We could go through the dungeon normally until we get the key but going through it backwards ends up being just under a second faster. We have to go through more rooms but we skip a very slow room where you have to push a pot a long way.

D3 --> Roosters

The Tektites decide to not get in the way for once and even provide us with a nice damage boost. Not like it makes up for the earlier time loss but hey.
When picking up the Gale Seeds, we use a spin attack because it has a bigger hitbox compared to a normal slash.
After reentering Subrosia, we leave the screen with the Volcano at just the right time to manipulate the RNG for Onox's Castle.

Rooster Adventure

There are 4 types of objects in this game: Items, Interactions, Enemies, and Parts. We don't need to go over every one of them, it's only important to know that a Rooster is an Interaction as is the cutscene trigger that prevents us from entering Onox's Castle. Some other Interactions are: the little dirt piles that appear when you use the shovel, the debris that appears when a sign is destroyed, the leaves that appear when a flower is destroyed, the icon in the top-left corner of the screen that indicates which season it is, and the musical notes that appear when you play the Flute.
The game's memory has room for 14 Interactions. During a screen transition the objects of both screens are loaded at the same time. This means that if there are 14 Interactions on one screen and we go to another screen, no Interactions on that screen can load. We can spawn 4 Interactions on the screen south of the cutscene in question: one musical note and three dirt piles (the dirt piles disappear quickly so we don't have time to spawn a fourth before the first one disappears). This means we need to bring 10 Roosters to that screen. We need to use one Rooster to get to Onox's Castle, which means we need to have 11 initially.
When you grab a Rooster, a flag is set that makes it so the Rooster doesn't disappear during screen transitions. When you let go of the Rooster, this flag is unset. This behaviour isn't unique to Roosters, it's true for any object that Link can grab. What is unique to Roosters however is that you can interrupt the grabbing animation with a Gale Seed. This causes the flag to stay set and the Rooster can travel between screens.
Now if you go back to the screen with the Rooster, the game will load a new Rooster in the exact same location as your permanent Rooster. When two objects are in the same position, Link will grab the one that is loaded first in memory. This means that if we want to clone several Roosters, we have to load the first one we clone in the highest memory slot. We can do this by spawning a lot of Interactions on the screen next to the Rooster. Then after cloning that first Rooster we spawn one less Interaction on that screen and so on.
If this all still seems mysterious to you, here's a video by the person who found the glitch explaining it in great detail.
OK, now that we know how to clone Roosters we need to decide where to clone them because there are two screens that have a Rooster, one at the bottom of the mountain and one at the top. The screen at the bottom is better for cloning Roosters because you can spawn more Interactions on the screen next to it, so much so that we can actually clone all 11 Roosters on that screen. However, the one Rooster we need to use to get to Onox's Castle needs to come from the top spot. That spot only allows us to clone up to 5 Roosters reasonably fast, which means we have to use both spots. You can get from the top spot to the bottom one without entering a building but not vice versa, which means we have to start with the top spot.
The last thing to decide is how many Roosters to clone in each spot. In general, it's best to spread them out evenly because spawning the first few Interactions is faster than spawning additional ones. This would suggest a 5/6 split. However, cloning 5 Roosters at the top spot is a bit bothersome because we would have to pause the game after leaving the cave so we have enough time to destroy the sign while the season icon is still on screen. Instead, we will clone only 4 Roosters at the top and then 7 at the bottom.
We start at the top by spawning 4 Interactions: 3 digs and the seasons icon. After that we just do the 3 digs. After that 2 digs. For the final Interaction it's faster to use the sign because it skips two menus. After that we reload the screen with no Interactions on the left screen. At this point there is no point cloning the Rooster in the very first slot because it would disappear anyway when we use it to get down the mountain, so we just grab it and go on to the bottom spot.
Here we start by spawning 5 Interactions: 2 flowers and 3 digs. After that the sign and 3 digs. Then just the 3 digs. Then 2 digs. Now we use the sign again to skip Menu time. After that we spawn one Interaction again. This works because Moosh's Interaction used to be loaded before the Roosters but now it's loaded after, sort of giving us a free Rooster. After that we spawn no Interactions on the bottom screen and clone our final Rooster.
From there we make our way to the screen south of the cutscene, spawn 4 more Interactions as outlined above and we're in Onox's Castle.

Onox's Castle

The first screen is the hardest one because the Blue Wizzrobes love to teleport, which makes them invincible. However, we manipulated this room all the way back in Subrosia so we get a decent pattern.
The next room is kind of on a timer because the final Floormaster won't spawn until a certain point, which means we have time to get one final Pegasus Seed drop.
Facade is pretty unremarkable.
Onox can only be hit with spin attacks during the first two phases. This means that the bottleneck is charging the spin attack as soon as possible. Hitting Onox on the first frame is only important on the final hit of phase 2.
Getting double hits on the second phase doesn't save that much time because the animation is quite long. If it was shorter it would have been worth it to get extra Heart Containers so we could have done more double hits.
At the beginning of the dragon phase Onox can move towards the bottom left or the top right. We make him go towards the bottom left because this means his hand will hit the ground sooner. After that he takes a random amount of time to attack and we of course make him attack as soon as possible.
Onox gets 60 I-frames, which means it's very slightly faster to alternate spin attacks and normal slashes compared to just doing spin attacks. However, doing this would stun-lock him, which would be bad because we need him to move to the bottom of the screen so his death animation will be shorter. This means that we will mostly do spin attacks and only mix in two normal slashes. If we hit him with any more slashes, he wouldn't have time to move all the way to the bottom. When we do hit him with a normal slash, we have to hit him on the first possible frame (again, this isn't true for the spin attacks, except for the final one). This means we have to jump on his left hand because the ruby on his head is shifted to the left during the damage animation.

Special Thanks

A special thank-you goes to the Oracles speedrunning community. In particular I want to shout out Stewmath for finding Rooster Adventure and Sagaz for finding Wall Clipping.
I also want to give thanks to the TASVideos community, in particular Tompa and SwordlessLink for creating the old TAS.

ThunderAxe31: Claiming for judging.
ThunderAxe31: Not having followed the speedrunning scene for this game, at first I was confused about what was going on in this movie. I later understood that most of the game is skipped thanks to abusing a glitch in particular, that is available only upon reaching a certain point in the story progression. For cases like this, we want to indicate the major glitch in question in the branch label, so that any clueless user like me could instantly distinguish it from a non-major skipping movie, as the existing TAS, which will remain published as its independent branch. For this reason, I'm adding the label "Rooster Adventure glitch" for the branch naming. Please feel free to say if anyone has issues with that.
I was very impressed and delighted to see the amount of route planning and optimization for TASing this game from my childhood! Thank you, and accepting as a new branch.
ThunderAxe31: File replaced with a 125 frames improvement and including subtitle commentary.

despoa: Processing...

TASVideoAgent
They/Them
Moderator
Joined: 8/3/2004
Posts: 14884
Location: 127.0.0.1
Tompa
Any
Editor, Expert player (2141)
Joined: 8/15/2005
Posts: 1934
Location: Mullsjö, Sweden
Wonderful run! I love all the Pegasus Seeds drop, that's one of the things we surely could have improved on in the last TAS, the RNG is such a struggle though... Obvious yes vote.
Challenger
He/Him
Skilled player (1639)
Joined: 2/23/2016
Posts: 1036
Incredible improvement and amazing glitches! Yes vote.
My homepage --Currently not much motived for TASing as before...-- But I'm still working.
Active player (377)
Joined: 11/24/2018
Posts: 10
Really cool TAS, the rooster might be a tad useless in Link's Awakening, but very useful in OoS for skipping to the tower cutscene through the usual object spam. Really great improvement to the SL and Tompa TAS, lots of clever damage boosts and manipulations of RNG, certainly brutal in these games. Yes vote.
Active player (434)
Joined: 2/5/2012
Posts: 1690
Location: Brasil
this TAS is amazing. it's important to notice though, i voted yes cause this is interesting as hell: @sbd1301 1 hour ago You can use a save glitch to corrupt the save data like I did in Ages last year. I just thought that showing off the glitch once was enough so I didn't use it here. If you don't allow the save glitch, this is the fastest way.
TAS i'm interested: megaman series: mmbn1 all chips, mmx3 any% psx glitched fighting games with speed goals in general
Active player (490)
Joined: 1/12/2007
Posts: 682
Tompa wrote:
the RNG is such a struggle though...
I still have nightmares about it. Congrats, SBD, on joining the exclusive club of people unfortunate enough to have (by choice) suffered through this game's RNG manipulation. The run was fantastic, especially the RNG manipulation - voted yes.
SBD
Player (164)
Joined: 10/3/2012
Posts: 17
I made some small improvements to the run:
  • At around 24:20 instead of getting hit by this Tektite I get hit by the one on the next screen. It's still kind of bad but it's less bad than previously.
  • By far the biggest mistake in the original submission is that when I grabbed the Roosters at 30:30 and 32:16 I grabbed them as early as possible, which lead to them slowly floating back to their original position. It's obviously faster to grab them right where they're at. Thanks to Stewmath for pointing this out to me.
  • The dragon phase of the Onox fight is slightly improved by mixing in some normal slashes instead of only doing spin attacks.
Here's the new movie file, 111 frames faster: User movie #638418006339760469 Another small fix: At 28:53 I inexplicably dropped the bomb in order to reapply Pegasus Seeds instead of just reapplying them after I throw the Bomb. User movie #638423637812778798 I also want to say that if it was up to me, I would create an All Dungeons branch for the old TAS since this one skips 5.5 of the dungeons.
GJTASer2018
He/Him
Joined: 1/24/2018
Posts: 251
Location: Stafford, NY
SBD wrote:
I also want to say that if it was up to me, I would create an All Dungeons branch for the old TAS since this one skips 5.5 of the dungeons.
I believe this kind of "All Dungeons"/"Any%" split has been done before in other Legend of Zelda games, but you might have to do a separate "All Dungeons" submission first before the category split can happen...
c-square wrote:
Yes, standard runs are needed and very appreciated here too
Dylon Stejakoski wrote:
Me and the boys starting over our games of choice for the infinityieth time in a row because of just-found optimizations
^ Why I don't have any submissions despite being on the forums for years now...
Post subject: Movie published
TASVideoAgent
They/Them
Moderator
Joined: 8/3/2004
Posts: 14884
Location: 127.0.0.1
This movie has been published. The posts before this message apply to the submission, and posts after this message apply to the published movie. ---- [5795] GBC The Legend of Zelda: Oracle of Seasons "Rooster Adventure glitch" by SBD in 35:35.60