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

[RIFT/GRIFT]Progress Orbs pickup+ignore

Recklessness

Member
Joined
Feb 24, 2016
Messages
273
Reaction score
17
Hey,

my target is that:

Bot picks up nephalem rift progress globes

Bot ignores greater rift progress globes


So i have fast clearings for rifts and longer runs in greater rifts for maximize exp/hr

Anyone can help me with code snippets to get this working?
 
Last edited:
I believe you're using the no key burn LoN sader set up? It should be like that as default, I think.
Code:
bool IsHighLevelGrift = Player.TieredLootRunlevel > 55;
bool IsVeryHighLevelGrift = Player.TieredLootRunlevel >= 80;

if (IsHighLevelGrift && !IsVeryHighLevelGrift)
{
    Settings.Combat.Misc.IgnoreProgressionGlobes = true;
    Settings.Combat.Misc.DelayAfterKill = 0;
}
else
{
    Settings.Combat.Misc.IgnoreProgressionGlobes = false;
    Settings.Combat.Misc.DelayAfterKill = 850;
}

This means, if it is over grift level 80 --> ignore progression globes, otherwise don't. If you want to change this, you can get rid of the "else" part of the statement or modify it for your needs.
 
Back
Top