[PQR] CuteOne's Profiles menu

User Tag List

Page 96 of 102 FirstFirst ... 469293949596979899100 ... LastLast
Results 1,426 to 1,440 of 1522
  1. #1426
    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)
    You must have changed the way the profile handles shred/mangle then. Without 2pc t15 the profile shouldn't mangle that much the way it comes. I've been trying to get a H Lei Shen group through openraid for H RoRo, but it's quite frustrating lol.

    I honestly have no idea why it is issuing FoN on CD outside of trinkets.... I have tried every combination of trinkets I have, roro, renataki, aoc, ted, it's all used correctly by the profile. I even tried completely naked lol. I would probably recommend a brand new installation of PQR and the profile. I've had issues previously that's required me to do the same.

    Sent from my Galaxy S4 using Tapatalk 2
    Last edited by cukiemunster; 10-25-2013 at 02:32 PM.

    [PQR] CuteOne's Profiles
  2. #1427
    Apsalaar's Avatar Member
    Reputation
    6
    Join Date
    Mar 2009
    Posts
    72
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by cukiemunster View Post
    You must have changed the way the profile handles shred/mangle then. Without 2pc t15 the profile shouldn't mangle that much the way it comes. I've been trying to get a H Lei Shen group through openraid for H RoRo, but it's quite frustrating lol.

    I honestly have no idea why it is issuing FoN on CD outside of trinkets.... I have tried every combination of trinkets I have, roro, renataki, aoc, ted, it's all used correctly by the profile. I even tried completely naked lol. I would probably recommend a brand new installation of PQR and the profile. I've had issues previously that's required me to do the same.

    Sent from my Galaxy S4 using Tapatalk 2
    Was a completly fresh install using the links from the first post here Have not changed anything bar the change to Shred Cute posted a page back.

    Doing 90M over 5min consistently is more than ok with me, and if I play FoN I prefer to use them manually anyway.

    Could there be any "config saves" that lingers anywhere?(Don't have a clue if there is any outside of PQI)

  3. #1428
    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)
    it seems the problem its a mistype

    the code on t4

    Code:
    if (dex<=1 or ubid(p,146310)) and fonchrg > 0 then
    		cast(gsi(fon))
    	end
    it consideres using fon when dex =0 so when no buff, so on cd

    changed for


    Code:
    if (dex>=1 or ubid(p,146310)) and fonchrg > 0 then
    		cast(gsi(fon))
    	end
    and its working fine now

  4. #1429
    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)
    Could also make it...


    Code:
    if ((dex>0 and dex<=1)or ubid(p,146310)) and fonchrg > 0 then
    		cast(gsi(fon))
    	end
    and that will fix it, fix it
    BadRotations
    Developer

  5. #1430
    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 cassrgs View Post
    it seems the problem its a mistype

    the code on t4

    Code:
    if (dex<=1 or ubid(p,146310)) and fonchrg > 0 then
    		cast(gsi(fon))
    	end
    it consideres using fon when dex =0 so when no buff, so on cd

    changed for


    Code:
    if (dex>=1 or ubid(p,146310)) and fonchrg > 0 then
    		cast(gsi(fon))
    	end
    and its working fine now
    Good catch. I use the modified Tier4 FoN code that I posted a few pages back, so I guess that's why it wasn't using them on CD for me.
    Code:
    if ((dex<=15 and dex>5) or ubid(p,146310)) and fonchrg > 0 then
      cast(gsi(fon))
     end

  6. #1431
    Apsalaar's Avatar Member
    Reputation
    6
    Join Date
    Mar 2009
    Posts
    72
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    YOU guys are the best, working flawless now

  7. #1432
    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)
    bleh Incarnation doesnt seem to want to cast at all despite the coding being right, I will see if i cant get this fixed tonight, was hoping to get it here at lunch but out of time. Later all
    BadRotations
    Developer

  8. #1433
    tinyblaze's Avatar Contributor CoreCoins Purchaser
    Reputation
    171
    Join Date
    May 2012
    Posts
    573
    Thanks G/R
    0/0
    Trade Feedback
    6 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    1. sometimes it spams the error message for not being behind the target and the rotation, if you could please add a check to shred during ooc procs or dunno for sure when they happen during the rotation. i have the shred glyph so it's not during berserk/tiger's fury
    2. sometimes during RoR procs the profile starts generating combo points and does a savage roar finisher. is it possible that if a proc occurs and sr is low, do a 0 cp sr to get time to apply a new rip till the proc expires? or maybe have the profile pooling more energy when waiting to ferocious bite maybe the RoR procs in the meantime
    anyway thanks for the work and support of the profile
    Last edited by tinyblaze; 10-28-2013 at 03:19 PM.

  9. #1434
    gamer6321's Avatar Member
    Reputation
    11
    Join Date
    Oct 2007
    Posts
    90
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yeah i have noticed the issue that the incarnation code was correct but was not popping. also even with a manual activation it will not use ravage.

  10. #1435
    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)
    Feral 1.4.3 is up

    --Fixed Incarnation....AGAIN!
    --Shred/Mangle logic Adjusted
    --Adjusted some other logics throughout the profile.
    BadRotations
    Developer

  11. #1436
    tinyblaze's Avatar Contributor CoreCoins Purchaser
    Reputation
    171
    Join Date
    May 2012
    Posts
    573
    Thanks G/R
    0/0
    Trade Feedback
    6 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i don't know if it's the latest update, buy i noticed 3 times during a fight today that it was replacing RoR rakes just as it expired. my guess is that pqr still sees the RoR buff and it tries to do a rake if <1.5 of the buff left but sometimes it does it a bit late and it's overwrting a RoR rake or doing it at the very end and the server registers the rake without the RoR buff. Is is possible that you add more checks to that?

  12. #1437
    Goldstash's Avatar Member CoreCoins Purchaser
    Reputation
    1
    Join Date
    Dec 2008
    Posts
    83
    Thanks G/R
    0/0
    Trade Feedback
    6 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    just updated profile and still using mangle....

  13. #1438
    tinyblaze's Avatar Contributor CoreCoins Purchaser
    Reputation
    171
    Join Date
    May 2012
    Posts
    573
    Thanks G/R
    0/0
    Trade Feedback
    6 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by setter View Post
    just updated profile and still using mangle....
    the profile is handling the combo generators pretty good. mangle is very good, for optimum dps shred should be only used during berserk or high energy periods. And rake when the rake damage+rake would be better than mangle

  14. #1439
    Goldstash's Avatar Member CoreCoins Purchaser
    Reputation
    1
    Join Date
    Dec 2008
    Posts
    83
    Thanks G/R
    0/0
    Trade Feedback
    6 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    so it is normal that with 2 parts of t16 profile is using mangle over shred? if it is so than ok. since it is using shred during berserk and tf

  15. #1440
    billythefukingkid's Avatar Private
    Reputation
    1
    Join Date
    Sep 2013
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    how does one download these profiles?

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 02:26 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