
Matenia
Elite user-
Posts
2232 -
Joined
-
Last visited
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Everything posted by Matenia
-
Is your best bet. It's open source so you can add new tables to it.
-
@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.
-
You are either missing .Net Framework (minimum 4.6) or did not follow installation instructions for HMP
-
-
THen your profile changes it and you need to talk to the creator
-
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.
-
WRobot no longer works with TellMeWhen
Matenia replied to Requ's topic in WRobot for Wow Mists of Pandaria - Help and support
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); -
Keeping track of time / Stop watch possible?
Matenia replied to Lobbert's topic in Developers assistance
Var.SetVar("startTime", Datetime.Now); -
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.
-
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
-
Turn off training in the settings, maybe?
-
Unstable connection, probably your IP changing or the connection to the Auth server is just dying
-
wRobot is discontinued for retail
-
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.
-
Oh honey... return ObjectManager.Pet.Name == "Wolf"
-
-
WRobot no longer works with TellMeWhen
Matenia replied to Requ's topic in WRobot for Wow Mists of Pandaria - Help and support
Servers detect Lua execution, therefore you can't use addons with wRobot. Stop using addons with wRobot. -
-
How to Target Pet to cast a spell in CS?
Matenia replied to Paultimate's topic in Fight Classes assistance
ObjectManager.Me.Target = ObjectManager.Pet.Guid; SpellManager.CastSpellByNameOn("Rejuventation", "pet"); -
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.
-
-