27.07.2017, 23:42
hello I've been facing a problem on my 39k~ line code, there's a recursion, I read that a recursion means a function calling itself in the same function, like this:
well, I checked the code I added recently but I couldnt find smth similar so I was wondering if it could happen because of something else? I noticed that it lags my server as fuck. And if it is only because the function repeating itself, is there a way to find which function causes it? like any plugin or anything? Help would be really appreciated.
pawn Код:
FunctionX()
{
//Some code
FunctionX();
return 1;
}