Adventure Game Studio

AGS Support => Beginners' Technical Questions => Topic started by: on Fri 16/04/2004 16:59:18

Title: dialog speed
Post by: on Fri 16/04/2004 16:59:18
any way i can slow dialog speed or require user to click?

when i have speedy dialog..

"yes"
"no"
"what"
"o"

or whatever...the words flash by too fast.
Title: Re:dialog speed
Post by: strazer on Fri 16/04/2004 17:22:26
Put in your game_start function

SetSkipSpeech(3); // Player must click mouse or press key each time

You can adjust how long speech text stays on the screen by manipulating the game.text_speed variable.
Put for example

game.text_speed = 10; // Default 15, higher number means shorter time.

in your game_start function.
Title: thanks
Post by: on Fri 16/04/2004 18:54:04
thanks! it works now.  :)