[PQR] CuteOne's Profiles menu

User Tag List

Page 29 of 102 FirstFirst ... 25262728293031323379 ... LastLast
Results 421 to 435 of 1522
  1. #421
    ph34rt3hcute1's Avatar Contributor Authenticator enabled
    Reputation
    287
    Join Date
    Nov 2012
    Posts
    734
    Thanks G/R
    7/61
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by cukiemunster View Post
    Yah I knew you were of the female persuasion lol. What exactly does that code do? I see there are still 3 modes.

    Sent from my Galaxy S3 using Tapatalk 2
    The "--" in front comments out (prevents) those lines from executing. It's a way make changes without deleting code that may be wanted later.

    Sent from my Nexus 10 using Tapatalk HD
    BadRotations
    Developer

    [PQR] CuteOne's Profiles
  2. #422
    cukiemunster's Avatar Contributor
    Reputation
    132
    Join Date
    Dec 2009
    Posts
    1,129
    Thanks G/R
    1/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Good I am blind lol. Good work!

    Sent from my Galaxy S3 using Tapatalk 2

  3. #423
    vasek75's Avatar Private
    Reputation
    1
    Join Date
    Apr 2012
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    nice work, tnx. but i have a lags =/...

  4. #424
    ph34rt3hcute1's Avatar Contributor Authenticator enabled
    Reputation
    287
    Join Date
    Nov 2012
    Posts
    734
    Thanks G/R
    7/61
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Which wow client?

    Sent from my Nexus 4 using Tapatalk 2
    BadRotations
    Developer

  5. #425
    Morx's Avatar Member
    Reputation
    1
    Join Date
    May 2013
    Posts
    49
    Thanks G/R
    3/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Kind of on the same topic of the different modes? I like having all 3 modes, but sometimes, I want to go from Single to Multi, or Hybrid, to Single, but I have to cycle through them. Is there a way to add hotkeys to go directly to one mode or the other?

    Can I set Alt-X and Alt-Z for Single and Multi, and just use Right Shift if I want to go into Hybrid?

    Thanks CuteOne!

  6. #426
    vasek75's Avatar Private
    Reputation
    1
    Join Date
    Apr 2012
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ph34rt3hcute1 View Post
    Which wow client?

    Sent from my Nexus 4 using Tapatalk 2
    5.2.0. lang - rus. can u help me pls?

  7. #427
    ph34rt3hcute1's Avatar Contributor Authenticator enabled
    Reputation
    287
    Join Date
    Nov 2012
    Posts
    734
    Thanks G/R
    7/61
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    The lag is caused by PQR_UnitFacing which is there to check if you are behind the target. I ask which wow client because the workaround i have for this relies on checking the combat log for the following error:
    Code:
    "You must be behind your target."
    Now if i can get a translation for that phrase for each client then I can use the workaround for them, until then the lag fix is only for EN-US Clients
    BadRotations
    Developer

  8. #428
    ph34rt3hcute1's Avatar Contributor Authenticator enabled
    Reputation
    287
    Join Date
    Nov 2012
    Posts
    734
    Thanks G/R
    7/61
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Morx View Post
    Kind of on the same topic of the different modes? I like having all 3 modes, but sometimes, I want to go from Single to Multi, or Hybrid, to Single, but I have to cycle through them. Is there a way to add hotkeys to go directly to one mode or the other?

    Can I set Alt-X and Alt-Z for Single and Multi, and just use Right Shift if I want to go into Hybrid?

    Thanks CuteOne!
    Well I am wanting to allow direct switching of rotations using the rotation hotkey but I am not sure if there is a command that will return which rotation is loaded.
    BadRotations
    Developer

  9. #429
    cukiemunster's Avatar Contributor
    Reputation
    132
    Join Date
    Dec 2009
    Posts
    1,129
    Thanks G/R
    1/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ph34rt3hcute1 View Post
    I would do this....
    Code:
    if IsRightShiftKeyDown() and not GetCurrentKeyBoardFocus() and GetTime() - PQ_AOETimer > 1 then
    	PQ_AOETimer = GetTime()
    	
    	if PQ_AOE then
    		PQ_AOE = false
    		AOEMode = 0
    		PQ_Rot = "Single"
    		PQR_SwapRotation("Kitty-Single (CuteOne)")
    		PQR_WriteToChat("|cff347C2CCooldown Mode: |cffDC143CSingle|cffffffff", "Notice")
    	--elseif AOEMode==0 then
    	--	PQ_AOE = false
    	--	AOEMode = 1
    	--	PQ_Rot = "Hybrid"
    	--	PQR_WriteToChat("|cff347C2CAOE Mode: |cff79BAECHybrid|cffffffff", "Notice")
    	elseif AOEMode==1 then
    		PQ_AOE = true
    		AOEMode = 1 --2
    		PQ_Rot = "Multi"
    		PQR_WriteToChat("|cff347C2CCooldown Mode: |cff006400Multi|cffffffff", "Notice")
    		PQR_SwapRotation("Kitty-Multi (CuteOne)")
    	end
    end
    Doing this broke the toggle function for some reason, does not work at all now

  10. #430
    ph34rt3hcute1's Avatar Contributor Authenticator enabled
    Reputation
    287
    Join Date
    Nov 2012
    Posts
    734
    Thanks G/R
    7/61
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Doh! Change it like this.
    Code:
    if IsRightShiftKeyDown() and not GetCurrentKeyBoardFocus() and GetTime() - PQ_AOETimer > 1 then
    	PQ_AOETimer = GetTime()
    	
    	if PQ_AOE then
    		PQ_AOE = false
    		AOEMode = 0
    		PQ_Rot = "Single"
    		PQR_SwapRotation("Kitty-Single (CuteOne)")
    		PQR_WriteToChat("|cff347C2CCooldown Mode: |cffDC143CSingle|cffffffff", "Notice")
    	--elseif AOEMode==0 then
    	--	PQ_AOE = false
    	--	AOEMode = 1
    	--	PQ_Rot = "Hybrid"
    	--	PQR_WriteToChat("|cff347C2CAOE Mode: |cff79BAECHybrid|cffffffff", "Notice")
    	elseif AOEMode==0 then --1 then
    		PQ_AOE = true
    		AOEMode = 2
    		PQ_Rot = "Multi"
    		PQR_WriteToChat("|cff347C2CCooldown Mode: |cff006400Multi|cffffffff", "Notice")
    		PQR_SwapRotation("Kitty-Multi (CuteOne)")
    	end
    end
    BadRotations
    Developer

  11. #431
    cukiemunster's Avatar Contributor
    Reputation
    132
    Join Date
    Dec 2009
    Posts
    1,129
    Thanks G/R
    1/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Just tried using Incarnation for Ji-Kun, and the profile locked up completely the entire time Inc was up, sat at 100 Energy, had to manually push buttons till it dropped D=

    lol

  12. #432
    ph34rt3hcute1's Avatar Contributor Authenticator enabled
    Reputation
    287
    Join Date
    Nov 2012
    Posts
    734
    Thanks G/R
    7/61
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Wonder why.... i seem to remember an earlier report of that and i remembering a solution but i don't now =(

    I will look into it and see what's up.
    BadRotations
    Developer

  13. #433
    ph34rt3hcute1's Avatar Contributor Authenticator enabled
    Reputation
    287
    Join Date
    Nov 2012
    Posts
    734
    Thanks G/R
    7/61
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Got it, wrong spell id

    Uploaded fixes!
    BadRotations
    Developer

  14. #434
    cukiemunster's Avatar Contributor
    Reputation
    132
    Join Date
    Dec 2009
    Posts
    1,129
    Thanks G/R
    1/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Date: 2013-05-09 21:50:20
    ID: 1
    Error occured in: Global
    Count: 1
    Message: [string "if not PQR_LoadedDataFile then..."] line 69:
    attempt to compare nil with number
    Debug:
    [string "if not PQR_LoadedDataFile then..."]:69: ttd()
    [string "if PQR_RotationStarted == true then ..."]:703: ?()
    [string "if PQR_Addon_Loaded == nil then..."]:765: PQR_NextAbility()
    [string "if PQR_Addon_Loaded == nil then..."]:534: PQR_ExecuteRotation()
    [string "if PQR_Addon_Loaded == nil then..."]:287:
    [string "if PQR_Addon_Loaded == nil then..."]:214
    Locals:
    unit = "target"
    (*temporary) = 37274650
    (*temporary) = nil
    (*temporary) = 37274650
    (*temporary) = "0xF131123A000000D1"
    (*temporary) = nil
    (*temporary) = "attempt to compare nil with number"

    AddOns:
    Swatter, v5.16.5405 (MousyMulgara)
    ACP, v3.4.2
    Auctionator, v3.1.3
    Babylonian, v5.1.DEV.332(/embedded)
    BeanCounter, v5.16.5405 (MousyMulgara)
    Chatter, v1.4.4
    Configator, v5.1.DEV.344(/embedded)
    DBMCore, v
    DBMThroneofThunder, v
    DebugLib, v5.1.DEV.337(/embedded)
    Enchantrix, v5.16.5405 (MousyMulgara)
    EnchantrixBarker, v5.16.5405 (MousyMulgara)
    ErrorFilter, v2.8
    LibExtraTip, v5.12.DEV.350(/embedded)
    LibGraph20, v2.0.2
    MikScrollingBattleText, v5.7.128
    OmniCC, v5.2.3
    PQInterface, v2.22
    Skada, v1.4-11
    SkadaCC, v1.0
    SkadaDamage, v1.0
    SkadaDamageTaken, v1.0
    SkadaDeaths, v1.0
    SkadaDebuffs, v1.0
    SkadaDispels, v1.0
    SkadaEnemies, v1.0
    SkadaGraph, v1.0
    SkadaHealing, v1.0
    SkadaPower, v1.0
    SkadaThreat, v1.0
    SlideBar, v5.16.5405 (MousyMulgara)
    Stubby, v5.16.5405 (MousyMulgara)
    TipHelper, v5.12.DEV.343(/embedded)
    XPerl, v3.6.35
    XPerlArcaneBar, v
    XPerlPlayer, v
    XPerlPlayerBuffs, v
    XPerlPlayerPet, v
    XPerlRaidAdmin, v
    XPerlRaidHelper, v
    XPerlRaidMonitor, v
    XPerlTarget, v
    XPerlTargetTarget, v
    BlizRuntimeLib_enUS v5.2.0.50200 <us>
    (ck=459)
    getting this for some reason now, not sure

  15. #435
    ph34rt3hcute1's Avatar Contributor Authenticator enabled
    Reputation
    287
    Join Date
    Nov 2012
    Posts
    734
    Thanks G/R
    7/61
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    TTD will sometimes do that.... its annoying not sure of the issue, but I have found reloading ui works.
    BadRotations
    Developer

Similar Threads

  1. [PQR] Nova Team Profiles
    By bu_ba_911 in forum WoW Bot Maps And Profiles
    Replies: 2341
    Last Post: 07-02-2018, 03:56 AM
  2. [PQR] Gabbz Mage Profiles
    By Gabbz in forum WoW Bot Maps And Profiles
    Replies: 207
    Last Post: 07-18-2016, 08:00 PM
  3. {PQR} Windwalker Raid Profile - Wanted
    By fish221171 in forum WoW Bot Maps And Profiles
    Replies: 3
    Last Post: 10-18-2012, 02:01 AM
  4. PQR - DK Blood profiles - none of them work :(
    By zambeaux in forum WoW Bot Maps And Profiles
    Replies: 4
    Last Post: 10-09-2012, 07:44 AM
  5. PQR PVP Hunter profile?
    By aLorzy91 in forum WoW Bots Questions & Requests
    Replies: 0
    Last Post: 07-29-2012, 02:32 AM
All times are GMT -5. The time now is 03:01 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