12.05.2012, 11:53
You probably need to show the code that comes before the code block you just posted as well. Unreachable code is often caused by code like this:
pawn Код:
stock function()
{
if(conditional == 1)
return 1;
else
return 0;
// code which will never be reached, and it makes sense
}