-
Posts
12581 -
Joined
-
Last visited
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Posts posted by Droidz
-
-
-
in "Value" put only this code
wManager.Wow.ObjectManager.ObjectManager.Target.CreatureTypeTarget == "Humanoid"
-
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?
-
Try to deactivate all WOW addons. And also your antivirus.
-
-
-
Hello, can you share few log files of bot sessions on this server. (look in the folder "Logs". Same problem with product "Automaton" ?
-
-
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."); } }
- nax and gornov.12345
-
2
-
Hello, you problem should solved
-
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/ -
Hello, try to use a lower value in "Cost per yard" and activate the option "Can be used even when path success".
-
-
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() { } }
-
Hello, yes.
Use https://wrobot.eu/forums/topic/2202-profile-positions-and-action-column/
With the action :
c#: robotManager.Products.Products.ProductStop();
-
Hello, in advanced general settings, use "Edit list of items at buy"
-
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 )
-
Hello, WRobot works only on old Wow versions (private servers) https://wrobot.eu/supported-wow-versions/
-
Hello, do you get this problem in specific zones?
-
Hello, try to launch the bot with the shortcut "WRobot (DX hook)".
If your problem is not solved, can you share your log file please (you can found it in the folder "Logs")
-
But the refund should appear in your bank account now. (5 to 10 days https://docs.stripe.com/refunds )
-
-
Hello,
Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ). -
Error when trying to purchase bot in shop
in WRobot for Wow The Burning Crusade - Help and support
Posted
Hello, your issue seems to be resolved according to the logs I have on the admin panel.