[PQR]PvP Skill Amplifier: Stealthers' Bane menu

User Tag List

Page 1 of 6 12345 ... LastLast
Results 1 to 15 of 87
  1. #1
    RedRussian's Avatar Banned CoreCoins Purchaser Authenticator enabled
    Reputation
    221
    Join Date
    Nov 2012
    Posts
    430
    Thanks G/R
    2/3
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [PQR]PvP Skill Amplifier: Stealthers' Bane

    http://www.ownedcore.com/forums/worl...ation-bot.html is required

    Greetings everyone!
    This info will be useful to PQR PvP profile authors. I've created a code to automatically reveal stealthers in bgs/rbgs/arenas and you can easily put it into your profiles!

    Principle of work
    It's very simple. It tracks all invisible stealthers (those who cannot be targeted at the moment) and scans the area for them. List of invisible stealthers is updated every 2 seconds. It won't interrupt your spellcasting/channeling with stealth-breaker ability or target change. /target spam won't affect performance of your game.

    How to use it
    You can create a new ability in your pvp profile and put my code there.
    This part is responsible for stealthed list update period:
    Code:
    local rescan_period = 2 --how often stealthed list is repopulated
    and this defines stealth-breaker spell for each class:
    Code:
    local function Breaker() --instant stealth breaker, class dependent
    local _, playerClass = UnitClass("player")
    ...
    end
    BONUS - AUTO FLAG PICKUP/RETURN
    Auto flag pickup/return with option of running to the flag if Shift is pressed.


    All-Purpose Stealthers' Bane
    Random BG-Only Stealthers' Bane
    Auto flag pickup/return

    I'm looking forward to get your feedback and tips on improvement!

    HALL OF FAME
    link
    @holinka please look at this and make it not work http://www.ownedcore.com/forums/worl...hers-bane.html
    @Ghostcrawler please take a look at this and stahp it from functioning http://www.ownedcore.com/forums/worl...hers-bane.html
    Updates:
    07/06/13 Code cleanup+slightly improved logic
    12/06/13 A new small code cleanup+logic improvement. Added distance check to prevent annoying /target spam glitch
    17/06/13 Name collisions partially fixed
    20/06/13 A final nail in the coffin of name collisions
    05/07/13 A small but important logic update: your target now switches to spotted stealther instead of returning to the last target
    09/07/13 Slightly optimized performance
    19/07/13 Code cleanup + improved performance + improved logic for druids
    22/07/13 Serpent Sting is hunter's default spell now. It costs only 15 focus making it the cheapest instant ability.
    20/08/13 Stealther's Bane is split in two versions: All-purpose stealth breaker working in Arenas/RBGs/Random BGs and Random BG-Only version with optimized performance. Added PetAttack() so stealthers out of LoS won't be unreachable.
    10/09/13 Improved spell selection for hunter.
    14/09/13 Spellcast Fake is updated. Added a fancy alert of interrupt attempts.
    20/10/13 Stealthers' Bane: perforamnce is improved. Added a GY camp mode: rogues and druids are preventively hit with the stealth-breaker spell after rezzing. They won't slip away if your latency is good enough!
    Last edited by RedRussian; 01-14-2014 at 04:14 AM.

    [PQR]PvP Skill Amplifier: Stealthers' Bane
  2. #2
    Ninjaderp's Avatar Banned
    Reputation
    199
    Join Date
    Dec 2010
    Posts
    1,847
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    This sounds pretty awesome, dude!

  3. #3
    deadpanstiffy's Avatar Knight-Lieutenant
    Reputation
    158
    Join Date
    Mar 2012
    Posts
    240
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Good work, these are spells I would use to pull from stealth.

    Code:
    local function Breaker() --instant stealth breaker, class dependent
    	local _, playerClass = UnitClass("player")
    	if playerClass == "WARRIOR" then
    		return 57755 --Heroic Throw
    	elseif playerClass == "PALADIN" then
    		return 20271 --Judgment
    	elseif playerClass == "HUNTER" then
    		return 19503 --Scatter Shot
    	elseif playerClass == "ROGUE" then
    		if IsStealthed() then
    			return 6770 --Sap
    		else
    			return 121733 --Throw
    		end
    	elseif playerClass == "PRIEST" then
    		return 589 --Shadow Word: Pain
    	elseif playerClass == "DEATHKNIGHT" then
    		return 45477 --Icy Touch
    	elseif playerClass == "SHAMAN" then
    		return 8056 --Frost Shock
    	elseif playerClass == "MAGE" then
    		return 30455 --Ice Lance
    	elseif playerClass == "WARLOCK" then
    		return 77799 --Fel Flame
    	elseif playerClass == "MONK" then
    		return 115078 --Paralysis
    	elseif playerClass == "DRUID" then
    		return 770 --Faerie Fire
    	else
    		return 0
    	end
    end

  4. #4
    vitalic's Avatar Contributor CoreCoins Purchaser
    Reputation
    182
    Join Date
    Jun 2010
    Posts
    3,527
    Thanks G/R
    8/3
    Trade Feedback
    10 (100%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    That's a good idea, but it does (in theory) depend on the server revealing the stealthed player to you, unless I'm mistaken you aren't going to be randomly getting people out of stealth unless they walk right next to you. Having said that stealth is so broken right now you probably will have a high success rate.

  5. #5
    RedRussian's Avatar Banned CoreCoins Purchaser Authenticator enabled
    Reputation
    221
    Join Date
    Nov 2012
    Posts
    430
    Thanks G/R
    2/3
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yes, stealthers are revealed only if they're actually visible to you. It just provides you with superhuman reaction time As far as I know server doesn't even send you info about stealthed players who are invisible to you, for this reason no "real" stealth detection cheats exist.

    Thanks a lot for filling a breaker function with spells.
    Last edited by RedRussian; 06-03-2013 at 02:54 PM.

  6. #6
    Neer's Avatar Trend Rider Authenticator enabled
    Reputation
    1445
    Join Date
    Apr 2007
    Posts
    749
    Thanks G/R
    177/828
    Trade Feedback
    5 (100%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    As a hunter with track hidden, this is gamebreaking Feral druids and rogues have never been easier to beat.

  7. #7
    RedRussian's Avatar Banned CoreCoins Purchaser Authenticator enabled
    Reputation
    221
    Join Date
    Nov 2012
    Posts
    430
    Thanks G/R
    2/3
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'll update it to work in arenas and rbgs tomorrow.

  8. #8
    cpowroks's Avatar Contributor
    Reputation
    180
    Join Date
    Oct 2007
    Posts
    623
    Thanks G/R
    1/9
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Brilliant +5

    Edit, I suppose i have to Spread some more rep around before i give more to you.
    WoW LUA Script Developer
    Need Something Custom? WarmaneScripts.com
    Skype - grapejuice111

  9. #9
    RedRussian's Avatar Banned CoreCoins Purchaser Authenticator enabled
    Reputation
    221
    Join Date
    Nov 2012
    Posts
    430
    Thanks G/R
    2/3
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Updated to work in arena and rbgs.

  10. #10
    BadFuryWarrior's Avatar Member
    Reputation
    4
    Join Date
    Apr 2013
    Posts
    53
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I've been seeing people in BGs using bots (and players probably using code like this in their PQR profile) that instantly take you out of stealth. Like as soon as you go too close to their cone of sight, they'll hit you with an ability way faster than any human would do it and it's very common. I think there's a lot of people using PQR these days. Soon it'll get to the point where it's just profile versus profile.

  11. #11
    RedRussian's Avatar Banned CoreCoins Purchaser Authenticator enabled
    Reputation
    221
    Join Date
    Nov 2012
    Posts
    430
    Thanks G/R
    2/3
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    The one who uses superior technology wins? I'd love such game

  12. #12
    xLegendx's Avatar Member
    Reputation
    14
    Join Date
    Sep 2011
    Posts
    827
    Thanks G/R
    3/3
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by BadFuryWarrior View Post
    I've been seeing people in BGs using bots (and players probably using code like this in their PQR profile) that instantly take you out of stealth. Like as soon as you go too close to their cone of sight, they'll hit you with an ability way faster than any human would do it and it's very common. I think there's a lot of people using PQR these days. Soon it'll get to the point where it's just profile versus profile.
    As long as you control you're character and don't use instant interrupt, you're good.

  13. #13
    xLegendx's Avatar Member
    Reputation
    14
    Join Date
    Sep 2011
    Posts
    827
    Thanks G/R
    3/3
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by deadpanstiffy View Post
    Good work, these are spells I would use to pull from stealth.

    Code:
    local function Breaker() --instant stealth breaker, class dependent
    	local _, playerClass = UnitClass("player")
    	if playerClass == "WARRIOR" then
    		return 57755 --Heroic Throw
    	elseif playerClass == "PALADIN" then
    		return 20271 --Judgment
    	elseif playerClass == "HUNTER" then
    		return 19503 --Scatter Shot
    	elseif playerClass == "ROGUE" then
    		if IsStealthed() then
    			return 6770 --Sap
    		else
    			return 121733 --Throw
    		end
    	elseif playerClass == "PRIEST" then
    		return 589 --Shadow Word: Pain
    	elseif playerClass == "DEATHKNIGHT" then
    		return 45477 --Icy Touch
    	elseif playerClass == "SHAMAN" then
    		return 8056 --Frost Shock
    	elseif playerClass == "MAGE" then
    		return 30455 --Ice Lance
    	elseif playerClass == "WARLOCK" then
    		return 77799 --Fel Flame
    	elseif playerClass == "MONK" then
    		return 115078 --Paralysis
    	elseif playerClass == "DRUID" then
    		return 770 --Faerie Fire
    	else
    		return 0
    	end
    end
    I would add a 'if IsStealthed('player') then' to druids

  14. #14
    sed-'s Avatar ★ Elder ★
    Reputation
    1114
    Join Date
    Mar 2010
    Posts
    1,566
    Thanks G/R
    52/151
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by xLegendx View Post
    I would add a 'if IsStealthed('player') then' to druids
    you no there is an edit button right? it means you can edit your post to reflect changes or new additions to what you said so you dont have to double post,

  15. #15
    ptidemon28's Avatar Member
    Reputation
    1
    Join Date
    Aug 2012
    Posts
    41
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    WOUA !

    Just Amazing idea ... will test when i've time in rbg / arena.

    +rep

Page 1 of 6 12345 ... LastLast

Similar Threads

  1. [PQR] PvP Skill Amplifier: BG Killing Blow Leecher
    By RedRussian in forum WoW Bot Maps And Profiles
    Replies: 17
    Last Post: 10-17-2013, 07:36 AM
  2. [PQR] PvP Warrior Rotations
    By k4hn in forum WoW Bots Questions & Requests
    Replies: 0
    Last Post: 01-20-2013, 01:23 AM
  3. Warlock (PQR) pvp profile please?
    By leonel916 in forum WoW Bots Questions & Requests
    Replies: 0
    Last Post: 12-04-2012, 08:41 AM
  4. [PQR] [PvP] Lists
    By Gabbz in forum WoW Bot Maps And Profiles
    Replies: 3
    Last Post: 11-14-2012, 03:56 PM
  5. PQR PVP Hunter profile?
    By aLorzy91 in forum WoW Bots Questions & Requests
    Replies: 0
    Last Post: 07-29-2012, 02:32 AM
All times are GMT -5. The time now is 11:45 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search