added config file
[PHP-P10.git] / main.php
index 57ec8624e912e340e931b5294dcc6f4db7956dd0..827a259db4d3c4990ac589166582229792a21248 100644 (file)
--- a/main.php
+++ b/main.php
@@ -40,9 +40,7 @@ if(function_exists("pcntl_signal")) {
 
 //basicly here is nothing, yet :D
 $uplink = new Uplink();
-$uplink->setUplinkHost("192.168.2.103", 4401);
-$uplink->setUplinkServer(5, "PHP.TestNet", "very_weak_password", "Test Server");
-$uplink->setValidateServer("test.localhost", "very_weak_password");
+require_once("config.inc.php");
 
 $uplink->setEventHandler(ModCMD::getEventHandler());
 
@@ -52,13 +50,10 @@ $botloader = new BotLoader($uplink);
 $botloader->loadBots();
 BotLoader::load("ModManager", "ModManager.class.php");
 
-function shutdown($signal) {
+function shutdown($signal = 0) {
        global $botloader;
        global $uplink;
-       if($signal == SIGINT) $type="SIGINT";
-       else if($signal == SIGTERM) $type="SIGTERM";
-       else $type = $signal;
-       echo "\n\nrecived shutdown instruction... ".$type."\n";
+       echo "\n\nrecived shutdown instruction...\n";
        $botloader->unloadBots();
        $botloader->save();
        $uplink->shutdown();