Jump to content

Matenia

Elite user
  • Posts

    2230
  • Joined

  • Last visited

Everything posted by Matenia

  1. I noticed the problem only with Freewind Elevator, I think Thousand Needles elevator still works (mesa elevator)
  2. This is still happening with Smooth Path option. Don't forget to fix it in the next big update, please
  3. 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.
  4. Stop using addons
  5. 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
  6. Probably because you bought cheap grinders and they only do a handful of quests. The profile you bought is from 2016.
  7. Sorry, I've just seen too many arrogant posts from you and am currently enjoying proof of your own incompetence.
  8. 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
  9. That has nothing to do with the FC. There are plenty of topics around these forums on how to restock food and drink.
  10. MovementManager.StopMoveTo(false, 1000000); MovementManager.StopMove();
  11. 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
  12. PM me on Discord I'll send you a version you can try
  13. Dude if someone caught you, you'd be banned already
  14. 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.
  15. Looks to me like you just left a battleground and wRobot didn't fully recognize
  16. 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.
  17. That's just logging for debugging purposes, I don't chagne the variable. Your profile probably does.
  18. 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.
  19. 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(); } }
  20. 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.
  21. 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.
  22. The error doesn't do anything, but you are trying to use a vanilla fightclass in TBC so that's never gonna work
  23. Hey Droidz, it seems wRobot falls off Elevators since the last update. Did you change anything about pathing/movement in general?
×
×
  • Create New...