Will this count time played?Code:timer() { for(c=10;c>0;c--) { self iprintln("Timer: "+c); wait 1; } }
Dude if you look at it, it counts 10Will this count time played?
I see that but i'm trying to get an easy format to count time played like server.timeDude if you look at it, it counts 10
Nvm this helped after i had a thot process for a good minI see that but i'm trying to get an easy format to count time played like server.time
This is probably something you are looking for:Nvm this helped after i had a thot process for a good min
function timer()
{
self endon("game_ended");
c = 0;
while(true)
{
self iprintln("Timer: "+c);
c++;
wait 1;
}
}
I ended up looking into it <so basicly I got this and no its just so yall have an idea Timer "+C":"+D>This is probably something you are looking for:
Code:function timer() { self endon("game_ended"); c = 0; while(true) { self iprintln("Timer: "+c); c++; wait 1; } }