Jump to content

Matenia

Elite user
  • Posts

    2228
  • Joined

  • Last visited

Everything posted by Matenia

  1. THen your profile changes it and you need to talk to the creator
  2. It sprints in stealth to approach enemies It pops evasion on 2 enemies in melee range instantly or when you go low HP vs a single enemy If you wear a MH dagger, it does gouge -> backstab No Ambush, it will do so automatically if you have a dagger, don't know Cheap Shot and are behind the target on pull Rapture is a shit skill for leveling and I don't make PvE rotations.
  3. It's not a bug. wRobot executes Lua code in a secure environment, which no "addon" should be able to do. All addons can only execute codes through the macro API. A more simple version of this used to be known as a Lua unlocker. Now that servers found a way to execute code in your WoW client (like any abitrary Lua code they want), wRobot needs to intercept this to taint the environment again to prevent detection by the server (tainted = insecure). You can just execute Lua code from within wRobot, you don't need an addon to provide additional functionality (and if you need a helper function it provides, you can move that to the Lua code you execute within wRobot). If you aren't interested in executing secure Lua code (just stuff an addon could do to begin with), you can use these options: Lua.SecureLuaCall = false; Lua.LuaDoString(string command, bool notInGameMode, bool ignoreSecureLuaCallOption);
  4. Lots of people reported bans on discord and Whitekidney bragged about a bot detection framework. This is recent (last 2-3 days). Once we figure out what method they use, we can work around it.
  5. I agree it probably is something like this. Now that northdale somehow catches bots, it seems more likely, because with vanilla warden they definitely can't detect wrobot
  6. Turn off training in the settings, maybe?
  7. Unstable connection, probably your IP changing or the connection to the Auth server is just dying
  8. wRobot is discontinued for retail
  9. That code returns a boolean. Your code, is literally if (true) then return true if (false) then return false Because whatever is in brackets gets evaluated to a boolean first. So you might as well just return the expression that evaluates to a boolean.
  10. Oh honey... return ObjectManager.Pet.Name == "Wolf"
  11. Please familiarize yourself with wRobot first. Fightclasses can be used in wRotation, but this isn't a script that does your rotation in raids, it's for leveling
  12. Servers detect Lua execution, therefore you can't use addons with wRobot. Stop using addons with wRobot.
  13. Read my comment, you can fix it yourself. You need level 30 to do the water quest and have astral recall
  14. ObjectManager.Me.Target = ObjectManager.Pet.Guid; SpellManager.CastSpellByNameOn("Rejuventation", "pet");
  15. Because by the time you would need to document the entire API, any developer worth his salt would've already figured it out. I agree that some things like event-handling could be documented, but most method calls are self-explanatory.
  16. Turn your sound off. It has to check action bar for skill usability
  17. Has nothing to do with the fightclass, pleas familiarize yourself with wRobot first. Fightclasses are just the rotation.
  18. Yes, it absolutely does. If your game freezes or crashes, make sure you use the English client and try turning off frame lock.
  19. The screenshot is an example of my plugin (because the important setting is the same). However, you're probably using the free demo attached to the forum post because you didn't follow the instructions Rocketr gave you during purchase. Check your email.
  20. So they have a system that monitors user actions and it can cause false positives. This has nothing to do with injection though. Warden instructs the client to execute some Lua code or instructs the client do check a certain address in memory for its value, etc. It can its own process for modules (DLLs injected by external programs) as well. These methods do NOT yield false positives. If they built some server side detection that can be triggered by mass crafting items, it's not warden. It's a system that observes how frequently players do some things, how much time they allow between actions, etc and then flagging accounts that seem to not behave like a human enough. A system will that is less reliable but can catch ANY bot. So now it is up to us to find out how exactly they do it and develop some code that works around this by creating pauses for wRobot, maybe slows down combat rotation, accepting/turning in quests etc.
  21. It's possible they have trained a machine learning algorithm to recognize bot behavior. But if you can spot injection into a game, there are no false positives. These things are very clear. So it's likely bot behavior is somehow triggering this. So randomization or some code to appear more human in general might throw off whatever they're using.
  22. Did you follow the instructions? You need to run the plugin on all characters with one set to leader etc. I mean, I haven't recompiled it in a while, so I'll do that quickly to be sure it doesn't throw any errors.
×
×
  • Create New...