[PQR] CuteOne's Profiles menu

User Tag List

Page 64 of 102 FirstFirst ... 14606162636465666768 ... LastLast
Results 946 to 960 of 1522
  1. #946
    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 Vinshom View Post
    Your profile with some pvp elements added is a killer. I have added some pvp codes to it, if you dont mind doing me a favor please, add a burst key, then I will share the rest of the codes with you for the pvp so you can post a new feral pvp thread if you want to.
    Sounds like a ransom, anyways what do you mean by burst key?
    BadRotations
    Developer

    [PQR] CuteOne's Profiles
  2. #947
    cassrgs's Avatar Master Sergeant Authenticator enabled
    Reputation
    9
    Join Date
    Oct 2011
    Posts
    90
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hello there cute
    i tried to use your profile on ptr today and got this error

    Code:
    Message: [string "if not PQR_LoadedDataFile then..."]:35: Division by zero
    Time: 07/26/13 01:52:01
    Count: 32
    Stack: [string "if not PQR_LoadedDataFile then..."]:35: in function `shcom'
    [string "if PQR_RotationStarted == true then ..."]:25: in function `?'
    [string "if PQR_Addon_Loaded == nil then..."]:765: in function `PQR_NextAbility'
    [string "if PQR_Addon_Loaded == nil then..."]:534: in function `PQR_ExecuteRotation'
    [string "if PQR_Addon_Loaded == nil then..."]:287: in function <[string "if PQR_Addon_Loaded == nil then..."]:214>
    
    Locals: (*temporary) = 0
    (*temporary) = 0
    (*temporary) = "target"
    (*temporary) = 0
    (*temporary) = "Division by zero"
    what could it be?

  3. #948
    Vinshom's Avatar Contributor
    Reputation
    86
    Join Date
    Apr 2012
    Posts
    428
    Thanks G/R
    11/21
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ph34rt3hcute1 View Post
    Sounds like a ransom, anyways what do you mean by burst key?
    hehe, Burst key is one key where all cooldowns are executed once with one button. For example mouse button 5 casts all cooldowns once.

  4. #949
    houstonguy's Avatar Banned CoreCoins Purchaser Authenticator enabled
    Reputation
    6
    Join Date
    Apr 2007
    Posts
    68
    Thanks G/R
    0/1
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    its weird cause i play a rogue also using vitalic and my fps seems fine in heroic tot

  5. #950
    Vinshom's Avatar Contributor
    Reputation
    86
    Join Date
    Apr 2012
    Posts
    428
    Thanks G/R
    11/21
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Vinshom View Post
    hehe, Burst key is one key where all cooldowns are executed once with one button. For example mouse button 5 casts all cooldowns once.
    Nvm you have burst key, wonder what key is it ? lol

  6. #951
    shodnorse's Avatar Private
    Reputation
    1
    Join Date
    Nov 2012
    Posts
    13
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi Cute! I would like to express my gratitude to you! Your feral cat profile is very good! works perfectly! I wish you all the best! Keep updated it pls )

  7. #952
    cassrgs's Avatar Master Sergeant Authenticator enabled
    Reputation
    9
    Join Date
    Oct 2011
    Posts
    90
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i found what was causing the error on ptr, UnithealthMax() returns 0 when there is no target so i changed

    thp = 100*(UnitHealth(t)/UnitHealthMax(t)) on datafile for

    if UnitExists("target") then
    thp = 100*(UnitHealth(t)/UnitHealthMax(t))
    else
    thp = 0
    end

    that solved this part then i got errors regardint UnitBuffID and UnitDebuffID, it seems ptr cant use the pqr function and keep saying the usage of UnitBuff is wrong
    so i changed datafile again using names instead of the ids. it was easy since cutte already posted on the coment on the side of each id
    so then i got a third error

    Code:
    Message: [string "if PQR_Addon_Loaded == nil then..."]:765: attempt to call field '?' (a nil value)
    Time: 07/26/13 05:42:07
    Count: 328
    Stack: [string "if PQR_Addon_Loaded == nil then..."]:765: in function `PQR_NextAbility'
    [string "if PQR_Addon_Loaded == nil then..."]:534: in function `PQR_ExecuteRotation'
    [string "if PQR_Addon_Loaded == nil then..."]:287: in function <[string "if PQR_Addon_Loaded == nil then..."]:214>
    
    Locals: rotationNumber = 0
    nextAbility = -1
    playerChanneling = false
    (for index) = 0
    (for limit) = 1023
    (for step) = 1
    i = 0
    spellID = 0
    skipUnknown = false
    (*temporary) = nil
    (*temporary) = "attempt to call field '?' (a nil value)"
    any ideas?

  8. #953
    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 cassrgs View Post
    i found what was causing the error on ptr, UnithealthMax() returns 0 when there is no target so i changed

    thp = 100*(UnitHealth(t)/UnitHealthMax(t)) on datafile for

    if UnitExists("target") then
    thp = 100*(UnitHealth(t)/UnitHealthMax(t))
    else
    thp = 0
    end

    that solved this part then i got errors regardint UnitBuffID and UnitDebuffID, it seems ptr cant use the pqr function and keep saying the usage of UnitBuff is wrong
    so i changed datafile again using names instead of the ids. it was easy since cutte already posted on the coment on the side of each id
    so then i got a third error

    Code:
    Message: [string "if PQR_Addon_Loaded == nil then..."]:765: attempt to call field '?' (a nil value)
    Time: 07/26/13 05:42:07
    Count: 328
    Stack: [string "if PQR_Addon_Loaded == nil then..."]:765: in function `PQR_NextAbility'
    [string "if PQR_Addon_Loaded == nil then..."]:534: in function `PQR_ExecuteRotation'
    [string "if PQR_Addon_Loaded == nil then..."]:287: in function <[string "if PQR_Addon_Loaded == nil then..."]:214>
    
    Locals: rotationNumber = 0
    nextAbility = -1
    playerChanneling = false
    (for index) = 0
    (for limit) = 1023
    (for step) = 1
    i = 0
    spellID = 0
    skipUnknown = false
    (*temporary) = nil
    (*temporary) = "attempt to call field '?' (a nil value)"
    any ideas?
    I don't know what to tell you as I do not use PTR (stuff in PTR is subject to change without notice so kinda pointless imo to try to code for it.)

    Originally Posted by shodnorse View Post
    Hi Cute! I would like to express my gratitude to you! Your feral cat profile is very good! works perfectly! I wish you all the best! Keep updated it pls )
    Thanks, glad you enjoy it.

    Originally Posted by Vinshom View Post
    Nvm you have burst key, wonder what key is it ? lol
    Toggle Cooldown usage to "On" that will cause the profile to use cooldowns regardless of if target is boss or not, that being said though Berserk will only cast after a Tiger's Fury as that is the optimal usage.
    BadRotations
    Developer

  9. #954
    mindwarp80's Avatar Private
    Reputation
    1
    Join Date
    Feb 2013
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Loving this Rotation for my Arms warrior, it's by far the best, but my only problem is that it will cast Disrupting Shout AND Pummel for a single target's cast using 1.1.2. I tried to look at the lua and maybe find out how to fix it, but it's far too complex learning all the abbreviations.

    Updated to 1.1.4 and no longer uses Disrupting Shout? :'(
    Last edited by mindwarp80; 07-26-2013 at 12:35 PM.

  10. #955
    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 mindwarp80 View Post
    Loving this Rotation for my Arms warrior, it's by far the best, but my only problem is that it will cast Disrupting Shout AND Pummel for a single target's cast. I tried to look at the lua and maybe find out how to fix it, but it's far too complex learning all the abbreviations.

    Nevermind, updated to 1.1.4 Arms and it works perfectly Thanks so much
    You're welcome =)
    BadRotations
    Developer

  11. #956
    KaozChicks's Avatar Private
    Reputation
    1
    Join Date
    Aug 2008
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I updated the feral profile to the latest version last night before my raid, and discovered that the profile is now charging (skull bash) the heads on the megaera fight when they start to cast their breaths. A manual fix was to target a player instead of a head when DBM told me that the breath was about to be cast, but I was wondering if this was an intended change.

    Thanks, apart from that the profile is great, and the last update was about a 5-6k dps increase on a dummy test for me.

  12. #957
    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)
    Removing the interrupt ability from the rotation using the ability editor for that fight would also do it.
    Yeah anyone that has Renataki's Soul Charm will definitely notice a dps increase with the latest version, along with Blizz's hotfix buff of the RPPM trinkets.

    Sent from my Galaxy S4 using Tapatalk 2
    Last edited by cukiemunster; 07-26-2013 at 02:17 PM.

  13. #958
    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)
    I have noticed an issue with the use of skull bash at non-opportune times, I will be looking into this as its not intended.
    BadRotations
    Developer

  14. #959
    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 ph34rt3hcute1 View Post
    I have noticed an issue with the use of skull bash at non-opportune times, I will be looking into this as its not intended.
    Yep that was my mess-up put the code edit on the wrong ability, fixed now just redownload.
    BadRotations
    Developer

  15. #960
    kwalti's Avatar Member
    Reputation
    8
    Join Date
    Feb 2011
    Posts
    129
    Thanks G/R
    1/0
    Trade Feedback
    5 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hello there,

    Using your Feral Cat pofile for levelling (61), works like a charm.
    Althogh i am wondering if its possible to put the AOE Mode to pushm not to switch.
    Like if i hold Left Shift, it does the AOE rotation. Also any way to elminiate Hybrid Rotation so the AOE Switch key would work too.
    I already changed the key to Left Shift, but i would be happier if it would be hold down to AOE.

    Thank you

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 11:07 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