Jump to content

Matenia

Elite user
  • Posts

    2226
  • Joined

  • Last visited

Reputation Activity

  1. Like
    Matenia got a reaction from Serrec in Start for first step after hearthstone   
    Pretty sure wRobot added a function to use hearthstone on stuck recently. Or rather any item.
    Check out the advanced settings. But yes, HMP has had this option since 2016 as well.
  2. Like
    Matenia got a reaction from spacecowboy in Quester GoToStep   
    Take a look here
  3. Thanks
    Matenia got a reaction from Zer0 in How can I force a fight?   
    That's what I thought. I don't know how IsAttacked handles this, maybe the GoToTask used to get to the vendor inside the ToTown state has a exitCondition for getting in combat. 
    Usually the exit condition for GoToTask is checking if the bot is running (not pause) and not being attacked. So that makes sense.

    The bot SHOULDN'T check for other states while one state is still running. That's how FiniteStateMachine works. 
    Maybe remove the ToTown state from the machine and build your own wrapper state that will abort the ToTown state (which should work by calling MovementManager.StopMove) if you pass/change a variable to your ToTownWrapper.

    What you want to do won't really work without hacks. All of our code is more or less hacked together because we're changing wRobot's default behavior. @Marsbar, for his training plugin even removes wRobot's training state and adds his own.
  4. Thanks
    Matenia got a reaction from Zer0 in How can I force a fight?   
    I guess that makes sense. IsAttacked checks for enemies targeting you (or you being on theit threat list in higher expansions) and tries to fight back. Maybe activate "don't fight back" in wRobot settings?:

    Also I believe NPCScanState is started with the "newThread()" method (static) on the class, so it would make sense it's running in an additional thread to start a fight. Unfortunately I don't know all the inner workings of wRobot.
  5. Thanks
    Matenia got a reaction from Zer0 in How can I force a fight?   
    Maybe just add your radar as its own state. That would, however, make it so the ToTown state running wouldn't allow your state to be triggered.
    Like Mars said, look at the grinder product example to see how exactly Droidz' FSM works. Then take a look at my free PartyHelper plugin on how to add states to wRobot.
     
  6. Thanks
    Matenia got a reaction from w00tengaben_the_3rd in Problem with authentication of paid profiles   
    Your router is likely blocking HTTP access to IPs directly. I've seen this before. If you're using a FritzBox (and you're German, so there's a 99.99% chance you are), enable direct access to IPs. 

    Try http://172.217.19.78 in your browser just to see (it's Google).
  7. Like
    Matenia got a reaction from TheSmokie in 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(); } }  
  8. Like
    Matenia got a reaction from BetterSister in Mass ban   
    He's trying to figure out what causes it, that's why he's said to use the no memory writing shortcut to start the bot.
    Plus if he publically says whenever he is looking into something, they can just turn off their anti-cheat for a while or decide to ban in waves to make it so much harder to protect against detection.

    Not only that, but CLEARLY Namreeb or Tauri has come up with another Warden module (btw, last time Warmane had a detection, they bought it from Tauri) that does something the previous modules could not. It's not about "being terrible", it's about knowledge that wasn't available previously. In fact, I've heard rumors about a vanilla client warden exploit that lets you execute any code you want on the system the WoW client is on. Both NW and LH implemented this around the same time. Hence why it's very likely someone (like Namreeb) came up with it and published it to server owners (as he usually does).

    The last Tauri detection took him a while to fix too, because they made it extra hard on him to find what they were doing different. So give it some time and don't spam or you're lowering your chances.
  9. Thanks
    Matenia got a reaction from duudeweeedlmaoo in Mass ban   
    He's trying to figure out what causes it, that's why he's said to use the no memory writing shortcut to start the bot.
    Plus if he publically says whenever he is looking into something, they can just turn off their anti-cheat for a while or decide to ban in waves to make it so much harder to protect against detection.

    Not only that, but CLEARLY Namreeb or Tauri has come up with another Warden module (btw, last time Warmane had a detection, they bought it from Tauri) that does something the previous modules could not. It's not about "being terrible", it's about knowledge that wasn't available previously. In fact, I've heard rumors about a vanilla client warden exploit that lets you execute any code you want on the system the WoW client is on. Both NW and LH implemented this around the same time. Hence why it's very likely someone (like Namreeb) came up with it and published it to server owners (as he usually does).

    The last Tauri detection took him a while to fix too, because they made it extra hard on him to find what they were doing different. So give it some time and don't spam or you're lowering your chances.
  10. Like
    Matenia got a reaction from zzz in Mass ban   
    He's trying to figure out what causes it, that's why he's said to use the no memory writing shortcut to start the bot.
    Plus if he publically says whenever he is looking into something, they can just turn off their anti-cheat for a while or decide to ban in waves to make it so much harder to protect against detection.

    Not only that, but CLEARLY Namreeb or Tauri has come up with another Warden module (btw, last time Warmane had a detection, they bought it from Tauri) that does something the previous modules could not. It's not about "being terrible", it's about knowledge that wasn't available previously. In fact, I've heard rumors about a vanilla client warden exploit that lets you execute any code you want on the system the WoW client is on. Both NW and LH implemented this around the same time. Hence why it's very likely someone (like Namreeb) came up with it and published it to server owners (as he usually does).

    The last Tauri detection took him a while to fix too, because they made it extra hard on him to find what they were doing different. So give it some time and don't spam or you're lowering your chances.
  11. Thanks
    Matenia got a reaction from TheSmokie in Mass ban   
    He's trying to figure out what causes it, that's why he's said to use the no memory writing shortcut to start the bot.
    Plus if he publically says whenever he is looking into something, they can just turn off their anti-cheat for a while or decide to ban in waves to make it so much harder to protect against detection.

    Not only that, but CLEARLY Namreeb or Tauri has come up with another Warden module (btw, last time Warmane had a detection, they bought it from Tauri) that does something the previous modules could not. It's not about "being terrible", it's about knowledge that wasn't available previously. In fact, I've heard rumors about a vanilla client warden exploit that lets you execute any code you want on the system the WoW client is on. Both NW and LH implemented this around the same time. Hence why it's very likely someone (like Namreeb) came up with it and published it to server owners (as he usually does).

    The last Tauri detection took him a while to fix too, because they made it extra hard on him to find what they were doing different. So give it some time and don't spam or you're lowering your chances.
  12. Like
    Matenia got a reaction from TheSmokie in How can I force a fight?   
    My best guess is that you're currently running between 2 waypoints.
    Try adding a MovementManager.StopMoveTo(false, 500) 

    Check if MovementManager.CurrentMoveTo is being overwritten and potentially call MovementManager.CurrentPath.Clear()
  13. Like
    Matenia got a reaction from Kamogli in Advanced Battlegrounder - BETA Testers wanted!   
    Dear WRobot community,
    ever since 2017 I've been working on my own battlegrounder product on and off. I now have a product that, while not entirely finished, is on the the best way towards getting there.
    I've only tested it in TBC, but it probably should work for vanilla and wotlk as well.

    If you want to gain access, you need to apply via Discord to me personally (via PM) for a key or pay a 50€ entry fee directly to the product on my Rocketr profile. 
    I will only accept people, who make a good case for why they should be allowed to test the product. I don't want to hand out freebies. 

    If you have very little knowledge of classes in PvP (for your expansion), you can't or won't monitor your bots and their behavior or you aren't willing to work with me on finding and reporting bugs as well as providing me with all the necessary info to potentially fix them on the spot, you will need to pay and you cannot expect any support until the product is finished.

    Keep in mind, WSG and AV still require you to add a profile (waypoints) in their current state. I have not yet decided how to code the playstyle the bot will have in these 2 BGs. If you are a beta tester, your input is welcomed on these topics and we can brainstorm 

    Just some features this product brings to the table:
    - fights for objectives (bases in AB/EoTS, eventually flag in WSG?)
    - focuses healers as dps (will receive healer mode to follow around other players and heal them eventually)
    - calls incs in chat in somewhat randomized fashion
    - (for now, for XML profiles [WSG/AV]) reverses the path instead of running into walls if you live all the way to the end (people who have used Battlegrounder before understand this behavior)
    - no weird mounting shenanigans
    - uses mage table, sets food and can regen
    - doesn't wait around in obvious "botting" spots during or before the BG (people who have used the bot on Warmane in early seasons will know what I'm talking about)
    - can join AV if the queue pops while you are currently in another BG

    Any applications for beta keys in this thread or via PM on the forums will be ignored entirely because reading comprehension is also a requirement.
  14. Like
    Matenia got a reaction from TheSmokie in Advanced Battlegrounder - BETA Testers wanted!   
    Dear WRobot community,
    ever since 2017 I've been working on my own battlegrounder product on and off. I now have a product that, while not entirely finished, is on the the best way towards getting there.
    I've only tested it in TBC, but it probably should work for vanilla and wotlk as well.

    If you want to gain access, you need to apply via Discord to me personally (via PM) for a key or pay a 50€ entry fee directly to the product on my Rocketr profile. 
    I will only accept people, who make a good case for why they should be allowed to test the product. I don't want to hand out freebies. 

    If you have very little knowledge of classes in PvP (for your expansion), you can't or won't monitor your bots and their behavior or you aren't willing to work with me on finding and reporting bugs as well as providing me with all the necessary info to potentially fix them on the spot, you will need to pay and you cannot expect any support until the product is finished.

    Keep in mind, WSG and AV still require you to add a profile (waypoints) in their current state. I have not yet decided how to code the playstyle the bot will have in these 2 BGs. If you are a beta tester, your input is welcomed on these topics and we can brainstorm 

    Just some features this product brings to the table:
    - fights for objectives (bases in AB/EoTS, eventually flag in WSG?)
    - focuses healers as dps (will receive healer mode to follow around other players and heal them eventually)
    - calls incs in chat in somewhat randomized fashion
    - (for now, for XML profiles [WSG/AV]) reverses the path instead of running into walls if you live all the way to the end (people who have used Battlegrounder before understand this behavior)
    - no weird mounting shenanigans
    - uses mage table, sets food and can regen
    - doesn't wait around in obvious "botting" spots during or before the BG (people who have used the bot on Warmane in early seasons will know what I'm talking about)
    - can join AV if the queue pops while you are currently in another BG

    Any applications for beta keys in this thread or via PM on the forums will be ignored entirely because reading comprehension is also a requirement.
  15. Thanks
    Matenia got a reaction from Trace in Mass ban   
    Pretty sure they have some sort of detection for wRobot. 
    @Droidz needs to investigate. An account I hadn't botted on in a long time got caught as well.

    My best guess is implementation of a new warden module with help from Tauri.
  16. Like
    Matenia got a reaction from Bambo in Advanced Battlegrounder - BETA Testers wanted!   
    Dear WRobot community,
    ever since 2017 I've been working on my own battlegrounder product on and off. I now have a product that, while not entirely finished, is on the the best way towards getting there.
    I've only tested it in TBC, but it probably should work for vanilla and wotlk as well.

    If you want to gain access, you need to apply via Discord to me personally (via PM) for a key or pay a 50€ entry fee directly to the product on my Rocketr profile. 
    I will only accept people, who make a good case for why they should be allowed to test the product. I don't want to hand out freebies. 

    If you have very little knowledge of classes in PvP (for your expansion), you can't or won't monitor your bots and their behavior or you aren't willing to work with me on finding and reporting bugs as well as providing me with all the necessary info to potentially fix them on the spot, you will need to pay and you cannot expect any support until the product is finished.

    Keep in mind, WSG and AV still require you to add a profile (waypoints) in their current state. I have not yet decided how to code the playstyle the bot will have in these 2 BGs. If you are a beta tester, your input is welcomed on these topics and we can brainstorm 

    Just some features this product brings to the table:
    - fights for objectives (bases in AB/EoTS, eventually flag in WSG?)
    - focuses healers as dps (will receive healer mode to follow around other players and heal them eventually)
    - calls incs in chat in somewhat randomized fashion
    - (for now, for XML profiles [WSG/AV]) reverses the path instead of running into walls if you live all the way to the end (people who have used Battlegrounder before understand this behavior)
    - no weird mounting shenanigans
    - uses mage table, sets food and can regen
    - doesn't wait around in obvious "botting" spots during or before the BG (people who have used the bot on Warmane in early seasons will know what I'm talking about)
    - can join AV if the queue pops while you are currently in another BG

    Any applications for beta keys in this thread or via PM on the forums will be ignored entirely because reading comprehension is also a requirement.
  17. Like
    Matenia got a reaction from Marsbar in Advanced Battlegrounder - BETA Testers wanted!   
    Dear WRobot community,
    ever since 2017 I've been working on my own battlegrounder product on and off. I now have a product that, while not entirely finished, is on the the best way towards getting there.
    I've only tested it in TBC, but it probably should work for vanilla and wotlk as well.

    If you want to gain access, you need to apply via Discord to me personally (via PM) for a key or pay a 50€ entry fee directly to the product on my Rocketr profile. 
    I will only accept people, who make a good case for why they should be allowed to test the product. I don't want to hand out freebies. 

    If you have very little knowledge of classes in PvP (for your expansion), you can't or won't monitor your bots and their behavior or you aren't willing to work with me on finding and reporting bugs as well as providing me with all the necessary info to potentially fix them on the spot, you will need to pay and you cannot expect any support until the product is finished.

    Keep in mind, WSG and AV still require you to add a profile (waypoints) in their current state. I have not yet decided how to code the playstyle the bot will have in these 2 BGs. If you are a beta tester, your input is welcomed on these topics and we can brainstorm 

    Just some features this product brings to the table:
    - fights for objectives (bases in AB/EoTS, eventually flag in WSG?)
    - focuses healers as dps (will receive healer mode to follow around other players and heal them eventually)
    - calls incs in chat in somewhat randomized fashion
    - (for now, for XML profiles [WSG/AV]) reverses the path instead of running into walls if you live all the way to the end (people who have used Battlegrounder before understand this behavior)
    - no weird mounting shenanigans
    - uses mage table, sets food and can regen
    - doesn't wait around in obvious "botting" spots during or before the BG (people who have used the bot on Warmane in early seasons will know what I'm talking about)
    - can join AV if the queue pops while you are currently in another BG

    Any applications for beta keys in this thread or via PM on the forums will be ignored entirely because reading comprehension is also a requirement.
  18. Like
    Matenia got a reaction from BetterSister in Advanced Battlegrounder - BETA Testers wanted!   
    Dear WRobot community,
    ever since 2017 I've been working on my own battlegrounder product on and off. I now have a product that, while not entirely finished, is on the the best way towards getting there.
    I've only tested it in TBC, but it probably should work for vanilla and wotlk as well.

    If you want to gain access, you need to apply via Discord to me personally (via PM) for a key or pay a 50€ entry fee directly to the product on my Rocketr profile. 
    I will only accept people, who make a good case for why they should be allowed to test the product. I don't want to hand out freebies. 

    If you have very little knowledge of classes in PvP (for your expansion), you can't or won't monitor your bots and their behavior or you aren't willing to work with me on finding and reporting bugs as well as providing me with all the necessary info to potentially fix them on the spot, you will need to pay and you cannot expect any support until the product is finished.

    Keep in mind, WSG and AV still require you to add a profile (waypoints) in their current state. I have not yet decided how to code the playstyle the bot will have in these 2 BGs. If you are a beta tester, your input is welcomed on these topics and we can brainstorm 

    Just some features this product brings to the table:
    - fights for objectives (bases in AB/EoTS, eventually flag in WSG?)
    - focuses healers as dps (will receive healer mode to follow around other players and heal them eventually)
    - calls incs in chat in somewhat randomized fashion
    - (for now, for XML profiles [WSG/AV]) reverses the path instead of running into walls if you live all the way to the end (people who have used Battlegrounder before understand this behavior)
    - no weird mounting shenanigans
    - uses mage table, sets food and can regen
    - doesn't wait around in obvious "botting" spots during or before the BG (people who have used the bot on Warmane in early seasons will know what I'm talking about)
    - can join AV if the queue pops while you are currently in another BG

    Any applications for beta keys in this thread or via PM on the forums will be ignored entirely because reading comprehension is also a requirement.
  19. Sad
    Matenia got a reaction from BetterSister in wow hacks   
    Hacks like you're implying don't exist. All damage deciding values are completely server side.
    Some crit luck (probably not exact same gear), maybe popped CDs, just slightly better gear, maybe just Enrage proc, who knows. 

    You only take 13% less damage at 1250 resil iirc.
  20. Thanks
    Matenia got a reaction from TheSmokie in WRobot for BFA private server   
    Not going to happen until retail is past BfA.
  21. Like
    Matenia got a reaction from Zan in WRobot for BFA private server   
    Not going to happen until retail is past BfA.
  22. Like
    Matenia got a reaction from viktor68 in Do i have to renew payment ?   
    Every year
  23. Thanks
    Matenia got a reaction from TheSmokie in shaman totems   
    Trying to use a TBC fightclass for vanilla (or a TBC method, I guess). Means Eeny didn't fully check that. But no need to create a thread, comment on the creator's thead, if he's still around he might bother fixing it.
    There's no totem timers in vanilla anyway.
  24. Like
    Matenia got a reaction from RADON in Using Party mode out of party?   
  25. Thanks
    Matenia got a reaction from TheSmokie in Why I think WRobot is detected on Netherwing (Atlantiss)   
    You wouldn't hear footsteps of a char that your client has no knowledge of. So whatever you're hearing is not what you think.
    It's also not detected. I've completely botted like 250k honor on one char in Season 1 and I was fine, despite some player reports (since I always answered chat).
×
×
  • Create New...