-
Posts
1887 -
Joined
-
Last visited
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Everything posted by BetterSister
-
Great Bot So Far, a Few Nit Picks Though...
BetterSister replied to waldodamon's topic in General discussion
Welcome to the forum! All the things mentioned here are known issues Blacklisting nodes: -
Version 1.1.0
1991 downloads
I wasn't going to release this but another Finn asked for it so here it is I used this to bot my prot warrior 20-66. It's missing stamina shout but who needs it anyway... It will use defensive cooldowns over damage abilitys so it'll survive quite big pulls as long as the mobs stay in front of you. I advise you to use "Move During Combat" plugin with this. I attached my version of it here that has forced optimal backwards movement -
Then it's in wrong folder
-
Eli joo tervetulemast vaan minunkin puolesta WRobottia käyttämään.
-
We did get this working properly. It will now be transformed to other dungeons that people like to farm
-
Alright so new project and new problems. Since the same problem with all of my party products is the profile isn't gonna do anything if player isn't in party. I need to tell the bot to find player nearby by specific name so i can use this information to cast spells on it As reference: bool Wrath() { if (!_wrath.KnownSpell) return false; if (!_wrath.IsSpellUsable) return false; if (ObjectManager.Me.ManaPercentage > 50 && RestoDruidSettings.CurrentSetting.HelpWrath == RestoDruidSettings.UseWrath.True) { WoWPlayer tank = ObjectManager.GetWoWUnitByName().ToString(RestoDruidSettings.CurrentSetting.ForceTankName); //nop not gonna work like this... WoWUnit target = tank.TargetObject; int numberOfEliteNearTank = ObjectManager.GetWoWUnitHostile().Count(u => u.Position.DistanceTo(tank.Position) <= u.InteractDistance && u.IsElite && UnitCanAttack.CanAttack(u.GetBaseAddress, tank.GetBaseAddress)); if (numberOfEliteNearTank >= 1) { return false; } Interact.InteractGameObject(target.GetBaseAddress, true); MovementManager.Face(target); _wrath.Launch(); return true; } return false; }
-
spot for automatom
BetterSister replied to wolerix's topic in WRobot for Wow Wrath of the Lich King - Help and support
Warmane.com and realm Lordaeron. 1x blizzlike -
spot for automatom
BetterSister replied to wolerix's topic in WRobot for Wow Wrath of the Lich King - Help and support
You're talking about WOD which isn't even close to WOTLK (We are on wotlk section) -
Navmesh Stuckloop
BetterSister replied to Dashia's topic in WRobot for Wow Wrath of the Lich King - Help and support
After looking at the log closer it says it's trying to get to a vendor that is supposed to be there. But this vendor is on Zeppelin and the bot doesn't realize it... I think vendors from zeppelin should be automaticly made ignored by bot. But why does it think it's stuck even tho it isn't? -
Navmesh Stuckloop
BetterSister replied to Dashia's topic in WRobot for Wow Wrath of the Lich King - Help and support
Could you take video? -
spot for automatom
BetterSister replied to wolerix's topic in WRobot for Wow Wrath of the Lich King - Help and support
Yes but with grinder you can tell the bot where you want and what you want to kill. It doesn't take so long to make grinder profile -
spot for automatom
BetterSister replied to wolerix's topic in WRobot for Wow Wrath of the Lich King - Help and support
Well if you're looking for horde under 60 lvl lvling try my questing profile But Really i don't recomment using Automation for efficiency. Rather make a grinder with huge loop -
[Fight Class] Hunter keep distance to Target
BetterSister commented on dida1990's bug report in Bug Tracker
Since i couldn't get the settings to save and load i hardcoded the plugin to use only backwards for 1500ms every 2.5s-6s link: https://drive.google.com/open?id=0BxrnR7sFxoj9OVhfYXlPNmppdmM Just delete your settings file called MoveDuringCombat-YournameRealmname -
[Fight Class] Hunter keep distance to Target
BetterSister commented on dida1990's bug report in Bug Tracker
The plugin is looking for config MoveDuringCombat-MyName.RealmName and the files are called MoveDuringCombat-MyNameRealmName. The plugin is acting weird for what it is progammed -
[Fight Class] Hunter keep distance to Target
BetterSister commented on dida1990's bug report in Bug Tracker
because hunter can't shoot while being at melee distance on wotlk Also it apparently resets for me too o.o -
[Fight Class] Hunter keep distance to Target
BetterSister commented on dida1990's bug report in Bug Tracker
On plugin settings make it walk back interval like every 5000ms walk back back for 1500ms -
[Fight Class] Hunter keep distance to Target
BetterSister commented on dida1990's bug report in Bug Tracker
http://wrobot.eu/files/file/303-move-during-combat/ what about using this? This won't be added to bot because there is plugin made for it -
motw doesn't go to everyone with 1 cast. You get another spell at around 60 lvl for it nor does power word fortitude untill at later lvls
-
not every buff go to everyone on wotlk
-
private Spell _motw; _motw = new Spell("Mark of the Wild"); //change Mark of the Wild to your buff name you wanna give people same for other mark of the wild below if (!_motw.KnownSpell) return false; if (!_motw.IsSpellUsable) return false; int motwmana = 80; if (motwmana == 0) return false; var members = getPartymembers().Where(o => o.IsValid && o.IsAlive && !o.HaveBuff("Mark of the Wild") && !o.HaveBuff("Drums of the Wild") && ObjectManager.Me.ManaPercentage >= motwmana && !TraceLine.TraceLineGo(o.Position)).OrderBy(o => o.HealthPercent); if (members.Count() > 0) { var u = members.First(); WoWPlayer healTarget = new WoWPlayer(u.GetBaseAddress); if (!TraceLine.TraceLineGo(healTarget.Position) && healTarget.IsAlive) { Interact.InteractGameObject(healTarget.GetBaseAddress, false); _motw.Launch(); } } i believe it works like this. If not then i can't help cuz i'm too busy with other projects
-
I can give you c# code for buffing after i get home
-
WOTLK Horde 13-60 questing profile by BetterSister
BetterSister commented on BetterSister's file in Quester - Wotlk
-
(possibly bug) Auctioner not deleting Sale Pending messages from mailbox
BetterSister commented on BetterSister's bug report in Bug Tracker
Then to write this code into a plugin