[PQR] Rubim Profiles menu

User Tag List

Page 14 of 68 FirstFirst ... 10111213141516171864 ... LastLast
Results 196 to 210 of 1007
  1. #196
    Ballerstatus121's Avatar Member
    Reputation
    1
    Join Date
    Sep 2012
    Posts
    64
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Rubim, I don't understand why but the glove slots, raise dead, and a few other abilities aren't working on the newer revisions for the DK profile.. I'm forced to use an older one. Apparently it's only me though because everyone else seems to be fine!

    [PQR] Rubim Profiles
  2. #197
    mokkajojo's Avatar Member
    Reputation
    1
    Join Date
    Feb 2013
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    in the new monk profile

    how can i delete tiger eye from the current ability list ( isnt listed itself anymore )

    and what is the toggle from chi wave so that it use it on cd ?
    Last edited by mokkajojo; 03-10-2013 at 09:30 PM.

  3. #198
    Rubim's Avatar Contributor
    Reputation
    247
    Join Date
    Mar 2010
    Posts
    267
    Thanks G/R
    4/7
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Holobyte View Post
    Just want to give props to your deathknight profiles. They absolutely rock!
    Thanks to you I don't need to create my own profiles anymore.

    I must admit I like your previous profile better, tho... the last one you released before start using PQ_Interface was almost flawless. Only thing I changed was putting a combat check before activating hotkeys and checking if mouseover was an alive enemy before casting DnD on mouseover (for DW single target and 2Hand AoE).

    I also noticed you are not porting SimCraft's "(target.health.pct%target.time_to_die)" correctly. Your code translates it as (TargetHP/TimeToDie) when you should be using (TargetHP % TimeToDie). This causes some errors when calculating the right time to cast Soul Reaper (and i *think* is the source of your difficulty to correctly implement Blood Tap).
    That said, I tried correcting it and stuff went really crazy... probably because LUA numbers aren't integers but doubles instead.

    Anyways, I think we can correctly predict Soul Reaper so when it procs (5s later) the target HP pct is equal or under 35 (45 w/ t15) like this:
    PHP Code:
    if 100 * (UnitHealth("target") - DpsOnTarget 5) / UnitHealthMax("target") <= 35 then ... 
    DpsOnTarget can be easily calculated by modifying team nova's TimeToDie function so it returns the dps on target instead of it's time to die.

    This is, in fact, the same principle of SimCraft's formula... just written differently.

    Best regards!
    Awesome feedback but you are wrong!

    First lets look on what % means on simcraft.
    - % is the division operator: it returns the division of the left by the right member.
    https://code.google.com/p/simulation...ki/ActionLists

    On lua if we want to make divisions we use /.
    https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-bot-maps-profiles/385569-pqr-death-knight-monk-tank-dps-profiles.html#post2582063

  4. #199
    Holobyte's Avatar Sergeant
    Reputation
    43
    Join Date
    Apr 2012
    Posts
    56
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Well... my bad then.
    % is the almost universal symbol for modulus, I never would thought it meant a division in simcraft.

  5. #200
    Rubim's Avatar Contributor
    Reputation
    247
    Join Date
    Mar 2010
    Posts
    267
    Thanks G/R
    4/7
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Holobyte View Post
    Well... my bad then.
    % is the almost universal symbol for modulus, I never would thought it meant a division in simcraft.
    I usually do a research before putting every skill that uses something unusual. I'm always on the irc channel of simcrat and always reading the wikia.

    I will fix more things is i got time.
    https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-bot-maps-profiles/385569-pqr-death-knight-monk-tank-dps-profiles.html#post2582063

  6. #201
    mokkajojo's Avatar Member
    Reputation
    1
    Join Date
    Feb 2013
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    for those who are interested in deleting tiger eye brew to use it manually, simply delete the following part in the abilities.xml file :

    TigereyeBrewBuffUsed = UnitBuffID(&amp;quot;player&amp;quot;,116740)
    TigereyeBrewBuff,_,_,TigereyeBrewCount = UnitBuffID(&amp;quot;player&amp;quot;,125195)
    if not TigereyeBrewBuff
    then
    TigereyeBrewCount = 0
    end
    edit: dont do it , the profile will work sometimes and sometimes not. still dont know how to get tiger eye brew out of the rota
    Last edited by mokkajojo; 03-11-2013 at 08:53 AM.

  7. #202
    Holobyte's Avatar Sergeant
    Reputation
    43
    Join Date
    Apr 2012
    Posts
    56
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Rubim View Post
    I will fix more things is i got time.
    I guess hotkeys in combat or out of it are a matter of prefference, but please consider checking "mouseover" unit before auto casting DnD. My suggestion is that you check if it's and enemy (otherwise it casts DnD on raid members and everyone in the raid goes "wtf?") and if it's alive (happened many times with me before I fixed it: you kill the mob and immediately try to loot it and BAM!! DnD over a dead body. Not cool! ).

  8. #203
    Rubim's Avatar Contributor
    Reputation
    247
    Join Date
    Mar 2010
    Posts
    267
    Thanks G/R
    4/7
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Holobyte View Post
    I guess hotkeys in combat or out of it are a matter of prefference, but please consider checking "mouseover" unit before auto casting DnD. My suggestion is that you check if it's and enemy (otherwise it casts DnD on raid members and everyone in the raid goes "wtf?") and if it's alive (happened many times with me before I fixed it: you kill the mob and immediately try to loot it and BAM!! DnD over a dead body. Not cool! ).
    Code:
    UnitExists("mouseover")
    UnitIsEnemy("player","mouseover")
    not UnitIsDeadOrGhost("mouseover")
    Done.
    https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-bot-maps-profiles/385569-pqr-death-knight-monk-tank-dps-profiles.html#post2582063

  9. #204
    Rubim's Avatar Contributor
    Reputation
    247
    Join Date
    Mar 2010
    Posts
    267
    Thanks G/R
    4/7
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Quick fix for the unholy is up.

    Profile would not start correctly if you were on combat.

    ==

    Monk profiles are still on hold.
    https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-bot-maps-profiles/385569-pqr-death-knight-monk-tank-dps-profiles.html#post2582063

  10. #205
    xLegendx's Avatar Member
    Reputation
    14
    Join Date
    Sep 2011
    Posts
    827
    Thanks G/R
    3/3
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Weren't you planning on doing a PvP profile?

    Sorry if its already out and I haven't noticed xD

  11. #206
    Rubim's Avatar Contributor
    Reputation
    247
    Join Date
    Mar 2010
    Posts
    267
    Thanks G/R
    4/7
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by xLegendx View Post
    Weren't you planning on doing a PvP profile?

    Sorry if its already out and I haven't noticed xD
    Need time for that.

    Trying to push my monk profiles.
    https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-bot-maps-profiles/385569-pqr-death-knight-monk-tank-dps-profiles.html#post2582063

  12. #207
    xLegendx's Avatar Member
    Reputation
    14
    Join Date
    Sep 2011
    Posts
    827
    Thanks G/R
    3/3
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Rubim View Post
    Need time for that.

    Trying to push my monk profiles.
    Ah, ok awesome.
    I'll be anticipating that profile for sure(:

    Thanks for the reply.

  13. #208
    FrostDKsFTW's Avatar Sergeant Major
    Reputation
    20
    Join Date
    Nov 2011
    Posts
    169
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey Rubim, just some quick feedback for your DK profile.

    For 2H Frost: Everything is working perfectly except for AOE. It doesn't seem to be using Frost Strike at all, runic power just gets capped completely and as a result no runes are procing to feed more Howling Blasts. I had a quick look and there is something about saving runic power? maybe you designed it to save for a boss?

    For Blood: Everything is perfect here too, the only thing I would ask for is a Key for Death and Decay. I know I can use the queue system but I prefer to cast as I run in. For example I start to run towards a group, hold Shift for example where I want Death and Decay and it drops it on them and then I begin to attack them. This is the one reason why I still use Novas Blood profile, lets me run dungeons very fast. Your profile and Novas both use different styles blood tanking. Yours trys to death strike as much as possible it seems to get a big blood shield while Nova's lets Scent for Blood to stack and then only death strikes to react to damage that has happened. I usually get my dungeons done quickly each week by running through with no healer (my friend queues as healer but goes ele shaman) and I use my dps gear, so it will be interesting to see which style works out better for this kind of play.

    Thank you again for your hard work. These are just 2 small issues in an otherwise amazing profile!

  14. #209
    TehVoyager's Avatar I just love KuRIoS
    Reputation
    1282
    Join Date
    Nov 2010
    Posts
    2,733
    Thanks G/R
    85/470
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by rubim View Post
    monk profiles are still on hold.
    whyyyyyy T^T

    OBTW For people who were having Pause2 issues with teh Rubin Brewmaster profile (disabling pause2 and giving it no buttons) i moved it to right alt (a key i never use) and BEHOLD FUNCTIONALITY
    Last edited by TehVoyager; 03-13-2013 at 10:06 AM.


    (don't post things I post to Patreon.)

  15. #210
    imdasandman's Avatar Contributor
    Reputation
    206
    Join Date
    Feb 2011
    Posts
    965
    Thanks G/R
    9/4
    Trade Feedback
    7 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by FrostDKsFTW View Post
    Hey Rubim, just some quick feedback for your DK profile.

    For 2H Frost: Everything is working perfectly except for AOE. It doesn't seem to be using Frost Strike at all, runic power just gets capped completely and as a result no runes are procing to feed more Howling Blasts. I had a quick look and there is something about saving runic power? maybe you designed it to save for a boss?

    For Blood: Everything is perfect here too, the only thing I would ask for is a Key for Death and Decay. I know I can use the queue system but I prefer to cast as I run in. For example I start to run towards a group, hold Shift for example where I want Death and Decay and it drops it on them and then I begin to attack them. This is the one reason why I still use Novas Blood profile, lets me run dungeons very fast. Your profile and Novas both use different styles blood tanking. Yours trys to death strike as much as possible it seems to get a big blood shield while Nova's lets Scent for Blood to stack and then only death strikes to react to damage that has happened. I usually get my dungeons done quickly each week by running through with no healer (my friend queues as healer but goes ele shaman) and I use my dps gear, so it will be interesting to see which style works out better for this kind of play.

    Thank you again for your hard work. These are just 2 small issues in an otherwise amazing profile!
    I am currently the ot in our 2nd 10 man group till we recruit another tank. So here are my thoughts on blood tanking using half dps gear(loaded with mastery(I am sitting at like 170% mastery)).

    When doing tot I believe rubims is better due to either boss hit slow(shields absorb most dmg,makes your Inc dmg less spiky and greatly increases your effective HP) or we are getting ass raped by adds( horridon/council/bats from tortos) so as many death strikes we can get the better.

    One thing I have noticed is blood tap usage is horrid in the blood dk build. I have to manually pop it with pause held down so I can get my extra death strike off.

    But even though my ilvl is 496 in my tanking setup I still managed to rank on horridon and the first boss lawl.

    Sent from my SAMSUNG-SGH-I717 using Tapatalk 2
    My Frost/Unholy DK WoL ranking edits(4.3) and crystals Hunter Beta profiles-
    https://imdasandmandeathknight.googl...com/svn/trunk/
    Originally Posted by Valma View Post
    Oh sure. (: Plz,lord,rewrite my profile without "re-inventing a wheel".I'm really interested how would you do so.I even ready to eat my pants if yours will perform better in raids than mine

Similar Threads

  1. [PQR] MOP profiles
    By Sheepmoon in forum WoW Bot Maps And Profiles
    Replies: 350
    Last Post: 01-13-2014, 05:59 AM
  2. [PQR] - GRB profiles
    By GRB in forum WoW Bot Maps And Profiles
    Replies: 8
    Last Post: 05-23-2013, 01:43 AM
  3. [PQR] Mage Profiles
    By discobob in forum WoW Bot Maps And Profiles
    Replies: 11
    Last Post: 04-07-2013, 04:46 PM
  4. Warlock (PQR) pvp profile please?
    By leonel916 in forum WoW Bots Questions & Requests
    Replies: 0
    Last Post: 12-04-2012, 08:41 AM
  5. PQR Old profiles
    By Fumi in forum WoW Bots Questions & Requests
    Replies: 2
    Last Post: 05-08-2012, 02:35 PM
All times are GMT -5. The time now is 01:46 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