X-Git-Url: http://git.pk910.de/?p=PHP-P10.git;a=blobdiff_plain;f=main.php;h=7cfe0fc1c2cadc79a0447359fe9113a0887ea1e1;hp=5dcf7d93b9dcd0843925f9ccfb6237bd7dcdda32;hb=7e30c2dbf6582392fd4389adbac56a995ab86595;hpb=29c9dfc2f073856d051daf900c1d7818dde648fe diff --git a/main.php b/main.php index 5dcf7d9..7cfe0fc 100644 --- a/main.php +++ b/main.php @@ -27,6 +27,7 @@ */ require_once("Uplink/Uplink.class.php"); require_once("ModCMD/ModCMD.class.php"); +require_once("BotLoader/BotLoader.class.php"); //basicly here is nothing, yet :D $uplink = new Uplink(); @@ -38,6 +39,9 @@ $uplink->setEventHandler(ModCMD::getEventHandler()); $uplink->initialize(); +$botloader = new BotLoader($uplink); +$botloader->loadBots(); + while(true) { $uplink->loop(); }