Pause Tags

  • #1, by paul-14Wednesday, 05. August 2020, 00:24 4 years ago
    hello to all smile
    I would like to know if it was possible to use the <p>  tag so that it applies to all the game, so that I don't have to add it at the end of each sentence?
    in advance thank you wink

    Newbie

    44 Posts


  • #2, by afrlmeWednesday, 05. August 2020, 14:10 4 years ago
    Sure, I don't know if you already have a script for handling texts, but if you don't then feel free to create a new script in the script section of the editor (leave as definition type) & add this code to it.

    -- * on text display function * --
    
    function sText(text)
    
    
    
         text.TimeToWait = -1
    
         text.WaitForAudio = false
    
    
    
    end
    
    
    
    registerEventHandler("textStarted", "sText") -- event handler for begin text


    It will make it so that all texts have to be manually skipped with left mouse button.


    Imperator

    7278 Posts

  • #3, by paul-14Wednesday, 05. August 2020, 23:44 4 years ago
    perfect wink thank you !

    Newbie

    44 Posts