PQR - Rotation Bot menu

Shout-Out

User Tag List

Page 125 of 779 FirstFirst ... 2575121122123124125126127128129175225625 ... LastLast
Results 1,861 to 1,875 of 11681
  1. #1861
    vitamincore's Avatar Corporal
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    19
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Kinkeh View Post
    I'm not quite sure, looking over his profile it doesn't seem like anything is wrong, it might possibly be the pillar of frost ability he has "/startattack|/use 10" maybe switching the two around might fix it, other then that I have no clue, might be the russian thing might not be, I've never seen the problem.
    changed the language to English exact same problem. With your profile in Russian does not work in English and everything is fine
    translate your profile into Russian, it worked
    Last edited by vitamincore; 08-01-2012 at 06:17 PM.

    PQR - Rotation Bot
  2. #1862
    deadpanstiffy's Avatar Knight-Lieutenant
    Reputation
    158
    Join Date
    Mar 2012
    Posts
    240
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You can remove all /useXX in the abilities and use the following.

    This checks if the item has a "Use" and that it is available to use and that it is not a PvP Trinket (loss of control).

    Code:
    local ItemSlot={10,13,14}
    for i=1,#ItemSlot do
    	local ItemID=GetInventoryItemID("player",ItemSlot[i])
    	if GetItemSpell(ItemID) and GetItemCooldown(ItemID)==0 
    	and GetItemSpell(ItemID)~="PvP Trinket"then
    		UseItemByName(ItemID)
    	end
    end

  3. #1863
    MACH9 WoW Services's Avatar Member CoreCoins Purchaser
    Reputation
    3
    Join Date
    Jun 2012
    Posts
    219
    Thanks G/R
    1/1
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Tried a number of profiles for my Blood DK and none seem to even use Pestilence, most spam blood boil -.- anyone know a good one for level 62 blood DK that does more than spam blood boil haha

  4. #1864
    bu_ba_911's Avatar Elite User
    Reputation
    552
    Join Date
    May 2006
    Posts
    1,638
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by cameronmc88 View Post
    Tried a number of profiles for my Blood DK and none seem to even use Pestilence, most spam blood boil -.- anyone know a good one for level 62 blood DK that does more than spam blood boil haha
    no offense, but you need to do more than spam BB to keep threat at 62 for aoe?
    ^0^Team Nova's PQR NCC ^0^

    If you think someone did something good, take the time to show your appreciation!

  5. #1865
    MACH9 WoW Services's Avatar Member CoreCoins Purchaser
    Reputation
    3
    Join Date
    Jun 2012
    Posts
    219
    Thanks G/R
    1/1
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bu_ba_911 View Post
    no offense, but you need to do more than spam BB to keep threat at 62 for aoe?
    None taken I know that's why I'm asking for a profile that does more than JUST spam blood boil!

  6. #1866
    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 deadpanstiffy View Post
    You can remove all /useXX in the abilities and use the following.

    This checks if the item has a "Use" and that it is available to use and that it is not a PvP Trinket (loss of control).

    Code:
    local ItemSlot={10,13,14}
    for i=1,#ItemSlot do
    	local ItemID=GetInventoryItemID("player",ItemSlot[i])
    	if GetItemSpell(ItemID) and GetItemCooldown(ItemID)==0 
    	and GetItemSpell(ItemID)~="PvP Trinket"then
    		UseItemByName(ItemID)
    	end
    end
    That seems like a very close version to my item code I posted in the old PQRotation thread <>.<>
    Code:
    function PQR_ItemCD()
    	for i=1,#slot do
    		local item = GetInventoryItemID("Player", slot[i])
    		local cd = GetItemCooldown(item)
    		local use = GetItemSpell(item)
    		if cd == 0 and use ~= nil then
    			return true
    		end
    	end
    	return false
    end
    Code:
    local slot = {10,13,14}
    
    if itemCD == true and BS ~= nil then
    	for i=1,#slot do
    		local item = GetInventoryItemID("player", slot[i])
    		UseItemByName(item)
    	end
    end
    If that was a redefined version from what I made, the credit to it would be nice, but I did say to use it for whatever when I posted it in the older thread C.c

    Originally Posted by cameronmc88 View Post
    None taken I know that's why I'm asking for a profile that does more than JUST spam blood boil!
    If I wasn't working on a Warrior Leveling Rotation spin-off from my Druid Leveling HonorBuddy PQRotation profile, I would definitely be doing a Death Knight rotation. But remind you, it wouldn't be for tanking. It would be DPS Questing/DPS Instance/DPS Battleground (maybe on BG). Would be no tanking what so ever in the profile. Would just be to much work and a whole lot of coding for to much stuff lol.
    Last edited by firepong; 08-01-2012 at 11:07 PM.

  7. #1867
    deadpanstiffy's Avatar Knight-Lieutenant
    Reputation
    158
    Join Date
    Mar 2012
    Posts
    240
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by firepong View Post
    That seems like a very close version to my item code I posted in the old PQRotation thread <>.<>
    Code:
    function PQR_ItemCD()
    	for i=1,#slot do
    		local item = GetInventoryItemID("Player", slot[i])
    		local cd = GetItemCooldown(item)
    		local use = GetItemSpell(item)
    		if cd == 0 and use ~= nil then
    			return true
    		end
    	end
    	return false
    end
    Code:
    local slot = {10,13,14}
    
    if itemCD == true and BS ~= nil then
    	for i=1,#slot do
    		local item = GetInventoryItemID("player", slot[i])
    		UseItemByName(item)
    	end
    end
    If that was a redefined version from what I made, the credit to it would be nice, but I did say to use it for whatever when I posted it in the older thread C.c
    You might want to check that thread, and find who created it as I was the one who asked for help because of an Item ID vs Item slot issue.

  8. #1868
    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 deadpanstiffy View Post
    You might want to check that thread, and find who created it as I was the one who asked for help because of an Item ID vs Item slot issue.
    To the offense we go.

    @Cameron

    Again, after I get my Warrior HonorBuddy profile ironed out and everything, I will possibly be working on a Death Knight profile, that will work through all level's. 55-85. Not sure when that will be though. I found out while making my druid HonorBuddy profile I had to level 2 druids to 85 to truly get all the bugs worked out. And even then, a error still seems to pop up from what my friend has been telling me. Something with the Bleed function (not my function, can't remember who made it. It is in the old PQR thread though) in my Data file I hear, even though it doesn't show up on my main 85 profile.

  9. #1869
    rippy1987's Avatar Member
    Reputation
    6
    Join Date
    May 2012
    Posts
    43
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    what's the best warrior arms pve profile atm?

  10. #1870
    cpowroks's Avatar Contributor
    Reputation
    180
    Join Date
    Oct 2007
    Posts
    623
    Thanks G/R
    1/9
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ..........
    Last edited by cpowroks; 08-02-2012 at 04:52 PM.

  11. #1871
    Calidris's Avatar Member
    Reputation
    1
    Join Date
    Apr 2012
    Posts
    21
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by rippy1987 View Post
    what's the best warrior arms pve profile atm?
    Boss SD7.3

  12. #1872
    supermann's Avatar Member
    Reputation
    12
    Join Date
    Oct 2008
    Posts
    87
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Beastmaster PvP 1.1

    Added a rota with scattershot @ focus, links in my sig

  13. #1873
    Kinkeh's Avatar Established Member
    Reputation
    243
    Join Date
    Jan 2012
    Posts
    450
    Thanks G/R
    0/0
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by pahyu View Post
    Since Seals are no longer buffs in beta and are stances how exactly can we check that state
    Spell ID: 20154 | Seal of Righteousness
    Code:
    local Seal = GetShapeshiftForm("player")
    
    if Seal ~= 2 then
    	return true
    end
    ^^ would change the number from ~= 1-3, first being Seal of Truth, second being seal of righteousness and third being Seal of Insight.
    Seal of Truth Spell ID: 31801 | Seal of Insight Spell ID: 20165
    Last edited by Kinkeh; 08-02-2012 at 04:41 AM.

  14. #1874
    deadpanstiffy's Avatar Knight-Lieutenant
    Reputation
    158
    Join Date
    Mar 2012
    Posts
    240
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by firepong View Post
    To the offense we go.
    Read your post in the old thread.

    http://www.ownedcore.com/forums/worl...ml#post2231290 ([BETA] PQRotation - an automated ability priority queue.)

    Originally Posted by firepong View Post
    This could even be used in a function for more versatility to go into a Data file. Care if I use it in one of mine? Will rep of course
    You ask if you can use it, "will rep", then you claim you wrote the code.

    I don't care who wrote, if you have something to make it better, lets collaborate.

  15. #1875
    buntcake72's Avatar Banned
    Reputation
    1
    Join Date
    Feb 2010
    Posts
    57
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by sheuron View Post
    BM is usually the best dps with low gear, but escalate slower when stats are improved. Is too early to talk about dps ranks, we ll need to play the game and get the whole raid gear again.

    @Xelper: When PQR for MacOSX? gogo!!
    Actually Sheuron I am taking this info from a friend who is testing the 25 man heroic raid bosses. That's why I wrote that. Ret Pallys are best melee and BM hunter are the best ranged ATM.

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 10:37 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