PQR - Rotation Bot menu

Shout-Out

User Tag List

Page 207 of 779 FirstFirst ... 107157203204205206207208209210211257307707 ... LastLast
Results 3,091 to 3,105 of 11681
  1. #3091
    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)
    Ok another update

    -dark soul is now also only on boss
    - added Left Shift as trigger for CoE,Dark Soul,Soulburn+Soulswap and Doomguard so you can use it on any mob (hold it for 2 secs untill it gets to cast everything)

    if you're testing on target dummy pls say if you used Left shift for CD's or you tested without it.

    I belive this now concludes single target and will be moving on the rest of the stuff.
    Supporter of Frozen.

    PQR - Rotation Bot
  2. #3092
    Noelpqr's Avatar Member
    Reputation
    3
    Join Date
    Oct 2011
    Posts
    58
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Xelper View Post
    Upgrade to PQR v2.1.9 using PQRUpdater.exe and let me know if it is working.
    it is working here too.

  3. #3093
    SpaceghostPurpp's Avatar Banned
    Reputation
    21
    Join Date
    May 2012
    Posts
    132
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Updated PQR to 2. Now it freezes upon activation of a profile. Any help?

  4. #3094
    Gabbz's Avatar Contributor
    Reputation
    184
    Join Date
    Dec 2011
    Posts
    451
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kabman View Post
    Ok im just trying to edit Sherons mage profile. And i'm wondering if there is anyway to have it check how much dmg per tick combustion is going to do before it actually cast combustion. So like a built in Combustion Helper. Would anyone know how to put that into programming language?


    If you can't do that then at least making sure the pyro dot is on before it cast combustion... This is what i have so far. Not sure if i put it in correct.

    if HaveBuff("player",48107)
    and HaveBuff("target",11366)

    and select(2,GetSpellCooldown(108853)) > 2
    then return true end
    i have made one similiar but what i do is check the ignite damage and if its above a certain number i will cast combustion. You dont need to check for pyroblast pn target cause ignite wont be high if its not based on a pyroblast afaik

    My code is working atm if you cast first fireballs until there is a ignite on target but you cane asily code that in if you want. I dont bother atm cause i dont get rep !!!

    btw you need to make 2 abilities named
    Event loader and event functions

    Event loader:

    Code:
    if XelperDruidEvents == nil then
    	XelperDruidEvents = true
    	print("Mage Events Loaded.")
    
    	local xelperFrame = CreateFrame("Frame")
    	xelperFrame:RegisterEvent("COMBAT_LOG_EVENT_UNFILTERED")
    	xelperFrame:SetScript("OnEvent", xelperFrame_OnEvent)
    	xelperFrame:Show()
    
    end
    Event functions
    Code:
    if MageFunctions == nil then
    	MageFunctions = true
    	print("Mage Functions Loadeds.")
    	function xelperFrame_OnEvent(self,event,...)
    		if event == "COMBAT_LOG_EVENT_UNFILTERED" then
    			--print("Mage Functions Combatlog.")
    			local subEvent = select(2, ...)
    			local sourceName = select(5, ...)
    			local destName = select(9, ...)
    			local spellName = select(13, ...)
    			local spellAmount = select(15, ...)
    			local spellCrit = select(21, ...)
    			
    			if subEvent == "SPELL_PERIODIC_DAMAGE" then
    			--	print("Mage Functions Periodic.")
    				if UnitName("player") == sourceName and destName == UnitName("target") then
    					if spellName == GetSpellInfo(12654) then  
    						IgniteLastDamage = spellAmount 
    						print("Mage Functions Ignite. " ..IgniteLastDamage)
    					end
    				end
    			end
    			if subEvent == "SPELL_AURA_REMOVED" then
    			--	print("Mage Functions Aura Removed.")
    				if UnitName("player") == sourceName then
    					if spellName == GetSpellInfo(12654) then  
    						IgniteLastDamage = 0 
    				--		print("Mage Functions resetting ignite. ")
    					end
    				end
    			end
    			if subEvent == "SPELL_DAMAGE" then
    		--		print("Mage Functions Damage.")
    				if UnitName("player") == sourceName and destName == UnitName("target") then
    					if spellName == GetSpellInfo(133) then  
    						Fireballdamage = spellAmount
    						if spellCrit == 1	then
    							FireballCrit = 1
    							else
    							FireballCrit = 0
    						--	print("Mage Functions FireBall CRITTED. " ..Fireballdamage)
    						end
    					end
    				end
    			end
    		end
    	end
    end
    Combustion: you need to make a macro named combustion or change the code

    Code:
    if IgniteLastDamage > 9000 --Change this to suit your gear
    --and UnitDebuffID("target", 92315,"player") -- this isnt working atm in mop change this to check for pyroblast dot
    then RunMacro("Combustion") return true end

    Any questions about this check my signature for the right forum.
    BTW my Fire mage script isnt on dropbox atm but im around 43K DPS with HC gear
    Looking for exploiters and botters to Elder Scrolls Online.

  5. #3095
    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)
    afaik it did same to me but not freeze it just reloaded ui.
    Supporter of Frozen.

  6. #3096
    rsanviral's Avatar Master Sergeant CoreCoins Purchaser
    Reputation
    24
    Join Date
    May 2010
    Posts
    92
    Thanks G/R
    0/0
    Trade Feedback
    3 (67%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Gabbz View Post
    I dont bother atm cause i dont get rep !!!

    Any questions about this check my signature for the right forum.
    BTW my Fire mage script isnt on dropbox atm but im around 43K DPS with HC gear

    + 3 Rep


    Jokes aside, sorry that more people do not rep you. You have made many wonderful contributions to these forums. Thanks for all that you do.
    Last edited by rsanviral; 08-31-2012 at 09:51 AM.

  7. #3097
    Hordeglider's Avatar Active Member
    Reputation
    27
    Join Date
    Feb 2007
    Posts
    136
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @Gabbz
    Could you upload your mage script so we can try it? Thanks
    Q: When do hunters get to tame druids?
    A: Right after druids get a hunter form.

  8. #3098
    megabbyte's Avatar Member CoreCoins Purchaser
    Reputation
    4
    Join Date
    Mar 2008
    Posts
    154
    Thanks G/R
    0/2
    Trade Feedback
    10 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Anyone Shadow PVE?

  9. #3099
    SpaceghostPurpp's Avatar Banned
    Reputation
    21
    Join Date
    May 2012
    Posts
    132
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Anyone know a fix to PQR freezing upon the update? Wish I kinda didn't update now as I can't use PQR :P
    Last edited by SpaceghostPurpp; 08-31-2012 at 10:13 AM.

  10. #3100
    kickmydog's Avatar Contributor
    Reputation
    257
    Join Date
    Jul 2011
    Posts
    635
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Updated my SV profile.

    KMDSV_MOP_v4.zip

    It includes some Aspect of the Fox, Hawk changes in there.

    Now if you are moving and running low on focus it will switch to fox, and stay in fox until you have close to full focus. At that point it will switch back to Hawk. This should reduce the number of GCD wasted with Aspect switching.
    https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-bot-maps-profiles/422388-kickmydog-bm-mm-sv-hunter-profiles.html#post2793017

  11. #3101
    TheDirtDog's Avatar Private
    Reputation
    1
    Join Date
    Aug 2012
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    edit found out...i dont have correct profiles for version...
    Last edited by TheDirtDog; 08-31-2012 at 10:52 AM. Reason: sorry for beeing noobish...obviously need to learn to read more >_<

  12. #3102
    megabbyte's Avatar Member CoreCoins Purchaser
    Reputation
    4
    Join Date
    Mar 2008
    Posts
    154
    Thanks G/R
    0/2
    Trade Feedback
    10 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kickmydog View Post
    Updated my SV profile.

    KMDSV_MOP_v4.zip

    It includes some Aspect of the Fox, Hawk changes in there.

    Now if you are moving and running low on focus it will switch to fox, and stay in fox until you have close to full focus. At that point it will switch back to Hawk. This should reduce the number of GCD wasted with Aspect switching.
    You do more DPS BM or SV?

  13. #3103
    NickGI's Avatar Member
    Reputation
    1
    Join Date
    Jan 2012
    Posts
    22
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kickmydog View Post
    Updated my SV profile.

    KMDSV_MOP_v4.zip

    It includes some Aspect of the Fox, Hawk changes in there.

    Now if you are moving and running low on focus it will switch to fox, and stay in fox until you have close to full focus. At that point it will switch back to Hawk. This should reduce the number of GCD wasted with Aspect switching.
    27k DPS with yours profile SV
    32k DPS with Sheuron's BM
    ItemLvl 394
    and as i think its not cause of rotation) just BM rulezz now)) at last))
    Last edited by NickGI; 08-31-2012 at 10:21 AM.

  14. #3104
    sheuron's Avatar Knight-Champion
    Reputation
    319
    Join Date
    Aug 2011
    Posts
    504
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @Xelper: Is possible to add a new functionality. If variable PQR_CustomSpellID is present PQR cast that spell, this is an example:

    Code:
    If UnitBuffID("player",469,"PLAYER") then 
      PQR_CustomSpellID = 469
    else
      PQR_CustomSpellID = 6673
    end
    
    return true
    [ Sheuron PQR Profiles Pack ] https://goo.gl/lfAMC
    If you like this piece of code feel free to invite me a beer making a donation.
    My paypal account: [email protected]

  15. #3105
    Cyxi's Avatar Member
    Reputation
    4
    Join Date
    Mar 2012
    Posts
    44
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    averykey

    Your ret profile is not judging at all, if i remove all conditions and only put "return true", it works

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 09:14 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