X-Git-Url: http://git.pk910.de/?p=PHP-P10.git;a=blobdiff_plain;f=main.php;h=8361b2833a1bdb4c74b62b003b8d8d907d559ffe;hp=57ec8624e912e340e931b5294dcc6f4db7956dd0;hb=811bc0c7a1f583fb624a0f8c3601146e063c5a25;hpb=74fcc85514c9bd0a4a8dfbd909d9555a9f1ee5b8 diff --git a/main.php b/main.php index 57ec862..8361b28 100644 --- a/main.php +++ b/main.php @@ -1,22 +1,19 @@ . * * * ************************************************************************ * @@ -32,6 +29,7 @@ require_once("Uplink/Uplink.class.php"); require_once("ModCMD/ModCMD.class.php"); require_once("BotLoader/BotLoader.class.php"); require_once("Tools/timer.inc.php"); +require_once("Tools/Table.class.php"); if(function_exists("pcntl_signal")) { pcntl_signal(SIGINT, 'shutdown'); @@ -40,9 +38,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 +48,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();