Everything posted by Droidz
-
Pause/Unpause when an error is encountered in the "Waypoint timed out" log
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() { } }
-
C code to detect multiple buffs by ID
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?
-
Key not working for version 7.3.5 26365
Hello, it's done
-
not working on new server "felsong"
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)?
-
Client and server out of sync
Hello, In advanced general settings tab "Others" try to increment your the options "Min" and "Max" latency
-
Bots crashing randomly
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?
-
C code to detect multiple buffs by ID
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, ...)
-
Accurate window hang check in WoW
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.
-
wrobot legion not working due to different build
Hello, you can find some builds here : https://wrobot.eu/forums/topic/2018-wrobot-old-versions/ . None are compatible?
-
Boat issue on turtle wow
You can get in game objects info with "dev... tools" (tab "Tools")
-
Error license key
Hello, your problem should solved
-
Boat issue on turtle wow
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).
-
Automaton mode -- town selection
Hello, you can add npc (repair/vendor) in the NPC DB (tab "Tools")
-
Need help -- [Security] Pathfinder server seem down
Yes connections from China are not always stable. Using a VPN can help (try free or trial versions to find the best one).
-
BOT Keep crushing after I click stop
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.
-
Need help -- [Security] Pathfinder server seem down
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/ ).
-
Lua Script adding cool down timer
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.
-
Error when starting Quester
This profile is protected by the creator. You need to contact him.
-
Error when starting Quester
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.
-
License Key is not working for Legion 7.3.5 (26972)
Hello, try again your problem should solved
-
OS broken after 2-8h of bot use (0xc0000142)
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 ?
-
Otomatik Gear, pls pls!
Hello, try https://wrobot.eu/files/file/1966-free-wholesome-inventory-manager/
-
连接不上
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.
-
problem adding path point
Hello, maybe another running application on your computer uses this shortcut. Do you have any error about in your log ?
-
Does this bot need Proxy
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.