Jump to content

All Activity

This stream auto-updates

  1. Past hour
  2. Today
  3. Yesterday
  4. Last week
  5. At first, he sees them, but then he stops seeing them.
  6. https://firestorm-servers.com/en
  7. Hello, Could you share the versions/builds (of the game) that your servers are using?
  8. Hello, What do you mean by "trying to log out" exactly? Is WoW going AFK and showing the disconnect dialog because the bot isn't sending any input? If that's the case, try enabling "Use Lua to move" in the general settings. Can you also share a log file (from the Logs folder) so I can see what's going on?
  9. Hello, Can you share a log file (from the Logs folder) showing the issue? It would help see what's happening when the bot says your mining level is too low. Also, which exact WoW client version is this (check the game login screen, bottom left)? And which server? For the ground mount running in circles - are you using "Use Lua to move" in the general settings? On some private servers CTM (click to move) behaves differently and can cause circular movement.
  10. Hello, The GetReactionTowards NullReferenceException typically happens on private servers that use custom NPCs with faction template IDs not present in the bot's internal database. The bot can't determine if the mob is hostile or friendly, so it just skips it.
  11. Hello, You can do this with a C# plugin. Save this as a .cs file in your Plugins folder (no tested): using System; using System.Collections.Generic; using robotManager.Helpful; using wManager.Wow.Helpers; using wManager.Wow.ObjectManager; using Math = System.Math; public class Main : wManager.Plugin.IPlugin { private bool _isRunning; public void Initialize() { _isRunning = true; EventsLuaWithArgs.OnEventsLuaStringWithArgs += OnCombatLogEvent; Logging.Write("[MoveOnSpell] Started."); } public void Dispose() { _isRunning = false; EventsLuaWithArgs.OnEventsLuaStringWithArgs -= OnCombatLogEvent; Logging.Write("[MoveOnSpell] Stopped."); } public void Settings() { } private void OnCombatLogEvent(string eventid, List<string> args) { if (eventid != "COMBAT_LOG_EVENT_UNFILTERED" || args.Count < 9) return; string subEvent = args[1]; string spellId = args[8]; if (subEvent == "SPELL_SUMMON" && spellId == "95074") { Logging.Write("[MoveOnSpell] Detected spell 95074, moving away!"); var me = ObjectManager.Me.Position; float angle = (float)(new Random().NextDouble() * Math.PI * 2); float dist = 10f; var safePos = new Vector3( me.X + (float)Math.Cos(angle) * dist, me.Y + (float)Math.Sin(angle) * dist, me.Z ); MovementManager.Go(new List<Vector3> { safePos }); } } } This listens to combat log events and when it sees SPELL_SUMMON with spell ID 95074, it moves 10 yards in a random direction. You can adjust the distance if needed. If the random direction sometimes sends you into a wall or off a cliff, you could replace the random angle with a backward movement (opposite of your facing direction) instead.
  12. is there an eta?
  13. Hello, Been using for years and never had this issue. No update or material chance involved. I disabled all plug/addon. Nothing change, after I start the bot and it play for around 30 to a minute then wrobot close itself. Need help on this. Thank you, Edit : Was on my side, fixed.
  14. I did not get any responses in the other section, so im shooting wider. For any of the moderation team, feel free to delete the previous post, I was not allowed to do so. Hey, so I am playing on a private server (wotlk 3.5.5a) and one of its things is, after youve been in combat for a while, your character is forced to cast a spell (not in your spellbook) that drops an aoe that kills you, if you do not move out of it. ive been trying to find a way to do this, but im very new to wrobot and im pretty sure its possible, I have a lua snippet that detects the spell, but i dont know how to make my character move once it happens. Any help is much appriciated. if eventType == "SPELL_SUMMON" and spellId == 95074 then something to move x yards end
  15. Earlier
  16. He stops seeing mobs and just runs along the route [E] 16:35:34 - GetReactionTowards(WoWFactionTemplate otherFaction): System.NullReferenceException: Ссылка на объект не указывает на экземпляр объекта. в wManager.Wow.Helpers.WoWFactionTemplate.GetReactionTowards(WoWFactionTemplate otherFaction)
  17. weirldy enough (not a problem with other characters) when I try to fix it by saying the bot can only use a ground mount the ground mount starts running circles tried on different programs and use lua to move is enabled
  18. When I use my druid to fly and gather the bot brings it correctly to a node, exits flight form but when I try to mine it says mining lvl too low? This is not the case and when I mine manually I don't have this problem.
  19. hi, you need to use proxy or vpn for wrobot
  20. hi, first time i see this error for 10 years. [D] 13:51:34 - GetRequest(string url="https://auth.wrobot.eu/o", string data=""): System.Net.WebException: Время ожидания операции истекло в System.Net.HttpWebRequest.GetResponse() --- Конец трассировка стека из предыдущего расположения, где возникло исключение --- в  .(Exception ) в  .(Object ) в  .(MethodBase , Boolean ) в  .( ) в  . (  , ) в  .() в  .(Boolean ) [E] 13:54:39 - System.Char[] [E] 13:46:57 - CAS: System.Threading.Tasks.TaskCanceledException: Отменена задача. в System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) в System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) в System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.GetResult() --- Конец трассировка стека из предыдущего расположения, где возникло исключение --- в  .(Exception ) в  .(Object ) в  .(MethodBase , Boolean ) в  . (  , ) в  .() в  .(Boolean ) [D] 13:46:57 - GetRequest(string url="https://download.wrobot.eu/wrobotvanilla/isOnline.php", string data=""): System.Net.WebException: Время ожидания операции истекло в System.Net.HttpWebRequest.GetResponse() --- Конец трассировка стека из предыдущего расположения, где возникло исключение --- в  .(Exception ) в  .(Object ) в  .(MethodBase , Boolean ) в  .( ) в  . (  , ) в  .() в  .(Boolean ) Also too many errors about pathing server last time [E] 13:10:33 - GetRequest: http://pathfindervanilla.wrobot.eu/?IsOnline=1 -> System.Threading.Tasks.TaskCanceledException: Отменена задача. в System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) в System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) в robotManager.Helpful.Others..MoveNext()
  21. any estimation on when TWW will be supported now that Midnight is out?
  22. As title says Bot constantly trying to log out, tried many different things like different fight classes, questers, grinders, made few my own, tried the lua script on and off for walking and click to move and so on and so on. Does this bot actually work on any server nowdays ? I used to use wrobot few years back but now after testing it on multiple vanilla and tbc servers i cant seem to get it working anywhere
  23. is this a profile for the wotlk daily quests?
  24. I have an issue here, i am doing the simple grinder version, so ive tried to both start recording the path inside and outside the dungeon, but stil after the first run my toon runs in and then directly out over and over again! what am i doing wrong? 😮 I also have this issue mine kills 1 npc then runs back out again
  25. Yes. The free use is over. If you want to use it, you need to pay for it.
  26. I'm back after six months of absence. The bot isn't working on the Turtle again, am I right? I launched a Warlock and a Warrior yesterday, and the abilities aren't working.
  27. hold on to your butt
  1. Load more activity
×
×
  • Create New...