(06.08.2011, 13:12)SlimShady95 Wrote: Don´t use Slimbot, use Shadybot instead. Slimbot is very old, but Shadybot should work
But it does not noble.
MfG Manuel
When he farms, couldn't you just edit the code so he farms with nobles? Thus meaning he nobles the village lol then withdrawels his troops and builds troops/buildings in all of his villages?
With Shadybot, I get a Syntex Error: Can anyone see anything wrong with this coding?
PHP Code:
<?php
/**
* Bot by Manuel Mannhardt aka SlimShady95
* EMail: manuel_mannhardt@web.de
* ICQ: 479-117-593
*/
// Spieler, die der Bot steuern soll
// Wenn du statt einem Benutzernamen einfach left_villages
// reinschreibst, baut der Bot Barbarendörfer aus
$Player = array();
$Player[] = 'Nemesis;
// Dorfname des Bots
// Platzhalter:
// {N} = Name des Bots
// {NR} = Zähler
// {NR_0} = Zähler, mit vorranstehender 0
// {x} = x-Koordinate
// {y} = y-Koordinate
$Vill_Name = '{NR_0} ~ {N}';
// Wie soll der Bot bauen:
// - 1: mehr Handelspeziefisch (Marktplatz, Minen, etc.)
// - 2: mehr Militärspeziefisch (Kaserne, Stall, etc.)
$How_Build = 1;
// Soll der Bot Einheiten bauen?
$Build_Units = true;
// Soll der Bot angreifen?
$Farm_Conf = true;
// Was soll der Bot angreifen:
// - 1: Barbarendörfer
// - 2: Spieler (alle)
// - 3: Beides
$Farm_Villages = 3;
// Maximale Einheiten
$Max_Units = array();
$Max_Units['axe'] = 4000;
$Max_Units['light'] = 3000;
$Max_Units['ram'] = 300;
$Max_Units['noble'] = 3;
// Berichte gleich löschen
$Delete_Report = true;
?>