I always script stuff like this...
PHP Code:
//instead of doing this:
function onCreated() {
commands
}
//I do this..
function onCreated()
{
commands
}
I've always done it, that's just the way I script, but do you think should get in the habit of doing it the first way?