--==<< Tsutomu's Wallhack function >>==-- --==<< By Tsutomu Version 1.0a >>==-- --==<< Requirements: Rom bot. >>==-- --==<< Usage: wallon(); OR walloff(); >>==-- -- When u need to activate the hack you put "wallon();" without quotes inside the waypoint -- When u don't need it anymore, you put "walloff();" without quotes inside the waypoint -- That's it. Happy wall-climbing :p from SERBIA! ;) --0x96ADCC <<-- ADDRESS --value 0.1 for 90 degrees (go through everywhere) 0.2 optimal value local wallhack_addr = 0x96ADCC; local whacked = 0.1; local wnormal = 4; function memoryfreezewall() memoryWriteFloat(getProc(), wallhack_addr, whacked); end function wallon() registerTimer("wallTimer", 10, memoryfreezewall); printf("Wallhack ACTIVATED!\n"); end function walloff() unregisterTimer("wallTimer"); memoryWriteFloat(getProc(), wallhack_addr, wnormal); printf("Wallhack DEactivated.\n"); end