28.07.2012, 10:45
Get the latest 0.3e includes from the server package, that's probably the reason.
The other errors (loose indention + unreachable code) you must show us, unreachable code is usually because you returned a value while you did something after it.
So, like this would be bad:
The other errors (loose indention + unreachable code) you must show us, unreachable code is usually because you returned a value while you did something after it.
So, like this would be bad:
pawn Код:
// Unreachable code, bad
return 1;
value = 1;
// Good:
value = 1;
return 1;
// Loose indention, bad
if(blabla == 1)
{
value = 1; //Loose indention here
// Good;
if(blabla == 1)
{
value = 1;