#In noclip dead label
4 messages · Page 1 of 1 (latest)
Here's this version I made, it doesn't work in events though
{isNoclipDead = noclipAccuracy < lastNoclipAcc; lastNoclipAcc = noclipAccuracy; isNoclipDead}
That's why I said "I tried making this myself but it was buggy and it didn't quite worked for long levels", I tried the exact same thing
maybe this is better, it checks for more decimals
{isNoclipDead = noclipAccuracy*10^12 < lastNoclipAcc*10^12; lastNoclipAcc = noclipAccuracy; isNoclipDead;}