
Next problem, getting 2 lines of MOTD. This is what I tried:
float modelindex_eyes, modelindex_player;
void() CheckMOTD =
{
if ((self.motd_count < 7) && (self.motd_time < time)) // 7 == seconds MOTD will display
{
self.motd_time = time + 1;
self.motd_count = self.motd_count + 1;
centerprint(self, "Welcome to Spisi's fragfest!"\n"FFA 15 fraglimit 7 timelimit\"); //Type in you're message here "\n" = new line
return;
}
I can't get that second line to work. "FFA 15 fraglimit 7 timelimit"