PQR - Rotation Bot menu

Shout-Out

User Tag List

Page 413 of 779 FirstFirst ... 313363409410411412413414415416417463513 ... LastLast
Results 6,181 to 6,195 of 11681
  1. #6181
    Xvvt's Avatar Private
    Reputation
    1
    Join Date
    Jan 2012
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I may get the award for n00b question of the day, nonetheless here goes.

    The Crystal_Tech SV profile I use has left shift being used as a toggle, which works flawlessly if i tap lshift. The problem is that if I hold it down LShift for longer than .2 seconds it cycles (repeats) enabled/disabled continually until released. The default setting for the toggle is set at .2 sec, so I attempted to increase that time to various amounts to no avail. Ideally I would like it where, shift key down, shift key up = toggle. I don't know if this is an issue with sticky keys? my hardware or a profile issue. I've tried enabling and disabling sticky keys. I've attempted key repeat speed from control panel, and frankly I'm stumped.

    If it is in fact a LShift issue that can not be changed for whatever reason, I would like to change default profile bindings. So far I have been unsuccessful in pulling that off even with reading Crys_Techs tutorial regarding a similiar question. Any guidance/ideas would be appreciated.

    Code:
     --Code by Crystal_tech
    if modtime == nil then
    	modtime = 0
    end
    
    ---Toggle for Main CDs
    if lShift and GetTime() - modtime > .2 then
    	modtime = GetTime()
    	if CDSwap then 
    		CDSwap = nil
    		PQR_WriteToChat("Rapid Fire, Readiness, Stampede: \124cFFE61515Disabled")
    	else
    		CDSwap = 1
    		PQR_WriteToChat("Rapid Fire, Readiness, Stampede: \124cFF15E615Enabled")
    	end
    end
    
    --End Code By Crystal_tech
    Last edited by Xvvt; 11-20-2012 at 09:01 AM. Reason: code requested

    PQR - Rotation Bot
  2. #6182
    Kinky's Avatar Banned CoreCoins Purchaser
    Reputation
    481
    Join Date
    Nov 2008
    Posts
    500
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Alrighty - A few updates as to why I've not been so active the past few days. :P I'm getting ready for an exam next week so I've just spent the past two days trying to catch up and refresh on my subjects. Furthermore my poor baby got a hernia so I've had to spend some extra time together with him after seeing the doctors.

    My Fire Mage profile is pretty much done.. I still have some timing issues with Combustion, as in, it's disregarding my checks regardless of the coding hierarchy, which has gotten me pretty annoyed. For now, it has a few different profiles:
    - Single-Target (Auto-PoM): This will basically cast Alter Time and Presence of Mind for you, in the best possible way and scenario.
    - Single-Target (Auto-PoM - High Crit): Same as above, this profile will use Alter Time and Presence of Mind for you in the best possible way and scenario. This is designed for people with high crit levels (25-27%+) and should yield more DPS than the normal profile.
    - Single-Target (Manual): This profile will not automatically use Alter Time for you. If Presence of Mind is your selected Tier 1 talent, it will automagically use this for you.
    - Single-Target (Maual - High Crit): Again as above, slightly modified for people with high crit values. If Presence of Mind talent is your selected Tier 1 talent, it will automagically use this for you.

    All the profiles comes with a Hold Cooldown trigger, and a AoE hold trigger. (Press and hold to AoE on mouseover location.) Personally, with very crap gear (iLvl 453, 14.3% hit, 18% crit/mastery) against a Heroic Training Dummy, have managed to generate a sustainable 67k DPS without much effort. Again this is RNG based and I missed around 5% of my spells, so it solely depends on the person currently using it and his/her gear. Reforging to reach the hit cap, I managed to pull 150k something DPS on Heroic Elegon. (Will update this post with an image afterwards.)

    Furthermore, I slightly updated Shadow Priests as I noticed there were an issue with Mind Spike not casting while running, (beats me why I did that.) and mindlessly spamming Shadow Word: Pain, which it shouldn't do. The Shadow Priest update should be coming later today as well, properly casting Mind Spike while moving as well as Shadow Word: Pain when you have above 75% Mana and no Mind Spike procs.

    As always guys, don't forget that we've changed our SVN host from Google Code to Assembla. You can find our new home here, Team Nova @ Assembla.com

    @Xvvt: Could you paste the code enclosed in a code tag, please? =)

  3. #6183
    crystal_tech's Avatar Elite User
    Reputation
    468
    Join Date
    Feb 2008
    Posts
    1,033
    Thanks G/R
    1/6
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Xvvt View Post
    I may get the award for n00b question of the day, nonetheless here goes.

    The Crystal_Tech SV profile I use has left shift being used as a toggle, which works flawlessly if i tap lshift. The problem is that if I hold it down LShift for longer than .2 seconds it cycles (repeats) enabled/disabled continually until released. The default setting for the toggle is set at .2 sec, so I attempted to increase that time to various amounts to no avail. Ideally I would like it where, shift key down, shift key up = toggle. I don't know if this is an issue with sticky keys? my hardware or a profile issue. I've tried enabling and disabling sticky keys. I've attempted key repeat speed from control panel, and frankly I'm stumped.

    If it is in fact a LShift issue that can not be changed for whatever reason, I would like to change default profile bindings. So far I have been unsuccessful in pulling that off even with reading Crys_Techs tutorial regarding a similiar question. Any guidance/ideas would be appreciated.

    Code:
     --Code by Crystal_tech
    if modtime == nil then
    	modtime = 0
    end
    
    ---Toggle for Main CDs
    if lShift and GetTime() - modtime > .2 then
    	modtime = GetTime()
    	if CDSwap then 
    		CDSwap = nil
    		PQR_WriteToChat("Rapid Fire, Readiness, Stampede: \124cFFE61515Disabled")
    	else
    		CDSwap = 1
    		PQR_WriteToChat("Rapid Fire, Readiness, Stampede: \124cFF15E615Enabled")
    	end
    end
    
    --End Code By Crystal_tech
    your wanting it the way It was in Cata? where you have to hold the shift key to activate the spells? I can do that/did do that however with the spam fest of new spells I found myself holding the shift key for too long for what they did hence the toggle.

    Please if someone helped you donate rep to them.

  4. #6184
    Xvvt's Avatar Private
    Reputation
    1
    Join Date
    Jan 2012
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I would like to have it where the toggle doesn't happen until keystroke up. That way i could still use shift down as a modifier for a number of other binds I use. Basically get 2 modifiers out of one key.

  5. #6185
    crystal_tech's Avatar Elite User
    Reputation
    468
    Join Date
    Feb 2008
    Posts
    1,033
    Thanks G/R
    1/6
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Xvvt View Post
    I would like to have it where the toggle doesn't happen until keystroke up. That way i could still use shift down as a modifier for a number of other binds I use. Basically get 2 modifiers out of one key.
    ah, I don't think i can do that. Due to the fact its using IsLeftShiftKeyDown() api so its only going to return a true or false. now if you want to try something try this:

    IsModifierKeyDown - World of Warcraft Programming: A Guide and Reference for Creating WoW Addons

    Please if someone helped you donate rep to them.

  6. #6186
    Xvvt's Avatar Private
    Reputation
    1
    Join Date
    Jan 2012
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks for the quick responses, that link is going to help immensely.

    @mentally - Best wishes on a speedy recovery for the little one.

  7. #6187
    Gazzooks's Avatar Active Member
    Reputation
    46
    Join Date
    Jul 2006
    Posts
    146
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Hoblerhans View Post
    U should use Team Novas Windwalkerprofile for leveling.
    Make sure u disable AOE (I think pressing left ALT or left CTRL) after starting with alt-x because u have none till lvl46.
    I am using it with my little panda monk and it works just fine.

    Happy lvling
    Thanks Hoblerhans for the heads up, I will check it out

    Originally Posted by googlebee View Post
    Make sure you are running World of Warcraft in 32 bit mode as well.

    In the launcher for WoW, upper left corner: Click on Options > Game Preferences > make sure *Launch 32 bit Client* is checked.

    If that doesn't solve your issue, then it is indeed the profile not supporting your level. (The majority of all profiles are written for lvl 85-90
    I am running in windowed mode and in 32 bit mode.


    My own notes:

    I am assuming all i had to do was hit alt -x , are there any other keys to hit to tell it when it is supposed to attack a tgt?
    Last edited by Gazzooks; 11-20-2012 at 11:10 AM.

  8. #6188
    kclux's Avatar Active Member
    Reputation
    16
    Join Date
    Jun 2011
    Posts
    199
    Thanks G/R
    2/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @Mentally aww poor baby hope he will get well again soon Looking forward to see your mage profile, will PoM be mandatory or does it also support scorch ?

  9. #6189
    Kinky's Avatar Banned CoreCoins Purchaser
    Reputation
    481
    Join Date
    Nov 2008
    Posts
    500
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @Xvvt : Thanks.
    @kclux: I hope so too! And no, Presence of Mind isn't mandatory in any of my profiles. Of course it's supporting Scorch as well!

  10. #6190
    n1bl3r's Avatar Corporal
    Reputation
    6
    Join Date
    Jul 2011
    Posts
    26
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @mentally, cant wait for your mage profile. Have you seen this article about changes to arcane and Combustion coming in 5.1?
    Arcane Brilliance: Patch 5.1 preview for mages

    Hope your baby gets well soon!

  11. #6191
    Kinky's Avatar Banned CoreCoins Purchaser
    Reputation
    481
    Join Date
    Nov 2008
    Posts
    500
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @n1bl3r: Yeah, I'm aware of it. =)

  12. #6192
    Andilizer's Avatar Private
    Reputation
    1
    Join Date
    Mar 2012
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Would someone be able to help me with checking a DK function?

    I want to be able to check if I have a ghoul up and I'm at < 40 hp and cast Death Pact.

    This is what I'm using but it doesn't seem to want to work.

    PHP Code:
    local health 100 UnitHealth("player") / UnitHealthMax("player")

    if 
    PQR_SpellAvailable(46584)
    and 
    health 40
    and UnitExists("pet")
    then 
    return true
    end 
    Last edited by Andilizer; 11-20-2012 at 06:35 PM.

  13. #6193
    NicodemusAtNIMH's Avatar Member
    Reputation
    1
    Join Date
    Jun 2008
    Posts
    48
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    went to new site how do i update profiles from pqr program?

  14. #6194
    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)
    Originally Posted by NicodemusAtNIMH View Post
    went to new site how do i update profiles from pqr program?
    First make sure the profile you use support updating through the program, and if it does its in the rotation editor.

  15. #6195
    Beelzix's Avatar Member
    Reputation
    1
    Join Date
    Jun 2011
    Posts
    58
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    would anyone happen to have a link for a ret pally pvp profile for 5.0+

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