PQR - Rotation Bot menu

User Tag List

Page 39 of 116 FirstFirst ... 35363738394041424389 ... LastLast
Results 571 to 585 of 1739
  1. #571
    TheLuBu's Avatar Contributor
    Reputation
    83
    Join Date
    Jun 2012
    Posts
    164
    Thanks G/R
    1/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    How can i add Text to the PQI Interface via Hotkey?

    I have a config with a textbox. I would like to create a hotkey, when its pressed, the name of the current target (UnitName("target")) should be saved to this txtbox.

    Is it possible, if yes, how

    Would love to get an answer

    Regards,
    TheLuBu

    PQR - Rotation Bot
  2. #572
    WWF's Avatar Active Member
    Reputation
    31
    Join Date
    Jul 2010
    Posts
    215
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by jackus View Post
    So this code should sit in DEF stance untill melee swing(white attack) is ready? Then go Battle stance do white attack and then back in def stance?
    this code should sit in def stance while you have no target or your target not in melee range or your target not an enemy and you can't attack it otherwise battlestance, it is simple

    Originally Posted by Wildbreath View Post
    btw PQR_TargetArea is implemented now, just put correct
    <ClickTerrain>0x38476E</ClickTerrain> in last offsets
    for spells like death and decay? how it work?

  3. #573
    Wildbreath's Avatar Contributor
    Reputation
    162
    Join Date
    Feb 2012
    Posts
    121
    Thanks G/R
    2/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    if UnitExists('target') then
    CastSpellByName('Death and Decay')
    if SpellIsTargeting() then
    PQR_TargetArea('target')
    SpellStopTargeting()
    end
    end

  4. #574
    WWF's Avatar Active Member
    Reputation
    31
    Join Date
    Jul 2010
    Posts
    215
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I have a problem with Paragons of the Klaxxi, how to use skills of Klaxxi scorpion?
    IsSpellKnown(), PQR_SpellAvailable(), CastSpellByName(GetSpellInfo(), "target") - does not works!

  5. #575
    TheLuBu's Avatar Contributor
    Reputation
    83
    Join Date
    Jun 2012
    Posts
    164
    Thanks G/R
    1/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    use "/framestack" to show you the frame names of the Buttons,
    and use
    RunMacroText("/click ButtonName")
    to click them

  6. #576
    WWF's Avatar Active Member
    Reputation
    31
    Join Date
    Jul 2010
    Posts
    215
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @Wildbreath i.e. PQR_TargetArea('target') = CameraOrSelectOrMoveStart() + CameraOrSelectOrMoveStop() ?

  7. #577
    Wildbreath's Avatar Contributor
    Reputation
    162
    Join Date
    Feb 2012
    Posts
    121
    Thanks G/R
    2/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    yes
    ф-ция для клика по юниту

  8. #578
    WWF's Avatar Active Member
    Reputation
    31
    Join Date
    Jul 2010
    Posts
    215
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by TheLuBu View Post
    use "/framestack" to show you the frame names of the Buttons,
    and use
    RunMacroText("/click ButtonName")
    to click them
    thank you!!!

  9. #579
    xCharusx's Avatar Private
    Reputation
    1
    Join Date
    Sep 2013
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hello everyone. I need some help with my ability.

    Code:
    local TargetHealth = 100 * UnitHealth("target") / UnitHealthMax("target")
    local Agony, _, _, _, _, _, AgonyEndTime = UnitDebuffID("target", 980, "player")
    
    if UnitLevel("target") == -1
    		and UnitPower("player", 7) > 0
    		and TargetHealth <= 20 then
    	return false
    end
    
    if not Agony
    		or AgonyEndTime - GetTime() <= PQI_AffliOffencive_Agony_value then
    	PQR_WriteToChat("Casting Agony")
    	return true
    end
    Ability works good but the problem is that i get spammed with "Casting Agony" all over my chat. Is it posible to make that write it only 1 time? Thx for your time guys

  10. #580
    TheLuBu's Avatar Contributor
    Reputation
    83
    Join Date
    Jun 2012
    Posts
    164
    Thanks G/R
    1/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Code:
    function  _Debug(text, debuglevel)
            if not lastdebugmsg then lastdebugmsg  = "0" end
    	if lastdebugmsg == text then return false end
    	PQR_WriteToChat(text)
    	lastdebugmsg = text
    end
    Use this functions, it remembers the last msg send and will not print it again

  11. #581
    xCharusx's Avatar Private
    Reputation
    1
    Join Date
    Sep 2013
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by TheLuBu View Post
    Code:
    function  _Debug(text, debuglevel)
            if not lastdebugmsg then lastdebugmsg  = "0" end
    	if lastdebugmsg == text then return false end
    	PQR_WriteToChat(text)
    	lastdebugmsg = text
    end
    Use this functions, it remembers the last msg send and will not print it again
    PQR stacks with this method

  12. #582
    TheLuBu's Avatar Contributor
    Reputation
    83
    Join Date
    Jun 2012
    Posts
    164
    Thanks G/R
    1/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    please remove ", debuglevel" i missed that part

  13. #583
    xCharusx's Avatar Private
    Reputation
    1
    Join Date
    Sep 2013
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yea i removed it, I just need to /reload the client. Working good, thx you very much

  14. #584
    ZidaneT's Avatar Corporal
    Reputation
    6
    Join Date
    Jan 2012
    Posts
    31
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Wildbreath View Post
    if UnitExists('target') then
    CastSpellByName('Death and Decay')
    if SpellIsTargeting() then
    PQR_TargetArea('target')
    SpellStopTargeting()
    end
    end
    I used this for shaman Healing Rain
    Code:
    local playerhealth = 100 * UnitHealth("player") / UnitHealthMax("player")
    
    if playerhealth < 75
    then
    	if SpellIsTargeting()
    	then
    		PQR_TargetArea("player")
    		SpellStopTargeting()
    	end
    	return true
    end
    But, weirdly, every time it activates it wipes out some of my wow settings. Like, the "status text" settings, in the interface menu. It clears all the boxes... it seems to randomly affect other setttings too. any ideas?

  15. #585
    Quesadilla's Avatar Sergeant
    Reputation
    9
    Join Date
    Apr 2013
    Posts
    56
    Thanks G/R
    2/1
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Wipes all my settings as well, Terms of agreement every time i start wow.
    Cool thing tho!

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. [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
  3. rotation bot leveling (PQR)
    By classdog in forum WoW Bots Questions & Requests
    Replies: 3
    Last Post: 09-17-2013, 06:13 PM
  4. [Release] PQR - Rotation Bot
    By Xelper in forum World of Warcraft Bots and Programs
    Replies: 11680
    Last Post: 09-16-2013, 07:47 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 03:35 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