Jump to content

Droidz

Administrators
  • Posts

    12508
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hello, you have closed WRobot before to edit file?
  2. try to clear your npc db (tab tools, remove all entries) and disable all wow addons, and all wrobot plugins (for the test).
  3. I'm not sure I understood it, but if you don't want share in public your log file send me it by private message.
  4. Hello, can you share your log file (stop bot when WRobot don't go to mailbox when he should)
  5. Hello, problem resolved. When you get this problem it is better to contact me by privatee message.
  6. Hello, you can found upgrade invoice here: https://wrobot.eu/clients/orders/
  7. Hello, You can found upgrade invoice here: https://wrobot.eu/clients/orders/
  8. Hello, You can found your license key here: https://wrobot.eu/clients/purchases/ Kind regards
  9. Hello, if they use lua they can use https://wowwiki.fandom.com/wiki/API_GetTime (if time is similar on several accounts it is probably same computer https://wrobot.eu/forums/topic/10842-careful-with-botting-on-netherwing/?do=findComment&comment=51771 )
  10. Hello, You get this problem only when HMP plugin is installed? If problem is only with HMP plugin check if you have follow all steps of installation guide, if problem is not resolved contact plugin creator.
  11. Hello, try to increment you FPS in game, in fightclass editor you have also option "Frames per second", increment this option. Otherwise you have to decrease your number of spells, and avoid using lua (or if you can combine scripts)
  12. Redownload WRobot, install it in new folder, keep default settings , choose only your fly mount and you profile (don't use fightclass). Disable all wow addons and test it
  13. In ground mount name (in general settings) try to remove try to use ground mount (or nothing)
  14. Hello, try to put 0 in randomize node positon (in product settings)
  15. Hello, Can share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  16. Hello, https://wrobot.eu/forums/topic/7716-how-to-starting-wow-in-32-bit/
  17. Hello, Disable all Wow addons, all WRobot plugins and share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  18. In advanved general settings tab "Pathfinding" try to use option "Try to avoid group of mobs". But if it is not settings problem it is profile problem, a good profile is based on the behavior of WRobot to avoid areas where WRobot does not perform well.
  19. Hello, go near npc on click on "blacklist zone" in tab tools. But you can also remove npc from your "npc db" (tab tools) and remove npc from your profile (with profile editor)
  20. Hello, Try to install Redistributable Visual C + + 2010 (X86) and SlimDX (4.0 X86). Disable all Wow addons, all WRobot plugins and share your log file please ( ).
  21. Hello, Disable all Wow addons, all WRobot plugins and share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  22. You need more code using System; using System.Runtime.InteropServices; using System.Windows.Forms; public class Main : wManager.Plugin.IPlugin { [DllImport("user32.dll", SetLastError = true)] static extern int GetWindowLong(IntPtr hWnd, int nIndex); public const uint WS_MINIMIZE = 0x20000000; public const uint WS_MAXIMIZE = 0x01000000; public const int GWL_STYLE = -16; void GetState() { int style = GetWindowLong(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, GWL_STYLE); if ((style & WS_MAXIMIZE) == WS_MAXIMIZE) { MessageBox.Show("maximized"); } else if ((style & WS_MINIMIZE) == WS_MINIMIZE) { MessageBox.Show("minimized"); } else { // normal style? MessageBox.Show("Normal??? > style=" + style.ToString("x8")); } } public void Initialize() { GetState(); robotManager.Helpful.Win32.Native.ShowWindow(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, 6); GetState(); robotManager.Helpful.Win32.Native.ShowWindow(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, 3); GetState(); robotManager.Helpful.Win32.Native.ShowWindow(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, 4); GetState(); } public void Dispose() { } public void Settings() { } }
  23. Hello, wait next update, I added even: wManager.Events.OthersEvents.OnSelectQuestRewardItem += delegate(CancelEventArgs cancelable) { }; if you cancel event WRobot will not select reward item.
  24. I couldn't give a code that works, people here are more specialized in that. But I think you should look at the lua event side (wManager.Wow.Helpers.EventsLuaWithArgs.OnEventsLuaStringWithArgs) Run this code to dump lua event in wrobot log: wManager.Wow.Helpers.EventsLuaWithArgs.OnEventsLuaStringWithArgs += delegate(string eventid, List<string> args) { try { //if (eventid != "COMBAT_LOG_EVENT_UNFILTERED" && eventid != "COMBAT_LOG_EVENT") // return; var argsString = new System.Text.StringBuilder(); var first = true; foreach (var a in args) { if (first) first = false; else argsString.Append(" , "); argsString.Append(a); } robotManager.Helpful.Logging.Write("[L] " + eventid + " > " + argsString.ToString()); } catch { } };
×
×
  • Create New...