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

Greater Rift: limit the bot from opening rifts too high

wPrince

Community Developer
Joined
Feb 27, 2015
Messages
38
Reaction score
1
Using hardcore code to do this:
\Plugins\QuestTools\ProfileTags\QTOpenRiftWrapperTag.cs line 60:

if (keyType == RiftKeyUsePriority.Greater && HasGreaterRiftKeys)

==>
if (keyType == RiftKeyUsePriority.Greater && ZetaDia.Me.Inventory.Backpack.Any(i => i.IsValid && i.ItemType == ItemType.KeystoneFragment && i.TieredLootRunKeyLevel > 0 && i.TieredLootRunKeyLevel <= 33)) //33 is my level,you can change this.


line 67-68:
UseHighest = false;
UseLowest = true;
 
Its funny how its not fixed yet :)

Secondly bot still cant stop after wave i select automaticly
 
Back
Top