Please use the PHP tags and style your scripting. This way it is easier to read through your script. Also tell us what exactly is wrong in your script.
(example of styling and using PHP tags)
PHP Code:
function onCreated() {
condition = false;
stuffHere();
}
function stuffHere() {
if (condition) {
doMoreStuff();
}
}
function doMoreStuff() {
condition = {"one","two"};
}