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

User Tag List

Page 17 of 17 FirstFirst ... 1314151617
Results 241 to 247 of 247
  1. #241
    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)
    Sorry, I haven't been active mainly due to a dire reallife situation.
    I did manage to log in today and saw a small bug due to changes in "turbohud_21.7.22.20"` relating to follower ui.

    Basically, "ArmorySetInfo" keeps displaying red boxes over certain items even after closing the inventory (both for player and follower).
    Here is a quick fix. It forces boxes to only show if BOTH Player Inventory and Follower Inventory are open at the same time, otherwise boxes won't show:

    - Open \plugins\User\Root\ArmorySetInfo.cs.
    - go to line 105.
    - change:
    Code:
    if (clipState != ClipState.Inventory) return;
    
    var uiInv = Hud.Inventory.InventoryMainUiElement;
    if (!uiInv.Visible) return;
    to:
    Code:
    if (clipState != ClipState.Inventory || !Hud.Inventory.InventoryMainUiElement.Visible || !Hud.Inventory.FollowerMainUiElement.Visible)
    	return;
    var uiInv = Hud.Inventory.InventoryMainUiElement;
    _____________

    Another plugin that is having a similar issue is "Resu's CraftersDelightPlugin".

    - Open \plugins\Resu\CraftersDelightPlugin.cs.
    - go to line 721.
    - just before:
    Code:
    if (clipState == ClipState.Inventory && Equipped)
    add this on a seperate line:
    Code:
    if (clipState != ClipState.Inventory || !Hud.Inventory.InventoryMainUiElement.Visible || !Hud.Inventory.FollowerMainUiElement.Visible)
    	return;
    Last edited by Stormreaver; 07-27-2021 at 04:57 AM.
    _________________________________________________________

    My TurboHUD Theme: >> https://bit.ly/SRJ_Theme
    Copy paste the link?

    [7.7] [INT] [SR] SRJ Theme!
  2. Thanks razer86 (1 members gave Thanks to Stormreaver for this useful post)
  3. #242
    randy187's Avatar Member CoreCoins Purchaser
    Reputation
    1
    Join Date
    Oct 2018
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Is there any way to completely disable all TTS?

    And btw the A to indicate ancient items on the follower still shows up when only your inventory is open

  4. #243
    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)
    @randy187

    Regarding the Ancient symbol (A), I have not seen that after doing the fix above your post.
    FYI, This issue is caused by the new addition to TH since version 21.7.20.0, and the subsequent change to \plugins\Default\Inventory\InventoryAndStashPlugin.cs.
    BREAKING CHANGE: PaintTopInGame with ClipState.Inventory is called even if Inventory is not visible, but only the follower dialog.

    As for TTS, it is kinda spread across several plugins.
    Your best bet would be to go through my Customizer file (\plugins\_SR\Root\SR_CustomizerPlugin.cs), search for "TTS" and disable things from there.

    So, in my customizer you will see the following entries with TTS in them:

    (1) ItemsPlugin - this is a default plugin for item drop tts. I already disabled all tts in it.
    (2) ItemDropSoundAlertPlugin - this is a jack plugin for item drop tts. You can disable tts by changing True to False.

    (3) GoblinPlugin - this is a default plugin for goblin tts. You can disable tts by changing True to False.
    (4) GoblinSoundAlertPlugin - this is a jack plugin for goblin pack tts. You can disable tts by changing "Goblin Pack" to "".

    (5) PlayerSkillCooldownSoundAlertPlugin - this is a jack plugin for player skills tts. You can disable tts by commenting out the few lines that add skills.
    (6) ShrineAlertPlugin - this is a db24 plugin for shrine tts. You can disable tts by deleting any text inside quotations, ex: "blah blah" to "".

    I think that should remove most if not all TTS.
    Last edited by Stormreaver; 08-03-2021 at 07:18 PM.
    _________________________________________________________

    My TurboHUD Theme: >> https://bit.ly/SRJ_Theme
    Copy paste the link?

  5. #244
    randy187's Avatar Member CoreCoins Purchaser
    Reputation
    1
    Join Date
    Oct 2018
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    @Stormreaver

    Hmm ok regarding the Ancient symbol, I will look into that again.

    I disabled all those TTS options now, thank you for that, but there is still TTS when the boss spawns and when I kill him, any way to remove that?

  6. #245
    Razorfish's Avatar Contributor
    Reputation
    188
    Join Date
    Apr 2019
    Posts
    178
    Thanks G/R
    19/158
    Trade Feedback
    0 (0%)
    Mentioned
    7 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by randy187 View Post
    Is there any way to completely disable all TTS?
    You could try adding to the customizer file:
    Code:
    Hud.Sound.IsSpeakEnabled = false;

  7. #246
    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)
    I would definitely try first what Razorfish suggested as I think that should disable all tts that uses "Hud.Sound.Speak" which I assume all plugins use to generate tts in turbohud.

    If that does not work for some reason, to disable boss tts, we have to edit the file directly since that part is private and hence i dont think it can be modified through customizer method.
    - open (\plugins\Jack\Root\RiftInfoPlugin.cs).
    - go to line 279.
    - comment out lines: 279, 280, 286.
    _________________________________________________________

    My TurboHUD Theme: >> https://bit.ly/SRJ_Theme
    Copy paste the link?

  8. Thanks NiGHTsC (1 members gave Thanks to Stormreaver for this useful post)
  9. #247
    sweetjesusjuice's Avatar Member
    Reputation
    1
    Join Date
    Dec 2021
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Any chance this is gonna be updated? I get several errors installing it :/

Page 17 of 17 FirstFirst ... 1314151617

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 05:21 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