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

Key count plugin

Jones2351

Member
Joined
Oct 1, 2012
Messages
224
Reaction score
1
As there are a lot of keyhunting profiles around, I wonder why there is no actual key counting plugin. Personally, I do have like 20+ of all keys but 0 gluttony keys (act 2), no idea what causes this, but I would like the key profile to only run act 2 until it catched up. Is there any way to do that or create such a plugin?

Cheers and thanks in advance.
 
Try my plugin https://www.thebuddyforum.com/demon...ture-mode/179338-profile-brutal-key-farm.html

I have added a Keys class to QuestTools for plugin developers to use, and conditions for profile developers to use.

Code:
<!-- List all of your keys -->
<Command name="LogSpecial" value="KeyCount" />    

<!-- Mobs, 255704, 256022, 256040, 256054 -->
<!-- Keys, 364694, 364695, 364696, 364697 -->    


<If condition="KeyAboveMedian(364697)">    
    <LogMessage questId="1" output="doing something" />
</If>

Conditions Available

Code:
KeyAboveMedian(actorId)
KeyBelowMedian(actorId)
KeyAboveUpperFence(actorId)
KeyBelowLowerFence(actorId)
KeyAboveUpperQuartile(actorId)
KeyBelowLowerQuartile(actorId)
 
Back
Top