Jump to content

Droidz

Administrators
  • Posts

    12581
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hello, You can found your license key here: https://wrobot.eu/clients/purchases/ Kind regards
  2. 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 )
  3. 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.
  4. 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)
  5. 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
  6. In ground mount name (in general settings) try to remove try to use ground mount (or nothing)
  7. Hello, try to put 0 in randomize node positon (in product settings)
  8. Hello, Can share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  9. Hello, https://wrobot.eu/forums/topic/7716-how-to-starting-wow-in-32-bit/
  10. 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/ ).
  11. 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.
  12. 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)
  13. 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 ( ).
  14. 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/ ).
  15. 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() { } }
  16. Hello, wait next update, I added even: wManager.Events.OthersEvents.OnSelectQuestRewardItem += delegate(CancelEventArgs cancelable) { }; if you cancel event WRobot will not select reward item.
  17. 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 { } };
  18. hi, try robotManager.Helpful.Win32.Native.ShowWindow(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, 3); (no tested)
  19. What do you want to do if you are affected by a certain spell? You want check a special spell or check by example if your character is stun?
  20. Wait next update and tell me if problem still happen
  21. Hey, You can increment option "wManager.wManagerSetting.CurrentSetting.BlacklistUnitDefaultTimeMs" (default: 120000 ms (2 minutes)) Or you can increment option "wManager.wManagerSetting.CurrentSetting.MinFreeBagSlotsToGoToTown" (default 2) (you can found this option in advanced general settings) Or you can try plugin like: using wManager.Wow.Bot.States; using wManager.Wow.Helpers; public class Main : wManager.Plugin.IPlugin { public void Initialize() { robotManager.Events.FiniteStateMachineEvents.OnBeforeCheckIfNeedToRunState += (engine, state, cancelable) => { if (state is Looting && Bag.GetContainerNumFreeSlotsNormalType == 0) cancelable.Cancel = true; }; } public void Dispose() { } public void Settings() { } }
  22. You use 64bit client, use 32 bit https://wrobot.eu/forums/topic/7716-how-to-starting-wow-in-32-bit/
  23. Hello, try without fightclass. if your problem is not resolved please 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/ ).
  24. Hello, problem is normally resolved
  25. Hello, The better is to use lua for that
×
×
  • Create New...