Jump to content

Droidz

Administrators
  • Posts

    12613
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hello, can you read this: https://wrobot.eu/forums/topic/1381-repairinstall-wrobot/#comment-966 (install slimdx, framework and vc++), disable your antivirus and redownload and reinstall WRobot in new folder
  2. Hello, download WRobot here https://wrobot.eu/files/file/2-wrobot-official/ extract and launch "Updater.exe" and in product version select your game version
  3. All sessions create log, read this to share your logs https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/
  4. Droidz

    Error

    Hello, Can you share your code (line where you use UseItem())
  5. Hello, try to use paypal
  6. Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ) (or sessions closed).
  7. Yes problem is normally resolved with the new update
  8. I'll resolve problem quickly
  9. You use relogger app?
  10. Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  11. Hello, use: robotManager.Events.LoggingEvents.OnAddLog += delegate (robotManager.Helpful.Logging.Log log) { if (log != null && !string.IsNullOrWhiteSpace(log.Text) && log.LogType == robotManager.Helpful.Logging.LogType.Error && log.Text == "Character changed, closing bot.") { System.Diagnostics.Process.GetCurrentProcess().Kill(); } }; (run this code one time)
  12. Hello, you play in what wow version?
  13. Hello, try to disable all wow addons and try to increment your min/max latency in advanced general settings
  14. Hello, you can try also step 14: https://wrobot.eu/forums/topic/1381-repairinstall-wrobot/?tab=comments#comment-966
  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. Hello, check if you use gatherer profile (and not grinder or quester), if problem is not resolved try to install WRobot in new folder
  17. Hello, try code like (run it one time): var lastUnit = new WoWUnit(0); wManager.Events.FightEvents.OnFightStart += delegate (WoWUnit unit, CancelEventArgs cancelable) { if (unit != null && unit.IsValid && lastUnit != null && lastUnit.IsValid && !unit.Guid.Equals(lastUnit.Guid)) { lastUnit = new WoWUnit(unit.GetBaseAddress); // StartFight(Int128 guid, bool skipIfPlayerAttackedButNotByTheTarget = true, bool managerMovement = true, bool stopIfPlayerTargetChange = false, bool rotationBot = false) Fight.StartFight(unit.Guid, false, false, true, true); cancelable.Cancel = true; } }; (not tested)
  18. Hello, it is normal first index is generally 0, you need to add +1 to use it in lua ( look sample https://www.google.com/search?q=site%3Awrobot.eu+SpellManager.GetSpellSlotId )
  19. Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  20. Hello, check if you have mailbox in npc db (tab tools or in your profile)
  21. You can also add code in "Additional C# code" (like this: https://wrobot.eu/forums/topic/1299-monks-brews/?do=findComment&comment=6999 , https://www.google.com/search?q=Additional+C%23+code+site%3Awrobot.eu )
  22. Hello, can you read this: https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ) install SlimDX, vc++ and try to close slimdx, if your problem is not resolved please share your log file
  23. Hello, you use AddState ? robotManager.Events.FiniteStateMachineEvents.OnStartEngine += engine => { engine.AddState(MyState); };
×
×
  • Create New...