[PQR]PvP Skill Amplifier: Stealthers' Bane menu

User Tag List

Page 6 of 6 FirstFirst ... 23456
Results 76 to 87 of 87
  1. #76
    Ultraviolence's Avatar Active Member
    Reputation
    15
    Join Date
    Aug 2008
    Posts
    102
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by jackus View Post
    Is it posible to remove the TARGET sound?
    Yes.

    Code:
    local sfx=GetCVar("Sound_EnableSFX")
    SetCVar("Sound_EnableSFX",0)
    TargetUnit(k) --example
    SetCVar("Sound_EnableSFX",sfx)
    Repeat by wrapping these around all targeting functions as shown. It should mute the SFX sound just before targeting, then instantaneously unmute.
    Last edited by Ultraviolence; 01-13-2014 at 10:37 AM. Reason: clarity

    [PQR]PvP Skill Amplifier: Stealthers' Bane
  2. #77
    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)
    This is what I am doing in my profile, before targeting:

    Code:
    TargetFrame:SetScript("OnEvent", nil)
    ComboFrame:SetScript("OnEvent", nil)
    After:

    Code:
    TargetFrame:SetScript("OnEvent", TargetFrame_OnEvent)
    ComboFrame:SetScript("OnEvent", ComboFrame_OnEvent)
    This should negate the sounds and some other issues that can occur like target/combo point frames or target buffs/debuffs flickering, it is also slightly more efficient because it prevents the Blizzard UI running its own code on PLAYER_TARGET_CHANGED events.

  3. #78
    jpoplive's Avatar Member
    Reputation
    13
    Join Date
    Mar 2007
    Posts
    36
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    can't get the link for Auto Fake Cast to work?

  4. #79
    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)
    Auto Spellcast Fake
    I'm thinking on creating an independent thread dedicated to it.

  5. #80
    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)
    WARNING !!!
    Blizzard has initiated a PQR Banwave!

  6. #81
    d3deadl0rd's Avatar Member CoreCoins Purchaser
    Reputation
    1
    Join Date
    Dec 2012
    Posts
    32
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by RedRussian View Post
    Auto Spellcast Fake
    I'm thinking on creating an independent thread dedicated to it.
    Hi. Can't find an independent thread Is it possible to upload some separate (out of pqr) version of this? Injector or smth. May be someone has it. Thx

  7. #82
    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 code is not dependent on PQR per se, the only exception is PQR_SpellAvailable function, which can be implemented as follows
    Code:
    PQR_SPELL_AVAILABLE_TIME = 0.125
    function PQR_SpellAvailable(spellID)
        if not GetSpellInfo(spellID) then
            return false
        end    
        spellID = tonumber(spellID) or 0
        local current_time = GetTime()
        local cooldown_start, cooldown_duration = GetSpellCooldown(spellID)
        local mana_cost = select(4, GetSpellInfo(spellID)) or 0
        local is_usable = (UnitPower("player") >= mana_cost) and IsSpellKnown(spellID) or IsUsableSpell(spellID)
        local not_on_cooldown = cooldown_start + cooldown_duration - current_time <= PQR_SPELL_AVAILABLE_TIME
        return ( not_on_cooldown and is_usable )
    end
    I don't recommend you to use any public Lua unlockers as it's a sure way to get banned.
    Last edited by RedRussian; 06-23-2014 at 11:30 PM.

  8. #83
    d3deadl0rd's Avatar Member CoreCoins Purchaser
    Reputation
    1
    Join Date
    Dec 2012
    Posts
    32
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thx. But isnt using PQR the way also? After that banwave.. I dont really know about why it has happened and what changed after. And what should i do to use it with pqr out of any complicated class profiles? Can you plz make the profile consisting of that thing only? Im not good at programming. Thx again.

  9. #84
    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 was and still remains detected, use it once and say goodbye to your account.

  10. #85
    Tilos's Avatar Member
    Reputation
    1
    Join Date
    Aug 2014
    Posts
    29
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    anyone got working fake auto-cast for pqr?
    Last edited by Tilos; 09-29-2014 at 08:32 AM.

  11. #86
    Tilos's Avatar Member
    Reputation
    1
    Join Date
    Aug 2014
    Posts
    29
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    anyone got working fake auto-cast for pqr?

  12. #87
    Danis111's Avatar Member
    Reputation
    1
    Join Date
    Mar 2014
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    anyone get auto fake cast for old pqr pls

Page 6 of 6 FirstFirst ... 23456

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 03:11 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search