added Bot class (simple method dummy) & fixed some bugs
[PHP-P10.git] / main.php
index 42fa0cdfb917e663276b89f590419ba02efabd02..5dcf7d93b9dcd0843925f9ccfb6237bd7dcdda32 100644 (file)
--- a/main.php
+++ b/main.php
  *
  */
 require_once("Uplink/Uplink.class.php");
+require_once("ModCMD/ModCMD.class.php");
 
 //basicly here is nothing, yet :D
 $uplink = new Uplink();
-$uplink->setUplinkHost("localhost", 4402);
-$uplink->setUplinkServer(5, "php.local.TestNet", "very_weak_password", "Test Server");
+$uplink->setUplinkHost("192.168.2.103", 4401);
+$uplink->setUplinkServer(5, "PHP.TestNet", "very_weak_password", "Test Server");
+$uplink->setValidateServer("test.localhost", "very_weak_password");
+
+$uplink->setEventHandler(ModCMD::getEventHandler());
 
 $uplink->initialize();