Thread Rating:
  • 10 Vote(s) - 3.1 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Bot
#23
Hallo zusammen,

irgendwie verstehe ich nicht ganz, wo ich in der Confi den Spielernamen des Bots eintragen muss.. kann mir jemand helfen ?? ich poste mal den Code.. mein Bot heißt Borg, und ich habe überall da, wo iwas mit Spielernamen stand, das hingeschrieben...

Bitte helft mir..

<?php
#Includes
include("../include.inc.php");
include("config/config.php");
include("config/classes.php");

define('BOT_VERSION','1.2L');

if($config['version'] != '1.12')
{
die('Falsche Lan Version wird benutzt. Bitte V1.12 herunterladen');
}

ini_set("max_execution_time", 0);
ignore_user_abort(false);
if(isset($_GET['action']))
{
switch($_GET['action']){
case "help":
echo " <?xml version=\"1.0\" encoding=\"UTF-8\"?>
<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"
\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">
<html xmlns=\"http://www.w3.org/1999/xhtml\">
<head>
<title>Bot</title>
</head>
<body>
";
echo "Mit ?action= können sie den Bot einstellen.<br/>Folgende Einstellungen sind möglich:<br/>";
echo "<b>?action=get_version:</b><br/>";
echo " Liefert die aktuelle Botversion, mindestens 1.2L<br/>";
echo "<b>?action=use_config:</b><br/>";
echo " Sie können eine alternative Konfiguration benutzen. Dafür kopieren sie bitte die bot.php";
echo " und kopieren sie. Die neue Datei geben sie den namen config2.php (gleicher Ordner!) ersetzen Sie \"botconfig\"

mit \"botconfig2\"<br/>";
echo " fügen sie folgenden Code oben in die Datei ein 'include(\"config/config2.php\");'<br/>";
echo " und rufen sie die bot.php so auf: bot.php?action=use_config&use_config=botconfig2<br/>";
echo "<b>?action=reset:</b><br/>";
echo " Leert die Bottabelle für ein neues Spiel<br/>";
echo "<b>?action=make_banned:</b><br/>";
echo " Bannt den Bot sodass keine Aktionen mehr ausgeführt werden können! Für CPU wichtig!<br/>";
echo "<b>?action=make_unbanned:</b><br/>";
echo " Gegenteil von make_banned<br/>";
echo "<b>?action=make_table</b><br/>";
echo " Erstellt die Tabelle für den Bot.";
exit();
case "get_version":
echo BOT_VERSION;
exit();
break;
case "use_config":
$botconfig = ${$_GET['use_config']};
break;
case "reset":
$sql = "TRUNCATE TABLE bot";
$db->query($sql);
die('Die Tabelle bot wurde geleert. Es kann nun ein neues Spiel gestartet werden.');
break;
case "make_banned":
$sql = "UPDATE users SET banned='Y' WHERE username='".$botconfig['name']."Borg'";
$db->query($sql);
die('Der Bot wurde gesperrt. Zum entbannen bitte bot.php?action=make_unbanned benutzen!');
break;
case "make_unbanned":
$sql = "UPDATE users SET banned='N' WHERE username='Borg".$botconfig['name']."'Borg";
$db->query($sql);
break;
case "make_table":
$db->query("DROP TABLE IF EXISTS `bot`");
$sql = "CREATE TABLE `bot` (
`villageid` int(4) NOT NULL,
`type` enum('def','off','spy') NOT NULL,
`finish_tec` enum('y','n') NOT NULL,
`finish_build` enum('y','n') NOT NULL,
";
$all_buildings = $cl_builds->get_array('dbname');
foreach($all_buildings AS $dbname){
$sql .= "`$dbname` int(4) NOT NULL,";
}
$all_units = $cl_units->get_array('dbname');
foreach($all_units AS $dbname){
$arr = explode("_",$dbname);
$sql .= "`tec_".$arr[1]."` enum('y','n') NULL default 'y',";
}
$sql .= "next_build varchar(20) NULL,
PRIMARY KEY (`villageid`),
KEY `type` (`type`)
) ENGINE=MyISAM DEFAULT CHARSET latin1 COLLATE=latin1_general_ci;";
$db->query($sql);
die("Die Datenbank wurde neu erstellt, zum Spielen bitte <a href=\"bot.php\">klicken</a>");
break;
default:
die("Keine gueltige Aktion!");
break;
}
}



///*
while($Botcounter < 1000){
//*/

#Die Spielerid des Bots herausfinden
$result = $db->query("SELECT id,banned FROM `users` WHERE `username` = 'Borg".$botconfig['name']."Borg'");
$row = $db->Fetch($result);
$botconfig['id'] = $row["id"];
#Wenn der Bot nicht angemeldet ist
if (empty($botconfig['id'])){
die('Der Bot ist nicht angemeldet');
}
elseif ($row['banned'] == "Y"){
die('Bot ist gesperrt');
Reply


Messages In This Thread
Bot - by pL4n3 - 11.05.2008, 15:57
RE: Bot - by PrOKevinO - 11.05.2008, 16:02
RE: Bot - by pL4n3 - 11.05.2008, 16:03
RE: Bot - by English Pr0 - 11.05.2008, 16:09
RE: Bot - by pL4n3 - 11.05.2008, 16:11
RE: Bot - by English Pr0 - 11.05.2008, 16:15
RE: Bot - by English Pr0 - 11.05.2008, 16:17
RE: Bot - by pL4n3 - 11.05.2008, 16:22
RE: Bot - by English Pr0 - 11.05.2008, 16:24
RE: Bot - by English Pr0 - 11.05.2008, 16:28
RE: Bot - by pL4n3 - 11.05.2008, 16:31
RE: Bot - by English Pr0 - 11.05.2008, 16:32
RE: Bot - by mcheyhey - 23.05.2008, 14:09
RE: Bot - by blackass - 24.05.2008, 13:28
RE: Bot - by emoser - 24.05.2008, 18:32
RE: Bot - by mcheyhey - 27.05.2008, 18:47
RE: Bot - by PrOKevinO - 27.05.2008, 18:50
RE: Bot - by emoser - 28.05.2008, 06:32
RE: Bot - by mcheyhey - 28.05.2008, 13:21
RE: Bot - by emoser - 28.05.2008, 13:28
RE: Bot - by ricemax1 - 28.05.2008, 20:02
RE: Bot - by PrOKevinO - 29.05.2008, 04:11
RE: Bot - by Nataniel - 31.05.2008, 17:19
RE: Bot - by PrOKevinO - 31.05.2008, 17:27
RE: Bot - by Nataniel - 31.05.2008, 17:31
RE: Bot - by domi989 - 01.06.2008, 15:18
RE: Bot - by Jojo the big - 09.06.2008, 15:55
RE: Bot - by PrOKevinO - 09.06.2008, 16:11
RE: Bot - by Jojo the big - 09.06.2008, 16:17
RE: Bot - by PrOKevinO - 09.06.2008, 16:25
RE: Bot - by nicixxx - 09.06.2008, 18:12
RE: Bot - by PrOKevinO - 09.06.2008, 18:29
RE: Bot - by BigOubi - 18.06.2008, 11:11
RE: Bot - by PrOKevinO - 18.06.2008, 11:13
RE: Bot - by Poldi225 - 18.06.2008, 12:37
RE: Bot - by BigOubi - 18.06.2008, 11:16
RE: Bot - by BigOubi - 18.06.2008, 11:22
RE: Bot - by PrOKevinO - 18.06.2008, 13:30
RE: Bot - by line|sinker - 16.07.2008, 22:38
RE: Bot - by montreal - 21.07.2008, 21:34
RE: Bot - by PrOKevinO - 21.07.2008, 22:13
RE: Bot - by Eragon9393 - 24.09.2008, 19:25
RE: Bot - by Narutofan XXl - 25.09.2008, 19:19
RE: Bot - by BritneyBitch - 25.09.2008, 19:28
RE: Bot - by Karag - 01.10.2008, 16:14
RE: Bot - by BritneyBitch - 01.10.2008, 16:36
RE: Bot - by PrOKevinO - 01.10.2008, 17:29
RE: Bot - by BritneyBitch - 01.10.2008, 17:45
RE: Bot - by Stämmerocker - 03.10.2008, 14:43
RE: Bot - by PrOKevinO - 03.10.2008, 21:03
RE: Bot - by Stämmerocker - 07.10.2008, 17:45
RE: Bot - by Großhansdorf - 12.10.2008, 12:41
RE: Bot - by abbar-2 - 12.10.2008, 15:45
RE: Bot - by Großhansdorf - 12.10.2008, 16:36
RE: Bot - by cbacon - 15.10.2008, 16:00
RE: Bot - by abbar-2 - 16.10.2008, 08:59
RE: Bot - by Milu2K - 26.11.2008, 19:52
RE: Bot - by ed84 - 12.04.2009, 23:17
RE: Bot - by Black Arrow - 12.04.2009, 23:18
RE: Bot - by SlimShady95 - 13.04.2009, 18:25
RE: Bot - by Black Arrow - 13.04.2009, 18:27
RE: Bot - by SlimShady95 - 13.04.2009, 18:28
RE: Bot - by Black Arrow - 13.04.2009, 18:30
RE: Bot - by Black Arrow - 16.05.2009, 17:36



Users browsing this thread: 4 Guest(s)