Jump to content

Droidz

Administrators
  • Posts

    12437
  • Joined

  • Last visited

Everything posted by Droidz

  1. Do you have the same problem if you use the 'Relogger' application? You can try if you use only one account, in wow login screen to enable the option "remember account name", I think it should automatically open the correct realmlist.
  2. They are probably using a modified version of the game client. WRobot only supports the original client. You can try to download the default game client in another website and check if it works with your server.
  3. Hello, https://wrobot.eu/forums/topic/15188-work-on-ascension/
  4. An easy way that comes to my mind is: - Force the bot to ignore attacks with a RunCode step https://wrobot.eu/forums/topic/2681-snippets-codes-for-quest-profiles/?do=findComment&comment=13088&_rid=1 wManager.Wow.Helpers.Conditions.ForceIgnoreIsAttacked = true; - Add a step to go to the position where you want the bot to resume the fight (with a FollowPath quest or other). - Reactivate the fight with a RunCode step: wManager.Wow.Helpers.Conditions.ForceIgnoreIsAttacked = false; Repeat these steps until the end of the dungeon.
  5. Hello, in "Dev... tools" (tab "Tools", when you click on the button "All informations", towards the end of the result there is the name of the realm, it is not correct?
  6. Hello, Maybe WRobot is too fast, try increasing the latency (min/max) in the bot's advanced settings.
  7. You seem to have a DNS problem, test with https://1.1.1.1/
  8. Droidz

    Issue

    (you don't need to update the bot to get this new feature)
  9. 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
  10. 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.
  11. 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.
  12. 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#.
  13. 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
  14. 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?).
  15. 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?
  16. 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))
  17. 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.
  18. 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() { } }
  19. 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?
  20. 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)?
  21. Hello, In advanced general settings tab "Others" try to increment your the options "Min" and "Max" latency
  22. 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?
  23. 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, ...)
  24. 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.
×
×
  • Create New...