Jump to content

Droidz

Administrators
  • Posts

    12581
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hello, disable your wow addons, if your problem is not resolved disable all wrobot plugins
  2. With your current settings, WRobot will regen only if your character are less than 1% of health (and stop regen at 78% or more), use value like 55% to 90%
  3. Hello, try to use macro: https://eu.battle.net/forums/en/wow/topic/7427293031
  4. you have try to use offmeshesconnection?
  5. Download DontSkipRegenIfFlaggedInCombat.cs, move file in folder "wrobot\plugins", launch wrobot, tab "plugins" activate this
  6. Hello, in advanced general settings, in min free slots change value and put ammo bag slots count + 3
  7. Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  8. Droidz

    relogger issue

    Hello, try to reinstall WRobot in new folder and disable your antivirus
  9. Hello, try to restart you computer, if problem is not resolved try to disable your antivirus
  10. Hello try to download another client
  11. Try to disable your antivirus and useless programs ( https://www.google.com/search?q=System.ComponentModel.Win32Exception+(0x80004005) )
  12. Hello, try to disable your addons, can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  13. Hello, can you read this: https://wrobot.eu/forums/topic/1381-repairinstall-wrobot/#comment-966 (step 14)
  14. Hello, can you read this: https://wrobot.eu/forums/topic/1381-repairinstall-wrobot/#comment-966 install slimdx
  15. Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  16. Bonjour, Dans "Advanced general settings" vous pouvez utiliser "My Macros"
  17. Droidz

    SellItem error

    Hello, wait next update
  18. Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  19. Hello, I don't sell and don't use your personal informations, I request these because I am obliged to have invoices of my sales (for my company, I need to keep these informations 5 years, it's the laws of my country).
  20. Hello, Me.IsSitting is not in WRobot api, you cannot detect if your character is sit or not. Correct plugin code seem more like (not work) : using System.Threading; using wManager.Plugin; using wManager.Wow.Helpers; public class Main : IPlugin { public void Initialize() { while (Conditions.ProductIsStarted) { if (Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause) { if (robotManager.Helpful.Logging.Status == "Regeneration") { if (!wManager.Wow.ObjectManager.ObjectManager.Me.IsSitting) { wManager.Wow.Helpers.Move.SitStandOrDescend(); Thread.Sleep(1000); } } } Thread.Sleep(500); } } public void Dispose() { } public void Settings() { } } Try this: using System.ComponentModel; using System.Threading; using robotManager.FiniteStateMachine; using wManager.Wow.Helpers; public class Main : wManager.Plugin.IPlugin { public void Initialize() { robotManager.Events.FiniteStateMachineEvents.OnRunState += delegate(Engine engine, State state, CancelEventArgs cancelable) { if (state.DisplayName == "Regeneration") { Move.SitStandOrDescend(); Thread.Sleep(1000); } }; } public void Dispose() { } public void Settings() { } }
  21. https://wrobot.eu/forums/topic/9777-sitting-during-regeneration/
  22. Hello, it is normally automatic, do you use wow addons? if yes try to disable all.
  23. Hello, https://wrobot.eu/forums/topic/2681-snippets-codes-for-quest-profiles/?do=findComment&comment=13088
  24. Droidz

    Vanila Set Target in code

    Hello, use Me.Target (instead Me.Focus)
×
×
  • Create New...