Thread Rating:
  • 11 Vote(s) - 4.18 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[v1.4] ~*All-In-One~Version1.9*~
Ok, hier kommt der code

PHP Code:
<?php
require('include.inc2.php');
require(
'include/config.php');
require(
'include/configs/bonus.php');

// Produktivitätskurve von Einheiten
$bonus['prod'] = 0.665;

$link=mysql_connect($config['db_host'],$config['db_user'],$config['db_pw']) or die("not");
mysql_select_db("lan") or die("not");
$sql_bonus_villages mysql_query("SELECT * FROM villages WHERE id = '".$_GET["village"]."'");
$vill mysql_fetch_assoc($sql_bonus_villages);
// Händler & Speicher
if ($vill["bonus"] == "1")
    {
    
// Speicher erhöhen
    
$bonus['factor'] = ($bonus['dealers'] / 100) + 1;
    
$bonus['zahl'] = 1;
    while(
$bonus['zahl'] <= count($arr_maxstorage))
        {
        
$arr_maxstorage[$bonus['zahl']] = round($arr_maxstorage[$bonus['zahl']] * $bonus['factor']);
        
$bonus['zahl']++;
        }
    
// Händler erhöhen
    
$bonus['zahl'] = 0;
    while(
$bonus['zahl'] < count($arr_dealers))
        {
        
$arr_dealers[$bonus['zahl']] = round($arr_dealers[$bonus['zahl']] * $bonus['factor']);
        
$bonus['zahl']++;
        }
    }
// Mehr Bevölkerung
elseif($vill["bonus"] == "2")
    {
    
$bonus['factor'] = ($bonus['farm'] / 100) + 1;
    
$bonus['zahl'] = 1;
    while(
$bonus['zahl'] <= count($arr_farm))
        {
        
$arr_farm[$bonus['zahl']] = round($arr_farm[$bonus['zahl']] * $bonus['factor']);
        
$bonus['zahl']++;
        }
    }
// Mehr Stallproduktivität
elseif($vill["bonus"] == "3")
    {
    
$bonus['factor'] = ($bonus['stable'] / 100) + 1;
    
// Späher
    
$neu_spy $cl_units->get_time(0"unit_spy");
    
$cl_units->add_unit($lang->grab("configs_units""spy"),"unit_spy");
    
$cl_units->set_time(($neu_spy $bonus['prod']) / $bonus['factor']);
    
// LKav
    
$neu_light $cl_units->get_time(0"unit_light");
    
$cl_units->add_unit($lang->grab("configs_units""light"),"unit_light");
    
$cl_units->set_time(($neu_light $bonus['prod']) / $bonus['factor']);
    
// SKav
    
$neu_heavy $cl_units->get_time(0"unit_heavy");
    
$cl_units->add_unit($lang->grab("configs_units""heavy"),"unit_heavy");
    
$cl_units->set_time(($neu_heavy $bonus['prod']) / $bonus['factor']);
    
// Berittene Bögen
    // Zum Aktivieren die /* und */ entfernen
/*    $neu_marcher = $cl_units->get_time(0, "unit_marcher");
    $cl_units->add_unit("Berittene Bogensch&uuml;tzen","unit_marcher");
    $cl_units->set_time(($neu_marcher / $bonus['prod']) / $bonus['factor']);
*/
    
}
// Mehr Kasernenproduktivität
elseif($vill["bonus"] == "4")
    {
    
$bonus['factor'] = ($bonus['barracks'] / 100) + 1;
    
// Speer
    
$neu_spear $cl_units->get_time(0"unit_spear");
    
$cl_units->add_unit($lang->grab("configs_units""spear"),"unit_spear");
    
$cl_units->set_time(($neu_spear $bonus['prod']) / $bonus['factor']);
    
// Schwert
    
$neu_sword $cl_units->get_time(0"unit_sword");
    
$cl_units->add_unit($lang->grab("configs_units""sword"),"unit_sword");
    
$cl_units->set_time(($neu_sword $bonus['prod']) / $bonus['factor']);
    
// Axt
    
$neu_axe $cl_units->get_time(0"unit_axe");
    
$cl_units->add_unit($lang->grab("configs_units""axe"),"unit_axe");
    
$cl_units->set_time(($neu_axe $bonus['prod']) / $bonus['factor']);
    
// Bögen
    // Zum Aktivieren die /* und */ entfernen
/*    $neu_archer = $cl_units->get_time(0, "unit_archer");
    $cl_units->add_unit("Bogensch&uuml;tzen","unit_archer");
    $cl_units->set_time(($neu_archer / $bonus['prod']) / $bonus['factor']);
*/
    
}
// Mehr Werkstattproduktivität
elseif($vill["bonus"] == "5")
    {
    
$bonus['factor'] = ($bonus['garage'] / 100) + 1;
    
// Ramme
    
$neu_ram $cl_units->get_time(0"unit_ram");
    
$cl_units->add_unit($lang->grab("configs_units""ram"),"unit_ram");
    
$cl_units->set_time(($neu_ram $bonus['prod']) / $bonus['factor']);
    
// Katapult
    
$neu_catapult $cl_units->get_time(0"unit_catapult");
    
$cl_units->add_unit($lang->grab("configs_units""catapult"),"unit_catapult");
    
$cl_units->set_time(($neu_catapult $bonus['prod']) / $bonus['factor']);
    }
// Mehr Rohstoffproduktion
elseif($vill["bonus"] == "6")
    {
    
$bonus['factor'] = ($bonus['res'] / 100) + 1;
    
$bonus['zahl'] = 0;
    while(
$bonus['zahl'] < count($arr_production))
        {
        
$arr_production[$bonus['zahl']] = $arr_production[$bonus['zahl']] * $bonus['factor'];
        
$bonus['zahl']++;
        }
    }

function 
get_bonus($x,$y)
{
  
$sql mysql_query("SELECT * FROM villages WHERE x = '$x' AND y = '$y'");
  
$vill mysql_fetch_assoc($sql);
  if (
$vill["bonus"] > "0")
  {
    
$out true;
  }
  else
  {
    
$out false;
  }
  return 
$out;
}

function 
off_or_deff($x$y)    {
    
$sql mysql_query("SELECT * FROM villages WHERE x = '".$x."' AND y = '".$y."'");
    
$vill mysql_fetch_assoc($sql);
    
    
$vid intval($_GET['village']);
    
$sql2 mysql_query("SELECT * FROM villages WHERE id = '".$vid."'");
    
$vill2 mysql_fetch_assoc($sql2);
    
    if(
$vill2['userid'] == $vill['userid'])
        {
         if(
$vill['type'] != "")
            {
             
$out $vill['type'];
            }
            else
            {
             
$out false;
            }
        }
        else
        {
         
$out false;
        }
    return 
$out;
    }
?>

Jetzt hab ichs auch gefunden, probiert und jetzt gehts.

mysql_select_db("lan") or die("not");

Hier war der Fehler.
Danke für die Hilfestellung!!!
Reply


Messages In This Thread
~*All-In-One~Version1.9*~ - by snake 9 - 02.04.2011, 12:43
RE: ~*All-In-One~Version1.8*~ - by lolli1 - 02.04.2011, 12:44
RE: ~*All-In-One~Version1.8*~ - by Bettdecke1 - 02.04.2011, 12:44
RE: ~*All-In-One~Version1.8*~ - by snake 9 - 02.04.2011, 12:55
RE: ~*All-In-One~Version1.8*~ - by Gira - 02.04.2011, 13:43
RE: ~*All-In-One~Version1.8*~ - by lolli1 - 02.04.2011, 14:15
RE: ~*All-In-One~Version1.8*~ - by Gira - 02.04.2011, 15:07
RE: ~*All-In-One~Version1.8*~ - by snake 9 - 02.04.2011, 16:40
RE: ~*All-In-One~Version1.8*~ - by ON21 - 02.04.2011, 17:19
RE: ~*All-In-One~Version1.8*~ - by snake 9 - 02.04.2011, 17:23
RE: ~*All-In-One~Version1.8*~ - by ON21 - 02.04.2011, 17:25
RE: ~*All-In-One~Version1.8*~ - by snake 9 - 02.04.2011, 17:32
RE: ~*All-In-One~Version1.8*~ - by ON21 - 02.04.2011, 17:34
RE: ~*All-In-One~Version1.8*~ - by Gira - 02.04.2011, 17:50
RE: ~*All-In-One~Version1.8*~ - by ON21 - 02.04.2011, 19:29
RE: ~*All-In-One~Version1.8*~ - by snake 9 - 02.04.2011, 19:32
RE: ~*All-In-One~Version1.8*~ - by ON21 - 02.04.2011, 19:33
RE: ~*All-In-One~Version1.8*~ - by Gira - 02.04.2011, 20:21
RE: ~*All-In-One~Version1.8*~ - by k3v95 - 03.04.2011, 14:17
RE: ~*All-In-One~Version1.8*~ - by Dsaddicted - 02.04.2011, 22:20
RE: ~*All-In-One~Version1.8*~ - by lolli1 - 02.04.2011, 22:52
RE: ~*All-In-One~Version1.8*~ - by Dsaddicted - 02.04.2011, 23:43
RE: ~*All-In-One~Version1.8*~ - by baroni - 03.04.2011, 10:16
RE: ~*All-In-One~Version1.8*~ - by lolli1 - 03.04.2011, 11:05
RE: ~*All-In-One~Version1.8*~ - by baroni - 03.04.2011, 11:07
RE: ~*All-In-One~Version1.8*~ - by lolli1 - 03.04.2011, 11:10
RE: ~*All-In-One~Version1.8*~ - by baroni - 03.04.2011, 11:30
RE: ~*All-In-One~Version1.8*~ - by lolli1 - 03.04.2011, 11:35
RE: ~*All-In-One~Version1.8*~ - by snake 9 - 03.04.2011, 14:08
RE: ~*All-In-One~Version1.8*~ - by snake 9 - 03.04.2011, 14:18
RE: ~*All-In-One~Version1.8*~ - by k3v95 - 03.04.2011, 14:21
RE: ~*All-In-One~Version1.8*~ - by baroni - 03.04.2011, 15:04
RE: ~*All-In-One~Version1.8*~ - by Mosche - 03.04.2011, 16:10
RE: ~*All-In-One~Version1.8*~ - by snake 9 - 03.04.2011, 16:14
RE: ~*All-In-One~Version1.8*~ - by Mosche - 03.04.2011, 16:14
RE: ~*All-In-One~Version1.8*~ - by Molt - 03.04.2011, 16:19
RE: ~*All-In-One~Version1.8*~ - by maikmille - 04.04.2011, 15:15
RE: ~*All-In-One~Version1.8*~ - by snake 9 - 04.04.2011, 15:21
RE: ~*All-In-One~Version1.8*~ - by Taktik - 05.04.2011, 07:14
RE: ~*All-In-One~Version1.8*~ - by ON21 - 05.04.2011, 09:20
RE: ~*All-In-One~Version1.8*~ - by Gelsio - 05.04.2011, 19:54
RE: ~*All-In-One~Version1.8*~ - by snake 9 - 05.04.2011, 19:56
RE: ~*All-In-One~Version1.8*~ - by ON21 - 05.04.2011, 19:57
RE: ~*All-In-One~Version1.8*~ - by snake 9 - 05.04.2011, 19:58
RE: ~*All-In-One~Version1.8*~ - by lolli1 - 05.04.2011, 20:19
RE: ~*All-In-One~Version1.8*~ - by snake 9 - 05.04.2011, 20:23
RE: ~*All-In-One~Version1.8*~ - by lolli1 - 05.04.2011, 20:28
RE: ~*All-In-One~Version1.8*~ - by Dsaddicted - 05.04.2011, 20:28
RE: ~*All-In-One~Version1.8*~ - by lolli1 - 05.04.2011, 20:30
RE: ~*All-In-One~Version1.8*~ - by Gelsio - 05.04.2011, 20:38
RE: ~*All-In-One~Version1.8*~ - by Dsaddicted - 05.04.2011, 21:09
RE: ~*All-In-One~Version1.8*~ - by Gelsio - 06.04.2011, 17:19
RE: ~*All-In-One~Version1.8*~ - by lolli1 - 06.04.2011, 20:45
RE: ~*All-In-One~Version1.8*~ - by lolli1 - 06.04.2011, 20:25
RE: ~*All-In-One~Version1.8*~ - by snake 9 - 06.04.2011, 20:26
RE: ~*All-In-One~Version1.8*~ - by lolli1 - 06.04.2011, 20:29
RE: ~*All-In-One~Version1.8*~ - by snake 9 - 06.04.2011, 20:30
RE: ~*All-In-One~Version1.8*~ - by lolli1 - 06.04.2011, 20:31
RE: ~*All-In-One~Version1.8*~ - by snake 9 - 06.04.2011, 20:32
RE: ~*All-In-One~Version1.8*~ - by Gelsio - 06.04.2011, 20:50
RE: ~*All-In-One~Version1.8*~ - by TuRN_ - 08.04.2011, 20:05
RE: ~*All-In-One~Version1.8*~ - by k3v95 - 08.04.2011, 20:08
RE: ~*All-In-One~Version1.8*~ - by snake 9 - 08.04.2011, 20:29
RE: ~*All-In-One~Version1.8*~ - by BohFreak2 - 09.04.2011, 11:48
RE: ~*All-In-One~Version1.8*~ - by DS/Sascha - 10.04.2011, 17:47
RE: ~*All-In-One~Version1.8*~ - by snake 9 - 10.04.2011, 17:53
RE: ~*All-In-One~Version1.8*~ - by DS/Sascha - 11.04.2011, 20:17
RE: ~*All-In-One~Version1.8*~ - by snake 9 - 18.04.2011, 22:42
RE: ~*All-In-One~Version1.8*~ - by lolli1 - 18.04.2011, 22:45
RE: ~*All-In-One~Version1.9*~ - by Bettdecke1 - 18.04.2011, 23:55
RE: ~*All-In-One~Version1.9*~ - by snake 9 - 19.04.2011, 00:27
RE: ~*All-In-One~Version1.9*~ - by snake 9 - 19.04.2011, 19:59
RE: ~*All-In-One~Version1.9*~ - by mycel - 21.04.2011, 12:52
RE: ~*All-In-One~Version1.9*~ - by snake 9 - 21.04.2011, 15:32
RE: ~*All-In-One~Version1.9*~ - by Falkos - 23.04.2011, 14:46
RE: ~*All-In-One~Version1.9*~ - by ON21 - 23.04.2011, 17:10
RE: ~*All-In-One~Version1.9*~ - by snake 9 - 23.04.2011, 17:37
RE: ~*All-In-One~Version1.9*~ - by Falkos - 23.04.2011, 18:13
RE: ~*All-In-One~Version1.9*~ - by ON21 - 23.04.2011, 18:27
RE: ~*All-In-One~Version1.9*~ - by Bettdecke1 - 23.04.2011, 18:56
RE: ~*All-In-One~Version1.9*~ - by ON21 - 23.04.2011, 19:09
RE: ~*All-In-One~Version1.9*~ - by Bettdecke1 - 23.04.2011, 19:17
RE: ~*All-In-One~Version1.9*~ - by ON21 - 23.04.2011, 19:21
RE: ~*All-In-One~Version1.9*~ - by Bettdecke1 - 23.04.2011, 19:24
RE: ~*All-In-One~Version1.9*~ - by snake 9 - 23.04.2011, 19:54
RE: ~*All-In-One~Version1.9*~ - by Bettdecke1 - 23.04.2011, 19:58
RE: ~*All-In-One~Version1.9*~ - by Falkos - 23.04.2011, 20:01
RE: ~*All-In-One~Version1.9*~ - by Bettdecke1 - 23.04.2011, 20:03
RE: ~*All-In-One~Version1.9*~ - by snake 9 - 23.04.2011, 20:10
RE: ~*All-In-One~Version1.9*~ - by Falkos - 23.04.2011, 20:36
RE: ~*All-In-One~Version1.9*~ - by Bettdecke1 - 23.04.2011, 20:48
RE: ~*All-In-One~Version1.9*~ - by Falkos - 23.04.2011, 20:54
RE: ~*All-In-One~Version1.9*~ - by k3v95 - 23.04.2011, 21:17
RE: ~*All-In-One~Version1.9*~ - by Hilfetrupp - 23.04.2011, 21:01
RE: ~*All-In-One~Version1.9*~ - by Falkos - 23.04.2011, 21:50
RE: ~*All-In-One~Version1.9*~ - by Bettdecke1 - 23.04.2011, 21:54
RE: ~*All-In-One~Version1.9*~ - by lolli1 - 23.04.2011, 22:41
RE: ~*All-In-One~Version1.9*~ - by Falkos - 23.04.2011, 23:14
RE: ~*All-In-One~Version1.9*~ - by Bettdecke1 - 23.04.2011, 23:15
RE: ~*All-In-One~Version1.9*~ - by Steffen - 24.04.2011, 10:49
RE: ~*All-In-One~Version1.9*~ - by Molt - 24.04.2011, 10:50
RE: ~*All-In-One~Version1.9*~ - by Falkos - 24.04.2011, 18:04
RE: ~*All-In-One~Version1.9*~ - by Steffen - 24.04.2011, 18:17
RE: ~*All-In-One~Version1.9*~ - by lolli1 - 24.04.2011, 18:19
RE: ~*All-In-One~Version1.9*~ - by Andi13 - 02.05.2011, 10:16
RE: ~*All-In-One~Version1.9*~ - by abbar-2 - 02.05.2011, 10:32
RE: ~*All-In-One~Version1.9*~ - by lolli1 - 02.05.2011, 14:53
RE: ~*All-In-One~Version1.9*~ - by Bettdecke1 - 02.05.2011, 15:08
RE: ~*All-In-One~Version1.9*~ - by ON21 - 30.05.2011, 10:02
RE: ~*All-In-One~Version1.9*~ - by k3v95 - 30.05.2011, 16:02
RE: ~*All-In-One~Version1.9*~ - by ON21 - 30.05.2011, 16:21
RE: ~*All-In-One~Version1.9*~ - by Yannici - 30.05.2011, 17:47
RE: ~*All-In-One~Version1.9*~ - by ON21 - 30.05.2011, 17:54
RE: ~*All-In-One~Version1.9*~ - by snake 9 - 31.05.2011, 12:27
RE: ~*All-In-One~Version1.9*~ - by lolli1 - 30.05.2011, 19:21
RE: ~*All-In-One~Version1.9*~ - by ON21 - 31.05.2011, 12:37
RE: ~*All-In-One~Version1.9*~ - by Bettdecke1 - 31.05.2011, 15:43
RE: ~*All-In-One~Version1.9*~ - by ON21 - 31.05.2011, 17:36
RE: ~*All-In-One~Version1.9*~ - by Bettdecke1 - 31.05.2011, 18:50
RE: ~*All-In-One~Version1.9*~ - by snake 9 - 31.05.2011, 19:24
RE: ~*All-In-One~Version1.9*~ - by Yannici - 31.05.2011, 19:34
RE: ~*All-In-One~Version1.9*~ - by snake 9 - 31.05.2011, 20:03
RE: ~*All-In-One~Version1.9*~ - by ON21 - 31.05.2011, 20:45
RE: ~*All-In-One~Version1.9*~ - by Yannici - 31.05.2011, 21:40
RE: ~*All-In-One~Version1.9*~ - by azia - 11.06.2011, 09:13
RE: ~*All-In-One~Version1.9*~ - by BafTac - 11.06.2011, 10:09
RE: ~*All-In-One~Version1.9*~ - by snake 9 - 12.06.2011, 09:33
RE: ~*All-In-One~Version1.9*~ - by Molt - 11.06.2011, 10:11
RE: ~*All-In-One~Version1.9*~ - by Bettdecke1 - 12.06.2011, 10:47
RE: ~*All-In-One~Version1.9*~ - by snake 9 - 12.06.2011, 11:50
RE: ~*All-In-One~Version1.9*~ - by Craigmaier - 19.06.2011, 19:25
RE: ~*All-In-One~Version1.9*~ - by Dsaddicted - 19.06.2011, 19:27
RE: ~*All-In-One~Version1.9*~ - by ON21 - 19.06.2011, 19:27
RE: ~*All-In-One~Version1.9*~ - by Craigmaier - 19.06.2011, 19:33
RE: ~*All-In-One~Version1.9*~ - by Dsaddicted - 19.06.2011, 19:49
RE: ~*All-In-One~Version1.9*~ - by Craigmaier - 19.06.2011, 19:55
RE: ~*All-In-One~Version1.9*~ - by ON21 - 19.06.2011, 20:14
RE: ~*All-In-One~Version1.9*~ - by Yannici - 19.06.2011, 20:15
RE: ~*All-In-One~Version1.9*~ - by Craigmaier - 19.06.2011, 20:15
RE: ~*All-In-One~Version1.9*~ - by Yannici - 19.06.2011, 20:17
RE: ~*All-In-One~Version1.9*~ - by Craigmaier - 19.06.2011, 20:28
RE: ~*All-In-One~Version1.9*~ - by Yannici - 19.06.2011, 20:34
RE: ~*All-In-One~Version1.9*~ - by Craigmaier - 19.06.2011, 20:38
RE: ~*All-In-One~Version1.9*~ - by Dsaddicted - 19.06.2011, 20:50
RE: ~*All-In-One~Version1.9*~ - by stef534 - 22.06.2011, 19:13
RE: ~*All-In-One~Version1.9*~ - by lolli1 - 22.06.2011, 19:22
RE: ~*All-In-One~Version1.9*~ - by stef534 - 22.06.2011, 19:34
RE: ~*All-In-One~Version1.9*~ - by Molt - 22.06.2011, 19:38
RE: ~*All-In-One~Version1.9*~ - by stef534 - 22.06.2011, 19:39
RE: ~*All-In-One~Version1.9*~ - by Molt - 22.06.2011, 19:40
RE: ~*All-In-One~Version1.9*~ - by Steffen - 22.06.2011, 20:00
RE: ~*All-In-One~Version1.9*~ - by snake 9 - 22.06.2011, 20:10
RE: ~*All-In-One~Version1.9*~ - by Yannici - 22.06.2011, 22:58
RE: ~*All-In-One~Version1.9*~ - by stef534 - 23.06.2011, 08:47
RE: ~*All-In-One~Version1.9*~ - by Steffen - 23.06.2011, 10:02
RE: ~*All-In-One~Version1.9*~ - by stef534 - 23.06.2011, 10:07
RE: ~*All-In-One~Version1.9*~ - by Steffen - 23.06.2011, 10:19
RE: ~*All-In-One~Version1.9*~ - by snake 9 - 23.06.2011, 10:34
RE: ~*All-In-One~Version1.9*~ - by stef534 - 23.06.2011, 10:49
RE: ~*All-In-One~Version1.9*~ - by Molt - 23.06.2011, 11:01
RE: ~*All-In-One~Version1.9*~ - by stef534 - 23.06.2011, 11:38
RE: ~*All-In-One~Version1.9*~ - by Molt - 23.06.2011, 12:09
RE: ~*All-In-One~Version1.9*~ - by snake 9 - 23.06.2011, 12:21
RE: ~*All-In-One~Version1.9*~ - by Molt - 23.06.2011, 12:45
RE: ~*All-In-One~Version1.9*~ - by stef534 - 23.06.2011, 12:52
RE: ~*All-In-One~Version1.9*~ - by Molt - 23.06.2011, 13:23
RE: ~*All-In-One~Version1.9*~ - by stef534 - 23.06.2011, 13:45
RE: ~*All-In-One~Version1.9*~ - by Yannici - 23.06.2011, 14:20
RE: ~*All-In-One~Version1.9*~ - by stef534 - 23.06.2011, 14:30
RE: ~*All-In-One~Version1.9*~ - by Steffen - 23.06.2011, 14:44
RE: ~*All-In-One~Version1.9*~ - by stef534 - 23.06.2011, 15:40
RE: ~*All-In-One~Version1.9*~ - by Steffen - 23.06.2011, 15:52
RE: ~*All-In-One~Version1.9*~ - by stef534 - 23.06.2011, 16:46
RE: ~*All-In-One~Version1.9*~ - by wolf123 - 15.07.2011, 09:13
RE: ~*All-In-One~Version1.9*~ - by snake 9 - 15.07.2011, 12:50
RE: ~*All-In-One~Version1.9*~ - by ON21 - 15.07.2011, 10:44
RE: ~*All-In-One~Version1.9*~ - by Molt - 15.07.2011, 15:26
RE: ~*All-In-One~Version1.9*~ - by Steffen - 05.08.2011, 21:11
RE: ~*All-In-One~Version1.9*~ - by Steffen - 06.08.2011, 10:18
RE: ~*All-In-One~Version1.9*~ - by ON21 - 06.08.2011, 11:59
RE: ~*All-In-One~Version1.9*~ - by lolli1 - 06.08.2011, 12:23
RE: ~*All-In-One~Version1.9*~ - by lolli1 - 06.08.2011, 15:33
RE: ~*All-In-One~Version1.9*~ - by lolli1 - 06.08.2011, 22:31
RE: ~*All-In-One~Version1.9*~ - by Molt - 10.08.2011, 11:46
RE: ~*All-In-One~Version1.9*~ - by Molt - 16.08.2011, 10:01
RE: ~*All-In-One~Version1.9*~ - by konfuzius - 17.08.2011, 00:54
RE: ~*All-In-One~Version1.9*~ - by ON21 - 17.08.2011, 01:06
RE: ~*All-In-One~Version1.9*~ - by konfuzius - 17.08.2011, 01:15
RE: ~*All-In-One~Version1.9*~ - by ON21 - 17.08.2011, 01:18
RE: ~*All-In-One~Version1.9*~ - by konfuzius - 17.08.2011, 01:24
RE: ~*All-In-One~Version1.9*~ - by ON21 - 17.08.2011, 01:35
RE: ~*All-In-One~Version1.9*~ - by konfuzius - 17.08.2011, 01:45
RE: ~*All-In-One~Version1.9*~ - by Dsaddicted - 17.08.2011, 21:22
RE: ~*All-In-One~Version1.9*~ - by konfuzius - 18.08.2011, 00:13
RE: ~*All-In-One~Version1.9*~ - by Dsaddicted - 18.08.2011, 00:54
RE: ~*All-In-One~Version1.9*~ - by Molt - 21.10.2011, 09:52
RE: ~*All-In-One~Version1.9*~ - by snake 9 - 21.10.2011, 18:11
RE: ~*All-In-One~Version1.9*~ - by HugoE - 24.10.2011, 15:30
RE: ~*All-In-One~Version1.9*~ - by Molt - 24.10.2011, 17:06
RE: ~*All-In-One~Version1.9*~ - by HugoE - 24.10.2011, 17:39
RE: ~*All-In-One~Version1.9*~ - by Molt - 24.10.2011, 19:16
RE: ~*All-In-One~Version1.9*~ - by HugoE - 25.10.2011, 22:49
RE: ~*All-In-One~Version1.9*~ - by Almarik_II - 27.10.2011, 17:08
RE: ~*All-In-One~Version1.9*~ - by Molt - 27.10.2011, 18:37
RE: ~*All-In-One~Version1.9*~ - by Almarik_II - 27.10.2011, 19:54
RE: ~*All-In-One~Version1.9*~ - by Bettdecke1 - 27.10.2011, 21:04
RE: ~*All-In-One~Version1.9*~ - by ON21 - 27.10.2011, 22:04
RE: ~*All-In-One~Version1.9*~ - by Almarik_II - 28.10.2011, 15:25
RE: ~*All-In-One~Version1.9*~ - by Bettdecke1 - 28.10.2011, 15:36
RE: ~*All-In-One~Version1.9*~ - by ON21 - 28.10.2011, 15:41
RE: ~*All-In-One~Version1.9*~ - by Molt - 28.10.2011, 18:35
RE: ~*All-In-One~Version1.9*~ - by tiki - 26.11.2011, 11:34
RE: ~*All-In-One~Version1.9*~ - by ON21 - 27.11.2011, 05:16
RE: ~*All-In-One~Version1.9*~ - by Molt - 27.11.2011, 14:23
RE: ~*All-In-One~Version1.9*~ - by Molt - 26.11.2011, 13:08
RE: ~*All-In-One~Version1.9*~ - by tiki - 26.11.2011, 13:37
RE: ~*All-In-One~Version1.9*~ - by ON21 - 26.11.2011, 14:29
RE: ~*All-In-One~Version1.9*~ - by tiki - 26.11.2011, 21:58
RE: ~*All-In-One~Version1.9*~ - by ON21 - 26.11.2011, 23:00
RE: ~*All-In-One~Version1.9*~ - by Dsaddicted - 27.11.2011, 00:59
RE: ~*All-In-One~Version1.9*~ - by tiki - 27.11.2011, 09:03
RE: ~*All-In-One~Version1.9*~ - by Molt - 27.11.2011, 10:36
RE: ~*All-In-One~Version1.9*~ - by tiki - 27.11.2011, 12:48
RE: ~*All-In-One~Version1.9*~ - by Molt - 27.11.2011, 13:30
RE: ~*All-In-One~Version1.9*~ - by tiki - 27.11.2011, 13:34
RE: ~*All-In-One~Version1.9*~ - by Molt - 05.12.2011, 17:52
RE: ~*All-In-One~Version1.9*~ - by Johari - 05.12.2011, 18:29
RE: ~*All-In-One~Version1.9*~ - by snake 9 - 06.12.2011, 09:44
RE: ~*All-In-One~Version1.9*~ - by Bettdecke1 - 08.12.2011, 16:47
RE: ~*All-In-One~Version1.9*~ - by hate2luve - 06.01.2012, 16:34
RE: ~*All-In-One~Version1.9*~ - by snake 9 - 06.01.2012, 20:04
RE: ~*All-In-One~Version1.9*~ - by Bettdecke1 - 07.01.2012, 01:50
RE: ~*All-In-One~Version1.9*~ - by Molt - 07.01.2012, 12:46
RE: ~*All-In-One~Version1.9*~ - by snake 9 - 07.01.2012, 16:13
RE: ~*All-In-One~Version1.9*~ - by Dsaddicted - 28.12.2011, 21:40
RE: ~*All-In-One~Version1.9*~ - by snake 9 - 29.12.2011, 21:11
RE: ~*All-In-One~Version1.9*~ - by ON21 - 29.12.2011, 22:30
RE: ~*All-In-One~Version1.9*~ - by Bettdecke1 - 30.12.2011, 02:30
RE: ~*All-In-One~Version1.9*~ - by ON21 - 30.12.2011, 16:36
RE: ~*All-In-One~Version1.9*~ - by Bettdecke1 - 30.12.2011, 23:53
RE: ~*All-In-One~Version1.9*~ - by Dsaddicted - 31.12.2011, 00:47
RE: ~*All-In-One~Version1.9*~ - by snake 9 - 31.12.2011, 17:49
RE: ~*All-In-One~Version1.9*~ - by ON21 - 06.01.2012, 21:20
RE: ~*All-In-One~Version1.9*~ - by snake 9 - 07.01.2012, 15:13
RE: ~*All-In-One~Version1.9*~ - by Molt - 07.01.2012, 21:36
RE: ~*All-In-One~Version1.9*~ - by snake 9 - 08.01.2012, 15:52
RE: ~*All-In-One~Version1.9*~ - by MisterPr0 - 09.01.2012, 14:13
RE: ~*All-In-One~Version1.9*~ - by snake 9 - 11.01.2012, 18:15
RE: ~*All-In-One~Version1.9*~ - by MisterPr0 - 11.01.2012, 19:10
RE: ~*All-In-One~Version1.9*~ - by Molt - 29.01.2012, 09:29
RE: ~*All-In-One~Version1.9*~ - by Molt - 29.01.2012, 09:48
RE: ~*All-In-One~Version1.9*~ - by Molt - 03.02.2012, 07:58
RE: ~*All-In-One~Version1.9*~ - by Dummknopf - 06.02.2012, 13:12
RE: ~*All-In-One~Version1.9*~ - by Dummknopf - 06.02.2012, 17:40
RE: ~*All-In-One~Version1.9*~ - by snake 9 - 07.02.2012, 20:42
RE: ~*All-In-One~Version1.9*~ - by ON21 - 15.02.2012, 17:14
RE: ~*All-In-One~Version1.9*~ - by Molt - 17.02.2012, 23:05
RE: ~*All-In-One~Version1.9*~ - by Molt - 30.03.2012, 10:57
RE: ~*All-In-One~Version1.9*~ - by Molt - 19.02.2012, 22:37
RE: ~*All-In-One~Version1.9*~ - by sellem3 - 21.02.2012, 23:07
RE: ~*All-In-One~Version1.9*~ - by burakbir - 14.03.2012, 01:07
RE: ~*All-In-One~Version1.9*~ - by snake 9 - 16.03.2012, 20:39
RE: ~*All-In-One~Version1.9*~ - by Molt - 16.03.2012, 11:33
RE: ~*All-In-One~Version1.9*~ - by Molt - 30.03.2012, 17:32
RE: ~*All-In-One~Version1.9*~ - by ON21 - 30.03.2012, 21:15
RE: ~*All-In-One~Version1.9*~ - by ON21 - 31.03.2012, 08:12
RE: ~*All-In-One~Version1.9*~ - by jiremek - 03.04.2012, 14:30
RE: ~*All-In-One~Version1.9*~ - by jiremek - 05.04.2012, 14:25
RE: ~*All-In-One~Version1.9*~ - by Molt - 11.04.2012, 16:34
RE: ~*All-In-One~Version1.9*~ - by Molt - 11.04.2012, 18:32
RE: ~*All-In-One~Version1.9*~ - by jiremek - 18.04.2012, 18:34
RE: ~*All-In-One~Version1.9*~ - by ON21 - 02.05.2012, 17:18
RE: ~*All-In-One~Version1.9*~ - by Molt - 03.05.2012, 14:41
RE: ~*All-In-One~Version1.9*~ - by jiremek - 07.05.2012, 00:30
RE: ~*All-In-One~Version1.9*~ - by Molt - 07.05.2012, 16:54
RE: ~*All-In-One~Version1.9*~ - by INobody - 18.05.2012, 09:57
RE: ~*All-In-One~Version1.9*~ - by Steffen - 19.05.2012, 13:07
RE: ~*All-In-One~Version1.9*~ - by INobody - 19.05.2012, 15:40
RE: ~*All-In-One~Version1.9*~ - by INobody - 19.05.2012, 16:07
RE: ~*All-In-One~Version1.9*~ - by Molt - 19.05.2012, 17:49
RE: ~*All-In-One~Version1.9*~ - by INobody - 19.05.2012, 16:49
RE: ~*All-In-One~Version1.9*~ - by INobody - 19.05.2012, 17:44
RE: ~*All-In-One~Version1.9*~ - by Steffen - 19.05.2012, 17:47
RE: ~*All-In-One~Version1.9*~ - by INobody - 19.05.2012, 17:48
RE: ~*All-In-One~Version1.9*~ - by INobody - 19.05.2012, 19:34
RE: ~*All-In-One~Version1.9*~ - by snake 9 - 23.05.2012, 12:57
RE: ~*All-In-One~Version1.9*~ - by snake 9 - 23.05.2012, 14:02
RE: ~*All-In-One~Version1.9*~ - by Domi95 - 23.05.2012, 15:09
RE: ~*All-In-One~Version1.9*~ - by ON21 - 12.06.2012, 21:59
RE: ~*All-In-One~Version1.9*~ - by Domi95 - 21.06.2012, 19:23
RE: ~*All-In-One~Version1.9*~ - by lololo - 26.06.2012, 20:03
RE: ~*All-In-One~Version1.9*~ - by lololo - 26.06.2012, 21:12
RE: ~*All-In-One~Version1.9*~ - by lololo - 26.06.2012, 21:30
RE: ~*All-In-One~Version1.9*~ - by lololo - 27.06.2012, 06:29
RE: ~*All-In-One~Version1.9*~ - by lololo - 27.06.2012, 14:40
RE: ~*All-In-One~Version1.9*~ - by lololo - 27.06.2012, 19:17
RE: ~*All-In-One~Version1.9*~ - by Molt - 27.06.2012, 19:43
RE: ~*All-In-One~Version1.9*~ - by ON21 - 11.07.2012, 10:28
RE: ~*All-In-One~Version1.9*~ - by snake 9 - 28.07.2012, 20:36
RE: ~*All-In-One~Version1.9*~ - by ON21 - 29.07.2012, 10:32
RE: ~*All-In-One~Version1.9*~ - by snake 9 - 30.07.2012, 10:30
RE: ~*All-In-One~Version1.9*~ - by cakeman - 05.09.2012, 10:22
RE: ~*All-In-One~Version1.9*~ - by Tyhck - 05.09.2012, 14:02
RE: ~*All-In-One~Version1.9*~ - by Tyhck - 05.09.2012, 14:16
RE: ~*All-In-One~Version1.9*~ - by snake 9 - 05.09.2012, 20:03
RE: ~*All-In-One~Version1.9*~ - by sickst3r - 05.09.2012, 22:57
RE: ~*All-In-One~Version1.9*~ - by snake 9 - 06.09.2012, 12:07
RE: ~*All-In-One~Version1.9*~ - by Tyhck - 06.09.2012, 00:15
RE: ~*All-In-One~Version1.9*~ - by Molt - 07.09.2012, 20:29
RE: ~*All-In-One~Version1.9*~ - by Domi95 - 06.09.2012, 06:59
RE: ~*All-In-One~Version1.9*~ - by Tyhck - 06.09.2012, 07:12
RE: ~*All-In-One~Version1.9*~ - by snake 9 - 07.09.2012, 10:48
RE: ~*All-In-One~Version1.9*~ - by Domi95 - 07.09.2012, 18:25
RE: ~*All-In-One~Version1.9*~ - by cakeman - 09.09.2012, 20:32
RE: ~*All-In-One~Version1.9*~ - by Tyhck - 10.09.2012, 00:41
RE: ~*All-In-One~Version1.9*~ - by derrene23 - 15.09.2012, 04:17
RE: ~*All-In-One~Version1.9*~ - by Molt - 15.09.2012, 07:42
RE: ~*All-In-One~Version1.9*~ - by ON21 - 15.09.2012, 21:27
RE: ~*All-In-One~Version1.9*~ - by derrene23 - 16.09.2012, 08:00
RE: ~*All-In-One~Version1.9*~ - by Jonsn - 16.09.2012, 09:59
RE: ~*All-In-One~Version1.9*~ - by snake 9 - 16.09.2012, 09:48
RE: ~*All-In-One~Version1.9*~ - by rodrigo - 23.10.2012, 13:18
RE: ~*All-In-One~Version1.9*~ - by ON21 - 23.10.2012, 19:35
RE: ~*All-In-One~Version1.9*~ - by rechdan - 16.11.2012, 20:29
RE: ~*All-In-One~Version1.9*~ - by ON21 - 16.11.2012, 21:00
RE: ~*All-In-One~Version1.9*~ - by Molt - 16.11.2012, 21:00
RE: ~*All-In-One~Version1.9*~ - by rechdan - 16.11.2012, 21:08
RE: ~*All-In-One~Version1.9*~ - by Molt - 16.11.2012, 21:27
RE: ~*All-In-One~Version1.9*~ - by Destaaa - 17.11.2012, 22:53
RE: ~*All-In-One~Version1.9*~ - by ON21 - 17.11.2012, 22:56
RE: ~*All-In-One~Version1.9*~ - by Destaaa - 18.11.2012, 01:29
RE: ~*All-In-One~Version1.9*~ - by ON21 - 18.11.2012, 12:10
RE: ~*All-In-One~Version1.9*~ - by portuges23 - 30.11.2012, 18:52
RE: ~*All-In-One~Version1.9*~ - by Zareko - 02.12.2012, 15:06
RE: ~*All-In-One~Version1.9*~ - by Molt - 02.12.2012, 16:42
RE: ~*All-In-One~Version1.9*~ - by macs - 12.12.2012, 21:43
RE: ~*All-In-One~Version1.9*~ - by Molt - 13.12.2012, 13:11
RE: ~*All-In-One~Version1.9*~ - by macs - 13.12.2012, 15:34
RE: ~*All-In-One~Version1.9*~ - by funnymoney - 13.12.2012, 20:35
RE: ~*All-In-One~Version1.9*~ - by portuges23 - 13.12.2012, 21:29
RE: ~*All-In-One~Version1.9*~ - by snake 9 - 24.03.2013, 09:00
RE: ~*All-In-One~Version1.9*~ - by Molt - 24.03.2013, 10:16
RE: ~*All-In-One~Version1.9*~ - by snake 9 - 24.03.2013, 11:28
RE: ~*All-In-One~Version1.9*~ - by Molt - 24.03.2013, 12:01
RE: ~*All-In-One~Version1.9*~ - by ON21 - 30.03.2013, 11:53
RE: ~*All-In-One~Version1.9*~ - by ON21 - 30.03.2013, 15:40
RE: ~*All-In-One~Version1.9*~ - by snake 9 - 31.03.2013, 15:58
RE: ~*All-In-One~Version1.9*~ - by snake 9 - 02.04.2013, 11:21
RE: ~*All-In-One~Version1.9*~ - by Molt - 02.04.2013, 18:28
RE: ~*All-In-One~Version1.9*~ - by snake 9 - 02.04.2013, 20:27
RE: ~*All-In-One~Version1.9*~ - by Phisa - 13.04.2013, 13:19
RE: ~*All-In-One~Version1.9*~ - by ON21 - 01.05.2013, 18:08
RE: ~*All-In-One~Version1.9*~ - by ceetje123 - 02.01.2015, 14:59
RE: ~*All-In-One~Version1.9*~ - by Molt - 02.01.2015, 15:50
RE: ~*All-In-One~Version1.9*~ - by ceetje123 - 02.01.2015, 15:57
RE: ~*All-In-One~Version1.9*~ - by Molt - 02.01.2015, 19:03
RE: ~*All-In-One~Version1.9*~ - by ceetje123 - 02.01.2015, 20:12
RE: ~*All-In-One~Version1.9*~ - by Molt - 03.01.2015, 14:35
RE: ~*All-In-One~Version1.9*~ - by ceetje123 - 03.01.2015, 16:28
RE: ~*All-In-One~Version1.9*~ - by Molt - 03.01.2015, 20:28
RE: ~*All-In-One~Version1.9*~ - by ceetje123 - 03.01.2015, 20:38
RE: ~*All-In-One~Version1.9*~ - by Molt - 03.01.2015, 20:51
RE: ~*All-In-One~Version1.9*~ - by ceetje123 - 03.01.2015, 21:02
RE: ~*All-In-One~Version1.9*~ - by Molt - 03.01.2015, 22:01
RE: ~*All-In-One~Version1.9*~ - by ceetje123 - 03.01.2015, 22:50
RE: ~*All-In-One~Version1.9*~ - by ceetje123 - 04.01.2015, 13:00
RE: ~*All-In-One~Version1.9*~ - by 0xEAB - 08.05.2015, 22:46
RE: ~*All-In-One~Version1.9*~ - by crounz - 03.03.2016, 17:52
RE: ~*All-In-One~Version1.9*~ - by Molt - 03.03.2016, 18:18
RE: ~*All-In-One~Version1.9*~ - by crounz - 03.03.2016, 18:29
RE: ~*All-In-One~Version1.9*~ - by crounz - 03.03.2016, 18:32
RE: ~*All-In-One~Version1.9*~ - by Milu2K - 03.03.2016, 21:22
RE: ~*All-In-One~Version1.9*~ - by crounz - 04.03.2016, 15:56
RE: ~*All-In-One~Version1.9*~ - by 0xEAB - 04.03.2016, 21:41
RE: ~*All-In-One~Version1.9*~ - by crounz - 05.03.2016, 19:38
RE: ~*All-In-One~Version1.9*~ - by 0xEAB - 07.03.2016, 00:04
RE: ~*All-In-One~Version1.9*~ - by Molt - 06.04.2016, 18:20
RE: ~*All-In-One~Version1.9*~ - by Molt - 07.04.2016, 17:24
RE: ~*All-In-One~Version1.9*~ - by Molt - 08.04.2016, 14:08
RE: ~*All-In-One~Version1.9*~ - by 0xEAB - 08.04.2016, 21:25
RE: ~*All-In-One~Version1.9*~ - by Jujan - 16.08.2017, 10:35
RE: ~*All-In-One~Version1.9*~ - by 0xEAB - 18.08.2017, 07:24
RE: ~*All-In-One~Version1.9*~ - by Jujan - 18.08.2017, 15:11



Users browsing this thread: 2 Guest(s)