-
Posts
12519 -
Joined
-
Last visited
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Everything posted by Droidz
-
No you don't need to enable this option. But you need to start bot where (position/rotation) you want fishing. If your problem is not resolved share log of the bugged session (folder "Logs")
-
Hello, you use "Fish School" option with custom profile? your does profile walk well at the water's edge?
-
Hello, can you share log of session where you get this problem please
-
Hello, I am sorry no alternative payment option for the moment. Some service like "Skrill" gives the possibility to create virtual credit cards.
-
Hi, autostart is read only: public bool AutoStart => !string.IsNullOrEmpty(Product) && !string.IsNullOrEmpty(LicenseKey) && ProcessId > 0; Try use arg LicenseKey (seems missing in your code)
-
Bonjour, Je peux comprendre, mais cette décision vient de PayPal, car le type de logiciel qu'est WRobot ne correspondait plus à leurs règles. Certains services comme Skrill par exemple propose de créer de carte bancaire virtuelle, ça peut être une solution si vous ne voulez pas donner votre CB.
-
Hello, use https://wrobot.eu/byme/doc/html/M-wManager.Wow.Helpers.PathFinder.GetZPosition.htm
-
Try to use this https://wrobot.eu/files/file/276-seus-journey-to-the-center-of-the-earth-pandaria-archaeology-100-complete/
-
Hello, try without wow addons
-
Bonjour, Ajouter les noms (un par ligne, avec le majuscules/minuscules ) des minerais que vous voulez ramasser dans "Advanced settings" onglet "Looting and Farming options" > "Harvest objects...."
-
Hello, in next update I'll avoid that WRobot throws exception for that, this should resolve your problem.
-
UseItemOn doesn't work because of Item Cooldown
Droidz commented on Eldunar's bug report in Bug Tracker
Maybe I do error with enabled https://wowpedia.fandom.com/wiki/API_GetItemCooldown, seems return true when item is ready, try: robotManager.Events.FiniteStateMachineEvents.OnRunState += (engine, state, cancelable) => { int itemId = 1234; int questId = 1234; if (!wManager.Wow.Helpers.Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause) return; if (wManager.Wow.Helpers.Conditions.IsAttackedAndCannotIgnore) return; if (state.DisplayName == "Quester") { if (wManager.Wow.Helpers.Quest.HasQuest(questId) && !wManager.Wow.Helpers.Lua.LuaDoString<bool>("local start, duration, enable = GetItemCooldown("+ itemId + "); return enable;")) { cancelable.Cancel = true; } } }; or robotManager.Events.FiniteStateMachineEvents.OnRunState += (engine, state, cancelable) => { int itemId = 1234; int questId = 1234; if (!wManager.Wow.Helpers.Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause) return; if (wManager.Wow.Helpers.Conditions.IsAttackedAndCannotIgnore) return; if (state.DisplayName == "Quester") { if (wManager.Wow.Helpers.Quest.HasQuest(questId) && wManager.Wow.Helpers.Lua.LuaDoString<bool>("local start, duration, enable = GetItemCooldown("+ itemId + "); return start ~= nil and start > 0 and duration ~= nil and duration > 0;")) { cancelable.Cancel = true; } } }; -
Hello, I replied by private message, you have several accounts, check the others one of them for a subscription.
-
Try to use this relogger plugin (no tested), save it as .cs file in the folder "WRobot\Plugins\Relogger\": using System; using System.Runtime.InteropServices; using System.Windows.Forms; namespace Renamer { public class RenameWowWindow : Relogger.ReloggerPlugin { public override string Name { get { return "Rename wow window"; } } [DllImport("user32.dll")] static extern bool SetWindowText(IntPtr hWnd, string text); public override void OnStart() { Relogger.Events.OnStartBot += (profile, cancelable) => { if (profile.ExistWowProcess() && profile.CurrentWowProcess.MainWindowTitle != "World of Warcraft") SetWindowText(profile.CurrentWowProcess.MainWindowHandle, "World of Warcraft"); }; } public override void OnStop() { } public override void OnButtonPress() { MessageBox.Show("No settings"); base.OnButtonPress(); } } }
-
Hi, thank you wait next update for the fix
-
someone help me with crash report.. please
Droidz replied to Jpizzle's topic in WRobot for Wow Vanilla - Help and support
Try to run bot with shortcut "WRobot (DX hook)" and/or "WRobot (No Lock Frame)" -
Hi, try for (int i = 0; i < Relogger.Classes.ReloggerGeneralSettings.CurrentSetting.Profiles.Count; i++) { var p = Relogger.Classes.ReloggerGeneralSettings.CurrentSetting.Profiles[i]; if (p.CurrentWowAccount.Server == "Server Name") { if (p.Status == Relogger.Classes.Status.Running) { if (p.ExistWowProcess()) { p.KillWowProcess(); robotManager.Helpful.Logging.Write(Name + ": Kill wow for " + p.Name); } if (p.ExistWRobotProcess()) { p.ExistWRobotProcess(); robotManager.Helpful.Logging.Write(Name + ": Kill Bot for " + p.Name); } p.Stop(); Thread.Sleep(Others.Random(5000, 10000)); } } } I added if (p.CurrentWowAccount.Server == "Server Name") Make one plugin by serveur
-
Can WRobot catch UNIT_SPELLCAST_SUCCEEDED with arguments?
Droidz replied to Zer0's topic in Developers assistance
It is strange, I don't understand what can happen. I will add logs in case of error in one of the calls wManager.Wow.Helpers.EventsLuaWithArgs.OnEventsLuaStringWithArgs += (eventid, args) => { Logging.WriteDebug("[EVENT] 1"); }; wManager.Wow.Helpers.EventsLuaWithArgs.OnEventsLuaStringWithArgs += (eventid, args) => { throw new Exception("eeee"); }; wManager.Wow.Helpers.EventsLuaWithArgs.OnEventsLuaStringWithArgs += (eventid, args) => { Logging.WriteDebug("[EVENT] 3"); }; 3 is never invoked at home. I hope that the logs will help to resolve problems like this. -
Can WRobot catch UNIT_SPELLCAST_SUCCEEDED with arguments?
Droidz replied to Zer0's topic in Developers assistance
It is french client but this works for me. WBjxgEyiOk.mp4 -
Bonjour, vous essayer probablement d'utiliser un profil pour le bot "Quester" ou "Gatherer"