Jump to content

Droidz

Administrators
  • Posts

    12596
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hello, you have normal WRobot subscirption (not unlimited), you cannot run more than one session at the same time.
  2. Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  3. Droidz

    Profile Creation Hotkey

    Hello, use grinder or quester profile if you want to use hotspots.
  4. Changed Status to Confirmed Changed Version to All
  5. Hello, I have taken note. To wait you can try this plugin Main.cs (not tested): using wManager.Wow.ObjectManager; public class Main : wManager.Plugin.IPlugin { public void Initialize() { wManager.Events.MovementEvents.OnPulseStuckResolver += MovementEvents_OnPulseStuckResolver; } public void Dispose() { } public void Settings() { } WoWLocalPlayer m { get { return ObjectManager.Me; } } private void MovementEvents_OnPulseStuckResolver(System.ComponentModel.CancelEventArgs cancelable) { try { if (m.IsStunned || m.Rooted || m.Confused || m.HaveBuff("Concussive Shot")) // complete list ... cancelable.Cancel = true; } catch { } } }
  6. Changed Status to Confirmed Changed Version to All
  7. It is strange, try to reset Windows visual effects. But problem is probably caused by your Windows installation, you are the first to report this.
  8. Hello, try to redownload and reinstall Wrobot in new fodler
  9. Hello, step 7: https://wrobot.eu/forums/topic/1381-repairinstall-wrobot/#comment-966 and update Windows
  10. Hello, fightclass is created by you?
  11. Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  12. Hello, https://wrobot.eu/forums/topic/8299-i-can-not-fly-in-any-area/?do=findComment&comment=38292
  13. Hello, if enabled, try to disable option "randomize..." in gatherer product settings
  14. Hello, try to reinstall WRobot in new folder
  15. Hello, can you read this: https://wrobot.eu/forums/topic/1381-repairinstall-wrobot/#comment-966 If you problem is not resolved, can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  16. Do you have mailbox in your "npc tb" (tab "tools")
  17. Hello, I took note of your request
  18. Hello, try this plugin (shortcut is Alt-R) Main.cs: using System.Windows.Forms; using robotManager.Helpful; using wManager.Plugin; using wManager.Wow.Helpers; using wManager.Wow.ObjectManager; public class Main : IPlugin { private KeyboardHook _hookKeybindings = new KeyboardHook(); public void Initialize() { _hookKeybindings.KeyPressed += HookKeybindings_KeyPressed; _hookKeybindings.RegisterHotKey(ModifierKeys.Alt, Keys.R); } private void HookKeybindings_KeyPressed(object sender, KeyPressedEventArgs e) { if (Conditions.InGameAndConnectedAndProductStarted) wManager.wManagerSetting.AddBlackListZone(ObjectManager.Me.Position, 20); } public void Dispose() { _hookKeybindings.Dispose(); } public void Settings() { } } Line 13 you can replace "Alt" by "Control" (ctrl), and "R" by another keyboard key. Line 19 you can replace 20 by new blacklist radius.
  19. Hello, I added options for that in last WRobot update (only in fisher bot tab "Product settings")
  20. Hello, this crash does not seem to be caused by WRobot, but by Wow (or one of your addons), bliz release a lot of hotfixs (for bug like that I think), if you get this problem again in 1 or 2 weeks do not hesitate to request help again.
  21. Yes randomize path option can cause this problem, it is better to enable this option when you use flying profile
  22. Hello, try to disable your wow addons. Can you share your log file
  23. Update done
×
×
  • Create New...