set text based on count variable.
Posted: Wed Sep 13, 2006 6:28 pm
How do I set text of actor in script editor?
Game Editor discussion board
http://game-editor.com/forum/
count++;
if(count==1)
{
strcpy(thetext.text, 12);
}
count++;
if (count==1)
{
strcpy(ttext.text, "greetings");
}
else if(count==2)
{
strcpy(ttext.text, "how are you?");
}