They teach you to seperate cold blocks from the conditional statements... Personally I find that quite confusing to do
NPC Code:
if(pie)
{
blah;
bahhiho;
}
I do
NPC Code:
if(only_one_command) do something like this;
and
if(more_than_one_command) {
do;
stuff;
like;
this;
}