Jump to content

Matenia

Elite user
  • Posts

    2226
  • Joined

  • Last visited

Everything posted by Matenia

  1. Hi, you don't have a wrobot license ?
  2. Lol no, there are no good BfA servers and there won't be any for thenext 5 years. But more importantly, Firestorm has always been known for low quality cashgrab bugfests. They're literally some of the worst servers on the scene. Worse than Freakz and Wowcircle combined. Don't waste your time on BfA. If you want to support other expansions, look for Cata and MoP, as there are some decent servers for those.
  3. Because wrobot isn't inside the client directly and things like reading Lua events are done frame by frame on another thread. So if there's a 50-100ms delay to even receive the event and then more delay to accept your requests, you won't be able to counter instant spells with instant spells. If you're capable of accessing WoW directly in memory (including Lua events and such info as spell targets - which to my knowledge the client has no info on, except maybe patch 5.x), you don't really need wrobot. You'll be able to do a lot but not in the same way as if you were in-process injected
  4. You can check owners. Either use an IDE or check documentation on what Auras on enemy provide in terms of attributes/methods
  5. You're not going to get rotations the way that you want. Not unless you write a very sophisticated profile - otherwise you will run into problems with performance. Also more likely than not, reacting to combat log events to death instant spells etc is not going to work.
  6. No, he can't. He was basically reselling something he stole from someone else as his own. He does not have the knowledge to make modifications.
  7. No, it doesn't unlock Lua completely.
  8. If there are no mailboxes in your profile/database, it cannot send mail. HMP tries to work around this by scan for the mailbox, but if it's not visible, it relies on wrobot's NPCDB, which is what wrobot relies on internally as well
  9. Keine Ahnung woran das liegt. Der Error hat aber nichts damit zu tun, der wird abgefangen und es wird nochmal probiert. Es lässt sich leider nicht anders machen. Eventuell hat es was mit dem auto-updater/restarter vom Profil zu tun. Support nur auf Discord.
  10. It only works on the English client and it's possible that your cache is mixed from playing servers that send English and German item names.
  11. Der Bot ist nicht in der Lage vollautomatisch essen zu kaufen beim Vendor. Probier Automaton. Wenn dort alles geht ist dein Profil das Problem. Sonst guck, dass wrobot als admin gestartet wird und die Rechte hat inden Ordner zu schreiben
  12. It's Lua.RunMacroText("/uninvite " + playerName) or Lua.LuaDoString("RunMacroText('/uninvite " +playerName + "')")
  13. Du musst wahrscheinlich die Profile im Quester Editor verändern, da sie aktiv C# benutzen um eine "sensible" Voreinstellung von Settings für dich zu treffen. Generell sind diese sehr alten, nicht mehr gepflegten, Profile nicht zu empfehlen. Mach lieber deine eigenen oder such dir welche aus, die etwas neuer sind und/oder kontaktier die Macher wenn du noch Probleme hast. Da wir kein Logfile von dir haben könnte es auch sein, dass du wild irgendwelche Plugins benutzt, die du nicht verstehst und diese zum Verhalten führen, was dich stört.
  14. You bought it? Weird, because you don't have a license.
  15. UnitBuff doesn't allow for regex afaik. Just iterate all buffs and use string.match or w/e the Lua function is on each name to do a partial match. In Lua ".." concatenates 2 strings. If you want to use a "." in regex without it representing any character, you can escape it using "\"
  16. Either ban wave or you got your accounts linked somehow. Many ways you can get your accounts linked ?
  17. You probably got flagged for multi botting and they're onto you now. Warmane itself doesn't detect wrobot, but they do detect patterns pretty reliably nowadays. So some of the code OP is using likely triggers something. Could be the quest order or fightclass, but more likely than not you just linked your accounts because you're not creating them inside a clean VM with a clean IP.
  18. Warmane doesn't detect wrobot. However, if you get flagged for multibotting once, they have some sort of system to catch all your accounts at once, even if you're behind a proxy/VPN/VM iirc. Most private servers have this now, from what I remember.
  19. he's not using any public profiles and also currently only running battlegrounds iirc
  20. Trial doesn't use meshes and hasn't since like 2016 when wrobot was cracked briefly - which is also the only version still requiring to download meshes.
  21. TraceLine.TraceLineGo returns false when there is no collision and true if there is a condition. You need to negate the condition. You need to use hitflags WMO for spells.
  22. No offense to Droidz, but it's pretty much laziness. He'd have to add everything for every expansion and then maintain it manually if pathfinding for the expansion ever changes. I do pretty much the same thing for some connections in HMP. A few Droidz added after being given the info so I could remove them. Others I still struggle with due to large distances. It's really not as reliable as I'd like it to be.
  23. You likely didn't install it correctly on one. SUpport on Discord only
  24. I just want to say, that I do not use table.unpack in the fightclass and I am getting no freezes, hence why I haven't been able to reproduce this. I'm also 99% certain that the lua error is not related to the freezes, because apparently a plugin doing ReloadUI() is not fixing it - so it isn't a GC issue
  25. The API docs are outdated or incorrect and that sentence is a reference to TBC, where you couldn't see ANY durations (no timeLeft either) if it's not casted by you. I thought it was pretty common knowledge that in WotLK you can see all durations at all times. This is exactly what the default UI does - how do you think it draws cooldown frames or addons like OmniCC wrap timers over them? So to take my original post from weeks ago: local _, _, _, _, _, duration, expiration = UnitDebuff("player", "Polymorph") local timeLeft = expiration - GetTime() -- timeLeft in seconds local timeAlreadyPassed = duration - timeLeft -- time the debuff has been applied to the target in seconds if (timeAlreadyPassed > 2) then CastSpellByName('Simple Logic') end
×
×
  • Create New...