Ok so the gauntlet uses simple get functions to move around. Her is an example:

http://manahaven.com/world/gauntlet/...N&from=CURRENT POSITION&dsk=YOUR CODE HERE

DIRECTION is l/r/d/u which is left/right/down/up respectively.

CURRENT POSITION is something like 1.2

YOUR CODE HERE Which can be found between:

var dskey = "

and

"; var gauntlet_canvas = {

(Or it can be found right below the second "<script type="text/javascript">")

Here is the code for the arrow:

class="arrow_pointer DIRECTION_arrow"

So basically, in VB, you could use:
If InStr(STRING, "arrow_pointer r_arrow") Then
'You can move right
End If

If there is a battle, and you haven't traveled to a block yet, this is the code(grey arrows):

arrow_pointer dDIRECTION_arrow

If InStr(STRING, "arrow_pointer dr_arrow") Then
'You can' move right because of a battle
End If

When you want to enter a battle, you post this:

location=&dsk=

to this URL:

http://manahaven.com/world/gauntlet/battle_monster

Which redirects you to this page:

http://manahaven.com/battle

Where you actually fight the battle.

If anybody wants to mkae a bot, this may help them out a bit!