Thread Rating:
  • 23 Vote(s) - 4.35 Average
  • 1
  • 2
  • 3
  • 4
  • 5
SuperBot v0.98
Code:
<?php
function msec(){}

class botvillagedata
{
    var $villagedata;
    var $villagedata_recruit;
    var $villagedata_bot;
    var $villagedata_builds;

    //Achtung Reihenfolge: $vid,$bh(!!),$wood,$stone,$iron
    function add_ressource_or_bh($vid,$bh=0,$wood=0,$stone=0,$iron=0){
        $this->villagedata[$vid]['r_bh']     += $bh;
        $this->villagedata[$vid]['r_stone']     += $stone;
        $this->villagedata[$vid]['r_iron']     += $iron;
        $this->villagedata[$vid]['r_wood']     += $wood;
    }
    function get_array($name,$detail=''){
        $var = $this->{$name};
        if(!empty($detail))
        {
            $var = $this->{$name}[$detail];
        }
        return $var;
    }
    function select_village_as_from_bot($vid){
        $this->villages[] = $vid;
        $this->allvillages++;
    }
    function set_type($vid,$type){
        $this->type[$vid] = $type;
        switch($type){
            case 'def':
                $this->type_def[] = $vid;
                break;
            case 'off':
                $this->type_off[] = $vid;
                break;
            case 'spy':
                $this->type_spy[] = $vid;
                break;
        }
        
    }
    function reload_villagedata(){
        global     $db,
            $botconfig,
            $cl_botvillages,
            $cl_action;
        
        $this->villagedata     = array();
        $sql             = "SELECT * FROM `villages` WHERE `userid` ='".$botconfig['id']."'";
        $res             = $db->query($sql);
        $count_villages        = $db->numRows($res);
        if($count_villages == 0){
            $x = 0;
            if (empty($botconfig['minvillages'])){
                while($x < $config['minvillages'])
                {
                    create_village($botconfig['id'],$botconfig['villagenames'],'random');
                    $x++;
                }
            } else    {
                while($x < $botconfig['minvillages'])
                {
                    create_village($botconfig['id'],$botconfig['villagenames'],'random');
                    $x++;
                }
            }
            die('Bitte neuladen...');
        }
        while ($row = $db->fetch($res))
        {
            $ress = ressis($row);
            $wood = $ress['r_wood']    - $row['r_wood'];
            $iron = $ress['r_stone']- $row['r_stone'];
            $wood = $ress['r_iron']    - $row['r_iron'];
            $this->select_village_as_from_bot($row['id']);
            //$villagedata anlegen (tabelle: `villages`)
            $this->villagedata[$row['id']] = $row;
            //$villagedata_bot anlegen (tabelle: `bot`)
            $this->read_from_db($row);
            //$villagedata_builds anlegen (tabelle: `builds`)
            $this->villagedata_builds($row['id']);
            //$villagedata_recruit anlegen (tabelle: `recruit`)
            $this->villagedata_recruit($row['id']);
            //Rohstoffe aktualisieren
            $this->add_ressource_or_bh($vid=$botconfig['id'],$bh=0,$wood=$wood,$stone=$stone,$iron=$iron);
            //Nächstes zu bauende Gebäude auswählen
            $cl_action->nextbuild_math($row);
        }
    }

    function read_from_db($villagedata){    
        global     $botconfig,
            $db;
        $this->villagedata_bot = array();
        $sql = 'SELECT * FROM `bot`';
        $res = $db->query($sql);
        while($row = $db->fetch($res)){
            $this->villagedata_bot[ $row['villageid'] ] = $row;
            switch($row['type']){
              case 'def':
                $this->set_type($row['villageid'],'def');
                break;
              case 'off':
                $this->set_type($row['villageid'],'off');
                break;
              case 'spy':
                $this->set_type($row['villageid'],'spy');
                break;
            }
        }
        $arr = $this->villagedata_bot;
        for($x=0; $x < $this->allvillages; $x++){
            if(!array_key_exists($this->villages[$x],$arr)){
                if($x == 0){
                    $this->new_village('def',$villagedata);
                }
                elseif (($x % $botconfig['spy_villages']) == 0){
                    $this->new_village('spy',$villagedata);
                }
                elseif ($x % $botconfig['deffoff'] == 0){
                    $this->new_village('off',$villagedata);
                }
                else {
                    $this->new_village('def',$villagedata);
                }
            }
        }
    }
    /*    villagedata_builds($vid)    Zählt alle Gebäude die gerade in der Bauschleife sind zu den normalen Gebäuden
        Eingabe:            $vid : Village-id
        Ausgabe:            -Keine-
    */
    function villagedata_builds($vid){
        global     $cl_builds,
            $db;
        $builds = $cl_builds->get_array("dbname");
        foreach ($builds as $key=>$value){
            $this->villagedata_builds[$vid][$value] = $this->villagedata[$vid][$value];
        }
        $result    = $db->query("SELECT id,building,end_time,build_time from build where villageid='".$vid."' order by id");
        $quantity = $db->numRows($result);
        $this->villagedata_builds[$vid]['quantity'] = $quantity;
        while($row=$db->Fetch($result)){
            $this->villagedata_builds[$vid][$row['building']]++;
            $this->villagedata_builds[$vid]['end_time'] = $row['end_time'];
        }
    }
    /*    villagedata_recruit($vid)    Erfasst alle rekrutierungen
        Eingabe:            $vid : Village-id
        Ausgabe:            -Keine-
    */
    function villagedata_recruit($vid){
        global $db;
        $sql = "SELECT unit,num_unit FROM recruit WHERE villageid=".$vid;
        $res = $db->query($sql);
        while($row =$db->fetch($res)){
            $this->villagedata_recruit[ $vid ][ $row['unit'] ] += $row['num_unit'];
        }
    }
    function select_villages_as_finish($vid){
        $db->query("UPDATE bot SET finish='y' WHERE id=$vid");
    }
    /*    new_village($type,$villagedata)    Legt einen neuen Eintrag der DB an und schreibt neue Dörfer in $villagedata_bot
        Eingabe:            $type: Typ des Dorfes ('def','off','spy')
                        $villagedata: Alle Einträge von Tabelle 'villages'
        Ausgabe:            -Keine-
    */
    function new_village($type,$villagedata){
        global     $botconfig,
            $db,
            $cl_builds,
            $cl_botvillagedata;
        $arr_builds = $cl_builds->get_array('dbname');
        $botval = $botconfig['buildings']['values'];
        $sql = 'insert into `bot`
            (villageid,type,finish_build,finish_tec,next_build';
        //) values (';
        foreach($arr_builds AS $dbname){
            $sql .= ", $dbname";
            $value[] = $botval[$dbname] - $villagedata[$dbname];
        }
        $sql .= ") values ('".$villagedata['id']."','".$type."','n','n','','";
        $count = count($value) -1;
        $y = 0;
        for($x=0;$x<$count;$x++)
        {
            $sql .= $value[$x]."','";
            $y++;
        }
        $sql .= $value[$y]."')";
        $db->query($sql);
        unset($sql);
        $villagedata_bot_ = array('villageid'=>$villagedata['id']);
        foreach($cl_builds->get_array('dbname') AS $key=>$val){
            $villagedata_bot_[$val] = ($botval[$val]-$villagedata[$val]);
        }
        $villagedata_bot_['type'] = $type;
        $villagedata_bot_['finish_build'] = 'n';
        $villagedata_bot_['finish_tec'] = 'n';
        $this->type[$villagedata['id']] = $type;
        $this->villagedata_bot[ $villagedata_bot_['villageid'] ] = $villagedata_bot_;
    }

}
/*
Klasse zum Bauen, Forschen und allem anderen.
Statt den 3 einzelnen Klassen gibt es nun nur noch diese!
*/
class Botvillages extends botvillagedata
{
    //Allgemeiner Dörfercounter, Array mit allen Dörfern, Array mit allen Dörfern nach den Type(off,def,spy)
    function recruit_build_research()
    {
        global     $cl_botvillagedata, //Eigene Klassen
            $cl_action,
            $botconfig, //Eigene Konfig
            $cl_builds,//Lan-klassen
            $cl_units,
            $cl_techs,
            $db,
            $arr_farm;
        //Off,Def,Spy dörfer durchgehen.
        foreach($cl_botvillagedata->type AS $vid=>$type){
            //Angriffe auf ein Botdorf ? Wenn ja def oder spy schicken!
            $villagedata = $cl_botvillagedata->get_array('villagedata',$vid);
            $villagedata_bot = $cl_botvillagedata->get_array('villagedata_bot',$vid);
            //TECHS ERFORSCHEN
            //Ist das erforschen auf null gesetzt?
            $fast_sql = NULL;
            if($villagedata_bot['finish_tec'] == 'n'){
                //Alle Typentechs auslesen
                $techs = $cl_techs->get_attType($type);
                
                foreach($techs as $value){
                    //$value = was soll erforscht werden
                    if($villagedata_bot["tec_".$value] == 'y'){
                        if($villagedata["unit_".$value."_tec_level"] != $botconfig[$type]['tec'][$value]){
                            //Es wurde eingestellt das noch mehr erforscht werden muss...
                            $research = $cl_action->research($value,$vid);
                            if(!$research){
                                if($cl_techs->error =="max_stage"){
                                    $fast_sql['tec_'.$value] = 'n';
                                }
                            }
                        } else {
                            $fast_sql['tec_'.$value] = 'n';
                        }
                    }
                }
                if(is_array($fast_sql))
                {
                    $sql = "UPDATE `bot` SET ";
                    foreach($fast_sql AS $building=>$val){
                        $sql .= "$building='$val' ";
                    }
                    $sql .= "WHERE villageid='".$vid."'";
                    $db->query($sql);
                    $fast_sql = NULL;
                }
                usleep(100);
            }
            $cl_action->build_building($cl_action->next_build[$vid]["building"]);
            usleep(100);
            //Wie viele Einheiten stehen bereits im Dorf?
            $querys = array();
            foreach($cl_units->get_array('dbname') AS $dbname) {
                $querys[] = "all_".$dbname;
            }
            $result = $db->query("SELECT ".implode(",",$querys)." from villages where id=".$vid."");
            $village_all = $db->fetch($result);
            $farm_datas['own_units'] = 0;
            //Alle eigenen Truppen auslesen
            foreach($cl_units->get_array('dbname') AS $dbname) {
                $farm_datas['own_units'] += $village_all['all_'.$dbname];
            }
            if($botconfig['max_units'] <= $farm_datas['own_units']) return false;
            //KI-Überprüfung Wenn die Punkte des Dorfes größer sind als der noch freie Bauernhof
            if($villagedata['points'] > $arr_farm[$villagedata['farm']] - $villagedata['r_bh']){
                if((random_generator($botconfig['ki']['create_units_villagepoints'] + 1)){
                    $units = $cl_units->get_attType($type);
                    foreach($units as $value){
                        $cl_action->recruit($value,$villagedata,$cl_units->recruit_in[$value]);
                    }
                }
            } else {
                $units = $cl_units->get_attType($type);
                foreach($units as $value){
                    $cl_action->recruit($value,$villagedata,$cl_units->recruit_in[$value]);
                }
            }
            usleep(100);
        }
    }
}
/* Diese Funktion erzeugt eine Zufallszahl (1-100) , die für einen Botlauf bleibt, danach wenn größer dann true wenn nicht dann false!  */
function random_generator($number_value){
    static $r_number;
    if(empty($r_number)){
        $r_number = rand(0,101);
    }
    if($r_number > $number_value){
        return false;
    }
    return true;
}
/*
class away
{
    var village;

    function write_away($vid,$units)
}
*/
class action
{
    var $last_village;
    var $last_recruit;
    var $last_error;
    var $sql_bot = NULL;
    var $error;
    var $next_build;
    var $builds;
    var $buildings_by_vid;
    var $attack;
    
    /*
        Überprüft ob jemand ein Dorf angreift.
        Gibt bei Angriff TRUE zurück, ansonsten FALSE
    */
    function check_attack($vid)
    {
        global $db;
        $sql = "SELECT * FROM `movements` WHERE `type` ='attack' AND `send_to_village`='".$vid."'";
        $res = $db->query($sql);
        while($row = $db->Fetch($res))
        {
            $this->attack[$vid][] = $row;
        }
        if($db->numRows($res) > 0)
            return true;
        return false;
    }
    
    function research($unit,$vid)    //Bei Unit wird nur der Unitname erwartet! Kein "unit_" vornedran!
    {
        global     $cl_techs,
            $cl_botvillages,
            $cl_botvillagedata;
        $this->last_village = $cl_botvillagedata->get_array('villagedata',$vid);
        // Schauen, ob noch nicht geforscht wird:
        if(!empty($this->last_village['smith_tec'])){
            $error = "Es wird bereits geforscht.";
            return false;
        }
        // Allgemeiner Einheitencheck:
        $cl_techs->check_tech($unit,$villagedata);
        switch($cl_techs->get_last_error()){
            case "tech_not_found":
                $error = "t";
                return false;
                break;
            case "max_stage":
                $error = "m";
                return false;
                break;
            case "not_fulfilled":
                $error = "G";
                return false;
                break;
            case "not_enough_storage":
                $error = "S";
                return false;
                break;
            case "not_enough_ress":
                $error = "R";
                return false;
            break;
        }
        // Wenn kein Fehler da ist, dann forschen:
        $cl_techs->research($unit,$villagedata);
        $wood     = round($cl_techs->get_wood($unit,$villagedata['unit_'.$unit.'_tec_level']+1));
        $stone    = round($cl_techs->get_stone($unit,$villagedata['unit_'.$unit.'_tec_level']+1));
        $iron     = round($cl_techs->get_iron($unit,$villagedata['unit_'.$unit.'_tec_level']+1));
        $this->last_village['r_wood'] -= $wood;
        $this->last_village['r_stone'] -= $stone;
        $this->last_village['r_iron'] -= $iron;
        return true;
    }
    function recruit($unit,$buildname)
    {
        global     $cl_units,
            $cl_botvillages,
            $botconfig,
            $arr_farm,
            $db;
        $villagedata = $last_village;
        # Einheiten rekrutieren:
        #Rohstoffe überprüfen
        $cl_units->check_needed($unit,$villagedata);
        if (is_numeric($cl_units->last_error)){
            $quantity = $cl_units->last_error >> 1;
        }
        $input = (int) $quantity;
        // Weitere Überprüfungen
        $wood     =    $cl_units->get_woodprice($unit)    *$input;
        $stone    =    $cl_units->get_stoneprice($unit)*$input;
        $iron     =    $cl_units->get_ironprice($unit)    *$input;
        $bh     =    $cl_units->get_bhprice($unit)    *$input;

        //Existiert überhaupt das Gebäude zum Bauen in dem Dorf?
        if($villagedata[$buildname] == 0){
            $check = "building does not exits";
            return false;
        }
        //Rohstoffe vorhanden?
        elseif ($wood>$villagedata['r_wood'] OR $stone>$villagedata['r_stone'] OR $iron>$villagedata['r_iron']){
            $check = "to_many_units";
            return false;
        }
        //Bauernhof?
        elseif(($arr_farm[$village['farm']]-$villagedata['r_bh']-$bh) >0){
            $check = "to_many_bh";
            return false;
        }
        //Alles möglich also rekrutieren
        if ($input>$botconfig['min_units_for_recruit']){
            // Ress abziehen:
            $db->query("UPDATE villages SET r_wood=r_wood-'$wood',r_stone=r_stone-'$stone',r_iron=r_iron-'$iron',r_bh=r_bh+'$bh' where id='".$villagedata['id']."'");
            // Nun kann die Einheit rekrutiert werden:
            $cl_units->recruit_units($unit,$input,$buildname,$villagedata[$buildname],$villagedata['id']);
            $this->last_village['r_bh'] += $bh;
            $this->last_village['r_wood'] -= $wood;
            $this->last_village['r_stone'] -= $stone;
            $this->last_village['r_iron'] -= $iron;
            return true;
        }
    }
    function nextbuild_math($villagedata){
        global     $botconfig,
            $db,
            $cl_botvillagedata,
            $db,
            $cl_builds;

        //Bot Tabelle
        $villagedata_bot = $cl_botvillagedata->get_array('villagedata_bot',$villagedata['id']);
        if(!empty($villagedata_bot['next_build'])){
            $this->next_build[$villagedata['id']]['building'] = $villagedata_bot['next_build'];
            $this->sql_bot['check_needed']['next_build'] ="''";
            $db->query($sql);
        } else {
            foreach($cl_builds->get_array('dbname') AS $dbname){
                srand ( (double)microtime () * 1000000 );
                $this->check_needed($dbname,$villagedata);
                $villagedata_bot[ $dbname ] += rand(0,5);
                if ($villagedata_bot[ $dbname ] > $this->next_build[$villagedata['id']]['value']){
                    $this->next_build[ $villagedata['id'] ]["building"]     = $dbname;
                    $this->next_build[ $villagedata['id'] ]["value"]     = $villagedata_bot[ $dbname ];
                }
            }
            $this->sql('check_needed',$villagedata['id']);
        }
    }
    function sql($name_function,$vid){
        global $db;
        //SQL zusammenstellen
        $sql = "UPDATE bot SET ";
        $x = 0;
        if(is_array($this->sql_bot)){
            foreach($this->sql_bot[$name_function] AS $building=>$val){
                if($x == 0) $sql .= "$building=$val";
                else $sql .= ", $building=$val";
                $x++;
            }
        $sql .= " WHERE villageid=".$vid;
        $db->query($sql);
        }
        $this->sql_bot[$name_function] = array();
    }
    function check_needed($building,$villagedata){
        global     $db,
            $cl_builds,
            $botconfig,
            $arr_maxstorage,
            $arr_farm;

        $this->sql_bot['check_needed'] = false;
        //Preise auslesen...
        $no_needed     = false;
        $stage         = $villagedata[$building] + 1;                //Stufe auslesen
        $wood         = $cl_builds->get_wood($building,$stage);         //Holzpreis
        $stone         = $cl_builds->get_stone($building,$stage);        //Lehmpreis
        $iron         = $cl_builds->get_iron($building,$stage);         //Eisenpreis
        $maxstorage     = $arr_maxstorage[$villagedata["storage"]];        //Fassungsvermögen des Speichers...
        $maxstage     = $cl_builds->get_maxstage($building);            //Maximale Stufe...
        $needed     = $cl_builds->get_needed_by_dbname($building);        //Einzelne Gebäudestufen
        //Alle Gebäude durchgehen...
        foreach($cl_builds->get_array('dbname') AS $dbname){
            if($needed[ $dbname ] > $villagedata[ $dbname ]){
                //Das Dorf entspricht nicht den Anforderungen zum Baudes Gebäudes...
                $this->sql_bot['check_needed'][$building] = -50;
                return true;
            }
        }
        //Was wird am meisten gebraucht?
        $need_iron = $iron - $villagedata['r_iron'];
        $need_stone = $stone - $villagedata['r_stone'];
        $need_wood = $wood - $villagedata['r_wood'];
        if($need_iron > $need_stone && $need_iron > $need_wood){
            if(random_generator($botconfig['ki']['not_enough_ress'])){
                $this->sql_bot['check_needed']['next_build'] = "'iron'";
                return true;
            }
        }
        //Die nächsten zwei überprüfen das gleiche, nur für andere Rohstoffe deshalb eingeklappt:
        if($need_stone > $need_iron && $need_stone > $need_wood){ if(random_generator($botconfig['ki']['not_enough_ress'])){ $this->sql_bot['check_needed']['next_build'] = "'stone'"; return true; } }
        if($need_wood > $need_iron && $need_wood > $need_stone){ if(random_generator$botconfig['ki']['not_enough_ress'])){ $this->sql_bot['check_needed']['next_build'] = "'wood'"; return true; } }
        //Der Preis für eine Ressource ist höher als das Fassungsvermögen...
        if($iron > $maxstorage || $stone > $maxstorage || $wood >$maxstorage){
                $this->sql_bot['check_needed'][$building] = -50;
                $this->sql_bot['check_needed']['next_build'] = "'storage'";
                return true;
        }
        //Nur wenn $botconfig['manual_maxstage'] auf true gesetzt ist!
        if($botconfig['manual_maxstage']){
            if($villagedata[$building] == $botconfig['maxstage'][$building]){
                //Maximale Stufe wurde heruntergesetzt
                $this->sql_bot['check_needed'][$building] = -50;
                return true;
            }
        }
        if($maxstage == $villagedata[$building]){
            //Falls das Gebäude voll ausgebaut ist..
            $this->sql_bot['check_needed'][$building] = -50;
            return true;
        }
        if(($arr_farm[$villagedata['farm']] - $villagedata['r_bh']) < 5)
        {
            //Weniger als 5 freie Bauernplätze / Bauernhof als nächstes Bauen...
            $this->sql_bot['check_needed']['next_build'] = "'farm'";
            return true;
        }
        //Da diese Funktion bei allen Gebäuden ausgefhrt wird..
        $minus = $botconfig['buildings']['values'][$building] - $villagedata[$building];
        $this->sql_bot['check_needed'][$building] = $minus;
    }

    function build_building($building){
        global     $botconfig,
            $db,
            $cl_builds,
            $cl_botvillages,
            $cl_botvillagedata;
        // Rohstoff preise & BH ermitteln:
        if(empty($building)){
            die('FEHLER - Kein Gebaeude');
        }
        $build_village     = $cl_botvillagedata->get_array('villagedata_builds',$villagedata['id']);
        $auftrage     = $build_village['quantity'];
        $villagedata     = $this->last_village;
        $plus_costs     = ($cl_builds->get_buildsharpens_costs($auftrage)/100)+1;
        $id_array     = array_flip($cl_builds->get_array('dbname'));
        if ($plus_costs < $botconfig['max_order']){
            // Diese Methode überprüft nur, der Methodenname verwirrt etwas.
            $cl_builds->build($villagedata,$id_array[$building],$build_village,$plus_costs);
            $error = '';
            switch($cl_builds->get_build_error2()){
                case 'not_enough_ress':
                $error = 'Rohstoffe';
                break;
                case 'not_enough_ress_plus':
                $error = 'Rohstoffe Bauschleife';
                break;
                case 'max_stage':
                $error = 'hoechste stufe';
                break;
                case 'not_enough_bh':
                $error = 'Bauernhof';
                break;
                case 'not_enough_storage':
                $error = 'Speicher';
                break;
                case 'not_fulfilled':
                $error = 'Gebaeude.';
                break;
            }
            if(!empty($error))
                return false;
            // Wenn kein Fehler ausgetreten ist, so kann das Gebäude gebaut werden:
            // Rohstoff preise & BH ermitteln:
            $wood     = $cl_builds->get_wood($building,$build_village[$building]+1);
            $stone     = $cl_builds->get_stone($building,$build_village[$building]+1);
            $iron     = $cl_builds->get_iron($building,$build_village[$building]+1);
            $bh     = $cl_builds->get_bh($building,$build_village[$building]+1);
            $time     = $cl_builds->get_time($villagedata['main'],$building,$build_village[$building]+1);
            $onlytime = $cl_builds->get_time($villagedata['main'],$building,$build_village[$building]+1);
            // Wenn die letzte Abfrage keinen Datensatz gefunden hat, dann ist noch kein Auftrag vorhandne.
            if ($db->affectedRows()==0){
                // Kein Auftrag vorhanden:
                $time += time();
                // In Villages den ersten Auftrag speichern:
                $add_village_sql = ",main_build='".$building.",$time' ";
            } else {
                // Bereits ein Auftrag vorhanden, in die Schleife:
                $time += $build_village['end_time'];
            }
            // Nun mal die Rohstoffkosten abziehen bzw, BH dazuzählen UND Gebäude bauen aktiv aktivieren:
            $db->query("UPDATE villages SET r_wood=r_wood-'".round($wood*$plus_costs)."',
                    r_stone=r_stone-'".round($stone*$plus_costs)."',
                    r_iron=r_iron-'".round($iron*$plus_costs)."',
                    r_bh=r_bh+'$bh' $add_village_sql where id='".$villagedata['id']."'");
            // Nun den Auftrag noch in die Tabelle "build" rein:
            $db->query("INSERT into build (building,villageid,end_time,build_time)
                    VALUES ('".$building."','".$villagedata['id']."','$time','$onlytime')");
            $buildid = $db->getLastID();
            // In Events den Bauauftrag speichern
            $db->query("INSERT into events (event_time,event_type,event_id,user_id,villageid) VALUES ('$time','build','$buildid','".$botconfig['id']."','".$villagedata['id']."')");
            //VILLAGEDATA AKTUALISIEREN
            $new_data=array    (
                'r_bh'=>$bh,
                'r_wood'=>$villagedata['r_wood'] - round($wood*$plus_costs),
                'r_stone'=>$villagedata['r_stone'] - round($stone*$plus_costs),
                'r_iron'=>$villagedata['r_iron'] - round($iron*$plus_costs)
            );
            $this->last_village = $new_data;
        }
    }
}
?>
Reply


Messages In This Thread
SuperBot v0.98 - by -superking- - 14.12.2008, 11:40
RE: Neuer Bot - by Milu2K - 14.12.2008, 11:41
RE: Neuer Bot - by -superking- - 14.12.2008, 11:43
RE: Neuer Bot - by Milu2K - 14.12.2008, 11:53
RE: Neuer Bot - by -superking- - 14.12.2008, 11:55
RE: Neuer Bot - by Milu2K - 14.12.2008, 11:57
RE: Neuer Bot - by -superking- - 14.12.2008, 12:13
RE: Neuer Bot - by Bubelbub - 14.12.2008, 12:21
RE: Neuer Bot - by -superking- - 14.12.2008, 12:25
RE: Neuer Bot - by spacejovi - 14.12.2008, 12:52
RE: Neuer Bot - by Thorsten - 14.12.2008, 14:31
RE: Neuer Bot - by -superking- - 14.12.2008, 14:43
RE: Neuer Bot - by Thorsten - 14.12.2008, 14:51
RE: Neuer Bot - by iFai - 14.12.2008, 15:13
RE: Neuer Bot - by Milu2K - 14.12.2008, 15:16
RE: Neuer Bot - by iFai - 14.12.2008, 15:18
RE: Neuer Bot - by Ephelian - 14.12.2008, 15:28
RE: Neuer Bot - by Milu2K - 14.12.2008, 15:39
RE: Neuer Bot - by Magstar - 14.12.2008, 15:45
RE: Neuer Bot - by -superking- - 14.12.2008, 15:53
RE: Neuer Bot - by Milu2K - 14.12.2008, 15:55
RE: Neuer Bot - by -superking- - 14.12.2008, 15:58
RE: Neuer Bot - by Milu2K - 14.12.2008, 16:02
RE: Neuer Bot - by -superking- - 14.12.2008, 16:05
RE: Neuer Bot - by iFai - 14.12.2008, 16:11
RE: Neuer Bot - by agrafix - 14.12.2008, 22:59
RE: Neuer Bot - by -superking- - 15.12.2008, 17:03
RE: Neuer Bot - by iFai - 15.12.2008, 12:49
RE: Neuer Bot - by Winnetou der neue - 15.12.2008, 13:50
RE: Neuer Bot - by emoser - 15.12.2008, 14:12
RE: Neuer Bot - by NobodyKnown - 15.12.2008, 15:28
RE: Neuer Bot - by BritneyBitch - 15.12.2008, 15:39
RE: Neuer Bot - by Eragon9393 - 15.12.2008, 19:42
RE: Neuer Bot - by Ephelian - 15.12.2008, 21:02
RE: Neuer Bot - by benji889 - 15.12.2008, 21:08
RE: Neuer Bot - by iFai - 16.12.2008, 12:42
RE: Neuer Bot - by Winnetou der neue - 16.12.2008, 00:29
RE: SuperBot - by BritneyBitch - 16.12.2008, 15:27
RE: SuperBot - by -superking- - 17.12.2008, 14:08
RE: SuperBot - by Captain of Durach - 16.12.2008, 17:29
RE: SuperBot - by pL4n3 - 16.12.2008, 17:34
RE: SuperBot - by Captain of Durach - 16.12.2008, 17:36
RE: SuperBot - by benji889 - 16.12.2008, 21:04
RE: SuperBot - by Milu2K - 16.12.2008, 21:06
RE: SuperBot - by benji889 - 16.12.2008, 21:07
RE: SuperBot - by Milu2K - 16.12.2008, 21:14
RE: SuperBot - by benji889 - 16.12.2008, 21:18
RE: SuperBot - by iFai - 16.12.2008, 21:22
RE: SuperBot - by benji889 - 16.12.2008, 21:28
RE: SuperBot - by iFai - 17.12.2008, 13:27
RE: SuperBot - by tobias-roknic - 17.12.2008, 17:09
RE: SuperBot - by Ephelian - 17.12.2008, 17:21
RE: SuperBot - by tobias-roknic - 17.12.2008, 17:27
RE: SuperBot - by -superking- - 19.12.2008, 17:35
RE: SuperBot - by Stämmerocker - 20.12.2008, 13:16
RE: SuperBot - by Poldi225 - 20.12.2008, 13:20
RE: SuperBot - by chrizt - 20.12.2008, 13:46
RE: SuperBot - by -superking- - 20.12.2008, 13:48
RE: SuperBot - by chrizt - 20.12.2008, 13:52
RE: SuperBot - by MarvinxX - 20.12.2008, 16:39
RE: SuperBot - by -superking- - 20.12.2008, 16:42
RE: SuperBot - by tobias-roknic - 20.12.2008, 22:42
RE: SuperBot - by Ephelian - 20.12.2008, 22:51
RE: SuperBot - by tobias-roknic - 20.12.2008, 22:52
RE: SuperBot - by Ephelian - 20.12.2008, 22:55
RE: SuperBot - by tobias-roknic - 20.12.2008, 23:06
RE: SuperBot - by hip_hop_x - 21.12.2008, 00:52
RE: SuperBot - by tobias-roknic - 21.12.2008, 11:01
RE: SuperBot - by -superking- - 21.12.2008, 11:04
RE: SuperBot - by tobias-roknic - 21.12.2008, 11:06
RE: SuperBot - by -superking- - 21.12.2008, 11:10
RE: SuperBot - by tobias-roknic - 21.12.2008, 11:18
RE: SuperBot - by -superking- - 21.12.2008, 11:27
RE: SuperBot - by tobias-roknic - 21.12.2008, 11:28
RE: SuperBot - by -superking- - 21.12.2008, 11:30
RE: SuperBot - by tobias-roknic - 21.12.2008, 11:32
RE: SuperBot - by -superking- - 21.12.2008, 11:34
RE: SuperBot - by Magstar - 21.12.2008, 13:40
RE: SuperBot - by tobias-roknic - 21.12.2008, 13:53
RE: SuperBot - by iFai - 21.12.2008, 14:08
RE: SuperBot - by Stämmerocker - 21.12.2008, 15:32
RE: SuperBot - by -superking- - 21.12.2008, 15:33
RE: SuperBot - by Stämmerocker - 21.12.2008, 16:35
RE: SuperBot - by -superking- - 21.12.2008, 16:39
RE: SuperBot - by lachi458 - 21.12.2008, 17:46
RE: SuperBot - by Captain of Durach - 21.12.2008, 20:39
RE: SuperBot - by Milu2K - 21.12.2008, 22:36
RE: SuperBot - by lachi458 - 21.12.2008, 23:13
RE: SuperBot - by Ephelian - 22.12.2008, 00:37
RE: SuperBot - by lachi458 - 22.12.2008, 01:40
RE: SuperBot - by Captain of Durach - 22.12.2008, 11:13
RE: SuperBot - by Milu2K - 22.12.2008, 11:16
RE: SuperBot - by Captain of Durach - 22.12.2008, 11:20
RE: SuperBot - by Milu2K - 22.12.2008, 11:44
RE: SuperBot - by Captain of Durach - 22.12.2008, 12:02
RE: SuperBot - by Milu2K - 22.12.2008, 12:20
RE: SuperBot - by fetten605 - 22.12.2008, 21:08
RE: SuperBot - by Milu2K - 22.12.2008, 21:15
RE: SuperBot - by iFai - 23.12.2008, 15:49
RE: SuperBot - by -superking- - 23.12.2008, 17:27
RE: SuperBot - by iFai - 23.12.2008, 18:42
RE: SuperBot - by -superking- - 23.12.2008, 19:23
RE: SuperBot - by Black Arrow - 23.12.2008, 19:33
RE: SuperBot - by -superking- - 23.12.2008, 19:35
RE: SuperBot - by Black Arrow - 23.12.2008, 19:38
RE: SuperBot - by -superking- - 23.12.2008, 19:39
RE: SuperBot - by Black Arrow - 23.12.2008, 19:41
RE: SuperBot - by -superking- - 23.12.2008, 19:42
RE: SuperBot - by MC Döner - 23.12.2008, 22:04
RE: SuperBot - by Narutofan XXl - 23.12.2008, 22:06
RE: SuperBot - by tobias-roknic - 23.12.2008, 22:22
RE: SuperBot - by -superking- - 24.12.2008, 09:56
RE: SuperBot - by Xardas91 - 24.12.2008, 10:59
RE: SuperBot - by -superking- - 24.12.2008, 11:26
RE: SuperBot - by Xardas91 - 24.12.2008, 11:31
RE: SuperBot - by -superking- - 24.12.2008, 11:32
RE: SuperBot - by Xardas91 - 24.12.2008, 11:33
RE: SuperBot - by -superking- - 24.12.2008, 11:35
RE: SuperBot - by Xardas91 - 24.12.2008, 11:35
RE: SuperBot - by -superking- - 24.12.2008, 12:57
RE: SuperBot - by Philipp Ranft - 24.12.2008, 13:51
RE: SuperBot - by tobias-roknic - 24.12.2008, 14:54
RE: SuperBot - by -superking- - 24.12.2008, 14:15
RE: SuperBot - by Winnetou der neue - 24.12.2008, 22:00
RE: SuperBot - by fawkes - 26.12.2008, 20:46
RE: SuperBot - by -superking- - 26.12.2008, 20:54
RE: SuperBot - by fawkes - 26.12.2008, 20:57
RE: SuperBot - by -superking- - 26.12.2008, 21:04
RE: SuperBot - by fawkes - 26.12.2008, 21:06
RE: SuperBot - by -superking- - 26.12.2008, 21:12
RE: SuperBot - by Milu2K - 26.12.2008, 21:08
RE: SuperBot - by fawkes - 26.12.2008, 21:12
RE: SuperBot - by fawkes - 26.12.2008, 21:14
RE: SuperBot - by -superking- - 26.12.2008, 21:15
RE: SuperBot - by fawkes - 26.12.2008, 21:19
RE: SuperBot - by -superking- - 26.12.2008, 21:22
RE: SuperBot - by fawkes - 26.12.2008, 21:24
RE: SuperBot - by -superking- - 26.12.2008, 21:31
RE: SuperBot - by fawkes - 26.12.2008, 21:49
RE: SuperBot - by -superking- - 27.12.2008, 11:33
RE: SuperBot - by Magge - 27.12.2008, 01:37
RE: SuperBot - by Winnetou der neue - 27.12.2008, 03:28
RE: SuperBot - by Kuper1234 - 28.12.2008, 21:46
RE: SuperBot - by BritneyBitch - 28.12.2008, 22:00
RE: SuperBot - by Kuper1234 - 28.12.2008, 22:07
RE: SuperBot - by BritneyBitch - 29.12.2008, 08:33
RE: SuperBot - by Narutofan XXl - 29.12.2008, 10:29
RE: SuperBot - by NobodyKnown - 29.12.2008, 10:55
RE: SuperBot - by BritneyBitch - 29.12.2008, 12:17
RE: SuperBot - by lachi458 - 29.12.2008, 12:24
RE: SuperBot - by Kuper1234 - 29.12.2008, 13:11
RE: SuperBot - by lachi458 - 29.12.2008, 14:36
RE: SuperBot - by J-A-P-I - 29.12.2008, 18:22
RE: SuperBot - by -superking- - 29.12.2008, 18:25
RE: SuperBot - by J-A-P-I - 29.12.2008, 18:26
RE: SuperBot - by -superking- - 29.12.2008, 18:27
RE: SuperBot - by J-A-P-I - 29.12.2008, 18:28
RE: SuperBot - by Der Einstein - 29.12.2008, 18:34
RE: SuperBot - by -superking- - 29.12.2008, 18:36
RE: SuperBot - by Der Einstein - 29.12.2008, 18:43
RE: SuperBot v0.95 - by abedmuffel - 01.01.2009, 00:54
RE: SuperBot v0.95 - by -superking- - 01.01.2009, 12:31
RE: SuperBot v0.95 - by spacejovi - 02.01.2009, 13:41
RE: SuperBot v0.95 - by -Speed- - 03.01.2009, 02:32
RE: SuperBot v0.95 - by Ephelian - 03.01.2009, 02:51
RE: SuperBot v0.95 - by -Speed- - 03.01.2009, 05:25
RE: SuperBot v0.95 - by owned* - 03.01.2009, 12:06
RE: SuperBot v0.95 - by -Speed- - 04.01.2009, 03:12
RE: SuperBot v0.95 - by owned* - 04.01.2009, 10:16
RE: SuperBot v0.95 - by -Speed- - 05.01.2009, 20:11
RE: SuperBot v0.95 - by b.ghost.l - 05.01.2009, 20:15
RE: SuperBot v0.95 - by -Speed- - 06.01.2009, 15:17
RE: SuperBot v0.95 - by chessi - 06.01.2009, 16:30
RE: SuperBot v0.95 - by Ardobras - 06.01.2009, 16:54
RE: SuperBot v0.95 - by chessi - 06.01.2009, 18:16
RE: SuperBot v0.95 - by B!Bo der Biber - 06.01.2009, 23:17
RE: SuperBot v0.95 - by B!Bo der Biber - 07.01.2009, 14:56
RE: SuperBot v0.95 - by Milu2K - 07.01.2009, 13:39
RE: SuperBot v0.95 - by Milu2K - 07.01.2009, 15:52
RE: SuperBot v0.95 - by B!Bo der Biber - 07.01.2009, 16:28
RE: SuperBot v0.95 - by -Speed- - 07.01.2009, 18:10
RE: SuperBot v0.95 - by B!Bo der Biber - 07.01.2009, 20:04
RE: SuperBot v0.95 - by **Dark Star** - 07.01.2009, 20:40
RE: SuperBot v0.95 - by iFai - 08.01.2009, 11:17
RE: SuperBot v0.95 - by **Dark Star** - 08.01.2009, 15:04
RE: SuperBot v0.95 - by iFai - 09.01.2009, 09:51
RE: SuperBot v0.95 - by Humorlos - 08.01.2009, 16:39
RE: SuperBot v0.95 - by -superking- - 08.01.2009, 17:34
RE: SuperBot v0.95 - by Humorlos - 08.01.2009, 20:04
RE: SuperBot v0.95 - by Ardobras - 08.01.2009, 21:01
RE: SuperBot v0.95 - by Humorlos - 08.01.2009, 21:35
RE: SuperBot v0.95 - by Ardobras - 09.01.2009, 13:13
RE: SuperBot v0.95 - by Eragon9393 - 09.01.2009, 15:07
RE: SuperBot v0.95 - by Poldi225 - 09.01.2009, 21:38
RE: SuperBot v0.95 - by Hedelix09 - 10.01.2009, 05:47
RE: SuperBot v0.95 - by owned* - 10.01.2009, 07:56
RE: SuperBot v0.95 - by Sorn - 10.01.2009, 13:06
RE: SuperBot v0.95 - by -superking- - 10.01.2009, 13:09
RE: SuperBot v0.95 - by Sorn - 10.01.2009, 13:11
RE: SuperBot v0.95 - by Narutofan XXl - 10.01.2009, 14:45
RE: SuperBot v0.95 - by Sorn - 10.01.2009, 14:59
RE: SuperBot v0.95 - by Narutofan XXl - 10.01.2009, 15:48
RE: SuperBot v0.95 - by Sorn - 10.01.2009, 16:06
RE: SuperBot v0.95 - by Milu2K - 11.01.2009, 13:15
RE: SuperBot v0.95 - by Sorn - 11.01.2009, 22:04
RE: SuperBot v0.95 - by Suiseiseki - 12.01.2009, 09:26
RE: SuperBot v0.95 - by Milu2K - 13.01.2009, 20:47
RE: SuperBot v0.95 - by Ardobras - 13.01.2009, 21:47
RE: SuperBot v0.95 - by -superking- - 14.01.2009, 12:27
RE: SuperBot v0.95 - by Suiseiseki - 14.01.2009, 13:21
RE: SuperBot v0.95 - by diablo8873 - 14.01.2009, 12:50
RE: SuperBot v0.95 - by -superking- - 14.01.2009, 13:54
RE: SuperBot v0.95 - by Suiseiseki - 14.01.2009, 13:58
RE: SuperBot v0.95 - by Camil - 15.01.2009, 12:23
RE: SuperBot v0.95 - by Deadz - 15.01.2009, 16:45
RE: SuperBot v0.95 - by KingofKingzZ - 15.01.2009, 17:14
RE: SuperBot v0.95 - by Deadz - 15.01.2009, 17:18
RE: SuperBot v0.95 - by KingofKingzZ - 15.01.2009, 20:56
RE: SuperBot v0.95 - by Ephelian - 15.01.2009, 21:13
RE: SuperBot v0.95 - by Großhansdorf - 15.01.2009, 21:44
RE: SuperBot v0.95 - by KingofKingzZ - 16.01.2009, 13:43
RE: SuperBot v0.95 - by KingofKingzZ - 16.01.2009, 14:47
RE: SuperBot v0.95 - by Großhansdorf - 16.01.2009, 15:43
RE: SuperBot v0.95 - by Ardobras - 16.01.2009, 16:52
RE: SuperBot v0.95 - by Großhansdorf - 16.01.2009, 17:00
RE: SuperBot v0.95 - by Ephelian - 16.01.2009, 17:13
RE: SuperBot v0.95 - by Großhansdorf - 16.01.2009, 17:14
RE: SuperBot v0.95 - by tero20051 - 17.01.2009, 01:52
RE: SuperBot v0.95 - by -superking- - 17.01.2009, 10:53
RE: SuperBot v0.95 - by B!Bo der Biber - 17.01.2009, 17:16
RE: SuperBot v0.95 - by Trolli91 - 17.01.2009, 13:33
RE: SuperBot v0.95 - by -superking- - 17.01.2009, 13:37
RE: SuperBot v0.95 - by Trolli91 - 17.01.2009, 13:45
RE: SuperBot v0.95 - by agrafix - 17.01.2009, 13:47
RE: SuperBot v0.95 - by -superking- - 17.01.2009, 13:49
RE: SuperBot v0.96 - by ds fan - 18.01.2009, 09:32
RE: SuperBot v0.96 - by -superking- - 18.01.2009, 09:47
RE: SuperBot v0.96 - by Link001 - 18.01.2009, 13:18
RE: SuperBot v0.96 - by -superking- - 18.01.2009, 13:20
RE: SuperBot v0.96 - by Link001 - 18.01.2009, 13:25
RE: SuperBot v0.96 - by Ephelian - 18.01.2009, 13:42
RE: SuperBot v0.96 - by -superking- - 18.01.2009, 13:47
RE: SuperBot v0.96 - by ds fan - 18.01.2009, 13:44
RE: SuperBot v0.96 - by Ephelian - 18.01.2009, 13:49
RE: SuperBot v0.96 - by Link001 - 18.01.2009, 22:24
RE: SuperBot v0.96 - by xentauri - 20.01.2009, 14:28
RE: SuperBot v0.96 - by schmitzi13 - 20.01.2009, 15:02
RE: SuperBot v0.96 - by -superking- - 20.01.2009, 16:25
RE: SuperBot v0.96 - by schmitzi13 - 20.01.2009, 20:34
RE: SuperBot v0.96 - by schmitzi13 - 21.01.2009, 14:56
RE: SuperBot v0.96 - by xentauri - 21.01.2009, 15:53
RE: SuperBot v0.96 - by spacejovi - 21.01.2009, 16:26
RE: SuperBot v0.96 - by schmitzi13 - 21.01.2009, 17:25
RE: SuperBot v0.96 - by -superking- - 21.01.2009, 17:34
RE: SuperBot v0.96 - by schmitzi13 - 21.01.2009, 18:48
RE: SuperBot v0.97 - by -superking- - 23.01.2009, 20:51
RE: SuperBot v0.97 - by Milu2K - 23.01.2009, 21:19
RE: SuperBot v0.97 - by -superking- - 24.01.2009, 10:25
RE: SuperBot v0.97 - by ds fan - 24.01.2009, 13:51
RE: SuperBot v0.97 - by WDF91 - 24.01.2009, 20:49
RE: SuperBot v0.97 - by -superking- - 24.01.2009, 14:05
RE: SuperBot v0.97 - by Black Arrow - 24.01.2009, 14:25
RE: SuperBot v0.97 - by -superking- - 24.01.2009, 14:36
RE: SuperBot v0.9701 - by -superking- - 25.01.2009, 12:18
RE: SuperBot v0.9701 - by Mc2Low - 25.01.2009, 12:49
RE: SuperBot v0.9701 - by -superking- - 25.01.2009, 13:24
RE: SuperBot v0.9701 - by Black Arrow - 25.01.2009, 14:54
RE: SuperBot v0.9701 - by -superking- - 25.01.2009, 15:02
RE: SuperBot v0.9701 - by Novel - 25.01.2009, 16:28
RE: SuperBot v0.9701 - by Milu2K - 25.01.2009, 16:30
RE: SuperBot v0.9701 - by jensoliver - 25.01.2009, 18:53
RE: SuperBot v0.9701 - by -superking- - 25.01.2009, 19:14
RE: SuperBot v0.9701 - by jensoliver - 25.01.2009, 22:07
RE: SuperBot v0.9701 - by -superking- - 26.01.2009, 16:35
RE: SuperBot v0.9701 - by Eragon9393 - 26.01.2009, 15:17
RE: SuperBot v0.9701 - by SlimShady95 - 26.01.2009, 17:06
RE: SuperBot v0.9701 - by Sonixx - 26.01.2009, 20:30
RE: SuperBot v0.9701 - by schmitzi13 - 26.01.2009, 20:49
RE: SuperBot v0.9701 - by SlimShady95 - 27.01.2009, 15:19
RE: SuperBot v0.9701 - by Sonixx - 26.01.2009, 21:02
RE: SuperBot v0.9701 - by jensoliver - 27.01.2009, 17:34
RE: SuperBot v0.9701 - by SlimShady95 - 27.01.2009, 19:53
RE: SuperBot v0.9701 - by szepi - 28.01.2009, 16:23
RE: SuperBot v0.9701 - by Milu2K - 28.01.2009, 16:31
RE: SuperBot v0.9701 - by **Dark Star** - 28.01.2009, 16:34
RE: SuperBot v0.9701 - by Milu2K - 28.01.2009, 16:38
RE: SuperBot v0.9701 - by **Dark Star** - 28.01.2009, 16:40
RE: SuperBot v0.9701 - by Black Arrow - 28.01.2009, 16:41
RE: SuperBot v0.9701 - by Milu2K - 28.01.2009, 16:56
RE: SuperBot v0.9701 - by SlimShady95 - 28.01.2009, 17:03
RE: SuperBot v0.9701 - by jensoliver - 29.01.2009, 19:46
RE: SuperBot v0.9701 - by -superking- - 30.01.2009, 13:09
RE: SuperBot v0.9701 - by Sonixx - 30.01.2009, 13:54
RE: SuperBot v0.9701 - by -superking- - 30.01.2009, 13:55
RE: SuperBot v0.9701 - by Sonixx - 30.01.2009, 14:19
RE: SuperBot v0.9701 - by -superking- - 30.01.2009, 14:20
RE: SuperBot v0.9701 - by Sonixx - 30.01.2009, 15:05
RE: SuperBot v0.9701 - by Sonixx - 30.01.2009, 17:01
RE: SuperBot v0.9701 - by -superking- - 30.01.2009, 17:03
RE: SuperBot v0.9701 - by Sonixx - 30.01.2009, 17:24
RE: SuperBot v0.9701 - by -superking- - 30.01.2009, 17:38
RE: SuperBot v0.9701 - by Sonixx - 30.01.2009, 18:09
RE: SuperBot v0.9701 - by Großhansdorf - 30.01.2009, 20:15
RE: SuperBot v0.9701 - by -superking- - 30.01.2009, 20:24
RE: SuperBot v0.9701 - by Sonixx - 31.01.2009, 10:58
RE: SuperBot v0.9701 - by Milu2K - 31.01.2009, 11:16
RE: SuperBot v0.9701 - by Sonixx - 31.01.2009, 13:01
RE: SuperBot v0.9701 - by Sonixx - 01.02.2009, 15:28
RE: SuperBot v0.9701 - by -superking- - 01.02.2009, 15:33
RE: SuperBot v0.9701 - by Sonixx - 01.02.2009, 16:21
RE: SuperBot v0.9701 - by -superking- - 01.02.2009, 16:33
RE: SuperBot v0.9701 - by Sonixx - 01.02.2009, 16:39
RE: SuperBot v0.9701 - by Ephelian - 01.02.2009, 17:13
RE: SuperBot v0.9701 - by Sonixx - 01.02.2009, 19:41
RE: SuperBot v0.9701 - by Reymie - 02.02.2009, 14:20
RE: SuperBot v0.9701 - by Milu2K - 02.02.2009, 14:29
RE: SuperBot v0.9701 - by Reymie - 02.02.2009, 14:41
RE: SuperBot v0.9701 - by Milu2K - 02.02.2009, 14:41
RE: SuperBot v0.9701 - by Reymie - 02.02.2009, 15:11
RE: SuperBot v0.9701 - by -superking- - 02.02.2009, 15:57
RE: SuperBot v0.9701 - by Reymie - 02.02.2009, 16:02
RE: SuperBot v0.9701 - by Sonixx - 02.02.2009, 17:11
RE: SuperBot v0.9701 - by -superking- - 02.02.2009, 17:26
RE: SuperBot v0.9701 - by Sonixx - 02.02.2009, 18:31
RE: SuperBot v0.9701 - by Milu2K - 02.02.2009, 18:43
RE: SuperBot v0.9701 - by Sonixx - 02.02.2009, 18:48
RE: SuperBot v0.9701 - by -superking- - 02.02.2009, 19:50
RE: SuperBot v0.9701 - by Sonixx - 02.02.2009, 20:00
RE: SuperBot v0.9701 - by -superking- - 03.02.2009, 19:18
RE: SuperBot v0.9701 - by oduncu - 06.02.2009, 12:43
RE: SuperBot v0.9701 - by Sonixx - 07.02.2009, 14:43
RE: SuperBot v0.9701 - by zigeuner - 07.02.2009, 18:38
RE: SuperBot v0.9701 - by -superking- - 07.02.2009, 18:46
RE: SuperBot v0.9701 - by Ben313 - 07.02.2009, 19:08
RE: SuperBot v0.9701 - by Narutofan XXl - 07.02.2009, 19:11
RE: SuperBot v0.9701 - by zigeuner - 07.02.2009, 21:07
RE: SuperBot v0.9701 - by Narutofan XXl - 07.02.2009, 21:12
RE: SuperBot v0.9701 - by zigeuner - 07.02.2009, 21:15
RE: SuperBot v0.9701 - by Narutofan XXl - 07.02.2009, 21:22
RE: SuperBot v0.9701 - by zigeuner - 07.02.2009, 21:25
RE: SuperBot v0.9701 - by Ephelian - 07.02.2009, 23:22
RE: SuperBot v0.9701 - by Narutofan XXl - 07.02.2009, 23:27
RE: SuperBot v0.9701 - by Ephelian - 08.02.2009, 01:10
RE: SuperBot v0.9701 - by -superking- - 08.02.2009, 08:07
RE: SuperBot v0.9701 - by -superking- - 19.02.2009, 07:11
RE: SuperBot v0.9701 - by oOSeucheoO - 22.02.2009, 19:27
RE: SuperBot v0.9701 - by -superking- - 22.02.2009, 19:48
RE: SuperBot v0.98 - by -superking- - 23.02.2009, 18:21
RE: SuperBot v0.98 - by Milu2K - 23.02.2009, 18:35
RE: SuperBot v0.98 - by Milu2K - 28.02.2009, 21:02
RE: SuperBot v0.98 - by SlimShady95 - 04.03.2009, 14:04
RE: SuperBot v0.98 - by Eragon666 - 04.03.2009, 19:01
RE: SuperBot v0.98 - by -superking- - 05.03.2009, 06:54
RE: SuperBot v0.98 - by Tic Tac-Man - 11.03.2009, 18:44
RE: SuperBot v0.98 - by Malechi - 11.03.2009, 19:59
RE: SuperBot v0.98 - by -superking- - 11.03.2009, 20:53
RE: SuperBot v0.98 - by Malechi - 11.03.2009, 20:59
RE: SuperBot v0.98 - by -superking- - 11.03.2009, 21:32
RE: SuperBot v0.98 - by richthofen - 14.03.2009, 18:33
RE: SuperBot v0.98 - by Agamendon - 14.03.2009, 19:21
RE: SuperBot v0.98 - by richthofen - 14.03.2009, 19:22
RE: SuperBot v0.98 - by Agamendon - 15.03.2009, 13:33
RE: SuperBot v0.98 - by richthofen - 15.03.2009, 14:01
RE: SuperBot v0.98 - by Da Chrissi - 16.03.2009, 16:38
RE: SuperBot v0.98 - by -superking- - 16.03.2009, 17:07
RE: SuperBot v0.98 - by richthofen - 16.03.2009, 17:30
RE: SuperBot v0.98 - by BritneyBitch - 16.03.2009, 19:31
RE: SuperBot v0.98 - by -superking- - 16.03.2009, 20:00
RE: SuperBot v0.98 - by -Xan- - 17.03.2009, 16:05
RE: SuperBot v0.98 - by Farek90 - 17.03.2009, 16:52
RE: SuperBot v0.98 - by Großhansdorf - 18.03.2009, 19:25
RE: SuperBot v0.98 - by -superking- - 18.03.2009, 20:24
RE: SuperBot v0.98 - by Großhansdorf - 18.03.2009, 20:39
RE: SuperBot v0.98 - by richthofen - 19.03.2009, 16:50
RE: SuperBot v0.98 - by Großhansdorf - 19.03.2009, 17:00
RE: SuperBot v0.98 - by richthofen - 19.03.2009, 17:33
RE: SuperBot v0.98 - by Großhansdorf - 19.03.2009, 18:08
RE: SuperBot v0.98 - by -superking- - 19.03.2009, 18:44
RE: SuperBot v0.98 - by richthofen - 19.03.2009, 19:04
RE: SuperBot v0.98 - by iNk - 19.03.2009, 22:09
RE: SuperBot v0.98 - by zyrak123 - 19.03.2009, 19:20
RE: SuperBot v0.98 - by -superking- - 19.03.2009, 20:23
RE: SuperBot v0.98 - by zyrak123 - 19.03.2009, 21:01
RE: SuperBot v0.98 - by richthofen - 20.03.2009, 14:40
RE: SuperBot v0.98 - by iNk - 21.03.2009, 13:07
RE: SuperBot v0.98 - by Farek90 - 21.03.2009, 12:57
RE: SuperBot v0.98 - by richthofen - 21.03.2009, 13:17
RE: SuperBot v0.98 - by iNk - 21.03.2009, 13:44
RE: SuperBot v0.98 - by richthofen - 21.03.2009, 13:53
RE: SuperBot v0.98 - by iNk - 21.03.2009, 13:58
RE: SuperBot v0.98 - by richthofen - 21.03.2009, 14:15
RE: SuperBot v0.98 - by iNk - 21.03.2009, 14:24
RE: SuperBot v0.98 - by richthofen - 21.03.2009, 14:35
RE: SuperBot v0.98 - by agrafix - 21.03.2009, 21:00
RE: SuperBot v0.98 - by agrafix - 22.03.2009, 21:51
RE: SuperBot v0.98 - by Black Arrow - 23.03.2009, 06:27
RE: SuperBot v0.98 - by spinne88 - 31.03.2009, 14:19
RE: SuperBot v0.98 - by -superking- - 31.03.2009, 16:34
RE: SuperBot v0.98 - by spinne88 - 01.04.2009, 10:24
RE: SuperBot v0.98 - by ma65 - 31.03.2009, 21:45
RE: SuperBot v0.98 - by Eragon9393 - 01.04.2009, 17:48
RE: SuperBot v0.98 - by -superking- - 01.04.2009, 20:49
RE: SuperBot v0.98 - by I murder ur Army - 02.04.2009, 15:42
RE: SuperBot v0.98 - by Black Arrow - 02.04.2009, 15:52
RE: SuperBot v0.98 - by I murder ur Army - 02.04.2009, 15:54
RE: SuperBot v0.98 - by Black Arrow - 02.04.2009, 16:00
RE: SuperBot v0.98 - by Black Arrow - 02.04.2009, 16:04
RE: SuperBot v0.98 - by I murder ur Army - 02.04.2009, 16:04
RE: SuperBot v0.98 - by I murder ur Army - 02.04.2009, 16:09
RE: SuperBot v0.98 - by Black Arrow - 02.04.2009, 16:11
RE: SuperBot v0.98 - by I murder ur Army - 02.04.2009, 16:16
RE: SuperBot v0.98 - by Black Arrow - 02.04.2009, 16:56
RE: SuperBot v0.98 - by I murder ur Army - 02.04.2009, 16:59
RE: SuperBot v0.98 - by Dennis der Chiller - 02.04.2009, 20:11
RE: SuperBot v0.98 - by Vaati19 - 05.04.2009, 17:55
RE: SuperBot v0.98 - by -superking- - 05.04.2009, 18:19
RE: SuperBot v0.98 - by Vaati19 - 05.04.2009, 18:26
RE: SuperBot v0.98 - by Vaati19 - 06.04.2009, 20:13
RE: SuperBot v0.98 - by Dennis der Chiller - 08.04.2009, 17:10
RE: SuperBot v0.98 - by We*3D - 11.04.2009, 18:19
RE: SuperBot v0.98 - by Black Arrow - 11.04.2009, 18:22
RE: SuperBot v0.98 - by We*3D - 11.04.2009, 18:23
RE: SuperBot v0.98 - by Black Arrow - 11.04.2009, 18:24
RE: SuperBot v0.98 - by We*3D - 11.04.2009, 18:28
RE: SuperBot v0.98 - by Black Arrow - 11.04.2009, 18:30
RE: SuperBot v0.98 - by We*3D - 11.04.2009, 18:33
RE: SuperBot v0.98 - by We*3D - 12.04.2009, 18:22
RE: SuperBot v0.98 - by norbert3000 - 17.05.2009, 15:57
RE: SuperBot v0.98 - by Fr3ak-kill - 17.05.2009, 17:15
RE: SuperBot v0.98 - by Black Arrow - 17.05.2009, 17:18
RE: SuperBot v0.98 - by GoldenerPaladin123 - 17.05.2009, 17:40
RE: SuperBot v0.98 - by Black Arrow - 17.05.2009, 17:42
RE: SuperBot v0.98 - by GoldenerPaladin123 - 17.05.2009, 17:44
RE: SuperBot v0.98 - by Black Arrow - 17.05.2009, 17:47
RE: SuperBot v0.98 - by GoldenerPaladin123 - 17.05.2009, 17:47
RE: SuperBot v0.98 - by Black Arrow - 17.05.2009, 17:48
RE: SuperBot v0.98 - by mudda0wner - 18.05.2009, 13:30
RE: SuperBot v0.98 - by Black Arrow - 18.05.2009, 13:33
RE: SuperBot v0.98 - by -superking- - 18.05.2009, 13:56
RE: SuperBot v0.98 - by Baron2 - 21.05.2009, 09:45
RE: SuperBot v0.98 - by -superking- - 21.05.2009, 09:47
RE: SuperBot v0.98 - by Baron2 - 21.05.2009, 09:49
RE: SuperBot v0.98 - by Yannici - 21.05.2009, 15:12
RE: SuperBot v0.98 - by Baron2 - 21.05.2009, 15:39
RE: SuperBot v0.98 - by Jokoho - 21.05.2009, 18:56
RE: SuperBot v0.98 - by Beahsli - 23.05.2009, 11:52
RE: SuperBot v0.98 - by Black Arrow - 23.05.2009, 11:53
RE: SuperBot v0.98 - by Beahsli - 23.05.2009, 11:55
RE: SuperBot v0.98 - by Black Arrow - 23.05.2009, 11:56
RE: SuperBot v0.98 - by SlimShady95 - 23.05.2009, 18:32
RE: SuperBot v0.98 - by Agamendon - 23.05.2009, 18:40
RE: SuperBot v0.98 - by Kazooie - 24.05.2009, 01:50
RE: SuperBot v0.98 - by sound216 - 04.07.2009, 10:03
RE: SuperBot v0.98 - by Black Arrow - 04.07.2009, 11:19
RE: SuperBot v0.98 - by sound216 - 04.07.2009, 12:01
RE: SuperBot v0.98 - by Zimjo - 21.10.2009, 09:57
RE: SuperBot v0.98 - by Bettdecke1 - 21.10.2009, 11:42
RE: SuperBot v0.98 - by hallosager - 02.11.2009, 22:53
RE: SuperBot v0.98 - by Bettdecke1 - 03.11.2009, 07:55
RE: SuperBot v0.98 - by hallosager - 03.11.2009, 16:09
RE: SuperBot v0.98 - by -superking- - 03.11.2009, 16:10
RE: SuperBot v0.98 - by hallosager - 03.11.2009, 16:14
RE: SuperBot v0.98 - by -superking- - 03.11.2009, 17:35
RE: SuperBot v0.98 - by hallosager - 03.11.2009, 20:36
RE: SuperBot v0.98 - by -superking- - 03.11.2009, 21:42
RE: SuperBot v0.98 - by hallosager - 04.11.2009, 14:46
RE: SuperBot v0.98 - by hallosager - 04.11.2009, 21:15
RE: SuperBot v0.98 - by Yannici - 04.11.2009, 22:42
RE: SuperBot v0.98 - by hallosager - 05.11.2009, 07:35
RE: SuperBot v0.98 - by lol... - 05.11.2009, 08:50
RE: SuperBot v0.98 - by hallosager - 05.11.2009, 16:54
RE: SuperBot v0.98 - by mannvomfenster - 05.11.2009, 12:07
RE: SuperBot v0.98 - by Markus4897 - 07.12.2009, 16:20
RE: SuperBot v0.98 - by Black Arrow - 07.12.2009, 16:26
RE: SuperBot v0.98 - by Markus4897 - 07.12.2009, 16:45
RE: SuperBot v0.98 - by Rex995 - 30.12.2009, 00:28
RE: SuperBot v0.98 - by B8shT1m3 - 30.12.2009, 01:46
RE: SuperBot v0.98 - by Rex995 - 30.12.2009, 19:20
RE: SuperBot v0.98 - by Black Arrow - 30.12.2009, 19:21
RE: SuperBot v0.98 - by Rex995 - 30.12.2009, 19:38
RE: SuperBot v0.98 - by -superking- - 30.12.2009, 20:29
RE: SuperBot v0.98 - by Rex995 - 31.12.2009, 12:10
RE: SuperBot v0.98 - by -superking- - 31.12.2009, 14:30
RE: SuperBot v0.98 - by PRiL - 24.01.2010, 14:36
RE: SuperBot v0.98 - by Black Arrow - 24.01.2010, 15:45
RE: SuperBot v0.98 - by SlimShady95 - 24.01.2010, 21:39
RE: SuperBot v0.98 - by PRiL - 24.01.2010, 17:44
RE: SuperBot v0.98 - by Sleeper10 - 28.01.2010, 16:50
RE: SuperBot v0.98 - by CyberMinator - 28.01.2010, 16:53
RE: SuperBot v0.98 - by Sleeper10 - 28.01.2010, 16:54
RE: SuperBot v0.98 - by CyberMinator - 28.01.2010, 16:59
RE: SuperBot v0.98 - by Sleeper10 - 28.01.2010, 17:03
RE: SuperBot v0.98 - by CyberMinator - 28.01.2010, 17:09
RE: SuperBot v0.98 - by Sleeper10 - 28.01.2010, 17:11
RE: SuperBot v0.98 - by CyberMinator - 28.01.2010, 17:16
RE: SuperBot v0.98 - by Sleeper10 - 28.01.2010, 17:26
RE: SuperBot v0.98 - by Black Arrow - 28.01.2010, 17:31
RE: SuperBot v0.98 - by CyberMinator - 28.01.2010, 17:34
RE: SuperBot v0.98 - by CyberMinator - 28.01.2010, 17:30
RE: SuperBot v0.98 - by Sleeper10 - 28.01.2010, 17:36
RE: SuperBot v0.98 - by CyberMinator - 28.01.2010, 17:38
RE: SuperBot v0.98 - by Sleeper10 - 28.01.2010, 17:44
RE: SuperBot v0.98 - by CyberMinator - 28.01.2010, 17:46
RE: SuperBot v0.98 - by Sleeper10 - 28.01.2010, 17:52
RE: SuperBot v0.98 - by CyberMinator - 28.01.2010, 17:56
RE: SuperBot v0.98 - by Mr. JonnyBob - 27.03.2010, 08:11
RE: SuperBot v0.98 - by Black Arrow - 27.03.2010, 09:34
RE: SuperBot v0.98 - by Mr. JonnyBob - 27.03.2010, 09:53
RE: SuperBot v0.98 - by Black Arrow - 27.03.2010, 10:04
RE: SuperBot v0.98 - by Mr. JonnyBob - 27.03.2010, 11:48
RE: SuperBot v0.98 - by Andi13 - 30.03.2010, 09:16
RE: SuperBot v0.98 - by Black Arrow - 30.03.2010, 09:28
RE: SuperBot v0.98 - by ecol - 02.04.2010, 12:04
RE: SuperBot v0.98 - by Yannici - 02.04.2010, 12:46
RE: SuperBot v0.98 - by ecol - 02.04.2010, 12:48
RE: SuperBot v0.98 - by Yannici - 02.04.2010, 12:51
RE: SuperBot v0.98 - by ecol - 02.04.2010, 12:58
RE: SuperBot v0.98 - by Yannici - 02.04.2010, 13:00
RE: SuperBot v0.98 - by ecol - 02.04.2010, 13:27
RE: SuperBot v0.98 - by Yannici - 02.04.2010, 14:48
RE: SuperBot v0.98 - by ecol - 02.04.2010, 23:19
RE: SuperBot v0.98 - by Yannici - 02.04.2010, 23:36
RE: SuperBot v0.98 - by ecol - 03.04.2010, 00:06
RE: SuperBot v0.98 - by Yannici - 03.04.2010, 09:44
RE: SuperBot v0.98 - by ecol - 03.04.2010, 13:14
RE: SuperBot v0.98 - by Old pro - 10.04.2010, 19:37
RE: SuperBot v0.98 - by Black Arrow - 10.04.2010, 22:56
RE: SuperBot v0.98 - by SlimShady95 - 11.04.2010, 18:33
RE: SuperBot v0.98 - by Old pro - 12.04.2010, 13:09
RE: SuperBot v0.98 - by relaxo0708 - 13.04.2010, 19:25
RE: SuperBot v0.98 - by SlimShady95 - 14.04.2010, 12:55
RE: SuperBot v0.98 - by Gira - 14.04.2010, 13:02
RE: SuperBot v0.98 - by cindy - 25.04.2010, 15:34
RE: SuperBot v0.98 - by SlimShady95 - 25.04.2010, 19:23
RE: SuperBot v0.98 - by cindy - 26.04.2010, 07:54
RE: SuperBot v0.98 - by Yannici - 26.04.2010, 14:22
RE: SuperBot v0.98 - by cindy - 26.04.2010, 15:50
RE: SuperBot v0.98 - by cindy - 27.04.2010, 08:26
RE: SuperBot v0.98 - by maikmille - 29.05.2010, 14:51
RE: SuperBot v0.98 - by maikmille - 30.05.2010, 18:31
RE: SuperBot v0.98 - by Schandmauel - 27.07.2010, 17:05
RE: SuperBot v0.98 - by Yannici - 27.07.2010, 17:20
RE: SuperBot v0.98 - by Schandmauel - 27.07.2010, 17:57
RE: SuperBot v0.98 - by Yannici - 27.07.2010, 19:00
RE: SuperBot v0.98 - by paulgerman - 27.07.2010, 20:41
RE: SuperBot v0.98 - by Akzeptabel - 02.08.2010, 21:06
RE: SuperBot v0.98 - by _toon-link_ - 02.08.2010, 21:41
RE: SuperBot v0.98 - by Akzeptabel - 02.08.2010, 22:00
RE: SuperBot v0.98 - by Markan - 21.08.2010, 08:31
RE: SuperBot v0.98 - by King Sino - 21.08.2010, 12:35
RE: SuperBot v0.98 - by listigerhai - 22.08.2010, 18:12
RE: SuperBot v0.98 - by Kito253 - 25.08.2010, 19:36
RE: SuperBot v0.98 - by Bettdecke1 - 25.08.2010, 19:39
RE: SuperBot v0.98 - by biolos - 25.08.2010, 19:48
RE: SuperBot v0.98 - by Bettdecke1 - 25.08.2010, 19:50
RE: SuperBot v0.98 - by k3v95 - 18.10.2010, 14:13
RE: SuperBot v0.98 - by Dsaddicted - 18.10.2010, 16:02
RE: SuperBot v0.98 - by SlimShady95 - 18.10.2010, 17:22
RE: SuperBot v0.98 - by k3v95 - 18.10.2010, 20:04
RE: SuperBot v0.98 - by Dsaddicted - 18.10.2010, 22:10
RE: SuperBot v0.98 - by k3v95 - 19.10.2010, 06:58
RE: SuperBot v0.98 - by SlimShady95 - 19.10.2010, 14:54
RE: SuperBot v0.98 - by Dsaddicted - 19.10.2010, 10:40
RE: SuperBot v0.98 - by Dsaddicted - 19.10.2010, 16:19
RE: SuperBot v0.98 - by Bettdecke1 - 19.10.2010, 17:17
RE: SuperBot v0.98 - by Dsaddicted - 19.10.2010, 17:18
RE: SuperBot v0.98 - by Bettdecke1 - 19.10.2010, 17:18
RE: SuperBot v0.98 - by Dsaddicted - 19.10.2010, 17:20
RE: SuperBot v0.98 - by Almarik_II - 01.12.2010, 15:59
RE: SuperBot v0.98 - by Bettdecke1 - 01.12.2010, 17:33
RE: SuperBot v0.98 - by Old pro - 01.12.2010, 20:09
RE: SuperBot v0.98 - by Almarik_II - 02.12.2010, 16:40
RE: SuperBot v0.98 - by k3v95 - 02.12.2010, 16:57
RE: SuperBot v0.98 - by Cpt. Awful - 30.01.2011, 20:48
RE: SuperBot v0.98 - by Lutherius - 31.01.2011, 21:33
RE: SuperBot v0.98 - by k3v95 - 31.01.2011, 21:46
RE: SuperBot v0.98 - by Lutherius - 31.01.2011, 21:49
RE: SuperBot v0.98 - by k3v95 - 31.01.2011, 22:14
RE: SuperBot v0.98 - by Lutherius - 31.01.2011, 22:32
RE: SuperBot v0.98 - by k3v95 - 01.02.2011, 07:53
RE: SuperBot v0.98 - by parat26 - 01.02.2011, 19:17
RE: SuperBot v0.98 - by SlimShady95 - 01.02.2011, 19:32
RE: SuperBot v0.98 - by lolli1 - 01.02.2011, 19:35
RE: SuperBot v0.98 - by parat26 - 01.02.2011, 19:42
RE: SuperBot v0.98 - by lolli1 - 01.02.2011, 19:43
RE: SuperBot v0.98 - by SlimShady95 - 01.02.2011, 19:44
RE: SuperBot v0.98 - by parat26 - 01.02.2011, 19:48
RE: SuperBot v0.98 - by parat26 - 01.02.2011, 19:45
RE: SuperBot v0.98 - by lolli1 - 01.02.2011, 19:47
RE: SuperBot v0.98 - by lolli1 - 01.02.2011, 19:54
RE: SuperBot v0.98 - by parat26 - 01.02.2011, 19:57
RE: SuperBot v0.98 - by lolli1 - 01.02.2011, 20:00
RE: SuperBot v0.98 - by parat26 - 01.02.2011, 20:01
RE: SuperBot v0.98 - by Nauschi - 22.02.2011, 17:11
RE: SuperBot v0.98 - by lolli1 - 22.02.2011, 18:55
RE: SuperBot v0.98 - by Nauschi - 22.02.2011, 18:59
RE: SuperBot v0.98 - by Hilfetrupp - 26.04.2011, 16:20
RE: SuperBot v0.98 - by Bettdecke1 - 26.04.2011, 16:31
RE: SuperBot v0.98 - by Hilfetrupp - 26.04.2011, 17:00
RE: SuperBot v0.98 - by Bettdecke1 - 26.04.2011, 17:09
RE: SuperBot v0.98 - by Hilfetrupp - 26.04.2011, 17:50
RE: SuperBot v0.98 - by Bettdecke1 - 26.04.2011, 17:51
RE: SuperBot v0.98 - by Hilfetrupp - 26.04.2011, 18:01
RE: SuperBot v0.98 - by Bettdecke1 - 26.04.2011, 18:24
RE: SuperBot v0.98 - by SlimShady95 - 26.04.2011, 19:36
RE: SuperBot v0.98 - by Hilfetrupp - 26.04.2011, 19:56
RE: SuperBot v0.98 - by SlimShady95 - 26.04.2011, 20:55
RE: SuperBot v0.98 - by Dsaddicted - 27.04.2011, 11:31
RE: SuperBot v0.98 - by /Torwaechter/ - 27.04.2011, 12:09
RE: SuperBot v0.98 - by Dsaddicted - 27.04.2011, 12:12
RE: SuperBot v0.98 - by /Torwaechter/ - 27.04.2011, 12:33
RE: SuperBot v0.98 - by Dsaddicted - 27.04.2011, 12:42
RE: SuperBot v0.98 - by Hilfetrupp - 27.04.2011, 13:52
RE: SuperBot v0.98 - by lolli1 - 27.04.2011, 14:19
RE: SuperBot v0.98 - by Hilfetrupp - 27.04.2011, 14:30
RE: SuperBot v0.98 - by flasi - 29.04.2011, 14:55
RE: SuperBot v0.98 - by Bettdecke1 - 29.04.2011, 15:10
RE: SuperBot v0.98 - by flasi - 30.04.2011, 09:05
RE: SuperBot v0.98 - by -superking- - 05.05.2011, 02:00
RE: SuperBot v0.98 - by Nauschi - 29.07.2011, 20:52
RE: SuperBot v0.98 - by Massenmörder10 - 29.07.2011, 21:09
RE: SuperBot v0.98 - by Nauschi - 29.07.2011, 21:16
RE: SuperBot v0.98 - by Massenmörder10 - 29.07.2011, 21:17
RE: SuperBot v0.98 - by Nauschi - 29.07.2011, 21:59
RE: SuperBot v0.98 - by SlimShady95 - 30.07.2011, 01:46
RE: SuperBot v0.98 - by Nauschi - 30.07.2011, 10:11
RE: SuperBot v0.98 - by lolli1 - 30.07.2011, 11:43
RE: SuperBot v0.98 - by Nauschi - 30.07.2011, 11:51
RE: SuperBot v0.98 - by Nauschi - 07.09.2011, 16:39
RE: SuperBot v0.98 - by Jonsn - 07.09.2011, 16:44
RE: SuperBot v0.98 - by ON21 - 07.09.2011, 16:44
RE: SuperBot v0.98 - by Nauschi - 08.09.2011, 19:07
RE: SuperBot v0.98 - by Passi292 - 01.10.2011, 21:20
RE: SuperBot v0.98 - by Akzeptabel - 09.10.2011, 15:26
RE: SuperBot v0.98 - by Dsaddicted - 09.10.2011, 18:10
RE: SuperBot v0.98 - by chiomi - 03.12.2011, 11:30
RE: SuperBot v0.98 - by Dsaddicted - 04.12.2011, 18:11
RE: SuperBot v0.98 - by Molt - 04.12.2011, 20:16
RE: SuperBot v0.98 - by Dsaddicted - 04.12.2011, 20:25
RE: SuperBot v0.98 - by Johari - 10.12.2011, 09:24
RE: SuperBot v0.98 - by Dsaddicted - 10.12.2011, 11:43
RE: SuperBot v0.98 - by Molt - 10.12.2011, 13:04
RE: SuperBot v0.98 - by Dsaddicted - 08.01.2012, 22:43
RE: SuperBot v0.98 - by madlord - 23.01.2012, 19:38
RE: SuperBot v0.98 - by WutziXoX - 27.01.2012, 18:06
RE: SuperBot v0.98 - by Molt - 27.01.2012, 18:57
RE: SuperBot v0.98 - by WutziXoX - 27.01.2012, 19:10
RE: SuperBot v0.98 - by WutziXoX - 27.01.2012, 22:07
RE: SuperBot v0.98 - by Molt - 28.01.2012, 08:31
RE: SuperBot v0.98 - by WutziXoX - 28.01.2012, 17:38
RE: SuperBot v0.98 - by SlimShady95 - 28.01.2012, 18:28
RE: SuperBot v0.98 - by ShadowMonkey - 30.03.2012, 16:04
RE: SuperBot v0.98 - by WutziXoX - 28.01.2012, 18:31
RE: SuperBot v0.98 - by SlimShady95 - 30.03.2012, 18:20
RE: SuperBot v0.98 - by Daim666 - 05.06.2012, 23:23
RE: SuperBot v0.98 - by Zareko - 08.12.2012, 15:16



Users browsing this thread: 20 Guest(s)