-
Posts
12519 -
Joined
-
Last visited
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Everything posted by Droidz
-
Version 1.1.0
902 downloads
MemoryClean Auto clean wow lua memory (with wow command "/reload") if this exceeds 270000 ko. This plugin is useful if you have a small amount of memory, if you run WRobot for session for a very long time, or if you launch a lot of Wow and WRobot sessions. You can edit file with notepad to change max lua memory size, replace 270000 by new limit size in KO line 28. EDIT: Now WRobot has option to to do this without this plugin: http://wrobot.eu/forums/topic/4918-since-last-update-the-bot-spams-reloadui/#comment-22750 -
Hello, What product and what profile do you use? Do you have good FPS in wow? Do you run wow in window mode? Do you have all required softwares? Sincerly, you are the first user at say this.
-
[Private servers] Unable to go underwater while mounted on a flying mount.
Droidz commented on sumodima's bug report in Bug Tracker
Hello, you play on what version of wow? -
Can't auto shot on hunter
Droidz replied to rankmaster's topic in WRobot for Wow Wrath of the Lich King - Help and support
Hello, you don't need to add auto shoot in your fightclass (it is managed by wrobot). Look this sample (for low level): hunter.xml -
Add "wManager.Wow.Bot.Tasks." before "GoToTask...."
-
Go to tab "Tools" > click on button "Npc DB" > research the used vendor/repair and activate option "Can Fly To" (you need to use Npc outdoor).
-
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); } } }
-
Battlegrounder Crashes
Droidz replied to tomei's topic in WRobot for Wow Wrath of the Lich King - Help and support
If you can send me by PM you crash file please. -
Battlegrounder AB
Droidz replied to tomei's topic in WRobot for Wow Wrath of the Lich King - Help and support
Thank you, Wait next update and tell me if problem is resolved. -
Hello, what product and what fightclass do you use for the arenas? Sorry, you cannot look corps in bg.
-
Hello, WRobot will not work with a boxer. You can use the product "party" if they are on the same server and in the same group (but not compatible with quests at the moment, I would add it one day). To do quests, the only solution at the moment is to launch wrobot several times with the "Quester" product and use the same profile (but the group are not supported).
-
The bot does not remove the skins ( WRobot for Wow WoD 6.2.3 )
Droidz commented on Azalina's bug report in Bug Tracker
Just for the test, you can try to put min latency at 1000 and max at 1500 and tell me if this resolved problem. Do you use wow addon? if you you can try to disable all. -
Hello, I am not sure to understand exactly what you want, but you can use code like this: int numberOfEliteNearTank = ObjectManager.GetWoWUnitHostile().Count(u => u.Position.DistanceTo(tank.Position) <= u.InteractDistance && u.IsElite && UnitCanAttack.CanAttack(u.GetBaseAddress, tank.GetBaseAddress)); if (numberOfEliteNearTank >= 3) { // .. }
-
Hello, To stop to go to tank if it is out of view you can use this code: #region Tank too far bool tankfar() { WoWPlayer tank = getTanks().First(); while (tank.IsValid && tank.GetDistance > 15 && !wManager.Wow.Helpers.TraceLine.TraceLineGo(tank.Position)) { MovementManager.MoveTo(tank); System.Threading.Thread.Sleep(50); } MovementManager.StopMove(); return false; } #endregion To generate path and go to tank you can use code like this: #region Tank too far bool tankfar() { WoWPlayer tank = getTanks().First(); if (tank.IsValid && tank.GetDistance > 15) { wManager.Wow.Bot.Tasks.GoToTask.ToPositionAndIntecractWith(new WoWUnit(tank.GetBaseAddress), -1, false, context => Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause && tank.GetDistance > 15); } MovementManager.StopMove(); return false; } #endregion
-
Hello, look this: http://wrobot.eu/forums/topic/2681-snippets-codes-for-quest-profiles/?do=findComment&comment=12213
-
Use Portals To use portails, you can look this sample: UsePortal.xml (guide is written in the first step).
-
Change WRobot settings You can change WRobot settings with step type "RunCode" like this: Disable "Stop bot if player teleported" (to avoid problem with you use Hearthstone or portals): wManager.wManagerSetting.CurrentSetting.CloseIfPlayerTeleported = false; To disable "attack before being attacked": wManager.wManagerSetting.CurrentSetting.AttackBeforeBeingAttacked = false; ... (to get names of settings, you can edit file with nodepad "WRobot\Settings\General-..........xml")
-
Tapatalk Support on forums (Android/IOS/BlackBerry)
Droidz replied to Droidz's topic in General discussion
Hello, problem resolved. -
Hello, Can you share the profile used please? (problem is probably caused by an c# code in the profile)
-
-
Add grind area (don't forget to give a name at this "Quest" and add in the steps a step type "Pulse")
-
-
Force to use Flightmaster / Taxi WRobot takes the taxi automaticly generally, but if you want force to use taxi you can look this sample: UseFlightPath.xml (guide is written in the first step).