• Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Haslassistant - Mob grinder with Hasla/Group features

    Discussion in 'Archives' started by Karls, Nov 25, 2014.

    Thread Status:
    Not open for further replies.
    1. Seabass Chu

      Seabass Chu New Member

      Joined:
      Mar 19, 2015
      Messages:
      61
      Likes Received:
      0
      Trophy Points:
      0
      PROBLEM: Haslassistant uses HP/MP foods properly, but DOES NOT USE MP potions!!!

      (for example, have 300 basic MP potion named "Mage's Vapor" in inventory, with the correct setup on haslassistant, but it will not auto use it)

      just a note for whoever is still developing haslassistant (posting this on this page and the other page that says in development)
       
    2. Hate Me

      Hate Me New Member

      Joined:
      Mar 31, 2015
      Messages:
      1
      Likes Received:
      0
      Trophy Points:
      0
      Why bot don't loot in party?
       
    3. Seabass Chu

      Seabass Chu New Member

      Joined:
      Mar 19, 2015
      Messages:
      61
      Likes Received:
      0
      Trophy Points:
      0
      bot will loot in party. you just have to make sure you check the right boxes and start it :)
       
    4. Yarik

      Yarik New Member

      Joined:
      Apr 8, 2015
      Messages:
      6
      Likes Received:
      0
      Trophy Points:
      0
      Hi guys. Can anybody help me with healing combo in Haslassistant. I want to add in Combat.cs this code :

      if (core.hpp() < 75 && CanCast(_ANTITHESIS))
      {
      core.UseSkill(_RESURGENCE, true);
      core.UseSkill(_ANTITHESIS, true);
      }


      Or maybe something like this:

      if (core.hpp() < 75 && CanCast(_ANTITHESIS))
      {
      UseSkillAndWait(_RESURGENCE);
      UseSkillAndWait(_ANTITHESIS); //
      }


      But it doesn't work... :(
      How can I do a selfcast of ANTITHESIS without changing target (mob)?
      What is you advise , in which way I should add a healing spells in Combat Routine?
      I want add it in :
      #region Combat Routine
      private void SelectAndUseHealingSkill()
       
    5. fredgsanford

      fredgsanford Member

      Joined:
      Jan 2, 2015
      Messages:
      552
      Likes Received:
      0
      Trophy Points:
      16
      to self cast antithesis you need to press alt key and i am not sure if there is a way in ab or not to self cast it without making yourself the target but hopefully someone can help with that?
       
    6. fredgsanford

      fredgsanford Member

      Joined:
      Jan 2, 2015
      Messages:
      552
      Likes Received:
      0
      Trophy Points:
      16
      useskill takes other variables that are bool ie useskill(skillname, autocome, selfcast)
      the second 2 are bool so add it in there? not sure if useskillandwait is same but assume so? autocome makes you move to it if to far away to cast.
       
    7. Yarik

      Yarik New Member

      Joined:
      Apr 8, 2015
      Messages:
      6
      Likes Received:
      0
      Trophy Points:
      0
      I've done that.
      Here my working code:

      if (core.hpp() < 75 && CanCast(_ANTITHESIS))
      {
      Buff resurgence = core.getBuff("Resurgence");
      if ((resurgence == null) && (core.mpp() > 30))
      UseSkillAndWait(_RESURGENCE, true);
      UseSkillAndWait(_ANTITHESIS, true);

      }


      For better heal I use MIRROR_LIGHT self buff in the buff section:

      foreach (Creature teamMember in targets)
      {
      bool self = teamMember == core.me;
      if (core.dist(teamMember) > 15 || (!self && core.mpp() < 50))
      continue;

      List<Buff> buffs = teamMember.getBuffs();

      ....
      if (self && CanCast(_MIRROR_LIGHT) && !buffs.Any(b => b.name.StartsWith("Blessing")))
      UseSkillAndWait(_MIRROR_LIGHT, true);
       
    8. fredgsanford

      fredgsanford Member

      Joined:
      Jan 2, 2015
      Messages:
      552
      Likes Received:
      0
      Trophy Points:
      16
      cool maybe you could post that file so we can use it as well? or pastebin it maybe if it won't post here.

      Also editing this post to add this part.
      I see you check to see if you can cast ANTITHESIS and hp is below 75% then you check mpp to see if you should cast the hot and cast it if its higher then 30% but no matter what your mpp you cast ANTITHESIS?
       
      Last edited: Apr 8, 2015
    9. Yarik

      Yarik New Member

      Joined:
      Apr 8, 2015
      Messages:
      6
      Likes Received:
      0
      Trophy Points:
      0
      I add check of mpp, because hot is not so good in Healamount/mana. It's good as combo for ANTITHESIS. I think, if mpp is low, it's better cast ANTITHESIS and then cast attack ability to finish mob. Maybe I 'll change it in future. ANTITHESIS is not so good cos of 2 sec of cast... Need to test for better rotation

      Here my version of View attachment Combat.cs
       
    10. Whatever88

      Whatever88 New Member

      Joined:
      Apr 3, 2015
      Messages:
      22
      Likes Received:
      0
      Trophy Points:
      0
      How to add usage of item already equiped on time interval or mana variable. And how to add self buff of twarth on a set time interval. Possible? not possible?
       
    11. fredgsanford

      fredgsanford Member

      Joined:
      Jan 2, 2015
      Messages:
      552
      Likes Received:
      0
      Trophy Points:
      16
      Yeah i forgot about the bonus to healing from having resurgence up. so you only use the hot when you have lots mana otherwise just use antith to heal makes sense for sure. I wonder if adding the aura skill that removes casting time of antith when lower in hp would be a good idea to maybe? probably not when botting i guess.
       
    12. nepohek

      nepohek New Member

      Joined:
      Mar 22, 2015
      Messages:
      9
      Likes Received:
      0
      Trophy Points:
      1
      plugin spam "refreshment" in defense =( Paladin build. fix pls
       
    13. pyrexia

      pyrexia New Member

      Joined:
      Mar 24, 2015
      Messages:
      132
      Likes Received:
      0
      Trophy Points:
      0
      do i need to Download all zip?
       
    14. pyrexia

      pyrexia New Member

      Joined:
      Mar 24, 2015
      Messages:
      132
      Likes Received:
      0
      Trophy Points:
      0
      is there a possibility to remove or change the skill for darkrunner tiger strike?because it will lure a lot of mob upon casting.thnx
       
    15. hashishkabob

      hashishkabob New Member

      Joined:
      Jul 28, 2012
      Messages:
      19
      Likes Received:
      0
      Trophy Points:
      0
      unskill it
       
    16. pyrexia

      pyrexia New Member

      Joined:
      Mar 24, 2015
      Messages:
      132
      Likes Received:
      0
      Trophy Points:
      0
      there is no such thing to unskill on the widget, how edit it on plug editor? i did remove it but nothing happens.
       
    17. hashishkabob

      hashishkabob New Member

      Joined:
      Jul 28, 2012
      Messages:
      19
      Likes Received:
      0
      Trophy Points:
      0
      I mean like.,. dont have it at all it wont use it if u dont have it; ie i took out enervate/mudhand from trickster cause it was slowing me down more than helping
       
    18. pyrexia

      pyrexia New Member

      Joined:
      Mar 24, 2015
      Messages:
      132
      Likes Received:
      0
      Trophy Points:
      0
      so how can i not use that skill?or prolly chnge it?
       
    19. hashishkabob

      hashishkabob New Member

      Joined:
      Jul 28, 2012
      Messages:
      19
      Likes Received:
      0
      Trophy Points:
      0
      take it off your spec/build/class. thats it.
       
    20. pyrexia

      pyrexia New Member

      Joined:
      Mar 24, 2015
      Messages:
      132
      Likes Received:
      0
      Trophy Points:
      0
      ok tnx mate.
       
      Last edited: May 2, 2015
    Thread Status:
    Not open for further replies.

    Share This Page