Originally Posted By: Logan
I've tried using it a few times and it never worked. I had to resort to workarounds each time. I didn't want to report it as a bug because I always post bug reports that end up being my fault and then I look like an idiot.
lol, welcome to my world

here's what i tried a while ago but didn't get it working, didn't really need it though so never reported it

Code:
#include <acknex.h>
#include <default.c>

void func_willFreeze(){
	
	while(1){
		
		DEBUG_VAR(1, 40);
		wait(1);
	}
}

void func_wontFreeze(){
	
	while(1){
		
		proc_mode = PROC_NOFREEZE;
		DEBUG_VAR(1, 80);
		wait(1);
	}
}

void freeze_toggle(){
	freeze_mode = 2 - freeze_mode;
}


void main(){
	
	on_f = freeze_toggle;
	
	func_willFreeze();
	func_wontFreeze();
}