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

Refreshment Buff Keep Recast

baoky

New Member
Joined
Sep 20, 2014
Messages
36
Reaction score
0
The spell Refreshment seems to have a issue on checking, it will just keep cast again even when the buff still exist.


Here is my code

Code:
if (skillCooldown("Refreshment") == 0 && buffTime("Refreshment") <= 4)
                    {
                        UseSkillAndWait("Refreshment", true);
                        Log("Used: Refreshment");
                    }


Anyone got a version with Refreshment working and only recast after the buff end?

Thanks!!

I put that piece of code in checkBuffs and its seem faulty, it simply keep recast
 
use this :)

if (buffTime("Refreshment (Rank 1)") == 0
&& buffTime("Refreshment (Rank 2)") == 0
&& buffTime("Refreshment (Rank 3)") == 0
&& buffTime("Refreshment (Rank 4)") == 0
&& skillCooldown("Refreshment") == 0)
UseBuffSkill("Refreshment", true, false);
 
I remember that buff having a name like "High Health Increase (Rank Something)" name or so, just hover the buff after casting it on yourself.
 
Back
Top