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!
Results 1 to 3 of 3
Thread: Some ideas about Manahaven...
- 31 Mar. 2012 09:27pm #1
Some ideas about Manahaven...
- 20 Jun. 2012 12:29am #2
- Age
- 30
- Join Date
- Nov. 2009
- Location
- Anaheim, California
- Posts
- 1,065
- Reputation
- 99
- LCash
- 0.00
- 20 Jun. 2012 06:45pm #3
I was just trying to make a bot, but Internet explorer has an inability to load all of the functions through Visual Basic.