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

User Tag List

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

    [V9.1] [INTERNATIONAL] [RNN] AreaPoolsDeaths

    Supported TurboHUD version: 9.x

    Shows information about each player's pools, the type of area/map he is in, and a deaths counter (total and in NR/GR, for all players).
    Based on gjuz's popular Poolstate plugin ( https://www.ownedcore.com/forums/dia...poolstate.html ([INTERNATIONAL] [gz] Poolstate) )

    The death counter will reset after each New Game.

    Area information is optional, can be disabled:
    Lnn -> Level Rift (nn = 01,..,10)
    Co -> Cow
    Va -> Vault (old)
    VA -> Vault (new)
    Tx -> Town (x = 1,2,3/4,5)
    Ux -> Ubers (x = 1,2,3,4)
    Ax -> Act (x = 1,2,3,4,5)
    WH -> Whimsydale




    Download: AreaPoolsDeaths.cs

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

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

    Code:
    	Hud.GetPlugin<RNN.AreaPoolsDeaths>().Enabled = true;	
    	Hud.RunOnPlugin<RNN.AreaPoolsDeaths>(plugin =>
    	{				
    		plugin.ShowArea = true;			// Show or hide information about the Area/Map (Lnn,Co,Va,VA,Tx,Ux,Ax,Wh)
    		plugin.OffsetX = 0.05f;			// 0f...1f Set the x coordinate, relative to the portrait
    		plugin.OffsetY = 0.12f;			// 0f...1f Set the y coordinate, relative to the portrait
    		plugin.TTSDeaths = true;		// Notify (TTS) the deaths of other players
    		plugin.MsgDeaths = "<Player> Is Dead";	// <Player> is replaced by the name of the player
    		plugin.WavDeaths = false;		// Notify (sound file) the deaths of other players
    		plugin.WavFile = "notification_9.wav";  // File to be played. It must be in the Sounds\ folder	
    	}  );
    Last edited by RNN; 04-16-2020 at 09:09 AM. Reason: the first 5 seconds when starting a game, it will remain silent

    [V9.1] [INTERNATIONAL] [RNN] AreaPoolsDeaths
  2. Thanks BeeAntOS, (Sarge), Wasted75, HoaryWitch, DoctoreGDL (5 members gave Thanks to RNN for this useful post)
  3. #2
    jx10000's Avatar Member
    Reputation
    1
    Join Date
    Oct 2019
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    How to add. Wav file?

  4. #3
    RNN's Avatar Legendary
    Reputation
    801
    Join Date
    Sep 2018
    Posts
    1,043
    Thanks G/R
    102/764
    Trade Feedback
    0 (0%)
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by jx10000 View Post
    How to add. Wav file?
    Update

    Added WavDeaths (default value is false) and WavFile

  5. Thanks BeeAntOS (1 members gave Thanks to RNN for this useful post)
  6. #4
    jx10000's Avatar Member
    Reputation
    1
    Join Date
    Oct 2019
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks for sharing.

  7. #5
    squire14's Avatar Member
    Reputation
    1
    Join Date
    Aug 2016
    Posts
    15
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    any update for this? got exception for this in new hud version

  8. #6
    RNN's Avatar Legendary
    Reputation
    801
    Join Date
    Sep 2018
    Posts
    1,043
    Thanks G/R
    102/764
    Trade Feedback
    0 (0%)
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)
    It was fixed several days ago, you have to download it again

  9. #7
    Jembo's Avatar Active Member
    Reputation
    33
    Join Date
    Nov 2018
    Posts
    112
    Thanks G/R
    28/30
    Trade Feedback
    0 (0%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    Hey RNN, Wondering if It is possible to only show Pool Counter. Aka Remove Death + Resurrect Icons ? I'm guessing would lose the ability to get TTS when someone dies ?
    [V9.1] [INTERNATIONAL] [RNN] AreaPoolsDeaths-death-ressurect-icon-png

  10. #8
    RNN's Avatar Legendary
    Reputation
    801
    Join Date
    Sep 2018
    Posts
    1,043
    Thanks G/R
    102/764
    Trade Feedback
    0 (0%)
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)
    Replace lines 259-265
    Code:
    	string s = string.Format("{0} {1:0.##}  {2} {3} ", (bonus>0)? HasPoolSymbol:EmptyPoolSymbol, _pool, DeathsTotalSymbol, DataIndex[player.Index].DeathsTotal);
    	if (InRift)
    	{
    		 s += string.Format(" [{0}{1}", DeathsInRiftSymbol, DataIndex[player.Index].DeathsInRift);
    		 if (player.InGreaterRift) s += string.Format( " {0}s", (DataIndex[player.Index].DeathsInRift > 6)? 30:( 5 * (DataIndex[player.Index].DeathsInRift - (player.IsDead?1:0)) ) );
    		 s += "]";
    	}
    with this line:
    Code:
    	string s = string.Format("{0} {1:0.##} ", (bonus>0)? HasPoolSymbol:EmptyPoolSymbol, _pool);
    you will continue to be notified when someone dies unless you modify TTSDeaths/WavDeaths

  11. Thanks Jembo (1 members gave Thanks to RNN for this useful post)
  12. #9
    Saico's Avatar Active Member
    Reputation
    21
    Join Date
    Apr 2019
    Posts
    379
    Thanks G/R
    35/20
    Trade Feedback
    0 (0%)
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    This plugin got some kind of "bug" on this Thud version

    The Line
    Code:
    MsgDeaths = "<Player> died"; // <Player> is replaced by the name of the player
    Is proc'ing everytime an ally kills an elite pack, it was supposed to proc when "x" ally dies.

  13. #10
    RNN's Avatar Legendary
    Reputation
    801
    Join Date
    Sep 2018
    Posts
    1,043
    Thanks G/R
    102/764
    Trade Feedback
    0 (0%)
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)
    Install 20.11.19.1

  14. Thanks Saico (1 members gave Thanks to RNN for this useful post)
  15. #11
    deicidemilan's Avatar Member
    Reputation
    1
    Join Date
    Sep 2017
    Posts
    4
    Thanks G/R
    6/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey @RNN can't get info for death or death in GR. I only have info for pools.

Similar Threads

  1. [V9.0] [INTERNATIONAL] [RNN] OtherShrinePlugin
    By RNN in forum TurboHUD Community Plugins
    Replies: 137
    Last Post: 9 Hours Ago, 04:25 PM
  2. [V9.0] [INTERNATIONAL] [RNN] BLueLines
    By RNN in forum TurboHUD Community Plugins
    Replies: 28
    Last Post: 03-20-2022, 07:48 PM
  3. [V9.0] [INTERNATIONAL] [RNN] TimersBarGR
    By RNN in forum TurboHUD Community Plugins
    Replies: 37
    Last Post: 04-09-2021, 09:20 AM
  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 01:33 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