Hey guys, I am trying to add these buffs, Thwart and Conversion Shield to Mordark Fight4Me Stone-Arrow plugin, which i am changing it around for primeval.
I got these lines of code from SystemShock - Simple daggerspell grinder + deathwalk
It is not compiling which i knew it wont because i have no idea what i am doing
I have never coded before and just trying to figure this out, any help will be appreciated thanks guys
Edit: Never mind Figured it out myself
I got these lines of code from SystemShock - Simple daggerspell grinder + deathwalk
Code:
//Check our buffs
public void CheckBuffs()
{
if (buffTime("Conversion Shield (Rank 3)") == 0 && skillCooldown("Conversion Shield") == 0)
UseSkillAndWait("Conversion Shield", true);
if (buffTime("Thwart (Rank 4)") == 0 && skillCooldown("Thwart") == 0)
UseSkillAndWait("Thwart", true);
}
It is not compiling which i knew it wont because i have no idea what i am doing

I have never coded before and just trying to figure this out, any help will be appreciated thanks guys
Edit: Never mind Figured it out myself
Last edited: