21.12.2013, 13:52
pawn Код:
//Example: without your warning (indentation fixed)
public OnFilterScriptInit()
{
CreateObject(modelID,x,y,z);
return 1;
}
//Example: with your warning (loose indentation)
public OnFilterScriptInit()
{
CreateObject(modelID,x,y,z);
return 1;
}
//Edit: Please dont use the method posted above! You will be thankfull for that later...