Also, this
PHP Code:
this.lineup = NULL;
for (temp.p = 0; temp.p < playerscount; temp.p ++)
{
this.lineup.add(players[(@temp.p)].nick);
player.chat = this.lineup;
this.set = "Lineup: "@this.lineup;
}
would be better written as
PHP Code:
this.lineup = NULL;
for (temp.pl : players)
{
this.lineup.add(temp.pl.nick);
}
player.chat = this.lineup;
this.set = "Lineup: "@this.lineup;