[V7.2][International][Grischu] Buffstatistics menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 21
  1. #1
    Grischu's Avatar Member
    Reputation
    10
    Join Date
    Mar 2017
    Posts
    23
    Thanks G/R
    3/9
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [V7.2][International][Grischu] Buffstatistics

    Description:
    Show time buffs are active in rift and/or combat
    If you enter a new rift or GRift the data will be reset.


    Preview ShowData=3 (Both)



    Preview ShowData=2 (Combat)




    Preview ShowData=1 (Rift)



    Intallation:
    Install the file into \plugins\Grischu\BuffStatistic\BuffStatistics.cs

    Default settings
    F8 Show/Hide window
    F9 Start/Stop logging
    CTRL+X Reset data


    Customize example:

    Code:
                     // Buff uptime statistic (Turbo.Plugins.Grischu.BuffStatistic)
                     //take LocalizedName of ISnoPower if available, if not available take the name you give in the next lines! 
                     // This must be defined befor you add the buffs ! 
                     // default=true
                     Hud.GetPlugin<BuffStatistics>().PreferLocalizedName = true;
                     // Buffs to watch    default=none
                     Hud.GetPlugin<BuffStatistics>().AddBuff(403471, 0, "Tageuk");
                     Hud.GetPlugin<BuffStatistics>().AddBuff(359583, 1, "Fokus");
                     Hud.GetPlugin<BuffStatistics>().AddBuff(359583, 2, "Zurückhaltung");
                     Hud.GetPlugin<BuffStatistics>().AddBuff(402461, 1, "Occulus");
                     Hud.GetPlugin<BuffStatistics>().AddBuff(451237, 1, "Gürtel der Giganten");
                    // show statistics 1= Rift, 2=Combat, 3=Both      default=3
                    Hud.GetPlugin<BuffStatistics>().ShowData = 3;   
                     //X-Position of the upper left corner  default=0
                     Hud.GetPlugin<BuffStatistics>().XPos = 5f;
                     //Y-Position of the upper left corner   default= ScreenHeight/2
                     Hud.GetPlugin<BuffStatistics>().YPos = 500f;
                     //  Show/Hide window   default=F8
                     Hud.GetPlugin<BuffStatistics>().ToggleKeyEvent= Hud.Input.CreateKeyEvent(true, Key.F8, false, false, false);
                     //  Activate/Deactivate buff logging   default=F9
                     Hud.GetPlugin<BuffStatistics>().LogKeyEvent = Hud.Input.CreateKeyEvent(true, Key.F9, false, false, false);
                     //  Reset statistics   default=CTRL+X
                    Hud.GetPlugin<BuffStatistics>().ResetKeyEvent = Hud.Input.CreateKeyEvent(true, Key.X, true, false, false);


    Repository
    Download https://bitbucket.org/grischu/turboh...df71f03448.zip


    /edit updated downloadlink
    Attached Thumbnails Attached Thumbnails [V7.2][International][Grischu] Buffstatistics-buffsrift-jpg   [V7.2][International][Grischu] Buffstatistics-buffscombat-jpg  
    Last edited by Grischu; 03-29-2017 at 08:15 AM. Reason: new Downloadlink / new Function

    [V7.2][International][Grischu] Buffstatistics
  2. #2
    migajo's Avatar Member
    Reputation
    1
    Join Date
    Jan 2012
    Posts
    27
    Thanks G/R
    8/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I can not see it as a screenshot error

  3. #3
    d3gigi's Avatar Active Member
    Reputation
    52
    Join Date
    Mar 2017
    Posts
    55
    Thanks G/R
    12/49
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I am not a dev - so no official feedback from my side. However, why didn't you use [v7.2] [HELPER] [Jack] TopTable for display? It perfectly fits what you are trying to achieve. Also you might want to use the SNOController for the SNO-values and get rid of those magic valies.
    I won't give any support (or answer requests) via private messaging. Ask your questions about a plugin within its thread!

  4. #4
    Grischu's Avatar Member
    Reputation
    10
    Join Date
    Mar 2017
    Posts
    23
    Thanks G/R
    3/9
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Becaus i wrote this (most of it) last week.

  5. Thanks bobbydigital12 (1 members gave Thanks to Grischu for this useful post)
  6. #5
    migajo's Avatar Member
    Reputation
    1
    Join Date
    Jan 2012
    Posts
    27
    Thanks G/R
    8/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    [Guide] Default theme customization 101 (Default theme customization 101)

    Hud.RunOnPlugin<BuffStatistics>(plugin =>
    {
    // Buff uptime statistic (Turbo.Plugins.Grischu.BuffStatistic)
    // take LocalizedName of ISnoPower if available, if not available take the name you give in the next lines!
    // This must be defined befor you add the buffs !
    // default=true
    plugin.PreferLocalizedName = true;
    // Buffs to watch default=none
    plugin.AddBuff(403471, 0, "Tageuk");
    plugin.AddBuff(359583, 1, "Fokus");
    plugin.AddBuff(359583, 2, "Zurückhaltung");
    plugin.AddBuff(402461, 1, "Occulus");
    plugin.AddBuff(451237, 1, "Gürtel der Giganten");
    // X-Position of the upper left corner default=0
    plugin.XPos = 5f;
    // Y-Position of the upper left corner default= ScreenHeight/2
    plugin.YPos = 500f;
    // Show/Hide window default=F8
    plugin.ToggleKeyEvent= Hud.Input.CreateKeyEvent(true, Key.F8, false, false, false);
    // Activate/Deactivate buff logging default=F9
    plugin.LogKeyEvent = Hud.Input.CreateKeyEvent(true, Key.F9, false, false, false);
    // Reset statistics default=CTRL+
    plugin.ResetKeyEvent = Hud.Input.CreateKeyEvent(true, Key.X, true, false, false);
    });
    I think it would be nice to change it

  7. #6
    JackCeparou's Avatar Savvy ? 🐒
    Reputation
    534
    Join Date
    Mar 2017
    Posts
    588
    Thanks G/R
    51/490
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by d3gigi View Post
    However, why didn't you use [v7.2] [HELPER] [Jack] TopTable for display?
    tbh, for what he do, my table helper is totally overkill ;p
    Hide the Rum! --> Default theme customization 101 <--

  8. #7
    JackCeparou's Avatar Savvy ? 🐒
    Reputation
    534
    Join Date
    Mar 2017
    Posts
    588
    Thanks G/R
    51/490
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Remove the [Release] tag please, if it's the review zone, it's obviously not released.
    Hide the Rum! --> Default theme customization 101 <--

  9. #8
    Grischu's Avatar Member
    Reputation
    10
    Join Date
    Mar 2017
    Posts
    23
    Thanks G/R
    3/9
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by JackCeparou View Post
    Remove the [Release] tag please, if it's the review zone, it's obviously not released.

    Can't remove the tag. have to give a tag. Don't know why. I take something other.

  10. #9
    darkevil226's Avatar Member
    Reputation
    2
    Join Date
    Mar 2017
    Posts
    9
    Thanks G/R
    4/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Mod doesn't work for me. Nothing shows up. I even press F8. Nothing under exceptions.txt.
    And yes, I put it in \plugins\Grischu\BuffStatistic\BuffStatistics.cs

    Do I need another mod to make this work?
    Last edited by darkevil226; 03-28-2017 at 03:32 PM.

  11. #10
    Grischu's Avatar Member
    Reputation
    10
    Join Date
    Mar 2017
    Posts
    23
    Thanks G/R
    3/9
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Updated !
    Window is Show with a message if no buffs are defined in PluginEnablerOrDisablerPlugin.cs or your own Customizer Script

    Example
    Code:
                    Hud.GetPlugin<BuffStatistics>().AddBuff(403471, 0, "Tageuk");
                    Hud.GetPlugin<BuffStatistics>().AddBuff(359583, 1, "Fokus");
                    Hud.GetPlugin<BuffStatistics>().AddBuff(359583, 2, "Zurückhaltung");
                    Hud.GetPlugin<BuffStatistics>().AddBuff(402461, 1, "Occulus");
                    Hud.GetPlugin<BuffStatistics>().AddBuff(451237, 1, "Gürtel der Giganten");
    Last edited by Grischu; 03-28-2017 at 03:54 PM. Reason: Typo

  12. #11
    JackCeparou's Avatar Savvy ? 🐒
    Reputation
    534
    Join Date
    Mar 2017
    Posts
    588
    Thanks G/R
    51/490
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Grischu View Post
    Can't remove the tag. have to give a tag. Don't know why. I take something other.
    There is apparently new rules about tag i was not aware of.
    Let it this way till KJ check it.
    Hide the Rum! --> Default theme customization 101 <--

  13. #12
    prrovoss's Avatar Contributor
    Reputation
    152
    Join Date
    Jan 2013
    Posts
    420
    Thanks G/R
    23/130
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    looks nice so far. do you think you could add an option to not display the inCombat or rift statistics? for me personally only the rift statistics are interesting and hiding everything else would really help keeping track of them^^.

  14. #13
    Grischu's Avatar Member
    Reputation
    10
    Join Date
    Mar 2017
    Posts
    23
    Thanks G/R
    3/9
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by prrovoss View Post
    looks nice so far. do you think you could add an option to not display the inCombat or rift statistics? for me personally only the rift statistics are interesting and hiding everything else would really help keeping track of them^^.
    I think i can do this. Hope tomorrow but not sure.
    Last edited by Grischu; 03-28-2017 at 04:00 PM.

  15. #14
    prrovoss's Avatar Contributor
    Reputation
    152
    Join Date
    Jan 2013
    Posts
    420
    Thanks G/R
    23/130
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Grischu View Post
    I think i can do this. Hope tomorrow but not sure.
    no rush

  16. #15
    Grischu's Avatar Member
    Reputation
    10
    Join Date
    Mar 2017
    Posts
    23
    Thanks G/R
    3/9
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by prrovoss View Post
    no rush
    Main thing, it's done on Friday 17:00

  17. Thanks bobbydigital12 (1 members gave Thanks to Grischu for this useful post)
Page 1 of 2 12 LastLast

Similar Threads

  1. Internal Mail Error
    By delldude1989 in forum World of Warcraft Emulator Servers
    Replies: 1
    Last Post: 05-05-2008, 04:35 PM
  2. International Talk Like a Pirate Day!
    By Loveshock in forum Community Chat
    Replies: 13
    Last Post: 09-20-2007, 12:11 PM
  3. International Rules to Calling Shotgun
    By matswurld in forum Community Chat
    Replies: 1
    Last Post: 05-18-2007, 08:37 PM
  4. President Bush, CAUGHT SWEARING at international meeting
    By mantalcore in forum Community Chat
    Replies: 15
    Last Post: 08-14-2006, 09:41 AM
All times are GMT -5. The time now is 04:36 AM. 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