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

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Haslassistant - Mob grinder with Hasla/Group features

Status
Not open for further replies.
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)
 
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()
 
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?
 
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.
 
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);
 
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:
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?
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
 
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?
 
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 174698

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.
 
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
 
there is no such thing to unskill on the widget, how edit it on plug editor? i did remove it but nothing happens.
 
there is no such thing to unskill on the widget, how edit it on plug editor? i did remove it but nothing happens.
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
 
Status
Not open for further replies.
Back
Top