in BO2 priv match. I just came across an issue when adding the formula to the .gsc
self.matchbonus = int(((55+6) /12) * [COLOR="#FF0000"]time elapsed[/COLOR]);
in BO2 priv match. I just came across an issue when adding the formula to the .gsc
self.matchbonus = int(((55+6) /12) * [COLOR="#FF0000"]match length[/COLOR]);
pausetimer()
{
if ( level.timerstopped )
{
return;
}
level.timerstopped = 1;
level.timerpausetime = getTime();
}
resumetimer()
{
if ( !level.timerstopped )
{
return;
}
level.timerstopped = 0;
level.discardtime += getTime() - level.timerpausetime;
}
pausetimer()
{
if ( level.timerstopped )
{
return;
}
level.timerstopped = 1;
level.timerpausetime = getTime();
}
resumetimer()
{
if ( !level.timerstopped )
{
return;
}
level.timerstopped = 0;
level.discardtime += getTime() - level.timerpausetime;
}
in BO2 priv match. I just came across an issue when adding the formula to the .gsc
self.matchbonus = int(((55+6) /12) * [COLOR="#FF0000"]time elapsed[/COLOR]);
Copyright © 2026, NextGenUpdate.
All Rights Reserved.