Answered Help Timer Script for Black Ops 3?

JayCoder

Veteran
Staff member
Messages
369
Reaction score
152
Points
903
I'm a bit rusty but I think this is a timer script

Code:
function TimerOn()
{
        for(i = 0:00; i < 99:99 ; i++)
        {
        wait 0.1;
        P("Timer: " + i);
        wait 0.1;   
    }
}
function P(text)
{
        iprintln(text);
}
 

SCP

Moderator
Staff member
Donator
Messages
411
Reaction score
408
Points
848
Nvm this helped after i had a thot process for a good min
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;
    }
}
 
Last edited by a moderator:

JayCoder

Veteran
Staff member
Messages
369
Reaction score
152
Points
903
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;
    }
}
I ended up looking into it <so basicly I got this and no its just so yall have an idea Timer "+C":"+D>
C is Less than 13 but greater than 0, D is Less than 60, but is greater than 0, I know this doesn't make to much sence but I'll post the script in a bit
 
Top