PQR - Rotation Bot menu

User Tag List

Page 498 of 779 FirstFirst ... 398448494495496497498499500501502548598 ... LastLast
Results 7,456 to 7,470 of 11681
  1. #7456
    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 Ironbad47 View Post
    Hey, i have tried looking everywhere on how to change when the interrupt goes off, i'd like to change it to kick at 80% of the cast or so, forgive me pls if it was answered before but i dont want to look through all 500 pages :S


    Assuming you're using Xelper's interrupt profile, just edit this value to whatever you want it to be. I'd recommend setting it a little lower than 80% though as that might be too late for spells with short cast times.

    PQR - Rotation Bot
  2. #7457
    Ironbad47's Avatar Private
    Reputation
    1
    Join Date
    Jul 2011
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    oh ok, thats pretty simple now that you showed me, thx

  3. #7458
    FattyXP's Avatar Member
    Reputation
    20
    Join Date
    Feb 2009
    Posts
    168
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Xelper View Post
    If you have nothing targetted and it is lagging your WoW the rotation is probably not coded properly and is not handling having no target. Try enabling Lua errors in WoW (Escape -> Interface -> Help -> Display Lua Errors.) Post the error for the profile developer to fix. He likely needs to add a UnitExists("target") check prior to accessing information about a non-existant target.
    enabled errors, getting nothing from that.

  4. #7459
    aghost917's Avatar Corporal
    Reputation
    2
    Join Date
    Nov 2012
    Posts
    28
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    is there anyway to check if your target is mounted or not? or do i have to use all the flying mounts IDs?

  5. #7460
    g1teglover's Avatar Site Donator
    Reputation
    14
    Join Date
    Oct 2008
    Posts
    91
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by aghost917 View Post
    is there anyway to check if your target is mounted or not? or do i have to use all the flying mounts IDs?
    Not 100% sure that there's a way to do this in PQR as the mounts are neither buffs or debuffs and can't be looked into as such.

  6. #7461
    Edsaxe's Avatar Member
    Reputation
    2
    Join Date
    Sep 2011
    Posts
    91
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Techz View Post
    Hi all need help with the BM pvp profile made by Jarrito here http://www.ownedcore.com/forums/worl...pvp-5-1-a.html ([PQR] Hunter BM PVP (5.1))

    Ok i would like to try and make this work can anyone help me at all i would like to make it so in 2vs2 arena my focus enemy will get scatter shot and freezing trap on them everytime its on cd please




    Please help!!!
    You can still make this work but you need to mouseover the person you plan to trap and be within 20 yards

    Edit: you will still need to hold down left ctrl key with the code you posted but you can change this

    You can scatter focus on cd if in range but i think the trap needs a mouseover to get the position.
    Last edited by Edsaxe; 01-09-2013 at 03:32 AM.

  7. #7462
    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 aghost917 View Post
    is there anyway to check if your target is mounted or not? or do i have to use all the flying mounts IDs?
    Disregard the code I posted prior, never tried it before was just an idea. It looks like you'll need to do the UnitBuffID("target", Mounts ID), or just make a function and start creating a list for all the mount IDs =P sounds like a fun project there

    but I guess for anyone else if this helps, when I do RaF I have something like:
    Code:
    if UnitExists("Players name") and FollowMe then --FollowMe is the toggle name for if I want them to follow/mount listed below is the code for that
    	if UnitBuffID("Players name", 121820) then --Checking if they're mounted with the Obsidian Nightwing
    		InteractUnit("Players name")
    	end
    end
    and for my follow/mount toggle its:
    Code:
    if modtime == nil then
    	modtime = 0
    end
    
    if IsRightShiftKeyDown() and GetTime() - modtime > 1 then
    	modtime = GetTime()
    	if FollowMe then
    		FollowMe = nil
    		PQR_WriteToChat("Follow/Mount: \124cFFe61515Disabled")
    	else
    		FollowMe = 1
    		PQR_WriteToChat("Follow/Mount: \124cFF15E615Enabled")
    	end
    end
    I also have a follow ability:
    Code:
    if UnitExists("Players name") and FollowMe then
    	if not FollowUnit("Players name") then
    		FollowUnit("Players name")
    	end
    end
    of course where it says Players name you replace that with either target, focus or the specific players name

    hope I could have helped you
    Last edited by Nerder; 01-09-2013 at 03:17 AM. Reason: Didnt check before posted

  8. #7463
    Nov17's Avatar Sergeant Major CoreCoins Purchaser
    Reputation
    9
    Join Date
    Aug 2011
    Posts
    161
    Thanks G/R
    6/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    quick question. which profile does the most SMF dps single target?

  9. #7464
    Bendecks's Avatar Sergeant CoreCoins Purchaser
    Reputation
    5
    Join Date
    Aug 2011
    Posts
    66
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I am looking for a piece of code that makes me cast Pet Freeze (frost mage) on mouse location, by holding a modifier key.

    As far as I can see, the Nova frost profile does this:

    Code:
    local PQ_Freeze = PQ_Freeze
    local Nova_Spell = Nova_Spell
    
    if UnitExists("pet") then
    	if PQR_SpellAvailable(PQ_Freeze)
    		and IsLeftControlKeyDown()
    		and not GetCurrentKeyBoardFocus() then
    			SpellCancelQueuedSpell()
    			CastSpellByName(GetSpellInfo(PQ_Freeze),nil)
    			if SpellIsTargeting() then SpellCancelQueuedSpell() CameraOrSelectOrMoveStart() CameraOrSelectOrMoveStop() end
    			return true
    	end
    end
    How do I make this work with abother profile?

  10. #7465
    replikatoren's Avatar Active Member
    Reputation
    53
    Join Date
    Aug 2011
    Posts
    182
    Thanks G/R
    1/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by solva View Post
    quick question. which profile does the most SMF dps single target?
    Hey, maybe you should try this yourself. Go download every smf profile there is and test it ^^

  11. #7466
    Nov17's Avatar Sergeant Major CoreCoins Purchaser
    Reputation
    9
    Join Date
    Aug 2011
    Posts
    161
    Thanks G/R
    6/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by replikatoren View Post
    Hey, maybe you should try this yourself. Go download every smf profile there is and test it ^^
    of course i could test it. The whole point of asking someone who already has the experience is to save time. I could spend a good 30-60 minutes trying to find the profiles and another 60++ minutes to test them. Thats the whole purpose of teachers in schools, and education books. Save time.

  12. #7467
    Ninjaderp's Avatar Banned
    Reputation
    199
    Join Date
    Dec 2010
    Posts
    1,847
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    solva: try these profiles out, they are failroad/bgreen12's fury/arms pve&arms pvp-profiles, from what I've tried lately I've had best results with these.
    I packed them together and put them on mediafire, dont forget to put the data files in the datafolder:

    http://www.mediafire.com/?qn975s100ia7g9r
    Last edited by Ninjaderp; 01-09-2013 at 03:51 AM.

  13. #7468
    replikatoren's Avatar Active Member
    Reputation
    53
    Join Date
    Aug 2011
    Posts
    182
    Thanks G/R
    1/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by solva View Post
    of course i could test it. The whole point of asking someone who already has the experience is to save time. I could spend a good 30-60 minutes trying to find the profiles and another 60++ minutes to test them. Thats the whole purpose of teachers in schools, and education books. Save time.
    http://bit.ly/RFqkgK Here my fail edit rotation. Improved single Target, 2 Target und Aoe Target Rotation. Switch between single tar and two target rotation with right ctrl. +5 aoe target another rotation youve to load. Autobloodbath , Leaphotkey Mouse 3, Pausekey LAlt.
    Here by far the best smf/tg Profile, well in my opinion @ least.
    Also includes my Prot Rotation, just basic prot rotation, youve to use all def cds yourself ( ralley cry, demo shout, demo banner (left shift), skullbanner, schildblock, barrier, shieldwall etc) Ranked with both top 20 in HC raids
    Prot Keybindings -> Rctrl toggle aoe, rAlt toggle execute, mouse 3 leap, rshift demo banner
    Thanks for your rep
    Last edited by replikatoren; 01-09-2013 at 04:20 AM.

  14. #7469
    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 Weischbier View Post
    Can someone please debug this for me?
    No Abilities getting used , except AMZ and DnD.

    https://dl.dropbox.com/u/24969605/DEATHKNIGHT.rar

    Note: This won't perform better or equal to Kinkehs/Rubims profiles. This is a rotation based on Simc for my own character.

    greetz

    Weischbier
    I will look into it tomorrow for you. it is 0430 here :P

    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

  15. #7470
    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 Bendecks View Post
    I am looking for a piece of code that makes me cast Pet Freeze (frost mage) on mouse location, by holding a modifier key.

    As far as I can see, the Nova frost profile does this:

    Code:
    local PQ_Freeze = PQ_Freeze
    local Nova_Spell = Nova_Spell
    
    if UnitExists("pet") then
    	if PQR_SpellAvailable(PQ_Freeze)
    		and IsLeftControlKeyDown()
    		and not GetCurrentKeyBoardFocus() then
    			SpellCancelQueuedSpell()
    			CastSpellByName(GetSpellInfo(PQ_Freeze),nil)
    			if SpellIsTargeting() then SpellCancelQueuedSpell() CameraOrSelectOrMoveStart() CameraOrSelectOrMoveStop() end
    			return true
    	end
    end
    How do I make this work with abother profile?
    Code:
    if IsLeftControlKeyDown() then
    	if GetSpellCooldown(33395) == 0 then
    		CastSpellByName(GetSpellInfo(33395))
    		if SpellIsTargeting() then
    			CameraOrSelectOrMoveStart() CameraOrSelectOrMoveStop()
    		end
    	end
    end

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:49 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