--==<< 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! ;) --9BC394+598+EC+B4 <<-- OFFSETS --local charPtr_offset = 0x598 --local skillbuffFlag_offset = 0xEC --local swim_offset = 0xB4 local staticcharbase_address = 0x9BC394 offsets = {0x598, 0xEC, 0xB4}; local active = 4; local proc=getProc(); local inactive = 0; function memoryfreeze() memoryWriteIntPtr(getProc(), staticcharbase_address, offsets, active); --swim = memoryReadIntPtr(getProc(), staticcharbase_address, offsets); --printf("Swim value: %d\n", swim); end function fly() registerTimer("flyTimer", 5, memoryfreeze); printf("Swimhack ACTIVATED!\n"); end function flyoff() unregisterTimer("flyTimer"); printf("Swimhack DEactivated.\n"); end