January 30, 201610 yr Hi Guys , I hope maybe some of you guys could help me here i am asking if it is possible to give conditions in lua or any way in the bot to avoid "AOE Fields" for boss encounters so they dont stand just dumb in it and die. Also another question: which conditions do i have to use in wrotation mode if i want to stack Lacerate (feral druid) on a target and keep it on the target at 5 stacks?
January 31, 201610 yr Only know the second question which is condition buff stack Lacerate number 5 equal.
January 31, 201610 yr @Droidz should add a condition for checking ground debuffs and then moving away from it. Or atleast add a way to tell the bot to move at some direction
January 31, 201610 yr Author Yeah @betterSister thats what i am lookin for actually that would help a lot because my party members keep standing too long in it and i cant do anything against it besides of simple follow but he should choose the shortest way without aoe fields on the ground. Maybe we can get a smart solution for that from droidz
January 31, 201610 yr Author Also is it possible to add a function for the bot to refresh the focus from party leader every some seconds so they dont split up attacking the wrong target? and is it possible to have a function or plugin which tells the bot to keep some distance between party members so they dont stay all together atleast in a fight maybe they can build a circle arround an enemy or something.
February 1, 201610 yr Hello, For the moment the possibility to avoid ground AOE spell is not implemented. To target same mob of the party leader, you need to use c# code like this: if (wManager.Wow.Helpers.Party.IsInGroup()) { var playerLeader = new wManager.Wow.ObjectManager.WoWPlayer(wManager.Wow.ObjectManager.ObjectManager.GetObjectByGuid(wManager.Wow.Helpers.Party.GetPartyLeaderGUIDHomeAndInstance()).GetBaseAddress); if (playerLeader.IsValid) { var target = playerLeader.TargetObject; if (target.IsValid && wManager.Wow.ObjectManager.ObjectManager.Target.GetBaseAddress != target.GetBaseAddress) { wManager.Wow.Helpers.Interact.InteractGameObject(target.GetBaseAddress, !ObjectManager.Me.GetMove); } } }
February 1, 201610 yr Author i have no experience at all for using scripts. is it possible to convert this script into a plugin so i can activate it for the slaves ?
February 1, 201610 yr Author 6 hours ago, Solit said: i have no experience at all for using scripts. is it possible to convert this script into a plugin so i can activate it for the slaves ? Also you said you will make a version to manage more bots at once . is it possible you add a feature with which i can change fight classes for all of the targeted bots and also settings etc? for example i run 9 shamans in a team and i have to stop and start them very often also i have to switch fight classes a lot which i have to do manually for all of them right now. If it is possible can you also add a function which prioritizes the spells before range? right now you can just set range to a certain range.. if possible could you do it so we can say from range 1-25 for example if the bot gets knocked back he cant heal because he is trying to get to the party leader instead of taking care of heals first ? would be a great feature
Create an account or sign in to comment