Tts menu

User Tag List

Thread: Tts

Results 1 to 8 of 8
  1. #1
    SILENTxTRIGGER's Avatar Member
    Reputation
    3
    Join Date
    Mar 2017
    Posts
    27
    Thanks G/R
    6/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Tts

    Hi there,

    how can i get TTS to run?

    for pools , gobs, and primals .

    hope some 1 can help me a bit


    GREETS

    Tts
  2. #2
    1969's Avatar Member
    Reputation
    1
    Join Date
    Mar 2017
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    TTS is finally back!

    Jack's way is teh right way
    Works for Gob's

    Then head over to:
    [v7.2] [INTERNATIONAL] [Jack] ItemDropSoundAlertPlugin

    for the tts for drops/items etc

  3. #3
    SILENTxTRIGGER's Avatar Member
    Reputation
    3
    Join Date
    Mar 2017
    Posts
    27
    Thanks G/R
    6/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by 1969 View Post
    TTS is finally back!

    Jack's way is teh right way
    Works for Gob's

    Then head over to:
    [v7.2] [INTERNATIONAL] [Jack] ItemDropSoundAlertPlugin

    for the tts for drops/items etc


    Hi,

    now ive a folder called JACK in plugin folder, is that wright or ive to put the .cs file in my user folder ???

    in my GOBLIN.cs isnt any line ENABLE speak or some like that...

    GREETS
    Last edited by SILENTxTRIGGER; 03-31-2017 at 06:22 AM.

  4. #4
    1969's Avatar Member
    Reputation
    1
    Join Date
    Mar 2017
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Jack posted the correct way in the thread I made about how to enable tts for goblins,

    What you need to do to enable it is, modify the PluginEnablerOrDisablerPlugin.cs file which is in the user folder and add this:

    PHP Code:
                Hud.RunOnPlugin<GoblinPlugin>(plugin => 
                { 
                    
    plugin.EnableSpeak true
                }); 
    don't modify anything from the default folder as i've been informed

  5. #5
    SILENTxTRIGGER's Avatar Member
    Reputation
    3
    Join Date
    Mar 2017
    Posts
    27
    Thanks G/R
    6/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i*ll try


    ty i.A

    this happen when adding jacks line to PluginEnablerOrDisablerPlugin.cs file

    2017.04.01 08:16:22.206 error while initializing plugins
    2017.04.01 08:16:22.249 c:\Users\MIKE\Desktop\HUD\plugins\User\PluginEnablerOrDisablerPlugin.cs(47,13) : error CS0116: Ein Namespace kann nicht direkt Member, wie z.B. Felder oder Methoden, enthalten.


    // ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    // *.txt files are not loaded automatically by TurboHUD
    // you have to change this file's extension to .cs to enable it
    // ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

    using Turbo.Plugins.Default;

    namespace Turbo.Plugins.User
    {

    public class PluginEnablerOrDisablerPlugin : BasePlugin, ICustomizer
    {

    public PluginEnablerOrDisablerPlugin()
    {
    Enabled = true;
    }

    public override void Load(IController hud)
    {
    base.Load(hud);
    }

    // "Customize" methods are automatically executed after every plugin is loaded.
    // So these methods can use Hud.GetPlugin<class> to access the plugin instances' public properties (like decorators, Enabled flag, parameters, etc)
    // Make sure you test the return value against null!
    public void Customize()
    {
    // basic examples

    // turn on MultiplayerExperienceRangePlugin
    Hud.TogglePlugin<MultiplayerExperienceRangePlugin>(true);

    // turn off sell darkening
    Hud.GetPlugin<InventoryAndStashPlugin>().NotGoodDisplayEnabled = false;

    // disable arcane affix label
    Hud.GetPlugin<EliteMonsterAffixPlugin>().AffixDecorators.Remove(MonsterAffix.Arc ane);

    // override an elite affix's text
    Hud.GetPlugin<EliteMonsterAffixPlugin>().CustomAffixNames.Add(MonsterAffix.Desec rator, "DES");
    }

    }

    }
    Hud.RunOnPlugin<GoblinPlugin>(plugin =>
    {
    plugin.EnableSpeak = true;
    });




    if some have a working tts for me plz let me know , im to NOOBIE adding in wright way.


    GREETS
    Last edited by SILENTxTRIGGER; 04-01-2017 at 01:28 AM.

  6. #6
    bobbydigital12's Avatar Member
    Reputation
    2
    Join Date
    Mar 2017
    Posts
    13
    Thanks G/R
    59/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Haven't seen a goblin yet. But this is not giving me errors
    Code:
            public void Customize()
            {
                Hud.RunOnPlugin<GoblinPlugin>(plugin =>  
                {  
                    plugin.EnableSpeak = true;  
                });  
    
                // basic examples

  7. #7
    everknown's Avatar Active Member
    Reputation
    17
    Join Date
    Jun 2012
    Posts
    121
    Thanks G/R
    33/11
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is there a way to change the TTS voice now?

  8. #8
    StrikeQ's Avatar Member
    Reputation
    1
    Join Date
    Jul 2015
    Posts
    15
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by everknown View Post
    Is there a way to change the TTS voice now?
    It uses whatever you have set in Windows.

    Do note that Windows 10 (Not sure about 8/7) has 2 "separate" TTS voice settings for 2 different API's. You want to change the one via the "old school" control panel, not the one via Windows 10 "Settings"

Similar Threads

  1. [How To] TTS is finally back!
    By 1969 in forum TurboHUD Support
    Replies: 6
    Last Post: 03-31-2017, 07:50 PM
  2. [Bug] TTS is not working with ruRU
    By JohnWick in forum TurboHUD Support
    Replies: 10
    Last Post: 03-30-2017, 01:37 PM
All times are GMT -5. The time now is 02:31 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