Jump to content

Droidz

Administrators
  • Posts

    12579
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hello, you can should look like that : using System.Threading; using wManager.Plugin; public class Main : IPlugin { private bool _isLaunched; public void Initialize() { _isLaunched = true; robotManager.Events.LoggingEvents.OnAddLog += delegate(robotManager.Helpful.Logging.Log log) { if (log != null) { if (log.Text.Contains("[MovementManager] Think we are stuck")) { robotManager.Products.Products.InPause = true; // new thread to unpause after 5 seconds new Thread(t => { Thread.Sleep(5000); if (_isLaunched) robotManager.Products.Products.InPause = false; }).Start(); } } }; } public void Dispose() { _isLaunched = false; } public void Settings() { } }
  2. Search the documentation for the word 'cache' : https://wrobot.eu/forums/topic/12802-official-wrobot-api-documentation/ The name of the items may be missing (compared to their ID). Traceline also use a cache of few ms. But why do you need to know this?
  3. Hello, Can you use another game client than the one provided by the server (or at least the Wow.exe file of the unmodified game)?
  4. Hello, In advanced general settings tab "Others" try to increment your the options "Min" and "Max" latency
  5. Hello, Sounds like a connection stability issue. But you seem to have done all the right things. Having a few errors from the 'Remote' function is not very serious in itself (and should not cause crashes). You can : Try without the 'Remote' option activated (you can deactivate this option at the bottom right of the WRobot window). Install/reinstall required softwares (link in "readme.txt" file). Do Windows updates Try disable all Wow addons, bot plugin. Try with others profile/fightclass In the other logs (sessions where WRobot crash) there are no errors towards the end?
  6. Many elements related to spells are cached (spell names (in English and in the client's language), IDs relative to names, list of known spells, ...)
  7. Hi, From Cata version you can maybe check Usefuls.FrameTime_GetCurTimeMs(). On all version, you can check Useful.LastHardwareAction (this counter is updated when there is a keyboard input or when the mouse moves in the wow window). Relogger use "WowProcess.Responding". But, checking every 50ms seems almost impossible.
  8. Hello, you can find some builds here : https://wrobot.eu/forums/topic/2018-wrobot-old-versions/ . None are compatible?
  9. You can get in game objects info with "dev... tools" (tab "Tools")
  10. Hello, your problem should solved
  11. Hello, This is the profile trying to take this boat. The easiest way is to disable the step (or steps) with the 'Profile settings (enable/disable quests/steps)' tool (in the 'Product Settings' tab). You can also edit the profile, but it is more complicated. If you have trouble finding the steps to disable share here the bot log file (from a session where the bot is trying to take the boat).
  12. Hello, you can add npc (repair/vendor) in the NPC DB (tab "Tools")
  13. Yes connections from China are not always stable. Using a VPN can help (try free or trial versions to find the best one).
  14. Hello, Disable Wow addons to be sure this is not the problem, install the required files (you can find the links to these files in the readme.txt file in your wrobot folder). But you seem to have connection problems, try using a VPN.
  15. 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/ ).
  16. It's c# code to ignore your pet : ObjectManager.GetWoWUnitHostile().Count(u => u.Position.DistanceTo(ObjectManager.Target.Position) <= 10 && u.IsAttackable && !u.IsMyPet) >= 3 Replace 10 by the radius (distance), and 3 by the number of hostile unit near the target require.
  17. This profile is protected by the creator. You need to contact him.
  18. Hello, This problem can occur when you use a profile with the quester that is made for another product. If your problem is not solved, can you share the profile you are using.
  19. Hello, try again your problem should solved
  20. Hello, Check that your Windows is up to date. Also check that you have installed the required applications (especially SlimDX and VC++) (links in the README.txt file located in the WRobot folder). What about CPU/RAM usage ?
  21. Hello, try https://wrobot.eu/files/file/1966-free-wholesome-inventory-manager/
  22. Hello, Can you share your log file please https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ If you use a VPN/proxy try to disable it.
  23. Hello, maybe another running application on your computer uses this shortcut. Do you have any error about in your log ?
  24. Hello, You don't need VPN or proxy (it's even better to use your real IP). That can be useful if you get banned or when you bot in several accounts.
×
×
  • Create New...