08-26-2009, 07:59 PM
I indent the same as Matthias.
But there is one thing that annoys me and I don't like, spaces in between brackets.
I've noticed Peter Wesley and Pugwipe script like that. I prefer it without the spaces.
But there is one thing that annoys me and I don't like, spaces in between brackets.
Code:
if ( strcmp ( szPlayerChatMsg1, szPlayerChatMsg2) )
{
doSomething( );
}I've noticed Peter Wesley and Pugwipe script like that. I prefer it without the spaces.
Code:
if(strcmp(szPlayerChatMsg1, szPlayerChatMsg2))
{
doSomething();
}