Adventure Game Studio

AGS Support => Beginners' Technical Questions => Topic started by: Etcher Squared Games on Tue 24/08/2004 03:22:39

Title: Quotes in dialogs and displays... - SOLVED
Post by: Etcher Squared Games on Tue 24/08/2004 03:22:39
So, how does one put a
"
in a Display or in a dialog.Ã,  I couldn't find how to do something like that anywhere.
Title: Re: Quotes in dialogs and displays...
Post by: Kweepa on Tue 24/08/2004 03:38:30
There are two approaches:

1. Try DisplaySpeech(EGO, "It says \"Ugly!\""); // inside a string, use \"

2. Write DisplaySpeech(EGO, "It says {Beautiful!}");
and edit the font (using Radiant's font editor for example) replacing { with “ and } with ”.

Steve
Title: Re: Quotes in dialogs and displays... - SOLVED
Post by: Etcher Squared Games on Tue 24/08/2004 03:47:28
thanks, I've been programming in DELPHI too long...
I was trying
"and he said, ""no no no"""


etc etc
I completly forgot the c++ syntax