Help please !
#4

This is an example of unindented code.
pawn Код:
stock function(){
new something[50];
 format(something, sizeof(something), "this is my text");
  return 0;
}
It should be something like this

pawn Код:
stock function()
{
    new something[50];
    format(something, sizeof(something), "this is my text");
    return 0;
}
I hope you understand what I ment.
You can indent your code by tabbing like DJDhan said already, or you can just
pawn Код:
#pragma tabsize 0
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.
Reply


Messages In This Thread
Help please ! - by Danielo - 23.06.2010, 19:10
Re: Help please ! - by DJDhan - 23.06.2010, 19:12
Re: Help please ! - by Kar - 23.06.2010, 19:13
Re: Help please ! - by Luka P. - 23.06.2010, 19:16
Re: Help please ! - by Kar - 23.06.2010, 22:50

Forum Jump:


Users browsing this thread: 1 Guest(s)