PQR - Rotation Bot menu

User Tag List

Page 611 of 779 FirstFirst ... 111511561607608609610611612613614615661711 ... LastLast
Results 9,151 to 9,165 of 11681
  1. #9151
    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 Gabbz View Post
    Problem is that there is so much players/adds/Bosses you will "mouseover" them and not able to cast . For that code to work you need to mouseover "open" ground afaik.
    dont think thats the problem, i have similar code for lights hammer and it always works as far as i know. just now tested it and it will even work if im hovering over a training dummy.
    if you want to see it here is it, its almost identical to what Mavmins has:
    PHP Code:
    if PQR_SpellAvailable(114158then
        
    if IsLeftAltKeyDown() and IsLeftShiftKeyDown() then
            CastSpellByName
    (GetSpellInfo(114158))
            if 
    SpellIsTargeting() then
                CameraOrSelectOrMoveStart
    ()
                
    CameraOrSelectOrMoveStop()
            
    end
        end
    end 
    edit: just tested on 10+ cave bats in LFR and workes like a charm so thats not the prob Gabbz
    Last edited by paintpauller; 04-04-2013 at 11:43 AM.

    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

    PQR - Rotation Bot
  2. #9152
    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)
    Head's up remember PQR can loot Noblegarden eggs.

    Code:
    if GetUnitSpeed("player") == 0
    		and not IsMounted()
    		and not UnitCastingInfo("player") then
    	local loot = GetNumLootItems()
    	if loot == 0 then
    		local egg = "Brightly Colored Egg"
    		InteractUnit(egg)
    		if GetItemCount(egg) > 0 then
    			UseItemByName(egg)
    		end
    	else
    		for i = 1, loot do
    			SpellStopCasting()
    			LootSlot(i)
    		end
    	end
    end
    If not enUS change this string to your localized egg name to loot/open.
    Code:
    egg = "Brightly Colored Egg"

  3. #9153
    Guinness's Avatar Member
    Reputation
    5
    Join Date
    Apr 2012
    Posts
    75
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by paintpauller View Post
    dont think thats the problem, i have similar code for lights hammer and it always works as far as i know. just now tested it and it will even work if im hovering over a training dummy.
    if you want to see it here is it, its almost identical to what Mavmins has:
    PHP Code:
    if PQR_SpellAvailable(114158then
        
    if IsLeftAltKeyDown() and IsLeftShiftKeyDown() then
            CastSpellByName
    (GetSpellInfo(114158))
            if 
    SpellIsTargeting() then
                CameraOrSelectOrMoveStart
    ()
                
    CameraOrSelectOrMoveStop()
            
    end
        end
    end 
    edit: just tested on 10+ cave bats in LFR and workes like a charm so thats not the prob Gabbz
    I think the problem stems from very large Hit box mobs (mostly bosses).

  4. #9154
    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 averykey View Post
    Anyone have a fix for broken hitboxes on bosses, I would like to have range checks in raids but I can't atm or the profile will stop on certain bosses.
    just added a range check for all the melee moves and tested on a training dummy and it works, then Qed for ToT 1,2, and 3 and everything worked. after that I Qed for MSV 1 and 2 killed every boss expecting it to break on Elegon but it never did.

    looks like bliz fixed their shit and its now working (Elegon was the boss that it would break on right?)

    here is what i was using for my range checks:
    PHP Code:
    if IsSpellInRange(GetSpellInfo(35395), "target") == 1 then
        
    return true
    end 
    and i changed the ID to check based on what ability i was casting. had a variant of that for every melee ability.

    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

  5. #9155
    davehammer4's Avatar Member
    Reputation
    1
    Join Date
    Feb 2010
    Posts
    45
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Probably not the forum; however many SVN pros here so thought I would ask:

    When I right click my profiles folder and click "svn update" I get the error "working copy is locked". Is something on the profile dev's end or my end causing this error?

  6. #9156
    imdasandman's Avatar Contributor
    Reputation
    206
    Join Date
    Feb 2011
    Posts
    965
    Thanks G/R
    9/4
    Trade Feedback
    7 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by davehammer4 View Post
    Probably not the forum; however many SVN pros here so thought I would ask:

    When I right click my profiles folder and click "svn update" I get the error "working copy is locked". Is something on the profile dev's end or my end causing this error?
    Yep

    Sent from my SAMSUNG-SGH-I717 using Tapatalk 2
    My Frost/Unholy DK WoL ranking edits(4.3) and crystals Hunter Beta profiles-
    https://imdasandmandeathknight.googl...com/svn/trunk/
    Originally Posted by Valma View Post
    Oh sure. (: Plz,lord,rewrite my profile without "re-inventing a wheel".I'm really interested how would you do so.I even ready to eat my pants if yours will perform better in raids than mine

  7. #9157
    DiabloFan's Avatar Master Sergeant
    Reputation
    10
    Join Date
    Sep 2011
    Posts
    80
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by discobob View Post
    one of the arguments in spell_casting combat log does indeed give the target of who he is casting the spell on
    I'm assuming you're thinking of SPELL_CAST_START which does not specify destGUID, destName, or destFlags. If I recall correctly, they just return nil. The only way to find the target of a spell cast from the combat log is after the cast ends and the spell actually fires.

  8. #9158
    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)
    Originally Posted by paintpauller View Post
    just added a range check for all the melee moves and tested on a training dummy and it works, then Qed for ToT 1,2, and 3 and everything worked. after that I Qed for MSV 1 and 2 killed every boss expecting it to break on Elegon but it never did.

    looks like bliz fixed their shit and its now working (Elegon was the boss that it would break on right?)

    here is what i was using for my range checks:
    PHP Code:
    if IsSpellInRange(GetSpellInfo(35395), "target") == 1 then
        
    return true
    end 
    and i changed the ID to check based on what ability i was casting. had a variant of that for every melee ability.
    Well, I really hope Blizzard has fixed this issue.
    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

  9. #9159
    Rubim's Avatar Contributor
    Reputation
    247
    Join Date
    Mar 2010
    Posts
    267
    Thanks G/R
    4/7
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kickmydog View Post
    Well, I really hope Blizzard has fixed this issue.
    IsSpellInRange was never broken.

    You will get problems if you start trying to get the X,Y,Z of Elegon, Garalon's Legs.
    https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-bot-maps-profiles/385569-pqr-death-knight-monk-tank-dps-profiles.html#post2582063

  10. #9160
    Devolenok's Avatar Member
    Reputation
    1
    Join Date
    Feb 2012
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by deadpanstiffy View Post
    Head's up remember PQR can loot Noblegarden eggs.

    Code:
    if GetUnitSpeed("player") == 0
    		and not IsMounted()
    		and not UnitCastingInfo("player") then
    	local loot = GetNumLootItems()
    	if loot == 0 then
    		local egg = "Brightly Colored Egg"
    		InteractUnit(egg)
    		if GetItemCount(egg) > 0 then
    			UseItemByName(egg)
    		end
    	else
    		for i = 1, loot do
    			SpellStopCasting()
    			LootSlot(i)
    		end
    	end
    end
    If not enUS change this string to your localized egg name to loot/open.
    Code:
    egg = "Brightly Colored Egg"


    i was looking for that thx))
    But how do u make it work?

  11. #9161
    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)
    how to check not moving for 2 seconds?

  12. #9162
    Nerder's Avatar Contributor
    Reputation
    117
    Join Date
    Aug 2012
    Posts
    263
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by WWF View Post
    how to check not moving for 2 seconds?
    copied from the PQR Custom Functions Wiki
    Code:
    PQR_IsMoving(seconds)
    
    Returns true if the player has been moving for X seconds. Returns false otherwise.
    
    Note that by default this function will return false once the player has been stationary for 1 second. This reset timer can be controlled by assigning a value to the variable "PQR_ResetMovementTime." For example, to change the reset time to 0.5 seconds, you would use "PQR_ResetMovementTime = 0.5" somewhere near the top of your rotation. This variable is global, and will effect all instances of PQR_IsMoving() in your rotation. Note that changing from one rotation to another will reset this value to 1.0.
    so....
    Code:
    if not PQR_IsMoving(2) then
    I think thats what you were looking for?
    Last edited by Nerder; 04-05-2013 at 05:18 PM.

  13. #9163
    Znuff's Avatar Master Sergeant
    Reputation
    23
    Join Date
    Jun 2010
    Posts
    97
    Thanks G/R
    1/8
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is it me or it doesn't currently know about Power Word: Solace?

    It keeps telling me it's an unknown ID

  14. #9164
    gnitor's Avatar Corporal
    Reputation
    7
    Join Date
    Feb 2012
    Posts
    17
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Znuff View Post
    Is it me or it doesn't currently know about Power Word: Solace?

    It keeps telling me it's an unknown ID
    Don't forget to check the ID of your spell using Sheuron's macro from first page:
    Code:
    /run for i=1,200000 do local f=FindSpellBookSlotBySpellID(i,"spell") if f then local n,id=GetSpellBookItemName(f,"spell"),select(2,GetSpellBookItemInfo(f,"spell")) local s=GetSpellInfo(id) s=n==s and " " or "\124cFF4FF763"..s print(id,n,s) end end
    Make sure you have the right ID, it can be different from the main spell you will find in wowhead for instance as there can be multiple versions, especially because the way specs, shapeshifter, glyphs etc can change it.
    PW: Solace is properly cast with Vachiusa's profile! So it should be possible and my guess is a spell ID issue.

  15. #9165
    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)
    Originally Posted by Rubim View Post
    IsSpellInRange was never broken.

    You will get problems if you start trying to get the X,Y,Z of Elegon, Garalon's Legs.
    Actually it was broken for a long time with a number of hunter abilities.
    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

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 04:48 PM. 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