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

Disable Boss Zone?

Imissme2

New Member
Joined
Jun 3, 2014
Messages
26
Reaction score
0
Hi

Does anyone know if its possible to not allow bot enter boss zone?
For example lunaris temple, i just want to afk and farm xp, but everytime it enters the boss zone...and Chicken mode is set to 70% Life. still dying.
 
This is possible by disabling the tasks that implement that logic.

You can do this in a plugin or add the logic to your routine's Start function,
Code:
var taskManager = BotManager.CurrentBot.Execute("GetTaskManager") as TaskManager;
if (taskManager != null)
{
	taskManager.Remove("TravelThroughBossAreasTask-BossFarm");
	taskManager.Remove("TravelThroughBossAreasTask-PassThrough");
	taskManager.Remove("HandleMerveilArea");
	taskManager.Remove("HandleVaalArea");
	taskManager.Remove("HandlePietyArea");
	taskManager.Remove("HandleDominusArea");
	taskManager.Remove("HandleKaomArea");
	taskManager.Remove("HandleDaressoArea");
	taskManager.Remove("HandleWeaverArea");
}

And this is how it would look in OldRoutine: https://gyazo.com/f2d3c2090a34385de5962d804aa5a6d4

Once those tasks are removed, the bot won't take the area transitions to navigate though the area. The additional task removals prevent the boss logic from kicking in, and restart the exploration to find the boss.
 
Back
Top