Errors
#4

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

pawn Код:
stock MyFunction()
{
  doSomethingHere();
  return 1;
  doSomethingElseHere();
}
it will never get to doSomethingElseHere because before that the code has a return statement that is always called - the code stops executing there
Reply


Messages In This Thread
Errors - by Michael Abbruzi - 05.03.2009, 13:26
Re: Errors - by [RP]Rav - 05.03.2009, 13:28
Re: Errors - by Michael Abbruzi - 05.03.2009, 13:44
Re: Errors - by [RP]Rav - 05.03.2009, 13:47

Forum Jump:


Users browsing this thread: 1 Guest(s)