24.07.2013, 13:33
4000-5000 is the default value AFAIK, was discussed recently on the IRC channel.
I have around 10k for my server, if you require the GPS plugin it requires a massive number, if you check the GPS thread tutorial it is in there somewhere.
The recursion warning calls when there is something like this:
Something where it will call the same stock again and again etc.
So basically, it is where the same function gets called within the same function.
I have around 10k for my server, if you require the GPS plugin it requires a massive number, if you check the GPS thread tutorial it is in there somewhere.
The recursion warning calls when there is something like this:
Something where it will call the same stock again and again etc.
So basically, it is where the same function gets called within the same function.
Quote:
stock CallStock() { if(tester == 1) { CallStock(); } else { lol(); tester = 1; } } |