Page 1 of 1

text in script editor

PostPosted: Thu Oct 18, 2007 12:50 am
by jagheera nex
in my game im makeing a tutorial at the begining and i what it so when youclick "ok" on the info bow it changes the text in the info bowto a diffrent tip, i have a varrible "click" and i have it so when i click on the "ok" botton it makes the click arrible go down one, what i figured i should do is make it so when the "click" varrible equels a certain number it changes the text but i don't know how to change the text in script editor. :P

Re: text in script editor

PostPosted: Thu Oct 18, 2007 1:07 am
by Game A Gogo
simple
Code: Select all
strcpy(text, "Enter your text here");

Note:
Use the escape sequence (\) for the following character:
"
'
\
Note #2:
\n is like enter, newline
\t is like tab

Re: text in script editor

PostPosted: Thu Oct 18, 2007 2:04 am
by jagheera nex
thanks 1point!