3.3.5a PQR Profile/Script Sharing, ask for script, solutions menu

User Tag List

Page 3 of 4 FirstFirst 1234 LastLast
Results 31 to 45 of 59
  1. #31
    Beefkek's Avatar Active Member
    Reputation
    16
    Join Date
    Jun 2016
    Posts
    17
    Thanks G/R
    4/10
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    There is a way. [PQR] 3.3.5 Cpoworks Protection Warrior ([PQR] 3.3.5 Cpoworks Protection Warrior)
    But the links don't work anymore. It even cancels the hs if you run low on rage mid swing. If you manage to find a dl link for it or another working script plz share it here or pm me.

    3.3.5a PQR Profile/Script Sharing, ask for script, solutions
  2. #32
    horribleasian's Avatar Member
    Reputation
    1
    Join Date
    Sep 2017
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey there, I was trying to look for a decent Retribution Paladin script with the 2x T10 reset on Divine Storm procs. Does anyone have one ?

  3. #33
    sangdogg's Avatar Member
    Reputation
    1
    Join Date
    Jul 2009
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    is it possible to cast cc if enemy in arena used trinket?

  4. #34
    cyberhero's Avatar Member
    Reputation
    1
    Join Date
    Feb 2016
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    local myHealth = 100 * UnitHealth("player") / UnitHealthMax("player")

    if myHealth < 10 then
    return true
    end

    I want to add use Fel Healthstone when below 10% hp to this script but since its not a spell i dont know how to make it work. Any solutions?
    Last edited by cyberhero; 10-04-2017 at 07:38 AM.

  5. #35
    sangdogg's Avatar Member
    Reputation
    1
    Join Date
    Jul 2009
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i repeat, is there a script to check if enemy used trinket then cast spell?
    Thanks.

  6. #36
    dealerx's Avatar Member
    Reputation
    9
    Join Date
    May 2016
    Posts
    124
    Thanks G/R
    14/8
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by sangdogg View Post
    i repeat, is there a script to check if enemy used trinket then cast spell?
    Thanks.
    I think you need to set a frame that checks combat log and when someone in opposite team uses medallion/racial it fires, so you can cast a spell, but honestly, I don't see the point, I mean it's not PvE, PvP is totally different its not a rule that Trinket=CC, maybe it's not even necessary, maybe he has DR, maybe you are silenced, maybe he is out of range, maybe he is even immune...you need to write tons of conditions so I would rather leave this function to be honest.
    I don't understand you guys asking some stuff like this, can't you really see the trinket from Gladius and cast manually a CC? It's not that hard..

  7. #37
    AnimatedHF1's Avatar Member
    Reputation
    1
    Join Date
    Nov 2017
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is there a decent resto druid healing profile?
    for dungeons and raids?

  8. #38
    CrazyCo's Avatar Member
    Reputation
    13
    Join Date
    Apr 2017
    Posts
    19
    Thanks G/R
    6/5
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by sangdogg View Post
    i repeat, is there a script to check if enemy used trinket then cast spell?
    Thanks.
    local f = CreateFrame("Frame")
    f:RegisterEvent("UNIT_SPELLCAST_SUCCEEDED")
    f:SetScript("OnEvent", function(self, event, unit, spell)
    if spell == "PvP Trinket"
    and UnitIsEnemy("player", unit)
    and GetSpellCooldown("Blind") == 0
    then
    CastSpellByName("Blind", unit)
    end
    end)

    Though OnEvent script is rather poor choice, it would be better to track unit cooldowns then execute better script (almost) constantly.

  9. #39
    Ravenh's Avatar Member
    Reputation
    3
    Join Date
    Jul 2013
    Posts
    23
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by sangdogg View Post
    i repeat, is there a script to check if enemy used trinket then cast spell?
    Thanks.
    Trinket = CreateFrame("Frame", "Trinket", UIParent);
    Trinket:RegisterEvent("UNIT_SPELLCAST_SUCCEEDED")
    Trinket:SetScript("OnEvent", function(self, event, arg1, arg2)
    Spells3 = {"Every Man for Himself", "PvP Trinket"}
    for x = 1,#Spells3 do
    local args = {arg1, arg2}
    if (arg1 == "target" and arg2 == Spells3[x]) then
    CastSpellByName("Blind")
    end
    end
    end)

  10. #40
    DarhangeR's Avatar Active Member
    Reputation
    27
    Join Date
    Nov 2017
    Posts
    51
    Thanks G/R
    3/19
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hello! I say right away, English is not my main language.
    Need help with the encoding of some spells.

    First its Druid Lacerate - I want the PCR to use this spell to 5 stacks, and check the remaining time.
    Code:
    if UnitDebuffID("target", 48568, "player") == nil
    and checkSpell(48568, "target")
    and checkcount < 5
    then return true end
    Warlock:
    Immolation Aura - check melee range and use it only on melle range.
    Code:
    if UnitBuffID("player", 47241)
    and IsSpellInRange("54053", "target")  == 1
    then return true end
    Shadow Cleave - same (check melee range and use it only on melle range.)
    Code:
    if UnitBuffID("player", 47241)
    and IsSpellInRange("54053", "target")  == 1
    then return true end
    Can someone help?
    DarhangeR Rotations Discord → https://discord.gg/xBFKJc6QRr


  11. #41
    CrazyCo's Avatar Member
    Reputation
    13
    Join Date
    Apr 2017
    Posts
    19
    Thanks G/R
    6/5
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Code:
    local lacerate_count = REPLACE(4,  UnitAura("target",GetSpellInfo(48568), nil , "PLAYER")) or 0 
    if lacerate_count==5
    and  (REPLACE(7, UnitAura("target",GetSpellInfo(48568), nil , "PLAYER"))-GetTime() ) < 5 -- Expiration
    then 
    	return true
    elseif lacerate_count == 0 then 
    	return true 
    end
    Swap REPLACE with

    sele

    ct

    I'm unable to post actual word because ownedcore is blocking it? lol

    For caster melee check just look at IsItemInRange function (you can also use libs like LibRangeCheck or at least check it for reference).

  12. Thanks DarhangeR (1 members gave Thanks to CrazyCo for this useful post)
  13. #42
    sharesa's Avatar Member
    Reputation
    1
    Join Date
    Apr 2014
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by AnimatedHF1 View Post
    Is there a decent resto druid healing profile?
    for dungeons and raids?
    I am interested in this too.Can someone share something good for us. (Pve rdruid 10/25).

  14. #43
    DarhangeR's Avatar Active Member
    Reputation
    27
    Join Date
    Nov 2017
    Posts
    51
    Thanks G/R
    3/19
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Code:
    Message: [string " function pqrFunc0() --Pause/the/rotation!..."]:47: attempt to concatenate a nil value
    Time: 12/30/17 15:20:26
    Count: 1
    Stack: [string " function pqrFunc0() --Pause/the/rotation!..."]:47: in function `?'
    [string "..."]:267: in function `PQR_NextAbility'
    [string "..."]:161: in function `PQR_CastNext'
    [string "..."]:150: in function `PQR_ExecuteBot'
    [string "..."]:40: in function <[string "..."]:23>
    
    Locals: (*temporary) = <function> defined =[C]:-1
    (*temporary) = "/click "
    (*temporary) = nil
    (*temporary) = <unnamed> {
     0 = <userdata>
    }
    (*temporary) = "attempt to concatenate a nil value"
    Have Lua error sometimes, anybody know what do?
    DarhangeR Rotations Discord → https://discord.gg/xBFKJc6QRr


  15. #44
    DarhangeR's Avatar Active Member
    Reputation
    27
    Join Date
    Nov 2017
    Posts
    51
    Thanks G/R
    3/19
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by sharesa View Post
    I am interested in this too.Can someone share something good for us. (Pve rdruid 10/25).
    I think its good profiles for you.

    My own Druid 3.3.5a Profiles(Only for PvE) include:
    - Resto Solo Profile;
    - Resto 25-40 Player Profile;
    - Feral Cat;
    - Guardian Bear;
    - Moonkin;

    Virustotal → https://goo.gl/d1PT2V
    Link for Download Mediafire → Druid 3.3.5a Profiles
    Add Link in Mediafire (Help me dev, watch 15 sec add whitout addblock and antivirus)Druid 3.3.5a Profiles (ADD)

    If help press tnx and give rep
    Last edited by DarhangeR; 12-30-2017 at 08:45 AM.
    DarhangeR Rotations Discord → https://discord.gg/xBFKJc6QRr


  16. Thanks gnomefocus (1 members gave Thanks to DarhangeR for this useful post)
  17. #45
    CrazyCo's Avatar Member
    Reputation
    13
    Join Date
    Apr 2017
    Posts
    19
    Thanks G/R
    6/5
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by civayan View Post
    Code:
    Message: [string " function pqrFunc0() --Pause/the/rotation!..."]:47: attempt to concatenate a nil value
    Time: 12/30/17 15:20:26
    Count: 1
    Stack: [string " function pqrFunc0() --Pause/the/rotation!..."]:47: in function `?'
    [string "..."]:267: in function `PQR_NextAbility'
    [string "..."]:161: in function `PQR_CastNext'
    [string "..."]:150: in function `PQR_ExecuteBot'
    [string "..."]:40: in function <[string "..."]:23>
    
    Locals: (*temporary) = <function> defined =[C]:-1
    (*temporary) = "/click "
    (*temporary) = nil
    (*temporary) = <unnamed> {
     0 = <userdata>
    }
    (*temporary) = "attempt to concatenate a nil value"
    Have Lua error sometimes, anybody know what do?


    At line 47 in somewhere in your PQR script its trying to do something like "player".. nil

    Since PQR concatenates all abilities into single string its immensively annoying to debug.

Page 3 of 4 FirstFirst 1234 LastLast

Similar Threads

  1. Convert PQR Profile into LUA script ?
    By leinadz in forum WoW Bots Questions & Requests
    Replies: 6
    Last Post: 03-06-2014, 01:38 AM
  2. Wtb ele sham pqr profile thats flawless at for lvl 90s
    By odano1988 in forum WoW Bot Maps And Profiles
    Replies: 7
    Last Post: 10-12-2012, 10:23 AM
  3. Profile sharing porgram for Flo bot
    By pullapasi in forum World of Warcraft Bots and Programs
    Replies: 5
    Last Post: 05-23-2008, 12:37 PM
All times are GMT -5. The time now is 02:10 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