[Lib]ImoLib_RaidBuffs menu

User Tag List

Results 1 to 6 of 6
  1. #1
    ImogenOC's Avatar Contributor ProbablyEngine Community Manager
    Reputation
    173
    Join Date
    Nov 2013
    Posts
    364
    Thanks G/R
    0/8
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [Lib]ImoLib_RaidBuffs



    Intuitive checking tidbits for respective buffs, classes, and pets.

    Utilizes MIT License, please include the following trackback at the top of your profile to the GitHub. Include used snippets (e.g. Druid/Mark of the Wild.lua)


    Code:
    -[[ 
      This profile uses ImoLib_RaidBuffs, constructed with love by ImogenOC. Shared and Used under the MIT Licensing. 
      Available on GitHub and OwnedCore:
       http://goo.gl/EHNwzA (Github)
       http://goo.gl/fCHZwO (OwnedCore)
      Snippets Used:
       class/Snippet.lua
       class/Snippet2.lua
    ]]--
    Death Knight
    Horn of Winter
    Power of the Grave
    Unholy Aura

    Druid
    Leader of the Pack
    Mark of the Wild
    Moonkin Aura

    Hunter
    Hunter Pet Racials - Crit
    Hunter Pet Racials - Haste
    Hunter Pet Racials - Mastery
    Hunter Pet Racials - Multistrike
    Hunter Pet Racials - Stamina
    Hunter Pet Racials - Stats
    Hunter Pet Racials - Versatility
    Trueshot Aura

    Mage
    Arcane & Dalaran Brilliance

    Monk
    Legacy of the White Tiger / Emperor
    Windflurry

    Paladin
    Blessing of Kings
    Blessing of Might
    Sanctity Aura

    Priest
    Mind Quickening
    Power Word: Fortitude

    Rogue
    Swiftblade's Cunning

    Shaman
    Grace of Air

    Warlock
    Blood Pact
    Dark Intent

    Warrior
    Battle Shout
    Commanding Shout
    Inspiring Presence

    Misc
    Waterwalking
    Github

    Changelog
    Code:
    11/15/2014 1:06 AM - Initial Release (Logo, Snippets, and License/Readme)
    Last edited by ImogenOC; 11-15-2014 at 01:09 AM. Reason: Changelog
    ProbablyEngine - Developer and Lead Support
    A Powerful Rotation Bot: ProbablyEngine

    [Lib]ImoLib_RaidBuffs
  2. #2
    backburn's Avatar Member
    Reputation
    8
    Join Date
    Aug 2008
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Awesome compilation. I don't want to lessen your achievement, but raid buffs can be queried by using the GetRaidBuffTrayAuraInfo() function built into wow.
    These have already been added as conditions to pe:

    Code:
    player.buffs.stats  (GetRaidBuffTrayAuraInfo(1))
    player.buffs.stamina  (GetRaidBuffTrayAuraInfo(2))
    player.buffs.attackpower  (GetRaidBuffTrayAuraInfo(3))
    player.buffs.haste  (GetRaidBuffTrayAuraInfo(4))
    player.buffs.spellpower  (GetRaidBuffTrayAuraInfo(5))
    player.buffs.crit  (GetRaidBuffTrayAuraInfo(6))
    player.buffs.mastery  (GetRaidBuffTrayAuraInfo(7))
    player.buffs.multistrike  (GetRaidBuffTrayAuraInfo(8))
    player.buffs.versatility  (GetRaidBuffTrayAuraInfo(9))
    e.g. "player.buffs.haste" returns true when the player has any raid/party haste buff.

  3. #3
    ImogenOC's Avatar Contributor ProbablyEngine Community Manager
    Reputation
    173
    Join Date
    Nov 2013
    Posts
    364
    Thanks G/R
    0/8
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by backburn View Post
    Awesome compilation. I don't want to lessen your achievement, but raid buffs can be queried by using the GetRaidBuffTrayAuraInfo() function built into wow.
    These have already been added as conditions to pe:

    Code:
    player.buffs.stats  (GetRaidBuffTrayAuraInfo(1))
    player.buffs.stamina  (GetRaidBuffTrayAuraInfo(2))
    player.buffs.attackpower  (GetRaidBuffTrayAuraInfo(3))
    player.buffs.haste  (GetRaidBuffTrayAuraInfo(4))
    player.buffs.spellpower  (GetRaidBuffTrayAuraInfo(5))
    player.buffs.crit  (GetRaidBuffTrayAuraInfo(6))
    player.buffs.mastery  (GetRaidBuffTrayAuraInfo(7))
    player.buffs.multistrike  (GetRaidBuffTrayAuraInfo(8))
    player.buffs.versatility  (GetRaidBuffTrayAuraInfo(9))
    e.g. "player.buffs.haste" returns true when the player has any raid/party haste buff.
    Yeah, we've been using those, but people seem to be encountering issues with it so I just did this to ease it.
    It's in the core, we check raidtray, but for whatever reason You still get redundant casting.
    Hence the 3 hours I spent making this lib.
    Last edited by ImogenOC; 11-15-2014 at 12:39 PM.
    ProbablyEngine - Developer and Lead Support
    A Powerful Rotation Bot: ProbablyEngine

  4. #4
    backburn's Avatar Member
    Reputation
    8
    Join Date
    Aug 2008
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    3% buffs don't "count" in the raidbufftray

  5. #5
    ImogenOC's Avatar Contributor ProbablyEngine Community Manager
    Reputation
    173
    Join Date
    Nov 2013
    Posts
    364
    Thanks G/R
    0/8
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by backburn View Post
    3% buffs don't "count" in the raidbufftray
    And that's why it's in misc.
    ProbablyEngine - Developer and Lead Support
    A Powerful Rotation Bot: ProbablyEngine

  6. #6
    gainz's Avatar Member
    Reputation
    1
    Join Date
    Dec 2014
    Posts
    15
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    nice compilation, will be using it in my mage rotation

Similar Threads

  1. Auctioneer Scan Data Parser Lib
    By Apoc in forum Programming
    Replies: 12
    Last Post: 08-25-2021, 07:11 PM
  2. looking for OpenGL GUI lib
    By deadbeef in forum Programming
    Replies: 2
    Last Post: 03-06-2009, 09:39 AM
  3. Under SM Lib (Mage only)
    By themp in forum World of Warcraft Exploration
    Replies: 5
    Last Post: 02-22-2009, 10:00 PM
  4. 1>LINK : fatal error LNK1181: cannot open input file 'arcemu-world.lib' ???
    By pioneer1337 in forum World of Warcraft Emulator Servers
    Replies: 0
    Last Post: 08-01-2008, 12:12 AM
  5. Staff of SM lib
    By shadow the killer in forum WoW Items & Quests
    Replies: 8
    Last Post: 08-23-2007, 10:51 AM
All times are GMT -5. The time now is 06:33 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search