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

User Tag List

Results 1 to 7 of 7
  1. #1
    RNN's Avatar Legendary
    Reputation
    790
    Join Date
    Sep 2018
    Posts
    1,032
    Thanks G/R
    102/753
    Trade Feedback
    0 (0%)
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)

    [V9.1] [INTERNATIONAL] [RNN] BandOfMight

    Supported TurboHUD version: 9.x

    Show an icon for Band of Might and warns with a sound when the buff expires, with the option to notify in advance (1s by default)



    Download: BandOfMight.cs

    Installation: Place BandOfMight.cs in "plugins\RNN\BandOfMight.cs"

    Custom code (in Plugins\User\PluginEnablerOrDisablerPlugin.cs , Optional) :

    Code:
    	Hud.GetPlugin<RNN.BandOfMight>().Enabled = true;			
    	Hud.RunOnPlugin<RNN.BandOfMight>(plugin =>
    	{	
    		plugin.ShowIcon = true;
    		
    		plugin.SoundEnabled = true;
    		plugin.FileSound = "notification_8.wav";// File to be played. It must be in the Sounds\ folder
    		plugin.EarlyAlert = 1f;			// You can choose to be notified in advance. Valid values: from 0 to 4. If it is zero it will notify us just when the bonus ends
    		plugin.BeepOption = false;		// Play a beep instead of a .wav file
    		plugin.BeepFrecuency = 1000;		// Beep Frequency
    		plugin.BeepDuration = 50;		// Beep Duration, in milliseconds
    
    		plugin.Xpor = 0.525f;		// Valid values: from 0 to 1 . To set the x coordinate of the icon
    		plugin.Ypor = 0.452f;		// Valid values: from 0 to 1 . To set the y coordinate of the icon
    		plugin.SizeMultiplier = 0.45f;	// Icon Size Multiplier			
    	}  );
    Last edited by RNN; 12-25-2019 at 11:47 AM. Reason: Bug when SoundEnabled= false. Fixed

    [V9.1] [INTERNATIONAL] [RNN] BandOfMight
  2. Thanks BeeAntOS, AffaBanana, mois, maimay789, redjohn93, makatsi, johnbl (7 members gave Thanks to RNN for this useful post)
  3. #2
    RNN's Avatar Legendary
    Reputation
    790
    Join Date
    Sep 2018
    Posts
    1,032
    Thanks G/R
    102/753
    Trade Feedback
    0 (0%)
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)
    I have been asked for an icon for Berserker, I add it here as an extra: Berserker.cs
    If you copy this plugin with another name and edit the lines 8,54 (change the word Berserker) and 77,78,79 (powersno,powerindex,textureid. Plugin ([V9.0] [ENG] [RNN] MyBuffs) can help) it is possible to easily create an icon for buffs of other skills.
    For items modify 8,54 (change the word Berserker) and 77,78,80,81 (powersno,powerindex,snoItem and powersno4cd). textureid will be ignored if snoItem is different from null. To find out snoItem Read interfaces\controllers\sno\ISnoItemList.cs . For example, for the chilanik belt it would look like this:

    Code:
    	powersno = 318821;	// Buff Chilanik
    	powerindex = 1;		// Buff Chilanik
    	textureid = 0;		// ignored value
    	snoItem = Hud.Sno.SnoItems.Unique_BarbBelt_101_x1;	// Item Chilanik. It will be used to get the item Texture
    	powersno4cd = 375483;					// Buff Warcry, for Chilanik.  It will be used to get the cooldowns


    Update
    Added Cooldown (if the buff is of a skill) and Showstacks (default value is false)


    Update
    Added snoItem and powersno4cd.
    Last edited by RNN; 12-30-2019 at 09:51 AM. Reason: Added snoItem and powersno4cd

  4. Thanks Duckota, AffaBanana, mois, BeeAntOS, maimay789 (5 members gave Thanks to RNN for this useful post)
  5. #3
    danired10's Avatar Member
    Reputation
    1
    Join Date
    May 2019
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey RNN,

    Thanks in advance for your support. I put the file in /Plugin/RNN folder, but the buffs wasn´t show. Could you help me?

  6. #4
    RNN's Avatar Legendary
    Reputation
    790
    Join Date
    Sep 2018
    Posts
    1,032
    Thanks G/R
    102/753
    Trade Feedback
    0 (0%)
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)


    Requirements:
    - Download the file directly to the plugins\RNN folder (avoid copy/paste)
    - Have the Band of Might ring equipped (or in the kanai cube)
    - Not being in town
    - Activate the ring with any of the 3 skills mentioned in the item description

  7. #5
    ljj16's Avatar Member
    Reputation
    1
    Join Date
    Nov 2019
    Posts
    7
    Thanks G/R
    4/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Good plugin!! But i want to chilanik's chain 10second increase speed buff icon.
    Im sorry, could help me?

  8. #6
    RNN's Avatar Legendary
    Reputation
    790
    Join Date
    Sep 2018
    Posts
    1,032
    Thanks G/R
    102/753
    Trade Feedback
    0 (0%)
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)
    I think you ask for something like this:



    plugins\RNN\Chilanik.cs

    Modify Xpor, Ypor, SizeMultiplier ... according to your needs.

    I will upload an update of Berserker.cs in a few minutes to improve the creation of icons for items with legendary powers
    Last edited by RNN; 12-30-2019 at 08:57 AM.

  9. Thanks mois, AffaBanana, bobbydigital12 (3 members gave Thanks to RNN for this useful post)
  10. #7
    lochael's Avatar Member
    Reputation
    1
    Join Date
    Aug 2021
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Seems to be an issue with the pastebin, can someone post the cs source here?

Similar Threads

  1. [V9.0] [INTERNATIONAL] [RNN] BLueLines
    By RNN in forum TurboHUD Community Plugins
    Replies: 28
    Last Post: 03-20-2022, 07:48 PM
  2. [V9.0] [INTERNATIONAL] [RNN] TimersBarGR
    By RNN in forum TurboHUD Community Plugins
    Replies: 37
    Last Post: 04-09-2021, 09:20 AM
  3. [V9.0] [INTERNATIONAL] [RNN] OtherShrinePlugin
    By RNN in forum TurboHUD Community Plugins
    Replies: 134
    Last Post: 02-18-2021, 09:05 PM
  4. [V9.0] [INTERNATIONAL] [RNN] LogChat
    By RNN in forum TurboHUD Community Plugins
    Replies: 19
    Last Post: 01-08-2021, 09:14 AM
  5. [V9.0] [INTERNATIONAL] [RNN] Icount
    By RNN in forum TurboHUD Community Plugins
    Replies: 17
    Last Post: 09-29-2019, 09:02 AM
All times are GMT -5. The time now is 05:48 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