23.06.2010, 19:16
This is an example of unindented code.
It should be something like this
I hope you understand what I ment.
You can indent your code by tabbing like DJDhan said already, or you can just
at top of your script... Either way it will work, but I suggest you indenting your code by tabbing, it is better for you, because then you will be able to read your code 'better'.
EDIT: Sorry Kar, didn't saw ur message.
pawn Код:
stock function(){
new something[50];
format(something, sizeof(something), "this is my text");
return 0;
}
pawn Код:
stock function()
{
new something[50];
format(something, sizeof(something), "this is my text");
return 0;
}
You can indent your code by tabbing like DJDhan said already, or you can just
pawn Код:
#pragma tabsize 0
EDIT: Sorry Kar, didn't saw ur message.