Hello.
I was using:
string object
InputBox("I would like", object);
ParseText(object);
DisplaySpeech: "GANDALF, "I would like %d", object";
But when my character talks, It says: "I would like 12195212"., and not variable's value. What am i doing wrong?
Isn't %d for ints, and %s for strings? So:
Ã, string objectÃ,Â
Ã, InputBox("I would like", object);
Ã, ParseText(object);
Ã, DisplaySpeech (GANDALF, "I would like %s", object);
maybe? Do you even need the ParseText command here?
EDIT: Ah, so you do need the ParseText, after all. Cool.
Thank you very mutch, Ashen.
Well, ParseText command was for something else. I just wanted to continue with some If(Said....) statements.