Jump to content

Droidz

Administrators
  • Posts

    12431
  • Joined

  • Last visited

Everything posted by Droidz

  1. You seem to have a DNS problem, test with https://1.1.1.1/
  2. Droidz

    Issue

    (you don't need to update the bot to get this new feature)
  3. Hi, I just added the possibility to execute code when starting the bot (code executed after connecting to the authentication server). The file must be named 'autorun.cs' and be in the 'Plugins' folder. The static method 'Main.Autorun()' is called after compilation. using System.Windows.Forms; public class Main { public static void Autorun() { MessageBox.Show("Hello World!"); } } autorun.cs
  4. Hello, Using a VPN or proxy can solve the problem. But I'm sorry I don't currently have a 100% working solution, you're not the only Chinese user to encounter this problem.
  5. Hello, Configure the bot correctly (for sale), add the sellers/repairer of the area and run the code (from the quest profile): wManager.Wow.Bot.States.ToTown.ForceToTown = true; It will force the bot to go to the seller.
  6. Hello, With the Gatherer profile you can (in the product settings) force the bot to return to the previous profile position. But, to make a more complete profile it is necessary to use the quester (or a custom profile). But it requires very good knowledge of WRobot, Lua and C#.
  7. Hello, you can found one solution in this profile : https://github.com/droidzfr/WRobot_Packages/blob/e495ad6e09c91ec8291018192ed37799f7851690/Old paid files/Maylu/1-60 tbc quest maylu 1.1.xml#L79
  8. Hello, I don't know where you got this code, but it can't work, it's missing a lot of methods (did you use chatgpt?).
  9. Hello, Do you have information in the log? Do you have any sellers in your 'NPC DB' (or in the profile)? Are the settings correct?
  10. Use code without "return" and the ";" ObjectManager.GetObjectWoWUnit().Count(u => u.IsAlive && u.MaxHealth > 500 && ((ObjectManager.Me.TargetObject.Position.DistanceTo2D(u.Position) - ObjectManager.Me.TargetObject.CombatReach) <= 15) && u.IsAttackable && !TraceLine.TraceLineGo(u.Position))
  11. Hello, Check the 'Logs' folder to see if there are any errors in the logs. Try downloading the game client from another site and replacing the Wow.exe file from your current installation with the new one.
  12. 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() { } }
  13. 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?
  14. 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)?
  15. Hello, In advanced general settings tab "Others" try to increment your the options "Min" and "Max" latency
  16. 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?
  17. 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, ...)
  18. 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.
  19. Hello, you can find some builds here : https://wrobot.eu/forums/topic/2018-wrobot-old-versions/ . None are compatible?
  20. You can get in game objects info with "dev... tools" (tab "Tools")
  21. Hello, your problem should solved
  22. 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).
  23. Hello, you can add npc (repair/vendor) in the NPC DB (tab "Tools")
  24. Yes connections from China are not always stable. Using a VPN can help (try free or trial versions to find the best one).
×
×
  • Create New...