--==<< Tsutomu's Speedhack function >>==-- --==<< By Tsutomu Version 1.0a >>==-- --==<< Requirements: Rom bot. >>==-- --==<< Usage: fly(); OR flyoff(); >>==-- -- When u need to activate the hack you put "speedon();" without quotes inside the waypoint -- When u don't need it anymore, you put "speedoff();" without quotes inside the waypoint -- That's it. Happy speeding tickets :p from SERBIA! ;) --9BC394+598+40 <<-- OFFSETS --local charPtr_offset = 0x598 --local boundStatusOffset_offset = 0x42 --70 - 50spd (NORMAL speed) - 46 hex --106 - 59spd (18% gain) -6a hex local staticcharbase_address = 0x9BC394 offsetsx = {0x598, 0x42}; local speedHacked = 106; --speed 59 = +18% local speedNormal = 70; --standard speed 50 function memoryfreezespeed() memoryWriteBytePtr(getProc(), staticcharbase_address, offsetsx, speedHacked); end function speedon() registerTimer("speedTimer", 5, memoryfreezespeed); printf("Speedhack ACTIVATED!\n"); end function speedoff() unregisterTimer("speedTimer"); memoryWriteBytePtr(getProc(), staticcharbase_address, offsetsx, speedNormal); printf("Speedhack DEactivated.\n"); end