[ENG] non rotating COE buff with time bar menu

User Tag List

Page 2 of 4 FirstFirst 1234 LastLast
Results 16 to 30 of 59
  1. #16
    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)
    any good place to show up the coe rotation instead of default one

    [ENG] non rotating COE buff with time bar
  2. #17
    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)
    instead of voice notification, it's good to provide message pop up notification for alternative.

    Sometime it is difficult to heard the voice

  3. #18
    s4000's Avatar Contributor
    Reputation
    284
    Join Date
    Oct 2018
    Posts
    489
    Thanks G/R
    18/271
    Trade Feedback
    0 (0%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by takayo72 View Post
    instead of voice notification, it's good to provide message pop up notification for alternative.

    Sometime it is difficult to heard the voice
    I will try

  4. #19
    JarJarD3's Avatar Contributor
    Reputation
    106
    Join Date
    Oct 2017
    Posts
    395
    Thanks G/R
    41/101
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    1 Thread(s)
    Originally Posted by s4000 View Post
    I will try
    And make it flashing !!! :-D

  5. #20
    s4000's Avatar Contributor
    Reputation
    284
    Join Date
    Oct 2018
    Posts
    489
    Thanks G/R
    18/271
    Trade Feedback
    0 (0%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by JarJarD3 View Post
    And make it flashing !!! :-D
    No idea how to do :confused:

  6. #21
    profredseries's Avatar Member
    Reputation
    2
    Join Date
    Apr 2019
    Posts
    31
    Thanks G/R
    23/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    First of all, thanks for the work, but there is one problem: when playing together, “Attack” is pronounced constantly, like a damaged gramophone record, while playing a solo, everything is fine (regardless of 0.1, -1)

  7. #22
    s4000's Avatar Contributor
    Reputation
    284
    Join Date
    Oct 2018
    Posts
    489
    Thanks G/R
    18/271
    Trade Feedback
    0 (0%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by profredseries View Post
    First of all, thanks for the work, but there is one problem: when playing together, “Attack” is pronounced constantly, like a damaged gramophone record, while playing a solo, everything is fine (regardless of 0.1, -1)
    update version 3.1 to fix that

    I have the same issue too, though it's only my PC's problem as no one report

  8. #23
    JarJarD3's Avatar Contributor
    Reputation
    106
    Join Date
    Oct 2017
    Posts
    395
    Thanks G/R
    41/101
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    1 Thread(s)
    If you want to disable speak, I did it this way in your Customize() method:
    Code:
    Hud.RunOnPlugin<DavPlayer.DAV_COE>(plugin =>
    {
    	plugin.VolumeMultiplier = -1.0;
    	var keys = plugin.TimeRule.Keys.ToList();
    	plugin.TimeRule.Clear();
    	foreach (var key in keys)
    	{
    		plugin.TimeRule.Add(key, new Tuple<double, string, int>(0.0, "", -2));
    	}
    });

  9. #24
    s4000's Avatar Contributor
    Reputation
    284
    Join Date
    Oct 2018
    Posts
    489
    Thanks G/R
    18/271
    Trade Feedback
    0 (0%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    update version 4
    - add text message during yellow/red bar (user only)

    - add flashing effect (requested by JarJar3D)

  10. #25
    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)
    how to customize to display message only (ie no voice)

  11. #26
    s4000's Avatar Contributor
    Reputation
    284
    Join Date
    Oct 2018
    Posts
    489
    Thanks G/R
    18/271
    Trade Feedback
    0 (0%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by takayo72 View Post
    how to customize to display message only (ie no voice)
    edit the file

    // attack time before max bonus | the message | role of your character | message type
    // Role : -2 no speak
    // -1 speak all the time except in town
    // 0 speak all the time in GR
    // 1 speak as trash killer in GR
    // 2 speak as RGK in GR
    // Message type : -1 none
    // 0 text
    // 1 sound
    // 2 sound + text

    TimeRule = new Dictionary<HeroClass, Tuple<double, string, int, int>> {
    {HeroClass.Barbarian, new Tuple<double, string, int, int>(4.0, "Attack", 0, 2)},
    {HeroClass.Monk, new Tuple<double, string, int, int>(4.0, "Attack", 0, 2)},
    {HeroClass.Necromancer, new Tuple<double, string, int, int>(1.0, "Charge", 2, 2)},
    {HeroClass.Wizard, new Tuple<double, string, int, int>(4.0, "Attack", 1, 2)},
    {HeroClass.WitchDoctor, new Tuple<double, string, int, int>(4.0, "Attack", 0, 2)},
    {HeroClass.Crusader, new Tuple<double, string, int, int>(4.0, "Attack", 0, 2)},
    {HeroClass.DemonHunter, new Tuple<double, string, int, int>(1.0, "Attack", 0, 2)}
    };

  12. #27
    maimay789's Avatar Member
    Reputation
    1
    Join Date
    Mar 2017
    Posts
    3
    Thanks G/R
    8/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    how to customize to disable coe icon ? I want only time bar
    I like DAV_COE ty

  13. #28
    s4000's Avatar Contributor
    Reputation
    284
    Join Date
    Oct 2018
    Posts
    489
    Thanks G/R
    18/271
    Trade Feedback
    0 (0%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    NOT tested, try adding into your customization
    Code:
    Hud.RunOnPlugin<DAV_COE>(plugin => {
    	plugin.COEPainter.Enabled = false;
    });
    If no succeed, add // in front of the code COEPainter.PaintHorizontal(CoeRuleCalculator.PaintInfoList, x, y, CoeRuleCalculator.StandardIconSize, 0); (line 179)

  14. #29
    JarJarD3's Avatar Contributor
    Reputation
    106
    Join Date
    Oct 2017
    Posts
    395
    Thanks G/R
    41/101
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    1 Thread(s)
    Originally Posted by maimay789 View Post
    how to customize to disable coe icon ? I want only time bar
    I like DAV_COE ty
    Add new variable (line 32):
    Code:
    public bool DrawCOE { get; set; } = true;
    Fix paint code Ilines 240-241 -> 240-244:
    Code:
    if (DrawCOE)
    {
    	COEPainter.PaintHorizontal(CoeRuleCalculator.PaintInfoList, x, y, CoeRuleCalculator.StandardIconSize, 0);
    	BackgroundBrush.DrawRectangle(x, y - barH, barW, barH);
    }
    Optinally fix time output (lines 268-269):
    Code:
    var layout = CoeTimeFont.GetTextLayout(timeWait > 0 ? timeWait.ToString("F1", CultureInfo.InvariantCulture) : CoeMaxIndicator);
    CoeTimeFont.DrawText(layout, x + barW + CoeRuleCalculator.StandardIconSpacing, y - barH);
    And customization:
    Code:
    plugin.DrawCOE = false;
    plugin.CoeBarH = 20.0f;

  15. #30
    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)
    I prefer to show the default rotation coe buff next to each player portrait
    How to disable dav coe shown on each player portrait ?

Page 2 of 4 FirstFirst 1234 LastLast

Similar Threads

  1. [Request] COE Buff not rotating
    By MLPFUN in forum TurboHUD Discussions
    Replies: 2
    Last Post: 10-27-2018, 08:46 AM
  2. Lots Of Gold With TitanSteel Bars!
    By rocko in forum World of Warcraft Guides
    Replies: 12
    Last Post: 12-03-2008, 11:24 AM
  3. Get triple XP buff with a level 1 in high level area!
    By bagsnatcher in forum World of Warcraft Exploits
    Replies: 25
    Last Post: 08-11-2008, 12:14 PM
  4. WTT Blank US account, with time for Steam with CS:S
    By tonks1 in forum Members Only Accounts And CD Keys Buy Sell
    Replies: 0
    Last Post: 03-24-2008, 12:33 AM
All times are GMT -5. The time now is 01:42 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