Jump to content

Matenia

Elite user
  • Posts

    2232
  • Joined

  • Last visited

Everything posted by Matenia

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