Jump to content

jiraiyasm

Members
  • Posts

    31
  • Joined

  • Last visited

Reputation Activity

  1. Like
    jiraiyasm reacted to Nax in IsTaggedByOther   
    Simple 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
     
  2. Like
    jiraiyasm reacted to Zer0 in can't start wrobot   
    Try and delete the Party settings file in WRobot/Settings of your character/realm
  3. Like
    jiraiyasm reacted to Talamin in correct code for debuff   
    Add 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; }  
×
×
  • Create New...