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

autofight plugin

mevip

Member
Joined
Apr 17, 2010
Messages
340
Reaction score
0
hi guys i`m looking for a autofight plugin that works outside of the instance ... atm i saw mrautofight that works in instances but it dosnt work outside .... do you guys know a plugin like that for outside of the instance ?
 
Combat/healbot seems to work outside of the instance for me, just Quote out the Movement logic in combatbot.cs Works for dps Wont heal out of instance though it seems.
 
Autofight works fine outside instances. That is my main use for it, I use it for questing and all that, just agro the mob and let the bot take over.
 
can you please point out wich part i need to quote out ?


*edit* i dont know if mrautofight works cause it dosnt seem to work for me i tried it with all the bots. it only works with combat/heal but i dont think thats mrautofight that does the job i think its combat/heal bot that does it. anyway can you tell me wich part i need to delete out of the combatbot.cs ? cause i dont like it how the bot stops me from moving once it gets a target ... i want it to attack but i want to be able to move around the target or away from the target if needed ...
 
Last edited:
Change this:
private Composite _root;
public override Composite Root
{
get
{
return _root ?? (_root =
new PrioritySelector(
CreateCombatBehavior(),
CreateFollowBehavior()
)
);
}
}
To this:
private Composite _root;
public override Composite Root
{
get
{
return _root ?? (_root =
new PrioritySelector(
CreateCombatBehavior()
// CreateFollowBehavior()
)
);
}
}
 
I dont change anything, I just set to Grind Bot, load a blank profile and enable Autofight. Which makes it so I can control all movement and it does the fighting.
 
i did it ... it seamed to work at start but now that i think about it ... it dosnt do what i want ... can you tell me wich part i need to take out from the script so the bot wont target the mobs BY HIMSELF ? ... cause this is the problem here i`m a rogue, when i get low hp i want to vanish and get out of there ... but the bot targets the mob and starts moving toward it ... ANNOYNG AS HELL ... please help me with this last thing i would really apreciate it :) thanks
 
I think that is more CC related.

As once you engage a mob the CC takes over till combat is ended, and as you are in combat you cant tell the bot to not do something now.
 
ah ... damn that really sucks i wass hoping to use this so i can dps in raids too ... but i doubt its going to be posible ... he`s just going to go crazy and run around attacking everything thats red
 
Back
Top