Jump to content

Droidz

Administrators
  • Posts

    12455
  • Joined

  • Last visited

Everything posted by Droidz

  1. 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...."
  2. Hello, in next update I'll avoid that WRobot throws exception for that, this should resolve your problem.
  3. 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; } } };
  4. Hello, I replied by private message, you have several accounts, check the others one of them for a subscription.
  5. if you launch "Ascension.exe" manually (without launcher), you can login?
  6. My fault I had misconfigured the obfuscation I solved the problem in an update
  7. 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(); } } }
  8. Droidz

    Use food "Healing spell"

    Hi, thank you wait next update for the fix
  9. Hey, 1. I'll add option like that but rename only wow.exe file don't cause this problem (file is probably modified). 2. To avoid this problem you need to use "Flying" position. Bot is flying when he goes to "Flying" position. If it is not problem please share your log
  10. Try to run bot with shortcut "WRobot (DX hook)" and/or "WRobot (No Lock Frame)"
  11. 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
  12. 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.
  13. It is french client but this works for me. WBjxgEyiOk.mp4
  14. Bonjour, vous essayer probablement d'utiliser un profil pour le bot "Quester" ou "Gatherer"
  15. Hey, I tested this code he works for me: wManager.Wow.Helpers.EventsLuaWithArgs.OnEventsLuaStringWithArgs += (eventid, args) => { if (eventid == "UNIT_SPELLCAST_SUCCEEDED") Logging.WriteDebug("[EVENT] " + args[0] + " > " + args[1]); }; It is not the case for you?
  16. Hello, it is bot crash? you have try without plugin and with another fightclass?
  17. Hello, you can use trial version https://wrobot.eu/files/file/2-wrobot-official/ (use key "TRIAL") to test if WRobot works on your server
  18. Bonjour, Avez vous des addons Wow? si c'est le cas essayer de les désactiver. Si vous pouvez partager un fichier journal d'une des session où vous avez eu ce problème (vous pouvez le trouver dans le dossier "Logs")
  19. you have try to disable your wow addons?
  20. Hi, can you activate radar3d to check where bot try to go (if it is no underground)
  21. Hello, I generated new key
  22. Hello, try without wow addons, try to download again wrobot, install it in new folder and run it without fightclass/settings (use automaton). Try also to run wrobot with shortcut "WRobot (DX hook)". If problem is not resolve try to download another wow client (don't forget to disable your antivirus)
  23. Hello, try to remove the two empty items to buy. If problem is not resolved disable all plugins/fightclass and reactivate them 1 by 1 (to try to identify what is causing the problem)
  24. Hello, can you share your log files please (bot and relogger)
×
×
  • Create New...