-
Posts
12519 -
Joined
-
Last visited
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Everything posted by Droidz
-
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).
-
To unblacklist vendor (add you own condition, check if you are in smart pull): robotManager.Events.LoggingEvents.OnAddLog += delegate(Logging.Log log) { if (!log.Text.Contains("[ToTown] Unable to reach the vendor, blacklist it 120 minutes (you can disable this NPC in NPC DB tab 'Tools').")) return; foreach (var n in NpcDB.ListNpc) { n.BlackList(-1); } }; Or make copy of npcdb before to start fight (in smartpull) and restaure copy after fight (but yes I need to add blacklist events)
-
I think than when "[HumanMasterPlugin] ..... is in our way, attacking!" he stop "GoToTask.ToPositionAndIntecractWith(vendor...)" (with the Fight.StartFight(...)), when "ToPositionAndIntecractWith" return false, WRobot check why, and he check "if (Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause && !Conditions.IsAttackedAndCannotIgnore)" before to blacklist, but IsAttackedAndCannotIgnore return false and WRobot blacklist vendor.
-
Hello, I think it because you don't run this code in the bot thread (use event if you want to be in bot thread)
-
Hello, you get this problem only when you use your fightclass? yes you can send it to me by private message
-
please stop to spam forum, you have make more than 5 posts for the same problem (and you don't reply I my message). next time I ban you.
-
please stop to spam forum, you have make more than 5 posts for the same problem (and you don't reply I my message). next time I ban you.
-
Vanilla: ObjectManager.Me.GlobalCooldownEnabled always returns false
Droidz commented on Ordush's bug report in Bug Tracker
I haven't found how to get bufftimeleft (exept your character buffs), and I don't found how to check globalcooldown (on vanilla) -
Hello, you use last WRobot version? old versions are detected
-
Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
-
Vanilla: ObjectManager.Me.GlobalCooldownEnabled always returns false
Droidz commented on Ordush's bug report in Bug Tracker
Hello, cooldowntimeleft and globalcooldown are not supported in vanilla: https://wrobot.eu/forums/topic/4807-download-wrobot-for-vanilla/?do=findComment&comment=22310 -
possible to include fishing into quester?
Droidz replied to retrostalgic's topic in Quester assistance
Hello, https://wrobot.eu/forums/topic/3802-fisherbot-quest/