Everything posted by Droidz
-
Quest Order Editor + Quest Editor - Arrows to move quests up/down in list
yes in all versions but you need to wait next update.
-
create new location hearthstone
Hello, use lua code to click on button: https://wrobot.eu/forums/topic/1689-useful-scripts/?do=findComment&comment=8447
-
3.3.5a bot unable to relog (bug in reloger)
You probably use too old version of WRobot
-
how to stop bot when Game master change my character size ?
Hello, try plugin: using System; using System.Threading; using robotManager.Helpful; using robotManager.Products; using wManager.Plugin; using wManager.Wow.Helpers; using wManager.Wow.ObjectManager; using Timer = robotManager.Helpful.Timer; public class Main : IPlugin { private bool _isLaunched; public void Initialize() { _isLaunched = true; var t = new Timer(1000 * 1); // 1 sec while (_isLaunched && Products.IsStarted) { try { if (t.IsReady && Conditions.InGameAndConnectedAndProductStartedNotInPause) { t.Reset(); if (ObjectManager.Me.Scale != 1) { Products.ProductStop(); // or close: Environment.Exit(0); Logging.Write("Size change."); } } } catch (Exception e) { Logging.WriteError("[Size change]: " + e); } Thread.Sleep(150); } } public void Dispose() { _isLaunched = false; } public void Settings() { } }
-
Why is not there a Wrobot BfA bot?
Hello, I'll release BfA bot after Shadowlands release
-
Quest Order Editor + Quest Editor - Arrows to move quests up/down in list
Hey, In next update you will be hable to use shortcut ctrl+ and ctrl- (to up/down step). To wait when you mouse click on bouton you can after use key "enter" to avoid to spam mouse click
-
Questing Profile for SFK, Doesnt repeat Run Code>
Hello, try to add it to the list of objects to harvest: wManager.wManagerSetting.CurrentSetting.ListHarvest.Add(18901);
-
Clear log code
Hello, You cannot clear log from external code. To track log use "robotManager.Events.LoggingEvents.OnAddLog" like here https://wrobot.eu/forums/topic/9443-totown-unable-to-reach-the-vendor-blacklist-it-120-minutes/?do=findComment&comment=43952
-
3.3.5a bot unable to relog (bug in reloger)
Wait more time, relogger wil relanch wow (if you use default settings)
-
cant log in
Hello, Install required software (step 7) https://wrobot.eu/forums/topic/1381-repairinstall-wrobot/?tab=comments#comment-966 Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
-
How to clear blacklisted mobs GUID without clearing all blacklisted zones
hey, change in wManagerSetting field "BlacklistUnitDefaultTimeMs"
-
Unable to launch bot on clicking button
try to run it to create shortcut Create nofakecallstack Shortcut.bat
-
Unable to launch bot on clicking button
I think you have badly used argument, you should have line like "-nofakecallstack arg activated." in your log file. Try also to update Windows. But it is probably problem with windows install
-
wrobot keep frozing at new update
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/ ).
-
Unable to launch bot on clicking button
-
Unable to launch bot on clicking button
Hello, try to run WRobot with shortcut "WRobot (DX hook)"
-
How do i humanize my bot
Hello, he has option for jump and smooth path in advanced general settings
-
Dungeon path finding problem
To close wow process use wManager.Wow.Memory.WowMemory.Memory.GetProcess().Kill();
-
Bot did not Fish in route
Hello, did you read the log file to see if it says what the bot does?
-
Dungeon path finding problem
use code like wManager.Wow.Class.QuestClass quest; var r = wManager.Wow.Helpers.Quest.QuesterCurrentContext.QuestsClasses.TryGetValue("TEST", out quest); if (r && quest != null) { quest.Reset(); } (replace TEST by name of you quest) But it is more easy to use "Reset" in quest order editor
-
Trouble with bot's constantly running to town.
there is a good chance that this problem is caused by a WRobot plugin (or fightclass / profile)
-
How change profile route ?
Hello, open profile with profile editor (tab product settings), you can activate "radar 3d" tab "Map" to help you
-
upgrade to 3 Sessions
Hello, you can found upgrade invoice here: https://wrobot.eu/clients/orders/
-
Bot not working in Blackwing Descent
Try to disable all wow addons, if this works you can try to enable one per one to found the bad addon(s)
-
Dungeon path finding problem
call method Reset() of the quest class