PQR - Rotation Bot menu

Shout-Out

User Tag List

Page 629 of 779 FirstFirst ... 129529579625626627628629630631632633679729 ... LastLast
Results 9,421 to 9,435 of 11681
  1. #9421
    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)
    I am looking to level up something. Anyone has a profile to suggest leveling 1-90? Preferably something that you also used while leveling.

    PQR - Rotation Bot
  2. #9422
    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)
    Anyone have the code for the following

    Optical Blast Level 90
    20 Energy 40 yd range
    Instant 24 sec cooldown
    Requires level 52
    Blasts the enemy with lasers, dealing 18 (+ 14% of SpellPower) Shadow damage and silencing the enemy for 3 sec.

    If used on a casting target, it will counter the enemy's spellcast, preventing any spell from that school of magic from being cast for 6 sec.


    The checks I guess would be that the pet has 20 energy and that the pet's target is casting a spell.

  3. #9423
    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)
    Also anyone have the code for these

    Twilight Ward (with 4 piece)
    Blood Horror

    Would like Twilight Ward to cast whenever not active.
    Would like Blood Horror to cast whenever not active and
    - target/mouseover/focus is in melee range and
    - life >25%.

  4. #9424
    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)
    Just updated my Ele/Enhance profiles
    [PQR] Cpoworks's PQR profiles
    WoW LUA Script Developer
    Need Something Custom? WarmaneScripts.com
    Skype - grapejuice111

  5. #9425
    scottoski's Avatar Corporal
    Reputation
    1
    Join Date
    Sep 2012
    Posts
    21
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Not sure what the problem is, but constantly crashing, sometimes more then other times. This has started since the last set of offsets were changed, but seems to me if I dont use to PQR and I run the game in 64bit it runs fine. Any suggestions?? Not sure what to do ty!!!

  6. #9426
    travis2861's Avatar Contributor
    Reputation
    99
    Join Date
    Aug 2007
    Posts
    227
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Would there be an easy way to calculate time to death? wracking my brain pretty hard =/

  7. #9427
    troxxer's Avatar Member
    Reputation
    3
    Join Date
    May 2008
    Posts
    19
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by travis2861 View Post
    Would there be an easy way to calculate time to death? wracking my brain pretty hard =/
    Code:
    ---------------------------- TIME TO DIE
    PlayerCombat		= UnitAffectingCombat("player")
    
    TimeToDie = 999999
    if UnitExists("target")
    and UnitCanAttack("player", "target") == 1
    and PlayerCombat then
    	if (guid ~= UnitGUID("target")) or (guid == UnitGUID("target") and UnitHealth("target") == _firstLifeMax) then
    		guid = UnitGUID("target")
    		_firstLife = UnitHealth("target")
    		_firstLifeMax = UnitHealthMax("target")
    		_firstTime = GetTime()
    	end             
    _currentLife = UnitHealth("target")
    _currentTime = GetTime()
    timeDiff = _currentTime - _firstTime
    hpDiff = _firstLife - _currentLife
    	if hpDiff > 0 then
    		fullTime = timeDiff*_firstLifeMax/hpDiff
    		pastFirstTime = (_firstLifeMax - _firstLife)*timeDiff/hpDiff
    		calcTime = _firstTime - pastFirstTime + fullTime - _currentTime
    		if calcTime < 1 then
    			calcTime = 1
    		end
       	TimeToDie = calcTime
    	end
    	if hpDiff <= 0 then
    		guid = UnitGUID("target")
    		_firstLife = UnitHealth("target")
    		_firstLifeMax = UnitHealth("target")
    		_firstTime = GetTime()
    	end
    
    -- dummy
    	if UnitHealthMax("target") == 1 then
    		TimeToDie = 99
    	end
    end

  8. #9428
    Thiraas's Avatar Member
    Reputation
    3
    Join Date
    Sep 2007
    Posts
    70
    Thanks G/R
    0/1
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Anybody got an idea why PQR is constantly crashing my WoW since today?

  9. #9429
    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)
    If anyone want to know the time till you are energy caped here you go.
    timeToCap = (UnitPowerMax("player") - UnitPower("player")) / GetPowerRegen()

    Just thought it would be useful.
    WoW LUA Script Developer
    Need Something Custom? WarmaneScripts.com
    Skype - grapejuice111

  10. #9430
    thenthelies's Avatar Member
    Reputation
    14
    Join Date
    Dec 2007
    Posts
    70
    Thanks G/R
    3/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    http://www.ownedcore.com/forums/worl...-donation.html (Need Storm, Earth, and Fire WW Monk tracking code ($20 donation))

    Posting this thread here in case one of you pro coders want to help me out for $20.

  11. #9431
    luac's Avatar Private
    Reputation
    1
    Join Date
    Apr 2013
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Edit: Figured out what was causing it. Because if you don't have target that you can cast power word shield on same time having weakened soul debuff on yourself then power word shield is grayed out as not available. So it work as meant to as long I have party1 targeted by my priest, if I don't have target that I can cast shield on and same time weakened soul on my priest then it as if spell wasn't available even if target unit could get new shield.

    Is this bug or am I missing something?
    I have nothing else in rotation since this was confusing hell out of me.

    Just simple:
    Code:
    PQR_CustomTarget = "party1"
    return true
    It should cast power word shield on party1 and it work like that unless I cast power word shield on myself then it simply stop until weakened soul is over on my priest before casting shield again on party1.


    Code:
    <Ability>
    <Name>PW:Shield</Name>
    <Default>false</Default>
    <SpellID>17</SpellID>
    <Actions/>
    <Lua>PQR_CustomTarget = &quot;party1&quot; return true</Lua>
    <RecastDelay>100</RecastDelay>
    <Target>Custom</Target>
    <CancelChannel>False</CancelChannel>
    <SkipUnknown>True</SkipUnknown>
    </Ability>
    Last edited by luac; 04-22-2013 at 11:43 AM.

  12. #9432
    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 luac View Post
    Is this bug or am I missing something?
    I have nothing else in rotation since this was confusing hell out of me.

    Just simple:
    Code:
    PQR_CustomTarget = "party1"
    return true
    It should cast power word shield on party1 and it work like that unless I cast power word shield on myself then it simply stop until weakened soul is over on my priest before casting shield again on party1.


    Code:
    <Ability>
    <Name>PW:Shield</Name>
    <Default>false</Default>
    <SpellID>17</SpellID>
    <Actions/>
    <Lua>PQR_CustomTarget = "party1" return true</Lua>
    <RecastDelay>100</RecastDelay>
    <Target>Custom</Target>
    <CancelChannel>False</CancelChannel>
    <SkipUnknown>True</SkipUnknown>
    </Ability>
    Edit: Figured out whats causing it. Because if you don't have target power word shield ability is grayed out as not available. So it work as meant to as long I have party1 targeted by my priest, if I don't have target that I can cast shield on and same time weakened soul on my priest then it as if spell wasn't available even if target unit could get new shield.
    I don't like or use PQR's default cast functions, it works for some classes, but not for all.

    Try setting SkipUnknown to False

  13. #9433
    Weird0's Avatar Contributor
    Reputation
    137
    Join Date
    Jan 2009
    Posts
    352
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    any plans making a version for 1.12.1

  14. #9434
    crystal_tech's Avatar Elite User
    Reputation
    468
    Join Date
    Feb 2008
    Posts
    1,036
    Thanks G/R
    1/6
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by cpowroks View Post
    If anyone want to know the time till you are energy caped here you go.
    timeToCap = (UnitPowerMax("player") - UnitPower("player")) / GetPowerRegen()

    Just thought it would be useful.
    did 100 for max, 4 for current, and 4 for regen (about what hunters get) and got 24

    seems correct

    Please if someone helped you donate rep to them.

  15. #9435
    travis2861's Avatar Contributor
    Reputation
    99
    Join Date
    Aug 2007
    Posts
    227
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Just posted about a mash up fury profile that I stitched together if your interested: Link here

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 12:57 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