One Warning -.-
#4

An example of this would be something like
pawn Код:
{
     Function 1;
     return 1;
     Function 2;
}
You would get this error because Function 2 would never be executed (aka "unreachable") because you returned a value already. Look for something like this, where you return a value but then try to execute something else within the same bracket.
This, however, is acceptable:
pawn Код:
{
     {
          Function 1;
          return 1;
     }
     Function 2;
}
Or just post your code
Reply


Messages In This Thread
One Warning -.- - by ZmaXy - 27.12.2010, 11:37
Re: One Warning -.- - by Crime Life ROLEPLAY - 27.12.2010, 12:02
Re: One Warning -.- - by admantis - 27.12.2010, 14:58
Re: One Warning -.- - by randomkid88 - 27.12.2010, 16:43
Re: One Warning -.- - by TouR - 27.12.2010, 16:44

Forum Jump:


Users browsing this thread: 4 Guest(s)