21.12.2011, 20:22 
	
	
	
		Indentation is simple.
Example:
just makes the code look clean and easy to read, scripts without indentation look very ugly.
use TAB to make it accurate
	
	
	
Example:
Код:
public function(playerid, something)
{ 
	doSomething(playerid, something);
	if(something == 1)
	{ 
	    print("1");
	}
	else 
	{
	    print("nope.");
	}
	return 1;
}
use TAB to make it accurate

