[7.7] [INT] [SR] SRJ Theme! menu

User Tag List

Page 6 of 17 FirstFirst ... 2345678910 ... LastLast
Results 76 to 90 of 247
  1. #76
    icheck's Avatar Banned
    Reputation
    6
    Join Date
    Jan 2019
    Posts
    36
    Thanks G/R
    11/5
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    edit plugin\Jack\Root\DisplayActorsPlugin.cs

    Code:
            public DisplayActorsPlugin()
            {
                Enabled = true;
                HotKey = Keys.V;
            }
    Disable plugin -> Change Enabled = true; to Enabled = false ;
    or
    Change hotkey (V key for another) in HotKey = Keys.V;

    [7.7] [INT] [SR] SRJ Theme!
  2. #77
    afrojax's Avatar Member
    Reputation
    4
    Join Date
    Sep 2017
    Posts
    30
    Thanks G/R
    92/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Goto Config order on Thud and open it with Notepad ++ or editor

    there you can change it

    sry for my bad english

    hope i can help

  3. #78
    Stormreaver's Avatar Contributor
    Reputation
    152
    Join Date
    Jul 2012
    Posts
    290
    Thanks G/R
    40/136
    Trade Feedback
    0 (0%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    Changes -- 04 Feb 2019:
    - General updates.
    - Removed MinimapClip bleed (plugins\_SR\Root\SR_CustomizerPlugin).
    - Changed "DisplayActorsPlugin" debug toggle key to: Numpad Multiply (*).
    - Added more customization options (plugins\_SR\Root\SR_CustomizerPlugin).
    - Tweaked CoE buff icons @ player feet: only COLD & FIRE (big icon) show now (plugins\_SR\BuffLists\SR_CustomBuffsPlayerBottom2Plugin).
    - Added and customized several more plugins (thanks to the Authors!):
    > by Resu:
    DiadrasFirstGemPlugin (Bane of the Stricken stacks)
    GroupGRLevelAdviserPlugin
    ImmortalKingsCallPlugin
    ParagonPercentagePlugin
    > by JarJarD3:
    ArmorySetInfo (Toggle key: Numpad Divide (/)).

  4. Thanks Slingshot1 (1 members gave Thanks to Stormreaver for this useful post)
  5. #79
    Slingshot1's Avatar Member
    Reputation
    10
    Join Date
    Mar 2017
    Posts
    58
    Thanks G/R
    16/9
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @Stormreaver, @Resu, @Jack - where in the new SRJ theme can I turn the sound alert for Vengeance off?

  6. #80
    Stormreaver's Avatar Contributor
    Reputation
    152
    Join Date
    Jul 2012
    Posts
    290
    Thanks G/R
    40/136
    Trade Feedback
    0 (0%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    @slingshot

    to disable that sound alert:
    - Go to: plugins\_SR\Root\SR_CustomizerPlugin.
    - Search for the word: "Vengeance".
    - Comment out the whole line by adding "//" at the start, like so:
    Code:
    // plugin.Add(Hud.Sno.SnoPowers.DemonHunter_Vengeance);
    Last edited by Stormreaver; 02-04-2019 at 08:49 PM.

  7. #81
    Slingshot1's Avatar Member
    Reputation
    10
    Join Date
    Mar 2017
    Posts
    58
    Thanks G/R
    16/9
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Stormreaver View Post
    @slingshot

    to disable that sound alert:
    - Go to: plugins\_SR\Root\SR_CustomizerPlugin.
    - Search for the word: "Vengeance".
    - Comment out the whole line by adding "//" at the start, like so:
    Code:
    // plugin.Add(Hud.Sno.SnoPowers.DemonHunter_Vengeance);
    Thanks - next question, is how do I turn off all alert sounds? I don't want it to announce a pylon while playing.

  8. #82
    Stormreaver's Avatar Contributor
    Reputation
    152
    Join Date
    Jul 2012
    Posts
    290
    Thanks G/R
    40/136
    Trade Feedback
    0 (0%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    @slingshot

    let's see.
    - Go to: plugins\_SR\Root\SR_CustomizerPlugin.

    For goblins alerts:
    - search for: "enable TTS GoblinPlugin".
    - under Hud.RunOnPlugin<GoblinPlugin>, change true to false.
    Code:
    Hud.RunOnPlugin<GoblinPlugin>(plugin =>
       {
         plugin.EnableSpeak = false
       });
    For dropped items:
    - search for "TTS dropped items".
    - change to "false" whatever entry you want muted.
    - do not change the prefixes part.

    For Ramaladni's gift:
    - search for "Nuclear Launch Detected".
    - comment out that whole line.

    For skill alerts:
    - search for "PlayerSkillCooldownSoundAlertPlugin".
    - comment out any line u do not want.

    For shrine alerts:
    - search for "Shrine Alert Plugin TTS"
    - change anything that says "null" or has any text to just empty quotes: "".
    - the comments explain what each means.


    If I missed anything, tell me

  9. #83
    Slingshot1's Avatar Member
    Reputation
    10
    Join Date
    Mar 2017
    Posts
    58
    Thanks G/R
    16/9
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @Stormreaver - thanks - I just changed the COnstant Volume from 100 to 0, so HUD makes no sounds

  10. #84
    SnowWar's Avatar Member
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi Stormreaver,

    I have not played D3 in some time, so glad I found this here again. Thx a mil for the work.

    Quick question:

    I'm missing my Teleport CD icon below my character.
    If I have it correct then it should be there according to this line in "SR_CustomBuffsPlayerBottomPlugin.cs"

    // Teleport
    plugin.RuleCalculator.Rules.Add(new BuffRule(168344) {
    IconIndex = null, MinimumIconCount = 1, ShowTimeLeft = true, IconSizeMultiplier = IS0, });
    Is there something wrong with it or is my hud just being funny? Thx

  11. #85
    TheDiscordian's Avatar Member
    Reputation
    11
    Join Date
    Feb 2019
    Posts
    22
    Thanks G/R
    13/10
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Any idea when we might get personal arcs under feet again? I'm very interested in that feature .

  12. #86
    JackCeparou's Avatar Savvy ? 🐒
    Reputation
    534
    Join Date
    Mar 2017
    Posts
    588
    Thanks G/R
    51/490
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Theme release: v9.0 ready. (Not compatible with v8.0)

    https://github.com/JackCeparou/SRJ-Theme/releases

    Note: I will keep it up to date, but don't expect any customization support ;p
    Last edited by JackCeparou; 02-16-2019 at 03:02 PM.
    Hide the Rum! --> Default theme customization 101 <--

  13. Thanks Stormreaver (1 members gave Thanks to JackCeparou for this useful post)
  14. #87
    franehr's Avatar Member
    Reputation
    6
    Join Date
    Oct 2017
    Posts
    82
    Thanks G/R
    34/5
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    216 exseptions

  15. #88
    zortlak's Avatar Member
    Reputation
    1
    Join Date
    Apr 2016
    Posts
    11
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hello tyvm for the nice work, how can i make pools visible on minimap like on default settings.

  16. #89
    JackCeparou's Avatar Savvy ? 🐒
    Reputation
    534
    Join Date
    Mar 2017
    Posts
    588
    Thanks G/R
    51/490
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by franehr View Post
    216 exseptions
    Fresh install only, old customization can cause that.
    Originally Posted by zortlak View Post
    hello tyvm for the nice work, how can i make pools visible on minimap like on default settings.
    No idea ^^'
    Hide the Rum! --> Default theme customization 101 <--

  17. Thanks Stormreaver (1 members gave Thanks to JackCeparou for this useful post)
  18. #90
    zortlak's Avatar Member
    Reputation
    1
    Join Date
    Apr 2016
    Posts
    11
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    sorry for asking many questions i am new to th how can i enable/disable the circle under monster's feet

Page 6 of 17 FirstFirst ... 2345678910 ... LastLast

Similar Threads

  1. Vista Theme For Windows
    By REDACTEDSEPHI in forum Community Chat
    Replies: 44
    Last Post: 07-12-2007, 03:24 PM
  2. Final toutch to window vista theme
    By Hounro in forum Community Chat
    Replies: 13
    Last Post: 06-11-2007, 06:09 PM
  3. My desktop theme {And where to get it}
    By matswurld in forum Art & Graphic Design
    Replies: 5
    Last Post: 05-28-2007, 02:14 AM
  4. Windows XP Theme
    By DaNuMan in forum Community Chat
    Replies: 5
    Last Post: 02-21-2007, 04:29 PM
  5. What is this windows theme?
    By leoj in forum Community Chat
    Replies: 8
    Last Post: 01-25-2007, 08:53 AM
All times are GMT -5. The time now is 11:51 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