I made a sequel to this movie.
http://dehacked.2y.net/microstorage.php/info/56186567/cad_drmario_combos2.fm2
However, this time there's a twist: I used a lua script that lets me change the next pill to whatever I want. This gives me creative freedom to make whatever kinds of combos I want. It looks very cool, if I may say so myself.
You will need to run this lua script before loading the movie.
local next_color1 = 0x31a
local next_color2 = 0x31b
while true do
if (joypad.read(2).up) then memory.writebyte(next_color1, 0) end
if (joypad.read(2).left) then memory.writebyte(next_color1, 1) end
if (joypad.read(2).down) then memory.writebyte(next_color1, 2) end
if (joypad.read(2).right) then memory.writebyte(next_color2, 0) end
if (joypad.read(2).A) then memory.writebyte(next_color2, 1) end
if (joypad.read(2).B) then memory.writebyte(next_color2, 2) end
FCEU.frameadvance()
end
How far did I get? Well...
Level 0 - 04 came out very good. I was able to demonstrate some very good combo concepts with this power to clear the whole board.
You will see a few glitches, like at the end of the original video. I learned how to clear a glitch by holding down certain key combinations some time after the glitch happens. Note that these glitches and clears are definitely not caused by the lua script, since I disabled the script when they happened to test if they still behaved the same, and they did.
Level 05 was impossible. So I cleared it in a few combos rather than one. I also didn't try as hard to make the combo efficient or creative, my main goal was just to get to the tree cutscene.
After that, I give level 20 a shot with this power. Here, you can witness several glitches, some which even do crazy things like delete viruses they have no business deleting!
Finally, you will get to see the ending to Dr. Mario if you haven't seen it already.