Login / Registrieren
DE EN FR ES IT CZ
Zurück Nach oben

Pause Tags

  • #1, by paul-14 5 years ago Zitieren
    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
  • #2, by afrlme 5 years ago Zitieren
    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.


  • #3, by paul-14 5 years ago Zitieren
    perfect wink thank you !