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

Stop bot or no longer do incursions once temple is available?

Lay

Member
Joined
Jul 6, 2015
Messages
173
Reaction score
6
Currently I see that the bot, once the incursions are done, will either run the temple or force it to open then run away (the skip temple part.)
Can we make it so it instead just doesn't open or run the temple? So when we decide to grab the game it'll allow us to run it manually (for sacrificing, corrupting, ect)
 
If Exvault wants to do something fancy like the EnterTrialTask for Mapbot, where it jumps into portal and stops the bot thats an option.

But for now, if you want the bot to stop after entering a temple, you can add

Code:
BotManager.Stop();
to the EnterTempleTask yourself.

I believe it should go here:

upload_2018-6-26_22-48-27.webp



You could also do something along the lines of

Code:
                if (area.IsTempleOfAtzoatl)
                {
                    GlobalLog.Warn("[EnterTempleTask] We are inside the Temple. Now stopping the bot.");
                    BotManager.Stop();
                }
 
Last edited:
Back
Top