[ENG] Missing Power Buff Warming menu

User Tag List

Page 4 of 6 FirstFirst 123456 LastLast
Results 46 to 60 of 76
  1. #46
    s4000's Avatar Contributor
    Reputation
    285
    Join Date
    Oct 2018
    Posts
    489
    Thanks G/R
    18/272
    Trade Feedback
    0 (0%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by gdias92 View Post
    The plugin keeps saying "attack", do you know why ?
    I think its other plugin, are you using my COE plugin? please also download the latest one

    [ENG] Missing Power Buff Warming
  2. #47
    gdias92's Avatar Active Member
    Reputation
    20
    Join Date
    Dec 2018
    Posts
    21
    Thanks G/R
    6/16
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    I adjusted the Coe Plugin, its working now. Thanks.
    Last edited by gdias92; 11-25-2019 at 09:50 PM.

  3. #48
    gdias92's Avatar Active Member
    Reputation
    20
    Join Date
    Dec 2018
    Posts
    21
    Thanks G/R
    6/16
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Is it possible to active voice and icons at the same time ?

  4. #49
    s4000's Avatar Contributor
    Reputation
    285
    Join Date
    Oct 2018
    Posts
    489
    Thanks G/R
    18/272
    Trade Feedback
    0 (0%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by gdias92 View Post
    Is it possible to active voice and icons at the same time ?
    please enable sound by setting
    Code:
    SpeakEnable = true,
    for each buff by you need & set the time interval (actual interval will be affected by the sound from other plugin)
    Code:
     plugin.SpeakInterval = 5000; // msecond

  5. #50
    tehdang's Avatar Member
    Reputation
    1
    Join Date
    Mar 2018
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Here's what I have for Barbarian Wrath of the Berserker, but it's throwing an error
    Code:
    				//Wrath of the Berserker
    				plugin.HeroNoBuffList.Add(HeroClass.Barbarian, new DAV_NoBuffRule() { // Buff X
    					InCombatOnly = true,
    					IsRelevant = (player) => player.Powers.UsedSkills.Any(x => x.SnoPower.Sno == Hud.Sno.SnoPowers.Barbarian_WrathOfTheBerserker.Sno), // condition
    					IsBuffOn = (player) => player.Powers.BuffIsActive(Hud.Sno.SnoPowers.Barbarian_WrathOfTheBerserker.Sno), // check if buff is on
    					//IconMsg = (player) => ,
    					SpeakEnable = false,
    					Message = "No Wrath",
    					warmFont = stdFont,
    					IconSize = stdSize,
    					Icon_Brush = Brush_Red, // draw 3rd
    					Icon_BG = Hud.Texture.InventorySetBackgroundSmall, // draw 1st
    					Icon_Texture = Hud.Texture.GetItemTexture(Hud.Sno.SnoPowers.Barbarian_WrathOfTheBerserker.NormalIconTextureId) // draw 2nd
    				});
    Code:
    2019.11.26 08:22:04.493	19.11.24.0		F:\thud\Plugins\DavPlayer\dav_missingbuffconfig.cs(70,48) : error CS1503: Argument 1: cannot convert from 'uint' to 'Turbo.Plugins.ISnoItem'
    Do I need to give the power an index, or can you paste the correct code?

  6. #51
    s4000's Avatar Contributor
    Reputation
    285
    Join Date
    Oct 2018
    Posts
    489
    Thanks G/R
    18/272
    Trade Feedback
    0 (0%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by tehdang View Post
    Here's what I have for Barbarian Wrath of the Berserker, but it's throwing an error
    Code:
    				//Wrath of the Berserker
    				plugin.HeroNoBuffList.Add(HeroClass.Barbarian, new DAV_NoBuffRule() { // Buff X
    					InCombatOnly = true,
    					IsRelevant = (player) => player.Powers.UsedSkills.Any(x => x.SnoPower.Sno == Hud.Sno.SnoPowers.Barbarian_WrathOfTheBerserker.Sno), // condition
    					IsBuffOn = (player) => player.Powers.BuffIsActive(Hud.Sno.SnoPowers.Barbarian_WrathOfTheBerserker.Sno), // check if buff is on
    					//IconMsg = (player) => ,
    					SpeakEnable = false,
    					Message = "No Wrath",
    					warmFont = stdFont,
    					IconSize = stdSize,
    					Icon_Brush = Brush_Red, // draw 3rd
    					Icon_BG = Hud.Texture.InventorySetBackgroundSmall, // draw 1st
    					Icon_Texture = Hud.Texture.GetItemTexture(Hud.Sno.SnoPowers.Barbarian_WrathOfTheBerserker.NormalIconTextureId) // draw 2nd
    				});
    Code:
    2019.11.26 08:22:04.493	19.11.24.0		F:\thud\Plugins\DavPlayer\dav_missingbuffconfig.cs(70,48) : error CS1503: Argument 1: cannot convert from 'uint' to 'Turbo.Plugins.ISnoItem'
    Do I need to give the power an index, or can you paste the correct code?
    should use GetTexture instead of GetItemTexture

  7. #52
    takayo72's Avatar Active Member
    Reputation
    17
    Join Date
    Jan 2018
    Posts
    203
    Thanks G/R
    43/15
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Could u add the code of missing band of might buff ?

  8. #53
    s4000's Avatar Contributor
    Reputation
    285
    Join Date
    Oct 2018
    Posts
    489
    Thanks G/R
    18/272
    Trade Feedback
    0 (0%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by takayo72 View Post
    Could u add the code of missing band of might buff ?
    please check reply #18

    I will combine the code into the config file when I am free

  9. Thanks takayo72 (1 members gave Thanks to s4000 for this useful post)
  10. #54
    Gilavar's Avatar Member
    Reputation
    1
    Join Date
    Dec 2017
    Posts
    67
    Thanks G/R
    17/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Why i have always 0 stacks of Squirt's Necklace with my crusader (with shield from monk and ip from barb)? With wiz it is ok.

  11. #55
    s4000's Avatar Contributor
    Reputation
    285
    Join Date
    Oct 2018
    Posts
    489
    Thanks G/R
    18/272
    Trade Feedback
    0 (0%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Gilavar View Post
    Why i have always 0 stacks of Squirt's Necklace with my crusader (with shield from monk and ip from barb)? With wiz it is ok.
    ask your zmonk, check your skill & equipment, I cant answer the issue with your build

  12. #56
    s4000's Avatar Contributor
    Reputation
    285
    Join Date
    Oct 2018
    Posts
    489
    Thanks G/R
    18/272
    Trade Feedback
    0 (0%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    minor update:
    - combine the missing buff into the config file
    - Now the plugin will move to plugins\DAV (all my previous plugin will move to this folder when update)

  13. Thanks jpppsychomb (1 members gave Thanks to s4000 for this useful post)
  14. #57
    Gilavar's Avatar Member
    Reputation
    1
    Join Date
    Dec 2017
    Posts
    67
    Thanks G/R
    17/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi ! Is it possible to add Hexing pants of Mr.Yan buff (while moving) ? Thanks

  15. #58
    ch25's Avatar Active Member
    Reputation
    37
    Join Date
    Mar 2017
    Posts
    135
    Thanks G/R
    34/33
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    What is monster count plug-in visible on No buff v2.jpg?
    M

  16. #59
    FoxPox's Avatar Member
    Reputation
    12
    Join Date
    Jun 2018
    Posts
    83
    Thanks G/R
    19/11
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    How add healt globe ?

  17. #60
    s4000's Avatar Contributor
    Reputation
    285
    Join Date
    Oct 2018
    Posts
    489
    Thanks G/R
    18/272
    Trade Feedback
    0 (0%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by FoxPox View Post
    How add healt globe ?
    health globe is not buff, cannot support

Page 4 of 6 FirstFirst 123456 LastLast

Similar Threads

  1. [ENG] Player Power Set
    By s4000 in forum TurboHUD Community Plugins
    Replies: 21
    Last Post: 06-24-2020, 07:07 AM
  2. [ENG] Boss Warming Message
    By s4000 in forum TurboHUD Community Plugins
    Replies: 47
    Last Post: 04-17-2020, 09:08 PM
  3. [ENG] non rotating COE buff with time bar
    By s4000 in forum TurboHUD Community Plugins
    Replies: 58
    Last Post: 02-13-2020, 08:37 PM
  4. Spell power buff
    By gozzz in forum World of Warcraft Exploits
    Replies: 9
    Last Post: 07-30-2018, 08:36 AM
  5. [Bug] ui_default_buffs missing buffs from other players
    By d2k2 in forum TurboHUD Support
    Replies: 1
    Last Post: 12-31-2017, 04:55 PM
All times are GMT -5. The time now is 05:19 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