Jump to content

Matenia

Elite user
  • Posts

    2232
  • Joined

  • Last visited

Everything posted by Matenia

  1. Is your best bet. It's open source so you can add new tables to it.
  2. @Droidz I think the method Battleground.BattlegroundIsStarted() is bugged in vanilla. You check for Buff IDs that only exist in TBC and onwards. In vanilla, you need to check chat messages for this "The battle for %s has begun" -- where %s is 'Warsong Gulch', 'Arathi Basin' or 'Alterac Valley' Oh you can maybe find a value in memory for when the gates have opened. It might be a game object respawning or changing animation status.
  3. You are either missing .Net Framework (minimum 4.6) or did not follow installation instructions for HMP
  4. No, if it's not working contact Rocketr
  5. THen your profile changes it and you need to talk to the creator
  6. 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.
  7. 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);
  8. Var.SetVar("startTime", Datetime.Now);
  9. 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.
  10. 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
  11. Turn off training in the settings, maybe?
  12. Unstable connection, probably your IP changing or the connection to the Auth server is just dying
  13. wRobot is discontinued for retail
  14. 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.
  15. Oh honey... return ObjectManager.Pet.Name == "Wolf"
  16. 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
  17. Servers detect Lua execution, therefore you can't use addons with wRobot. Stop using addons with wRobot.
  18. Read my comment, you can fix it yourself. You need level 30 to do the water quest and have astral recall
  19. ObjectManager.Me.Target = ObjectManager.Pet.Guid; SpellManager.CastSpellByNameOn("Rejuventation", "pet");
  20. 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.
  21. Turn your sound off. It has to check action bar for skill usability
  22. Has nothing to do with the fightclass, pleas familiarize yourself with wRobot first. Fightclasses are just the rotation.
  23. Yes, it absolutely does. If your game freezes or crashes, make sure you use the English client and try turning off frame lock.
  24. 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.
×
×
  • Create New...