jiraiyasm
WRobot user
-
Joined
-
Last visited
Reputation Activity
-
jiraiyasm reacted to nax in IsTaggedByOtherSimple google search : https://www.google.com/search?q=wrobot+Face+target&rlz=1C1CHBF_enUS1022US1022&oq=wrobot+Face+target&aqs=chrome..69i57.3199j0j7&sourceid=chrome&ie=UTF-8
-
jiraiyasm reacted to Zer0 in can't start wrobotTry and delete the Party settings file in WRobot/Settings of your character/realm
-
jiraiyasm reacted to Talamin in correct code for debuffAdd something like this, but you should think about moving all the casting checks into one Function and do the Checks only once.
if (Corruption.IsSpellUsable && Corruption.KnownSpell && Corruption.IsDistanceGood && SpellManager.GlobalCooldownTimeLeft() == 0 && !ObjectManager.Target.Rooted && ObjectManager.Me.HaveBuff("Life Tap")) { if(!DebuffCheckOwner("Corruption") { Corruption.Launch(); return; } } public static bool DebuffCheckOwner(Spell spell, bool owner = true) { List<Aura> DebuffList = ObjectManager.Target.GetAllBuff(); Aura aura = null; if (owner) { aura = DebuffList.FirstOrDefault(s => s.GetSpell.Name == spell.Name && s.Owner == ObjectManager.Me.Guid); if (aura != null) { return true; } } return false; }