Greetings broskey's.
Zonehopper is an AutoIT script that will allow you to travel via the flight master to t4 zones that are about to "flip" or "lock down" while you are afk. Zonehopper gets it's information from the "State of Realm" addon interface.
As of now the script retrieves it's information using mouse x, y's and Pixel Colors based on the location of your State of Realm window. You will need to edit the source code (arrays at top of script) and enter your coordinates.
Dependencies: State of Realm addon, AutoIT
Zonehopper v0.4! (source) -> RapidShare: Easy Filehosting
Notes: Configure State of Realm to use "classic" colors to simplify color codes.
Coders: This process can be simplified by using LUA (gathering zone information on what is about to flip). I don't know lua though. :P
Also, I've found that you can read/write memory addresses via AutoIt.
My example code:
Code:
#include <NomadMemory.au3>
;
Global $mainwindow = "Warhammer: Age of Reckoning, Copyright 2001-2009 Electronic Arts, Inc."
$pointer = 0x00D3D4FC ;A pointer
$offset = 0x218 ;Pointer's offset
If WinExists($mainwindow) Then
$pid = WinGetProcess($mainwindow)
$handle = _Memoryopen($pid)
$pointer_convert = "0x" & Hex(_MemoryRead($pointer, $handle, "int[32]"), 8)
$address = "0x" & Hex($pointer_convert + $offset, 8)
_memoryclose($pid)
Else
EndIf
While 1
$value = _Memoryread($address, $handle)
If $value > 0 Then
ToolTip("I have located value " & $value)
Else
ToolTip("No value")
EndIf
Sleep(1000)
WEnd
Keep up the great work guys, and Enjoy your afk Renown!