05.01.2013, 01:26
If I'm not wrong, indentation errors happen because you are writing something like this:
When it should look like this....
Make your brakets under your brakets and leave 1 TAB after the bracket.. my suggestion
pawn Код:
new x;
if(x)
{
return b+a;
}
pawn Код:
new x;
if(x)
{
return a+b;
}