Everything posted by Matenia
-
advanced setting box is to small
- How does the Rotation Bot work?
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
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
This is still happening with Smooth Path option. Don't forget to fix it in the next big update, please- Wrobot error??
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.- Fight Class stopped working
Stop using addons- How to Pass Anti-Bot
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- Can you make it, so wrobot does not count quiver/ammobag slots als normal bag slots?
no Vanila, TBC, WotLK- Server Connection...
install correctly- 1-70 Ally char stuck
Probably because you bought cheap grinders and they only do a handful of quests. The profile you bought is from 2016.- Stop all movement
Sorry, I've just seen too many arrogant posts from you and am currently enjoying proof of your own incompetence.- Stop all movement
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- Support
That has nothing to do with the FC. There are plenty of topics around these forums on how to restock food and drink.- Stop all movement
MovementManager.StopMoveTo(false, 1000000); MovementManager.StopMove();- Does Tauri still detect wRobot?
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- [PAID] Combat Rogue 1-70
- does this means im busted?
Dude if someone caught you, you'd be banned already- [PAID] Combat Rogue 1-70
I already check if there's any loot in 10 yards before I decide to stealth. Make sure you're using the correct version through your download link and not the free demo attached on the forums.- 5 comments
- 1 review
- does this means im busted?
Looks to me like you just left a battleground and wRobot didn't fully recognize- [FREE] FoodAndDrinkHelper
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.- [PAID] HumanMasterPlugin
That's just logging for debugging purposes, I don't chagne the variable. Your profile probably does.- 188 comments
- 19 reviews
- Netherwing TBC Server
- Shaman Ghost Wolf between mobs
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
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.- Wow crashes when ever it enters combat
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. - How does the Rotation Bot work?