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

Hasla Assistant and my continued development

mscard02

New Member
Joined
Nov 10, 2014
Messages
40
Reaction score
0
Hello everyone, i have been a C# programmer for over 10 years and am looking to continue hasla assistant. So far, I have a couple of features and fixes in place that I am testing now and seem to be working well. What are some missing features that you guys would like to see added? I don't have a ton of free time, so the large ones like pvp will probably not happen.
 
Hi,

Nice to hear that you continue this.

- Add healing
- Add Songcraft support

Thats way i can be great to use while multibox.
 
I know in 1.7 it'll be nerfed, but optimizing the rotations to use ennervate/shitgrip combo more intelligently and as a heal, instead of standard DPS rotation would be amazing for most botters.
 
Very good to hear !

Have you debugged the fact that when death (more than 5 times) it will not use the deathroute ?

Yes the most important to add is the heal
 
Very good to hear !

Have you debugged the fact that when death (more than 5 times) it will not use the deathroute ?

Yes the most important to add is the heal


yes, he had a built in check. I have extracted that to an option on the actual form to change. I am struggling trying to fix that UnMarshal error, it seems completely random. I honestly doubt i will be able to add healing in. I have never played a healer in this game and do not have the first clue how it all works. I have cleaned up a lot of the casting rotations as well as fixed the magic circle not casting bug. I have added in stealth capability as well as working on a stand still type option. Also working on mount support.


if you want a quick fix for allowing you character to die more than 5 times, do the following:

1. open up combat.cs in notepad
2. search for "if (playerDeaths >= 5)" Remove the quotes from your search.
3, change the 5 to whatever you would like.
4. Save and recompile the fold in plugin editor
 
Last edited:
I honestly doubt i will be able to add healing in. I have never played a healer in this game and do not have the first clue how it all works.

The way it works with UniversalFight is, when character drops below 'x'% health, perform 'healing ability' (such as Songcraft: Ode To Recovery) wait 'x' amount of time (for cooldown on that ability) and then check health % again. This should all be done out of combat as well, by the way
 
The way it works with UniversalFight is, when character drops below 'x'% health, perform 'healing ability' (such as Songcraft: Ode To Recovery) wait 'x' amount of time (for cooldown on that ability) and then check health % again. This should all be done out of combat as well, by the way

does this current plugin heal yourself at all? I figured most people were talking about healing support being needed for healing an entire party.
 
does this current plugin heal yourself at all? I figured most people were talking about healing support being needed for healing an entire party.
I suppose it depends on the ability you select as a "healing skill". Right now I specifically use "Ode To Recovery" which is an AoE healing ability - so yes, it can heal a party, or whoever is in range.
 
View attachment 169792

Hi. i just reinstalled my AA and AB , and i keep geting this error. can someone help?
previously i was able to open 2 client and having no issue.
Now i open Haslassitant , after 2-3 hit i keep geting d/c.
 
View attachment 169792

Hi. i just reinstalled my AA and AB , and i keep geting this error. can someone help?
previously i was able to open 2 client and having no issue.
Now i open Haslassitant , after 2-3 hit i keep geting d/c.


Try running in two VM or one VM and one main. That error is usually a threading issue which this code does a lot. I am trying to rewrite it to fix this unmarshall and the error you show. With the threading it uses I can't see you ever running two of the same versions of this code at once. It Will eventually try to access the same file.
 
yes, he had a built in check. I have extracted that to an option on the actual form to change. I am struggling trying to fix that UnMarshal error, it seems completely random. I honestly doubt i will be able to add healing in. I have never played a healer in this game and do not have the first clue how it all works. I have cleaned up a lot of the casting rotations as well as fixed the magic circle not casting bug. I have added in stealth capability as well as working on a stand still type option. Also working on mount support.


if you want a quick fix for allowing you character to die more than 5 times, do the following:

1. open up combat.cs in notepad
2. search for "if (playerDeaths >= 5)" Remove the quotes from your search.
3, change the 5 to whatever you would like.
4. Save and recompile the fold in plugin editor

THX will try it.
 
I changed what you told to me but doesn't work.

here is the code of the plugin i have changed :

playerDeaths++;
if (playerDeaths >= 30)
{
core.Log("Reached 5 deaths, something must be wrong with the setup or we're getting chain ganked");
return;
}
 
erhm i not really sure what is VM , normally i just use AB to multi for the , just wondering why suddenly so much error as i was doing it quite a while.
 
erhm i not really sure what is VM , normally i just use AB to multi for the , just wondering why suddenly so much error as i was doing it quite a while.
I think you're looking for help with the Haslassistant plugin - you should be asking this question in that thread, or in the support forum. This is just a thread for ideas/suggestions for a "new" Haslassistant plugin.
 
I would love "Move back to anchor position" & "Kiting" functions :)
 
I would love "Move back to anchor position" & "Kiting" functions :)

my move back to anchor position is working perfectly, kiting i am not sure how to handle. I am still spending most of my time trying to fix the unmarshall and various other errors. I might just rewrite a brand new plugin.
 
hi i use this plugin for normal grinding also i was wonder if you could add like a count down logout after whatever time you put? or teleport to town/house so basically im trying to say i could set it to just grind for 60mins then either it could do 1 of the 2 options ?
 
Back
Top