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

How to get number of Bloodthirst stack

wbulot

New Member
Joined
Sep 20, 2014
Messages
24
Reaction score
0
Hi,

i try to get the number of Bloodthirst stack (to use a skill when I have 20 Bloodthirst).
I tried with bufftime() but that's not what I want.

Can someone help me?

Thx
 
PHP:
foreach(Buff b in me.getBuffs())
{
  if(b.name == "Bloodthirst / buffname")
  {
      Log(b.stack);
  }
}
 
Back
Top