-
Posts
12559 -
Joined
-
Last visited
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Everything posted by Droidz
-
Could you please share the full log file of the session where you encountered the issue (with plugin activated)? You can find instructions on how to post your log file here: https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/
-
Hello, have you tested these two plugins ? https://wrobot.eu/forums/topic/15588-wrong-wow-language/#comment-69899 https://wrobot.eu/forums/topic/15477-i-need-help-with-my-fightclass-thought-lua-code/#comment-69403
-
Have you tried with a new installation of WRobot? Without deleting your current installation, download and install WRobot in a new folder, fill in only the flight form option and launch to see if it works, then try with your profile, and then your fight class.
-
Hello, I think your profile uses ground positions. Try using a profile that has flying positions. You can also remove the name of the ground mount from the bot's settings.
-
Hello, Could you please share the full log file of the session where you encountered the issue? You can find instructions on how to post your log file here: https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/
-
Hello, Could you please share the full log file of the session where you encountered the issue? You can find instructions on how to post your log file here: https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/
-
Hello, try https://wrobot.eu/forums/topic/15607-mount-in-fightclass/#comment-69926
-
Hello, wManager.Pulsator.Dispose(true);
-
Incorrect game version
Droidz replied to spejder's topic in WRobot for Wow The Burning Crusade - Help and support
Hello, you can found list of supported game versions here: https://wrobot.eu/supported-wow-versions/ -
WoW_7.3.5_26124 version not working for me.
Droidz replied to harbinger3's topic in WRobot for Wow Legion - Help and support
Hello, your problem should solved. -
And with this plugin https://wrobot.eu/forums/topic/15477-i-need-help-with-my-fightclass-thought-lua-code/?&_rid=1#findComment-69403 ?
-
Hello, your problem should sovled
-
Hi, try this plugin Main.cs : using wManager.Wow.Helpers; public class Main : wManager.Plugin.IPlugin { public void Initialize() { wManager.Events.OthersEvents.OnMount += (name, cancelable) => { MovementManager.StopMoveTo(); // or MovementManager.StopMove(); Lua.LuaDoString(@"RunMacroText(""/cast " + name + @""")"); Usefuls.WaitIsCasting(); cancelable.Cancel = true; }; } public void Dispose() { } public void Settings() { } } or https://wrobot.eu/forums/topic/12585-how-to-use-mount-with-item-id-in-mount-options/?&_rid=1#findComment-60315
-
Bot won't cast spells
Droidz replied to jaytriple111's topic in WRobot for Wow Vanilla - Help and support
And this plugin ? https://wrobot.eu/forums/topic/15477-i-need-help-with-my-fightclass-thought-lua-code/?&_rid=1#findComment-69403 -
Seeking help on the conditional statement of fight-class
Droidz replied to nfeiof22222's topic in Fight Classes assistance
in "Value" put only this code wManager.Wow.ObjectManager.ObjectManager.Target.CreatureTypeTarget == "Humanoid" -
Seeking help on the conditional statement of fight-class
Droidz replied to nfeiof22222's topic in Fight Classes assistance
Do you use an updated version of the bot ? Can you share the full log file please? How and where do you run this code? -
Seeking help on the conditional statement of fight-class
Droidz replied to nfeiof22222's topic in Fight Classes assistance
Hello, you can use if (wManager.Wow.ObjectManager.ObjectManager.Target.CreatureTypeTarget == "Humanoid") { // cast your spell here } -
Download Main.cs and put this file in the folder "WRobot\Plugins\" (you can rename it). Launch WRobot (or restart it) then go to the tab "Plugins" and enable it.
-
How can I tell the relogger stop profile, when bags is full
Droidz replied to gornov.12345's topic in General assistance
Hello, try this WRobot plugin : using System; using robotManager.Helpful; using wManager.Plugin; using wManager.Wow.Helpers; public class Main : IPlugin { private bool _isLaunched; public void Initialize() { _isLaunched = true; while (_isLaunched) { CheckBags(); } } private void CheckBags() { if (Conditions.InGameAndConnectedAndProductStartedNotInPause && !Conditions.IsAttackedAndCannotIgnore && Bag.GetContainerNumFreeSlots == 0) { Logging.Write("Bags are full, stopping profile."); wManager.Wow.Memory.WowMemory.CloseHookedProcess(); // Close game Environment.Exit(-20); // Exit code -20 stops relogger profile } } public void Dispose() { _isLaunched = false; } public void Settings() { Logging.Write("No settings available."); } } Main.cs