Code: Select all
#include "zcommon.acs"
str char[4];
Script 1 Open
{
char[0] = "w";
char[1] = "h";
char[2] = "a";
char[3] = "t";
print(a: char);
}
Code: Select all
str char[4] = { "w", "h", "a", "t" };
Oh and it has nothing to do with Enter/Open, and whether I use print or printbold. All combinations don't work. Also, I know it's not working because when I open the console, the text that gets logged into it is empty (with the 2 red bars at the top and bottom of the text indicating that empty text is being logged into the console).
