05.03.2009, 13:47
There is no easy way.. you removed some functions that are needed somewhere else in the script, some functions return both arrays and other values, unreachable code means that you put something like this
it will never get to doSomethingElseHere because before that the code has a return statement that is always called - the code stops executing there
pawn Код:
stock MyFunction()
{
doSomethingHere();
return 1;
doSomethingElseHere();
}