-
Posts
12587 -
Joined
-
Last visited
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Everything posted by Droidz
-
I checked, if you use default settings with default wow UI, WRobot go to water surface before to dead
-
can't play in mop. Wrong version
Droidz replied to JAICA's topic in WRobot for Wow Mists of Pandaria - Help and support
Hello, when you launch wrobot "Updater" you have selected to install MoP version? -
In the while add condition like ObjectManager.Me.Position.DistanceTo2D(waypoint) > 1.5 (to start to go to next hotspot before than WRobot stop your movement)
-
yes this subscription works on wrobot for private servers
-
2.0.1v Bot closing after 5 min
Droidz replied to Bogdan079's topic in WRobot for Wow The Burning Crusade - Help and support
Old limitation is to 1 PC (not applied) and 1 IP (It is true that there was no real limit, even if limiting to 1 pc limit the number of sessions). Send me private message with number of sessions that you use, we will found solution. And I warned, I made news, I added logs every 30 seconds on the old versions since few weeks to tell you to contact me if you have problems with the new update to resolve them resonances before than I disable older versions. -
Hello, https://wrobot.eu/forums/topic/9462-pour-firestorm-la-solution-735/ (In wow folder, rename file "Firestorm.exe" to "wow.exe" and remove files "wow64.exe" and "firestorm64.exe". Launch "wow.exe")
-
Hello, I'll release WRobot for private server Legion (not the old WRobot versions) when Bliz will release BfA pre-patch (and when I will close WRobot for official servers, in July I think)
-
[WOTLK]Regeneration while swimmin
Droidz commented on (̾●̮̮̃̾•̃̾) ̿ ̿ ‘̿’\̵͇̿̿\'s bug report in Bug Tracker
Hello, it is not a bug, the problem is than for now WRobot does not know how to avoid the hostile enemy, it is for this reason that it does not move out of water if it does not have the life / mana configured in the option "Regen". -
Ok, if you get this problem again, do not hesitate to send me your list of items. Some wow addons auto selling poor items (to bypass this problem to wait)
-
Hello, you get error in your log Can you give me list of items in your bags when you get this error (you can get items in in tab "Tools" > "Dev... tools")
-
Hello, you can use code like var spell = new Spell("Healing Touch"); spell.Launch(true, false); Thread.Sleep(Usefuls.Latency + 300); while (ObjectManager.Me.CastingSpell.Name == "Healing Touch") { if (ObjectManager.Me.HealthPercent > 80) { Lua.LuaDoString("SpellStopCasting() SpellStopCasting()"); break; } Thread.Sleep(50); } https://wrobot.eu/forums/topic/2652-how-to-cancel-the-current-cast/
-
Bonjour, la version trial fonctionne uniquement avec WRobot pour serveurs privés. Vous jouez sur serveurs privés?
-
Hello, in advanced general settings disable option "ninja"
-
Hello, try again problem resolved
-
WRobot - Party option
Droidz replied to najkon's topic in WRobot for Wow Wrath of the Lich King - Help and support
Hello, sorry you cannot with default features -
Current WRobot is currently not detected on private server (you can use trial version of WRobot to test), it is not cause of ban.
-
Hello, update WRobot again
-
[vanilla] something is fundamentaly wrong with the barrens-to-1k elevator
Droidz commented on eniac86's bug report in Bug Tracker
Yes if WRobot think than he can make path you cannot use offmeshconnection. I quickly looked your code, try to use codes like (before to exit "MovementEventsOnOnMovementPulse" if you have used elevator) GoToTask.ToPosition(points.Last()); cancelable.Cancel = true; or var p = PathFinder.FindPath(points.Last()); points.Clear(); points.AddRange(p); I'll try to go to the barrens elevator -
[vanilla] something is fundamentaly wrong with the barrens-to-1k elevator
Droidz commented on eniac86's bug report in Bug Tracker
Use offmeshconnection and action, by sample for thunder bluff, I use in WRobot code: // Thunder bluff elevator new PathFinder.OffMeshConnection(new List<Vector3> { new Vector3(-1280.236, 196.0687, 68.55207), new Vector3(-1286.483, 189.3813, 68.87579) {Action = "c#: Logging.WriteNavigator(\"[OffMeshConnection] Thunder Bluff > Wait Elevator\"); while (Conditions.InGameAndConnectedAndProductStartedNotInPause) { var elevator = ObjectManager.GetWoWGameObjectByEntry(4170).OrderBy(o => o.GetDistance).FirstOrDefault(); if (elevator != null && elevator.IsValid && elevator.Position.Z <= 69) break; Thread.Sleep(10); }"}, new Vector3(-1285.303, 179.1285, 129.9943) {Action = "c#: Logging.WriteNavigator(\"[OffMeshConnection] Thunder Bluff > Wait to leave Elevator\"); while (Conditions.InGameAndConnectedAndProductStartedNotInPause) { var elevator = ObjectManager.GetWoWGameObjectByEntry(4170).OrderBy(o => o.GetDistance).FirstOrDefault(); if (elevator != null && elevator.IsValid && elevator.Position.Z >= 130f) break; Thread.Sleep(10); }"}, }, (int)ContinentId.Kalimdor), new PathFinder.OffMeshConnection(new List<Vector3> { new Vector3(-1285.303, 179.1285, 129.9943), new Vector3(-1286.483, 189.3813, 130.1201) {Action = "c#: Logging.WriteNavigator(\"[OffMeshConnection] Thunder Bluff > Wait Elevator\"); while (Conditions.InGameAndConnectedAndProductStartedNotInPause) { var elevator = ObjectManager.GetWoWGameObjectByEntry(4170).OrderBy(o => o.GetDistance).FirstOrDefault(); if (elevator != null && elevator.IsValid && elevator.Position.Z >= 130) break; Thread.Sleep(10); }"}, new Vector3(-1280.236, 196.0687, 68.55207) {Action = "c#: Logging.WriteNavigator(\"[OffMeshConnection] Thunder Bluff > Wait to leave Elevator\"); while (Conditions.InGameAndConnectedAndProductStartedNotInPause) { var elevator = ObjectManager.GetWoWGameObjectByEntry(4170).OrderBy(o => o.GetDistance).FirstOrDefault(); if (elevator != null && elevator.IsValid && elevator.Position.Z <= 69) break; Thread.Sleep(10); }"}, }, (int)ContinentId.Kalimdor), -
Hello, blacklist zone (tab tools)
-
Hello, Use code: for bag=0,4,1 do for slot=1,36,1 do local name=GetContainerItemLink(bag,slot);if (name and string.find(name,"Item1")) or (name and string.find(name,"Item2")) then PickupContainerItem(bag,slot);DeleteCursorItem();end;end;end or RunMacroText('/run for bag=0,4,1 do for slot=1,36,1 do local name=GetContainerItemLink(bag,slot);if (name and string.find(name,"Item1")) or (name and string.find(name,"Item2")) then PickupContainerItem(bag,slot);DeleteCursorItem();end;end;end'); (when you use RunMacroText, if in you macro you use character ", use ' )
-
Hello, https://wrobot.eu/articles/news/the-begining-of-the-end-of-wrobot-for-official-servers-r124/
-
Copy logs here. And when you use Automaton you character don't move also?
-
In your log you have only "sell gray" activated: Selling = True ; SellGray = True ; SellWhite = False ; SellGreen = False ; SellBlue = False ; SellPurple = False ; DoNotSellList = Tough Hunk of Bread, Hearthstone
-
I think than your bag is full and you haven't good settings to sell items (check "Do not Sell List (one item by line)" and activate option to sell white, green, ... items).