Have a look how Magento cron works - it works as standalone script also (cron.php) and copy-paste code to your custom module.
Main things:
require 'app/Mage.php';
...
Mage::getConfig()->init()
Also it seems like modules not loaded
Try to add after init config:
Mage::getConfig()->loadModules();