PQR - Rotation Bot menu

Shout-Out

User Tag List

Page 668 of 779 FirstFirst ... 168568618664665666667668669670671672718768 ... LastLast
Results 10,006 to 10,020 of 11681
  1. #10006
    averykey's Avatar Contributor
    Reputation
    158
    Join Date
    Dec 2011
    Posts
    448
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    My Svn - https://subversion.assembla.com/svn/averykeys-svn/

    PQR - Rotation Bot
  2. #10007
    iceymot's Avatar Member
    Reputation
    1
    Join Date
    Mar 2012
    Posts
    32
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by godlike86 View Post
    Hey guys im having a hard time getting conversion to work with my unholy profile it will use it when i drop below the designated health percentage but then will get stuck on spamming it of and on off and on again. Heres the code for what ive been trying to get it to work but alas no go any help would be appreciated

    -- Conversion
    local Myhealth = 100 * UnitHealth("player") / UnitHealthMax("player")
    if Myhealth <= 80 then
    CastSpellByName(GetSpellInfo(119975),"player")
    return true
    end

    Im not that great at coding either but i believe its something like this.

    if PQR_SpellAvailable(119975) and not UnitBuffID("player",119975) then

    local Myhealth = 100 * UnitHealth("player") / UnitHealthMax("player")
    if Myhealth <= 80 then
    CastSpellByName(GetSpellInfo(119975),"player")
    end
    end

  3. #10008
    testintehbot's Avatar Member
    Reputation
    1
    Join Date
    Mar 2012
    Posts
    26
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is there any way to get Pqr working for the PTR ?

  4. #10009
    godlike86's Avatar Corporal
    Reputation
    1
    Join Date
    Apr 2012
    Posts
    22
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks alot man added a check to see if it has at least 20 runic power to cast and it works like a charm

  5. #10010
    elconiglio's Avatar Private
    Reputation
    1
    Join Date
    Aug 2012
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I couldn't find an example so here it goes:

    How do I manage the spells that have "charges" (as the warrior Shield Block)? Is it possible do check the charges count and the "charge cooldown" (when you use a charge the spell it still available if another charge is left, but the used charge cooldown loops in the icon)?

    Thanks and sorry for the poor english.

  6. #10011
    crystal_tech's Avatar Elite User
    Reputation
    468
    Join Date
    Feb 2008
    Posts
    1,036
    Thanks G/R
    1/6
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by elconiglio View Post
    I couldn't find an example so here it goes:

    How do I manage the spells that have "charges" (as the warrior Shield Block)? Is it possible do check the charges count and the "charge cooldown" (when you use a charge the spell it still available if another charge is left, but the used charge cooldown loops in the icon)?

    Thanks and sorry for the poor english.
    theres a way but shield block is a pain to code around, check out ments demo profile for malfic grasp as its a spell that uses charges as well

    Please if someone helped you donate rep to them.

  7. #10012
    firepong's Avatar Elite User
    Reputation
    384
    Join Date
    Jan 2008
    Posts
    955
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by crystal_tech View Post
    theres a way but shield block is a pain to code around, check out ments demo profile for malfic grasp as its a spell that uses charges as well
    He might want to check one of the Affliction profiles as this is Affliction only. The other 2 specs don't get this move.

    I think?
    Last edited by firepong; 05-29-2013 at 08:09 PM.

  8. #10013
    elconiglio's Avatar Private
    Reputation
    1
    Join Date
    Aug 2012
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by firepong View Post
    He might want to check one of the Affliction profiles as this is Affliction only. The other 2 specs don't get this move.

    I think?
    Maybe its another demo spell, I tried to look at Nilrem's Affliction and there's no special treatment for Malefic Grasp (except for a hp % check). I'm looking the demo code right now to try to figure out which spell is.

  9. #10014
    botirk's Avatar Master Sergeant
    Reputation
    14
    Join Date
    May 2013
    Posts
    118
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Bug: PQR_UnitDistance("player","target") returns nil

  10. #10015
    nilrem2004's Avatar Contributor
    Reputation
    163
    Join Date
    Mar 2009
    Posts
    810
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Malefic Grasp doesn't have charges, it's a simple channel spell. However Demonology has Hand Of Guldan which has max 2 charges and you can check charges and cooldown.

    local HoGCD = select(3,GetSpellCharges(105174)) + select(4,GetSpellCharges(105174)) - GetTime()
    Supporter of Frozen.

  11. #10016
    crystal_tech's Avatar Elite User
    Reputation
    468
    Join Date
    Feb 2008
    Posts
    1,036
    Thanks G/R
    1/6
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    yea i'm wrong i told you the wrong spell. Long days little sleep, sorry for the confusion.

    i meant Hand of Gul'Dan
    PHP Code:
    local Flame,_,_,_,_,_,FlameTimer UnitDebuffID("target",PQ_SFlame,"player")
    local GDCD select(3,GetSpellCharges(PQ_GulDan)) + select(4,GetSpellCharges(PQ_GulDan)) - GetTime()

    if 
    TargetValidation("target",PQ_GulDan) and PQR_SpellAvailable(PQ_GulDan) and GetSpellCharges(PQ_GulDan) > 0 then
        
    if GetSpellCharges(PQ_GulDan) < 2 then
            
    if GDCD <= 3.5 then
                SpellCancelQueuedSpell
    ()
                
    CastSpellByName(GetSpellInfo(PQ_GulDan),"target")
                return 
    true
            end

            
    if Flame then
                
    if FlameTimer GetTime() <= 4 then
                    SpellCancelQueuedSpell
    ()
                    
    CastSpellByName(GetSpellInfo(PQ_GulDan),"target")
                    return 
    true
                end
            end
        end

        
    if GetSpellCharges(PQ_GulDan) > 1 then
            SpellCancelQueuedSpell
    ()
            
    CastSpellByName(GetSpellInfo(PQ_GulDan),"target")
            return 
    true
        end
    end 
    Last edited by crystal_tech; 05-30-2013 at 07:44 AM.

    Please if someone helped you donate rep to them.

  12. #10017
    stepen's Avatar Member
    Reputation
    8
    Join Date
    Jul 2009
    Posts
    26
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Works now.... Weird. Sorry.

  13. #10018
    Axercis's Avatar Member
    Reputation
    4
    Join Date
    Sep 2012
    Posts
    72
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Valma used to have a neat trick in his profiles where your profile or mode would pop up like a raid warning or pop up text, midscreen instead of just printing to the chat box. Is that still possible? What function would one leverage to do this?

  14. #10019
    crystal_tech's Avatar Elite User
    Reputation
    468
    Join Date
    Feb 2008
    Posts
    1,036
    Thanks G/R
    1/6
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Axercis View Post
    Valma used to have a neat trick in his profiles where your profile or mode would pop up like a raid warning or pop up text, midscreen instead of just printing to the chat box. Is that still possible? What function would one leverage to do this?
    he created a frame via lua (same thing nova_frame is really) and pushed text to it via events or debug modes.

    Please if someone helped you donate rep to them.

  15. #10020
    paintpauller's Avatar Contributor
    Reputation
    128
    Join Date
    Jan 2012
    Posts
    265
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Axercis View Post
    Valma used to have a neat trick in his profiles where your profile or mode would pop up like a raid warning or pop up text, midscreen instead of just printing to the chat box. Is that still possible? What function would one leverage to do this?
    exactly what Crystal_Tech said its just a frame with text. here is a modified version of the Nova Debug & Notification Frame found in their data file that i use for my utilities profile:
    just put the following anywhere in the profile, will only be used once.
    PHP Code:
    if NotifyFrame_Set == nil then
        NotifyFrame_Set 
    true
        NotifyFrame 
    nil
        
    function NotifyFrame_OnUpdate()
            if 
    NotifyFrameTime GetTime() then
                local alpha 
    NotifyFrame:GetAlpha()
                if (
    alpha ~= 0then NotifyFrame:SetAlpha(alpha .000001end
                
    if (aplha == 0then NotifyFrame:Hide() end
            end
        end
        
    function Notify_Long(message)
            
    NotifyFrame.text:SetText(message)
            
    NotifyFrame:SetAlpha(1)
            
    NotifyFrame:Show()
            
    NotifyFrameTime = (GetTime() + 15)
        
    end
        
    function Notify_Short(message)
            
    NotifyFrame.text:SetText(message)
            
    NotifyFrame:SetAlpha(1)
            
    NotifyFrame:Show()
            
    NotifyFrameTime = (GetTime() + 2)
        
    end
        NotifyFrame 
    CreateFrame('Frame')
        
    NotifyFrame:ClearAllPoints()
        
    NotifyFrame:SetHeight(300)
        
    NotifyFrame:SetWidth(650)
        
    NotifyFrame:SetScript('OnUpdate'NotifyFrame_OnUpdate)
        
    NotifyFrame:Hide()
        
    NotifyFrame.text NotifyFrame:CreateFontString(nil'BACKGROUND''PVPInfoTextFont')
        
    NotifyFrame.text:SetAllPoints()
        
    NotifyFrame:SetPoint('CENTER'0200)
        
    NotifyFrameTime 0
    end 
    To send a message to the frame do the following:
    Notify_Long( "Your message" ) or Notify_Short( "Your message" )
    depending on the amount of time you want the message to stay on the screen.
    to set it when the mode changes just find where the PQR_WriteToChat() or print() is and right next to it add the Notify long or short message and you are good to go. =D

    Alpha Profiles: - All profiles with PQInterface support!
    Alpha Interrupt: https://goo.gl/OLhGi - Ignore List, Random Percentage, Time Delays, & much More!
    Alpha Utilities: https://goo.gl/rt7WA - Farming, Prospecting, Disenchanting, Milling, & Questing
    Alpha Moonkin: https://goo.gl/gjxw0 - Optimized DPS Rotation for PvE, Mashup of 3 Profiles
    Avery's Ret: https://goo.gl/GhurM - My take on Avery's outstanding Ret profile with PQI

Similar Threads

  1. [Bot] PQR PE Next Steps / Future of Rotation Botting
    By Chevrolet1 in forum World of Warcraft Bots and Programs
    Replies: 120
    Last Post: 10-21-2014, 11:47 AM
  2. [Bot] PQR - Rotation Bot
    By Xelper in forum World of Warcraft Bots and Programs
    Replies: 1738
    Last Post: 10-15-2014, 11:00 AM
  3. [Selling] 3 Lifetime Session Keys For Sale, Great for the PQR user looking for a rotation bot
    By cukiemunster in forum World of Warcraft Buy Sell Trade
    Replies: 13
    Last Post: 03-11-2014, 07:18 AM
  4. rotation bot leveling (PQR)
    By classdog in forum WoW Bots Questions & Requests
    Replies: 3
    Last Post: 09-17-2013, 06:13 PM
  5. [HELP] PQR Rotation Bot Profile Making
    By Missu in forum Programming
    Replies: 0
    Last Post: 10-22-2012, 06:27 AM
All times are GMT -5. The time now is 01:50 AM. 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