--==<< Tsutomu's Swimhack function >>==-- --==<< By Tsutomu Version 1.0a >>==-- --==<< Requirements: Rom bot. >>==-- --==<< Usage: fly(); OR flyoff(); >>==-- -- When u need to activate the flyhack you put "fly();" without quotes inside the waypoint -- When u don't need it anymore, you put "flyoff();" without quotes inside the waypoint -- That's it. Happy flying from SERBIA! ;) local NOP=144; local staticcharbase_address = addresses.staticbase_char; local offsets = {0x598, 0xEC, 0xB4}; local active = 4; local proc=getProc(); function fly() memoryWriteByte(getProc(), 0x44ABF0, NOP); memoryWriteByte(getProc(), 0x44ABF1, NOP); memoryWriteByte(getProc(), 0x44ABF2, NOP); memoryWriteByte(getProc(), 0x44ABF3, NOP); memoryWriteByte(getProc(), 0x44ABF4, NOP); memoryWriteByte(getProc(), 0x44ABF5, NOP); memoryWriteIntPtr(getProc(), staticcharbase_address, offsets, active); printf("Swimhack ACTIVATED!\n"); end function flyoff() memoryWriteByte(getProc(), 0x44ABF0, 137); memoryWriteByte(getProc(), 0x44ABF1, 131); memoryWriteByte(getProc(), 0x44ABF2, 180); memoryWriteByte(getProc(), 0x44ABF3, 0); memoryWriteByte(getProc(), 0x44ABF4, 0); memoryWriteByte(getProc(), 0x44ABF5, 0); printf("Swimhack DEactivated.\n"); end