Everything posted by Droidz
-
WRobot does not start
Hello, If you have the possibility it would be good to try with a VPN activated.
-
Add condition bug and solution
Hello, I tested, condition is converted correctly in c# : ObjectManager.Target.BuffTimeLeft("Lacerate") <= 10 In "Buff name" try to put spell id.
-
Grinder and resetting instance
Did you reset the instance with a plugin? If yes, try adding the code into the plugin. But as Matenia says, it will be complicated to have a stable profile with the grinder/gatherer product.
-
Grinder and resetting instance
Hello, I think the bot is trying to reach a position that is in the instance while it is outside the instance, check if your profile path doesn't have any extra positions. You can try to run this c# code when you reset your instance : wManager.Wow.Helpers.MovementManager.StopMove(); Or try to restart product new System.Threading.Thread(() => robotManager.Products.Products.ProductRestart()).Start();
-
Farming de diamant noir parfait dans stratholme sous wotlk
Salut, Tout est possible, mais créer un profil qui fonctionne correctement dans un donjon est compliqué et requis de bonnes connaissances (en WRobot, en Wow, en lua et en c#). Le mieux est de faire un profil de quête : https://wrobot.eu/forums/topic/3552-dungeon-profile-creation-tutorial-video/ Le plus simple et d'utiliser un profil de grinder ou gatherer et de le compléter avec des plugins et réglages WRobot : https://wrobot.eu/forums/topic/1925-sample-dungeon-profile/ Pour filtrer les loots le plus simple est d"utiliser un addon Wow (certains font ça très bien), sinon il est toujours possible de créer un plugin ou d'exécuter du code Lua depuis le profil.
-
Wrobot does't press keybind from " my macros" setting
Hello, Prefer to add it to your fightclass, or use a plugin like : using robotManager.Helpful; using System.Threading; using wManager.Wow.Helpers; public class AutoPressKey : wManager.Plugin.IPlugin { private bool _isRunning; public void Initialize() { _isRunning = true; PressKeyThread(); } public void Dispose() { _isRunning = false; } private void PressKeyThread() { while (_isRunning) { if (Conditions.InGameAndConnected) { Keyboard.PressKey(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, "1"); } Thread.Sleep(1000); } } public void Settings(){} }
-
Want to come back but all the time there is problem with pathfinding server
Hello, You have many game add-ons activated, that can cause problems (but I doubt that it's the cause of your problem). The problem probably comes from your internet connection. From certain countries, for reasons beyond my control, the connection is not always stable (depending on the users and the periods). Try using a VPN.
-
Want to come back but all the time there is problem with pathfinding server
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/ ).
-
Randomly stop moving in bg
Hello, try to download again your game client (not on your server website). Check if your figthclass is updated.
-
Crash Error 3.3.5a
Hello, Do you use unmodified game client? How long do you have this problem? Can you share bot log files.
-
How to Encrypt AccountEmail and AccountPassword?
Hello, You can use the same settings file on several machines if you use a static encryption key : https://wrobot.eu/byme/doc/html/F-robotManager.robotManagerGlobalSetting.ForceStaticEncryptKey.htm (edit xml file "WRobot\Settings\RobotManagerGlobalSetting.xml")
-
Bot stucks
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/ ).
-
Strange errors
Hello, I think your quest profile is trying to update this, but can't because the update server is offline.
- Account Upgrade
-
New Dragonflight Firestorm server, anyone tested yet?
Hello, I'll add Dragonflight support when the officials servers will no longer propose this version.
-
Game Crashing
Hello, try with unmodified game client (download game on another website, don't use the version provided by your server). If your problem is not solved, can you share a few log files.
-
Game Crashing
Hello, maybe it's a fightclass problem, try without fightclass. Can you share log files of bugged session?
-
switch tab in wrobot's UI
Hello, you can go to "Product settings" tab with robotManager.Products.Products.ProductNeedSettings(); but you can't back to map tab.
-
help
- help
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/ ).- Stop WRobot Enabiling "Use LUA to Move" (?)
Hello, try to disable your antivirus, or close the programs like teamviewer. WRobot actives this option when it can't simulate the keyboard keys.- Skip the Quests order Turning step if there is no quest item in the bag
Hello Put the 'pickup' step between an 'if' step (with in 'Action parameter' the code ItemsManager.HasItemById(1234) ) and a step 'endif'. replace 1234 by your item id- [BSOD] on startup
Hello, it's because you haven't downloaded WRobot on this website. Try with official trial version, your problem will be solved.- load c# code from different file
Hello, If you give WRobot a .cs file, you cannot use newer C# features (like 'using MyNamespace;'). To use these new features, give compiled files to WRobot (dll). 'public class Main: ICustomClass' must not have a namespace for WRobot to find the class. For example, you can look at this code to see how to separate your code into several classes : https://wrobot.eu/forums/topic/11961-fightclass-framework-for-243335a-and-more/- WRobot Stuck on "Server Connection..."
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/ ). - help