Bot Questions - Scoreboard... rahXephon - Thu Apr 10, 2003 7:45 pm Post subject: Scoreboard...
Yup a scoreboard counting down displayed in Lvz and restarts at the end of a game...
case EVENT_Tick:
{
for (int i = 0; i < 4; ++i)
--countdown[i];
}
// Scoreboard Timer
countdown[0] = 20 * 60;
{
if (countdown[0] > 0) { String s = "*objon "; s += countdown[0];
sendPublic(s); }
which doesnt work at all :X
can someone plz help me out... k0zy - Thu Apr 10, 2003 7:55 pm Post subject:
"countdown[0] = 20 * 60;"
u set the countdown[0] to 1200 every second...
put it into arenaenter, or make it the initial value
Bob Dole.. Bob Dole... Bob Dole...... bob dole.... bob... dole....
rahXephon - Thu Apr 10, 2003 9:17 pm Post subject:
could yo be a bit more specific :X what arena enter?
and which countdown[0]
rahXephon - Fri Apr 11, 2003 7:33 pm Post subject:
nvm i got it