Everything posted by Droidz
-
only closes the bot
Hello, wManager.Pulsator.Dispose(true);
-
1.12.1 battlegrounder doesn't attack and only ever moves about 8 yards before stopping for long periods of time.
Hello, can you share a few log files of bugged sessions?
-
Incorrect game version
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.
Hello, your problem should solved.
-
Wrong wow language?
And with this plugin https://wrobot.eu/forums/topic/15477-i-need-help-with-my-fightclass-thought-lua-code/?&_rid=1#findComment-69403 ?
-
Wow 7.3.5 26124 licence key
Hello, your problem should sovled
-
Mount in fightclass
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
-
Error when trying to purchase bot in shop
Hello, your issue seems to be resolved according to the logs I have on the admin panel.
-
Bot won't cast spells
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
in "Value" put only this code wManager.Wow.ObjectManager.ObjectManager.Target.CreatureTypeTarget == "Humanoid"
-
Seeking help on the conditional statement of fight-class
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?
-
(HELP!!) Version 7.3.5 (26124) doesn't work for me
Try to deactivate all WOW addons. And also your antivirus.
-
Seeking help on the conditional statement of fight-class
Hello, you can use if (wManager.Wow.ObjectManager.ObjectManager.Target.CreatureTypeTarget == "Humanoid") { // cast your spell here }
-
Wrong wow language?
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.
-
(HELP!!) Version 7.3.5 (26124) doesn't work for me
Hello, can you share few log files of bot sessions on this server. (look in the folder "Logs". Same problem with product "Automaton" ?
-
License Key is not working for Legion 7.3.5 (26124)
Hello, the problem should sovled
-
How can I tell the relogger stop profile, when bags is full
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
- License key not working
-
About how to use offmesh in scripts
To add offmesh Connectionsin your profile your should use "Easy profiles creator" (tab "Product settings" > "Tools" menu > "OffMesh Connections". You can also add it in the tab "Tools" > "OFFMESH CONNECTIONS" (this option will fix path for all products). https://wrobot.eu/forums/topic/5283-offmesh-connections/
-
About how to use offmesh in scripts
Hello, try to use a lower value in "Cost per yard" and activate the option "Can be used even when path success".
-
Bot won't cast spells
- Wrong wow language?
Hello, try this plugin : using System.Linq; using wManager.Wow.Helpers; public class Main : wManager.Plugin.IPlugin { public void Initialize() { robotManager.Events.Events.OnCustomEvent += (eventName, args, cancelEvent) => { try { if (eventName =="SpellManager.CastSpellByNameOn" && args != null && args.Length == 2 && args[0] != null && args[0] is string && args[1] != null && args[1] is string) { var spellName = (string)args[0]; var luaUnitId = (string)args[1]; var spell = SpellManager.SpellBook().FirstOrDefault(s => s.NameInGame == spellName); if (spell != null) { var englishSpellName = spell.Name; if (!string.IsNullOrWhiteSpace(englishSpellName)) { Lua.LuaDoString(string.Format("CastSpellByName('{0}', '{1}');", englishSpellName.Replace("'", @"\'"), luaUnitId.Replace("'", @"\'"))); cancelEvent.Cancel = true; } } } } catch{} }; } public void Dispose() { } public void Settings() { } } Main.cs- Grinder profile
Hello, yes. Use https://wrobot.eu/forums/topic/2202-profile-positions-and-action-column/ With the action : c#: robotManager.Products.Products.ProductStop();- Making the bot buy PvP gear with Battlegrounder
Hello, in advanced general settings, use "Edit list of items at buy"- Survival Hunter Explosive Shot Priority every 6 seconds or when ready
Hello, you can use https://learn.microsoft.com/en-us/dotnet/api/system.diagnostics.stopwatch?view=net-9.0 or WRobot Timer https://wrobot.eu/byme/doc/html/AllMembers.T-robotManager.Helpful.Timer.htm ( https://github.com/droidzfr/WRobot_Packages/blob/60ae2bf88708e27e1b461244dcc1cbac17485eb4/vanilla/FightClass/Mage.cs#L159 ) - Wrong wow language?