What's new
  • Visit Rebornbuddy
  • Visit Resources
  • Visit API Documentation
  • Visit Downloads
  • Visit Portal
  • Visit Panda Profiles
  • Visit LLamamMagic

Urgent - is that possible to make bot clear entire map that you are in ?

MonsterMMORPG

Member
Joined
Aug 22, 2012
Messages
463
Reaction score
1
Urgent - is that possible to make bot clear entire map that you are in ? then it will stop and wait your command

ty
 
Urgent - is that possible to make bot clear entire map that you are in ? then it will stop and wait your command

ty

... Disregard sifer's tatement... I dont see why not.

<ExploreArea boxTolerance="0.45" boxSize="15" until="FullyExplored" leaveWhenExplored="False" />

*NOTE i do not know how box size is measured, play around with it.*

I would imagine something like this "note im at work so i dont have time to think..
Feel free to correct this if needed...

<If condition="(Me.IsInCombat)">
<ExploreArea boxTolerance="0.45" boxSize="15" until="FullyExplored" leaveWhenExplored="False" />
</if>

NOTE that i do NOT know if me.isincombat is valid... only know (me.isinTown)
 
Last edited:
... Disregard sifer's tatement... I dont see why not.

<ExploreArea boxTolerance="0.45" boxSize="15" until="FullyExplored" leaveWhenExplored="False" />

*NOTE i do not know how box size is measured, play around with it.*

thanks gonna try this
 
thanks gonna try this

I updated with possible coding for the function itself... i guess... maybe the profile itself needs some sort of verification that you are where youre supposed to be, and in that case someone might need to code a plugin... But thats just my thoughts... I heard Giles is quite handy at whatever he puts his mind to ;)
 
i made a new empty xml file and put only this

<ExploreArea boxTolerance="0.45" boxSize="15" until="FullyExplored" leaveWhenExplored="False" />

and it is giving error
 
i made a new empty xml file and put only this

<ExploreArea boxTolerance="0.45" boxSize="15" until="FullyExplored" leaveWhenExplored="False" />

and it is giving error

...

TRY THIS... its a empty profile with only that... if you cant make that work, then i can fix this for you in about 2 hours... ok? watch this thread if u cant fix it. (im at work)

<Profile>
<Name>test1</Name>
<KillMonsters>True</KillMonsters>
<PickupLoot>True</PickupLoot>
<Order>
<ExploreArea boxTolerance="0.45" boxSize="15" until="FullyExplored" leaveWhenExplored="False" />
<MoveTo />
</Order>
</Profile>
 
alright made like this

started running lets see what happens :d


<Profile>
<Name>explore all</Name>
<KillMonsters>True</KillMonsters>
<PickupLoot>True</PickupLoot>
<Order>
<If condition="(not Me.IsInTown)">
<ExploreArea boxTolerance="0.45" boxSize="15" until="FullyExplored" leaveWhenExplored="False" />
</If>
</Order>
</Profile>
 
alright made like this

started running lets see what happens :d


<Profile>
<Name>explore all</Name>
<KillMonsters>True</KillMonsters>
<PickupLoot>True</PickupLoot>
<Order>
<If condition="(not Me.IsInTown)">
<ExploreArea boxTolerance="0.45" boxSize="15" until="FullyExplored" leaveWhenExplored="False" />
</If>
</Order>
</Profile>
My thinking isnt on the max lvl atm :P Collaboration powers, activate!

**Note** If this works, make a thread in profiles with it ;) Named something "explore where you are" some might find it useful.
 
damn client crashed :(

i will disable all plugins and try again

Did it crash at the end?
IF SO at the end put like <WaitTimer questId="1" waitTime="50000" />
its 50 seconds.

atleast so we can figure out if its the end thats crashing it. in that case we just need a stop bot function.
 
Did it crash at the end?
IF SO at the end put like <WaitTimer questId="1" waitTime="50000" />
its 50 seconds.

atleast so we can figure out if its the end thats crashing it. in that case we just need a stop bot function.

don't know i was away

i will put it. trying now without any plugin

also where i am supposed to put this ?
 
don't know i was away

i will put it. trying now without any plugin

also where i am supposed to put this ?

Profiles\other

If you want something in the profile, just tell me in a pm and ill code it up for you :)

*EDIT* if you mean the wait thingy, row below the explore line.
 
if you need more functions or wanna browse through them all you can also download Visual Studio, add references to Demonbuddy.exe and Fasmdll_managed.dll and search through it
 
adding that line did not fix

probably i need to change inactivity time

[22:42:22.084 N] Blacklisted True
[22:47:06.054 N] Stopping the bot.
[22:47:06.054 N] ========== Grid segmentation resetting!!! ============
[22:47:06.134 N] Bot Thread Ended. Was this requested?
[22:47:17.374 N] Loaded profile test1
[22:47:17.394 N] ========== Grid segmentation resetting!!! ============
[22:47:51.665 N] ========== Grid segmentation resetting!!! ============
[22:49:52.275 N] Inactivity timer tripped! Leaving game
[22:49:52.275 N] Leaving game
[22:49:52.295 N] Last run acquired 3085 gold.
 
adding that line did not fix

probably i need to change inactivity time

[22:42:22.084 N] Blacklisted True
[22:47:06.054 N] Stopping the bot.
[22:47:06.054 N] ========== Grid segmentation resetting!!! ============
[22:47:06.134 N] Bot Thread Ended. Was this requested?
[22:47:17.374 N] Loaded profile test1
[22:47:17.394 N] ========== Grid segmentation resetting!!! ============
[22:47:51.665 N] ========== Grid segmentation resetting!!! ============
[22:49:52.275 N] Inactivity timer tripped! Leaving game
[22:49:52.275 N] Leaving game
[22:49:52.295 N] Last run acquired 3085 gold.

Well yes ofc it seems to do great until that triggers ye... set it to 0 and its off

But if it crashes "and not activity timer that messes it up (remember set it to 0)" then i will fix when i get home, leaving work now.
 
Back
Top