Im still not getting part of this...
I got 2 actors. Text (with text from true type)and keydown actor with a keydown event/script editor/
count++;
if (count==1)
{
strcpy(ttext.text, "greetings");
}
else if(count==2)
{
strcpy(ttext.text, "how are you?");
}
When I press the keydown, the text changes forward into count2 ("how are you") instead of the first text.
Maybe im doing it wrong in the 'copy string' window that pops up when i click on strcpy from variables/functions?