[V9.1] [RNN] TrialsOfTempestsIcon menu

User Tag List

Page 2 of 7 FirstFirst 123456 ... LastLast
Results 16 to 30 of 92
  1. #16
    Mundzso's Avatar Member
    Reputation
    14
    Join Date
    Feb 2018
    Posts
    84
    Thanks G/R
    28/6
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    In groups it would be nice to have some kinds of alert system, like a red border if the counter is <10sec for someone with the least timer, would be helpfull
    Really nice and helpful plugin tho!! nice job :P
    Last edited by Mundzso; 07-12-2020 at 12:07 PM.

    [V9.1] [RNN] TrialsOfTempestsIcon
  2. #17
    ciscobass's Avatar Member
    Reputation
    1
    Join Date
    Feb 2018
    Posts
    16
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Sorry for a stupid question. What is the three number at the corner represent?

  3. #18
    DD2Shop's Avatar Active Member
    CoreCoins Purchaser Authenticator enabled
    Reputation
    23
    Join Date
    Mar 2011
    Posts
    142
    Thanks G/R
    13/12
    Trade Feedback
    21 (95%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    As a complete bot to code, is there a way that you can explain to me exactly where to put that code in the PluginEnablerOrDisablerPlugin File? Shouldn't be a problem for me to edit the values, but i just don't know where exactly in the file to paste the code.

    Thanks.
    Comprende?

  4. #19
    RNN's Avatar Legendary
    Reputation
    810
    Join Date
    Sep 2018
    Posts
    1,051
    Thanks G/R
    103/773
    Trade Feedback
    0 (0%)
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by DirtyDuckie View Post
    As a complete bot to code, is there a way that you can explain to me exactly where to put that code in the PluginEnablerOrDisablerPlugin File? Shouldn't be a problem for me to edit the values, but i just don't know where exactly in the file to paste the code.

    Thanks.
    plugins\User\PluginEnablerOrDisablerPlugin.cs

    Code:
    using Turbo.Plugins.Default;
    namespace Turbo.Plugins.User
    {
        public class PluginEnablerOrDisablerPlugin : BasePlugin, ICustomizer
        {
            public PluginEnablerOrDisablerPlugin()
            {
                Enabled = true;
            }
            public override void Load(IController hud)
            {
                base.Load(hud);
            }
            public void Customize()
            {
    
    		CUSTOM CODE HERE
    
            }
        }
    }
    Place the text somewhere between the two red { }
    and I recommend using the editor Notepad++
    Last edited by RNN; 07-14-2020 at 08:01 AM.

  5. #20
    RNN's Avatar Legendary
    Reputation
    810
    Join Date
    Sep 2018
    Posts
    1,051
    Thanks G/R
    103/773
    Trade Feedback
    0 (0%)
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ciscobass View Post
    Sorry for a stupid question. What is the three number at the corner represent?
    element / previous kills
    countdown 90s
    timeleft buff / current kills



    The damage of the effects depend on the accumulated kills.
    When one of these occurs, the value of "Current kills" is copied to "Previous kills" and is reset to 1.
    Not all effects have the same duration, the green number indicates the remaining time of the one taking place

  6. #21
    DD2Shop's Avatar Active Member
    CoreCoins Purchaser Authenticator enabled
    Reputation
    23
    Join Date
    Mar 2011
    Posts
    142
    Thanks G/R
    13/12
    Trade Feedback
    21 (95%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by RNN View Post
    plugins\User\PluginEnablerOrDisablerPlugin.cs

    Code:
    using Turbo.Plugins.Default;
    namespace Turbo.Plugins.User
    {
        public class PluginEnablerOrDisablerPlugin : BasePlugin, ICustomizer
        {
            public PluginEnablerOrDisablerPlugin()
            {
                Enabled = true;
            }
            public override void Load(IController hud)
            {
                base.Load(hud);
            }
            public void Customize()
            {
    
    		CUSTOM CODE HERE
    
            }
        }
    }
    Place the text somewhere between the two red { }
    and I recommend using the editor Notepad++
    Fantastic. Notepad++ helped alot
    Comprende?

  7. #22
    ismos43's Avatar Member
    Reputation
    1
    Join Date
    Dec 2017
    Posts
    6
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by RNN View Post
    plugins\User\PluginEnablerOrDisablerPlugin.cs

    Code:
    using Turbo.Plugins.Default;
    namespace Turbo.Plugins.User
    {
        public class PluginEnablerOrDisablerPlugin : BasePlugin, ICustomizer
        {
            public PluginEnablerOrDisablerPlugin()
            {
                Enabled = true;
            }
            public override void Load(IController hud)
            {
                base.Load(hud);
            }
            public void Customize()
            {
    
    		CUSTOM CODE HERE
    
            }
        }
    }
    Place the text somewhere between the two red { }
    and I recommend using the editor Notepad++
    i am sorry i cant download any file from pastebin..can you share with different way?

    ok i download and using it..ty for great job
    Last edited by ismos43; 07-16-2020 at 11:58 AM.

  8. #23
    cafe1326's Avatar Member
    Reputation
    1
    Join Date
    Feb 2018
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I can see the countdown of my teammates from a distance? That helped me a lot. Please

  9. #24
    RNN's Avatar Legendary
    Reputation
    810
    Join Date
    Sep 2018
    Posts
    1,051
    Thanks G/R
    103/773
    Trade Feedback
    0 (0%)
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)
    Unable to read real value for countdown when player is away, that value stops updating

  10. #25
    SeaDragon's Avatar Contributor
    Reputation
    321
    Join Date
    Aug 2016
    Posts
    1,041
    Thanks G/R
    140/299
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by cafe1326 View Post
    I can see the countdown of my teammates from a distance? That helped me a lot. Please
    this is a modified version based on this plugin for private
    TrialsOfTempestsIcon.cs - Pastebin.com

    Originally Posted by RNN View Post
    Unable to read real value for countdown when player is away, that value stops updating
    Maybe you can do code integration, You can simulate the countdown in this way
    Last edited by SeaDragon; 07-20-2020 at 02:29 PM.

  11. Thanks RNN (1 members gave Thanks to SeaDragon for this useful post)
  12. #26
    RNN's Avatar Legendary
    Reputation
    810
    Join Date
    Sep 2018
    Posts
    1,051
    Thanks G/R
    103/773
    Trade Feedback
    0 (0%)
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)
    Yes, you can try predicting it, but I didn't want to for various reasons that complicate reliability. I also stopped playing this season.
    I have seen that you have limited it to GR, which avoids part of the problem, it is a good option.

  13. #27
    cafe1326's Avatar Member
    Reputation
    1
    Join Date
    Feb 2018
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thank you very much

  14. #28
    cafe1326's Avatar Member
    Reputation
    1
    Join Date
    Feb 2018
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by SeaDragon View Post
    this is a modified version based on this plugin for private
    TrialsOfTempestsIcon.cs - Pastebin.com


    Maybe you can do code integration, You can simulate the countdown in this way
    How to adjust the position of the icon?

  15. #29
    dcac's Avatar Member
    Reputation
    1
    Join Date
    Mar 2019
    Posts
    26
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by SeaDragon View Post
    this is a modified version based on this plugin for private
    TrialsOfTempestsIcon.cs - Pastebin.com


    Can you make it blink 10 seconds before the buff starts? ( AlmostGoneBorderBrush color blink )
    Last edited by dcac; 07-21-2020 at 12:53 AM.

  16. #30
    Mundzso's Avatar Member
    Reputation
    14
    Join Date
    Feb 2018
    Posts
    84
    Thanks G/R
    28/6
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by cafe1326 View Post
    How to adjust the position of the icon?
    I have the same question, can't see any offset option in the code

Page 2 of 7 FirstFirst 123456 ... LastLast

Similar Threads

  1. [V9.1] [RNN] GoblinsPlugin
    By RNN in forum TurboHUD Community Plugins
    Replies: 5
    Last Post: 3 Weeks Ago, 12:36 PM
  2. [V9.1] [RNN] BuildsIcons&Coe
    By RNN in forum TurboHUD Community Plugins
    Replies: 107
    Last Post: 10-05-2023, 10:35 AM
  3. [V9.1] [RNN] Shield Of Fury Stacks
    By RNN in forum TurboHUD Community Plugins
    Replies: 17
    Last Post: 06-02-2020, 01:33 PM
  4. [V9.1] [RNN] Resource in Portrait
    By RNN in forum TurboHUD Community Plugins
    Replies: 0
    Last Post: 04-08-2020, 08:12 AM
  5. [V9.1] [RNN] Singularity & Coe
    By RNN in forum TurboHUD Community Plugins
    Replies: 1
    Last Post: 03-27-2020, 09:33 AM
All times are GMT -5. The time now is 07:58 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