function pause(%x){ %start = getrealtime(); while(getrealtime() - %start < %x) continue; echo("done.");}
as a terrible alternative:
as a terrible alternative:Code: [Select]function pause(%x){ %start = getrealtime(); while(getrealtime() - %start < %x) continue; echo("done.");}
Knows all about the main thread...someone's alt?
do you even need the continue? or could you just have empty brackets?
so, what's the point of continue then?how can it be used where {} can't be?
if(isObject(%cp)){ //remaining code}
oh right, the skip thing, forgot about thatseems like everything could be done without it though