17.12.2012, 07:41
I can say with 100% certainty that I have never missed a bracket. I got in to the good habit of doing this:
if()
{
}
Then I fill in the if statement, then code inside the brackets. Also good for functions inside functions:
if()
if(GetPVarInt() == 1 && IsPlayerAdmin())
Then fill it all in. (That example wasn't great but I can't think of a better one.
I don't think the use of tools is 'cheating', but I do think prevention is better than cure (fix).
if()
{
}
Then I fill in the if statement, then code inside the brackets. Also good for functions inside functions:
if()
if(GetPVarInt() == 1 && IsPlayerAdmin())
Then fill it all in. (That example wasn't great but I can't think of a better one.
I don't think the use of tools is 'cheating', but I do think prevention is better than cure (fix).

