[V9.1] [RNN] SimulacrumsAlertIcon menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 25
  1. #1
    RNN's Avatar Legendary
    Reputation
    811
    Join Date
    Sep 2018
    Posts
    1,051
    Thanks G/R
    103/774
    Trade Feedback
    0 (0%)
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)

    [V9.1] [RNN] SimulacrumsAlertIcon

    Shows the position of the simulacrums on the ground and on the map (your simulacrums will be somewhat different from those of the other players)
    Display an icon for your character when you have equipped Haunted Visions and the number of Simulacrums is less than the maximum you can have (1-2)




    Download: SimulacrumsAlertIcon.cs

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

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

    Code:
    	Hud.GetPlugin<RNN.SimulacrumsAlertIcon>().Enabled = true;
    	Hud.RunOnPlugin<RNN.SimulacrumsAlertIcon>(plugin => 
    	{			
    		plugin.OnlyGR = false;			// Show in GreaterRift only 
    		plugin.ShowInTown = true;		// Is independent of the value of OnlyGR. For Testing
    		plugin.ShowSimulacrums = true;		// Show Simulacrums in Map and Ground
    		plugin.HideOnMinimap = false;		// Hide or not the simulacrums on the minimap  (when ShowSimulacrums = true )
    		plugin.ShowIcon = true;			// Display an icon for your character when the number of Simulacrums is less than the maximum
    		plugin.Xpor = 0.51f;			// To set the x coordinate of the icon
    		plugin.Ypor = 0.34f;			// To set the y coordinate of the icon	
    		plugin.SizeIconMultiplier = 0.50f;	// Size icon Simulacrum
    		plugin.Opacity = 0.75f;			// 0f..1f  Opacity for icon texture	
    		plugin.SoundEnabled = false;		// Play sound when you lose all simulacrums
    		plugin.FileSound = "notification_8.wav";	// File to be played. It must be in the Sounds\ folder	
    
    	}	);
    Last edited by RNN; 11-01-2020 at 05:49 AM. Reason: Added SoundEnabled & FileSound. Added HideOnMinimap

    [V9.1] [RNN] SimulacrumsAlertIcon
  2. Thanks mois, BeeAntOS, 731113, Wasted75, deimudda69, (Sarge) (6 members gave Thanks to RNN for this useful post)
  3. #2
    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)
    Originally Posted by RNN View Post
    Shows the position of the simulacrums on the ground and on the map (your simulacrums will be somewhat different from those of the other players)
    Display an icon for your character when you have equipped Haunted Visions and the number of Simulacrums is less than the maximum you can have (1-2)




    Download: SimulacrumsAlertIcon.cs

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

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

    Code:
    	Hud.GetPlugin<RNN.SimulacrumsAlertIcon>().Enabled = true;
    	Hud.RunOnPlugin<RNN.SimulacrumsAlertIcon>(plugin => 
    	{			
    		OnlyGR = false;			// Show in GreaterRift only 
    		ShowInTown = true;		// Is independent of the value of OnlyGR. For Testing
    		ShowSimulacrums = true;		// Show Simulacrums in Map and Ground
    		ShowIcon = true;		// Display an icon for your character when the number of Simulacrums is less than the maximum
    		Xpor = 0.51f;			// To set the x coordinate of the icon
    		Ypor = 0.34f;			// To set the y coordinate of the icon	
    		SizeIconMultiplier = 0.50f;	// Size icon Simulacrum
    		Opacity = 0.75f;		// 0f..1f  Opacity for icon texture	
    	}	);
    Somehow Simulacron icon is not being show for me, but helm texture at sim feet is, any idea what is wrong ? (I was using haunted visions)

  4. #3
    RNN's Avatar Legendary
    Reputation
    811
    Join Date
    Sep 2018
    Posts
    1,051
    Thanks G/R
    103/774
    Trade Feedback
    0 (0%)
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)
    The icon does not always appear, only when it should alert you to the death of your simulacrums. These can give you more damage and damage reduction and that's why I added it. It only works with the new version of haunted visions

  5. #4
    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)
    Originally Posted by RNN View Post
    The icon does not always appear, only when it should alert you to the death of your simulacrums. These can give you more damage and damage reduction and that's why I added it. It only works with the new version of haunted visions
    Oh maybe that was it, my haunted visions is legacy, gonna check it when I get home.

  6. #5
    takayo72's Avatar Active Member
    Reputation
    17
    Join Date
    Jan 2018
    Posts
    203
    Thanks G/R
    43/15
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    How to change the size of sim icon ?


    I have tried to modify SizeIconMultiplier 's value, the icon maintain in original size.
    Last edited by takayo72; 06-28-2020 at 03:54 AM.

  7. Thanks RNN (1 members gave Thanks to takayo72 for this useful post)
  8. #6
    RNN's Avatar Legendary
    Reputation
    811
    Join Date
    Sep 2018
    Posts
    1,051
    Thanks G/R
    103/774
    Trade Feedback
    0 (0%)
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)
    Fixed, I forgot to add Order, thx

    Code:
    	base.Load(hud);
    	Order = 30001;

  9. Thanks takayo72 (1 members gave Thanks to RNN for this useful post)
  10. #7
    kronos1313's Avatar Member
    Reputation
    1
    Join Date
    Aug 2020
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi, thanks a lot for your work. This is the first plugin i'm trying to use but I can't get it to work. I created a RNN folder within turbohuds plugins folder and dropped the cs file in it. But nothing shows up when I load turbohud. Am I missing something? Sorry if this a dumb question

    edit- sorry didn't realize i had to be out of town. thanks a lot for this!!
    Last edited by kronos1313; 08-10-2020 at 08:33 AM.

  11. #8
    RNN's Avatar Legendary
    Reputation
    811
    Join Date
    Sep 2018
    Posts
    1,051
    Thanks G/R
    103/774
    Trade Feedback
    0 (0%)
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kronos1313 View Post
    Hi, thanks a lot for your work. This is the first plugin i'm trying to use but I can't get it to work. I created a RNN folder within turbohuds plugins folder and dropped the cs file in it. But nothing shows up when I load turbohud. Am I missing something? Sorry if this a dumb question

    edit- sorry didn't realize i had to be out of town. thanks a lot for this!!
    It's just that, except that instead of using the Download button of pastebin you have chosen to copy and paste, or that it does not meet the requirements or you have not adjusted the configuration correctly, for example: by default it is not shown in town and the icon will only appear if you use the new version of haunted visions.

  12. #9
    takayo72's Avatar Active Member
    Reputation
    17
    Join Date
    Jan 2018
    Posts
    203
    Thanks G/R
    43/15
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    feature request:
    On some situation the sims will get kill. When the sims get kill, play a voice say "Your Simulacrum got kill" or some kind of indicator overlay on the sim buff icon
    Last edited by takayo72; 09-05-2020 at 03:18 PM.

  13. #10
    RNN's Avatar Legendary
    Reputation
    811
    Join Date
    Sep 2018
    Posts
    1,051
    Thanks G/R
    103/774
    Trade Feedback
    0 (0%)
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)
    Sorry I will not create new plugins or try to add new features to existing ones. I uninstalled D3 and will not consider playing again until the next patch. If anyone wants to add modifications and post them on this thread or any other, of course they are free to do so.

  14. #11
    RNN's Avatar Legendary
    Reputation
    811
    Join Date
    Sep 2018
    Posts
    1,051
    Thanks G/R
    103/774
    Trade Feedback
    0 (0%)
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)
    Update
    Added SoundEnabled (Play sound when you lose a simulacrum and stop having the maximum allowed) & FileSound (File to be played. It must be in the Sounds\ folder)

    Update
    Changed criteria for sound: will play when you lose all simulacrums
    Last edited by RNN; 10-31-2020 at 03:26 PM. Reason: update

  15. Thanks BeeAntOS (1 members gave Thanks to RNN for this useful post)
  16. #12
    deimudda69's Avatar Member
    Reputation
    8
    Join Date
    Apr 2008
    Posts
    83
    Thanks G/R
    23/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can i somehow disable only the minimap icons? They are somewhat distracting tbh.

  17. #13
    RNN's Avatar Legendary
    Reputation
    811
    Join Date
    Sep 2018
    Posts
    1,051
    Thanks G/R
    103/774
    Trade Feedback
    0 (0%)
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by deimudda69 View Post
    Can i somehow disable only the minimap icons? They are somewhat distracting tbh.
    Update
    Added HideOnMinimap

  18. Thanks deimudda69 (1 members gave Thanks to RNN for this useful post)
  19. #14
    deimudda69's Avatar Member
    Reputation
    8
    Join Date
    Apr 2008
    Posts
    83
    Thanks G/R
    23/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by RNN View Post
    Update
    Added HideOnMinimap
    Wow, thank you good Sir!

  20. #15
    takayo72's Avatar Active Member
    Reputation
    17
    Join Date
    Jan 2018
    Posts
    203
    Thanks G/R
    43/15
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    the two sim icons no more show on 2.6.10

Page 1 of 2 12 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 04:26 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