25.12.2012, 22:12
Its obvious that your not a professional coder. If you want "code purity" then why are you doing things such as:
You have just used 4 lines for a simple condition, when infact it could be done in one line.
P.s sorry if its bad indentation, I'm on my phone
pawn Code:
if(somecondition)
{
Return 0;
}
pawn Code:
If(somecondition) return 0;