Matenia
Elite user-
Posts
2232 -
Joined
-
Last visited
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Everything posted by Matenia
-
-
Make your own. All wRotation does is put you in fight with whatever target you select and then the fightclass does the rotation. When wRobot runs normally, it picks targets, walks towards them and puts you in fight, then the rotation handles the rest. The general consensus amongst the people selling fightclasses is that they're meant to keep your bot running while you're afk. If you're not good enough to press 3 buttons for your PvE rotation or want to script in PvP because you've failed to git gud, you won't find much help here.
-
Elevators (OffMeshConnection) all seem broken since latest update
Matenia commented on Matenia's bug report in Bug Tracker
I noticed the problem only with Freewind Elevator, I think Thousand Needles elevator still works (mesa elevator) -
Elevators (OffMeshConnection) all seem broken since latest update
Matenia commented on Matenia's bug report in Bug Tracker
This is still happening with Smooth Path option. Don't forget to fix it in the next big update, please -
Wrobot error??
Matenia replied to axelkrantz's topic in WRobot for Wow The Burning Crusade - Help and support
That's not the error that happens in the first place. Nobody can help you, unless you actually show us the REAL error thrown when wRobot crashes. If something crashes wRobot, it's probably a fightclass/plugin/combination of those/etc, or you didn't install wRobot correctly. -
Stop using addons
-
Client can receive certain packetss, for example for BG invites. If you modify the content slightly, the client might still accept those packets but the text is modified. Now if they accept the fake BG invite, they agree the math problem shown to them is correct, otherwise it's not (I imagine). This looks like it's most definitely a modified client though
-
Server Connection...
Matenia replied to jlap's topic in WRobot for Wow Wrath of the Lich King - Help and support
install correctly -
Probably because you bought cheap grinders and they only do a handful of quests. The profile you bought is from 2016.
-
Sorry, I've just seen too many arrogant posts from you and am currently enjoying proof of your own incompetence.
-
Then call it repeatedly in a loop or cancel movement events. I'm not here to help you figure out how to automate your exploits so you can keep selling them
-
That has nothing to do with the FC. There are plenty of topics around these forums on how to restock food and drink.
-
MovementManager.StopMoveTo(false, 1000000); MovementManager.StopMove();
-
Does Tauri still detect wRobot?
Matenia replied to Unknownxx's topic in WRobot for Wow Mists of Pandaria - Help and support
It's been said in the big thread - if you don't use the tauri client (i.e. the one that includes all their custom files) it's not detected -
-
does this means im busted?
Matenia replied to Zrux's topic in WRobot for Wow Vanilla - Help and support
Dude if someone caught you, you'd be banned already -
-
does this means im busted?
Matenia replied to Zrux's topic in WRobot for Wow Vanilla - Help and support
Looks to me like you just left a battleground and wRobot didn't fully recognize -
It is, if you YOURSELF bother setting it up. This plugin is free, the code is right there. You can disable stuff if you want to. But wRobot by itself already offers functionality for buying drink/food if you set up vendors correctly. This is a plugin that automates *some* functionality and predates that feature being added to wRobot. If you aren't interested in scouting through the options wRobot offers or in making your own profiles with your own vendors pre-set, you'll be hard pressed to us this or wRobot's built in feature.
-
-
Netherwing TBC Server
Matenia replied to zalambur's topic in WRobot for Wow The Burning Crusade - Help and support
If you botted on both accounts on the same IP, that might be why you got caught. wRobot is definitely not detected on Netherwing, as I'm currently botting 2 accounts and one just hit Outland. -
As this is a feature of my paid fightclass, I will give you the code but I will NOT tell you how to implement it. If you aren't proficient enough in C# to put this to use, I'm sorry. MovementEvents.OnMovementPulse += LongGhostWolfHandler; MovementEvents.OnMoveToPulse += GhostWolfHandler; private void GhostWolfHandler(Vector3 point, CancelEventArgs cancelable) { if (point.DistanceTo(Me.Position) >= wManagerSetting.CurrentSetting.MountDistance) { UseGhostWolf(); } } private void LongGhostWolfHandler(List<Vector3> points, CancelEventArgs cancelable) { if (points.Select(p => p.DistanceTo(Me.Position)).Aggregate(0f, (p1, p2) => p1 + p2) >= wManagerSetting.CurrentSetting.MountDistance) { UseGhostWolf(); } } private void UseGhostWolf() { if (string.IsNullOrWhiteSpace(wManagerSetting.CurrentSetting.GroundMountName) && !new Regeneration().NeedToRun && (Me.HaveBuff("Lightning Shield") || Me.HaveBuff("Water Shield")) && !Me.HaveBuff("Ghost Wolf") && EnhancerSetting.CurrentSetting.GhostWolf && !Me.InCombat) { MovementManager.StopMoveTo(false, 1000); SpellManager.CastSpellByNameLUA("Ghost Wolf"); Thread.Sleep(Usefuls.Latency); Usefuls.WaitIsCasting(); } }
-
Elevators (OffMeshConnection) all seem broken since latest update
Matenia commented on Matenia's bug report in Bug Tracker
It happened to me today once, but @maukor said on Discord it happened on 1k needles, Freewind Elevator and Thunderbluff Elevator. I will double check tomorrow if it works. -
Fightclass works fine, but if you use any plugins (like original SmoothMove) that specifically activate "use Lua to move", it FREEZES in combat due to deadlocking.
