[V9.1] [INTERNATIONAL] [RNN] SkillBarPlugin menu

Shout-Out

User Tag List

Page 3 of 3 FirstFirst 123
Results 31 to 42 of 42
  1. #31
    dcac's Avatar Member
    Reputation
    1
    Join Date
    Mar 2019
    Posts
    38
    Thanks G/R
    5/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Awesome.

    I think this is the most needed and useful plugin for this season.

    This season is a mechanism where two wiz alternately stack and deal damage, so we need two wiz icons.

    (Like this plugin = DAV_PartyCDPlugin.cs)

    [ENG] Combin Plugin of Party Cooldown & Archon Downtime https://www.ownedcore.com/forums/dia...-downtime.html ([ENG] Combin Plugin of Party Cooldown & Archon Downtime)


    DAV_PartyCDPlugin.cs DAV_PartyCDPlugin - Pastebin.com


    I don't know how to code, so I'm trying to modify the plugin, but it's not easy.

    I would really appreciate it if you could help me.

    My friends really like your plugin. Me too, of course

    Thank you.


    Additionally, I think I've seen your other plugins in the past where the cooldown timer is in real time count even when you're away from it.

    Can this be applied here too?
    Last edited by dcac; 09-06-2024 at 09:17 PM.

    [V9.1] [INTERNATIONAL] [RNN] SkillBarPlugin
  2. #32
    RNN's Avatar Legendary
    Reputation
    846
    Join Date
    Sep 2018
    Posts
    1,109
    Thanks G/R
    107/808
    Trade Feedback
    0 (0%)
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)
    ArchonIcon displays an icon for each wizard who has the Archon skill, to the right of their portrait. I don't understand why you mention those plugins, would you like it to include some more function? (I use Google Translate and sometimes I can't understand the message)
    I stopped playing in a group several weeks ago and I've never played the 2-Archon combination, i can't test much, so it's unlikely that I'll add certain features.
    I have noticed that if you return to archon before the end of the swami's benefit it does not add the statcks, fixed.
    When a player moves away (HasValidActor is false) they no longer have access to much information about the character (remaining time of archon or swami for example). Sometimes it is possible to make an estimate of those values by collecting certain data when the character is nearby, but it is an assumption that could not be real, many situations can occur and tests have to be carried out, I can't say for sure that I will add that feature..

  3. #33
    dcac's Avatar Member
    Reputation
    1
    Join Date
    Mar 2019
    Posts
    38
    Thanks G/R
    5/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I tested it and it's not a plugin that only applies to itself. I was wrong. (You're right, there's no reason to mention DAV plugin.)

    One thing I wanted to apply was

    I thought it would be easy to change to archon alternately if it was applied in real time even if the skill cooldown time was far away(stop).

    It's a very good plugin as it is now and I use it very usefully in party play.

    Thank you again for providing the plugin.

  4. #34
    RNN's Avatar Legendary
    Reputation
    846
    Join Date
    Sep 2018
    Posts
    1,109
    Thanks G/R
    107/808
    Trade Feedback
    0 (0%)
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)
    I think I've expressed myself wrong: I don't mind at all that you mention other plugins, the problem is that I don't play much wizard in a group and I don't know well how to play with archon and also reading other people's code (even my own code after a while of having created it) requires some effort, so I asked what modifications or what data/information would be useful that the plugin included (maybe you were looking for the icons appear together in another location, or you preferred bars instead of just numerical values)
    I've been thinking about how to code that shows the remaining time of both Archon and Swami from another player when they're away (this information isn't really accessible) and I'll try to upload an update later, although it should be clear that it will be an estimate (the icon will have a border of another color to differentiate it)
    Last edited by RNN; 4 Weeks Ago at 07:41 AM.

  5. #35
    RNN's Avatar Legendary
    Reputation
    846
    Join Date
    Sep 2018
    Posts
    1,109
    Thanks G/R
    107/808
    Trade Feedback
    0 (0%)
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)
    I think I've expressed myself wrong: I don't mind at all that you mention other plugins, the problem is that I don't play much wizard in a group and I don't know well how to play with archon and also reading other people's code (even my own code after a while of having created it) requires some effort, so I asked what modifications or what data/information would be useful that the plugin included (maybe you were looking for the icons appear together in another location, or you preferred bars instead of just numerical values)
    I've been thinking about how to code that shows the remaining time of other players' buffs when they're away, both from Archon and Swuami (this information isn't really accessible), and I'll try to upload an update later, although it should be clear that it will be an estimate/guess (the icon will have a border of another color to differentiate it)
    Last edited by RNN; 4 Weeks Ago at 07:46 AM.

  6. #36
    RNN's Avatar Legendary
    Reputation
    846
    Join Date
    Sep 2018
    Posts
    1,109
    Thanks G/R
    107/808
    Trade Feedback
    0 (0%)
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)
    plugin ArchonIcon updated , details in post 30

  7. #37
    dcac's Avatar Member
    Reputation
    1
    Join Date
    Mar 2019
    Posts
    38
    Thanks G/R
    5/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    RNN thx.

    solved
    Last edited by dcac; 3 Weeks Ago at 06:49 AM.

  8. #38
    RNN's Avatar Legendary
    Reputation
    846
    Join Date
    Sep 2018
    Posts
    1,109
    Thanks G/R
    107/808
    Trade Feedback
    0 (0%)
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)
    First a possible solution: Convert timeleft from double to float, this operation is called casting.

    BrushRed.DrawRectangle(x, y, - ( (float)timeleft * SizeIconWidth) , - ProgressBarWidth);

    ------

    Explanation: As you can see..

    void DrawRectangle(float x, float y, float w, float h); (read interfaces\resources\IBrush.cs)

    w (width) and h (height) need to be values of type float but the result of multiplying timeleft * SizeIconWidth is double, so there is a possible loss of information and it will emit an error. Switching from int (ProgressBarWidth) to double does it automatically, but from double to float it doesn't, because double has more range and precision, let's say it needs your permission to do that conversion.

    Floating-point numeric types - C# reference | Microsoft Learn

    A more detailed explanation in case it is not clear: timeleft is a value of type double and SizeIconWidth is a value of type float, being of different type the one with the lowest precision is changed to the one with the highest precision before performing that multiplication, that is, that SizeIconWidth becomes a value of type double and the result (double x double) will also be double.

  9. #39
    dcac's Avatar Member
    Reputation
    1
    Join Date
    Mar 2019
    Posts
    38
    Thanks G/R
    5/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hahaha, after holding on for a long time and doing this and that, I kept getting errors because I put "(" in different places.
    It was a very stupid question.
    I used float, but "(" was the problem.

    Thank you.

    Thank you very much for your kind reply, I was able to solve it as I wanted.
    Attached Thumbnails Attached Thumbnails [V9.1] [INTERNATIONAL] [RNN] SkillBarPlugin-swami-png  
    Last edited by dcac; 3 Weeks Ago at 07:00 AM.

  10. #40
    RNN's Avatar Legendary
    Reputation
    846
    Join Date
    Sep 2018
    Posts
    1,109
    Thanks G/R
    107/808
    Trade Feedback
    0 (0%)
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)
    Updated ArchonIcon (post 30)

  11. #41
    RawHulk's Avatar Member
    Reputation
    3
    Join Date
    Apr 2024
    Posts
    42
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    deleted the message
    Last edited by RawHulk; 4 Weeks Ago at 04:59 AM.

  12. #42
    dcac's Avatar Member
    Reputation
    1
    Join Date
    Mar 2019
    Posts
    38
    Thanks G/R
    5/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    To be honest, I wanted to apply the updated version now. However, it was too complicated, so I failed to apply it, and the only alternative I modified was Redbar.

    Actually, I wanted to ask you to do this, but I couldn't because I thought it would be too much of a bother.(to You)

    I'm very happy that it's been updated, and I appreciate your hard work.
    Last edited by dcac; 3 Weeks Ago at 11:35 AM.

Page 3 of 3 FirstFirst 123

Similar Threads

  1. [V9.0] [INTERNATIONAL] [RNN] TimersBarGR
    By RNN in forum TurboHUD Community Plugins
    Replies: 47
    Last Post: 07-04-2024, 12:34 PM
  2. [V9.0] [INTERNATIONAL] [RNN] Icount
    By RNN in forum TurboHUD Community Plugins
    Replies: 24
    Last Post: 06-08-2024, 01:39 AM
  3. [V9.0] [INTERNATIONAL] [RNN] OtherShrinePlugin
    By RNN in forum TurboHUD Community Plugins
    Replies: 137
    Last Post: 03-28-2024, 04:25 PM
  4. [V9.0] [INTERNATIONAL] [RNN] BLueLines
    By RNN in forum TurboHUD Community Plugins
    Replies: 28
    Last Post: 03-20-2022, 07:48 PM
  5. [V9.0] [INTERNATIONAL] [RNN] LogChat
    By RNN in forum TurboHUD Community Plugins
    Replies: 19
    Last Post: 01-08-2021, 09:14 AM
All times are GMT -5. The time now is 06:49 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