diff --git a/GameFiles/IW4x/userraw/scripts/_customcallbacks.gsc b/GameFiles/IW4x/userraw/scripts/_customcallbacks.gsc index 5d6e86491..86d9e57bb 100644 --- a/GameFiles/IW4x/userraw/scripts/_customcallbacks.gsc +++ b/GameFiles/IW4x/userraw/scripts/_customcallbacks.gsc @@ -29,8 +29,9 @@ onPlayerConnect( player ) for( ;; ) { level waittill( "connected", player ); - player setClientDvar("cl_autorecord", 1); - player setClientDvar("cl_demosKeep", 200); + player setClientDvars( "cl_autorecord", 1, + "cl_demosKeep", 200 ); + player thread waitForFrameThread(); player thread waitForAttack(); } @@ -60,7 +61,7 @@ getHttpString( url ) runRadarUpdates() { - interval = int(getDvar("sv_printradar_updateinterval")); + interval = getDvarInt( "sv_printradar_updateinterval", 500 ); for ( ;; ) { @@ -191,7 +192,7 @@ waitForAdditionalAngles( logString, beforeFrameCount, afterFrameCount ) i++; } - lastAttack = int(getTime()) - int(self.lastAttackTime); + lastAttack = getTime() - self.lastAttackTime; isAlive = isAlive(self); logPrint(logString + ";" + anglesStr + ";" + isAlive + ";" + lastAttack + "\n" ); diff --git a/GameFiles/IW5/storage/iw5/scripts/_customcallbacks.gsc b/GameFiles/IW5/storage/iw5/scripts/_customcallbacks.gsc index 4647187d3..82ad80042 100644 --- a/GameFiles/IW5/storage/iw5/scripts/_customcallbacks.gsc +++ b/GameFiles/IW5/storage/iw5/scripts/_customcallbacks.gsc @@ -53,7 +53,7 @@ waitForAttack() runRadarUpdates() { - interval = int(getDvar("sv_printradar_updateinterval")); + interval = getDvarInt( "sv_printradar_updateinterval", 500 ); for ( ;; ) { @@ -183,7 +183,7 @@ waitForAdditionalAngles( logString, beforeFrameCount, afterFrameCount ) i++; } - lastAttack = int(getTime()) - int(self.lastAttackTime); + lastAttack = getTime() - self.lastAttackTime; isAlive = isAlive(self); logPrint(logString + ";" + anglesStr + ";" + isAlive + ";" + lastAttack + "\n" ); diff --git a/GameFiles/PT6/storage/t6/scripts/mp/_customcallbacks.gsc.src b/GameFiles/PT6/storage/t6/scripts/mp/_customcallbacks.gsc.src index e0916d8c4..8f49a93fa 100644 --- a/GameFiles/PT6/storage/t6/scripts/mp/_customcallbacks.gsc.src +++ b/GameFiles/PT6/storage/t6/scripts/mp/_customcallbacks.gsc.src @@ -60,7 +60,7 @@ waitForAttack() runRadarUpdates() { - interval = int(getDvar("sv_printradar_updateinterval")); + interval = getDvarInt( "sv_printradar_updateinterval" ); for ( ;; ) { @@ -190,7 +190,7 @@ waitForAdditionalAngles( logString, beforeFrameCount, afterFrameCount ) i++; } - lastAttack = int(getTime()) - int(self.lastAttackTime); + lastAttack = getTime() - self.lastAttackTime; isAlive = isAlive(self); logPrint(logString + ";" + anglesStr + ";" + isAlive + ";" + lastAttack + "\n" );