Excuse the VERY long hiatus. I've been concentrating on other games. I am probably back(no guarantee that I won't lose motivation again), and have been practicing TASing again on The Wind Waker. Again, sorry for the terribly long hiatus. I've also made my own messy script using Abahbob's lua joystick files.
I also found something interesting in the Lua code. It's the emu.pause() function. Seems to really come in handy. Anyways, I'll hopefully post some WIPs that are probably gonna be terrible. Seeing I have to do some work on the C-Stick while Superswimming. It's not gonna be an impressive WIP. But it's just the fact this game is INCREDIBLY hard to optimize Superswims.
I rarely use whitespaces(due to me being lazy), but anyway. Here is the script that seems to be a little bit easier for me to handle.
repeat
joypad.joystick(0,93) --right
emu.frameadvance()
joypad.joystick(255,93) --left
emu.frameadvance()
until emu.framecount() == 10800
emu.pause()
Yes, I am aware that I am not using the one where you have to move the camera slightly. But still.. It is a start.