A preserved archive of the Logical Gamers community forums, 2009-2025. The original threads and posts, served read-only. Registration, posting and private messages are gone for good.

Some ideas about Manahaven...

1.2k views · started by boa man5 ·
#1
Some ideas about Manahaven...
Ok so the gauntlet uses simple get functions to move around. Her is an example:

http://manahaven.com/world/gauntlet/travel/?dir=DIRECTION&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!
#2
Good information, but you should dig further into the ajax systems at play, they surpass the mediocrity of that.
#3
I was just trying to make a bot, but Internet explorer has an inability to load all of the functions through Visual Basic.