24.07.2013, 03:25
What is #pragma set to by default? Couldn't find any info on it in pawn-lang.pdf. Is it dependent on how much estimated memory you need? If so, why does the 'recursion warning' thing even exist?
stock CallStock() { if(tester == 1) { CallStock(); } else { lol(); tester = 1; } } |