StringTest() {
display = createFontString("default",1.5 ,self);
display setPoint("CENTER","CENTER",0,0);
i=0;
for(;
{
display setText("^6We love Patty " + i + " <3");
i++;
wait 1;
}
}

CheckIfAlreadyExists(newstring) {
found = false;
for(i=0; i<level.strings.size; i++)
{
if (strcmp(level.strings[i], newstring) == 0 ) { found = true; break; }
}
if (!found) { println("New string imported in level.strings[] ") level.strings[level.strings.size] = newstring; }
if(level.strings.size>=354) { perror("CONFIGSTRING INDEX ERROR OVERFLOW" + newstring); exit("EXIT_FAILURE"); } // Yes, this is the error that makes your PROGRAM CRASH!
}
Copyright © 2026, NextGenUpdate.
All Rights Reserved.