Version 1.5

This commit is contained in:
nemunaire 2008-11-30 12:00:00 +01:00
commit a66ed9797b
157 changed files with 29787 additions and 3531 deletions

1
includes/.htaccess Normal file
View file

@ -0,0 +1 @@
Deny from all

View file

@ -4,10 +4,10 @@ if(!defined('INDEX')) { header('Location: ../'); exit; }
define("_FCORE",$_SERVER["DOCUMENT_ROOT"].'/includes/onyx/');
define("_FDIR",'hbn');
define('VERSION', '1.2');
define('VERSION', '1.5');
//Constante permettant de savoir si les attaques sont désactivées ou non
define("ATTAQUES", false);
define("ATTAQUES", true);
//Définition des limites de la galaxie
define("MAX_AMAS", 10);
define("MAX_SYSTEME", 99);
@ -67,5 +67,15 @@ var pageTracker = _gat._getTracker("UA-3544473-3");
pageTracker._initData();
pageTracker._trackPageview();
</script>
');
?>
<script type="text/javascript">
<!--
xtnv = document; //parent.document or top.document or document
xtsd = "http://logi2";
xtsite = "58399";
xtn2 = "3"; // level 2 site
xtpage = ""; //page name (with the use of :: to create chapters)
xtdi = ""; //implication degree
//-->
</script>
<script type="text/javascript" src="http://www.monsite.fr/xtcore.js"></script>');
?>

View file

@ -20,32 +20,44 @@ $Hgalaxie = $queryPlanete["galaxie"];
$Hss = $queryPlanete["ss"];
$Hposition = $queryPlanete["position"];
$table = $config['db_prefix'].'flottes';
$req = $chapeau->query("SELECT * FROM `$table` WHERE `id_user` = '$id_user' OR (`end_galaxie` = '$Hgalaxie' AND `end_ss` = '$Hss' AND `end_position` = '$Hposition')");
for ($i=0 ; $i<$chapeau->num_rows ; $i++) {
$resultat = $req[$i];
$id_flotte = $resultat['id'];
$mission = $resultat['mission'];
$end_galaxie = $resultat['end_galaxie'];
$end_ss = $resultat['end_ss'];
$end_position = $resultat['end_position'];
$temps = $resultat['start_time'] + $resultat['end_time'];
if ($resultat['effectue'] != 1 && time() >= $resultat['start_time'] + $resultat['end_time'] && !empty($resultat['end_time'])) {
$queryFlottes = $chapeau->query("SELECT * FROM `$table_flottes` WHERE `id_user` = '$id_user' OR (`end_galaxie` = '$Hgalaxie' AND `end_ss` = '$Hss' AND `end_position` = '$Hposition')");
$nbFlottes = $chapeau->num_rows;
for ($i = 0; $i < $nbFlottes; $i++) {
//Récupération des principales variables de la flotte
$id_user = $queryFlottes[$i]['id_user'];
$id_flotte = $queryFlottes[$i]['id'];
$mission = $queryFlottes[$i]['mission'];
$end_galaxie = $queryFlottes[$i]['end_galaxie'];
$end_ss = $queryFlottes[$i]['end_ss'];
$end_position = $queryFlottes[$i]['end_position'];
$temps = $queryFlottes[$i]['start_time'] + $queryFlottes[$i]['end_time'];
//La flotte est prête a effectuer une action
if ($queryFlottes[$i]['effectue'] != 1 && time() >= $queryFlottes[$i]['start_time'] + $queryFlottes[$i]['end_time'] && !empty($queryFlottes[$i]['end_time'])) {
//Mission attaquer
if ($mission == 1) {
require_once('Class/class.combat.php');
$table = $config['db_prefix'].'planete';
$resultatT = $chapeau->unique_query("SELECT `debris_met`, `debris_cri` FROM `$table` WHERE `galaxie` = '$end_galaxie' AND `ss` = '$end_ss' AND `position` = '$end_position'");
//Chargement des données du joueur attaqué : EN...
$planeteEN = $chapeau->unique_query("SELECT * FROM `$table_planete` WHERE `galaxie` = '$end_galaxie' AND `ss` = '$end_ss' AND `position` = '$end_position'");
$ENidPlan = $planeteEN['id'];
if ($resultat['effectue'] == 2) {
$table = $config['db_prefix'].'flottes_combats';
$resultatC = $chapeau->unique_query("SELECT * FROM `$table` WHERE `refflotte` = '$id_flotte'");
if (!$resultatC) die('Erreur dans le script de combat, <a href="mailto:admin@halo-battle.s-fr.com">contactez d\'urgence un administrateur</a> !');
//Le combat existe déjà, la flotte était placée en attente
if ($queryFlottes[$i]['effectue'] == 2) {
//Recherche de la flotte
$resultatC = $chapeau->unique_query("SELECT * FROM `$table_flottes_combats` WHERE `refflotte` = '$id_flotte';");
//La flotte n'a pas été trouvée dans la BDD : impossible
if (!$resultatC) die('Erreur dans le script de combat, <a href="mailto:admin@halo-battle.s-fr.com">contactez d\'urgence un administrateur</a> !');
//Il est temps de passer au tour suivant !
if (time() >= $resultatC['timestamp']) {
//On récupère le combat
$combat = unserialize($resultatC['serialize']);
//On prépare les rapports de combats
$rapport = new Rapport($mission, $queryFlottes[$i]['id_user'], $planeteEN['id_user'], $combat->timestamp);
//Mise à jour des tactiques
if (!empty($resultatC['tactiqueAT'])) $combat->changerTactiqueAT($resultatC['tactiqueAT']);
if (!empty($resultatC['tactiqueEN'])) $combat->changerTactiqueEN($resultatC['tactiqueEN']);
@ -53,41 +65,55 @@ for ($i=0 ; $i<$chapeau->num_rows ; $i++) {
while($combat->timestamp <= time()) {
//On passe le tour
$combat->Ntour++;
$rapport->addInfo($combat->ATvais, 0);
$rapport->addInfo($combat->ENvais, 1);
$rapport->addInfo($combat->ENdef, 2);
$rapport->addInfo($combat->Ntour, 3);
$rapport->addInfo($planeteEN, 4);
$rapport->addInfo($queryFlottes[$i], 5);
//Détermine qui est le tour : attaquant ou défenseur
if (floor($combat->Ntour/2) == $combat->Ntour/2) { //Le tour est paire : tour attaquant
$arraytactique = tactique($combat->ATtactique);
if (@$combat->attaquerVais($combat->calcAttaque($arraytactique[2] + $combat->regenereBC($arraytactique[1], true, !$arraytactique[3]), true), true) == 0) { //Attaquant vainceur
mysql_query("DELETE FROM `flottes_combats` WHERE `refflotte` = '$id_flotte'");
mysql_query("UPDATE `flottes` SET ".$combat->exportAT(true).", `effectue` = '1', `ret_time` = ".$combat->timestamp." WHERE `id` = '$id_flotte'");
mysql_query("UPDATE `planete` SET ".$combat->exportEN()." WHERE `galaxie` = '$end_galaxie' AND `ss` = '$end_ss' AND `position` = '$end_position'");
$send = $combat->genRapport(true, true);
$chapeau->query("DELETE FROM `$table_flottes_combats` WHERE `refflotte` = '$id_flotte'");
$chapeau->query("UPDATE `$table_flottes` SET ".$combat->exportAT(true).", `effectue` = '1', `ret_time` = ".$combat->timestamp." WHERE `id` = '$id_flotte';");
$chapeau->query("UPDATE `$table_planete` SET ".$combat->exportEN().", `metal` = `metal` - '".$combat->vaisContenuM."', `cristal` = `cristal` - '".$combat->vaisContenuC."', `hydrogene` = `hydrogene` - '".$combat->vaisContenuH."' WHERE `id` = '$ENidPlan';");
$rapport->addInfo(array(true, true), 6);
}
else $send = $combat->genRapport(false);
else $rapport->addInfo(array(false, false), 6);
$rapport->addInfo($combat->ATvais, 7);
$rapport->addInfo($combat->ENvais, 8);
$rapport->addInfo($combat->ENdef, 9);
}
else { //Le tour est impaire : tour défenseur
$arraytactique = tactique($combat->ENtactique);
if (@$combat->attaquerVais($combat->calcAttaque($arraytactique[2] + $combat->regenereBC($arraytactique[1], false, !$arraytactique[3]), false), false) == 0) { //Défenseur vainceur
mysql_query("DELETE FROM `flottes_combats` WHERE `refflotte` = '$id_flotte'");
mysql_query("DELETE FROM `flottes` WHERE `id` = '$id_flotte'");
mysql_query("UPDATE `planete` SET ".$combat->exportEN()." WHERE `galaxie` = '$end_galaxie' AND `ss` = '$end_ss' AND `position` = '$end_position'");
$send = $combat->genRapport(true, false);
$chapeau->query("DELETE FROM `$table_flottes_combats` WHERE `refflotte` = '$id_flotte';");
$chapeau->query("DELETE FROM `$table_flottes` WHERE `id` = '$id_flotte'");
$chapeau->query("UPDATE `$table_planete` SET ".$combat->exportEN()." WHERE `id` = '$ENidPlan';");
$rapport->addInfo(array(true, false), 6);
}
else $send = $combat->genRapport(false);
}
else $rapport->addInfo(array(false, false), 6);
//On envoie les rapports aux joueurs concernés
$temps = $combat->timestamp;
mysql_query("INSERT INTO `mail` VALUES(NULL, '1', '".trouvNom($send[2])."', '', 'Combat', '".$send[0]."', '$temps')") or die ("erreur sql ".mysql_error());
mysql_query("INSERT INTO `mail` VALUES(NULL, '1', '".trouvNom($send[3])."', '', 'Combat', '".$send[1]."', '$temps')") or die ("erreur sql ".mysql_error());
$rapport->addInfo($combat->ATvais, 7);
$rapport->addInfo($combat->ENvais, 8);
$rapport->addInfo($combat->ENdef, 9);
}
//Prévision du prochain tour
$combat->timestamp += 300;
$rapport->addInfo($combat->timestamp, 10);
$rapport->addInfo(array($combat->vaisContenuM, $combat->vaisContenuC, $combat->vaisContenuH), 11);
//On envoie les rapports aux joueurs concernés
$rapport->send();
}
$timestamp_suite = $combat->timestamp;
$debriM = $combat->debriM + $resultatT['debris_met'];
$debriC = $combat->debriC + $resultatT['debris_cri'];
$debriM = $combat->debriM + $planeteEN['debris_met'];
$debriC = $combat->debriC + $planeteEN['debris_cri'];
$combat->debriM = 0;
$combat->debriC = 0;
@ -96,54 +122,61 @@ for ($i=0 ; $i<$chapeau->num_rows ; $i++) {
$serialise = serialize($combat);
//On enregistre le combat dans la base de données
mysql_query("UPDATE `flottes_combats` SET `serialize` = '$serialise', `tactiqueAT` = '0', `tactiqueEN` = '0', `timestamp` = '$timestamp_suite' WHERE `refflotte` = '$id_flotte'");
mysql_query("UPDATE `planete` SET `debris_met` = '$debriM', `debris_cri` = '$debriC' WHERE `galaxie` = '$end_galaxie' AND `ss` = '$end_ss' AND `position` = '$end_position'");
$chapeau->query("UPDATE `$table_flottes_combats` SET `serialize` = '$serialise', `tactiqueAT` = '0', `tactiqueEN` = '0', `timestamp` = '$timestamp_suite' WHERE `refflotte` = '$id_flotte'");
$chapeau->query("UPDATE `$table_planete` SET `debris_met` = '$debriM', `debris_cri` = '$debriC' WHERE `galaxie` = '$end_galaxie' AND `ss` = '$end_ss' AND `position` = '$end_position'");
}
}
else {
//On place la flotte en attente
$table = $config['db_prefix'].'flottes';
$chapeau->query("UPDATE `$table` SET `effectue` = '2' WHERE `id` = '$id_flotte'");
//On trouve les variables nécessaire pour le combat : vaisseaux, défenses, ...
$table = $config['db_prefix'].'planete';
$resultatDef = $chapeau->unique_query("SELECT * FROM `$table` WHERE `galaxie` = '$end_galaxie' AND `ss` = '$end_ss' AND `position` = '$end_position'");
$resultatDef = $chapeau->unique_query("SELECT * FROM `$table_planete` WHERE `galaxie` = '$end_galaxie' AND `ss` = '$end_ss' AND `position` = '$end_position'");
//On déclare le combat
$combat = new Combat($resultat, $resultatDef, $resultatDef);
$combat = new Combat($queryFlottes[$i], $resultatDef, $resultatDef);
//On prépare les rapports de combats
$rapport = new Rapport($mission, $queryFlottes[$i]['id_user'], $planeteEN['id_user'], $combat->timestamp);
//Définition des tactiques par défaut pour les deux combatants
$table = $config['db_prefix'].'user';
$resultatU = $chapeau->unique_query("SELECT `combatAT_tactique` FROM `$table_user` WHERE `id` = '".$queryFlottes[$i]['id_user']."'");
if (empty($queryFlottes[$i]['tactiqueAT'])) $combat->changerTactiqueAT($resultatU['combatAT_tactique']);
else $combat->changerTactiqueAT($queryFlottes[$i]['tactiqueAT']);
$resultatU = $chapeau->unique_query("SELECT `combatAT_tactique` FROM `$table` WHERE `id` = '".$resultat['id_user']."'");
if (empty($resultat['tactiqueAT'])) $combat->changerTactiqueAT($resultatU['combatAT_tactique']);
else $combat->changerTactiqueAT($resultat['tactiqueAT']);
$resultatU = $chapeau->query("SELECT combatDE_tactique FROM `$table_user` WHERE `id` = '".$resultatDef['id_user']."'");
if (empty($queryFlottes[$i]['tactiqueEN'])) $combat->changerTactiqueEN($resultatU['combatDE_tactique']);
else $combat->changerTactiqueEN($queryFlottes[$i]['tactiqueEN']);
$resultatU = mysql_query("SELECT combatDE_tactique FROM `$table` WHERE `id` = '".$resultatDef['id_user']."'");
if (empty($resultat['tactiqueEN'])) $combat->changerTactiqueEN($resultatU['combatDE_tactique']);
else $combat->changerTactiqueEN($resultat['tactiqueEN']);
$rapport->addInfo($combat->ATvais, 0);
$rapport->addInfo($combat->ENvais, 1);
$rapport->addInfo($combat->ENdef, 2);
$rapport->addInfo($combat->Ntour, 3);
$rapport->addInfo($resultatDef, 4);
$rapport->addInfo($queryFlottes[$i], 5);
//Lancement de l'attaque
if (@$combat->attaquerVais($combat->calcAttaque(100,true),true) == 0) { //Attaquant vainceur
mysql_query("DELETE FROM `flottes_combats` WHERE `refflotte` = '$id_flotte'");
mysql_query("UPDATE `flottes` SET ".$combat->exportAT(true).", `effectue` = '1', `ret_time` = ".$combat->timestamp." WHERE `id` = '$id_flotte'");
mysql_query("UPDATE `planete` SET ".$combat->exportEN()." WHERE `galaxie` = '$end_galaxie' AND `ss` = '$end_ss' AND `position` = '$end_position'");
$send = $combat->genRapport(true, true);
$chapeau->query("DELETE FROM `$table_flottes_combats` WHERE `refflotte` = '$id_flotte'");
$chapeau->query("UPDATE `$table_flottes` SET ".$combat->exportAT(true).", `effectue` = '1', `ret_time` = ".$combat->timestamp." WHERE `id` = '$id_flotte'");
$chapeau->query("UPDATE `$table_planete` SET ".$combat->exportEN().", `metal` = `metal` - '".$combat->vaisContenuM."', `cristal` = `cristal` - '".$combat->vaisContenuC."', `hydrogene` = `hydrogene` - '".$combat->vaisContenuH."' WHERE `id` = '$ENidPlan';");
$rapport->addInfo(array(true, true), 6);
$effect = false;
}
else {
$rapport->addInfo(array(false, false), 6);
$effect = true;
}
else $send = $combat->genRapport(false);
//On envoie les rapports aux joueurs concernés
$temps = $combat->timestamp;
mysql_query("INSERT INTO `mail` VALUES(NULL, '1', '".trouvNom($send[2])."', '', 'Combat', '".$send[0]."', '$temps')");
mysql_query("INSERT INTO `mail` VALUES(NULL, '1', '".trouvNom($send[3])."', '', 'Combat', '".$send[1]."', '$temps')");
$rapport->addInfo($combat->ATvais, 7);
$rapport->addInfo($combat->ENvais, 8);
$rapport->addInfo($combat->ENdef, 9);
//Prévision du prochain tour
$combat->timestamp += 300;
$timestamp_suite = $combat->timestamp;
$rapport->addInfo($combat->timestamp, 10);
$rapport->addInfo(array($combat->vaisContenuM, $combat->vaisContenuC, $combat->vaisContenuH), 11);
$debriM = $combat->debriM + $resultatT['debris_met'];
$debriC = $combat->debriC + $resultatT['debris_cri'];
$debriM = $combat->debriM + $planeteEN['debris_met'];
$debriC = $combat->debriC + $planeteEN['debris_cri'];
$combat->debriM = 0;
$combat->debriC = 0;
@ -151,37 +184,37 @@ for ($i=0 ; $i<$chapeau->num_rows ; $i++) {
//On sérialise la classe pour l'exporter
$serialise = serialize($combat);
//On envoie les rapports aux joueurs concernés
$rapport->send();
//On enregistre le combat dans la base de données
mysql_query("INSERT INTO `flottes_combats` VALUES(NULL, '".$resultat['id']."', '$timestamp_suite', '$serialise', '0', '0')");
mysql_query("UPDATE `planete` SET `debris_met` = '$debriM', `debris_cri` = '$debriC' WHERE `galaxie` = '$end_galaxie' AND `ss` = '$end_ss' AND `position` = '$end_position'");
$chapeau->query("INSERT INTO `$table_flottes_combats` VALUES(NULL, '".$queryFlottes[$i]['id']."', '$timestamp_suite', '$serialise', '0', '0');");
if ($effect) $chapeau->query("UPDATE `$table_flottes` SET `effectue` = '2' WHERE `id` = '$id_flotte';");
$chapeau->query("UPDATE `$table_planete` SET `debris_met` = '$debriM', `debris_cri` = '$debriC' WHERE `galaxie` = '$end_galaxie' AND `ss` = '$end_ss' AND `position` = '$end_position';");
}
}
//Mission Transporter
elseif ($mission == 2) {
$table = $config['db_prefix'].'planete';
$resultatT = $chapeau->unique_query("SELECT `metal`, `cristal`, `hydrogene` FROM `$table` WHERE `galaxie` = '$end_galaxie' AND `ss` = '$end_ss' AND `position` = '$end_position'");
$Cmetal = $resultat['contenu_metal'] + $resultatT['metal'];
$Ccristal = $resultat['contenu_cristal'] + $resultatT['cristal'];
$Chydrogene = $resultat['contenu_hydrogene'] + $resultatT['hydrogene'];
$table = $config['db_prefix'].'planete';
$chapeau->query("UPDATE `$table` SET `metal` = '$Cmetal', `cristal` = '$Ccristal', `hydrogene` = '$Chydrogene' WHERE `galaxie` = '$end_galaxie' AND `ss` = '$end_ss' AND `position` = '$end_position'");
$table = $config['db_prefix'].'flottes';
$chapeau->query("UPDATE `$table` SET `effectue` = '1', `contenu_metal` = '0', `contenu_cristal` = '0', `contenu_hydrogene` = '0' WHERE `id` = '$id_flotte'");
$planeteEN = $chapeau->unique_query("SELECT `metal`, `cristal`, `hydrogene` FROM `$table_planete` WHERE `galaxie` = '$end_galaxie' AND `ss` = '$end_ss' AND `position` = '$end_position'");
$Cmetal = $queryFlottes[$i]['contenu_metal'] + $resultatT['metal'];
$Ccristal = $queryFlottes[$i]['contenu_cristal'] + $planeteEN['cristal'];
$Chydrogene = $queryFlottes[$i]['contenu_hydrogene'] + $planeteEN['hydrogene'];
$chapeau->query("UPDATE `$table_planete` SET `metal` = '$Cmetal', `cristal` = '$Ccristal', `hydrogene` = '$Chydrogene' WHERE `galaxie` = '$end_galaxie' AND `ss` = '$end_ss' AND `position` = '$end_position'");
$chapeau->query("UPDATE `$table_flottes` SET `effectue` = '1', `contenu_metal` = '0', `contenu_cristal` = '0', `contenu_hydrogene` = '0' WHERE `id` = '$id_flotte'");
$message = mysql_real_escape_string('Vos vaisseaux ont déposés '.$resultat['contenu_metal'].' de métal, '.$resultat['contenu_cristal'].' de cristal et '.$resultat['contenu_hydrogene'].' d\'hydrogène aux coordonnées '.$end_galaxie.':'.$end_ss.':'.$end_position);
$chapeau->query("INSERT INTO mail VALUES('', '1', '".trouvNom($id_user)."', '', 'Transport', '$message', '$temps')");
$message = mysql_real_escape_string('Vos vaisseaux ont déposés '.$queryFlottes[$i]['contenu_metal'].' de métal, '.$queryFlottes[$i]['contenu_cristal'].' de cristal et '.$queryFlottes[$i]['contenu_hydrogene'].' d\'hydrogène aux coordonnées '.$end_galaxie.':'.$end_ss.':'.$end_position);
$chapeau->query("INSERT INTO `$table_mail` VALUES('', '1', '".trouvNom($queryFlottes[$i]['id_user'])."', '', 'Transport', '$message', '$temps')");
}
//Mission Coloniser
elseif ($mission == 3) {
$table = $config['db_prefix'].'planete';
$chapeau->query("SELECT * FROM `$table` WHERE `galaxie` = '$end_galaxie' AND `ss` = '$end_ss' AND `position` = '$end_position'");
$chapeau->query("SELECT * FROM `$table_planete` WHERE `galaxie` = '$end_galaxie' AND `ss` = '$end_ss' AND `position` = '$end_position'");
if (!$chapeau->num_rows > 0) {
$time = time();
$cases = mt_rand(125,222);
$image = mt_rand(1,15);
$Cmetal = $resultat['contenu_metal'] + 1000;
$Ccristal = $resultat['contenu_cristal'] + 700;
$Chydrogene = $resultat['contenu_hydrogene'];
$Cmetal = $queryFlottes[$i]['contenu_metal'] + 1000;
$Ccristal = $queryFlottes[$i]['contenu_cristal'] + 700;
$Chydrogene = $queryFlottes[$i]['contenu_hydrogene'];
//Calcul de l'isolement
$nbPlan = count($queryPlanetes);
@ -198,28 +231,28 @@ for ($i=0 ; $i<$chapeau->num_rows ; $i++) {
$debut = mktime(rand(0, 24-$tps), 0, 0, date('n'), date('j'), date('Y'));
$fin = $debut + $tps * 3600;
$chapeau->query("INSERT INTO planete (`id_user`, `isolement`, `nom_planete`, `galaxie`, `ss`, `position`, `image`, `cases`, `timestamp`, `metal`, `cristal`, `hydrogene`) VALUES ('$id_user', '$debut $fin', 'Planète colonisée', '$end_galaxie', '$end_ss', '$end_position', '$image', '$cases', '$time', '$Cmetal', '$Ccristal', '$Chydrogene')");
$chapeau->query("INSERT INTO `$table_planete` (`id_user`, `isolement`, `nom_planete`, `galaxie`, `ss`, `position`, `image`, `cases`, `timestamp`, `metal`, `cristal`, `hydrogene`) VALUES ('$queryFlottes[$i]['id_user']', '$debut $fin', 'Planète colonisée', '$end_galaxie', '$end_ss', '$end_position', '$image', '$cases', '$time', '$Cmetal', '$Ccristal', '$Chydrogene')");
if ($resultat['nb_vais'] == 1) {
$resultat['nb_vais'] = -1;
$chapeau->query("DELETE FROM `flottes` WHERE `id` = '$id_flotte'");
if ($queryFlottes[$i]['nb_vais'] == 1) {
$queryFlottes[$i]['nb_vais'] = -1;
$chapeau->query("DELETE FROM `$table_flottes` WHERE `id` = '$id_flotte'");
}
else $chapeau->query("UPDATE `flottes` SET `effectue` = '1', `vaisseau_3` = `vaisseau_3` - 1, `nb_vais` = `nb_vais` - 1, `contenu_metal` = '0', `contenu_cristal` = '0', `contenu_hydrogene` = '0' WHERE `id` = '$id_flotte'");
else $chapeau->query("UPDATE `$table_flottes` SET `effectue` = '1', `vaisseau_3` = `vaisseau_3` - 1, `nb_vais` = `nb_vais` - 1, `contenu_metal` = '0', `contenu_cristal` = '0', `contenu_hydrogene` = '0' WHERE `id` = '$id_flotte'");
$message = 'Votre vaisseau a atteint la planète ['.$end_galaxie.':'.$end_ss.':'.$end_position.'] et commence la colonisation';
$chapeau->query("INSERT INTO `mail` VALUES('', '1', '".trouvNom($resultat['id_user'])."', '', 'Colonisation', '$message', '$temps')");
$chapeau->query("INSERT INTO `$table_mail` VALUES('', '1', '".trouvNom($queryFlottes[$i]['id_user'])."', '', 'Colonisation', '$message', '$temps')");
}
else $chapeau->query("INSERT INTO `mail` VALUES('', '1', '".trouvNom($resultat['id_user'])."', '', 'Colonisation', 'Nous n''avons pas pu coloniser la planète [$end_galaxie:$end_ss:$end_position] car lorsque nous sommes arrivé sur place, elle était déjà colonisée.', '$temps')");
else $chapeau->query("INSERT INTO `$table_mail` VALUES('', '1', '".trouvNom($queryFlottes[$i]['id_user'])."', '', 'Colonisation', 'Nous n''avons pas pu coloniser la planète [$end_galaxie:$end_ss:$end_position] car lorsque nous sommes arrivé sur place, elle était déjà colonisée.', '$temps')");
}
//Mission Recycler
elseif ($mission == 4) {
$resultatT = $chapeau->unique_query("SELECT * FROM `planete` WHERE `galaxie` = '$end_galaxie' AND `ss` = '$end_ss' AND `position` = '$end_position'");
$resultatT = $chapeau->unique_query("SELECT * FROM `$table_planete` WHERE `galaxie` = '$end_galaxie' AND `ss` = '$end_ss' AND `position` = '$end_position'");
if ($resultatT) {
$resultat['contenu_max'] -= (vais_conso($resultat['end_time'], count($resultat['nb_vais']))*$resultat['vitesse']*5) + $resultat['contenu_metal'] + $resultat['contenu_cristal'] + $resultat['contenu_hydrogene'];
$queryFlottes[$i]['contenu_max'] -= (vais_conso($queryFlottes[$i]['end_time'], count($queryFlottes[$i]['nb_vais']))*$queryFlottes[$i]['vitesse']*5) + $queryFlottes[$i]['contenu_metal'] + $queryFlottes[$i]['contenu_cristal'] + $queryFlottes[$i]['contenu_hydrogene'];
$debris_met = $resultatT['debris_met'];
$debris_cri = $resultatT['debris_cri'];
$capacite = $resultat['contenu_max'];
$capacite = $queryFlottes[$i]['contenu_max'];
if ($debris_met+$debris_cri > $capacite) {
$a = floor($capacite/2);
$b = floor($capacite/2);
@ -242,28 +275,28 @@ for ($i=0 ; $i<$chapeau->num_rows ; $i++) {
$a = $debris_met;
$b = $debris_cri;
}
$Cmetal = $a + $resultat['contenu_metal'];
$Ccristal = $b + $resultat['contenu_cristal'];
$Cmetal = $a + $queryFlottes[$i]['contenu_metal'];
$Ccristal = $b + $queryFlottes[$i]['contenu_cristal'];
$debris_met -= $a;
$debris_cri -= $b;
$chapeau->query("UPDATE `flottes` SET `effectue` = '1', `contenu_metal` = '$Cmetal', `contenu_cristal` = '$Ccristal' WHERE `id` = '$id_flotte'");
$chapeau->query("UPDATE `planete` SET `debris_met` = '$debris_met', `debris_cri` = '$debris_cri' WHERE `galaxie` = '$end_galaxie' AND `ss` = '$end_ss' AND `position` = '$end_position'");
$chapeau->query("UPDATE `$table_flottes` SET `effectue` = '1', `contenu_metal` = '$Cmetal', `contenu_cristal` = '$Ccristal' WHERE `id` = '$id_flotte'");
$chapeau->query("UPDATE `$table_planete` SET `debris_met` = '$debris_met', `debris_cri` = '$debris_cri' WHERE `galaxie` = '$end_galaxie' AND `ss` = '$end_ss' AND `position` = '$end_position'");
$message = 'Vos vaisseaux récoltent '.$a.' de métal et '.$b.' de cristal aux coordonnées '.$end_galaxie.':'.$end_ss.':'.$end_position;
$chapeau->query("INSERT INTO mail VALUES('', '1', '".trouvNom($resultat['id_user'])."', '', 'Recyclage', '$message', '$temps')");
$chapeau->query("INSERT INTO `$table_mail` VALUES('', '1', '".trouvNom($queryFlottes[$i]['id_user'])."', '', 'Recyclage', '$message', '$temps')");
}
}
elseif ($mission == 5) {
$nbsondes = $resultat['vaisseau_3'];
$resultatT = $chapeau->unique_query("SELECT * FROM `planete` WHERE `galaxie` = '$end_galaxie' AND `ss` = '$end_ss' AND `position` = '$end_position'");
$id_user = $resultatT['id_user'];
$id_att = $resultat['id_user'];
$resultatUD = $chapeau->unique_query("SELECT * FROM `user` WHERE `id` = '$id_user';");
$resultatUA = $chapeau->unique_query("SELECT * FROM `user` WHERE `id` = '$id_att';");
$nbsondes = $queryFlottes[$i]['vaisseau_3'];
$resultatT = $chapeau->unique_query("SELECT * FROM `$table_planete` WHERE `galaxie` = '$end_galaxie' AND `ss` = '$end_ss' AND `position` = '$end_position'");
$id_userT = $resultatT['id_user'];
$id_att = $queryFlottes[$i]['id_user'];
$resultatUD = $chapeau->unique_query("SELECT * FROM `$table_user` WHERE `id` = '$id_userT';");
$resultatUA = $chapeau->unique_query("SELECT * FROM `$table_user` WHERE `id` = '$id_att';");
$diffNiveau = $resultatUA['detection'] - $resultatUD['detection'] + floor($nbsondes/2);
$rapport = new Rapport($mission, $id_att, $id_user, $resultat['start_time'] + $resultat['end_time']);
$rapport = new Rapport($mission, $id_att, $id_userT, $queryFlottes[$i]['start_time'] + $queryFlottes[$i]['end_time']);
if ($diffNiveau < 0) {
$rapport->addInfo($resultatT, 0);
$rapport->addInfo(false, 1);
@ -275,26 +308,31 @@ for ($i=0 ; $i<$chapeau->num_rows ; $i++) {
if ($diffNiveau >= 4) $rapport->addInfo($resultatUD, 4);
if ($diffNiveau >= 5) $rapport->addInfo(true, 5);
$chapeau->query("UPDATE `flottes` SET `effectue` = '1' WHERE `id` = '$id_flotte'");
$chapeau->query("UPDATE `$table_flottes` SET `effectue` = '1' WHERE `id` = '$id_flotte'");
$rapport->send();
}
}
if ($resultat['nb_vais'] >= 0 && time() >= $resultat['start_time'] + $resultat['end_time'] * 2 && !empty($resultat['end_time']) && $resultat['mission'] != 0 && ($resultat['mission'] != 1 || (!empty($resultat['ret_time']) && time() >= $resultat['ret_time'] + $resultat['end_time']))) {
$start_galaxie = $resultat['start_galaxie'];
$start_ss = $resultat['start_ss'];
$start_position = $resultat['start_position'];
$id_flotte = $resultat['id'];
$reqP = mysql_query("SELECT * FROM planete WHERE `id_user` = '$id_user' AND `galaxie` = '$start_galaxie' AND `ss` = '$start_ss' AND `position` = '$start_position'") or die ("erreur sql ".mysql_error());
$resultatP = mysql_fetch_array($reqP);
$metal = $resultat['contenu_metal'] + $resultatP['metal'];
$cristal = $resultat['contenu_cristal'] + $resultatP['cristal'];
$hydrogene = $resultat['contenu_hydrogene'] + $resultatP['hydrogene'];
for($i = 1; $i <= 12; $i++) {
${'Pvaisseaux_'.$i} = $resultatP['vaisseau_'.$i] + $resultat['vaisseau_'.$i];
mysql_query("UPDATE `planete` SET `vaisseau_$i` = '${'Pvaisseaux_'.$i}' WHERE `id_user` = '$id_user' AND `galaxie` = '$start_galaxie' AND `ss` = '$start_ss' AND `position` = '$start_position'");
if ($queryFlottes[$i]['nb_vais'] >= 0 && time() >= $queryFlottes[$i]['start_time'] + $queryFlottes[$i]['end_time'] * 2 && !empty($queryFlottes[$i]['end_time']) && $queryFlottes[$i]['mission'] != 0 && ($queryFlottes[$i]['mission'] != 1 || (!empty($queryFlottes[$i]['ret_time']) && time() >= $queryFlottes[$i]['ret_time'] + $queryFlottes[$i]['end_time']))) {
$start_galaxie = $queryFlottes[$i]['start_galaxie'];
$start_ss = $queryFlottes[$i]['start_ss'];
$start_position = $queryFlottes[$i]['start_position'];
$ret_galaxie = $queryFlottes[$i]['ret_galaxie'];
$ret_ss = $queryFlottes[$i]['ret_ss'];
$ret_position = $queryFlottes[$i]['ret_position'];
$id_flotte = $queryFlottes[$i]['id'];
if (!empty($queryFlottes[$i]['ret_position'])) $resultatP = $chapeau->unique_query("SELECT * FROM `$table_planete` WHERE `galaxie` = '$ret_galaxie' AND `ss` = '$ret_ss' AND `position` = '$ret_position';");
else $resultatP = $chapeau->unique_query("SELECT * FROM `$table_planete` WHERE `galaxie` = '$start_galaxie' AND `ss` = '$start_ss' AND `position` = '$start_position';");
$metal = $queryFlottes[$i]['contenu_metal'] + $resultatP['metal'];
$cristal = $queryFlottes[$i]['contenu_cristal'] + $resultatP['cristal'];
$hydrogene = $queryFlottes[$i]['contenu_hydrogene'] + $resultatP['hydrogene'];
for($j = 1; $j <= 12; $j++) {
${'Pvaisseaux_'.$j} = $resultatP['vaisseau_'.$j] + $queryFlottes[$i]['vaisseau_'.$j];
$chapeau->query("UPDATE `$table_planete` SET `vaisseau_$j` = '${'Pvaisseaux_'.$j}' WHERE `galaxie` = '$start_galaxie' AND `ss` = '$start_ss' AND `position` = '$start_position'");
}
mysql_query("UPDATE `planete` SET `metal` = '$metal', `cristal` = '$cristal', `hydrogene` = '$hydrogene' WHERE `id_user` = '$id_user' AND `galaxie` = '$start_galaxie' AND `ss` = '$start_ss' AND `position` = '$start_position'");
mysql_query("DELETE FROM `flottes` WHERE `id_user` = '$id_user' AND `id` = '$id_flotte'");
$chapeau->query("UPDATE `$table_planete` SET `metal` = '$metal', `cristal` = '$cristal', `hydrogene` = '$hydrogene' WHERE `galaxie` = '$start_galaxie' AND `ss` = '$start_ss' AND `position` = '$start_position'");
$chapeau->query("DELETE FROM `$table_flottes` WHERE `id_user` = '$id_user' AND `id` = '$id_flotte'");
}
}
$id_user = $sess->values['id'];
?>

View file

@ -82,6 +82,7 @@ function txtmission($mission){
elseif ($mission == 3) return 'Coloniser';
elseif ($mission == 4) return 'Recycler';
elseif ($mission == 5) return 'Espionner';
elseif ($mission == 6) return 'Retour';
else return 'Erreur';
}

View file

@ -15,13 +15,13 @@ if (!isset($auth_level)) @$auth_level = $sess->values['auth_level'];
'Les ing&eacute;nieurs, appel&eacute;s Huragok en langage covenant, forment la seule unit&eacute; non-combattante connue des forces covenantes. Celle-ci r&eacute;pare vos unit&eacute;s et v&eacute;hicules sur le champ de bataille ; plus vous en recrutez, plus vos unit&eacute;s et v&eacute;hicules au sol auront une chance de survivre.',
'Moins bien connus que les Elites, les Brutes combattent en groupes et sont physiquement plus forts que leurs cong&eacute;n&egrave;res. Les Brutes d&eacute;montrent les mêmes aptitudes au combat que les Elites et leur nombre s\'est consid&eacute;rablement accru depuis le d&eacute;but du conflit. Ils portent une arme balistique explosive &agrave; laquelle est fix&eacute;e une baïonnette.');
$casernea = array('grunt(s)','jackal(s)','drone(s)','&eacute;lite(s)','sniper(s)','hunter(s)','m&eacute;decin(s)','ing&eacute;nieur(s)','brute(s)');
$casernei = array('grunt1.jpg','jackal.jpg','drone.jpg','elite.jpg','jackalsniper.jpg','hunter1.jpg','medecin_c.jpg','ingenieur_c.jpg','brute.jpg');
$casernei = array('grunt1.jpg','jackal.jpg','94990342wb4.jpg','98004530fx3.jpg','88091275ja8.jpg','hunter1.jpg','81770345oo4.jpg','88218731ts1.jpg','72188202fg9.jpg');
$batimend = array('purificateur_m','purificateur_c','ionisateur','centrale_s','centrale_fusion','oeil','recherches','chantier_terrestre','???','caserne','silo','centre_info');
$batimeni = array('purificateurdemtalhb3.jpg','cristaloo3.png','ioniseurdn4.jpg','solaire.jpg','sanstitrevi7.jpg','oeilduprophetewj6.jpg','covielabocn5.jpg','chantierterrestrehg1.jpg','sanstitretruecolor09zn6.jpg','caserncov0ry.jpg','stockagebasement1cs10bl.jpg','ordianteur_hologramme.jpg');
$batimeni = array('purificateurdemtalhb3.jpg','cristaloo3.png','powersupplycoviejq1.jpg','solaire.jpg','sanstitrevi7.jpg','oeilduprophetewj6.jpg','covielabocn5.jpg','chantierterrestrehg1.jpg','sanstitretruecolor09zn6.jpg','caserncov0ry.jpg','stockagebasement1cs10bl.jpg','ordianteur_hologramme.jpg');
$batiment = array('Purificateur de m&eacute;tal','Purificateur de cristal','Ionisateur','Centrale solaire','Centrale de fusion','Oeil des proph&egrave;tes','Centre de recherches','Chantier terrestre','Chantier spatial',0/*'Caserne'*/,'Entrep&ocirc;t','Centrale informatique');
$batimede = array( 'Le purificateur de m&eacute;tal vous fournit les mati&egrave;res premi&egrave;res pour la construction de vos infrastructures et de vos unit&eacute;s. Plus vous d&eacute;velopperez vos purificateurs, plus ils produiront de ressources. Les purificateurs les plus d&eacute;velopp&eacute;s ont aussi besoin de plus d\'&eacute;nergie.',
'Le purificateur de cristal vous fournit les ressources pour vos installations &eacute;lectroniques et pour les alliages. Le purificateur de cristal consomme deux fois plus d\'&eacute;nergie que celui de m&eacute;tal. Tous les vaisseaux et b&acirc;timents ont besoin de cristal pour leur bouclier ou encore leurs composants &eacute;lectroniques. La production augmente avec le d&eacute;veloppement de lusine.',
'L\'ionisateur utilise des ions n&eacute;gatifs et positifs d\'hydrog&egrave;ne pour cr&eacute;er une source conventionnelle de courant stable, servant &agrave; alimenter les b&acirc;timents covenants qui n&eacute;cessitent une arriv&eacute;e massive de cette "ressource" pour actionner les divers &eacute;l&eacute;ments mat&eacute;riels des contr&ocirc;les. La centrale de fusion &agrave; besoin de beaucoup d\'hydrog&egrave;ne pour fonctionner.',
'L\'ionisateur utilise des ions n&eacute;gatifs et positifs d\'hydrog&egrave;ne pour cr&eacute;er une source conventionnelle de courant stable, servant &agrave; alimenter les b&acirc;timents covenants qui n&eacute;cessitent une arriv&eacute;e massive de cette "ressource" pour actionner les divers &eacute;l&eacute;ments mat&eacute;riels des contr&ocirc;les. La centrale de fusion &agrave; besoin de beaucoup d\'ions pour fonctionner.',
'Pour assurer l\'approvisionnement des purificateurs, des centrales solaires sont n&eacute;cessaires. Plus ces installations sont d&eacute;velopp&eacute;es, plus vous obtiendrez d&eacute;nergie pour vos purificateurs. Les centrales solaires sont la base de l\'approvisionnement pour votre plan&egrave;te en &eacute;nergie. Elles sont compos&eacute;es dun recueilleur sur le haut de sa structure qui capte en grandes quantit&eacute;s l&eacute;nergie solaire.',
'La centrale &agrave; fusion vous permet de cr&eacute;er l&eacute;nergie n&eacute;cessaire &agrave; vos purificateurs. Elles est constitu&eacute; dun r&eacute;acteur &agrave; fusion qui en tournant produit de l&eacute;nergie. Sa production reste nettement inf&eacute;rieure &agrave; celle dune centrale solaire.',
'Les grands proph&egrave;tes ont partag&eacute; leur savoir pour construire ces structures qui permettent de rep&eacute;rer les &eacute;l&eacute;ments sapprochants de votre plan&egrave;te. Le syst&egrave;me est constitu&eacute; de deux grands arcs qui envoient des signaux &eacute;lectriques dans lespace et captent ceux qui reviennent pr&eacute;sageant ainsi larriv&eacute;e dun vaisseau.',
@ -44,7 +44,7 @@ if (!isset($auth_level)) @$auth_level = $sess->values['auth_level'];
'En tant que g&eacute;n&eacute;ral, vous devez avoir un esprit fin pour gagner vos batailles terrestres aussi bien que les affrontements spatiaux. C\'est pourquoi il vous faudra toujours innover en mati&egrave;re de strat&eacute;gie, vous montrer toujours plus rus&eacute; que votre impitoyable adversaire, aussi feriez-vous bien d\'&eacute;tudier de nouvelles tactiques de combat pour vous assurer une franche victoire.');
$technoli = array('informatique1.jpg','detection.jpg','sanstitretruecolor04no6.jpg','boucliervaiseaucovenantey4.jpg','energie.jpg','reacteurantigravyd1.jpg','reacteur_f.jpg','reacteurfusionforerunnewu0.jpg','medecine.JPG','commandement.jpg');
$nomvaisa = array('cargos de classe Inquisitor','grand(s) transporteur(s)','vaisseau(x) de colonisation','sonde(s)','recycleur(s)','s&eacute;raphin(s)','fr&eacute;gate(s)','croiseur(s) de classe CCS','croiseur(s) de classe Reverence','porte-vaisseaux','station(s) orbitale','super(s) porte-vaisseaux');
$nomvaisi = array('cargosparabola.jpg','cargosladen.jpg','coviecolobv3.jpg','sonde_despionnage1.jpg','charognard.jpg','chasseurlourd7id.jpg','croiseur8er.jpg','fregate2ky.jpg','vaisseaudebataille9na.jpg','pv.jpg','station1.jpg','citecovenant.jpg');
$nomvaisi = array('cargosparabola.jpg','cargosladen.jpg','coviecolobv3.jpg','sonde_despionnage1.jpg','charognard.jpg','chasseurlourd7id.jpg','croiseur8er.jpg','vaisseauuu0.jpg','vaisseaudebataille9na.jpg','pv.jpg','stationorbitalezt7.jpg','citecovenant.jpg');
$nomvaisn = array('Cargos de classe Inquisitor','Cargos de classe Interdictor','Vaisseau de colonisation de classe Returning','Sonde de reconnaissance de classe Perception','Charognard','S&eacute;raphin','Fr&eacute;gate','Croiseur de classe CCS','Croiseur de classe Reverence','Porte vaisseaux','Station orbitale covenant','Super porte vaisseaux');
$nomvaisd = array( 'Les cargos Inquisitor sont la base du transport de troupes et de ressources covenantes, capables de transporter un grand nombre de ressources sur une grande distance. Pratiquement sans armement, le cargo est sans d&eacute;fense et n&eacute;cessite une d&eacute;fense rapproch&eacute;e pour les trajets de grande distance.',
'Les cargos Interdictor sont une &eacute;volution du transport de classe Inquisitor. Ayant une capacit&eacute; de transport nettement sup&eacute;rieure &agrave; sa version pr&eacute;c&eacute;dente. Ce transport, quoique plus r&eacute;cent et disposant d\'un plus grand fret, dispose du même genre de d&eacute;fense que le mod&egrave;le ant&eacute;rieur, une escorte est donc fortement recommand&eacute;e lors de l\'utilisation de celui-ci.',
@ -161,7 +161,7 @@ if (!isset($auth_level)) @$auth_level = $sess->values['auth_level'];
'Les ing&eacute;nieurs sont l&agrave; pour r&eacute;parer vos v&eacute;hicules endommag&eacute;s lors des affrontements. Ils peuvent r&eacute;duire le nombre de vos pertes de v&eacute;hicules lorsqu\'ils sont bien utilis&eacute;s.',
'Les soldats exo squelettiques poss&egrave;dent des armures de combat tr&egrave;s r&eacute;sistantes et d\'une puissance &eacute;norme mais contre balanc&eacute;e par une faible autonomie d\'&eacute;nergie, une mobilit&eacute; faible et d\'une discr&eacute;tion auditive aussi silencieuse qu\'un char d\'assaut dans un champs de mines lotus.');
$casernea = array('marine(s)','fusiller(s)','grenadier(s)','T.C.A.O.','sniper(s)','spartan(s)','m&eacute;decin(s)','ing&eacute;nieur(s)','soldat(s) exo squellette');
$casernei = array('marines.jpg','marinehf0.jpg','grenadier.jpg','TCAO2.jpg','sniper.jpg','spartan.jpg','medecin.jpg','ingenieurs.jpg','img_na_ig.jpg');
$casernei = array('marines.jpg','marinehf0.jpg','grenadier.jpg','TCAO2.jpg','sniper.jpg','spartan.jpg','medecin.jpg','ingenieurs.jpg','exosquelettehbpb2.jpg');
$batiment = array('Usine de m&eacute;tallurgie','Usine de cristal','Synchronisateur d\'hydrog&egrave;ne','Centrale solaire','Centrale &eacute;nerg&eacute;tique','Base radar','Centre de recherches','Chantier terrestre','Chantier spatial',0/*'Ecole militaire'*/,'Silo de stockage','Centrale informatique');
$batimede = array( 'Cette usine traite tous les m&eacute;taux recueillis afin de produire du titanium-A ou diff&eacute;rents types d\'alliages de qualit&eacute; pour vos diff&eacute;rentes constructions plan&eacute;taires ou spatiales. Chaque niveau augmente la production de m&eacute;tal.',
'L\'usine de cristal filtre les d&eacute;chets r&eacute;colt&eacute;s avec les cristaux. Une fois s&eacute;par&eacute;s du reste ils sont class&eacute;s par qualit&eacute; par une quantit&eacute; d\'appareils de haute technologie. Plus les cristaux sont purs plus ceux-ci peuvent être transform&eacute;s en unit&eacute;s de stockage de donn&eacute;es ou en conducteurs &eacute;nerg&eacute;tiques de haute qualit&eacute;. Plus ce b&acirc;timent sera d&eacute;velopp&eacute;, plus vous pourrez traiter de cristaux rapidement.',
@ -202,9 +202,9 @@ if (!isset($auth_level)) @$auth_level = $sess->values['auth_level'];
'Ces grands vaisseaux (2 fois et demie la longueur dune fr&eacute;gate), sont des descendants de la lign&eacute;e des croiseurs Halcyon. Ces vaisseaux ont une tr&egrave;s grande puissance de feu (1 CAM lourd), un fort blindage (5 m&egrave;tres 50 de Titane-A), et sont tr&egrave;s rapides. Ils sont assez peu communs, mais restent des vaisseaux dattaque tr&egrave;s redoutables : ils peuvent encaisser de nombreux tirs de plasma avant de succomber.',
'Ces immenses vaisseaux sont capables de transporter bon nombre de Longswords, dAlbatross, et tout autres types dunit&eacute;s. Ces vaisseaux leurs permettent de se d&eacute;fendre contre une &eacute;ventuelle attaque de chasseurs ennemis, mais sont &eacute;galement tr&egrave;s lourdement arm&eacute;s. Ils sont usit&eacute;s lors dattaques massives de plan&egrave;tes n&eacute;cessitant un fort appui a&eacute;rien et une tr&egrave;s grosse puissance de feu. ',
'Les station orbitales humaines sont basées sur un même modèle : de multiples DCA légères et lourdes pour les chasseurs, des missiles ARCHERS et un CAM standard capable de pénétrer la plupart des boucliers stellaires. Cette base orbitale est très bien équipée et est considérée comme la défense principale des planètes du CSNU.',
'Ces vaisseaux sont sont beaucoup plus chers du fait de leur meilleur armement, blindage et importante capacit&eacute; de transport. Ces vaisseaux sont tr&egrave;s peu vus sur le terrain, leur r&ocirc;le principal est de d&eacute;ployer des Longswords afin de fournir aux vaisseaux alli&eacute;s un appui orbital. Ils font partis des plus puissants vaisseaux du CSNU. Ils sont capables de transporter bon nombre dunit&eacute;s terrestres et a&eacute;riennes.');
'Ces vaisseaux sont beaucoup plus chers du fait de leur meilleur armement, blindage et importante capacit&eacute; de transport. Ces vaisseaux sont tr&egrave;s peu vus sur le terrain, leur r&ocirc;le principal est de d&eacute;ployer des Longswords afin de fournir aux vaisseaux alli&eacute;s un appui orbital. Ils font partis des plus puissants vaisseaux du CSNU. Ils sont capables de transporter bon nombre dunit&eacute;s terrestres et a&eacute;riennes.');
$nomvaisa = array('cargos de classe Parabola','cargos de classe Laden','vaisseau(x) de colonisation de classe Odyssey','drone(s) d\'espionnage de classe Clarion','recycleur(s) de classe Minotaur','C709 Longsword Interceptor','Fr&eacute;gates','croiseur(s) de classe Halcyon','croiseur(s) de classe Marathon','porte vaisseaux','station(s) orbitale','super(s) porte-vaisseaux');
$nomvaisi = array('csnucargoparabola2mc9.jpg','csnucargoladen2al8.jpg','colonisation.jpg','drone_clarion.jpg','img_na_ig.jpg','longsword.jpg','fregatewz5.jpg','croiseurclassealcyon130om6.jpg','croiseurmarathonke3.jpg','csnuportevaisseauxgy3.jpg','station.jpg','csnusuperportevaisseauxrw4.jpg');
$nomvaisi = array('csnucargoparabola2mc9.jpg','csnucargoladen2al8.jpg','colonisation.jpg','drone_clarion.jpg','img_na_ig.jpg','longsworduf9.jpg','fregatewz5.jpg','croiseurclassealcyon130om6.jpg','croiseurmarathonke3.jpg','csnuportevaisseauxgy3.jpg','station.jpg','csnusuperportevaisseauxrw4.jpg');
$nomterra = array('sparrowhawk','077-TC Pelican','C703 Shortsword Bomber','SHD Albatros','M12 LRV Warthogs','M12G1 LAAV Warthogs','M12A1 LAAV Warthogs','M808B Scorpions MBT','mitrailleuse(s) automatique M247 GP','DCA l&eacute;g&egrave;re(s)','DCA lourde(s)','canon(s) Gauss','lanceur(s) de missiles');
$nomterrn = array('Sparrowhawk','077-TC Pelican','C703 Shortsword Bomber','SHD Albatros','M12 LRV Warthogs','M12G1 LAAV Warthogs','M12A1 LAAV Warthogs','M808B Scorpions MBT','Mitrailleuse automatique M247 GP','DCA l&eacute;g&egrave;re','DCA lourde','Canon Gauss','Lanceur de missiles');
$nomterde = array( 'V&eacute;hicule &agrave; propulsion verticale permettant des attaques extrêmement rapides et destructrices gr&acirc;ce &agrave; ses six tubes lance-missiles, ses deux mitrailleuses l&eacute;g&egrave;res, et sa mitrailleuse lourde frontale. Ces vaisseaux dassaut rapide sont de v&eacute;ritables broyeurs de t&ocirc;le gr&acirc;ce &agrave; leurs 6 tubes lance-missiles et sont capables de d&eacute;truire des v&eacute;hicules et des positions fortement blind&eacute;es.',

View file

@ -13,9 +13,9 @@ fuseau_horaire: "2"
locales: "fr_FR"
lang: "FRA"
db_host: "localhost"
db_name: "halo_battle"
db_name: "hb"
db_prefix: ""
serv_adresse: "http://127.0.0.1/"
serv_adresse: "http://hb.s-fr.com/"
smiley_dir: "images/smiles/"
smiley[wink]: ":wink:"
smiley[biggrin]: ":D"
@ -34,7 +34,7 @@ smiley[redface]: ":oops:"
smiley[rolleyes]: ":roll:"
smiley[lol]: ":lol:"
link[forum]: "http://halo-battle.s-fr.com/forum/index.php"
link[jeu]: "http://battle.halo.fr/"
link[jeu]: "http://hb.s-fr.com/"
link[blog]: "http://halo-battle.s-fr.com/ark/"
link[accueil]: "http://halo-battle.s-fr.com/"
link[contact]: "/contact.php"

View file

@ -0,0 +1,12 @@
[16:42:53] MESSAGE : Création de l'alliance : L\'alliance par 1 (fondateur : 79) après validation de 4 signatures : 336, 17, 501 , [86.220.33.117] [GET] [/?p=alliances&q=signer&i=65460ba631ceef8c8dd1e6e9ac55510605c8f0e4] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.9) Gecko/2008051206 Firefox/3.0] []
[17:27:21] MESSAGE : Création de l'alliance : par 1 (fondateur : ) après validation de 4 signatures : 50, 17, 1421 , [86.220.33.117] [GET] [/?p=alliances&q=signer&i=7473250a1a8eb6f0f7a74d36c5927fce1ff6f7d1] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.9) Gecko/2008051206 Firefox/3.0] []
[17:30:22] MESSAGE : Création de l'alliance : par 139 (fondateur : ) après validation de 4 signatures : 108, 400, 62139 , [77.216.58.33] [GET] [/?p=alliances&q=signer&i=c14b32822847abbfb93251fd3bda2268bfa42b9e] [Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.8.1.8) Gecko/20071022 Ubuntu/7.10 (gutsy) Firefox/2.0.0.8] [http://hballiancecovenant.xooit.fr/index.php]
[17:32:40] MESSAGE : Création de l'alliance : L'Alliance par 62 (fondateur : 17) après validation de 4 signatures : 83, 139, 100862 , [90.61.119.97] [GET] [/?p=alliances&q=signer&i=32b7b98392d06c94dcf729f1a57667214509b216] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hballiancecovenant.xooit.fr/index.php]
[17:34:48] MESSAGE : Création de l'alliance : alliance par 1 (fondateur : 79) après validation de 4 signatures : 50, 17, 1421 , [86.220.33.117] [GET] [/?p=alliances&q=signer&i=f1c6e7786d8e69bc08e1046e7f973c5e82e4d492] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.9) Gecko/2008051206 Firefox/3.0] []
[18:36:48] MESSAGE : Création de l'alliance : Haut Commandement Terrien par 1797 (fondateur : 1324) après validation de 4 signatures : 1169, 357, 2391797 , [81.220.172.95] [GET] [/?p=alliances&q=signer&i=c49af9894e63ef1ee2bfd322167c34f483e97a49] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] []
[18:59:35] MESSAGE : Création de l'alliance : Sex Drogue Halo par 2385 (fondateur : 1114) après validation de 4 signatures : 2245, 1106, 23842385 , [91.68.1.222] [GET] [/?p=alliances&q=signer&i=f0f3754a214e8f1d02578fabd65b45bff0dc35ef] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506)] []
[19:02:30] MESSAGE : Création de l'alliance : Perfomer Alliance par 839 (fondateur : 785) après validation de 4 signatures : 2365, 2378, 1870839 , [83.199.91.191] [GET] [/?p=alliances&q=signer&i=e16098c3926111865a24c9b79b16975d68b37457] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] []
[19:48:09] MESSAGE : Création de l'alliance : First Covenant Division par 1339 (fondateur : 316) après validation de 4 signatures : 320, 1345, 24021339 , [86.211.180.164] [GET] [/?p=alliances&q=signer&i=71e580940eb17062d21b9b9da0626b337ea637b1] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Orange 7.4 ; NaviWoo1.1; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727)] []
[20:54:18] MESSAGE : Création de l'alliance : Quebec Powa par 2056 (fondateur : 378) après validation de 4 signatures : 2075, 2433, 18912056 , [205.237.29.2] [GET] [/?p=alliances&q=signer&i=fc1671808907a610ddfe7ceaa0f77481e368f3b8] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.1) Gecko/20061204 Firefox/2.0.0.1] []
[23:03:52] MESSAGE : Création de l'alliance : Folle Envie De Tuer par 1282 (fondateur : 188) après validation de 4 signatures : 105, 430, 14291282 , [83.192.46.254] [GET] [/?p=alliances&q=signer&i=24b5daed44af344c5d59167956fdb654f9dd8b87] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13] []
[23:05:28] MESSAGE : Création de l'alliance : Halorigine.com par 1532 (fondateur : 1605) après validation de 4 signatures : 2477, 1664, 17431532 , [82.239.44.111] [GET] [/?p=alliances&q=signer&i=0ae5f1871aa523432fffd380b94ff89467f9e47c] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://forum.halorigine.com/viewtopic.php?f=28&p=9107]

View file

@ -1,2 +1,643 @@
[22:45:42] AVERTISSEMENT : identification : login = nemunaire ; password = mopmop , [127.0.0.1] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.9) Gecko/2008051206 Firefox/3.0] [http://halobattle.local/]
[23:01:50] AVERTISSEMENT : identification : login = nemunaire ; password = mopmop , [127.0.0.1] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.9) Gecko/2008051206 Firefox/3.0] [http://halobattle.local/]
[00:35:52] MESSAGE : Création de l'alliance : UNSC-Navy par 1704 (fondateur : 162) après validation de 4 signatures : 60, 374, 3541704 , [70.83.110.105] [GET] [/?p=alliances&q=signer&i=370c19559796aa6b362a5754b2ce9c5625b3ed16] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] []
[07:42:55] MESSAGE : Création de l'alliance : Esperance par 2525 (fondateur : 1047) après validation de 4 signatures : 1095, 1078, 11362525 , [147.210.181.2] [GET] [/?p=alliances&q=signer&i=27ca101d6674a940dae0296219449fbb6e6c5ceb] [Mozilla/5.0 (compatible; Konqueror/3.5; Linux) KHTML/3.5.5 (like Gecko) (Debian)] []
[08:31:06] MESSAGE : Création de l'alliance : UNSC S.o.F par 305 (fondateur : 4) après validation de 4 signatures : 334, 773, 468305 , [62.35.174.210] [GET] [/?p=alliances&q=signer&i=3c7d616eb5c14d168de00ce9e44ce1b5f18e8ffa] [Mozilla/5.0 (Macintosh; U; Intel Mac OS X; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://sofhb.xooit.com/t111-Alliance-sur-HB.htm?start=15]
[11:50:59] MESSAGE : Création de l'alliance : adagide par 1597 (fondateur : 1675) après validation de 4 signatures : 2058, 2103, 8071597 , [162.38.222.172] [GET] [/?p=alliances&q=signer&i=37e1cd0eb8e3d0cd85b86e9e5154b2e303bfe6fc] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4] []
[12:50:59] MESSAGE : Création de l'alliance : 12eme ODST par 154 (fondateur : 840) après validation de 4 signatures : 430, 140, 436154 , [82.255.204.160] [GET] [/?p=alliances&q=signer&i=c0aa5f1f96bcf0e9a5823fdaeed072b93e8c57f0] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FREE; .NET CLR 1.1.4322)] []
[17:15:07] MESSAGE : Création de l'alliance : Xx Halo Master xX par 2449 (fondateur : 2229) après validation de 4 signatures : 1383, 2569, 25832449 , [82.248.215.143] [GET] [/?p=alliances&q=signer&i=65ee784d4a9fd3a0a14eb7be0d00326257a38fdb] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; IE7-01NET.COM-1.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0)] []
[17:59:57] MESSAGE : Création de l'alliance : l'empire des vandal par 857 (fondateur : 2283) après validation de 4 signatures : 347, 415, 1108857 , [216.113.59.233] [GET] [/?p=alliances&q=signer&i=2906a84b35979cb37f66ae2c19f78710311ef5e8] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)] []
[18:19:18] MESSAGE : Création de l'alliance : Hell Jumpers Squadron par 2607 (fondateur : 766) après validation de 4 signatures : 1327, 1344, 17932607 , [81.53.90.60] [GET] [/?p=alliances&q=signer&i=0275c9a4bfa0751db5ac821f61ab50ecf4a78e98] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] []
[18:31:42] MESSAGE : Création de l'alliance : Chaos par 1987 (fondateur : 1998) après validation de 4 signatures : 2526, 2522, 25481987 , [86.215.177.191] [GET] [/?p=alliances&q=signer&i=c5399a6bdd23701a583dd8369d51d9b9a7d9b6f1] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] []
[18:32:30] MESSAGE : Création de l'alliance : Mercenaires par 974 (fondateur : 366) après validation de 4 signatures : 653, 2036, 1817974 , [77.192.127.53] [GET] [/?p=alliances&q=signer&i=dc2270e3311e1cb6821326487f89d16b3543199e] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SIMBAR Enabled; SIMBAR={12406F6A-A5A9-48d0-BEEA-7D95E0372FF8}; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; MEGAUPLOAD 2.0)] []
[18:39:45] MESSAGE : Création de l'alliance : Hot.X par 2196 (fondateur : 595) après validation de 4 signatures : 2201, 2466, 19802196 , [83.114.5.192] [GET] [/?p=alliances&q=signer&i=4022311b270c52b2044276ba61ed0c916f5a4a69] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)] []
[19:12:06] MESSAGE : Création de l'alliance : Union Evolutive Spartan par 2638 (fondateur : 363) après validation de 4 signatures : 714, 488, 4412638 , [86.214.226.78] [GET] [/?p=alliances&q=signer&i=5e70a26080606a72d07d65d023328f1fab528571] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; SIMBAR={FC2D91E6-C19E-4cf0-9BC9-518428DD3E29}; InfoPath.1; .NET CLR 1.1.4322)] []
[19:13:39] MESSAGE : Création de l'alliance : Alliance CSNU par 812 (fondateur : 247) après validation de 4 signatures : 356, 176, 650812 , [82.121.129.15] [GET] [/?p=alliances&q=signer&i=715cb16ef6c9b78f407185f4aaf2dfa84b7bea82] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; IE7-01NET.COM-1.1; IE7-01NET.COM-1.1)] []
[19:26:35] MESSAGE : Création de l'alliance : Red is Dead par 1620 (fondateur : 204) après validation de 4 signatures : 1016, 1591, 26421620 , [82.122.161.133] [GET] [/?p=alliances&q=signer&i=05d6d36a494f371ae41285bf07da55c1dc03489f] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] []
[19:45:32] MESSAGE : Création de l'alliance : New Hope community par 1299 (fondateur : 54) après validation de 4 signatures : 2361, 193, 3411299 , [90.15.22.128] [GET] [/?p=alliances&q=signer&i=0726b723a749fe481a54507280a1a74088e914e0] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://2befun.forum2jeux.com/le-coin-vip-f7/halo-t934-30.htm]
[21:52:50] MESSAGE : Création de l'alliance : Pillar of Autumn par 1490 (fondateur : 72) après validation de 4 signatures : 1810, 588, 411490 , [90.27.233.91] [GET] [/?p=alliances&q=signer&i=32a63850cced1f130135b702c1b412177e63a8eb] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)] []
[22:17:13] AVERTISSEMENT : identification : login = Derick ; password = lsktjbmuthsy , [75.152.26.113] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[22:17:14] AVERTISSEMENT : identification : login = Mysthor ; password = nasedo , [86.220.81.143] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)] [http://halo-battle.s-fr.com/]
[22:17:29] AVERTISSEMENT : identification : login = ; password = , [86.77.133.178] [GET] [/?p=batiments] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=laboratoire]
[22:17:31] AVERTISSEMENT : identification : login = ; password = , [90.17.128.55] [GET] [/?p=prochainement] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=batiments]
[22:17:33] AVERTISSEMENT : identification : login = iNaNiuM ; password = A1bc2d9@ , [90.17.128.55] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=prochainement]
[22:17:34] AVERTISSEMENT : identification : login = ; password = , [77.201.69.80] [GET] [/?p=batiments] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=prochainement]
[22:17:36] AVERTISSEMENT : identification : login = ; password = , [86.199.136.138] [GET] [/] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=classement]
[22:17:36] AVERTISSEMENT : identification : login = ; password = , [82.245.190.225] [GET] [/] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.9;MEGAUPLOAD 1.0] [http://hb.s-fr.com/?p=options]
[22:17:37] AVERTISSEMENT : identification : login = ; password = , [82.127.205.59] [GET] [/?p=batiments] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14;MEGAUPLOAD 1.0] [http://hb.s-fr.com/?p=laboratoire]
[22:17:39] AVERTISSEMENT : identification : login = ; password = , [66.249.65.113] [GET] [/?p=classement&j=1201] [Mediapartners-Google] []
[22:17:39] AVERTISSEMENT : identification : login = Power_floods ; password = doudou , [82.127.205.59] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14;MEGAUPLOAD 1.0] [http://hb.s-fr.com/?p=batiments]
[22:17:40] AVERTISSEMENT : identification : login = Remy ; password = grenades , [86.199.136.138] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[22:17:52] AVERTISSEMENT : identification : login = ; password = , [62.35.42.203] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr-FR) AppleWebKit/525.18 (KHTML, like Gecko) Version/3.1.1 Safari/525.17] [http://hb.s-fr.com/?p=batiments]
[22:17:55] AVERTISSEMENT : identification : login = Nemunaire ; password = 7qKNrXRG , [82.245.190.225] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.9;MEGAUPLOAD 1.0] [http://hb.s-fr.com/]
[22:17:56] AVERTISSEMENT : identification : login = nicolasb565 ; password = azi9002$ , [207.253.168.186] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)] [http://halo-battle.s-fr.com/]
[22:17:58] AVERTISSEMENT : identification : login = sangheilifujamee ; password = 49anywolpre , [62.35.42.203] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr-FR) AppleWebKit/525.18 (KHTML, like Gecko) Version/3.1.1 Safari/525.17] [http://halo-battle.s-fr.com/]
[22:18:08] AVERTISSEMENT : identification : login = darkarmin22 ; password = starwars , [81.53.102.94] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)] [http://halo-battle.s-fr.com/]
[22:18:09] AVERTISSEMENT : identification : login = Akatosh117 ; password = 22li5per , [86.205.241.221] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 1.1.4322)] [http://hb.s-fr.com/]
[22:18:13] AVERTISSEMENT : identification : login = nicolasb565 ; password = azi9002eco419$ , [207.253.168.186] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)] [http://halo-battle.s-fr.com/]
[22:18:20] AVERTISSEMENT : identification : login = Olah ; password = ada2920 , [86.199.136.138] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[22:18:28] AVERTISSEMENT : identification : login = darksinus ; password = stargate , [82.124.184.70] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[22:18:36] AVERTISSEMENT : identification : login = valkyrion ; password = 198412 , [82.124.202.209] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2)] [http://halo-battle.s-fr.com/]
[22:18:37] AVERTISSEMENT : identification : login = fabmaster ; password = iserchospe , [82.216.224.67] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506)] [http://halo-battle.s-fr.com/]
[22:18:47] AVERTISSEMENT : identification : login = adjudant29 ; password = 13081991 , [86.214.197.12] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=batiments]
[22:18:57] AVERTISSEMENT : identification : login = Nemunaire ; password = MAthm3Og , [82.245.190.225] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.9;MEGAUPLOAD 1.0] [http://halo-battle.s-fr.com/]
[22:19:01] AVERTISSEMENT : identification : login = Nemunaire ; password = MAthm3Og , [82.245.190.225] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.9;MEGAUPLOAD 1.0] [http://halo-battle.s-fr.com/]
[22:19:02] AVERTISSEMENT : identification : login = DarkBelra ; password = thibault , [86.41.138.89] [POST] [/?log] [Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.8.0.2) Gecko/20060308 Firefox/1.5.0.2] [http://halo-battle.s-fr.com/?log]
[22:19:04] AVERTISSEMENT : identification : login = locklear ; password = quaker , [82.238.230.214] [POST] [/?log] [Opera/9.27 (Windows NT 5.1; U; fr)] [http://hb.s-fr.com/?log]
[22:19:05] AVERTISSEMENT : identification : login = coq ; password = azertyuiop , [80.185.201.192] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; IE7-01NET.COM-1.1; .NET CLR 2.0.50727; IE7-01NET.COM-1.1)] [http://hb.s-fr.com/]
[22:19:08] AVERTISSEMENT : identification : login = Edward ; password = 369369 , [83.205.78.151] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=batiments]
[22:19:10] AVERTISSEMENT : identification : login = till76 ; password = rammstein , [77.204.76.239] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)] [http://halo-battle.s-fr.com/]
[22:19:11] AVERTISSEMENT : identification : login = vince51brut ; password = 030591 , [88.163.174.96] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 1.1.4322)] [http://hb.s-fr.com/?p=prochainement]
[22:19:19] AVERTISSEMENT : identification : login = LeBob ; password = La Password , [76.112.139.145] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.11;MEGAUPLOAD 1.0] [http://hb.s-fr.com/?p=ressources]
[22:19:31] AVERTISSEMENT : identification : login = Nemunaire ; password = MAthm3Og , [82.245.190.225] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.9;MEGAUPLOAD 1.0] [http://halo-battle.s-fr.com/]
[22:19:35] AVERTISSEMENT : identification : login = coq ; password = azertyuiop , [80.185.201.192] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; IE7-01NET.COM-1.1; .NET CLR 2.0.50727; IE7-01NET.COM-1.1)] [http://halo-battle.s-fr.com/]
[22:19:50] AVERTISSEMENT : identification : login = serek ; password = isblatio , [82.227.53.218] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[22:19:58] AVERTISSEMENT : identification : login = serek ; password = isblatio , [82.227.53.218] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[22:20:06] AVERTISSEMENT : identification : login = serek ; password = isblatio45 , [82.227.53.218] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[22:20:13] AVERTISSEMENT : identification : login = GehNgiS ; password = axonfree , [90.27.22.200] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)] [http://hb.s-fr.com/?p=batiments]
[22:20:21] AVERTISSEMENT : identification : login = faucheur203 ; password = 15011991 , [81.185.244.218] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[22:20:28] AVERTISSEMENT : identification : login = JohnSpartan117 ; password = unscdf , [89.224.249.238] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 UGA6PV/2.2.362.4 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[22:20:50] AVERTISSEMENT : identification : login = ArtWolfou ; password = sonperteoc , [88.65.223.147] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; de; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[22:20:51] AVERTISSEMENT : identification : login = rockeur666 ; password = rockingmetallica , [96.20.241.189] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727)] [http://halo-battle.s-fr.com/]
[22:20:54] AVERTISSEMENT : identification : login = surt ; password = pMUqj2rf , [86.77.133.178] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=batiments]
[22:20:58] AVERTISSEMENT : identification : login = ArtWolfou ; password = sonpertoeco , [88.65.223.147] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; de; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[22:20:59] AVERTISSEMENT : identification : login = surt31 ; password = ERHvXwDq , [86.77.133.178] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=batiments]
[22:21:04] AVERTISSEMENT : identification : login = journuit ; password = jourdand , [84.100.121.192] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr-FR) AppleWebKit/525.18 (KHTML, like Gecko) Version/3.1.1 Safari/525.17] [http://halo-battle.s-fr.com/]
[22:21:08] AVERTISSEMENT : identification : login = misterquent ; password = quent1 , [83.197.209.222] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 ImageShackToolbar/3.0.4 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[22:21:13] AVERTISSEMENT : identification : login = Macxyd ; password = h255768 , [82.224.34.119] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.13;MEGAUPLOAD 1.0] [http://halo-battle.s-fr.com/]
[22:21:16] AVERTISSEMENT : identification : login = vinx ; password = fx4hmyym , [80.185.201.192] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; IE7-01NET.COM-1.1; .NET CLR 2.0.50727; IE7-01NET.COM-1.1)] [http://hb.s-fr.com/]
[22:21:25] AVERTISSEMENT : identification : login = sash ; password = sashque14 , [82.227.53.218] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[22:21:32] AVERTISSEMENT : identification : login = halo0001 ; password = maxous , [83.198.5.131] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 7.1; SV1; SIMBAR={3C6FBF82-329C-4C15-946D-6EDBF16456F3})] []
[22:21:36] AVERTISSEMENT : identification : login = surt31 ; password = ERHvXwDq , [86.77.133.178] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[22:21:38] AVERTISSEMENT : identification : login = AzNxStYle ; password = kikioo , [81.251.1.216] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[22:21:45] AVERTISSEMENT : identification : login = Thesawyer ; password = sawsaw , [77.201.69.80] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=batiments]
[22:21:46] AVERTISSEMENT : identification : login = toutou ; password = 241091 , [91.179.12.125] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)] [http://halo-battle.s-fr.com/]
[22:21:50] AVERTISSEMENT : identification : login = Nexy ; password = Tim97531 , [84.193.222.57] [POST] [/?log] [Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_2; fr-fr) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13] [http://halo-battle.s-fr.com/]
[22:21:55] AVERTISSEMENT : identification : login = OrnaFulsamee ; password = mjolnir , [89.224.249.238] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 UGA6PV/2.2.362.4 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[22:22:04] AVERTISSEMENT : identification : login = Cydus ; password = nopassword88 , [86.71.17.10] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?log]
[22:22:16] AVERTISSEMENT : identification : login = Tryo_Locass ; password = qwerty , [24.201.47.47] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[22:22:22] AVERTISSEMENT : identification : login = Cuizinier ; password = TIBO , [86.214.202.42] [POST] [/?log] [Mozilla/5.0 (Macintosh; U; Intel Mac OS X; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=prochainement]
[22:22:23] AVERTISSEMENT : identification : login = Autumn ; password = ChxEz3Ez , [82.225.132.55] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.9) Gecko/2008051206 Firefox/3.0] [http://halo-battle.s-fr.com/]
[22:22:51] AVERTISSEMENT : identification : login = D3V17 ; password = khornus-69 , [87.89.148.26] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[22:22:54] AVERTISSEMENT : identification : login = Falcon ; password = AURORA , [90.32.72.186] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[22:22:57] AVERTISSEMENT : identification : login = Finiarel ; password = gigihe , [88.165.226.79] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[22:22:59] AVERTISSEMENT : identification : login = FredSpartan104 ; password = hayate , [89.224.249.238] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 UGA6PV/2.2.362.4 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[22:23:09] AVERTISSEMENT : identification : login = Torsteven ; password = KepmvDBR , [91.164.111.18] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[22:23:14] AVERTISSEMENT : identification : login = sn00p51 ; password = marion0904 , [90.50.72.231] [POST] [/?log] [Opera/9.27 (Windows NT 5.1; U; fr)] [http://hb.s-fr.com/]
[22:23:18] AVERTISSEMENT : identification : login = gladou ; password = glagla , [82.227.69.130] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://www.halo-battle.s-fr.com/]
[22:23:22] AVERTISSEMENT : identification : login = Sgt_Wifs ; password = Victor15 , [209.169.128.108] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506)] [http://halo-battle.s-fr.com/]
[22:23:25] AVERTISSEMENT : identification : login = MasterChief ; password = 210290 , [90.29.95.40] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[22:23:26] AVERTISSEMENT : identification : login = Covyne ; password = ChxEz3Ez , [82.225.132.55] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.9) Gecko/2008051206 Firefox/3.0] [http://hb.s-fr.com/]
[22:23:28] AVERTISSEMENT : identification : login = Cokeuhlikhot ; password = bonescser , [77.194.89.103] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[22:23:30] AVERTISSEMENT : identification : login = arthur ; password = 147963 , [91.165.84.192] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[22:23:38] AVERTISSEMENT : inscription : login = ; password = , [82.216.224.67] [GET] [/?p=njoueur&nom=yopyop&race=humain&mdp=0b532c3b0d427ca9efe8d2ade8638eb53faa1667&mail=f.baradel@enim.fr&ti=1211487803&placement=vinx&cds=e6fd09842220cafceda656047f72bdc19a883e34] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506)] []
[22:23:50] AVERTISSEMENT : identification : login = Blade ; password = drmfslsd5 , [24.37.218.218] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; snprtz|S24806600000656|2600#Service Pack 2#2#5#1)] [http://halo-battle.s-fr.com/]
[22:23:53] AVERTISSEMENT : identification : login = ben43g ; password = Tidemon76 , [77.201.115.124] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; InfoPath.1)] [http://www.halo-battle.s-fr.com/]
[22:23:54] AVERTISSEMENT : identification : login = yopyop ; password = iserchospe , [82.216.224.67] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506)] [http://hb.s-fr.com/]
[22:24:18] AVERTISSEMENT : identification : login = Spartan022 ; password = ramirez2 , [85.3.108.45] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 1.1.4322)] [http://halo-battle.s-fr.com/]
[22:24:34] AVERTISSEMENT : identification : login = ludo01 ; password = yuWM4wiW , [87.90.128.103] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727)] [http://hb.s-fr.com/]
[22:24:43] AVERTISSEMENT : identification : login = ludo01 ; password = yuWM4wiW , [87.90.128.103] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727)] [http://hb.s-fr.com/]
[22:24:47] AVERTISSEMENT : inscription : login = ; password = , [82.124.184.70] [GET] [/?p=njoueur&nom=nicoya&race=humain&mdp=44e5ad7e0d3f116f7bc655f03135ca95f0e5fae3&mail=nicoya.benoit@gmail.com&ti=1211487838&placement=&cds=0fbb3cbfef0d1b859801a19041ba919ed88e351a] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] []
[22:24:56] AVERTISSEMENT : identification : login = sbym ; password = 6banane , [70.81.146.4] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727)] [http://halo-battle.s-fr.com/]
[22:24:58] AVERTISSEMENT : identification : login = nicoya ; password = stargate , [82.124.184.70] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?index]
[22:25:05] AVERTISSEMENT : identification : login = HurriCanE ; password = halo1et2 , [88.183.152.152] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=accueil]
[22:25:15] AVERTISSEMENT : identification : login = spartiate_300 ; password = finishthefight , [79.80.192.222] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)] [http://www.halo-battle.s-fr.com/]
[22:25:28] AVERTISSEMENT : identification : login = creme_danus ; password = naruto , [83.115.222.156] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=batiments&c=6]
[22:25:31] AVERTISSEMENT : identification : login = masterchief19 ; password = halo22 , [84.73.167.12] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[22:25:44] AVERTISSEMENT : identification : login = coq ; password = azertyuiop , [82.254.201.222] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[22:25:55] AVERTISSEMENT : identification : login = bidou ; password = fx4hmyym , [80.185.201.192] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; IE7-01NET.COM-1.1; .NET CLR 2.0.50727; IE7-01NET.COM-1.1)] [http://hb.s-fr.com/]
[22:26:05] AVERTISSEMENT : identification : login = bidou ; password = azertyuiop , [80.185.201.192] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; IE7-01NET.COM-1.1; .NET CLR 2.0.50727; IE7-01NET.COM-1.1)] [http://halo-battle.s-fr.com/]
[22:26:10] AVERTISSEMENT : identification : login = RtasVadum ; password = marinepower , [24.122.207.182] [POST] [/?log] [Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[22:26:29] AVERTISSEMENT : identification : login = madege ; password = wfusdfcf , [82.230.160.117] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.11;MEGAUPLOAD 1.0] [http://halo-battle.s-fr.com/]
[22:26:36] AVERTISSEMENT : identification : login = belen ; password = marineuh , [82.236.93.52] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)] [http://hb.s-fr.com/?p=accueil]
[22:26:39] AVERTISSEMENT : identification : login = gylom ; password = nylund , [24.203.158.76] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)] [http://hb.s-fr.com/]
[22:26:47] AVERTISSEMENT : identification : login = ludo199 ; password = yuWM4wiW , [87.90.128.103] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727)] [http://halo-battle.s-fr.com/]
[22:26:49] AVERTISSEMENT : identification : login = Turner ; password = zibulon , [83.198.233.244] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Wanadoo 6.2; SIMBAR={6AFBE1E4-0D3A-41b6-BED4-C420027A0BF2}; .NET CLR 1.1.4322; .NET CLR 2.0.50727)] [http://halo-battle.s-fr.com/]
[22:27:02] AVERTISSEMENT : identification : login = geubby ; password = sander17 , [81.221.133.75] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)] [http://halo-battle.s-fr.com/]
[22:27:05] AVERTISSEMENT : identification : login = Brazeniah ; password = whanyblalen , [82.247.84.216] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.8) Gecko/20071008 Firefox/2.0.0.8] [http://hb.s-fr.com/]
[22:27:08] AVERTISSEMENT : identification : login = Guismo ; password = 8Tjk274 , [82.235.48.231] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0)] [http://halo-battle.s-fr.com/]
[22:27:12] AVERTISSEMENT : identification : login = BakoFuinmalee ; password = 28250602 , [81.51.243.73] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SIMBAR={4D9FBA6A-EEFE-4B38-BBE4-8E696EE58A03}; Wanadoo 6.1; .NET CLR 1.1.4322)] [http://hb.s-fr.com/?p=alliances]
[22:27:14] AVERTISSEMENT : identification : login = viper117 ; password = lechat , [156.34.210.149] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 1.1.4322; InfoPath.2)] [http://halo-battle.s-fr.com/]
[22:27:16] AVERTISSEMENT : identification : login = vinx ; password = fx4hmyym , [80.185.201.192] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; IE7-01NET.COM-1.1; .NET CLR 2.0.50727; IE7-01NET.COM-1.1)] [http://hb.s-fr.com/]
[22:27:21] AVERTISSEMENT : identification : login = dornkirk ; password = 363636 , [89.84.147.81] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)] [http://halo-battle.s-fr.com/]
[22:27:25] AVERTISSEMENT : inscription : login = ; password = , [82.65.101.78] [GET] [/?p=njoueur&nom=flam7&race=humain&mdp=b3f2b1da5b9bff916066a1579a40a7a5d1f48b16&mail=stephane.joukoff@free.fr&ti=1211488007&placement=&cds=c11c133587a98fa651d56594ad0c80edae68cfe8] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.2)] []
[22:27:29] AVERTISSEMENT : identification : login = azaros ; password = multihalo , [81.56.204.149] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[22:27:30] AVERTISSEMENT : identification : login = Devilhunter117 ; password = devilpass , [80.170.121.242] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; InfoPath.1)] [http://hb.s-fr.com/?p=batiments]
[22:27:30] AVERTISSEMENT : identification : login = Audi ; password = T-tquattro-R8 , [86.215.23.83] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506)] [http://hb.s-fr.com/?p=ressources]
[22:27:32] AVERTISSEMENT : identification : login = KUROIMUSHA ; password = 161088 , [86.70.188.142] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=batiments]
[22:27:34] AVERTISSEMENT : identification : login = KiKi ; password = namour , [82.124.69.105] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)] [http://halo-battle.s-fr.com/]
[22:27:36] AVERTISSEMENT : identification : login = Momolink ; password = 010305 , [79.81.30.102] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; InfoPath.2; .NET CLR 1.1.4322)] [http://hb.s-fr.com/?p=batiments]
[22:27:37] AVERTISSEMENT : identification : login = bouillonpierre ; password = HtaprpdcseFc , [86.196.158.45] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506)] [http://hb.s-fr.com/]
[22:27:41] AVERTISSEMENT : identification : login = Spartan210 ; password = mjolnirdelta , [89.84.170.98] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[22:27:47] AVERTISSEMENT : identification : login = flam7 ; password = matrix7 , [82.65.101.78] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.2)] [http://hb.s-fr.com/?index]
[22:27:51] AVERTISSEMENT : identification : login = KillerCed ; password = rayman52 , [82.254.38.91] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[22:28:04] AVERTISSEMENT : identification : login = bodom ; password = 111666 , [90.17.177.34] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[22:28:07] AVERTISSEMENT : identification : login = Th3_LoRd_Of_WaR ; password = popo7894 , [89.89.21.242] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://www.halo-battle.s-fr.com/]
[22:28:15] AVERTISSEMENT : identification : login = harmoniz ; password = 123456 , [86.72.179.214] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?log]
[22:28:18] AVERTISSEMENT : identification : login = JohnSpartan117 ; password = unscdf , [89.224.249.238] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 UGA6PV/2.2.362.4 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[22:28:21] AVERTISSEMENT : identification : login = Rippalka ; password = fabregas05 , [83.204.119.240] [POST] [/?log] [Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.9b5) Gecko/2008050509 Firefox/3.0b5] [http://hb.s-fr.com/?p=accueil]
[22:28:28] AVERTISSEMENT : identification : login = Drogan ; password = quentin88 , [83.196.167.183] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://www.halo-battle.s-fr.com/]
[22:28:32] AVERTISSEMENT : inscription : login = ; password = , [87.90.128.103] [GET] [/?p=njoueur&nom=ludo199&race=humain&mdp=0c1feca6246f2f9bb7f9628d89a00ca06edd55ee&mail=chrystelle.le-paroux@club-internet.fr&ti=1211488091&placement=&cds=14f02cffb634a35cae3b39da7f840e4bffed93ac] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727)] []
[22:28:38] AVERTISSEMENT : identification : login = link94 ; password = 94347508 , [83.202.200.76] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 1.1.4322)] [http://hb.s-fr.com/]
[22:28:45] AVERTISSEMENT : identification : login = ludo199 ; password = yuWM4wiW , [87.90.128.103] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727)] [http://hb.s-fr.com/]
[22:28:48] AVERTISSEMENT : identification : login = Xp3 ; password = mpstraunqoik , [79.83.107.180] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; Creative ZENcast v1.02.10; .NET CLR 3.0.04506.648; Hotbar 10.0.356.0)] [http://halo-battle.s-fr.com/]
[22:28:58] AVERTISSEMENT : identification : login = Colonel_carter ; password = 28preveat , [74.57.196.55] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[22:29:12] AVERTISSEMENT : identification : login = blinx63 ; password = freeman , [82.249.11.201] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[22:29:22] AVERTISSEMENT : identification : login = Nephentis ; password = xamxamxam , [86.215.177.191] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=batiments]
[22:29:23] AVERTISSEMENT : identification : login = LukeBenMBay ; password = bcsvEMWG , [207.61.84.3] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; InfoPath.2; Zune 2.5; WWTClient2)] [http://hb.s-fr.com/]
[22:29:23] AVERTISSEMENT : identification : login = Major_117 ; password = samuel91 , [74.210.153.252] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[22:29:56] AVERTISSEMENT : identification : login = peanuts ; password = 231080 , [194.250.71.174] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)] [http://hb.s-fr.com/]
[22:30:04] AVERTISSEMENT : identification : login = benjamin ; password = 08091993 , [84.102.153.108] [POST] [/?log] [Mozilla/5.0 (Windows; U; Win98; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[22:30:09] AVERTISSEMENT : identification : login = SpaceDement ; password = clement56 , [92.129.9.150] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[22:30:37] AVERTISSEMENT : identification : login = vince51brut ; password = 030591 , [88.163.174.96] [POST] [/?log] [Mozilla/4.0 (PSP (PlayStation Portable); 2.00)] [http://halo-battle.s-fr.com/]
[22:30:39] AVERTISSEMENT : identification : login = Zandomee ; password = , [79.84.5.79] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)] [http://hb.s-fr.com/]
[22:30:53] AVERTISSEMENT : identification : login = Vadumee ; password = , [79.84.5.79] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)] [http://hb.s-fr.com/]
[22:30:59] AVERTISSEMENT : identification : login = vince51brut ; password = 030591 , [88.163.174.96] [POST] [/?log] [Mozilla/4.0 (PSP (PlayStation Portable); 2.00)] [http://halo-battle.s-fr.com/]
[22:30:59] AVERTISSEMENT : identification : login = Vadumee ; password = 1111 , [79.84.5.79] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)] [http://hb.s-fr.com/]
[22:31:04] AVERTISSEMENT : identification : login = Vadumee ; password = 0000 , [79.84.5.79] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)] [http://hb.s-fr.com/]
[22:31:13] AVERTISSEMENT : identification : login = Zandomee ; password = 1111 , [79.84.5.79] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)] [http://hb.s-fr.com/]
[22:31:16] AVERTISSEMENT : identification : login = Zigomar ; password = toytoy , [203.185.177.44] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=batiments]
[22:31:17] AVERTISSEMENT : identification : login = Zandomee ; password = 0000 , [79.84.5.79] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)] [http://hb.s-fr.com/]
[22:31:28] AVERTISSEMENT : identification : login = Barto ; password = tengreenor , [83.198.189.101] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[22:31:35] AVERTISSEMENT : identification : login = crimat ; password = sleepy , [67.71.23.24] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)] [http://halo-battle.s-fr.com/]
[22:31:35] AVERTISSEMENT : inscription : login = ; password = , [79.81.125.42] [GET] [/?p=njoueur&nom=zenders&race=humain&mdp=6263c230085f740fe54a46f05b974896502efdd8&mail=zenders@hotmail.fr&ti=1211488236&placement=&cds=cde375268fcafb2bf55c65d3ee9d1e1b33ff0861] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)] [http://bl108w.blu108.mail.live.com/mail/ApplicationMain_12.4.0080.0327.aspx?culture=fr-FR&hash=968793741]
[22:31:36] AVERTISSEMENT : identification : login = pico ; password = vesper74 , [91.172.163.197] [POST] [/?log] [Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.9b5) Gecko/2008050509 Firefox/3.0b5] [http://hb.s-fr.com/?p=batiments]
[22:31:43] AVERTISSEMENT : identification : login = masamune31 ; password = 51children69 , [86.77.133.178] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[22:31:48] AVERTISSEMENT : identification : login = renegade03 ; password = underworld , [81.247.45.151] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)] [http://hb.s-fr.com/]
[22:31:53] AVERTISSEMENT : identification : login = zenders ; password = armagedon33 , [79.81.125.42] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)] [http://hb.s-fr.com/]
[22:32:14] AVERTISSEMENT : identification : login = Dalanor_314 ; password = C19rlh14Spm! , [85.69.117.23] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)] [http://halo-battle.s-fr.com/]
[22:32:21] AVERTISSEMENT : identification : login = streykley ; password = 2aal810 , [87.89.187.62] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; IEMB3; GESV 1.4.9.0; GIAN 1.0.177.0; MEGAUPLOAD 2.0; IEMB3)] [http://hb.s-fr.com/]
[22:32:21] AVERTISSEMENT : identification : login = futurchaos ; password = shadow99 , [83.196.137.99] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://www.halo-battle.s-fr.com/]
[22:32:35] AVERTISSEMENT : identification : login = ryora ; password = camille , [90.12.103.141] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=alliances&q=signer&i=92443dc65d5bdac117b6722907e88f99b66f1d74]
[22:32:40] AVERTISSEMENT : identification : login = Dalanor ; password = C19rlh14spm! , [85.69.117.23] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)] [http://halo-battle.s-fr.com/]
[22:32:46] AVERTISSEMENT : identification : login = muay11 ; password = jimmy , [82.216.46.217] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[22:32:50] AVERTISSEMENT : identification : login = Thrider ; password = decembre , [87.88.199.116] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)] [http://halo-battle.s-fr.com/]
[22:32:53] MESSAGE : Création de l'alliance : Chasseurs par 2661 (fondateur : 1960) après validation de 4 signatures : 1677, 2185, 20082661 , [90.12.103.141] [GET] [/?p=alliances&q=signer&i=4b4036eb1a4b5ff42a1781dc357d0cf1bc4d7919] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] []
[22:32:57] AVERTISSEMENT : identification : login = FreeJo ; password = nideker , [83.200.10.114] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=batiments]
[22:32:58] AVERTISSEMENT : identification : login = M4N ; password = halo9778 , [90.21.217.154] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; FDM)] [http://halo-battle.s-fr.com/]
[22:33:15] AVERTISSEMENT : identification : login = Leherau ; password = motdepasse , [77.204.255.2] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[22:33:24] AVERTISSEMENT : identification : login = foster ; password = azerty , [82.227.230.70] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)] [http://www.halo-battle.s-fr.com/]
[22:33:54] AVERTISSEMENT : identification : login = miel ; password = azerty , [82.227.230.70] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)] [http://hb.s-fr.com/]
[22:34:12] AVERTISSEMENT : identification : login = Eldar ; password = spartankurt054 , [90.15.167.181] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; IE7-01NET.COM-1.1; IE7-01NET.COM-1.1)] [http://halo-battle.s-fr.com/]
[22:34:29] AVERTISSEMENT : identification : login = maggie ; password = 8essou , [82.227.230.70] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)] [http://hb.s-fr.com/]
[22:34:39] AVERTISSEMENT : identification : login = salem ; password = , [86.69.174.152] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SIMBAR={8642ADED-2671-42D4-9965-3B89709C42B9}; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; InfoPath.2)] [http://halo-battle.s-fr.com/]
[22:34:47] AVERTISSEMENT : identification : login = salem ; password = sabilya , [86.69.174.152] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SIMBAR={8642ADED-2671-42D4-9965-3B89709C42B9}; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; InfoPath.2)] [http://halo-battle.s-fr.com/]
[22:35:09] AVERTISSEMENT : identification : login = Frigo ; password = sr38814 , [82.121.129.15] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; IE7-01NET.COM-1.1; IE7-01NET.COM-1.1)] [http://hb.s-fr.com/?p=accueil]
[22:35:23] AVERTISSEMENT : identification : login = Leader ; password = 280519881988 , [79.89.243.85] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[22:35:38] AVERTISSEMENT : identification : login = _Endymion_ ; password = ENDYMION_01 , [80.200.202.245] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[22:35:40] AVERTISSEMENT : identification : login = yougo ; password = lulu35 , [91.171.132.127] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506)] [http://hb.s-fr.com/?p=accueil]
[22:35:58] AVERTISSEMENT : identification : login = squall ; password = wolfeal44 , [83.186.53.76] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=accueil]
[22:36:00] AVERTISSEMENT : identification : login = isna_nosolee ; password = kasumii117 , [84.102.153.108] [POST] [/?log] [Mozilla/5.0 (Windows; U; Win98; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[22:36:02] AVERTISSEMENT : identification : login = data ; password = matrix30 , [77.204.73.158] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[22:36:10] AVERTISSEMENT : identification : login = sebseba ; password = mardi19fevrier , [86.215.96.85] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14;MEGAUPLOAD 1.0] [http://halo-battle.s-fr.com/]
[22:36:25] AVERTISSEMENT : identification : login = spectro ; password = MABILLE , [81.220.115.114] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 1.1.4322)] [http://hb.s-fr.com/]
[22:36:35] AVERTISSEMENT : identification : login = gallileli_yonhk ; password = iceage , [80.200.238.182] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[22:36:37] AVERTISSEMENT : inscription : login = ; password = , [66.249.65.113] [GET] [/?p=njoueur&nom=happycoq&race=humain&mdp=2e20b2e47cbd3eb6b23aaa52b5745595a791e21d&mail=vexx57@hotmail.fr&ti=1211486341&placement=&cds=eb9d08c1fae05bdf11cedd2f3b341de17831bba8] [Mediapartners-Google] []
[22:36:38] AVERTISSEMENT : identification : login = Neocide ; password = Snakes , [83.206.120.8] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.0; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[22:36:38] AVERTISSEMENT : inscription : login = ; password = , [66.249.65.113] [GET] [/?p=njoueur&nom=happycoq&race=humain&mdp=2e20b2e47cbd3eb6b23aaa52b5745595a791e21d&mail=vexx57@hotmail.fr&ti=1211486341&placement=&cds=eb9d08c1fae05bdf11cedd2f3b341de17831bba8] [Mediapartners-Google] []
[22:36:44] AVERTISSEMENT : identification : login = Dax ; password = chocolat , [83.114.118.19] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=batiments]
[22:36:50] AVERTISSEMENT : identification : login = lysanderr ; password = louis77 , [89.156.112.91] [POST] [/?log] [Opera/9.27 (Windows NT 5.1; U; fr)] [http://hb.s-fr.com/?p=accueil]
[22:36:57] AVERTISSEMENT : identification : login = Dragosh ; password = dragosh , [83.114.160.160] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)] [http://hb.s-fr.com/]
[22:36:57] AVERTISSEMENT : identification : login = Jonhy_La_Vache ; password = babouin , [24.201.47.47] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)] [http://halo-battle.s-fr.com/]
[22:37:00] AVERTISSEMENT : identification : login = Guilt ; password = pentioper117 , [83.201.83.201] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[22:37:06] AVERTISSEMENT : identification : login = shock ; password = xboxlive , [77.192.10.165] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[22:37:07] AVERTISSEMENT : identification : login = Faucheur ; password = Cassandra13 , [84.100.108.243] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=accueil]
[22:37:07] AVERTISSEMENT : identification : login = Alterans ; password = 1369 , [90.29.95.40] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[22:37:29] AVERTISSEMENT : identification : login = shepard ; password = medion , [91.163.66.240] [POST] [/?log] [Mozilla/4.0 (PSP (PlayStation Portable); 2.00)] [http://hb.s-fr.com/?p=accueil]
[22:37:43] AVERTISSEMENT : identification : login = -seth- ; password = orka122448orka , [86.216.199.73] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; InfoPath.2)] [http://hb.s-fr.com/]
[22:37:51] AVERTISSEMENT : identification : login = sashreal ; password = sashque , [82.227.53.218] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[22:38:05] AVERTISSEMENT : identification : login = trinity ; password = 122448 , [86.216.199.73] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; InfoPath.2)] [http://hb.s-fr.com/]
[22:38:17] AVERTISSEMENT : identification : login = Spartan_777 ; password = starwars , [88.163.170.164] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr-FR) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13.3] [http://hb.s-fr.com/?p=batiments]
[22:38:25] AVERTISSEMENT : identification : login = FDL_Nightm4re ; password = haloo2 , [71.51.11.235] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506)] [http://www.halo-battle.s-fr.com/]
[22:38:31] AVERTISSEMENT : identification : login = darkarmin22 ; password = starwars , [81.53.102.94] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)] [http://hb.s-fr.com/]
[22:38:37] AVERTISSEMENT : identification : login = NiamyStyle ; password = ViRgUlE87.com , [212.195.121.208] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[22:38:40] AVERTISSEMENT : identification : login = jeremex ; password = operation , [74.14.193.181] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)] [http://hb.s-fr.com/]
[22:38:52] AVERTISSEMENT : identification : login = Koriggan ; password = lerpok87 , [81.249.83.136] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.9b5) Gecko/2008032620 Firefox/3.0b5] [http://halo-battle.s-fr.com/]
[22:39:00] AVERTISSEMENT : identification : login = orel ; password = ZangetsU , [89.85.205.191] [POST] [/?log] [Mozilla/5.0 (Macintosh; U; Intel Mac OS X; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=batiments]
[22:39:03] AVERTISSEMENT : identification : login = jeremex ; password = operation , [74.14.193.181] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)] [http://hb.s-fr.com/]
[22:39:04] AVERTISSEMENT : identification : login = bigheaven ; password = jojojojo , [41.200.136.169] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FDM; MSN Optimized;FR; MSN Optimized;FR)] [http://www.halo-battle.s-fr.com/]
[22:39:04] AVERTISSEMENT : identification : login = Simeria666 ; password = finale , [81.51.123.52] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)] [http://halo-battle.s-fr.com/]
[22:39:09] AVERTISSEMENT : identification : login = tigershark ; password = lilipuce , [92.129.78.153] [POST] [/?log] [Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[22:39:12] AVERTISSEMENT : identification : login = jeremex ; password = operation , [74.14.193.181] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)] [http://hb.s-fr.com/]
[22:39:35] AVERTISSEMENT : identification : login = punky ; password = france! , [82.64.185.93] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)] [http://halo-battle.s-fr.com/]
[22:39:41] AVERTISSEMENT : identification : login = syracuse ; password = 20098478 , [82.124.144.239] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=arbre]
[22:39:42] AVERTISSEMENT : identification : login = lifelike ; password = salut77 , [90.35.195.108] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[22:39:53] AVERTISSEMENT : identification : login = spartan73 ; password = monchiennala , [77.197.36.210] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[22:39:54] AVERTISSEMENT : identification : login = spartiates ; password = cypress.hill , [91.179.48.27] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)] [http://hb.s-fr.com/]
[22:39:55] AVERTISSEMENT : identification : login = Gohan ; password = megajoke , [77.197.172.223] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=batiments]
[22:39:56] AVERTISSEMENT : identification : login = Metalo ; password = dgc8r9999 , [83.115.198.122] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)] [http://halo-battle.s-fr.com/]
[22:39:56] AVERTISSEMENT : identification : login = reelsy ; password = nemonemo , [88.182.4.132] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)] [http://halo-battle.s-fr.com/]
[22:40:01] AVERTISSEMENT : identification : login = shynra ; password = linda046 , [83.197.94.39] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[22:40:02] AVERTISSEMENT : identification : login = slym ; password = 99064622646099. , [96.20.241.189] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727)] [http://hb.s-fr.com/]
[22:40:14] AVERTISSEMENT : identification : login = Dorian ; password = starwars , [88.163.170.164] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr-FR) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13.3] [http://hb.s-fr.com/]
[22:40:20] AVERTISSEMENT : identification : login = stargatesg68 ; password = 3testament , [86.63.245.88] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[22:40:22] AVERTISSEMENT : identification : login = ODSToXide105 ; password = 08111991 , [89.87.1.153] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 1.1.4322)] [http://hb.s-fr.com/?p=prochainement]
[22:40:42] AVERTISSEMENT : identification : login = Capone ; password = olympique , [86.213.217.38] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=prochainement]
[22:40:49] AVERTISSEMENT : identification : login = Jonhy_La_Vache ; password = babouin , [24.201.47.47] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)] [http://hb.s-fr.com/?p=prochainement]
[22:40:55] AVERTISSEMENT : identification : login = DARK_NAWAK ; password = 27892789 , [90.23.60.11] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[22:40:57] AVERTISSEMENT : inscription : login = ; password = , [81.253.58.97] [GET] [/?p=njoueur&nom=Oxi&race=covenant&mdp=a5a3e27de8a0904e20d5a6ae3e4a5f166952ac94&mail=drasilio@free.fr&ti=1211486891&placement=Birmania&cds=b082215be64d23ccb3e60a6dff9881e845f5c406] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; MSN Optimized;FR)] []
[22:41:09] AVERTISSEMENT : identification : login = armagadon ; password = narseaporce , [74.14.193.181] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)] [http://hb.s-fr.com/]
[22:41:09] AVERTISSEMENT : identification : login = Dorian ; password = starwars , [88.163.170.164] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr-FR) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13.3] [http://hb.s-fr.com/]
[22:41:16] AVERTISSEMENT : identification : login = tito14000 ; password = 1207 , [78.113.63.53] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.9) Gecko/20071025 Firefox/2.0.0.9] [http://halo-battle.s-fr.com/]
[22:41:17] AVERTISSEMENT : identification : login = El_Torus ; password = 69forever , [90.59.34.162] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[22:41:18] AVERTISSEMENT : identification : login = Oxi ; password = juleade , [81.253.58.97] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; MSN Optimized;FR)] [http://hb.s-fr.com/?index]
[22:41:20] AVERTISSEMENT : identification : login = Trinity ; password = orka122448orka , [86.216.199.73] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; InfoPath.2)] [http://hb.s-fr.com/]
[22:41:22] AVERTISSEMENT : identification : login = batcat ; password = irer13vet , [83.205.138.58] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; SIMBAR={B9AF4946-81C0-40DF-B92F-C446D8C35761}; Orange 7.4 ; NaviWoo1.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0)] [http://halo-battle.s-fr.com/]
[22:41:27] AVERTISSEMENT : identification : login = FDL_Rapace ; password = spartan , [90.12.20.167] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?log]
[22:41:28] AVERTISSEMENT : identification : login = Dorian_V ; password = starwars , [88.163.170.164] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr-FR) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13.3] [http://hb.s-fr.com/]
[22:41:32] AVERTISSEMENT : identification : login = Moloc54 ; password = 61622590 , [81.56.118.57] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.9b5) Gecko/2008032620 Firefox/3.0b5] [http://hb.s-fr.com/?p=batiments]
[22:41:35] AVERTISSEMENT : identification : login = Oxi ; password = JULEADE , [81.253.58.97] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; MSN Optimized;FR)] [http://halo-battle.s-fr.com/]
[22:41:42] AVERTISSEMENT : identification : login = gallileli_yonhk ; password = icage , [81.240.120.59] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=arbre]
[22:41:46] AVERTISSEMENT : identification : login = FredSpartan104 ; password = hayate , [89.224.249.238] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 UGA6PV/2.2.362.4 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[22:41:46] AVERTISSEMENT : identification : login = gallileli_yonhk ; password = iceage , [81.240.120.59] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[22:41:47] AVERTISSEMENT : identification : login = Trinity ; password = 1224 , [86.216.199.73] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; InfoPath.2)] [http://hb.s-fr.com/]
[22:41:51] AVERTISSEMENT : identification : login = GogolBlanc ; password = 6977143 , [86.69.122.137] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[22:42:07] AVERTISSEMENT : identification : login = Trinity ; password = orka122448orka , [86.216.199.73] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; InfoPath.2)] [http://hb.s-fr.com/]
[22:42:07] AVERTISSEMENT : identification : login = ironskin ; password = cold , [24.203.245.77] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Windows 98)] [http://hb.s-fr.com/]
[22:42:11] AVERTISSEMENT : identification : login = Dorian_V_777 ; password = starwars , [88.163.170.164] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr-FR) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13.3] [http://hb.s-fr.com/]
[22:42:13] AVERTISSEMENT : identification : login = sevoth ; password = Bakara , [82.227.48.97] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr-FR) AppleWebKit/525.18 (KHTML, like Gecko) Version/3.1.1 Safari/525.17] [http://hb.s-fr.com/]
[22:42:21] AVERTISSEMENT : identification : login = Ironskin ; password = predalia1 , [24.203.245.77] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Windows 98)] [http://hb.s-fr.com/]
[22:42:23] AVERTISSEMENT : identification : login = -seth- ; password = orka122448orka , [86.216.199.73] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; InfoPath.2)] [http://hb.s-fr.com/]
[22:42:48] AVERTISSEMENT : identification : login = Largueur ; password = frapper , [90.6.105.197] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=batiments]
[22:42:51] AVERTISSEMENT : identification : login = iRobbest ; password = jtm2tpcamille.069 , [86.195.107.58] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 1.1.4322)] [http://www.halo-battle.s-fr.com/]
[22:43:23] AVERTISSEMENT : identification : login = privighost ; password = fantomes , [86.211.137.227] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[22:43:56] AVERTISSEMENT : identification : login = adjudant ; password = FMAecho419 , [85.68.148.197] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[22:44:01] AVERTISSEMENT : identification : login = Fouldon ; password = boubou123 , [77.205.104.140] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=batiments]
[22:44:02] AVERTISSEMENT : identification : login = Neo ; password = zorglube , [77.202.15.133] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[22:44:04] AVERTISSEMENT : identification : login = terminarnold ; password = starwars , [90.63.4.150] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)] [http://halo-battle.s-fr.com/]
[22:44:12] AVERTISSEMENT : identification : login = shaeera ; password = pamapama , [89.83.82.107] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; Creative ZENcast v1.02.12)] [http://hb.s-fr.com/?p=batiments]
[22:44:27] AVERTISSEMENT : identification : login = dibal ; password = 198808 , [82.125.81.182] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[22:44:28] AVERTISSEMENT : identification : login = lou_38 ; password = gcbfahda94862 , [82.255.172.136] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=batiments]
[22:45:08] AVERTISSEMENT : identification : login = Ballistic ; password = ghtsoncs46 , [82.67.235.144] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[22:45:20] AVERTISSEMENT : identification : login = darksarge ; password = 12345678 , [24.122.34.77] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[22:45:30] AVERTISSEMENT : identification : login = ; password = , [70.81.239.181] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)] [http://halo-battle.s-fr.com/]
[22:45:55] AVERTISSEMENT : identification : login = jo725 ; password = halo-delta , [70.81.239.181] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)] [http://hb.s-fr.com/]
[22:45:56] AVERTISSEMENT : identification : login = tito14 ; password = 1207 , [78.113.63.53] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.9) Gecko/20071025 Firefox/2.0.0.9] [http://hb.s-fr.com/]
[22:46:27] AVERTISSEMENT : identification : login = PM_Legolas ; password = blaster , [85.68.149.56] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.9;MEGAUPLOAD 1.0] [http://hb.s-fr.com/?p=alliances&q=signer]
[22:46:32] AVERTISSEMENT : identification : login = apocalypsus ; password = ararar , [89.3.7.243] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506)] [http://halo-battle.s-fr.com/]
[22:46:43] AVERTISSEMENT : identification : login = vaxper77 ; password = 4xigqipm , [88.136.160.242] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727)] [http://hb.s-fr.com/]
[22:46:58] AVERTISSEMENT : identification : login = wako ; password = 22360034 , [90.25.148.82] [POST] [/?log] [Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.9b5) Gecko/2008050509 Firefox/3.0b5] [http://hb.s-fr.com/?index]
[22:47:02] AVERTISSEMENT : identification : login = john_rider ; password = pa172728 , [86.204.16.147] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[22:47:11] AVERTISSEMENT : identification : login = guilde ; password = lyonnais , [90.42.24.162] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.9] [http://hb.s-fr.com/?p=batiments]
[22:47:21] AVERTISSEMENT : identification : login = francois117 ; password = 11793 , [83.154.150.47] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=batiments]
[22:47:42] AVERTISSEMENT : identification : login = Aaa ; password = palpatin , [213.103.245.89] [POST] [/?log] [Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.8.1.8) Gecko/20071022 Ubuntu/7.10 (gutsy) Firefox/2.0.0.8] [http://hb.s-fr.com/]
[22:47:46] AVERTISSEMENT : identification : login = wesker ; password = francois , [82.251.136.215] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=messagerie]
[22:48:07] AVERTISSEMENT : identification : login = articnation ; password = expresso , [90.4.213.207] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.9b5) Gecko/2008032620 Firefox/3.0b5] [http://hb.s-fr.com/]
[22:48:11] AVERTISSEMENT : identification : login = john_rider ; password = pa172728 , [86.204.16.147] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[22:48:15] AVERTISSEMENT : identification : login = articnation ; password = expresso , [90.4.213.207] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.9b5) Gecko/2008032620 Firefox/3.0b5] [http://hb.s-fr.com/]
[22:48:16] AVERTISSEMENT : identification : login = edward ; password = 369369 , [86.197.94.214] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=batiments]
[22:48:21] AVERTISSEMENT : identification : login = WulFen ; password = heretique , [88.160.149.129] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)] [http://halo-battle.s-fr.com/]
[22:48:25] AVERTISSEMENT : identification : login = boulet34 ; password = bob344103 , [80.170.5.242] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.9) Gecko/2008051206 Firefox/3.0] [http://hb.s-fr.com/]
[22:48:28] AVERTISSEMENT : identification : login = articnation ; password = expresso , [90.4.213.207] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.9b5) Gecko/2008032620 Firefox/3.0b5] [http://hb.s-fr.com/]
[22:48:53] AVERTISSEMENT : identification : login = Max_Le_Rockeur ; password = nimporteequoi , [96.20.226.27] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)] [http://hb.s-fr.com/]
[22:48:57] AVERTISSEMENT : identification : login = lekgolo59 ; password = halo59 , [89.87.225.182] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[22:49:05] AVERTISSEMENT : identification : login = FDL_Rapace ; password = spartan , [90.12.253.17] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?log]
[22:49:10] AVERTISSEMENT : identification : login = Max_Le_Rockeur ; password = nimportequoi , [96.20.226.27] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)] [http://hb.s-fr.com/]
[22:49:20] AVERTISSEMENT : identification : login = faucheur203 ; password = 15011991 , [81.185.244.218] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[22:49:22] AVERTISSEMENT : identification : login = sash ; password = sashque14 , [82.227.53.218] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[22:49:43] AVERTISSEMENT : identification : login = cortana ; password = gab150890 , [86.200.118.112] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=accueil]
[22:49:44] AVERTISSEMENT : identification : login = DARKTUEURR ; password = DARKtueur117 , [81.53.160.19] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[22:50:16] AVERTISSEMENT : identification : login = serek ; password = isblatio45 , [82.227.53.218] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[22:50:29] AVERTISSEMENT : identification : login = Morgan117 ; password = halo21011 , [86.71.45.189] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[22:50:33] AVERTISSEMENT : identification : login = john150 ; password = 15091991 , [89.2.187.162] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[22:50:34] AVERTISSEMENT : identification : login = articnation ; password = expresso , [90.4.213.207] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.9b5) Gecko/2008032620 Firefox/3.0b5] [http://hb.s-fr.com/]
[22:50:41] AVERTISSEMENT : identification : login = TomasGreen ; password = 0164086015 , [90.61.36.192] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=laboratoire]
[22:50:43] AVERTISSEMENT : identification : login = Borkan ; password = 0806vic92 , [90.34.147.28] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727)] [http://hb.s-fr.com/]
[22:50:55] AVERTISSEMENT : identification : login = tenuva ; password = digipoke , [66.57.30.189] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=batiments]
[22:50:58] AVERTISSEMENT : identification : login = cortana ; password = spartan117 , [86.194.148.233] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727)] [http://hb.s-fr.com/]
[22:51:04] AVERTISSEMENT : identification : login = Zehirmhann31 ; password = couronne31 , [86.70.214.191] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[22:51:13] AVERTISSEMENT : identification : login = cortana ; password = cortana1990 , [86.194.148.233] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727)] [http://hb.s-fr.com/]
[22:51:23] AVERTISSEMENT : identification : login = cortana ; password = gaby1990 , [86.194.148.233] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727)] [http://hb.s-fr.com/]
[22:51:29] AVERTISSEMENT : identification : login = cortana ; password = byga1990 , [86.194.148.233] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727)] [http://hb.s-fr.com/]
[22:51:49] AVERTISSEMENT : identification : login = Hard ; password = ookk15spe4 , [83.201.83.201] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=batiments]
[22:51:55] AVERTISSEMENT : identification : login = Neo ; password = zorglube , [77.202.15.133] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[22:52:02] AVERTISSEMENT : identification : login = marmotte ; password = satan666 , [90.44.179.125] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[22:52:06] AVERTISSEMENT : identification : login = masterchiefs ; password = celine , [82.230.174.32] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506)] [http://hb.s-fr.com/]
[22:52:18] AVERTISSEMENT : identification : login = pix ; password = pthe3172 , [207.61.84.135] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.1) Gecko/20061204 Firefox/2.0.0.1] [http://halo-battle.s-fr.com/]
[22:52:41] AVERTISSEMENT : identification : login = Sgt_Wifs ; password = Victor15 , [209.169.128.121] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506)] [http://halo-battle.s-fr.com/]
[22:52:45] AVERTISSEMENT : identification : login = master_chief ; password = dd1393 , [24.122.174.88] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)] [http://halo-battle.s-fr.com/]
[22:53:01] AVERTISSEMENT : inscription : login = ; password = , [66.249.65.113] [GET] [/?p=njoueur&nom=jeremex&race=humain&mdp=7ef1475babf49c2a5395d72e8b3994a706cf448a&mail=je_baseball@hotmail.com&ti=1211488601&placement=&cds=3c7937cb06481a32c628012f2533570b3ab937d1] [Mediapartners-Google] []
[22:53:02] AVERTISSEMENT : inscription : login = ; password = , [66.249.65.113] [GET] [/?p=njoueur&nom=jeremex&race=humain&mdp=7ef1475babf49c2a5395d72e8b3994a706cf448a&mail=je_baseball@hotmail.com&ti=1211488601&placement=&cds=3c7937cb06481a32c628012f2533570b3ab937d1] [Mediapartners-Google] []
[22:53:08] AVERTISSEMENT : identification : login = Sura ; password = gvqrt6mg , [77.205.165.111] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=prochainement]
[22:53:14] AVERTISSEMENT : identification : login = muay11 ; password = jimmy , [82.216.46.217] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[22:53:15] AVERTISSEMENT : inscription : login = ; password = , [74.14.193.181] [GET] [/?p=njoueur&nom=jeremex&race=humain&mdp=7ef1475babf49c2a5395d72e8b3994a706cf448a&mail=je_baseball@hotmail.com&ti=1211488601&placement=&cds=3c7937cb06481a32c628012f2533570b3ab937d1] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)] [http://by121w.bay121.mail.live.com/mail/ReadMessageLight.aspx?FolderID=00000000-0000-0000-0000-000000000001&ReadMessageId=bd0f32f6-1349-4b60-895c-d8b96c779d63&n=1542157715]
[22:53:16] AVERTISSEMENT : identification : login = sashreal ; password = sashque , [82.227.53.218] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[22:53:20] AVERTISSEMENT : identification : login = SPARTAN_104_FRED ; password = A248036663 , [90.57.196.110] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://www.halo-battle.s-fr.com/]
[22:53:25] AVERTISSEMENT : identification : login = jeremex ; password = operation , [74.14.193.181] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)] [http://hb.s-fr.com/?index]
[22:53:30] AVERTISSEMENT : identification : login = frere_28 ; password = 070103 , [82.224.238.96] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; InfoPath.2; MSN Optimized;FR)] [http://hb.s-fr.com/?p=batiments]
[22:53:43] AVERTISSEMENT : identification : login = Tianaka ; password = dungeon , [86.211.215.232] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 1.1.4322; MAXTHON 2.0)] [http://hb.s-fr.com/?p=accueil]
[22:53:44] AVERTISSEMENT : identification : login = revan ; password = morpheus92 , [86.68.213.197] [POST] [/?log] [Opera/9.25 (Windows NT 6.0; U; fr)] [http://hb.s-fr.com/?p=accueil]
[22:53:54] AVERTISSEMENT : identification : login = wolfy ; password = artica , [80.125.172.161] [POST] [/?log] [PPC; 240x320; HTC_P3450/1.0 Profile/MIDP-2.0 Configuration/CLDC-1.1 Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 7.6)] [http://halo-battle.s-fr.com/]
[22:54:00] AVERTISSEMENT : identification : login = MasterChief ; password = 210290 , [90.29.95.40] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[22:54:08] AVERTISSEMENT : identification : login = orel ; password = ZangetsU , [89.85.205.191] [POST] [/?log] [Mozilla/5.0 (Macintosh; U; Intel Mac OS X; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[22:54:19] AVERTISSEMENT : inscription : login = ; password = , [90.4.213.207] [GET] [/?p=njoueur&nom=artic_nation&race=covenant&mdp=6cd008811abbc956c24f55801bdd43bbccb65aac&mail=totalweed@gmail.com&ti=1211489549&placement=&cds=e1cdecf8c0261d514d4cd9490326415718b3f35c] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.9b5) Gecko/2008032620 Firefox/3.0b5] []
[22:54:28] AVERTISSEMENT : identification : login = wolvgamer ; password = phoenix , [86.206.133.34] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://www.halo-battle.s-fr.com/]
[22:54:32] AVERTISSEMENT : identification : login = artic_nation ; password = expresso , [90.4.213.207] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.9b5) Gecko/2008032620 Firefox/3.0b5] [http://hb.s-fr.com/]
[22:54:37] AVERTISSEMENT : identification : login = smat121 ; password = jaimelespops , [74.13.157.40] [POST] [/?log] [Opera/9.21 (Windows NT 5.1; U; fr)] [http://hb.s-fr.com/?p=batiments]
[22:55:14] AVERTISSEMENT : identification : login = changsito ; password = halo , [83.192.62.146] [POST] [/?log] [Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.9b5) Gecko/2008050509 Firefox/3.0b5] [http://hb.s-fr.com/]
[22:55:28] AVERTISSEMENT : identification : login = john_rider ; password = pa172728 , [86.204.16.147] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[22:55:37] AVERTISSEMENT : identification : login = LGLKIV ; password = LEMPERRIERE , [82.125.140.231] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506)] [http://halo-battle.s-fr.com/]
[22:55:38] AVERTISSEMENT : identification : login = XBGBigJuju14 ; password = ursula , [82.65.132.28] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=accueil]
[22:55:39] AVERTISSEMENT : identification : login = VULCHOK ; password = lr1218250790 , [86.200.107.19] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=accueil]
[22:56:07] AVERTISSEMENT : identification : login = LuXian ; password = sophie2412 , [90.11.19.122] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[22:56:45] AVERTISSEMENT : identification : login = Yoda206 ; password = moimoimoi123 , [86.193.90.218] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Nitro) Opera 8.50 [fr]] [http://halo-battle.s-fr.com/]
[22:56:54] AVERTISSEMENT : identification : login = Killnitro ; password = tartitoe , [86.195.251.135] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[22:57:13] AVERTISSEMENT : identification : login = ronflex1903 ; password = Txh2OpYN , [77.206.45.105] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SIMBAR={7E937046-E6FF-11DC-BE32-001558A1D457}; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506)] [http://hb.s-fr.com/]
[22:57:24] AVERTISSEMENT : identification : login = HalomanFr ; password = Cortana , [83.200.82.249] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[22:57:29] AVERTISSEMENT : identification : login = fox ; password = 1990 , [213.169.164.218] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.8 ImageShackToolbar/4.4.3] [http://halo-battle.s-fr.com/]
[22:58:14] AVERTISSEMENT : identification : login = leside ; password = 851m3092 , [70.83.110.105] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[22:58:16] AVERTISSEMENT : identification : login = dubuc ; password = pertenten3 , [76.68.196.39] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)] [http://hb.s-fr.com/]
[22:58:25] AVERTISSEMENT : identification : login = LeitO ; password = Twister , [84.82.87.208] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=accueil]
[22:58:52] AVERTISSEMENT : identification : login = frankorys ; password = pottake , [66.129.139.248] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)] [http://halo-battle.s-fr.com/]
[22:58:58] AVERTISSEMENT : identification : login = hunter ; password = battlefield2 , [64.18.168.133] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)] [http://halo-battle.s-fr.com/]
[22:59:10] AVERTISSEMENT : identification : login = Hiryuu ; password = zelda0 , [82.224.34.119] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=accueil]
[22:59:14] AVERTISSEMENT : identification : login = blinx63 ; password = freeman , [82.249.11.201] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[22:59:20] AVERTISSEMENT : identification : login = koukou ; password = azerty , [82.122.161.133] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[22:59:23] AVERTISSEMENT : identification : login = Yuan ; password = faramir8 , [84.11.137.86] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322)] [http://www.halo-battle.s-fr.com]
[22:59:25] AVERTISSEMENT : identification : login = stinger ; password = joirokfi , [82.242.88.43] [POST] [/?log] [Mozilla/5.0 (SymbianOS/9.2; U; Series60/3.1 NokiaN95_8GB/10.0.021; Profile/MIDP-2.0 Configuration/CLDC-1.1 ) AppleWebKit/413 (KHTML, like Gecko) Safari/413] [http://www.halo-battle.s-fr.com/]
[22:59:40] AVERTISSEMENT : identification : login = PascalTKD ; password = 9836461 , [67.68.105.89] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)] [http://halo-battle.s-fr.com/]
[22:59:47] AVERTISSEMENT : identification : login = IIsplashII ; password = 2539xbox , [86.71.220.88] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; InfoPath.2)] [http://halo-battle.s-fr.com/]
[22:59:52] AVERTISSEMENT : identification : login = armagadon ; password = narseaporce , [74.14.193.181] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)] [http://www.halo-battle.s-fr.com/]
[22:59:53] AVERTISSEMENT : identification : login = dubucinq ; password = rossignol , [216.99.32.150] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727)] [http://www.halo-battle.s-fr.com/]
[22:59:57] AVERTISSEMENT : identification : login = krys22 ; password = vodkacinq , [92.130.149.143] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[23:00:26] AVERTISSEMENT : identification : login = Warlock17 ; password = 455905 , [81.56.165.75] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?index]
[23:00:32] AVERTISSEMENT : identification : login = thecat ; password = doc7323 , [90.37.9.164] [POST] [/?log] [DSOrganize Web Browser] [http://hb.s-fr.com/]
[23:00:53] AVERTISSEMENT : identification : login = jeffreyhalo03 ; password = 396k396k , [83.180.110.150] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=accueil]
[23:01:07] AVERTISSEMENT : identification : login = SpaceCowBoy ; password = specilal9 , [82.241.182.142] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=accueil]
[23:01:32] AVERTISSEMENT : identification : login = ox30 ; password = 17101990 , [83.68.203.34] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SIMBAR={0804FBB5-B564-41ff-AEED-AC59C7FEC65B}; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; InfoPath.1)] [http://halo-battle.s-fr.com/]
[23:01:50] AVERTISSEMENT : identification : login = Killeroudoudou ; password = battlefield , [79.86.51.74] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=batiments]
[23:02:25] AVERTISSEMENT : identification : login = deathslave ; password = tijuana23 , [82.234.211.179] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506)] [http://halo-battle.s-fr.com/]
[23:02:52] AVERTISSEMENT : identification : login = cronos78 ; password = anthony , [83.199.75.97] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)] [http://halo-battle.s-fr.com/]
[23:02:57] AVERTISSEMENT : identification : login = LukeBenMBay ; password = bcsvEMWG , [207.61.84.10] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; Zune 2.5; .NET CLR 3.5.21022)] [http://hb.s-fr.com/]
[23:03:25] AVERTISSEMENT : identification : login = tito14 ; password = 1207 , [78.113.63.53] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.9) Gecko/20071025 Firefox/2.0.0.9] [http://hb.s-fr.com/]
[23:03:33] AVERTISSEMENT : identification : login = tito14000 ; password = 1207 , [78.113.63.53] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.9) Gecko/20071025 Firefox/2.0.0.9] [http://hb.s-fr.com/]
[23:03:41] AVERTISSEMENT : identification : login = GehNgiS ; password = axonfree , [86.211.10.203] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)] [http://hb.s-fr.com/?log]
[23:03:54] AVERTISSEMENT : identification : login = Spartan_117 ; password = mig(39) , [74.210.153.252] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=alliances&q=signer&i=3c7d616eb5c14d168de00ce9e44ce1b5f18e8ffa]
[23:03:59] AVERTISSEMENT : identification : login = belen ; password = marineuh , [82.236.93.52] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)] [http://hb.s-fr.com/]
[23:04:20] AVERTISSEMENT : identification : login = OrnaFulsamee ; password = mjolnir , [89.224.249.238] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 UGA6PV/2.2.362.4 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[23:04:22] AVERTISSEMENT : identification : login = Angel ; password = eastpak , [90.58.138.131] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; InfoPath.2; .NET CLR 1.1.4322; Orange 8.0)] [http://halo-battle.s-fr.com/]
[23:04:23] AVERTISSEMENT : identification : login = chipo78 ; password = 250483 , [89.159.102.248] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr-FR; rv:1.7.6) Gecko/20050223 Firefox/1.0.1] [http://halo-battle.s-fr.com/]
[23:04:43] AVERTISSEMENT : identification : login = JohnSpartan117 ; password = unscdf , [89.224.249.238] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 UGA6PV/2.2.362.4 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[23:04:44] AVERTISSEMENT : identification : login = gusten ; password = titanescan , [83.113.239.237] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[23:04:58] AVERTISSEMENT : identification : login = DarK_Aveng3r ; password = 0107gots , [90.22.162.1] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=laboratoire]
[23:05:32] AVERTISSEMENT : identification : login = satine ; password = lucie8703 , [77.197.24.15] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=accueil]
[23:05:33] AVERTISSEMENT : identification : login = slym ; password = 99064622646099. , [96.20.241.189] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727)] [http://halo-battle.s-fr.com/]
[23:06:16] AVERTISSEMENT : identification : login = JacksonKaller ; password = halowars , [86.215.131.75] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[23:06:27] AVERTISSEMENT : identification : login = GehNgiS ; password = axonfree , [86.211.140.60] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)] [http://hb.s-fr.com/?p=batiments]
[23:06:52] AVERTISSEMENT : identification : login = FDL_Demon ; password = atperpomam , [86.203.120.240] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.0.12) Gecko/20070508 Firefox/1.5.0.12] [http://hb.s-fr.com/]
[23:06:59] AVERTISSEMENT : identification : login = ; password = , [86.196.182.152] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0)] [http://hb.s-fr.com/]
[23:07:06] AVERTISSEMENT : identification : login = IcE91 ; password = fmpcsa , [82.229.104.92] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[23:07:06] AVERTISSEMENT : identification : login = Vladox ; password = wargames13 , [86.196.182.152] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0)] [http://hb.s-fr.com/]
[23:07:11] AVERTISSEMENT : identification : login = Pach ; password = wMNAPBU2 , [87.64.31.165] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[23:07:13] AVERTISSEMENT : identification : login = meltharas ; password = , [91.163.174.48] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SIMBAR={D026956D-C20E-11DC-B5D4-001B24A443B1}; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 1.1.4322)] [http://halo-battle.s-fr.com/]
[23:07:25] AVERTISSEMENT : identification : login = meltharas ; password = warcraftwow13 , [91.163.174.48] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SIMBAR={D026956D-C20E-11DC-B5D4-001B24A443B1}; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 1.1.4322)] [http://hb.s-fr.com/]
[23:07:29] AVERTISSEMENT : identification : login = Major118 ; password = mamamia8 , [82.224.79.11] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[23:07:30] AVERTISSEMENT : inscription : login = ; password = , [66.249.65.113] [GET] [/?p=njoueur&nom=DestroyHuman&race=humain&mdp=fd9443385a2ed60ae074793d2a1a6b6ea1868427&mail=ornafulsamee@hotmail.fr&ti=1211490417&placement=francois117&cds=94a24935356627ccdf0f5595e9c9cb420f0847cc] [Mediapartners-Google] []
[23:07:31] AVERTISSEMENT : inscription : login = ; password = , [66.249.65.113] [GET] [/?p=njoueur&nom=DestroyHuman&race=humain&mdp=fd9443385a2ed60ae074793d2a1a6b6ea1868427&mail=ornafulsamee@hotmail.fr&ti=1211490417&placement=francois117&cds=94a24935356627ccdf0f5595e9c9cb420f0847cc] [Mediapartners-Google] []
[23:07:35] AVERTISSEMENT : identification : login = lanix ; password = jkl75fs , [83.152.80.241] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[23:07:47] AVERTISSEMENT : identification : login = FredSpartan104 ; password = hayate , [89.224.249.238] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 UGA6PV/2.2.362.4 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[23:07:51] AVERTISSEMENT : identification : login = kmaster ; password = master , [88.173.240.128] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[23:07:56] AVERTISSEMENT : identification : login = Magesticx ; password = panzerchrist , [82.127.211.155] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=prochainement]
[23:08:15] AVERTISSEMENT : inscription : login = ; password = , [82.247.155.173] [GET] [/?p=njoueur&nom=highjack75&race=humain&mdp=62ac7d5269569bded138e4d0056a666191f9578b&mail=highjack75@free.fr&ti=1211490468&placement=&cds=bc23820eb39073dd6db320e7836c77e9abb8db16] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] []
[23:08:15] AVERTISSEMENT : inscription : login = ; password = , [83.154.150.47] [GET] [/?p=njoueur&nom=DestroyHuman&race=humain&mdp=fd9443385a2ed60ae074793d2a1a6b6ea1868427&mail=ornafulsamee@hotmail.fr&ti=1211490417&placement=francois117&cds=94a24935356627ccdf0f5595e9c9cb420f0847cc] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://bl105w.blu105.mail.live.com/mail/ReadMessageLight.aspx?FolderID=00000000-0000-0000-0000-000000000001&ReadMessageId=adbdea00-952b-4a1a-aaff-351e06d9bb33&n=1626338811]
[23:08:24] AVERTISSEMENT : identification : login = francois117 ; password = 11793 , [83.154.150.47] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[23:08:27] AVERTISSEMENT : identification : login = xxteknibalxx ; password = sephirothg , [90.50.24.73] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=batiments]
[23:08:32] AVERTISSEMENT : identification : login = highjack75 ; password = koston , [82.247.155.173] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?index]
[23:08:39] AVERTISSEMENT : identification : login = xxteknibalxx ; password = sephiroth , [90.50.24.73] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=batiments]
[23:08:52] AVERTISSEMENT : identification : login = DestroyHuman ; password = 11793 , [83.154.150.47] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[23:09:00] AVERTISSEMENT : identification : login = Vadren ; password = fucknoob , [82.250.236.112] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14;MEGAUPLOAD 1.0] [http://hb.s-fr.com/]
[23:09:21] AVERTISSEMENT : identification : login = keatis ; password = jkl75fsklm , [83.152.80.241] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[23:09:25] AVERTISSEMENT : inscription : login = ; password = , [66.249.65.113] [GET] [/?p=njoueur&nom=NITROGLYCERINE&race=humain&mdp=5246929cb6c55eb83140f905911fda8b976ae56d&mail=stridersx@hotmail.fr&ti=1211490426&placement=&cds=c27e32bee7493e4e06254c16422d2fc74684d047] [Mediapartners-Google] []
[23:09:26] AVERTISSEMENT : inscription : login = ; password = , [66.249.65.113] [GET] [/?p=njoueur&nom=NITROGLYCERINE&race=humain&mdp=5246929cb6c55eb83140f905911fda8b976ae56d&mail=stridersx@hotmail.fr&ti=1211490426&placement=&cds=c27e32bee7493e4e06254c16422d2fc74684d047] [Mediapartners-Google] []
[23:09:41] AVERTISSEMENT : identification : login = patach ; password = 47tiacilnar , [87.89.175.138] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Every Toolbar; .NET CLR 1.1.4322; .NET CLR 2.0.50727)] [http://hb.s-fr.com/]
[23:09:42] AVERTISSEMENT : identification : login = DestroyHuman ; password = 11793 , [83.154.150.47] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=defenses]
[23:09:42] AVERTISSEMENT : identification : login = Reaper ; password = green_day , [81.241.141.96] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727)] [http://hb.s-fr.com/?p=batiments]
[23:09:52] AVERTISSEMENT : identification : login = benoit16 ; password = blowmeaway117? , [67.68.210.156] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[23:09:56] AVERTISSEMENT : identification : login = francois117 ; password = 11793 , [83.154.150.47] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[23:10:11] AVERTISSEMENT : identification : login = GehNgiS ; password = axonfree , [90.27.144.109] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)] [http://hb.s-fr.com/?p=laboratoire&t=4]
[23:10:13] AVERTISSEMENT : identification : login = Halooooo ; password = bébélane , [81.53.78.145] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[23:10:14] AVERTISSEMENT : inscription : login = ; password = , [82.253.238.156] [GET] [/?p=njoueur&nom=NITROGLYCERINE&race=humain&mdp=5246929cb6c55eb83140f905911fda8b976ae56d&mail=stridersx@hotmail.fr&ti=1211490426&placement=&cds=c27e32bee7493e4e06254c16422d2fc74684d047] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://bl119w.blu119.mail.live.com/mail/ReadMessageLight.aspx?AllowUnsafe=True&FolderID=00000000-0000-0000-0000-000000000005&InboxSortAscending=False&InboxSortBy=Date&OpenMessageBody=True&ReadMessageId=d1796af8-f5db-4686-91aa-971bccf902e7&n=378965765]
[23:10:32] AVERTISSEMENT : identification : login = frere_cassius ; password = bretonnie , [91.165.232.160] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727)] [http://halo-battle.s-fr.com/]
[23:10:45] AVERTISSEMENT : identification : login = Anevo ; password = nintendowiihalo3 , [81.13.238.155] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[23:11:11] AVERTISSEMENT : identification : login = NITROGLYCERINE ; password = 392992az , [82.253.238.156] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?index]
[23:11:21] AVERTISSEMENT : inscription : login = ; password = , [82.239.144.164] [GET] [/?p=njoueur&nom=lordhealler&race=humain&mdp=e96f7ea599c40afac0cd4bcf61220f0ccb2d57cb&mail=Romain427@hotmail.com&ti=1211302630&placement=&cds=91929c07b65fc4ffb6617291cc22b5c19897cc5f] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727)] [http://by101w.bay101.mail.live.com/mail/ReadMessageLight.aspx?Aux=0%7c0%7c8CA88B17E5CB5D0%7c&FolderID=00000000-0000-0000-0000-000000000001&InboxSortAscending=False&InboxSortBy=Date&ReadMessageId=422ca142-912d-47f0-b25b-ac2cbc3e2055&n=361680139]
[23:11:22] AVERTISSEMENT : identification : login = tito14 ; password = 1207 , [78.113.63.53] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.9) Gecko/20071025 Firefox/2.0.0.9] [http://hb.s-fr.com/]
[23:11:29] AVERTISSEMENT : identification : login = bilbu ; password = ffqyez , [82.66.29.10] [POST] [/?log] [Mozilla/5.0 (iPod; U; CPU like Mac OS X; fr) AppleWebKit/420.1 (KHTML, like Gecko) Version/3.0 Mobile/3B48b Safari/419.3] [http://hb.s-fr.com/]
[23:11:32] AVERTISSEMENT : identification : login = julien10 ; password = julien10081991 , [77.198.143.171] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.11;MEGAUPLOAD 1.0] [http://hb.s-fr.com/?p=accueil]
[23:11:40] AVERTISSEMENT : identification : login = lordhealler ; password = 13171317 , [82.239.144.164] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727)] [http://hb.s-fr.com]
[23:12:03] AVERTISSEMENT : identification : login = fulsamee ; password = khornus-69 , [87.89.148.26] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[23:12:10] AVERTISSEMENT : identification : login = Alpin-garou ; password = ujnyhbtgv , [81.220.191.197] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.9) Gecko/2008051206 Firefox/3.0] [http://hb.s-fr.com/?p=batiments]
[23:12:14] AVERTISSEMENT : identification : login = alex_the_blind ; password = secret8958 , [77.203.155.106] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[23:12:20] AVERTISSEMENT : identification : login = Alpin_garou ; password = ujnyhbtgv , [81.220.191.197] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.9) Gecko/2008051206 Firefox/3.0] [http://hb.s-fr.com/?p=batiments]
[23:12:30] AVERTISSEMENT : identification : login = jangofett ; password = chaanylorra , [90.3.216.36] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)] []
[23:13:25] AVERTISSEMENT : identification : login = DestroyHuman ; password = 11793 , [83.154.150.47] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[23:13:39] AVERTISSEMENT : identification : login = anto ; password = azert12345 , [77.205.92.108] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)] [http://hb.s-fr.com/]
[23:14:01] AVERTISSEMENT : identification : login = Pach ; password = 266cxkOA , [87.64.31.165] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[23:14:05] AVERTISSEMENT : identification : login = Daawha ; password = ordinateur , [88.167.69.203] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14 ImageShackToolbar/4.4.3] [http://hb.s-fr.com/?p=accueil]
[23:14:24] AVERTISSEMENT : identification : login = shaman1 ; password = shaman , [86.193.46.11] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Orange 7.4 ; NaviWoo1.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322)] [http://hb.s-fr.com/?p=batiments]
[23:14:38] AVERTISSEMENT : identification : login = Ex_ou ; password = poumpoum77 , [91.164.253.59] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[23:15:26] AVERTISSEMENT : identification : login = darkelite ; password = 1310kmel , [90.34.37.70] [POST] [/?log] [Mozilla/4.0 (PSP (PlayStation Portable); 2.00)] [http://halo-battle.s-fr.com/]
[23:15:26] AVERTISSEMENT : identification : login = muay11 ; password = jimmy , [82.216.46.217] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[23:15:45] AVERTISSEMENT : identification : login = CSNU_Silva ; password = ubisoft94 , [82.224.79.11] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[23:16:02] AVERTISSEMENT : identification : login = RoH_Echo_Dragon ; password = cretin.fr , [86.74.114.246] [POST] [/?log] [Mozilla/4.0 (PSP (PlayStation Portable); 2.00)] [http://hb.s-fr.com/?p=accueil]
[23:16:08] AVERTISSEMENT : identification : login = lordxav ; password = bellevue , [88.141.193.79] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 1.1.4322)] [http://hb.s-fr.com/?p=batiments]
[23:16:10] AVERTISSEMENT : identification : login = Birmania ; password = chipette , [91.163.131.73] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=batiments]
[23:16:34] AVERTISSEMENT : identification : login = zelion ; password = hunters , [90.12.228.44] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)] [http://hb.s-fr.com/?p=batiments]
[23:16:52] AVERTISSEMENT : identification : login = Dreizen ; password = drizztdf , [90.27.142.134] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.0.12) Gecko/20070508 Firefox/1.5.0.12] [http://halo-battle.s-fr.com/]
[23:16:54] AVERTISSEMENT : identification : login = thecat ; password = , [90.37.9.164] [POST] [/?log] [DSOrganize Web Browser] [http://halo-battle.s-fr.com/]
[23:17:05] AVERTISSEMENT : identification : login = erebus ; password = demarrer , [77.197.244.203] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=accueil]
[23:17:06] AVERTISSEMENT : identification : login = Vinh ; password = vivedofus , [82.127.160.166] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=batiments]
[23:17:23] AVERTISSEMENT : identification : login = vos_quinlan ; password = gaetankervella , [90.23.43.112] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr-FR; rv:1.4) Gecko/20030624 Netscape/7.1 (ax)] [http://halo-battle.s-fr.com/]
[23:17:24] AVERTISSEMENT : identification : login = thecat ; password = doc7323 , [90.37.9.164] [POST] [/?log] [DSOrganize Web Browser] [http://halo-battle.s-fr.com/]
[23:17:34] AVERTISSEMENT : identification : login = GTx_Maxmach7 ; password = madiane , [77.203.48.52] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506)] [http://www.halo-battle.s-fr.com/]
[23:17:36] AVERTISSEMENT : identification : login = lashlabask ; password = halo3 , [90.34.81.183] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; IE7-01NET.COM-1.1; IE7-01NET.COM-1.1)] [http://hb.s-fr.com/]
[23:17:41] AVERTISSEMENT : identification : login = choppy ; password = florian , [82.241.164.207] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[23:17:50] AVERTISSEMENT : identification : login = ISh0oKI T4nGo ; password = ichbinkrank , [79.82.12.164] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[23:18:02] AVERTISSEMENT : identification : login = AnteuWane ; password = addicttvss123 , [81.220.176.233] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)] [http://halo-battle.s-fr.com/]
[23:18:09] AVERTISSEMENT : identification : login = faucheur203 ; password = 15011991 , [81.185.244.218] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[23:18:14] AVERTISSEMENT : identification : login = cubix ; password = fire3000 , [86.208.15.203] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[23:18:40] AVERTISSEMENT : identification : login = cakofruits ; password = lesrosettes369 , [81.220.199.6] [POST] [/?log] [Mozilla/5.0 (iPod; U; CPU like Mac OS X; fr) AppleWebKit/420.1 (KHTML, like Gecko) Version/3.0 Mobile/4A102 Safari/419.3] [http://hb.s-fr.com/?p=batiments]
[23:18:59] AVERTISSEMENT : identification : login = Dark_warrior7 ; password = ecureuil , [87.89.232.245] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727)] [http://hb.s-fr.com/?p=prochainement]
[23:19:04] AVERTISSEMENT : identification : login = Alterans ; password = 1369 , [90.29.95.40] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[23:19:19] AVERTISSEMENT : identification : login = Overdose ; password = m45l56p89 , [88.177.38.118] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[23:19:30] AVERTISSEMENT : identification : login = vengeur4713 ; password = chaerblalat , [89.84.123.92] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=carte]
[23:19:37] AVERTISSEMENT : inscription : login = ; password = , [81.53.102.94] [GET] [/?p=njoueur&nom=arminbauer22&race=covenant&mdp=e5275d18aa2e529dfc6a5050a450393ffb0831ff&mail=arminba@hotmail.fr&ti=1211491141&placement=zuka&cds=2591c2ca499fbf28534724c03ba547e3bc27d521] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)] [http://by127w.bay127.mail.live.com/mail/ApplicationMain_12.4.0080.0327.aspx?culture=fr-FR&hash=2026365924]
[23:19:39] AVERTISSEMENT : identification : login = Walker63 ; password = 831511 , [86.202.88.133] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; SIMBAR={7E946D0E-EAC4-4D8B-B42D-F0122633D52D}; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322)] [http://halo-battle.s-fr.com/index.php]
[23:19:40] AVERTISSEMENT : identification : login = momolagoute ; password = brianholland , [83.192.123.231] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; MSN Optimized;FR; MSN Optimized;FR)] [http://halo-battle.s-fr.com/]
[23:19:49] AVERTISSEMENT : identification : login = EvilMaster ; password = scaleo , [81.53.175.153] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[23:19:57] AVERTISSEMENT : identification : login = arminbauer22 ; password = starwars , [81.53.102.94] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)] [http://hb.s-fr.com/?index]
[23:20:13] AVERTISSEMENT : identification : login = Phenix117 ; password = hiroshima , [90.61.163.108] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://www.halo-battle.s-fr.com/]
[23:20:16] AVERTISSEMENT : identification : login = Ya_Yap ; password = artur7 , [91.168.195.28] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=accueil]
[23:20:31] AVERTISSEMENT : identification : login = Ka_AnoR ; password = fipolthenar , [90.36.108.107] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr-FR) AppleWebKit/525.18 (KHTML, like Gecko) Version/3.1.1 Safari/525.17] [http://hb.s-fr.com/]
[23:20:52] AVERTISSEMENT : identification : login = GAB17 ; password = lasouri2 , [74.13.134.175] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727)] [http://hb.s-fr.com/]
[23:21:00] AVERTISSEMENT : inscription : login = ; password = , [79.82.12.164] [GET] [/?p=njoueur&nom=T4nGo&race=humain&mdp=00a02b3f201b997b5f09d1beea90bb7e9bf717f4&mail=coppens.alex@neuf.fr&ti=1211491207&placement=&cds=9ddbdd11bb93365941b8fa38cce211852d26b3fb] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://9c.webmail.aol.com/36743/neuf/fr-fr/Suite.aspx]
[23:21:06] AVERTISSEMENT : identification : login = Borkan ; password = 0806vic92 , [90.34.147.28] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727)] [http://hb.s-fr.com/]
[23:21:14] AVERTISSEMENT : identification : login = MARK7 ; password = wivahalo , [81.208.74.188] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; it; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=batiments]
[23:21:25] AVERTISSEMENT : identification : login = cerizzz ; password = 910304 , [90.1.187.233] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[23:21:34] AVERTISSEMENT : identification : login = ISh0oKI T4nGo ; password = ichbinkrank , [79.82.12.164] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[23:21:39] AVERTISSEMENT : identification : login = willkiller ; password = 123456789a , [86.214.78.8] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[23:21:44] AVERTISSEMENT : identification : login = T4nGo ; password = ichbinkrank , [79.82.12.164] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[23:21:47] AVERTISSEMENT : inscription : login = ; password = , [74.13.134.175] [GET] [/?p=njoueur&nom=GAB17&race=humain&mdp=8705c3f408944f1c3d8e27ef55a7305b13e21e99&mail=vagabond1an@msn.com&ti=1211476662&placement=&cds=d11d46b941a1d36a8b1c64681280c040721f3f08] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727)] [http://by113w.bay113.mail.live.com/mail/ReadMessageLight.aspx?Aux=4%7c0%7c8CA8A46A2B8A650%7c&FolderID=00000000-0000-0000-0000-000000000001&InboxSortAscending=False&InboxSortBy=Date&ReadMessageId=635ac94e-4994-4a31-9f8b-df1ef8116fc5&n=1342956149]
[23:21:58] AVERTISSEMENT : identification : login = Lucifer ; password = 12345678 , [90.14.94.230] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Wanadoo 6.7; InfoPath.1; MSN Optimized;FR; Zango 10.0.341.0; MSN Optimized;FR)] [http://hb.s-fr.com/?p=batiments]
[23:22:13] AVERTISSEMENT : identification : login = GAB17 ; password = lasouri2 , [74.13.134.175] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727)] [http://hb.s-fr.com/?index]
[23:22:15] AVERTISSEMENT : identification : login = peanuts ; password = 231080 , [194.250.71.174] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)] [http://hb.s-fr.com/]
[23:22:21] AVERTISSEMENT : identification : login = moni ; password = mamanyfeght , [81.50.139.141] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr-FR) AppleWebKit/525.18 (KHTML, like Gecko) Version/3.1.1 Safari/525.17] [http://halo-battle.s-fr.com/]
[23:22:38] AVERTISSEMENT : identification : login = francois117 ; password = 11793 , [83.154.150.47] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[23:22:39] AVERTISSEMENT : identification : login = Yoda206 ; password = moimoimoi123 , [86.193.28.170] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Nitro) Opera 8.50 [fr]] [http://hb.s-fr.com/]
[23:22:53] AVERTISSEMENT : identification : login = MasterChief ; password = 210290 , [90.29.95.40] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[23:22:53] AVERTISSEMENT : identification : login = neotracks ; password = kxt4a4gg , [194.2.62.130] [POST] [/?log] [Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.9b5) Gecko/2008041514 Firefox/3.0b5] [http://halo-battle.s-fr.com/]
[23:23:04] AVERTISSEMENT : identification : login = xxblindxx ; password = bionique , [74.58.233.152] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[23:23:06] AVERTISSEMENT : identification : login = Viccs ; password = alrceerer , [84.98.189.40] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[23:23:12] AVERTISSEMENT : identification : login = Carnage ; password = 22csra42 , [196.203.159.30] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.11 MEGAUPLOAD 1.0] [http://halo-battle.s-fr.com/]
[23:23:16] AVERTISSEMENT : identification : login = jordanatator ; password = jordan1 , [90.21.123.120] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; .NET CLR 1.1.4322)] [http://halo-battle.s-fr.com/]
[23:23:42] AVERTISSEMENT : identification : login = StickyBooby ; password = bonjour , [90.41.136.242] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=prochainement]
[23:23:44] AVERTISSEMENT : identification : login = bomber66 ; password = master , [70.83.37.63] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)] [http://hb.s-fr.com/]
[23:23:47] AVERTISSEMENT : identification : login = faucheur203 ; password = 15011991 , [81.185.244.218] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[23:23:50] AVERTISSEMENT : identification : login = Gurren_Lagann ; password = kagemusha , [90.39.145.145] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=accueil]
[23:23:57] AVERTISSEMENT : identification : login = TekTek ; password = mateotek , [86.205.76.216] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=batiments]
[23:24:07] AVERTISSEMENT : identification : login = madege ; password = wfusdfcf , [82.230.160.117] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[23:24:27] AVERTISSEMENT : identification : login = nicoclac ; password = 456poi , [82.229.64.52] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.0.4) Gecko/20060508 Firefox/1.5.0.4] [http://hb.s-fr.com/?p=batiments]
[23:24:32] AVERTISSEMENT : identification : login = gizzmo ; password = kevin1 , [85.2.37.143] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; .NET CLR 1.1.4322)] [http://halo-battle.s-fr.com/]
[23:24:40] AVERTISSEMENT : inscription : login = ; password = , [90.50.198.248] [GET] [/?p=njoueur&nom=Amno&race=covenant&mdp=5fa43b68b59175c6d90a42c5099232b726ee33ed&mail=test-tn@live.fr&ti=1211491445&placement=&cds=121663295a2da203904edcd9ea81105002d05647] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://bl115w.blu115.mail.live.com/mail/ReadMessageLight.aspx?FolderID=00000000-0000-0000-0000-000000000001&ReadMessageId=4408e6ad-9187-446a-9f20-80aea4a2d3de&n=1766553261]
[23:24:44] AVERTISSEMENT : identification : login = Smith ; password = tatattam , [90.50.198.248] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[23:24:52] AVERTISSEMENT : identification : login = croutechef ; password = croute , [90.40.38.186] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Orange 8.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506)] [http://hb.s-fr.com/]
[23:24:56] AVERTISSEMENT : identification : login = blocgandj ; password = BLOCSWITCH , [90.59.73.48] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[23:25:14] AVERTISSEMENT : identification : login = Luiis ; password = agent47 , [77.202.232.199] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=accueil]
[23:25:28] AVERTISSEMENT : identification : login = Amno ; password = tatattam , [90.50.198.248] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[23:25:28] MESSAGE : Création de l'alliance : Spartans of Death par 1499 (fondateur : 301) après validation de 4 signatures : 1900, 1052, 18431499 , [90.41.136.242] [GET] [/?p=alliances&q=signer&i=9a3b59666da605d8edda8bba5191f7f19cda857f] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] []
[23:25:50] AVERTISSEMENT : inscription : login = ; password = , [86.221.28.69] [GET] [/?p=njoueur&nom=Kenka&race=humain&mdp=24b7b8ab39b9352ad5aa3be9d32f8f24750d895f&mail=chikimafioso@hotmail.fr&ti=1211491464&placement=&cds=5de7d7545564184fbd27009342d8a11b50122a4b] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)] [http://by133w.bay133.mail.live.com/mail/ReadMessageLight.aspx?FolderID=00000000-0000-0000-0000-000000000001&ReadMessageId=45334f57-4db0-46ce-8eee-bebc2779c901&n=304933230]
[23:26:49] AVERTISSEMENT : identification : login = smat121 ; password = jaimelespops , [74.13.157.40] [POST] [/?log] [Opera/9.21 (Windows NT 5.1; U; fr)] [http://hb.s-fr.com/]
[23:27:09] AVERTISSEMENT : identification : login = Arkanix ; password = omega713 , [79.89.202.157] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[23:27:09] AVERTISSEMENT : identification : login = LeCriss87 ; password = vachier6789 , [216.252.94.45] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[23:27:24] AVERTISSEMENT : identification : login = surt31 ; password = ERHvXwDq , [86.77.133.178] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[23:27:43] AVERTISSEMENT : identification : login = masamune ; password = 51children69 , [86.77.133.178] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[23:27:49] AVERTISSEMENT : identification : login = masamune ; password = 69children666 , [86.77.133.178] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[23:27:53] AVERTISSEMENT : identification : login = jaireimy ; password = joypad , [82.231.191.171] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[23:27:58] AVERTISSEMENT : identification : login = masamune31 ; password = 51children69 , [86.77.133.178] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[23:28:02] AVERTISSEMENT : identification : login = Nilmo06 ; password = DAmi27En , [83.113.93.185] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[23:28:06] AVERTISSEMENT : identification : login = Nathaniel ; password = oblivion , [86.215.37.82] [POST] [/?log] [Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.1.13) Gecko/20080208 Mandriva/2.0.0.13-1mdv2008.1 (2008.1) Firefox/2.0.0.13] [http://hb.s-fr.com/]
[23:28:10] AVERTISSEMENT : identification : login = slym ; password = 99064622646099. , [96.20.241.189] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727)] [http://halo-battle.s-fr.com/]
[23:28:59] AVERTISSEMENT : identification : login = adrip ; password = a9z8e7 , [81.249.159.170] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=batiments]
[23:29:45] AVERTISSEMENT : identification : login = XR31530 ; password = halo123 , [86.221.47.181] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506)] [http://hb.s-fr.com/]
[23:29:52] AVERTISSEMENT : identification : login = koronis ; password = vanirav , [81.48.103.79] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Wanadoo 7.1 ; NaviWoo1.1; Stream Plugin; Orange 7.4 ; NaviWoo1.1; .NET CLR 1.1.4322; MEGAUPLOAD 1.0; MEGAUPLOAD 2.0; Seekmo 10.0.345.0)] [http://halo-battle.s-fr.com/]
[23:29:58] AVERTISSEMENT : identification : login = tito14000 ; password = 1207 , [78.113.63.53] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.9) Gecko/20071025 Firefox/2.0.0.9] [http://hb.s-fr.com/]
[23:30:03] AVERTISSEMENT : inscription : login = ; password = , [90.50.198.248] [GET] [/?p=njoueur&nom=Brian&race=humain&mdp=c770a1206e92a0297fc09208c17194f0fa7a30d7&mail=mattatatat@live.fr&ti=1211491778&placement=&cds=a38b0d8f19d1d97c6411c0228581f0bcc52e09be] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://by128w.bay128.mail.live.com/mail/ReadMessageLight.aspx?FolderID=00000000-0000-0000-0000-000000000001&ReadMessageId=4270d250-729f-4fc1-ab30-19851d5da740&n=73787212]
[23:30:08] AVERTISSEMENT : identification : login = Kenka ; password = pharaon , [86.221.28.69] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=alliances&q=signer&i=dc2270e3311e1cb6821326487f89d16b3543199e]
[23:30:12] AVERTISSEMENT : identification : login = koronis ; password = vanrav , [81.48.103.79] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Wanadoo 7.1 ; NaviWoo1.1; Stream Plugin; Orange 7.4 ; NaviWoo1.1; .NET CLR 1.1.4322; MEGAUPLOAD 1.0; MEGAUPLOAD 2.0; Seekmo 10.0.345.0)] [http://halo-battle.s-fr.com/]
[23:30:18] AVERTISSEMENT : identification : login = Brian ; password = tatattam , [90.50.198.248] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[23:30:41] MESSAGE : Création de l'alliance : UNSC Navy par 2700 (fondateur : 344) après validation de 4 signatures : 1782, 2666, 26982700 , [90.50.198.248] [GET] [/?p=alliances&q=signer&i=06e0cb89649a03333cb497f7442d176c95ebb313] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] []
[23:30:47] AVERTISSEMENT : identification : login = hunter ; password = battlefield2 , [64.18.168.133] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)] [http://halo-battle.s-fr.com/]
[23:30:54] AVERTISSEMENT : identification : login = Smith ; password = tatattam , [90.50.198.248] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[23:30:56] AVERTISSEMENT : identification : login = angel_of_death ; password = 17081986 , [82.239.41.11] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; Hotbar 10.0.412.0)] [http://hb.s-fr.com/]
[23:31:51] AVERTISSEMENT : identification : login = vostok357 ; password = starscream451 , [62.35.199.176] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.8) Gecko/20071008 Firefox/2.0.0.8] [http://hb.s-fr.com/?p=batiments]
[23:32:05] AVERTISSEMENT : identification : login = Inos ; password = salsa7514 , [82.225.213.55] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=batiments]
[23:32:06] AVERTISSEMENT : identification : login = WizzerShooT ; password = wizzer , [90.17.246.112] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; InfoPath.2; .NET CLR 1.1.4322)] [http://www.hb.s-fr.com/]
[23:32:21] AVERTISSEMENT : identification : login = surt31 ; password = ERHvXwDq , [86.77.133.178] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[23:32:28] AVERTISSEMENT : identification : login = Pachacuti ; password = massacroni , [90.8.122.14] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=batiments]
[23:32:59] AVERTISSEMENT : identification : login = kev360 ; password = e4gfthf , [90.5.97.33] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506)] [http://halo-battle.s-fr.com/]
[23:33:11] AVERTISSEMENT : identification : login = STRID3RSX ; password = 392992az , [82.253.238.156] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[23:33:55] AVERTISSEMENT : identification : login = surt31 ; password = ERHvXwDq , [86.77.133.178] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=prochainement]
[23:34:01] AVERTISSEMENT : inscription : login = ; password = , [82.122.69.192] [GET] [/?p=njoueur&nom=Yvanov&race=covenant&mdp=b96bd8ea8dc7df6a82d879bb14751b2c693523fd&mail=yv4n0v-13@hotmail.fr&ti=1211491981&placement=&cds=6df90d716cb5d44dbe8d2a18f680910e8647afe1] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://bl125w.blu125.mail.live.com/mail/ReadMessageLight.aspx?FolderID=00000000-0000-0000-0000-000000000001&ReadMessageId=2a2c8fb2-bd71-47ee-8c7f-fed5c7773ae4&n=302506895]
[23:34:15] AVERTISSEMENT : identification : login = Ryuk ; password = larousses , [41.221.16.34] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[23:34:16] AVERTISSEMENT : identification : login = Yvanov ; password = lolilol , [82.122.69.192] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[23:34:18] AVERTISSEMENT : identification : login = gangsta ; password = p!3rort , [86.215.74.187] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 3.5.21022)] [http://halo-battle.s-fr.com/]
[23:34:27] AVERTISSEMENT : identification : login = kikifr ; password = 15011999 , [81.185.244.218] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[23:34:35] AVERTISSEMENT : identification : login = terminarnold ; password = starwars , [90.63.4.150] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)] [http://halo-battle.s-fr.com/]
[23:34:38] AVERTISSEMENT : identification : login = Vanguard ; password = ut2003 , [83.198.49.140] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=batiments]
[23:34:49] AVERTISSEMENT : identification : login = NITROGLYCERINE ; password = 392992az , [82.253.238.156] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[23:34:52] AVERTISSEMENT : identification : login = Spartan210 ; password = mjolnirdelta , [89.84.170.98] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[23:34:53] AVERTISSEMENT : identification : login = guilty ; password = 123456 , [81.220.172.95] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://www.halo-battle.s-fr.com/]
[23:35:07] AVERTISSEMENT : identification : login = Dras_Ulsamee ; password = dragon01 , [90.53.86.83] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0)] [http://www.halo-battle.s-fr.com/]
[23:35:18] AVERTISSEMENT : identification : login = sash ; password = sashque14 , [82.227.53.218] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[23:35:39] AVERTISSEMENT : identification : login = batbilly ; password = 25972597 , [81.245.155.108] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr-FR) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13.3] [http://halo-battle.s-fr.com/]
[23:35:42] AVERTISSEMENT : identification : login = Alterans ; password = 1369 , [90.29.95.40] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[23:35:57] AVERTISSEMENT : identification : login = Vadren ; password = fucknoob , [82.250.236.112] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14;MEGAUPLOAD 1.0] [http://hb.s-fr.com/]
[23:36:26] AVERTISSEMENT : identification : login = Alpha_Squad ; password = cugurno06 , [88.173.40.206] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30)] [http://www.halo-battle.s-fr.com/]
[23:36:31] AVERTISSEMENT : identification : login = Matthews ; password = shadow2b , [87.90.97.190] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[23:37:07] AVERTISSEMENT : identification : login = jcmonchet ; password = lp62122 , [88.141.189.123] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[23:37:17] AVERTISSEMENT : identification : login = MasterChief ; password = 210290 , [90.29.95.40] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[23:37:18] AVERTISSEMENT : identification : login = RobFalcon ; password = freedom , [97.97.211.95] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)] [http://halo-battle.s-fr.com/]
[23:37:26] AVERTISSEMENT : identification : login = Mdtfbatbilly ; password = 25972597 , [81.245.155.108] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr-FR) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13.3] [http://hb.s-fr.com/]
[23:37:32] AVERTISSEMENT : identification : login = azaros ; password = multihalo , [81.56.204.149] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[23:37:36] AVERTISSEMENT : identification : login = Nynciel ; password = anachoreta , [83.205.142.238] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=batiments]
[23:37:37] AVERTISSEMENT : identification : login = masta_norm ; password = soccer6 , [74.57.186.248] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://www.halo-battle.s-fr.com/]
[23:37:39] AVERTISSEMENT : identification : login = adama ; password = 24062406 , [83.154.14.60] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=accueil]
[23:37:42] AVERTISSEMENT : identification : login = LtBrownie ; password = Lakeshow8 , [67.160.138.183] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[23:38:07] AVERTISSEMENT : identification : login = arese ; password = 25972597 , [81.245.155.108] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr-FR) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13.3] [http://hb.s-fr.com/]
[23:38:14] AVERTISSEMENT : identification : login = MajorDrake ; password = 120891 , [212.198.80.53] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14;MEGAUPLOAD 1.0] [http://hb.s-fr.com/]
[23:38:17] AVERTISSEMENT : identification : login = LastSpartanQc ; password = charlie16 , [65.94.42.146] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 1.1.4322; InfoPath.2)] [http://hb.s-fr.com/?p=batiments]
[23:38:37] AVERTISSEMENT : identification : login = Nynciel ; password = anachoreta , [83.205.142.238] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[23:38:51] AVERTISSEMENT : identification : login = Nynciel ; password = 89nc1shv , [83.205.142.238] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[23:39:00] AVERTISSEMENT : identification : login = Uaessuor ; password = chimere , [86.69.133.129] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)] [http://hb.s-fr.com/]
[23:39:11] AVERTISSEMENT : identification : login = s117 ; password = 25972597 , [81.245.155.108] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr-FR) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13.3] [http://hb.s-fr.com/]
[23:39:15] AVERTISSEMENT : identification : login = Torgal ; password = cwahad , [88.163.41.238] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=batiments]
[23:39:24] AVERTISSEMENT : identification : login = MajorDrake ; password = 120891 , [212.198.80.53] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)] [http://halo-battle.s-fr.com/]
[23:39:55] AVERTISSEMENT : identification : login = Smith ; password = tatattam , [90.50.198.248] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14 ImageShackToolbar/4.4.3] [http://halo-battle.s-fr.com/]
[23:39:55] AVERTISSEMENT : identification : login = sashreal ; password = sashque , [82.227.53.218] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[23:40:04] AVERTISSEMENT : identification : login = founi ; password = link , [90.33.52.244] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)] [http://halo-battle.s-fr.com/]
[23:40:34] AVERTISSEMENT : identification : login = faucheur203 ; password = 15011991 , [81.185.244.218] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[23:40:54] AVERTISSEMENT : identification : login = furax63 ; password = augerolles , [79.81.76.31] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=batiments]
[23:41:05] AVERTISSEMENT : identification : login = slym ; password = 99064622646099. , [96.20.241.189] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727)] [http://hb.s-fr.com/]
[23:41:33] AVERTISSEMENT : identification : login = Tanith ; password = 250686yoda , [86.200.183.135] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Orange 8.0)] [http://hb.s-fr.com/]
[23:41:34] AVERTISSEMENT : identification : login = batbilly ; password = 25972597 , [81.245.155.108] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr-FR) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13.3] [http://hb.s-fr.com/]
[23:41:34] AVERTISSEMENT : identification : login = NGHL ; password = GroundUnited , [81.241.203.233] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)] [http://hb.s-fr.com/]
[23:41:37] AVERTISSEMENT : identification : login = Seb_IaKaI_FuriouS ; password = 254769183 , [90.49.219.89] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=prochainement]
[23:41:48] AVERTISSEMENT : identification : login = Shami ; password = kickflip , [193.252.221.68] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.9) Gecko/2008051206 Firefox/3.0] [http://hb.s-fr.com/]
[23:41:53] AVERTISSEMENT : identification : login = napsterk ; password = romagnat , [77.195.81.202] [POST] [/?log] [Googlebot/2.1 (+http://www.google.com/bot.html)] [http://hb.s-fr.com/]
[23:42:11] AVERTISSEMENT : identification : login = Sgt_Wifs ; password = Victor15 , [209.169.128.130] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506)] [http://halo-battle.s-fr.com/]
[23:42:38] AVERTISSEMENT : identification : login = camelsrock ; password = redcor , [24.122.233.65] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; Media Center PC 3.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; ImageShack Toolbar 4.2.1; .NET CLR 2.0.50727)] [http://hb.s-fr.com/]
[23:43:17] AVERTISSEMENT : identification : login = STRID3RSX ; password = 392992az , [82.253.238.156] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[23:43:21] AVERTISSEMENT : identification : login = percolator ; password = iiyama , [90.15.213.13] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[23:43:43] AVERTISSEMENT : identification : login = NITROGLYCERINE ; password = 392992az , [82.253.238.156] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[23:44:11] AVERTISSEMENT : identification : login = war_dog ; password = darc12 , [77.192.127.53] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SIMBAR Enabled; SIMBAR={12406F6A-A5A9-48d0-BEEA-7D95E0372FF8}; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; MEGAUPLOAD 2.0)] [http://hb.s-fr.com/?p=batiments]
[23:44:16] AVERTISSEMENT : identification : login = ActionFighter ; password = propa8573 , [212.195.209.90] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[23:45:12] AVERTISSEMENT : identification : login = loulilol ; password = darc12 , [77.192.127.53] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.6;MEGAUPLOAD 1.0] [http://hb.s-fr.com/]
[23:45:42] AVERTISSEMENT : identification : login = mdtfbatbilly ; password = 25972597 , [81.245.155.108] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr-FR) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13.3] [http://hb.s-fr.com/]
[23:45:51] AVERTISSEMENT : identification : login = Seranetho ; password = localhost , [82.231.66.211] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.9) Gecko/2008051206 Firefox/3.0] [http://hb.s-fr.com/]
[23:46:59] AVERTISSEMENT : identification : login = KleeneX ; password = 000000 , [90.8.43.120] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Orange 7.5 ; NaviWoo1.1; InfoPath.2)] [http://hb.s-fr.com/]
[23:47:37] AVERTISSEMENT : identification : login = Inos ; password = salsa7514 , [82.225.213.55] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 1.1.4322)] [http://hb.s-fr.com/]
[23:47:55] AVERTISSEMENT : identification : login = demon ; password = serpent , [83.203.87.91] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=batiments]
[23:48:27] AVERTISSEMENT : identification : login = Vanguard ; password = ut2003 , [83.198.237.149] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=prochainement]
[23:48:47] AVERTISSEMENT : identification : login = adjudant29 ; password = 13081991 , [86.214.197.12] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=accueil]
[23:49:01] AVERTISSEMENT : identification : login = LGL_S1SmiK ; password = 896820 , [88.122.99.186] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322)] [http://halo-battle.s-fr.com/index.php?link=2]
[23:49:04] AVERTISSEMENT : identification : login = arese ; password = 25972597 , [81.245.155.108] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr-FR) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13.3] [http://hb.s-fr.com/]
[23:49:07] AVERTISSEMENT : identification : login = Brandybuck ; password = Brandybuck , [85.3.126.68] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.9) Gecko/2008051206 Firefox/3.0] [http://halo-battle.s-fr.com/]
[23:49:09] AVERTISSEMENT : identification : login = bomber66 ; password = master , [70.83.37.63] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)] [http://hb.s-fr.com/]
[23:49:39] AVERTISSEMENT : identification : login = Leherau ; password = motdepasse , [77.204.255.2] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[23:49:46] AVERTISSEMENT : identification : login = recep1 ; password = samsung123 , [87.64.245.202] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[23:50:13] AVERTISSEMENT : identification : login = ghostkillerz72 ; password = 1219761 , [70.81.239.181] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)] [http://hb.s-fr.com/]
[23:50:16] AVERTISSEMENT : identification : login = lUiGi ; password = mariobros , [78.114.143.23] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[23:50:42] AVERTISSEMENT : identification : login = hunter ; password = , [64.18.168.133] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)] [http://hb.s-fr.com/]
[23:50:44] AVERTISSEMENT : identification : login = frankky ; password = francois , [83.196.149.133] [POST] [/?log] [Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; fr) AppleWebKit/525.18 (KHTML, like Gecko) Version/3.1.1 Safari/525.18] [http://hb.s-fr.com/?p=accueil]
[23:50:46] AVERTISSEMENT : identification : login = ghostkillerz72 ; password = 5219761 , [70.81.239.181] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)] [http://halo-battle.s-fr.com/]
[23:50:55] AVERTISSEMENT : identification : login = hunter ; password = battlefield2 , [64.18.168.133] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)] [http://hb.s-fr.com/]
[23:51:02] AVERTISSEMENT : identification : login = s117 ; password = 25972597 , [81.245.155.108] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr-FR) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13.3] [http://hb.s-fr.com/]
[23:51:02] AVERTISSEMENT : identification : login = davco ; password = fucker , [79.89.221.79] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)] [http://halo-battle.s-fr.com/]
[23:51:26] AVERTISSEMENT : identification : login = Alterans ; password = 1369 , [90.29.95.40] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[23:52:08] AVERTISSEMENT : identification : login = sir_bmainguy ; password = netuypalegut , [72.0.247.176] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Sgrunt|V109|454|S-387283568|dialno; (R1 1.5))] [http://hb.s-fr.com/]
[23:52:31] AVERTISSEMENT : identification : login = tito14 ; password = 1207 , [78.113.63.53] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.9) Gecko/20071025 Firefox/2.0.0.9] [http://hb.s-fr.com/]
[23:52:41] AVERTISSEMENT : identification : login = STRID3RSX ; password = 392992az , [82.253.238.156] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[23:53:11] AVERTISSEMENT : identification : login = tito14000 ; password = 1207 , [78.113.63.53] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.9) Gecko/20071025 Firefox/2.0.0.9] [http://hb.s-fr.com/]
[23:53:21] AVERTISSEMENT : identification : login = neotracks ; password = kxt4a4gg , [194.2.62.130] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.9) Gecko/2008051206 Firefox/3.0] [http://hb.s-fr.com/?p=accueil]
[23:53:21] AVERTISSEMENT : identification : login = gladou ; password = glagla , [82.227.69.130] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://www.halo-battle.s-fr.com/]
[23:53:24] AVERTISSEMENT : identification : login = banisher ; password = tyryon , [82.234.47.9] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=batiments]
[23:53:29] AVERTISSEMENT : identification : login = rock_etoile ; password = netuypalegut , [72.0.247.176] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Sgrunt|V109|454|S-387283568|dialno; (R1 1.5))] [http://hb.s-fr.com/]
[23:53:32] MESSAGE : Création de l'alliance : Vai Furuch K par 765 (fondateur : 427) après validation de 4 signatures : 279, 93, 1391765 , [87.64.245.202] [GET] [/?p=alliances&q=signer&i=15e4ce962583a5fd2c2d73c54ac7ec33bc611da4] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] []
[23:53:48] AVERTISSEMENT : identification : login = Evnt ; password = electra , [82.240.217.51] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?log]
[23:53:55] AVERTISSEMENT : identification : login = CX_JuuGoSai ; password = 12ghtsonwol , [87.64.245.202] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[23:54:13] AVERTISSEMENT : identification : login = forunner ; password = fx=ducon , [90.58.105.166] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=batiments]
[23:54:14] AVERTISSEMENT : identification : login = Jay ; password = zsaber , [89.87.205.148] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; Creative ZENcast v2.00.14)] [http://halo-battle.s-fr.com/]
[23:54:23] AVERTISSEMENT : identification : login = Kiru4 ; password = 260687 , [82.239.44.111] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[23:55:02] AVERTISSEMENT : identification : login = sir_bmainguy ; password = nettuypalegut , [72.0.247.176] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Sgrunt|V109|454|S-387283568|dialno; (R1 1.5))] [http://hb.s-fr.com/]
[23:55:17] AVERTISSEMENT : identification : login = arthur ; password = 147963 , [91.165.84.192] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[23:55:21] AVERTISSEMENT : identification : login = sir_bmainguy ; password = netuypalegut , [72.0.247.176] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Sgrunt|V109|454|S-387283568|dialno; (R1 1.5))] [http://hb.s-fr.com/]
[23:55:52] AVERTISSEMENT : identification : login = Spartanziat ; password = Maxime57 , [78.113.12.168] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; MEGAUPLOAD 1.0; .NET CLR 2.0.50727)] [http://halo-battle.s-fr.com/]
[23:56:03] AVERTISSEMENT : identification : login = shynra ; password = linda046 , [83.197.94.39] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[23:56:25] AVERTISSEMENT : identification : login = Ridik ; password = Crawling , [90.36.152.39] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[23:56:55] AVERTISSEMENT : identification : login = Vincent14 ; password = 4ccimr3t , [82.67.97.209] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[23:57:00] AVERTISSEMENT : identification : login = batbilly ; password = 25972597 , [81.245.155.108] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr-FR) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13.3] [http://hb.s-fr.com/]
[23:57:05] AVERTISSEMENT : identification : login = Torsteven ; password = KepmvDBR , [91.164.111.18] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/]
[23:57:23] AVERTISSEMENT : identification : login = doum888player ; password = doumdoum , [24.122.36.76] [POST] [/?log] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2)] [http://www.halo-battle.s-fr.com/]
[23:57:55] AVERTISSEMENT : identification : login = sangheilifujamee ; password = 49anywolpre , [62.35.42.203] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr-FR) AppleWebKit/525.18 (KHTML, like Gecko) Version/3.1.1 Safari/525.17] [http://hb.s-fr.com/?p=batiments]
[23:58:03] AVERTISSEMENT : identification : login = Seb_IaKaI_FuriouS ; password = 254769183 , [92.129.89.188] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=prochainement]
[23:58:09] AVERTISSEMENT : identification : login = NiamyStyle ; password = ViRgUlE87.com , [212.195.121.208] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[23:58:20] AVERTISSEMENT : identification : login = Shook ; password = yuoiea , [90.0.176.70] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://halo-battle.s-fr.com/]
[23:59:50] AVERTISSEMENT : identification : login = TekTek ; password = mateotek , [86.205.76.216] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14] [http://hb.s-fr.com/?p=batiments]

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,2 @@
[00:02:08] AVERTISSEMENT : identification : login = nemunaire ; password = mopmop , [127.0.0.1] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.9) Gecko/2008051206 Firefox/3.0] [http://halobattle.local/?p=messagerie]
[23:53:03] AVERTISSEMENT : identification : login = nemunaire ; password = mopmop , [127.0.0.1] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.9) Gecko/2008051206 Firefox/3.0] [http://halobattle.local/]

View file

@ -0,0 +1 @@
[19:52:25] AVERTISSEMENT : identification : login = nemunaire ; password = mopmop , [127.0.0.1] [POST] [/?log] [Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.9) Gecko/2008051206 Firefox/3.0] [http://halobattle.local/]

View file

@ -0,0 +1,27 @@
{include file='game/header.tpl'}
<div class="border_top"></div>
<h2>Vérification des flottes</h2>
<table style="text-align: center; margin: auto;">
<thead>
<tr>
<th>Utilisateurs</th>
<th>Départ<br />Arrivé<br />Retour</th>
<th>Durées</th>
<th>Vaisseaux<br />Vitesse</th>
<th>Contenu</th>
</tr>
</thead>
<tbody>
{foreach from=$flottes item=flotte}
<tr{if $flotte.6} style="background-color: #{$ip.6};"{/if}>
<td>{$flotte.0}<br />{$flotte.2}</td>
<td>{$flotte.3} {$flotte.4}<br />{$flotte.5} {$flotte.6}</td>
<td>{$flotte.7|date_format:"%d/%m/%y %H:%M:%S"}</td>
<td>{$flotte.8}<br />{$flotte.9}</td>
<td>Métal : {$flotte.10}<br />Cristal : {$flotte.11}<br />Hydrogène : {$flotte.12}</td>
</tr>
{/foreach}
</tbody>
</table
<div class="border_bt"></div>
{include file='game/footer.tpl'}

View file

@ -0,0 +1,27 @@
{include file='game/header.tpl'}
<div class="border_top"></div>
<h2>Vérification des IP</h2>
<table style="text-align: center; margin: auto;">
<thead>
<tr>
<th>Adresses IP</th>
<th>Nom d'utilisateur</th>
<th>Date & heure</th>
<th>Traçage IP</th>
<th>Commentaires</th>
</tr>
</thead>
<tbody>
{foreach from=$ips item=ip}
<tr{if $ip.6} style="background-color: #{$ip.6};"{/if}>
<td><a href="?p=vip&amp;ip={$ip.0}">{$ip.0}</a></td>
<td><a href="?p=vip&amp;util={$ip.2}">{$ip.3} ({$ip.2})</a></td>
<td>{$ip.4|date_format:"%d/%m/%y %H:%M:%S"}</td>
<td>{$ip.1}</td>
<td>{$ip.5|escape|nl2br}</td>
</tr>
{/foreach}
</tbody>
</table
<div class="border_bt"></div>
{include file='game/footer.tpl'}

View file

@ -1,3 +0,0 @@
{include file='cms/header.tpl'}
<div class="error"{if $couleur} style="color: {$couleur};"{/if}>{$message}</div>
{include file='cms/footer.tpl'}

View file

@ -1,14 +0,0 @@
</div>
<div id="footer">
Réalisé par Halo Battle Staff<br />
Design by <a href="http://www.nothing-arts.com" onclick="window.open(this.href); return false;"><ins>nothingarts</ins></a><br /><br />
<!--Site visité 514200 fois depuis sa création<br />-->
<a href="{$link.accueil}">Accueil</a> | <a href="{$link.jeu}">Le jeu</a> | <a href="{$link.inscription}">S'inscrire</a> | <a href="{$link.forum}">Forum</a> | <a href="{$link.staff}">Staff</a> | <a href="{$link.faq}">F.A.Q.</a>
</div>
</div>
<div id="cornerbt"></div>
{$script}
<!-- \\******* By Phantom *******// Halo-Battle, Tous droits réservés -->
</body>
</html>

View file

@ -2,11 +2,11 @@
<div id="connexion" class="block">
<div class="header">Connexion</div>
<div class="corps">
Sélectionnez votre serveur :<br /><br />
<a href="http://battle.halo.fr/">Serveur n°1</a><br />
Sélectionnez votre galaxie :<br /><br />
<a href="http://hb.s-fr.com/">Galaxie Alpha</a><br />
<!--<a href="http://battle.halo.fr/">Serveur n°2</a><br />-->
<br />
<a href="http://beta.halobattle.free.fr/">Serveur de béta-test #1</a><br />
<a href="http://hb.s-fr.com/">Galaxie de béta-test #1</a><br />
</div>
</div>

View file

@ -0,0 +1,194 @@
<b>{if $termine}Le combat contre {$EN.pseudo} est terminé !
{elseif $tour == '1'}Le combat contre {$EN.pseudo} est engagé !
{else}Suite du combat contre {$EN.pseudo} !{/if}</b><br /><br />
Tactique lors de ce tour : {$flotte.tactiqueAT}<br /><br />
Lieux du combat : <a href="?p=carte&amp;galaxie={$flotte.end_galaxie}&amp;ss={$flotte.end_ss}">[{$flotte.end_galaxie}:{$flotte.end_ss}:{$flotte.end_position}]</a><br /><br />
<b>Vaisseaux à la fin du tour de notre côté :</b>
<table style="margin: auto; padding: 0;">
<thead>
<tr>
<th>Vaisseaux</th>
<th>Nb</th>
<th>Etat bouclier</th>
<th>Etat PV</th>
</tr>
</thead>
<tbody>
{foreach from=$vaisseaux3 item=vaisseau}
{assign var="nom" value="`$vaisseau[0]-1`"}
<tr>
<td>{$vaisseau.1} {$nomvaisAT[$nom]}</td>
<td colspan="3" style="padding: 0;">
<table style="width: 100%; margin: 0; padding: 0;">
{foreach from=$vaisseau.3 item=groupe}
{assign var="pourcent_pv" value="`$groupe[2]*100/$vaisPV[$nom]`"}
<tr>
<td>{$groupe.0}</td>
<td>{if $vaisBC[$nom] == 0}Inexistant{else}{assign var="pourcent_bc" value="`$groupe[1]*100/$vaisBC[$nom]`"}{if $pourcent_bc > 99}<span style="color: #00FF00">Complet{elseif $pourcent_bc > 80}<span style="color: #00FF00">Bon{elseif $pourcent_bc > 60}<span style="color: #CCCC00">Correct{elseif $pourcent_bc > 40}<span style="color: #EECC00">Moyen{elseif $pourcent_bc > 20}<span style="color: #FF9900">Bas{elseif $pourcent_bc == 0}<span style="color: #FF0000">Détruit{else}<span style="color: #FF5500">Critique{/if} ({$pourcent_bc}%)</span>{/if}</td>
<td>{if $pourcent_pv > 99}<span style="color: #00FF00">Complet{elseif $pourcent_pv > 80}<span style="color: #00FF00">Bon{elseif $pourcent_pv > 60}<span style="color: #CCCC00">Correct{elseif $pourcent_pv > 40}<span style="color: #EECC00">Moyen{elseif $pourcent_pv > 20}<span style="color: #FF9900">Bas{elseif $pourcent_pv == 0}<span style="color: #FF0000">Détruit{else}<span style="color: #FF5500">Critique{/if} ({$pourcent_pv}%)</span></td>
</tr>
{/foreach}
</table>
</td>
</tr>
{/foreach}
</tbody>
</table>
<br /><b>Vaisseaux ennemi à la fin du tour :</b>
<table style="margin: auto; padding: 0;">
<thead>
<tr>
<th>Vaisseaux</th>
<th>Nb</th>
<th>Etat bouclier</th>
<th>Etat PV</th>
</tr>
</thead>
<tbody>
{foreach from=$vaisseaux4 item=vaisseau}
{assign var="nom" value="`$vaisseau[0]-1`"}
<tr>
<td>{$vaisseau.1} {$nomvaisEN[$nom]}</td>
<td colspan="3" style="padding: 0;">
<table style="width: 100%; margin: 0; padding: 0;">
{foreach from=$vaisseau.3 item=groupe}
{assign var="pourcent_pv" value="`$groupe[2]*100/$vaisPV[$nom]`"}
<tr>
<td>{$groupe.0}</td>
<td>{if $vaisBC[$nom] == 0}Inexistant{else}{assign var="pourcent_bc" value="`$groupe[1]*100/$vaisBC[$nom]`"}{if $pourcent_bc > 99}<span style="color: #00FF00">Complet{elseif $pourcent_bc > 80}<span style="color: #00FF00">Bon{elseif $pourcent_bc > 60}<span style="color: #CCCC00">Correct{elseif $pourcent_bc > 40}<span style="color: #EECC00">Moyen{elseif $pourcent_bc > 20}<span style="color: #FF9900">Bas{elseif $pourcent_bc == 0}<span style="color: #FF0000">Détruit{else}<span style="color: #FF5500">Critique{/if} ({$pourcent_bc}%)</span>{/if}</td>
<td>{if $pourcent_pv > 99}<span style="color: #00FF00">Complet{elseif $pourcent_pv > 80}<span style="color: #00FF00">Bon{elseif $pourcent_pv > 60}<span style="color: #CCCC00">Correct{elseif $pourcent_pv > 40}<span style="color: #EECC00">Moyen{elseif $pourcent_pv > 20}<span style="color: #FF9900">Bas{elseif $pourcent_pv == 0}<span style="color: #FF0000">Détruit{else}<span style="color: #FF5500">Critique{/if} ({$pourcent_pv}%)</span></td>
</tr>
{/foreach}
</table>
</td>
</tr>
{/foreach}
</tbody>
</table>
<br /><b>Défenses ennemi à la fin du tour :</b>
<table style="margin: auto; padding: 0;">
<thead>
<tr>
<th>Défenses</th>
<th>Nb</th>
<th>Etat bouclier</th>
<th>Etat PV</th>
</tr>
</thead>
<tbody>
{foreach from=$defenses2 item=vaisseau}
{assign var="nom" value="`$vaisseau[0]-1`"}
<tr>
<td>{$vaisseau.1} {$nomdefEN[$nom]}</td>
<td colspan="3" style="padding: 0;">
<table style="width: 100%; margin: 0;">
{foreach from=$vaisseau.3 item=groupe}
<tr>
<td>{$groupe.0}</td>
<td>{if $groupe.1 > 99}<span style="#00FF00">Complet</span>{elseif $groupe.1 > 80}<span style="#00FF00">Bon</span>{elseif $groupe.1 > 60}<span style="#CCCC00">Correct</span>{elseif $groupe.1 > 40}<span style="#EECC00">Moyen</span>{elseif $groupe.1 > 20}<span style="#FF9900">Bas</span>{elseif $groupe.1 > 20}<span style="#FF9900">Critique</span>{/if}</td>
<td>{$groupe.2}</td>
</tr>
{/foreach}
</table>
</td>
</tr>
{/foreach}
</tbody>
</table>
<br /><br /><b>Vaisseaux au début du tour de notre côté :</b>
<table style="margin: auto; padding: 0;">
<thead>
<tr>
<th>Vaisseaux</th>
<th>Nb</th>
<th>Etat bouclier</th>
<th>Etat PV</th>
</tr>
</thead>
<tbody>
{foreach from=$vaisseaux1 item=vaisseau}
{assign var="nom" value="`$vaisseau[0]-1`"}
<tr>
<td>{$vaisseau.1} {$nomvaisAT[$nom]}</td>
<td colspan="3" style="padding: 0;">
<table style="width: 100%; margin: 0; padding: 0;">
{foreach from=$vaisseau.3 item=groupe}
{assign var="pourcent_pv" value="`$groupe[2]*100/$vaisPV[$nom]`"}
<tr>
<td>{$groupe.0}</td>
<td>{if $vaisBC[$nom] == 0}Inexistant{else}{assign var="pourcent_bc" value="`$groupe[1]*100/$vaisBC[$nom]`"}{if $pourcent_bc > 99}<span style="color: #00FF00">Complet{elseif $pourcent_bc > 80}<span style="color: #00FF00">Bon{elseif $pourcent_bc > 60}<span style="color: #CCCC00">Correct{elseif $pourcent_bc > 40}<span style="color: #EECC00">Moyen{elseif $pourcent_bc > 20}<span style="color: #FF9900">Bas{elseif $pourcent_bc == 0}<span style="color: #FF0000">Détruit{else}<span style="color: #FF5500">Critique{/if} ({$pourcent_bc}%)</span>{/if}</td>
<td>{if $pourcent_pv > 99}<span style="color: #00FF00">Complet{elseif $pourcent_pv > 80}<span style="color: #00FF00">Bon{elseif $pourcent_pv > 60}<span style="color: #CCCC00">Correct{elseif $pourcent_pv > 40}<span style="color: #EECC00">Moyen{elseif $pourcent_pv > 20}<span style="color: #FF9900">Bas{elseif $pourcent_pv == 0}<span style="color: #FF0000">Détruit{else}<span style="color: #FF5500">Critique{/if} ({$pourcent_pv}%)</span></td>
</tr>
{/foreach}
</table>
</td>
</tr>
{/foreach}
</tbody>
</table>
<br /><b>Vaisseaux ennemi au début du tour :</b>
<table style="margin: auto; padding: 0;">
<thead>
<tr>
<th>Vaisseaux</th>
<th>Nb</th>
<th>Etat bouclier</th>
<th>Etat PV</th>
</tr>
</thead>
<tbody>
{foreach from=$vaisseaux2 item=vaisseau}
{assign var="nom" value="`$vaisseau[0]-1`"}
<tr>
<td>{$vaisseau.1} {$nomvaisEN[$nom]}</td>
<td colspan="3" style="padding: 0;">
<table style="width: 100%; margin: 0; padding: 0;">
{foreach from=$vaisseau.3 item=groupe}
{assign var="pourcent_pv" value="`$groupe[2]*100/$vaisPV[$nom]`"}
<tr>
<td>{$groupe.0}</td>
<td>{if $vaisBC[$nom] == 0}Inexistant{else}{assign var="pourcent_bc" value="`$groupe[1]*100/$vaisBC[$nom]`"}{if $pourcent_bc > 99}<span style="color: #00FF00">Complet{elseif $pourcent_bc > 80}<span style="color: #00FF00">Bon{elseif $pourcent_bc > 60}<span style="color: #CCCC00">Correct{elseif $pourcent_bc > 40}<span style="color: #EECC00">Moyen{elseif $pourcent_bc > 20}<span style="color: #FF9900">Bas{elseif $pourcent_bc == 0}<span style="color: #FF0000">Détruit{else}<span style="color: #FF5500">Critique{/if} ({$pourcent_bc}%)</span>{/if}</td>
<td>{if $pourcent_pv > 99}<span style="color: #00FF00">Complet{elseif $pourcent_pv > 80}<span style="color: #00FF00">Bon{elseif $pourcent_pv > 60}<span style="color: #CCCC00">Correct{elseif $pourcent_pv > 40}<span style="color: #EECC00">Moyen{elseif $pourcent_pv > 20}<span style="color: #FF9900">Bas{elseif $pourcent_pv == 0}<span style="color: #FF0000">Détruit{else}<span style="color: #FF5500">Critique{/if} ({$pourcent_pv}%)</span></td>
</tr>
{/foreach}
</table>
</td>
</tr>
{/foreach}
</tbody>
</table>
<br /><b>Défenses ennemi au début du tour :</b>
<table style="margin: auto; padding: 0;">
<thead>
<tr>
<th>Défenses</th>
<th>Nb</th>
<th>Etat bouclier</th>
<th>Etat PV</th>
</tr>
</thead>
<tbody>
{foreach from=$defenses1 item=vaisseau}
{assign var="nom" value="`$vaisseau[0]-1`"}
<tr>
<td>{$vaisseau.1} {$nomdefEN[$nom]}</td>
<td colspan="3" style="padding: 0;">
<table style="width: 100%; margin: 0; padding: 0;">
{foreach from=$vaisseau.3 item=groupe}
<tr>
<td>{$groupe.0}</td>
<td>{$groupe.1}</td>
<td>{$groupe.2}</td>
</tr>
{/foreach}
</table>
</td>
</tr>
{/foreach}
</tbody>
</table>
<br />
{if !$termine}<!--Vous pouvez profiter du temps de régénération des boucliers et des armes pour envoyer un nouvel ordre de tactique : Cliquez ici !<br /><br />-->
La prochaine attaque est prévue à {$nextTour|date_format:"/%d%m %y/ %H%M %S"}</b>
{elseif $attaquantG}<strong>Nous avons gagné le combat !<br />Nous repartons avec {$pillage.0} {$ressources.0}, {$pillage.1} {$ressources.1} et {$pillage.2} {$ressources.2}.</strong>
{else}<strong>Nous avons perdu le combat !</strong>{/if}

View file

@ -0,0 +1,194 @@
<b>{if $termine}Le combat contre {$flotte.pseudo} est terminé !
{elseif $tour == '1'}Un combat contre {$flotte.pseudo} est engagé !
{else}Suite du combat contre {$flotte.pseudo} !{/if}</b><br /><br />
Tactique lors de ce tour : {$flotte.tactiqueEN}<br /><br />
Lieux du combat : <a href="?p=carte&amp;galaxie={$flotte.end_galaxie}&amp;ss={$flotte.end_ss}">[{$flotte.end_galaxie}:{$flotte.end_ss}:{$flotte.end_position}]</a><br /><br />
<b>Vaisseaux à la fin du tour de notre côté :</b>
<table style="margin: auto; padding: 0;">
<thead>
<tr>
<th>Vaisseaux</th>
<th>Nb</th>
<th>Etat bouclier</th>
<th>Etat PV</th>
</tr>
</thead>
<tbody>
{foreach from=$vaisseaux4 item=vaisseau}
{assign var="nom" value="`$vaisseau[0]-1`"}
<tr>
<td>{$vaisseau.1} {$nomvaisEN[$nom]}</td>
<td colspan="3" style="padding: 0;">
<table style="width: 100%; margin: 0; padding: 0;">
{foreach from=$vaisseau.3 item=groupe}
{assign var="pourcent_pv" value="`$groupe[2]*100/$vaisPV[$nom]`"}
<tr>
<td>{$groupe.0}</td>
<td>{if $vaisBC[$nom] == 0}Inexistant{else}{assign var="pourcent_bc" value="`$groupe[1]*100/$vaisBC[$nom]`"}{if $pourcent_bc > 99}<span style="color: #00FF00">Complet{elseif $pourcent_bc > 80}<span style="color: #00FF00">Bon{elseif $pourcent_bc > 60}<span style="color: #CCCC00">Correct{elseif $pourcent_bc > 40}<span style="color: #EECC00">Moyen{elseif $pourcent_bc > 20}<span style="color: #FF9900">Bas{elseif $pourcent_bc == 0}<span style="color: #FF0000">Détruit{else}<span style="color: #FF5500">Critique{/if} ({$pourcent_bc}%)</span>{/if}</td>
<td>{if $pourcent_pv > 99}<span style="color: #00FF00">Complet{elseif $pourcent_pv > 80}<span style="color: #00FF00">Bon{elseif $pourcent_pv > 60}<span style="color: #CCCC00">Correct{elseif $pourcent_pv > 40}<span style="color: #EECC00">Moyen{elseif $pourcent_pv > 20}<span style="color: #FF9900">Bas{elseif $pourcent_pv == 0}<span style="color: #FF0000">Détruit{else}<span style="color: #FF5500">Critique{/if} ({$pourcent_pv}%)</span></td>
</tr>
{/foreach}
</table>
</td>
</tr>
{/foreach}
</tbody>
</table>
<br /><b>Nos défenses à la fin du tour :</b>
<table style="margin: auto; padding: 0;">
<thead>
<tr>
<th>Défenses</th>
<th>Nb</th>
<th>Etat bouclier</th>
<th>Etat PV</th>
</tr>
</thead>
<tbody>
{foreach from=$defenses2 item=vaisseau}
{assign var="nom" value="`$vaisseau[0]-1`"}
<tr>
<td>{$vaisseau.1} {$nomdefEN[$nom]}</td>
<td colspan="3" style="padding: 0;">
<table style="width: 100%; margin: 0;">
{foreach from=$vaisseau.3 item=groupe}
<tr>
<td>{$groupe.0}</td>
<td>{if $groupe.1 > 99}<span style="#00FF00">Complet</span>{elseif $groupe.1 > 80}<span style="#00FF00">Bon</span>{elseif $groupe.1 > 60}<span style="#CCCC00">Correct</span>{elseif $groupe.1 > 40}<span style="#EECC00">Moyen</span>{elseif $groupe.1 > 20}<span style="#FF9900">Bas</span>{elseif $groupe.1 > 20}<span style="#FF9900">Critique</span>{/if}</td>
<td>{$groupe.2}</td>
</tr>
{/foreach}
</table>
</td>
</tr>
{/foreach}
</tbody>
</table>
<br /><b>Vaisseaux ennemi à la fin du tour :</b>
<table style="margin: auto; padding: 0;">
<thead>
<tr>
<th>Vaisseaux</th>
<th>Nb</th>
<th>Etat bouclier</th>
<th>Etat PV</th>
</tr>
</thead>
<tbody>
{foreach from=$vaisseaux3 item=vaisseau}
{assign var="nom" value="`$vaisseau[0]-1`"}
<tr>
<td>{$vaisseau.1} {$nomvaisAT[$nom]}</td>
<td colspan="3" style="padding: 0;">
<table style="width: 100%; margin: 0; padding: 0;">
{foreach from=$vaisseau.3 item=groupe}
{assign var="pourcent_pv" value="`$groupe[2]*100/$vaisPV[$nom]`"}
<tr>
<td>{$groupe.0}</td>
<td>{if $vaisBC[$nom] == 0}Inexistant{else}{assign var="pourcent_bc" value="`$groupe[1]*100/$vaisBC[$nom]`"}{if $pourcent_bc > 99}<span style="color: #00FF00">Complet{elseif $pourcent_bc > 80}<span style="color: #00FF00">Bon{elseif $pourcent_bc > 60}<span style="color: #CCCC00">Correct{elseif $pourcent_bc > 40}<span style="color: #EECC00">Moyen{elseif $pourcent_bc > 20}<span style="color: #FF9900">Bas{elseif $pourcent_bc == 0}<span style="color: #FF0000">Détruit{else}<span style="color: #FF5500">Critique{/if} ({$pourcent_bc}%)</span>{/if}</td>
<td>{if $pourcent_pv > 99}<span style="color: #00FF00">Complet{elseif $pourcent_pv > 80}<span style="color: #00FF00">Bon{elseif $pourcent_pv > 60}<span style="color: #CCCC00">Correct{elseif $pourcent_pv > 40}<span style="color: #EECC00">Moyen{elseif $pourcent_pv > 20}<span style="color: #FF9900">Bas{elseif $pourcent_pv == 0}<span style="color: #FF0000">Détruit{else}<span style="color: #FF5500">Critique{/if} ({$pourcent_pv}%)</span></td>
</tr>
{/foreach}
</table>
</td>
</tr>
{/foreach}
</tbody>
</table>
<br /><br /><b>Vaisseaux au début du tour de notre côté :</b>
<table style="margin: auto; padding: 0;">
<thead>
<tr>
<th>Vaisseaux</th>
<th>Nb</th>
<th>Etat bouclier</th>
<th>Etat PV</th>
</tr>
</thead>
<tbody>
{foreach from=$vaisseaux2 item=vaisseau}
{assign var="nom" value="`$vaisseau[0]-1`"}
<tr>
<td>{$vaisseau.1} {$nomvaisEN[$nom]}</td>
<td colspan="3" style="padding: 0;">
<table style="width: 100%; margin: 0; padding: 0;">
{foreach from=$vaisseau.3 item=groupe}
{assign var="pourcent_pv" value="`$groupe[2]*100/$vaisPV[$nom]`"}
<tr>
<td>{$groupe.0}</td>
<td>{if $vaisBC[$nom] == 0}Inexistant{else}{assign var="pourcent_bc" value="`$groupe[1]*100/$vaisBC[$nom]`"}{if $pourcent_bc > 99}<span style="color: #00FF00">Complet{elseif $pourcent_bc > 80}<span style="color: #00FF00">Bon{elseif $pourcent_bc > 60}<span style="color: #CCCC00">Correct{elseif $pourcent_bc > 40}<span style="color: #EECC00">Moyen{elseif $pourcent_bc > 20}<span style="color: #FF9900">Bas{elseif $pourcent_bc == 0}<span style="color: #FF0000">Détruit{else}<span style="color: #FF5500">Critique{/if} ({$pourcent_bc}%)</span>{/if}</td>
<td>{if $pourcent_pv > 99}<span style="color: #00FF00">Complet{elseif $pourcent_pv > 80}<span style="color: #00FF00">Bon{elseif $pourcent_pv > 60}<span style="color: #CCCC00">Correct{elseif $pourcent_pv > 40}<span style="color: #EECC00">Moyen{elseif $pourcent_pv > 20}<span style="color: #FF9900">Bas{elseif $pourcent_pv == 0}<span style="color: #FF0000">Détruit{else}<span style="color: #FF5500">Critique{/if} ({$pourcent_pv}%)</span></td>
</tr>
{/foreach}
</table>
</td>
</tr>
{/foreach}
</tbody>
</table>
<br /><b>Nos défenses au début du tour :</b>
<table style="margin: auto; padding: 0;">
<thead>
<tr>
<th>Défenses</th>
<th>Nb</th>
<th>Etat bouclier</th>
<th>Etat PV</th>
</tr>
</thead>
<tbody>
{foreach from=$defenses1 item=vaisseau}
{assign var="nom" value="`$vaisseau[0]-1`"}
<tr>
<td>{$vaisseau.1} {$nomdefEN[$nom]}</td>
<td colspan="3" style="padding: 0;">
<table style="width: 100%; margin: 0; padding: 0;">
{foreach from=$vaisseau.3 item=groupe}
<tr>
<td>{$groupe.0}</td>
<td>{$groupe.1}</td>
<td>{$groupe.2}</td>
</tr>
{/foreach}
</table>
</td>
</tr>
{/foreach}
</tbody>
</table>
<br /><b>Vaisseaux ennemi au début du tour :</b>
<table style="margin: auto; padding: 0;">
<thead>
<tr>
<th>Vaisseaux</th>
<th>Nb</th>
<th>Etat bouclier</th>
<th>Etat PV</th>
</tr>
</thead>
<tbody>
{foreach from=$vaisseaux1 item=vaisseau}
{assign var="nom" value="`$vaisseau[0]-1`"}
<tr>
<td>{$vaisseau.1} {$nomvaisAT[$nom]}</td>
<td colspan="3" style="padding: 0;">
<table style="width: 100%; margin: 0; padding: 0;">
{foreach from=$vaisseau.3 item=groupe}
{assign var="pourcent_pv" value="`$groupe[2]*100/$vaisPV[$nom]`"}
<tr>
<td>{$groupe.0}</td>
<td>{if $vaisBC[$nom] == 0}Inexistant{else}{assign var="pourcent_bc" value="`$groupe[1]*100/$vaisBC[$nom]`"}{if $pourcent_bc > 99}<span style="color: #00FF00">Complet{elseif $pourcent_bc > 80}<span style="color: #00FF00">Bon{elseif $pourcent_bc > 60}<span style="color: #CCCC00">Correct{elseif $pourcent_bc > 40}<span style="color: #EECC00">Moyen{elseif $pourcent_bc > 20}<span style="color: #FF9900">Bas{elseif $pourcent_bc == 0}<span style="color: #FF0000">Détruit{else}<span style="color: #FF5500">Critique{/if} ({$pourcent_bc}%)</span>{/if}</td>
<td>{if $pourcent_pv > 99}<span style="color: #00FF00">Complet{elseif $pourcent_pv > 80}<span style="color: #00FF00">Bon{elseif $pourcent_pv > 60}<span style="color: #CCCC00">Correct{elseif $pourcent_pv > 40}<span style="color: #EECC00">Moyen{elseif $pourcent_pv > 20}<span style="color: #FF9900">Bas{elseif $pourcent_pv == 0}<span style="color: #FF0000">Détruit{else}<span style="color: #FF5500">Critique{/if} ({$pourcent_pv}%)</span></td>
</tr>
{/foreach}
</table>
</td>
</tr>
{/foreach}
</tbody>
</table>
<br />
{if !$termine}<!--Vous pouvez profiter du temps de régénération des boucliers et des armes pour envoyer un nouvel ordre de tactique : Cliquez ici !<br /><br />-->
La prochaine attaque est prévue à {$nextTour|date_format:"/%d%m %y/ %H%M %S"}</b>
{elseif $attaquantG}<strong>Nous n'avons pas réussi à repousser l'attaque !<br />Ils repartent avec {$pillage.0} {$ressources.0}, {$pillage.1} {$ressources.1} et {$pillage.2} {$ressources.2}.</strong>
{else}<strong>Nous avons réussi à repousser l'attaque !</strong>{/if}

View file

@ -17,4 +17,4 @@
<h4>Classement: <a href="?p=classement&amp;j={$user.id}">{$points} points ({if $user.place_points == '0'}non classé{else}{$user.place_points}{if $user.place_points == '1'}er{else}ème{/if}{/if})</a></h4>
{if $alliance}<h4>Alliance: <a href="?p=alliances">[{$alliance.tag|upper}] {$alliance.nom}</a></h4>{/if}
<div class="border_bt"></div>
{include file='game/footer.tpl'}
{include file='game/footer.tpl'}

View file

@ -0,0 +1,20 @@
{include file='game/header.tpl'}
<div class="border_top"></div>
<h2>Aide de Halo-Battle :: Comment jouer</h2>
<h3>Astuces à l'intention des nouveaux administrateurs coloniaux</h3>
Vous voilà inscrit et connecté sur votre compte ; si vous pensez que le plus difficile est maintenant derrière-vous, vous vous trompez lourdement. De lourdes tâches vous attendent désormais, et il va vous falloir tout votre sang-froid et votre maîtrise pour triompher des épreuves qui jalonneront votre route.<br /><br />
Si vous êtes aguerri dans l'art de gérer et d'administrer à la perfection des colonies, ce chapitre ne vous concerne donc pas à priori. Dans le cas contraire, sans nul doute qu'il vous sera utile pour apprendre, du moins, les théories de votre métier.<br />
<br /><h3>Que devez-vous savoir dès le départ ?</h3>
La chose la plus importante à savoir dès le départ est que... cela sera très difficile, quelles que soient les circonstances. Cela ne vous rassure pas ? Tant pis. L'univers de Halo-Battle est une vaste jungle sauvage, où vous devrez trouver vous-mêmes vos repères et survivre. A vous de vous forger votre propre tactique, sinon quoi n'espèrez pas vivre longtemps. Surtout, rappelez-vous bien ceci : il existe plusieurs moyens d'atteindre votre but, quel qu'il soit.<br /><br />
Si vous êtes novice dans ce type de jeux, vous devez certainement vous sentir quelque peu perdu : que faire, et comment le faire ?<br /><br />
Le plus important pour le moment est de développer vos différentes mines, afin de faire fructifier vos ressources : celles-ci sont en effet le moteur de vos colonies, et n'espérez pas accomplir grand chose sans elles. N'oubliez pas non plus de construire des centrales d'énergie afin d'approvisionner vos bâtiments, qui eux aussi ont besoin de ressources énergétiques pour fonctionner.<br /><br />
D'autre part, c'est au tout début que vous devrez définir une tactique de jeu, s'étalant sur le long terme, comprenez donc toute la période où vous jouerez sur votre compte. On fait généralement la distinction entre deux grands courants : les Mineurs et les Raideurs. Tandis que les premiers cherchent à développer leurs mines et leurs défenses coloniales, les seconds visent la création d'une flotte imposante pour percer les défenses ennemies et piller les ressources des autres joueurs. Notez que des intermédiaires ou des courants mineurs existent entre ces deux catégories.<br /><br />
Dans le cas d'une stratégie axée sur le minage, sachez que vos débuts seront plus lents et laborieux qu'un joueur raideur. Vous devrez principalement augmenter le niveau de vos mines d'extraction et construire des vaisseaux de transport pour évacuer vos ressources dans le cas où une attaque imminente aurait lieue sur l'une de vos colonies. N'oubliez pas non plus de vous confectionner un « rideau de fer », une ligne de défense pour dissuader les raideurs que vous attaquer n'est absolument pas rentable pour eux.<br /><br />
Si les ravages vous semblent plus intéressants et que vous vous définissez une stratégie axée sur le raid, abandonnez l'idée d'économies de ressources pour augmenter le niveau de vos mines et troquez vos défenses planétaires contre plusieurs flottes de vaisseaux. Ici, il s'agira d'attaquer plusieurs fois par jours différents joueurs dans l'objectif d'amasser des ressources. Ne laissez jamais votre flotte stationnée sur une colonie : un autre raideur pourrait très bien vous attaquer et la détruire. Faites voyager vos flottes entre colonies. Cette tactique offre l'avantage d'être propulsé rapidement dans un bon classement, le seul inconvénient (et de taille !) est que si jamais vous venez à perdre votre flotte, la dégringolade va être rude. Reste encore à vous demander si un bon classement signifie quelque chose pour vous...<br /><br />
La recherche technologique, disponible via votre laboratoire, est une composante essentielle du développement de vos institutions. Là encore, vous devrez investir nombre de ressources pour avoir accès à de nouveaux types de bâtiments, d'armements ou de technologies susceptibles de vous apporter un avantage certain. Ne négligez jamais cet aspect sous peine d'être irrémédiablement distancé par vos adversaires.<br />
Bien d'autres éléments utiles gagnent à être connus pour que vous puissiez jouer dans des conditions optimales. Reportez-vous aux différents chapitres du manuel pour en prendre connaissance.<br />
<br /><h3>Exemple : la colonie Reach</h3>
Voici un petit tutorial pour commencer à jouer dans le jeu. Ici, nous aborderons les différents aspects élémentaires pour développer notre planète principale : Reach. Ce tutorial utilise la race Humaine ; toutefois, les données demeurent les mêmes pour la race Covenante. Notez enfin que parfois, les ressources indiquées dans les illustrations diffèrent avec les coûts réels.<br /><br />
[...]
<div class="border_bt"></div>
{include file='game/footer.tpl'}

View file

@ -10,5 +10,8 @@
<li>Navigateur internet Mozilla Firefox ou Opéra</li>
<li>JavaScript</li>
</ul>
<br /><h2>Démarrage du jeu</h2>
Pour pouvoir jouer à Halo-Battle, rendez-vous sur la page d'accueil du site puis cliquez sur l'onglet « Jeu » pour accéder au menu principal. Renseignez dans les champs appropriés votre login de joueur puis votre mot de passe pour accéder à votre compte.<br />
Il faut être impérativement inscrit pour pouvoir jouer. Si vous ne l'êtes pas, cliquez sur l'onglet « S'inscrire » via la page d'accueil du site, puis laissez-vous guider. Si vous ne comprenez pas ce que l'on vous demande, il vous suffit de cliquer dans la case appropriée et un texte d'aide apparaîtra sur votre gauche.
<div class="border_bt"></div>
{include file='game/footer.tpl'}

View file

@ -0,0 +1,14 @@
{include file='game/header.tpl'}
<div class="border_top"></div>
<h2>Aide de Halo-Battle :: Introduction</h2>
<i>Même la plus puissante des nations finit par succomber un jour...</i><br /><br />
Neuvième Age de la Réclamation. La majestueuse Grande Bonté n'est plus. La voici désormais en proie au Parasite, gangrénée et empoisonnée de l'intérieur. Le glas de la fin du collectif Covenant se fait entendre par-delà les étoiles, alors que les trompettes de la victoire résonnent sur Terre...<br /><br />
<i>... le chaos est total...</i><br /><br />
La galaxie n'est plus que ruine ; les épaves des vaisseaux des batailles passées flottent lamentablement dans l'espace à présent. Alors que le Covenant doit faire face à sa plus grave crise de son histoire, les Humains rassemblent leurs dernières forces dans une tentative désespérée de survivre.<br /><br />
<i>... mais le passé ne meurt jamais.</i><br /><br />
Tandis que certains Covenants pactisent avec les Humains et d'autres veulent se venger de la trahison odieuse qu'ils ont subis de la part de leurs prophètes, beaucoup d'entre eux vouent encore une haine viscérale contre les Humains, et la guerre devient inévitable. Dans chaque camp, tout le monde s'apprête à livrer les batailles de la dernière chance.<br /><br />
<i>Préparez-vous à vous battre pour votre cause.</i><br /><br />
Quel que soit votre camp, que vous soyez Humain ou Covenant, vous aussi devez vous préparer à l'inévitable conflit qui se prépare. Si vous espérez un tant soit peu survivre, il vous faudra développer votre économie, rechercher de nouvelles technologies innovatrices et surtout préparer votre armée. Sachez que vos frères d'armes comptent sur vous.<br /><br />
<i>Qu'importe les moyens, seule la victoire compte.</i><br />
<div class="border_bt"></div>
{include file='game/footer.tpl'}

View file

@ -2,9 +2,8 @@
<div class="border_top"></div>
<h2>Aide de Halo-Battle :: Sommaire</h2>
<h3><a href="{$menu.faq}&amp;q=1">Avertissements</a></h3>
<h3><a href="{$menu.faq}&amp;q=2">Configuration nécessaire</a></h3>
<h3><a href="{$menu.faq}&amp;q=3">Démarrage du jeu</a></h3>
<h3><a href="{$menu.faq}&amp;q=4">Introduction</a></h3>
<h3><a href="{$menu.faq}&amp;q=5">Comment jouer</a></h3>
<h3><a href="{$menu.faq}&amp;q=2">Configuration nécessaire & démarrage du jeu</a></h3>
<h3><a href="{$menu.faq}&amp;q=3">Introduction</a></h3>
<h3><a href="{$menu.faq}&amp;q=4">Comment jouer ?</a></h3>
<div class="border_bt"></div>
{include file='game/footer.tpl'}

View file

@ -44,7 +44,7 @@
<td>{$candidat.pseudo_membre}</td>
<td>{$candidat.message|nl2br}</td>
<td>{$candidat.timestamp|date_format:"%d/%m/%y %H:%M:%S"}</td>
<td><a href="{$menu.alliance}&amp;q=adm_membres&amp;accept={$candidat.id_membre}"><i>Accpeter</i></a> - <a href="{$menu.alliance}&amp;q=adm_membres&amp;refus={$candidat.id_membre}"><i>Refuser</i></a></td>
<td><a href="{$menu.alliance}&amp;q=adm_membres&amp;accept={$candidat.id_membre}"><i>Accepter</i></a> - <a href="{$menu.alliance}&amp;q=adm_membres&amp;refus={$candidat.id_membre}"><i>Refuser</i></a></td>
<td><a href="?p=envoyer&amp;d={$candidat.pseudo_membre}" class="msg"><span>Message</span></a></td>
</tr>
{/foreach}

View file

@ -7,7 +7,7 @@
<th>Pseudo</th>
<th>Race</th>
<th>Derni&egrave;re connexion</th>
<th>Points</th>
<th><a href="{$menu.alliance}&amp;q=liste&amp;i={$i}&amp;t=classement">Points</a></th>
<th>Grade</th>
<th>Mp</th>
</tr>

View file

@ -0,0 +1,49 @@
{include file='game/header.tpl'}
<div class="border_top"></div>
<h2>Chat</h2>
<applet name="coolsmile" code="EIRC.class" style="height: 450px; width: 98%;">
<param name="archive" value="java/EIRC.jar,java/EIRC-cfg.jar">
<param name="cabbase" value="java/EIRC.cab,java/EIRC-cfg.cab">
<param name="server" value="yuna.otherweb.org">
<param name="port" value="6667">
<param name="irc_pass" value="">
<param name="font_name" value="Helvetica">
<param name="font_size" value="11">
<param name="language" value="">
<param name="mainbg" value="{if $race == "humain"}#2E3122{else}#2E293D{/if}">
<param name="mainfg" value="{if $race == "humain"}#999966{else}#6993A7{/if}">
<param name="textbg" value="#FFFFFF">
<param name="textfg" value="#000000">
<param name="selbg" value="#F0F0FF">
<param name="selfg" value="#000000">
<param name="join" value="#Halo-Battle">
<param name="username" value="Appletweb">
<param name="realname" value="Race: {$race}">
<param name="nickname" value="{$user.pseudo}_IG">
<param name="nicksrv_pass" value="">
<param name="login" value="1">
<param name="asl" value="1">
<param name="spawn_frame" value="0">
<param name="gui_nick" value="1">
<param name="gui_away" value="1">
<param name="gui_chanlist" value="1">
<param name="gui_userlist" value="1">
<param name="gui_options" value="1">
<param name="gui_help" value="1">
<param name="gui_connect" value="1">
<param name="width" value="700">
<param name="height" value="500">
<param name="write_color" value="12">
<param name="debug_traffic" value="0">
<param name="boxmessage" value="Patientez quelques instants svp ...">
<param name="boxbgcolor" value="blue">
<param name="boxfgcolor" value="black">
<param name="progressbar" value="true">
<param name="progresscolor" value="red">
</applet>
<div class="border_bt"></div>
{include file='game/footer.tpl'}

View file

@ -1,12 +1,36 @@
{include file='game/header.tpl'}
<div class="border_top"></div>
<h2>Classement</h2>
<form action="{$menu.classement}" method="get"><fieldset><input type="hidden" value="classement" name="p" /><select name="t"><option value="0">Pseudo</option><option value="1">Alliance</option></select>&nbsp;&nbsp;&nbsp;&nbsp;<select name="e"><option value="points"{if $export == 'points'} selected="selected"{/if}>Points</option><option value="batiment"{if $export == 'batiments'} selected="selected"{/if}>Bâtiment</option><option value="flotte"{if $export == "flottes"} selected="selected"{/if}>Flotte</option><option value="recherches"{if $export == "recherches"} selected="selected"{/if}>Recherches</option></select>&nbsp;&nbsp;&nbsp;&nbsp;{$q}&nbsp;&nbsp;&nbsp;&nbsp;<input class="submit" type="submit" value="GO" /></fieldset></form>
<form action="{$menu.classement}" method="get">
<fieldset>
<input type="hidden" value="classement" name="p" />
<select name="t">
<option value="0"{if $t == "0"}selected="selected"{/if}>Pseudo</option>
<option value="1"{if $t == "1"}selected="selected"{/if}>Alliance</option>
</select>&nbsp;&nbsp;&nbsp;&nbsp;<select name="e">
<option value="points"{if $export == 'points'} selected="selected"{/if}>Points</option>
<option value="batiment"{if $export == 'batiments'} selected="selected"{/if}>Bâtiment</option>
<option value="flotte"{if $export == "flottes"} selected="selected"{/if}>Flotte</option>
<option value="recherches"{if $export == "recherches"} selected="selected"{/if}>Recherches</option>
</select>&nbsp;&nbsp;&nbsp;&nbsp;{$q}&nbsp;&nbsp;&nbsp;&nbsp;<input class="submit" type="submit" value="GO" />
</fieldset>
</form>
<table class="systeme"><thead>
{if $t == "0"}
<tr><th>Rang</th><th>Evolution</th><th>Pseudo</th><th>Message</th><th>Race</th><th>Alliance</th><th>Points</th></tr></thead><tbody>
{foreach from=$places item=place}
<tr><td>{$place.0}</td><td>-</td><td>{$place.1}</td><td><a href="?p=envoyer&amp;d={$place.1}" class="msg"><span>Message</span></a></td><td>{$place.2}</td><td>-</td><td>{$place.3}</td></tr>
{/foreach}
{foreach from=$places item=place}
<tr><td>{$place.0}</td><td>-</td><td>{$place.1}</td><td><a href="?p=envoyer&amp;d={$place.1}" class="msg"><span>Message</span></a></td><td>{$place.2}</td><td>{$place.3}</td><td>{$place.4}</td></tr>
{/foreach}
{/if}
{if $t == "1"}
<tr><th>Rang</th><th>Alliance</th><th>Membres</th><th>Points</th><th>Points par membres</th></tr></thead><tbody>
{foreach from=$places item=place}
<tr><td>{$place.0}</td><td>{$place.1}</td><td>{$place.2}</td><td>{$place.3}</td><td>{$place.4}</td></tr>
{/foreach}
{/if}
</tbody></table>
<div class="border_bt"></div>
{include file='game/footer.tpl'}
{include file='game/footer.tpl'}

View file

@ -47,6 +47,39 @@
</table>
</td>
</tr>
{if $caract}
<tr>
<td colspan="2">
<table style="margin: auto; width: 100%;">
<thead>
<tr>
<th colspan="2">Caractéristiques</th>
</tr>
</thead>
<tbody>
<tr>
<th>Attaque</th>
<td>{$caract.0}</td>
</tr>
<tr>
<th>Bouclier</th>
<td>{$caract.1}</td>
</tr>
<tr>
<th>Points de vie</th>
<td>{$caract.2}</td>
</tr>
{if $caract.3}
<tr>
<th>Capacité de transport</th>
<td>{$caract.3}</td>
</tr>
{/if}
</tbody>
</table>
</td>
</tr>
{/if}
<tr>
<td colspan="2">
<table style="margin: auto; width: 100%;">

View file

@ -1,18 +1,168 @@
{include file='game/header.tpl'}
<div class="border_top"></div>
<h2>Détail flotte : {$flotte.nom}</h2>
<h2>Détails de la flotte : {$flotte.nom}</h2>
<form action="{$menu.flotte}&amp;n={$n}" method="post">
<fieldset class="options">
<label for="nom">Nom de la flotte :</label><input class="text" type="text" id="nom" name="nomflotte" value="{$flotte.nom}" /><br />
<input class="submit" type="submit" value="GO" />
</fieldset>
</form>
<h2>Composition</h2>
<table>
<h2>Composition de la flotte</h2>
<br /><table style="margin: auto;">
{if $flotte.vaisseau_1}
<tr>
<td>{$nomvais.0}</td>
<td>{$flotte.vaisseau_1}</td>
</tr>
{/if}
{if $flotte.vaisseau_2}
<tr>
<td>{$nomvais.1}</td>
<td>{$flotte.vaisseau_2}</td>
</tr>
{/if}
{if $flotte.vaisseau_3}
<tr>
<td>{$nomvais.2}</td>
<td>{$flotte.vaisseau_3}</td>
</tr>
{/if}
{if $flotte.vaisseau_4}
<tr>
<td>{$nomvais.3}</td>
<td>{$flotte.vaisseau_4}</td>
</tr>
{/if}
{if $flotte.vaisseau_5}
<tr>
<td>{$nomvais.4}</td>
<td>{$flotte.vaisseau_5}</td>
</tr>
{/if}
{if $flotte.vaisseau_6}
<tr>
<td>{$nomvais.5}</td>
<td>{$flotte.vaisseau_6}</td>
</tr>
{/if}
{if $flotte.vaisseau_7}
<tr>
<td>{$nomvais.6}</td>
<td>{$flotte.vaisseau_7}</td>
</tr>
{/if}
{if $flotte.vaisseau_8}
<tr>
<td>{$nomvais.7}</td>
<td>{$flotte.vaisseau_8}</td>
</tr>
{/if}
{if $flotte.vaisseau_9}
<tr>
<td>{$nomvais.8}</td>
<td>{$flotte.vaisseau_9}</td>
</tr>
{/if}
{if $flotte.vaisseau_10}
<tr>
<td>{$nomvais.9}</td>
<td>{$flotte.vaisseau_10}</td>
</tr>
{/if}
{if $flotte.vaisseau_11}
<tr>
<td>{$nomvais.10}</td>
<td>{$flotte.vaisseau_11}</td>
</tr>
{/if}
{if $flotte.vaisseau_12}
<tr>
<td>{$nomvais.11}</td>
<td>{$flotte.vaisseau_12}</td>
</tr>
{/if}
</table><br />
<h2>Contenu de la flotte</h2>
<br /><table style="margin: auto;">
<tr>
<td>{$nomsressources.0}</td>
<td>{$flotte.contenu_metalF}</td>
</tr>
<tr>
<td>{$nomsressources.1}</td>
<td>{$flotte.contenu_cristalF}</td>
</tr>
<tr>
<td>{$nomsressources.2}</td>
<td>{$flotte.contenu_hydrogeneF}</td>
</tr>
<tr>
<td>Maximum</td>
<td>{$flotte.contenu_maxF}</td>
</tr>
</table><br />
<h2>Détails de la mission</h2>
<table>
<tbody>
<tr>
<td>Mission</td>
<td>{$flotte.missionF}</td>
</tr>
{if $flotte.mission == 1}
<tr>
<td>Tactique par défaut</td>
<td>{$flotte.tactiqueAtDef}</td>
</tr>
{if $flotte.tactiqueAT}
<tr>
<td>Tactique pour le tour suivant</td>
<td>{$flotte.tactiqueF}</td>
</tr>
{else}
<tr>
<td>Tactique pour le tour suivant</td>
<td>{$flotte.tactiqueAtDef}</td>
</tr>
{/if}
{/if}
<tr>
<td>Etat de la mission</td>
{if $flotte.effectue == 2}
<td>En cours</td>
{elseif $flotte.effectue == 1}
<td>Effectuée</td>
{else}
<td>Déplacement</td>
{/if}
</tr>
<tr>
<td style="border: none;"></td>
</tr>
<tr>
<td>Plan&egrave;te source</td>
<td>[{$flotte.start_galaxie}:{$flotte.start_ss}:{$flotte.start_position}]</td>
</tr>
<tr>
<td>Date de départ</td>
<td>{$flotte.start_time|date_format:"/%a %d %b %y/ %H%M %S"}</td>
</tr>
<tr>
<td style="border: none;"></td>
</tr>
<tr>
<td>Plan&egrave;te de destination</td>
<td>[{$flotte.end_galaxie}:{$flotte.end_ss}:{$flotte.end_position}]</td>
</tr>
<tr>
<td>Temps de déplacement</td>
<td>{$flotte.end_time|date_format:"%k:%M:%S"}</td>
</tr>
<tr>
<td>Date {if $flotte.mission != 6}d'arrivée{else}de retour{/if}</td>
<td>{$flotte.end_timeT|date_format:"/%a %d %b %y/ %H%M %S"}</td>
</tr>
</tbody>
</table>
{if $flotte.mission != 6}<a href="{$menu.flotte}&amp;n={$n}&amp;a={$ret_fleet}">Annuler la mission et rappeler la flotte</a>{/if}
<div class="border_bt"></div>
{include file='game/footer.tpl'}

View file

@ -20,7 +20,7 @@
<div id="header">
<div id="header_link"><span id="date">{$date}</span> | Vous jouez depuis {$tpsdejeu} | <a href="?p=version">Version {$version}</a></div><a href="{$link.RSS}" id="rss">RSS :: s'abonner</a>
<h1><a href="{$link.self}" id="img"><span></span>Halo Battle</a></h1>
<div id="buttons"><div><a href="{$link.accueil}">ACCUEIL</a></div> <div><a href="{$link.jeu}">LE JEU</a></div> <div><a href="{$link.inscription}">S'INSCRIRE</a></div> <div><a href="{$link.forum}">FORUM</a></div> <div><a href="{$link.staff}">STAFF</a></div> <div><a href="{$link.faq}">F.A.Q.</a></div></div>
<div id="buttons"><div><a href="{$link.accueil}">ACCUEIL</a></div> <div><a href="{$link.jeu}">LE JEU</a></div> <div><a href="{$link.inscription}">S'INSCRIRE</a></div> <div><a href="{$link.forum}">FORUM</a></div> <div><a href="{$link.staff}">STAFF</a></div> <div><a href="{$menu.faq}">F.A.Q.</a></div></div>
<form action="#" method="post"><fieldset id="recherche"><input class="text" type="text" name="recherche" value="rechercher..." onfocus="this.value = this.value!='rechercher...'?this.value:''" onblur="this.value=this.value==''?'rechercher...':this.value" /><input value="OK" class="submit" type="submit" /><br /><a href="#">Recherche Avancée</a></fieldset></form>
</div>
<div id="annonce">
@ -36,7 +36,7 @@
{if $pagea == "sancj"}<span>Sanctions joueur</span>{else}<a href="{$menua.sancj}">Sanctions joueur</a>{/if} {if $pagea == "sancp"}<span>Sanctions planète</span>{else}<a href="{$menua.sancp}">Sanctions planète</a>{/if} {if $pagea == "controle"}<span>Prendre le contrôle</span>{else}<a href="{$menua.controle}">Prendre le contrôle</a>{/if} {if $pagea == "sjoueurs"}<span>Supprimer joueurs</span>{else}<a href="{$menua.sjoueurs}">Supprimer joueurs</a>{/if}<div class="space"></div>
{else} {if $page == "accueil"}<span>Accueil</span>{else}<a href="{$menu.accueil}">Accueil</a>{/if} {if $page == "batiments"}<span>Batiments</span>{else}<a href="{$menu.batiments}">Batiments</a>{/if} {if $page == "caserne"}<span>Caserne</span>{else}<a href="{$menu.caserne}">Caserne</a>{/if} {if $page == "chantierspatial"}<span>Chantier spatial</span>{else}<a href="{$menu.chantierspatial}">Chantier spatial</a>{/if} {if $page == "chantierterrestre"}<span>Chantier terrestre</span>{else}<a href="{$menu.chantierterrestre}">Chantier terrestre</a>{/if} {if $page == "defenses"}<span>Défenses</span>{else}<a href="{$menu.defenses}">Défenses</a>{/if} {if $page == "laboratoire"}<span>Laboratoire</span>{else}<a href="{$menu.laboratoire}">Laboratoire</a>{/if} {if $page == "arbre"}<span>Arbre technologique</span>{else}<a href="{$menu.arbre}">Arbre technologique</a>{/if}<div class="space"></div>
{if $page == "ressources"}<span>Ressources</span>{else}<a href="{$menu.ressources}">Ressources</a>{/if} {if $page == "gestion" || $page == "rename"}<span>Gestion</span>{else}<a href="{$menu.gestion}">Gestion</a>{/if} {if $page == "flotte1" || $page == "flotte2"}<span>Flottes</span>{else}<a href="{$menu.flotte}">Flottes</a>{/if} {if $page == "armee"}<span>Armée</span>{else}<a href="{$menu.armee}">Armée</a>{/if} {if $page == "carte"}<span>Carte spatiale</span>{else}<a href="{$menu.carte}">Carte spatiale</a>{/if} {if $page == "options"}<span>Options</span>{else}<a href="{$menu.options}">Options</a>{/if}<div class="space"></div>
{if $page == "messagerie" || $page == "envoyer"}<span>Messages et rapports</span>{else}<a href="{$menu.messages}">{if $alertMail}<b>Messages et rapports ({$alertMail})</b>{else}Messages et rapports{/if}</a>{/if} {if $page == "alliance"}<span>Alliance</span>{else}<a href="{$menu.alliance}">Alliance</a>{/if} {if $page == "classement"}<span>Classement</span>{else}<a href="{$menu.classement}">Classement</a>{/if} {if $page == "forums"}<span>Forums</span>{else}<a href="{$menu.forums}">Forums</a>{/if} {if $page == "bugs"}<span>Rapports de bug</span>{else}<a href="{$menu.bugs}">Rapports de bug</a>{/if} {if $page == "faq"}<span>F.A.Q.</span>{else}<a href="{$menu.faq}">F.A.Q.</a>{/if} <a href="{$menu.deconnexion}">Déconnexion</a><div class="space"></div>
{if $page == "messagerie" || $page == "envoyer"}<span>Messages et rapports</span>{else}<a href="{$menu.messages}">{if $alertMail}<b>Messages et rapports ({$alertMail})</b>{else}Messages et rapports{/if}</a>{/if} {if $page == "alliance"}<span>Alliance</span>{else}<a href="{$menu.alliance}">Alliance</a>{/if} {if $page == "classement"}<span>Classement</span>{else}<a href="{$menu.classement}">Classement</a>{/if} {if $page == "chat"}<span>Chat</span>{else}<a href="{$menu.chat}" onclick="window.open(this.href);return false;">Chat</a>{/if} {if $page == "forums"}<span>Forums</span>{else}<a href="{$menu.forums}">Forums</a>{/if} {if $page == "bugs"}<span>Rapports de bug</span>{else}<a href="{$menu.bugs}">Rapports de bug</a>{/if} {if $page == "faq"}<span>F.A.Q.</span>{else}<a href="{$menu.faq}">F.A.Q.</a>{/if} <a href="{$menu.deconnexion}">Déconnexion</a><div class="space"></div>
{/if} <div class="menu_bt"></div></div>
{if $page != "admin" && $page != "messagerie" && $page != "envoyer" && $page != "bugs" && $page != "carte" && $page != "classement" && $page != "options" && $page != "vp"}
<div id="corps_top">

View file

@ -15,7 +15,7 @@
<form action="{$menu.messagerie}" method="post">
{foreach from=$rapports item=rapport}
<dl>
<dt><input class="button2" type="button" onclick="hide(this); return false;" /><input class="checkbox" type="checkbox" name="r{$rapport.4}" value="{$rapport.5}" />{$rapport.0} à {$rapport.1}</dt><dd>{$rapport.3|nl2br}</dd>
<dt><input class="button2" type="button" onclick="hide(this); return false;" /><input class="checkbox" type="checkbox" name="r{$rapport.4}" value="{$rapport.5}" />{$rapport.0} à {$rapport.1}</dt><dd>{$rapport.3}</dd>
</dl>
{/foreach}
<fieldset><input class="button" type="button" value="Tout sélectionner" onclick="checkboxesr(true)" /> <input class="button" type="button" value="Tout déselectionner" onclick="checkboxesr(false)" /><br /><br /><strong>Supprimer le sélection : </strong><input class="submit" type="submit" value="OK" /><br /><br /><input type="hidden" value="{$IR}" name="IR" /></fieldset>

View file

@ -1,100 +0,0 @@
<?php /* Smarty version 2.6.19, created on 2008-05-21 15:50:22
compiled from game/chantierterrestre.tpl */ ?>
<?php require_once(SMARTY_CORE_DIR . 'core.load_plugins.php');
smarty_core_load_plugins(array('plugins' => array(array('modifier', 'lower', 'game/chantierterrestre.tpl', 29, false),)), $this); ?>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/header.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>
<div class="border_top"></div>
<h2>File d'attente</h2>
<div class="file">
<?php $_from = $this->_tpl_vars['file']; if (!is_array($_from) && !is_object($_from)) { settype($_from, 'array'); }if (count($_from)):
foreach ($_from as $this->_tpl_vars['key'] => $this->_tpl_vars['fterr']):
?>
<?php if ($this->_tpl_vars['key'] == 0): ?><span><strong>Prochaine unit&eacute; </strong> : <em id="resten"></em>
<script type="text/javascript">reste(<?php echo $this->_tpl_vars['fterr']['2']; ?>
,'resten', true);</script></span><?php endif; ?>
<span><?php echo $this->_tpl_vars['fterr']['1']; ?>
<?php echo $this->_tpl_vars['fterr']['3']; ?>
- <em id="reste<?php echo $this->_tpl_vars['key']; ?>
"></em><script type="text/javascript">reste(<?php echo $this->_tpl_vars['fterr']['4']; ?>
,'reste<?php echo $this->_tpl_vars['key']; ?>
', <?php if ($this->_tpl_vars['key'] == 0): ?>true<?php else: ?>false<?php endif; ?>);</script>
- <a href="<?php echo $this->_tpl_vars['menu']['chantierterrestre']; ?>
&amp;a=<?php echo $this->_tpl_vars['fterr']['0']; ?>
">Annuler un</a> - <a href="<?php echo $this->_tpl_vars['menu']['chantierterrestre']; ?>
&amp;a=<?php echo $this->_tpl_vars['fterr']['0']; ?>
&amp;n=<?php echo $this->_tpl_vars['fterr']['1']; ?>
">Annuler tous</a></span>
<?php endforeach; endif; unset($_from); ?>
<?php if ($this->_tpl_vars['Vchaine']): ?><span>Aucune unit&eacute; dans la file d'attente</span><?php endif; ?>
<br />
</div>
<h3><a href="<?php echo $this->_tpl_vars['menu']['arbre']; ?>
&amp;q=chantierterrestre">Arbre des technologies</a></h3><br />
<h2>Chantier terrestre </h2>
<table class="construction">
<?php $_from = $this->_tpl_vars['unite']; if (!is_array($_from) && !is_object($_from)) { settype($_from, 'array'); }if (count($_from)):
foreach ($_from as $this->_tpl_vars['unite']):
?>
<tr>
<td>
<a class="bulle" href="#">
<img width="130" height="132" src="images/terrestre/<?php echo $this->_tpl_vars['unite']['image']; ?>
" alt="Unit&eacute; terrestre" />
<span><?php echo $this->_tpl_vars['unite']['description']; ?>
</span>
</a>
</td>
<td>
<div>
<strong><?php echo $this->_tpl_vars['unite']['nom']; ?>
<?php if ($this->_tpl_vars['unite']['nombre'] > 0): ?> (<?php echo $this->_tpl_vars['unite']['nombre']; ?>
unite<?php if ($this->_tpl_vars['unite']['nombre'] > 1): ?>x<?php endif; ?>)<?php endif; ?></strong><br /><br />
<?php if ($this->_tpl_vars['unite']['nec_metal'] > 0): ?>
<?php if ($this->_tpl_vars['unite']['nec_metal'] > $this->_tpl_vars['planete']['metal']): ?><span class="lack">Coût <?php echo ((is_array($_tmp=$this->_tpl_vars['nomsressources']['0'])) ? $this->_run_mod_handler('lower', true, $_tmp) : smarty_modifier_lower($_tmp)); ?>
: <?php echo $this->_tpl_vars['unite']['nec_metalS']; ?>
</span><br />
<?php else: ?>Coût <?php echo ((is_array($_tmp=$this->_tpl_vars['nomsressources']['0'])) ? $this->_run_mod_handler('lower', true, $_tmp) : smarty_modifier_lower($_tmp)); ?>
: <?php echo $this->_tpl_vars['unite']['nec_metalS']; ?>
<br /><?php endif; ?>
<?php endif; ?>
<?php if ($this->_tpl_vars['unite']['nec_cristal'] > 0): ?>
<?php if ($this->_tpl_vars['unite']['nec_cristal'] > $this->_tpl_vars['planete']['cristal']): ?><span class="lack">Coût <?php echo ((is_array($_tmp=$this->_tpl_vars['nomsressources']['1'])) ? $this->_run_mod_handler('lower', true, $_tmp) : smarty_modifier_lower($_tmp)); ?>
: <?php echo $this->_tpl_vars['unite']['nec_cristalS']; ?>
</span><br />
<?php else: ?>Coût <?php echo ((is_array($_tmp=$this->_tpl_vars['nomsressources']['1'])) ? $this->_run_mod_handler('lower', true, $_tmp) : smarty_modifier_lower($_tmp)); ?>
: <?php echo $this->_tpl_vars['unite']['nec_cristalS']; ?>
<br /><?php endif; ?>
<?php endif; ?>
<?php if ($this->_tpl_vars['unite']['nec_hydrogene'] > 0): ?>
<?php if ($this->_tpl_vars['unite']['nec_hydrogene'] > $this->_tpl_vars['planete']['hydrogene']): ?><span class="lack">Coût <?php echo ((is_array($_tmp=$this->_tpl_vars['nomsressources']['2'])) ? $this->_run_mod_handler('lower', true, $_tmp) : smarty_modifier_lower($_tmp)); ?>
: <?php echo $this->_tpl_vars['unite']['nec_hydrogeneS']; ?>
</span><br />
<?php else: ?>Coût <?php echo ((is_array($_tmp=$this->_tpl_vars['nomsressources']['2'])) ? $this->_run_mod_handler('lower', true, $_tmp) : smarty_modifier_lower($_tmp)); ?>
: <?php echo $this->_tpl_vars['unite']['nec_hydrogeneS']; ?>
<br /><?php endif; ?>
<?php endif; ?>
Temps de construction : <?php echo $this->_tpl_vars['unite']['temps']; ?>
<br /><br />
<form action="<?php echo $this->_tpl_vars['menu']['chantierterrestre']; ?>
&amp;v=<?php echo $this->_tpl_vars['unite']['num']; ?>
" method="post">
<fieldset>
<input class="text" type="text" name="nombre" value="0" />
<input class="submit" type="submit" value="OK" />
</fieldset>
</form>
</div>
</td>
</tr>
<?php endforeach; endif; unset($_from); ?>
</table>
<div class="border_bt"></div>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/footer.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>

View file

@ -1,94 +0,0 @@
<?php /* Smarty version 2.6.19, created on 2008-05-23 02:23:49
compiled from game/description.tpl */ ?>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/header.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>
<div class="border_top"></div>
<h2>Détails <?php echo $this->_tpl_vars['type']; ?>
: <?php echo $this->_tpl_vars['nom']; ?>
</h2>
<table style="width: 400px;">
<tbody>
<tr>
<td style="width: 120px;"><img src="images/<?php echo $this->_tpl_vars['type']; ?>
/<?php echo $this->_tpl_vars['image']; ?>
" alt="" /></td>
<td><b><?php echo $this->_tpl_vars['nom']; ?>
</b><br />Actuellement : <?php if ($this->_tpl_vars['type'] != 'vaisseaux' && $this->_tpl_vars['type'] != 'terrestre'): ?>niveau<?php endif; ?> <?php echo $this->_tpl_vars['niveau']; ?>
<?php if ($this->_tpl_vars['type'] == 'vaisseaux' || $this->_tpl_vars['type'] == 'terrestre'): ?> unités<?php endif; ?></td>
</tr>
<tr>
<td colspan="2"><?php echo $this->_tpl_vars['description']; ?>
</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="2">
<table style="margin: auto; width: 100%;">
<thead>
<tr>
<th colspan="2">Coûts <?php if ($this->_tpl_vars['type'] == 'vaisseaux' || $this->_tpl_vars['type'] == 'terrestre'): ?>unité<?php else: ?>prochain niveau<?php endif; ?></th>
</tr>
</thead>
<tbody>
<?php if ($this->_tpl_vars['ressourcesNext']['0']): ?>
<tr>
<th><?php echo $this->_tpl_vars['nomsressources']['0']; ?>
</th>
<td><?php echo $this->_tpl_vars['ressourcesNext']['0']; ?>
</td>
</tr>
<?php endif; ?>
<?php if ($this->_tpl_vars['ressourcesNext']['1']): ?>
<tr>
<th><?php echo $this->_tpl_vars['nomsressources']['1']; ?>
</th>
<td><?php echo $this->_tpl_vars['ressourcesNext']['1']; ?>
</td>
</tr>
<?php endif; ?>
<?php if ($this->_tpl_vars['ressourcesNext']['2']): ?>
<tr>
<th><?php echo $this->_tpl_vars['nomsressources']['2']; ?>
</th>
<td><?php echo $this->_tpl_vars['ressourcesNext']['2']; ?>
</td>
</tr>
<?php endif; ?>
<tr>
<th>Temps</th>
<td><?php echo $this->_tpl_vars['ressourcesNext']['3']; ?>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td colspan="2">
<table style="margin: auto; width: 100%;">
<thead>
<tr>
<th>Requiert</th>
</tr>
</thead>
<tbody>
<tr>
<td><?php echo $this->_tpl_vars['etat']; ?>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tfoot>
</table>
<div class="border_bt"></div>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/footer.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>

View file

@ -1,15 +0,0 @@
<?php /* Smarty version 2.6.19, created on 2008-05-16 22:58:40
compiled from game/prochainement.tpl */ ?>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/header.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>
<div class="border_top"></div>
<div class="error">Prochainement sur Halo-Battle.</div>
<div class="border_bt"></div>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/footer.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>

View file

@ -1,64 +0,0 @@
<?php /* Smarty version 2.6.19, created on 2008-05-17 18:50:33
compiled from game/alliance_nm_view.tpl */ ?>
<?php require_once(SMARTY_CORE_DIR . 'core.load_plugins.php');
smarty_core_load_plugins(array('plugins' => array(array('modifier', 'upper', 'game/alliance_nm_view.tpl', 3, false),array('modifier', 'capitalize', 'game/alliance_nm_view.tpl', 3, false),array('modifier', 'nl2br', 'game/alliance_nm_view.tpl', 29, false),)), $this); ?>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/header.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>
<div class="border_top"></div>
<h2>[<?php echo ((is_array($_tmp=$this->_tpl_vars['alliance']['tag'])) ? $this->_run_mod_handler('upper', true, $_tmp) : smarty_modifier_upper($_tmp)); ?>
] <?php echo ((is_array($_tmp=$this->_tpl_vars['alliance']['nom'])) ? $this->_run_mod_handler('capitalize', true, $_tmp) : smarty_modifier_capitalize($_tmp)); ?>
</h2>
<table cellpadding="2" cellspacing="0" style="text-align: center; width: 100%;">
<tbody>
<tr>
<td colspan="2"><img src="<?php echo $this->_tpl_vars['alliance']['image']; ?>
" /></td>
</tr>
<tr>
<td style="text-align: right; vertical-align: middle;"><strong>Nom : </strong></td>
<td style="width: 70%;"><?php echo $this->_tpl_vars['alliance']['nom']; ?>
(<?php echo $this->_tpl_vars['alliance']['tag']; ?>
)</td>
</tr>
<tr>
<td style="text-align: right;"><strong>Membres : </strong></td>
<td><?php echo $this->_tpl_vars['nbmembre']; ?>
(<a href="<?php echo $this->_tpl_vars['menu']['alliance']; ?>
&amp;q=liste&amp;i=<?php echo $this->_tpl_vars['alliance']['id']; ?>
">Liste des membres</a>)</td>
</tr>
<tr>
<td style="text-align: right;"><strong>Votre grade :</strong></td>
<td>Invité</td>
</tr>
<tr>
<td style="text-align: right;"><strong>Status des inscriptions :</strong></td>
<td><?php if ($this->_tpl_vars['alliance']['etat_inscription']): ?>Ouvertes - <a href="<?php echo $this->_tpl_vars['menu']['alliance']; ?>
&amp;q=postuler&amp;i=<?php echo $this->_tpl_vars['alliance']['id']; ?>
">Postuler</a><?php else: ?>Ferm&eacute;e<?php endif; ?></td>
</tr>
</tr>
</tbody>
</table>
<h2>Présentation</h2>
<?php echo ((is_array($_tmp=$this->_tpl_vars['alliance']['presentation'])) ? $this->_run_mod_handler('nl2br', true, $_tmp) : smarty_modifier_nl2br($_tmp)); ?>
<table style="width: 100%;">
<tbody>
<tr>
<td style="text-align: right;"><strong>Forum :</strong></td>
<td style="width: 70%;"><a href="<?php echo $this->_tpl_vars['alliance']['url']; ?>
"><?php echo $this->_tpl_vars['alliance']['url']; ?>
</a></td>
</tr>
</tbody>
</table>
<div class="border_bt"></div>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/footer.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>

View file

@ -1,58 +0,0 @@
<?php /* Smarty version 2.6.19, created on 2008-05-17 15:27:11
compiled from game/alliance_adm_grades_add.tpl */ ?>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/header.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>
<div class="border_top"></div>
<h2>Administration de l'alliance</h2>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/alliance_adm_header.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>
<br />
<h2>Ajouter un grade</h2>
<form method="post" action="<?php echo $this->_tpl_vars['menu']['alliance']; ?>
&amp;q=adm_grades&amp;a=add">
<table style="text-align: center; width: 83%;">
<tr>
<td style="width: 20%;"><strong><label for="nom">Nom du grade</label></strong></td>
<td><input name="nom" type="text" id="nom" /></td>
</tr>
<tr>
<td><strong><label for="description">Description</label></strong></td>
<td><textarea name="description" id="description"></textarea></td>
</tr>
<tr>
<td>Gestion <strong>chat</strong></td>
<td><input name="gest_chat" type="checkbox" id="chat" value="1" /><label for="chat"> Oui</label></td>
</tr>
<tr>
<td>Gestion <strong>rang</strong></td>
<td><input name="gest_rang" type="checkbox" id="rang" value="1" /><label for="rang"> Oui</label></td>
</tr>
<tr>
<td>Gestion <strong>membre</strong></td>
<td><input name="gest_membre" type="checkbox" id="membre" value="1" /><label for="membre"> Oui</label></td>
</tr>
<tr>
<td>Gestion <strong>&eacute;criture</strong></td>
<td><input name="gest_ecriture" type="checkbox" id="ecriture" value="1" /><label for="ecriture"> Oui</label></td>
</tr>
<tr>
<td>Gestion <strong>alliance</strong></td>
<td><input name="gest_alliance" type="checkbox" id="alliance" value="1" /><label for="alliance"> Oui</label></td>
</tr>
<tr>
<td colspan="2"><input type="submit" class="submit" value="Ok" /></td>
</tr>
</table>
</form>
<div class="border_bt"></div>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/footer.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>

View file

@ -1,84 +0,0 @@
<?php /* Smarty version 2.6.19, created on 2008-05-23 02:24:53
compiled from game/arbre.tpl */ ?>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/header.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>
<div class="border_top"></div>
<h2>Arbre Technologique</h2>
<div class="techno">
<div<?php if ($this->_tpl_vars['defaut'] == 'batiments'): ?> class="hightlight"<?php endif; ?>><a href="<?php echo $this->_tpl_vars['menu']['arbre']; ?>
&amp;q=batiments">Bâtiments</a>
<div><table><thead>
<tr><th>Batiments (niveau)</th><th>Technologies nécessaires (niveau actuel)</th></tr>
</thead><tbody>
<?php $_from = $this->_tpl_vars['batiments']; if (!is_array($_from) && !is_object($_from)) { settype($_from, 'array'); }if (count($_from)):
foreach ($_from as $this->_tpl_vars['batiment']):
?>
<tr><td><a href="?p=description&amp;b=<?php echo $this->_tpl_vars['batiment']['id']; ?>
#menu"><?php echo $this->_tpl_vars['batiment']['nom']; ?>
</a> (<?php echo $this->_tpl_vars['batiment']['niveau']; ?>
) :</td><td><?php echo $this->_tpl_vars['batiment']['etat']; ?>
</td></tr>
<?php endforeach; endif; unset($_from); ?>
</tbody></table></div>
</div>
<div<?php if ($this->_tpl_vars['defaut'] == 'technologies'): ?> class="hightlight"<?php endif; ?>><a href="<?php echo $this->_tpl_vars['menu']['arbre']; ?>
&amp;q=technologies">Technologies</a>
<div><table><thead>
<tr><th>Technologies (niveau)</th><th>Technologies nécessaires (niveau actuel)</th></tr>
</thead><tbody>
<?php $_from = $this->_tpl_vars['technologies']; if (!is_array($_from) && !is_object($_from)) { settype($_from, 'array'); }if (count($_from)):
foreach ($_from as $this->_tpl_vars['technologie']):
?>
<tr><td><a href="?p=description&amp;t=<?php echo $this->_tpl_vars['technologie']['id']; ?>
#menu"><?php echo $this->_tpl_vars['technologie']['nom']; ?>
</a> (<?php echo $this->_tpl_vars['technologie']['niveau']; ?>
) :</td><td><?php echo $this->_tpl_vars['technologie']['etat']; ?>
</td></tr>
<?php endforeach; endif; unset($_from); ?>
</tbody></table></div>
</div>
<div<?php if ($this->_tpl_vars['defaut'] == 'chantierterrestre'): ?> class="hightlight"<?php endif; ?>><a href="<?php echo $this->_tpl_vars['menu']['arbre']; ?>
&amp;q=chantierterrestre">Chantier terrestre</a>
<div><table><thead>
<tr><th>Véhicules/Défenses</th><th>Technologies nécessaires (niveau actuel)</th></tr>
</thead><tbody>
<?php $_from = $this->_tpl_vars['unites']; if (!is_array($_from) && !is_object($_from)) { settype($_from, 'array'); }if (count($_from)):
foreach ($_from as $this->_tpl_vars['unite']):
?>
<tr><td><a href="?p=description&amp;d=<?php echo $this->_tpl_vars['unite']['id']; ?>
#menu"><?php echo $this->_tpl_vars['unite']['nom']; ?>
</a> (<?php echo $this->_tpl_vars['unite']['niveau']; ?>
) :</td><td><?php echo $this->_tpl_vars['unite']['etat']; ?>
</td></tr>
<?php endforeach; endif; unset($_from); ?>
</tbody></table></div>
</div>
<div<?php if ($this->_tpl_vars['defaut'] == 'vaisseaux'): ?> class="hightlight"<?php endif; ?>><a href="<?php echo $this->_tpl_vars['menu']['arbre']; ?>
&amp;q=vaisseaux">Chantier spatial</a>
<div><table><thead>
<tr><th>Vaisseaux</th><th>Technologies nécessaires (niveau actuel)</th></tr>
</thead><tbody>
<?php $_from = $this->_tpl_vars['vaisseaux']; if (!is_array($_from) && !is_object($_from)) { settype($_from, 'array'); }if (count($_from)):
foreach ($_from as $this->_tpl_vars['vaisseau']):
?>
<tr><td><a href="?p=description&amp;v=<?php echo $this->_tpl_vars['vaisseau']['id']; ?>
#menu"><?php echo $this->_tpl_vars['vaisseau']['nom']; ?>
</a> (<?php echo $this->_tpl_vars['vaisseau']['niveau']; ?>
) :</td><td><?php echo $this->_tpl_vars['vaisseau']['etat']; ?>
</td></tr>
<?php endforeach; endif; unset($_from); ?>
</tbody></table></div>
</div>
</div>
<div class="border_bt"></div>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/footer.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>

View file

@ -1,115 +0,0 @@
<?php /* Smarty version 2.6.19, created on 2008-05-23 02:28:15
compiled from game/laboratoire.tpl */ ?>
<?php require_once(SMARTY_CORE_DIR . 'core.load_plugins.php');
smarty_core_load_plugins(array('plugins' => array(array('modifier', 'lower', 'game/laboratoire.tpl', 30, false),)), $this); ?>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/header.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>
<div class="border_top"></div>
<h2>File d'attente</h2>
<div class="file">
<?php $_from = $this->_tpl_vars['file']; if (!is_array($_from) && !is_object($_from)) { settype($_from, 'array'); }if (count($_from)):
foreach ($_from as $this->_tpl_vars['key'] => $this->_tpl_vars['flab']):
?>
<span><?php echo $this->_tpl_vars['flab']['3']; ?>
- <em id="reste<?php echo $this->_tpl_vars['key']; ?>
"></em><script type="text/javascript">reste(<?php echo $this->_tpl_vars['flab']['2']; ?>
,'reste<?php echo $this->_tpl_vars['key']; ?>
', <?php if ($this->_tpl_vars['key'] == 0): ?>true<?php else: ?>false<?php endif; ?>);</script> - <a href="<?php echo $this->_tpl_vars['menu']['laboratoire']; ?>
&amp;a=<?php echo $this->_tpl_vars['flab']['0']; ?>
">Annuler</a></span>
<?php endforeach; endif; unset($_from); ?>
<?php if ($this->_tpl_vars['Vchaine']): ?><span>Aucune recherche dans la file d'attente</span>
<?php endif; ?>
<br />
</div>
<h3><a href="<?php echo $this->_tpl_vars['menu']['arbre']; ?>
&amp;q=technologies">Arbre des technologies</a></h3><br />
<h2>Laboratoire</h2>
<table class="construction">
<?php $_from = $this->_tpl_vars['recherches']; if (!is_array($_from) && !is_object($_from)) { settype($_from, 'array'); }if (count($_from)):
foreach ($_from as $this->_tpl_vars['recherche']):
?>
<tr>
<td>
<a class="bulle" href="?p=description&amp;t=<?php echo $this->_tpl_vars['recherche']['num']; ?>
#menu">
<img width="130" height="132" src="images/technologies/<?php echo $this->_tpl_vars['recherche']['image']; ?>
" alt="<?php echo $this->_tpl_vars['recherche']['nom']; ?>
" />
<span><?php echo $this->_tpl_vars['recherche']['description']; ?>
</span>
</a>
</td>
<td>
<div>
<strong><?php echo $this->_tpl_vars['recherche']['nom']; ?>
<?php if ($this->_tpl_vars['recherche']['niveau'] > 0): ?> (Niveau <?php echo $this->_tpl_vars['recherche']['niveau']; ?>
)<?php endif; ?></strong><br /><br />
<?php if ($this->_tpl_vars['recherche']['nec_metal'] > 0): ?>
<?php if ($this->_tpl_vars['recherche']['nec_metal'] > $this->_tpl_vars['planete']['metal']): ?><span class="lack">Coût <?php echo ((is_array($_tmp=$this->_tpl_vars['nomsressources']['0'])) ? $this->_run_mod_handler('lower', true, $_tmp) : smarty_modifier_lower($_tmp)); ?>
: <?php echo $this->_tpl_vars['recherche']['nec_metalS']; ?>
</span><br />
<?php else: ?>Coût <?php echo ((is_array($_tmp=$this->_tpl_vars['nomsressources']['0'])) ? $this->_run_mod_handler('lower', true, $_tmp) : smarty_modifier_lower($_tmp)); ?>
: <?php echo $this->_tpl_vars['recherche']['nec_metalS']; ?>
<br /><?php endif; ?>
<?php endif; ?>
<?php if ($this->_tpl_vars['recherche']['nec_cristal'] > 0): ?>
<?php if ($this->_tpl_vars['recherche']['nec_cristal'] > $this->_tpl_vars['planete']['cristal']): ?><span class="lack">Coût <?php echo ((is_array($_tmp=$this->_tpl_vars['nomsressources']['1'])) ? $this->_run_mod_handler('lower', true, $_tmp) : smarty_modifier_lower($_tmp)); ?>
: <?php echo $this->_tpl_vars['recherche']['nec_cristalS']; ?>
</span><br />
<?php else: ?>Coût <?php echo ((is_array($_tmp=$this->_tpl_vars['nomsressources']['1'])) ? $this->_run_mod_handler('lower', true, $_tmp) : smarty_modifier_lower($_tmp)); ?>
: <?php echo $this->_tpl_vars['recherche']['nec_cristalS']; ?>
<br /><?php endif; ?>
<?php endif; ?>
<?php if ($this->_tpl_vars['recherche']['nec_hydrogene'] > 0): ?>
<?php if ($this->_tpl_vars['recherche']['nec_hydrogene'] > $this->_tpl_vars['planete']['hydrogene']): ?><span class="lack">Coût <?php echo ((is_array($_tmp=$this->_tpl_vars['nomsressources']['2'])) ? $this->_run_mod_handler('lower', true, $_tmp) : smarty_modifier_lower($_tmp)); ?>
: <?php echo $this->_tpl_vars['recherche']['nec_hydrogeneS']; ?>
</span><br />
<?php else: ?>Coût <?php echo ((is_array($_tmp=$this->_tpl_vars['nomsressources']['2'])) ? $this->_run_mod_handler('lower', true, $_tmp) : smarty_modifier_lower($_tmp)); ?>
: <?php echo $this->_tpl_vars['recherche']['nec_hydrogeneS']; ?>
<br /><?php endif; ?>
<?php endif; ?>
Temps de recherche : <?php echo $this->_tpl_vars['recherche']['temps']; ?>
<br /><br />
<?php if ($this->_tpl_vars['recherche']['enfile']): ?><a href="<?php echo $this->_tpl_vars['menu']['laboratoire']; ?>
&amp;a=<?php echo $this->_tpl_vars['recherche']['num']; ?>
">Arrêter</a>
<?php elseif ($this->_tpl_vars['recherche']['nec_hydrogene'] > $this->_tpl_vars['planete']['hydrogene']): ?><span class="lack" title="manque <?php if ($this->_tpl_vars['recherche']['maq_metal'] > 0): ?><?php echo $this->_tpl_vars['recherche']['maq_metal']; ?>
de <?php echo ((is_array($_tmp=$this->_tpl_vars['nomsressources']['0'])) ? $this->_run_mod_handler('lower', true, $_tmp) : smarty_modifier_lower($_tmp)); ?>
; <?php endif; ?><?php if ($this->_tpl_vars['recherche']['maq_cristal'] > 0): ?><?php echo $this->_tpl_vars['recherche']['maq_cristal']; ?>
de <?php echo ((is_array($_tmp=$this->_tpl_vars['nomsressources']['1'])) ? $this->_run_mod_handler('lower', true, $_tmp) : smarty_modifier_lower($_tmp)); ?>
; <?php endif; ?><?php if ($this->_tpl_vars['recherche']['maq_hydrogene'] > 0): ?><?php echo $this->_tpl_vars['recherche']['maq_hydrogene']; ?>
de <?php echo ((is_array($_tmp=$this->_tpl_vars['nomsressources']['2'])) ? $this->_run_mod_handler('lower', true, $_tmp) : smarty_modifier_lower($_tmp)); ?>
<?php endif; ?>">Ressources insuffisantes</span>
<?php elseif ($this->_tpl_vars['recherche']['nec_cristal'] > $this->_tpl_vars['planete']['cristal']): ?><span class="lack" title="manque <?php if ($this->_tpl_vars['recherche']['maq_metal'] > 0): ?><?php echo $this->_tpl_vars['recherche']['maq_metal']; ?>
de <?php echo ((is_array($_tmp=$this->_tpl_vars['nomsressources']['0'])) ? $this->_run_mod_handler('lower', true, $_tmp) : smarty_modifier_lower($_tmp)); ?>
; <?php endif; ?><?php if ($this->_tpl_vars['recherche']['maq_cristal'] > 0): ?><?php echo $this->_tpl_vars['recherche']['maq_cristal']; ?>
de <?php echo ((is_array($_tmp=$this->_tpl_vars['nomsressources']['1'])) ? $this->_run_mod_handler('lower', true, $_tmp) : smarty_modifier_lower($_tmp)); ?>
; <?php endif; ?><?php if ($this->_tpl_vars['recherche']['maq_hydrogene'] > 0): ?><?php echo $this->_tpl_vars['recherche']['maq_hydrogene']; ?>
de <?php echo ((is_array($_tmp=$this->_tpl_vars['nomsressources']['2'])) ? $this->_run_mod_handler('lower', true, $_tmp) : smarty_modifier_lower($_tmp)); ?>
<?php endif; ?>">Ressources insuffisantes</span>
<?php elseif ($this->_tpl_vars['recherche']['nec_metal'] > $this->_tpl_vars['planete']['metal']): ?><span class="lack" title="manque <?php if ($this->_tpl_vars['recherche']['maq_metal'] > 0): ?><?php echo $this->_tpl_vars['recherche']['maq_metal']; ?>
de <?php echo ((is_array($_tmp=$this->_tpl_vars['nomsressources']['0'])) ? $this->_run_mod_handler('lower', true, $_tmp) : smarty_modifier_lower($_tmp)); ?>
; <?php endif; ?><?php if ($this->_tpl_vars['recherche']['maq_cristal'] > 0): ?><?php echo $this->_tpl_vars['recherche']['maq_cristal']; ?>
de <?php echo ((is_array($_tmp=$this->_tpl_vars['nomsressources']['1'])) ? $this->_run_mod_handler('lower', true, $_tmp) : smarty_modifier_lower($_tmp)); ?>
; <?php endif; ?><?php if ($this->_tpl_vars['recherche']['maq_hydrogene'] > 0): ?><?php echo $this->_tpl_vars['recherche']['maq_hydrogene']; ?>
de <?php echo ((is_array($_tmp=$this->_tpl_vars['nomsressources']['2'])) ? $this->_run_mod_handler('lower', true, $_tmp) : smarty_modifier_lower($_tmp)); ?>
<?php endif; ?>">Ressources insuffisantes</span>
<?php else: ?><a href="<?php echo $this->_tpl_vars['menu']['laboratoire']; ?>
&amp;t=<?php echo $this->_tpl_vars['recherche']['num']; ?>
">Construire</a>
<?php endif; ?>
</div>
</td>
</tr>
<?php endforeach; endif; unset($_from); ?>
</table>
<div class="border_bt"></div>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/footer.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>

View file

@ -1,27 +0,0 @@
<?php /* Smarty version 2.6.19, created on 2008-05-20 22:08:13
compiled from game/footer.tpl */ ?>
 </div>
<div id="footer">
Réalisé par Halo Battle Staff<br />
Design by <a href="http://nothing-arts.com" onclick="window.open(this.href); return false;"><ins>nothingarts</ins></a><br />
<!-- Site visité 514200 fois depuis sa création<br /> -->
Actuellement en ligne : <?php echo $this->_tpl_vars['enligne']; ?>
joueurs<br />
<a href="<?php echo $this->_tpl_vars['link']['accueil']; ?>
">Accueil</a> | <a href="<?php echo $this->_tpl_vars['link']['jeu']; ?>
">Le jeu</a> | <a href="<?php echo $this->_tpl_vars['link']['inscription']; ?>
">S'inscrire</a> | <a href="<?php echo $this->_tpl_vars['link']['forum']; ?>
">Forum</a> | <a href="<?php echo $this->_tpl_vars['link']['staff']; ?>
">Staff</a> | <a href="<?php echo $this->_tpl_vars['link']['faq']; ?>
">F.A.Q.</a>
<?php echo $this->_tpl_vars['analyst']; ?>
</div>
</div>
</div>
<div id="cornerbt"></div>
<?php echo $this->_tpl_vars['script']; ?>
<!-- \\******* By Phantom *******// Halo-Battle, Tous droits réservés -->
</body>
</html>

View file

@ -1,25 +0,0 @@
<?php /* Smarty version 2.6.19, created on 2008-05-19 02:26:40
compiled from game/aide/sommaire.tpl */ ?>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/header.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>
<div class="border_top"></div>
<h2>Aide de Halo-Battle :: Sommaire</h2>
<h3><a href="<?php echo $this->_tpl_vars['menu']['faq']; ?>
&amp;q=1">Avertissements</a></h3>
<h3><a href="<?php echo $this->_tpl_vars['menu']['faq']; ?>
&amp;q=2">Configuration nécessaire</a></h3>
<h3><a href="<?php echo $this->_tpl_vars['menu']['faq']; ?>
&amp;q=3">Démarrage du jeu</a></h3>
<h3><a href="<?php echo $this->_tpl_vars['menu']['faq']; ?>
&amp;q=4">Introduction</a></h3>
<h3><a href="<?php echo $this->_tpl_vars['menu']['faq']; ?>
&amp;q=5">Comment jouer</a></h3>
<div class="border_bt"></div>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/footer.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>

View file

@ -1,37 +0,0 @@
<?php /* Smarty version 2.6.19, created on 2008-05-17 17:24:31
compiled from game/alliance_adm_ecritures.tpl */ ?>
<?php require_once(SMARTY_CORE_DIR . 'core.load_plugins.php');
smarty_core_load_plugins(array('plugins' => array(array('modifier', 'nl2br', 'game/alliance_adm_ecritures.tpl', 10, false),)), $this); ?>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/header.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>
<div class="border_top"></div>
<h2>Administration de l'alliance</h2>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/alliance_adm_header.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>
<br /><br />
<a href="<?php echo $this->_tpl_vars['menu']['alliance']; ?>
&amp;q=adm_ecrits&amp;t=presentation">Modifier la pr&eacute;sentation</a> - <a href="<?php echo $this->_tpl_vars['menu']['alliance']; ?>
&amp;q=adm_ecrits&amp;t=interne">Modifier la page interne</a><br />
<h2>Modification <?php if ($this->_tpl_vars['mod'] == 'presentation'): ?>de la présentation de l'alliance<?php else: ?>du texte interne<?php endif; ?></h2>
<form method="post" action="<?php echo $this->_tpl_vars['menu']['alliance']; ?>
&amp;q=adm_ecrits">
<p>
<textarea name="textarea" cols="90" rows="15" id="textarea"><?php if ($this->_tpl_vars['mod'] == 'presentation'): ?><?php echo ((is_array($_tmp=$this->_tpl_vars['alliance']['presentation'])) ? $this->_run_mod_handler('nl2br', true, $_tmp) : smarty_modifier_nl2br($_tmp)); ?>
<?php else: ?><?php echo ((is_array($_tmp=$this->_tpl_vars['alliance']['texte_interne'])) ? $this->_run_mod_handler('nl2br', true, $_tmp) : smarty_modifier_nl2br($_tmp)); ?>
<?php endif; ?></textarea>
<input name="type" type="hidden" value="<?php if ($this->_tpl_vars['mod'] == 'presentation'): ?>presentation<?php else: ?>texte_interne<?php endif; ?>" /><br />
<input type="submit" class="submit" value="GO" />
</p>
</form>
<div class="border_bt"></div>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/footer.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>

View file

@ -1,24 +0,0 @@
<?php /* Smarty version 2.6.19, created on 2008-05-19 02:29:16
compiled from game/aide/config.tpl */ ?>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/header.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>
<div class="border_top"></div>
<h2>Aide de Halo-Battle :: Configuration requise</h2>
<br /><h3>Configuration nécessaire</h3><br />
Pour jouer à Halo-Battle, un simple navigateur internet est suffisant. Assurez-vous donc de disposer du matériel informatique adéquat ainsi que d'une connexion internet.<br />
<br /><h3>Configuration recommandée</h3><br />
Pour jouer dans des conditions optimales :<br />
<ul>
<li>Connexion 512 k</li>
<li>Navigateur internet Mozilla Firefox ou Opéra</li>
<li>JavaScript</li>
</ul>
<div class="border_bt"></div>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/footer.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>

View file

@ -1,25 +0,0 @@
<?php /* Smarty version 2.6.19, created on 2008-05-20 00:21:13
compiled from game/envoyer.tpl */ ?>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/header.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>
<div class="border_top"></div>
<h2>Envoyer un message privé</h2>
<form action="<?php echo $this->_tpl_vars['menu']['envoie']; ?>
" method="post"><fieldset class="options">
<label for="nom">Nom du destinataire :</label><input class="text" type="text" name="nom" value="<?php echo $this->_tpl_vars['destinataire']; ?>
" id="nom" />
<label for="objet">Objet :</label><input class="text" type="text" name="objet" value="<?php echo $this->_tpl_vars['objet']; ?>
" id="objet" />
<label for="message">Texte :</label>
<textarea id="message" name="message" cols="40" rows="10"></textarea><br /><br />
<input class="submit" type="submit" value="OK" />
</fieldset></form>
<div class="border_bt"></div>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/footer.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>

View file

@ -1,14 +0,0 @@
<?php /* Smarty version 2.6.19, created on 2008-05-17 23:43:29
compiled from cms/vide.tpl */ ?>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'cms/header.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>
<?php echo $this->_tpl_vars['contenu']; ?>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'cms/footer.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>

View file

@ -1,48 +0,0 @@
<?php /* Smarty version 2.6.19, created on 2008-05-14 22:48:04
compiled from cms/header.tpl */ ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="Content-Language" content="fr" />
<title> ::Halo-Battle:: - <?php echo $this->_tpl_vars['titre']; ?>
</title>
<link rel="stylesheet" href="templates/cms/default.css" type="text/css" media="all" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
<script src="js/cms.js" type="text/javascript"></script>
</head>
<body>
<div id="cornertop"></div>
<div id="all">
<div id="header">
<div id="header_link"><span id="date"><?php echo $this->_tpl_vars['date']; ?>
</span> | <a href="<?php echo $this->_tpl_vars['link']['lastNews']; ?>
"><?php echo $this->_tpl_vars['lastNews']; ?>
</a> | <a href="<?php echo $this->_tpl_vars['link']['lastTopic']; ?>
"><?php echo $this->_tpl_vars['lastTopic']; ?>
</a> | <a href="<?php echo $this->_tpl_vars['link']['lastUser']; ?>
"><?php echo $this->_tpl_vars['lastUser']; ?>
</a> | <a href="<?php echo $this->_tpl_vars['link']['lastDownload']; ?>
"><?php echo $this->_tpl_vars['lastDownload']; ?>
</a> | <a href="<?php echo $this->_tpl_vars['link']['lastLink']; ?>
"><?php echo $this->_tpl_vars['lastLink']; ?>
</a></div><a href="<?php echo $this->_tpl_vars['link']['RSS']; ?>
" id="rss">RSS :: s'abonner</a>
<a href="<?php echo $this->_tpl_vars['link']['self']; ?>
" id="img"><span></span>Halo Battle</a>
<div id="buttons"><div><a href="<?php echo $this->_tpl_vars['link']['accueil']; ?>
">ACCUEIL</a></div> <div><a href="<?php echo $this->_tpl_vars['link']['jeu']; ?>
">LE JEU</a></div> <div><a href="<?php echo $this->_tpl_vars['link']['inscription']; ?>
">S'INSCRIRE</a></div> <div><a href="<?php echo $this->_tpl_vars['link']['forum']; ?>
">FORUM</a></div> <div><a href="<?php echo $this->_tpl_vars['link']['staff']; ?>
">STAFF</a></div> <div><a href="<?php echo $this->_tpl_vars['link']['faq']; ?>
">F.A.Q.</a></div></div>
<form action="#" method="post"><fieldset id="recherche"><input class="text" type="text" name="recherche" value="rechercher..." maxlength="128" tabindex="10" onfocus="this.value = this.value!='rechercher...'?this.value:''" onblur="this.value=this.value==''?'rechercher...':this.value" /><input value="OK" class="submit" type="submit" tabindex="11" /><br /><a href="#" tabindex="12">Recherche Avancée</a></fieldset></form>
</div>
<div id="banner"><span id="bannerleft">DEFENDREZ-VOUS L'HUMANITE OU LA DETRUIREZ-VOUS ?</span> <span id="bannerright"><?php echo $this->_tpl_vars['count']['humains']; ?>
Marines et <?php echo $this->_tpl_vars['count']['covenants']; ?>
Covenants se battent dans <ins><?php echo $this->_tpl_vars['count']['serveurs']; ?>
galaxie<?php if ($this->_tpl_vars['count']['serveurs'] > 1): ?>s<?php endif; ?></ins></span></div>
<div id="corps">

View file

@ -1,51 +0,0 @@
<?php /* Smarty version 2.6.19, created on 2008-05-23 01:05:35
compiled from game/alliance_adm_chat.tpl */ ?>
<?php require_once(SMARTY_CORE_DIR . 'core.load_plugins.php');
smarty_core_load_plugins(array('plugins' => array(array('modifier', 'date_format', 'game/alliance_adm_chat.tpl', 20, false),array('modifier', 'escape', 'game/alliance_adm_chat.tpl', 21, false),)), $this); ?>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/header.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>
<div class="border_top"></div>
<h2>Administration de l'alliance</h2>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/alliance_adm_header.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>
<br />
<h2 id="chat">Administration du chat</h2>
<table style="text-align: center; width: 100%;">
<thead>
<tr>
<th>Pseudo</th>
<th>Date</th>
<th>Message</th>
<th>Supprimer</th>
</tr>
</thead>
<tbody>
<?php $_from = $this->_tpl_vars['chat']; if (!is_array($_from) && !is_object($_from)) { settype($_from, 'array'); }if (count($_from)):
foreach ($_from as $this->_tpl_vars['message']):
?>
<tr>
<td><?php echo $this->_tpl_vars['message']['emetteur']; ?>
</td>
<td><?php echo ((is_array($_tmp=$this->_tpl_vars['message']['timestamp'])) ? $this->_run_mod_handler('date_format', true, $_tmp, "%d/%m/%y %H:%M:%S") : smarty_modifier_date_format($_tmp, "%d/%m/%y %H:%M:%S")); ?>
</td>
<td><?php echo ((is_array($_tmp=$this->_tpl_vars['message']['message'])) ? $this->_run_mod_handler('escape', true, $_tmp) : smarty_modifier_escape($_tmp)); ?>
</td>
<td><a href="<?php echo $this->_tpl_vars['menu']['alliance']; ?>
&amp;q=adm_chat&amp;i=<?php echo $this->_tpl_vars['message']['id']; ?>
"><i>Supprimer</i></a></td>
</tr>
<?php endforeach; endif; unset($_from); ?>
</tbody>
</table>
<div class="border_bt"></div>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/footer.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>

View file

@ -1,91 +0,0 @@
<?php /* Smarty version 2.6.19, created on 2008-05-17 18:53:11
compiled from game/alliance_adm_membres.tpl */ ?>
<?php require_once(SMARTY_CORE_DIR . 'core.load_plugins.php');
smarty_core_load_plugins(array('plugins' => array(array('modifier', 'date_format', 'game/alliance_adm_membres.tpl', 23, false),array('modifier', 'nl2br', 'game/alliance_adm_membres.tpl', 45, false),array('function', 'html_options', 'game/alliance_adm_membres.tpl', 24, false),)), $this); ?>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/header.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>
<div class="border_top"></div>
<h2>Administration de l'alliance</h2>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/alliance_adm_header.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>
<br />
<h2>Administration des membres</h2>
<table style="text-align: center; width: 100%;">
<thead>
<tr>
<th>Pseudo</th>
<th>Race</th>
<th>Derni&egrave;re connexion </th>
<th>Grade</th>
<th>Mp</th>
<th>Renvoyer de l'alliance </th>
</tr>
</thead>
<tbody>
<?php $_from = $this->_tpl_vars['membres']; if (!is_array($_from) && !is_object($_from)) { settype($_from, 'array'); }if (count($_from)):
foreach ($_from as $this->_tpl_vars['membre']):
?>
<tr>
<td><?php echo $this->_tpl_vars['membre']['pseudo']; ?>
</td>
<td><?php echo $this->_tpl_vars['membre']['race']; ?>
</td>
<td><?php echo ((is_array($_tmp=$this->_tpl_vars['membre']['last_visite'])) ? $this->_run_mod_handler('date_format', true, $_tmp, "%d/%m/%y %H:%M:%S") : smarty_modifier_date_format($_tmp, "%d/%m/%y %H:%M:%S")); ?>
</td>
<td><form action="<?php echo $this->_tpl_vars['menu']['alliance']; ?>
&amp;q=adm_membres" method="post"><p><input type="hidden" name="user" value="<?php echo $this->_tpl_vars['membre']['id']; ?>
" /><select name="grade" onchange="this.form.submit();"><option label="Aucun" value="0">Aucun</option><?php echo smarty_function_html_options(array('values' => $this->_tpl_vars['gradei'],'selected' => $this->_tpl_vars['membre']['id_grade_alliance'],'output' => $this->_tpl_vars['grades']), $this);?>
</select></p></form></td>
<td><a href="?p=envoyer&amp;d=<?php echo $this->_tpl_vars['membre']['pseudo']; ?>
" class="msg"><span>Message</span></a></td>
<td><a href="<?php echo $this->_tpl_vars['menu']['alliance']; ?>
&amp;q=adm_membres&amp;u=<?php echo $this->_tpl_vars['membre']['id']; ?>
"><i>Renvoyer</i></a></td>
</tr>
<?php endforeach; endif; unset($_from); ?>
</tbody>
</table>
<table style="text-align: center; width: 100%;">
<thead>
<tr>
<th>Pseudo</th>
<th>Message de motivation</th>
<th>Date</th>
<th>Action</th>
<th>Mp</th>
</tr>
</thead>
<tbody>
<?php $_from = $this->_tpl_vars['candidats']; if (!is_array($_from) && !is_object($_from)) { settype($_from, 'array'); }if (count($_from)):
foreach ($_from as $this->_tpl_vars['candidat']):
?>
<tr>
<td><?php echo $this->_tpl_vars['candidat']['pseudo_membre']; ?>
</td>
<td><?php echo ((is_array($_tmp=$this->_tpl_vars['candidat']['message'])) ? $this->_run_mod_handler('nl2br', true, $_tmp) : smarty_modifier_nl2br($_tmp)); ?>
</td>
<td><?php echo ((is_array($_tmp=$this->_tpl_vars['candidat']['timestamp'])) ? $this->_run_mod_handler('date_format', true, $_tmp, "%d/%m/%y %H:%M:%S") : smarty_modifier_date_format($_tmp, "%d/%m/%y %H:%M:%S")); ?>
</td>
<td><a href="<?php echo $this->_tpl_vars['menu']['alliance']; ?>
&amp;q=adm_membres&amp;accept=<?php echo $this->_tpl_vars['candidat']['id_membre']; ?>
"><i>Accpeter</i></a> - <a href="<?php echo $this->_tpl_vars['menu']['alliance']; ?>
&amp;q=adm_membres&amp;refus=<?php echo $this->_tpl_vars['candidat']['id_membre']; ?>
"><i>Refuser</i></a></td>
<td><a href="?p=envoyer&amp;d=<?php echo $this->_tpl_vars['candidat']['pseudo_membre']; ?>
" class="msg"><span>Message</span></a></td>
</tr>
<?php endforeach; endif; unset($_from); ?>
</tbody>
</table>
<div class="border_bt"></div>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/footer.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>

View file

@ -1,99 +0,0 @@
<?php /* Smarty version 2.6.19, created on 2008-05-23 02:26:31
compiled from game/chantierspatial.tpl */ ?>
<?php require_once(SMARTY_CORE_DIR . 'core.load_plugins.php');
smarty_core_load_plugins(array('plugins' => array(array('modifier', 'lower', 'game/chantierspatial.tpl', 27, false),)), $this); ?>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/header.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>
<div class="border_top"></div>
<h2>File d'attente</h2>
<div class="file">
<?php $_from = $this->_tpl_vars['file']; if (!is_array($_from) && !is_object($_from)) { settype($_from, 'array'); }if (count($_from)):
foreach ($_from as $this->_tpl_vars['key'] => $this->_tpl_vars['fvais']):
?>
<?php if ($this->_tpl_vars['key'] == 0): ?><span><strong>Prochain vaisseau</strong> : <em id="resten"></em><script type="text/javascript">reste(<?php echo $this->_tpl_vars['fvais']['2']; ?>
,'resten', true);</script></span><?php endif; ?>
<span><?php echo $this->_tpl_vars['fvais']['1']; ?>
<?php echo $this->_tpl_vars['fvais']['3']; ?>
- <em id="reste<?php echo $this->_tpl_vars['key']; ?>
"></em><script type="text/javascript">reste(<?php echo $this->_tpl_vars['fvais']['4']; ?>
,'reste<?php echo $this->_tpl_vars['key']; ?>
', <?php if ($this->_tpl_vars['key'] == 0): ?>true<?php else: ?>false<?php endif; ?>);</script> - <a href="<?php echo $this->_tpl_vars['menu']['chantierspatial']; ?>
&amp;a=<?php echo $this->_tpl_vars['fvais']['0']; ?>
">Annuler un</a> - <a href="<?php echo $this->_tpl_vars['menu']['chantierspatial']; ?>
&amp;a=<?php echo $this->_tpl_vars['fvais']['0']; ?>
&amp;n=<?php echo $this->_tpl_vars['fvais']['1']; ?>
">Annuler tous</a></span>
<?php endforeach; endif; unset($_from); ?>
<?php if ($this->_tpl_vars['Vchaine']): ?><span>Aucun vaisseau dans la file d'attente</span><?php endif; ?>
<br />
</div>
<h3><a href="<?php echo $this->_tpl_vars['menu']['arbre']; ?>
&amp;q=vaisseaux">Arbre des technologies</a></h3><br />
<h2>Chantier spatial</h2>
<table class="construction">
<?php $_from = $this->_tpl_vars['vaisseaux']; if (!is_array($_from) && !is_object($_from)) { settype($_from, 'array'); }if (count($_from)):
foreach ($_from as $this->_tpl_vars['vaisseau']):
?>
<tr>
<td>
<a class="bulle" href="?p=description&amp;v=<?php echo $this->_tpl_vars['vaisseau']['num']; ?>
#menu">
<img width="130" height="132" src="images/vaisseaux/<?php echo $this->_tpl_vars['vaisseau']['image']; ?>
" alt="Vaisseaux" />
<span><?php echo $this->_tpl_vars['vaisseau']['description']; ?>
</span>
</a>
</td>
<td>
<div>
<strong><?php echo $this->_tpl_vars['vaisseau']['nom']; ?>
<?php if ($this->_tpl_vars['vaisseau']['nombre'] > 0): ?> (<?php echo $this->_tpl_vars['vaisseau']['nombre']; ?>
vaisseau<?php if ($this->_tpl_vars['vaisseau']['nombre'] > 1): ?>x<?php endif; ?>)<?php endif; ?></strong><br /><br />
<?php if ($this->_tpl_vars['vaisseau']['nec_metal'] > 0): ?>
<?php if ($this->_tpl_vars['vaisseau']['nec_metal'] > $this->_tpl_vars['planete']['metal']): ?><span class="lack">Coût <?php echo ((is_array($_tmp=$this->_tpl_vars['nomsressources']['0'])) ? $this->_run_mod_handler('lower', true, $_tmp) : smarty_modifier_lower($_tmp)); ?>
: <?php echo $this->_tpl_vars['vaisseau']['nec_metalS']; ?>
</span><br />
<?php else: ?>Coût <?php echo ((is_array($_tmp=$this->_tpl_vars['nomsressources']['0'])) ? $this->_run_mod_handler('lower', true, $_tmp) : smarty_modifier_lower($_tmp)); ?>
: <?php echo $this->_tpl_vars['vaisseau']['nec_metalS']; ?>
<br /><?php endif; ?>
<?php endif; ?>
<?php if ($this->_tpl_vars['vaisseau']['nec_cristal'] > 0): ?>
<?php if ($this->_tpl_vars['vaisseau']['nec_cristal'] > $this->_tpl_vars['planete']['cristal']): ?><span class="lack">Coût <?php echo ((is_array($_tmp=$this->_tpl_vars['nomsressources']['1'])) ? $this->_run_mod_handler('lower', true, $_tmp) : smarty_modifier_lower($_tmp)); ?>
: <?php echo $this->_tpl_vars['vaisseau']['nec_cristalS']; ?>
</span><br />
<?php else: ?>Coût <?php echo ((is_array($_tmp=$this->_tpl_vars['nomsressources']['1'])) ? $this->_run_mod_handler('lower', true, $_tmp) : smarty_modifier_lower($_tmp)); ?>
: <?php echo $this->_tpl_vars['vaisseau']['nec_cristalS']; ?>
<br /><?php endif; ?>
<?php endif; ?>
<?php if ($this->_tpl_vars['vaisseau']['nec_hydrogene'] > 0): ?>
<?php if ($this->_tpl_vars['vaisseau']['nec_hydrogene'] > $this->_tpl_vars['planete']['hydrogene']): ?><span class="lack">Coût <?php echo ((is_array($_tmp=$this->_tpl_vars['nomsressources']['2'])) ? $this->_run_mod_handler('lower', true, $_tmp) : smarty_modifier_lower($_tmp)); ?>
: <?php echo $this->_tpl_vars['vaisseau']['nec_hydrogeneS']; ?>
</span><br />
<?php else: ?>Coût <?php echo ((is_array($_tmp=$this->_tpl_vars['nomsressources']['2'])) ? $this->_run_mod_handler('lower', true, $_tmp) : smarty_modifier_lower($_tmp)); ?>
: <?php echo $this->_tpl_vars['vaisseau']['nec_hydrogeneS']; ?>
<br /><?php endif; ?>
<?php endif; ?>
Temps de construction : <?php echo $this->_tpl_vars['vaisseau']['temps']; ?>
<br /><br />
<form action="<?php echo $this->_tpl_vars['menu']['chantierspatial']; ?>
&amp;v=<?php echo $this->_tpl_vars['vaisseau']['num']; ?>
" method="post">
<fieldset>
<input class="text" type="text" name="nombre" value="0" />
<input class="submit" type="submit" value="OK" />
</fieldset>
</form>
</div>
</td>
</tr>
<?php endforeach; endif; unset($_from); ?>
</table>
<div class="border_bt"></div>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/footer.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>

View file

@ -1,115 +0,0 @@
<?php /* Smarty version 2.6.19, created on 2008-05-23 02:27:04
compiled from game/batiments.tpl */ ?>
<?php require_once(SMARTY_CORE_DIR . 'core.load_plugins.php');
smarty_core_load_plugins(array('plugins' => array(array('modifier', 'lower', 'game/batiments.tpl', 30, false),)), $this); ?>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/header.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>
<div class="border_top"></div>
<h2>File d'attente</h2>
<div class="file">
<?php $_from = $this->_tpl_vars['file']; if (!is_array($_from) && !is_object($_from)) { settype($_from, 'array'); }if (count($_from)):
foreach ($_from as $this->_tpl_vars['key'] => $this->_tpl_vars['fbat']):
?>
<span><?php echo $this->_tpl_vars['fbat']['3']; ?>
- <em id="reste<?php echo $this->_tpl_vars['key']; ?>
"></em><script type="text/javascript">reste(<?php echo $this->_tpl_vars['fbat']['2']; ?>
,'reste<?php echo $this->_tpl_vars['key']; ?>
', <?php if ($this->_tpl_vars['key'] == 0): ?>true<?php else: ?>false<?php endif; ?>);</script> - <a href="<?php echo $this->_tpl_vars['menu']['batiments']; ?>
&amp;a=<?php echo $this->_tpl_vars['fbat']['0']; ?>
">Annuler</a></span>
<?php endforeach; endif; unset($_from); ?>
<?php if ($this->_tpl_vars['Vchaine']): ?><span>Aucun batiment dans la file d'attente</span>
<?php endif; ?>
<br />
</div>
<h3><a href="<?php echo $this->_tpl_vars['menu']['arbre']; ?>
&amp;q=batiments">Arbre des technologies</a></h3><br />
<h2>Batiments</h2>
<table class="construction">
<?php $_from = $this->_tpl_vars['batiments']; if (!is_array($_from) && !is_object($_from)) { settype($_from, 'array'); }if (count($_from)):
foreach ($_from as $this->_tpl_vars['batiment']):
?>
<tr>
<td>
<a class="bulle" href="?p=description&amp;b=<?php echo $this->_tpl_vars['batiment']['num']; ?>
#menu">
<img width="130" height="132" src="images/batiments/<?php echo $this->_tpl_vars['batiment']['image']; ?>
" alt="<?php echo $this->_tpl_vars['batiment']['nom']; ?>
" />
<span><?php echo $this->_tpl_vars['batiment']['description']; ?>
</span>
</a>
</td>
<td>
<div>
<strong><?php echo $this->_tpl_vars['batiment']['nom']; ?>
<?php if ($this->_tpl_vars['batiment']['niveau'] > 0): ?> (Niveau <?php echo $this->_tpl_vars['batiment']['niveau']; ?>
)<?php endif; ?></strong><br /><br />
<?php if ($this->_tpl_vars['batiment']['nec_metal'] > 0): ?>
<?php if ($this->_tpl_vars['batiment']['nec_metal'] > $this->_tpl_vars['planete']['metal']): ?><span class="lack">Coût <?php echo ((is_array($_tmp=$this->_tpl_vars['nomsressources']['0'])) ? $this->_run_mod_handler('lower', true, $_tmp) : smarty_modifier_lower($_tmp)); ?>
: <?php echo $this->_tpl_vars['batiment']['nec_metalS']; ?>
</span><br />
<?php else: ?>Coût <?php echo ((is_array($_tmp=$this->_tpl_vars['nomsressources']['0'])) ? $this->_run_mod_handler('lower', true, $_tmp) : smarty_modifier_lower($_tmp)); ?>
: <?php echo $this->_tpl_vars['batiment']['nec_metalS']; ?>
<br /><?php endif; ?>
<?php endif; ?>
<?php if ($this->_tpl_vars['batiment']['nec_cristal'] > 0): ?>
<?php if ($this->_tpl_vars['batiment']['nec_cristal'] > $this->_tpl_vars['planete']['cristal']): ?><span class="lack">Coût <?php echo ((is_array($_tmp=$this->_tpl_vars['nomsressources']['1'])) ? $this->_run_mod_handler('lower', true, $_tmp) : smarty_modifier_lower($_tmp)); ?>
: <?php echo $this->_tpl_vars['batiment']['nec_cristalS']; ?>
</span><br />
<?php else: ?>Coût <?php echo ((is_array($_tmp=$this->_tpl_vars['nomsressources']['1'])) ? $this->_run_mod_handler('lower', true, $_tmp) : smarty_modifier_lower($_tmp)); ?>
: <?php echo $this->_tpl_vars['batiment']['nec_cristalS']; ?>
<br /><?php endif; ?>
<?php endif; ?>
<?php if ($this->_tpl_vars['batiment']['nec_hydrogene'] > 0): ?>
<?php if ($this->_tpl_vars['batiment']['nec_hydrogene'] > $this->_tpl_vars['planete']['hydrogene']): ?><span class="lack">Coût <?php echo ((is_array($_tmp=$this->_tpl_vars['nomsressources']['2'])) ? $this->_run_mod_handler('lower', true, $_tmp) : smarty_modifier_lower($_tmp)); ?>
: <?php echo $this->_tpl_vars['batiment']['nec_hydrogeneS']; ?>
</span><br />
<?php else: ?>Coût <?php echo ((is_array($_tmp=$this->_tpl_vars['nomsressources']['2'])) ? $this->_run_mod_handler('lower', true, $_tmp) : smarty_modifier_lower($_tmp)); ?>
: <?php echo $this->_tpl_vars['batiment']['nec_hydrogeneS']; ?>
<br /><?php endif; ?>
<?php endif; ?>
Temps de construction : <?php echo $this->_tpl_vars['batiment']['temps']; ?>
<br /><br />
<?php if ($this->_tpl_vars['batiment']['enfile']): ?><a href="<?php echo $this->_tpl_vars['menu']['batiments']; ?>
&amp;a=<?php echo $this->_tpl_vars['batiment']['num']; ?>
">Arrêter</a>
<?php elseif ($this->_tpl_vars['batiment']['nec_hydrogene'] > $this->_tpl_vars['planete']['hydrogene']): ?><span class="lack" title="manque <?php if ($this->_tpl_vars['batiment']['maq_metal'] > 0): ?><?php echo $this->_tpl_vars['batiment']['maq_metal']; ?>
de <?php echo ((is_array($_tmp=$this->_tpl_vars['nomsressources']['0'])) ? $this->_run_mod_handler('lower', true, $_tmp) : smarty_modifier_lower($_tmp)); ?>
; <?php endif; ?><?php if ($this->_tpl_vars['batiment']['maq_cristal'] > 0): ?><?php echo $this->_tpl_vars['batiment']['maq_cristal']; ?>
de <?php echo ((is_array($_tmp=$this->_tpl_vars['nomsressources']['1'])) ? $this->_run_mod_handler('lower', true, $_tmp) : smarty_modifier_lower($_tmp)); ?>
; <?php endif; ?><?php if ($this->_tpl_vars['batiment']['maq_hydrogene'] > 0): ?><?php echo $this->_tpl_vars['batiment']['maq_hydrogene']; ?>
de <?php echo ((is_array($_tmp=$this->_tpl_vars['nomsressources']['2'])) ? $this->_run_mod_handler('lower', true, $_tmp) : smarty_modifier_lower($_tmp)); ?>
<?php endif; ?>">Ressources insuffisantes</span>
<?php elseif ($this->_tpl_vars['batiment']['nec_cristal'] > $this->_tpl_vars['planete']['cristal']): ?><span class="lack" title="manque <?php if ($this->_tpl_vars['batiment']['maq_metal'] > 0): ?><?php echo $this->_tpl_vars['batiment']['maq_metal']; ?>
de <?php echo ((is_array($_tmp=$this->_tpl_vars['nomsressources']['0'])) ? $this->_run_mod_handler('lower', true, $_tmp) : smarty_modifier_lower($_tmp)); ?>
; <?php endif; ?><?php if ($this->_tpl_vars['batiment']['maq_cristal'] > 0): ?><?php echo $this->_tpl_vars['batiment']['maq_cristal']; ?>
de <?php echo ((is_array($_tmp=$this->_tpl_vars['nomsressources']['1'])) ? $this->_run_mod_handler('lower', true, $_tmp) : smarty_modifier_lower($_tmp)); ?>
; <?php endif; ?><?php if ($this->_tpl_vars['batiment']['maq_hydrogene'] > 0): ?><?php echo $this->_tpl_vars['batiment']['maq_hydrogene']; ?>
de <?php echo ((is_array($_tmp=$this->_tpl_vars['nomsressources']['2'])) ? $this->_run_mod_handler('lower', true, $_tmp) : smarty_modifier_lower($_tmp)); ?>
<?php endif; ?>">Ressources insuffisantes</span>
<?php elseif ($this->_tpl_vars['batiment']['nec_metal'] > $this->_tpl_vars['planete']['metal']): ?><span class="lack" title="manque <?php if ($this->_tpl_vars['batiment']['maq_metal'] > 0): ?><?php echo $this->_tpl_vars['batiment']['maq_metal']; ?>
de <?php echo ((is_array($_tmp=$this->_tpl_vars['nomsressources']['0'])) ? $this->_run_mod_handler('lower', true, $_tmp) : smarty_modifier_lower($_tmp)); ?>
; <?php endif; ?><?php if ($this->_tpl_vars['batiment']['maq_cristal'] > 0): ?><?php echo $this->_tpl_vars['batiment']['maq_cristal']; ?>
de <?php echo ((is_array($_tmp=$this->_tpl_vars['nomsressources']['1'])) ? $this->_run_mod_handler('lower', true, $_tmp) : smarty_modifier_lower($_tmp)); ?>
; <?php endif; ?><?php if ($this->_tpl_vars['batiment']['maq_hydrogene'] > 0): ?><?php echo $this->_tpl_vars['batiment']['maq_hydrogene']; ?>
de <?php echo ((is_array($_tmp=$this->_tpl_vars['nomsressources']['2'])) ? $this->_run_mod_handler('lower', true, $_tmp) : smarty_modifier_lower($_tmp)); ?>
<?php endif; ?>">Ressources insuffisantes</span>
<?php else: ?><a href="<?php echo $this->_tpl_vars['menu']['batiments']; ?>
&amp;c=<?php echo $this->_tpl_vars['batiment']['num']; ?>
">Construire</a>
<?php endif; ?>
</div>
</td>
</tr>
<?php endforeach; endif; unset($_from); ?>
</table>
<div class="border_bt"></div>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/footer.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>

View file

@ -1,45 +0,0 @@
<?php /* Smarty version 2.6.19, created on 2008-05-17 14:29:35
compiled from game/alliance_chat.tpl */ ?>
<?php require_once(SMARTY_CORE_DIR . 'core.load_plugins.php');
smarty_core_load_plugins(array('plugins' => array(array('modifier', 'date_format', 'game/alliance_chat.tpl', 19, false),)), $this); ?>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/header.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>
<div class="border_top" id="chat"></div>
<h2>Chat</h2>
<form method="post" action="<?php echo $this->_tpl_vars['menu']['alliance']; ?>
&amp;q=chat">
Réponse :&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<input name="msg" type="text" size="50" maxlength="250">&nbsp;&nbsp;&nbsp;&nbsp;<input value="GO" class="submit" type="submit">
</form>
<br />
<div style="height: 550px; overflow: auto; width: 99%;">
<table style="width: 100%; margin: 0px;">
<thead>
<tr>
<th style="width: 172px;">[pseudo] heure</td>
<th style="width: 536px;">Message</td>
</tr>
</thead>
<tbody>
<?php $_from = $this->_tpl_vars['chat']; if (!is_array($_from) && !is_object($_from)) { settype($_from, 'array'); }if (count($_from)):
foreach ($_from as $this->_tpl_vars['message']):
?>
<tr>
<td>[<?php echo $this->_tpl_vars['message']['emetteur']; ?>
] <i><?php echo ((is_array($_tmp=$this->_tpl_vars['message']['timestamp'])) ? $this->_run_mod_handler('date_format', true, $_tmp, "%d/%m/%y %H:%M:%S") : smarty_modifier_date_format($_tmp, "%d/%m/%y %H:%M:%S")); ?>
</i></td>
<td><?php echo $this->_tpl_vars['message']['message']; ?>
</td>
</tr>
<?php endforeach; endif; unset($_from); ?>
</tbody>
</table>
</div>
<div class="border_bt"></div>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/footer.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>

View file

@ -1,40 +0,0 @@
<?php /* Smarty version 2.6.19, created on 2008-05-23 01:13:38
compiled from game/options.tpl */ ?>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/header.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>
<div class="border_top"></div>
<h2>Changer de mot de passe</h2>
<form action="<?php echo $this->_tpl_vars['menu']['options']; ?>
&amp;chg=mdp" method="post"><fieldset class="options">
<label for="ancien">Ancien mot de passe :</label><input class="text" type="password" id="ancien" name="mdp_anc" />
<label for="nouveau">Nouveau mot de passe :</label><input class="text" type="password" id="nouveau" name="mdp_nouv" />
<label for="confirm">Confirmez le mot de passe :</label><input class="text" type="password" id="confirm" name="mdp_conf" /><br /><br />
<b>Le nouveau mot de passe sera modifié après validation par mail.<br />Veuillez vous assurez que votre adresse actuelle est toujours valide.</b><br /><br />
<input class="submit" type="submit" value="OK" />
</fieldset></form>
<h2>Changer d'adresse électronique</h2>
<form action="<?php echo $this->_tpl_vars['menu']['options']; ?>
&amp;chg=mail" method="post"><fieldset class="options">
<label>Adresse actuelle :</label><p style="text-align: center;"><?php echo $this->_tpl_vars['mail']; ?>
</p>
<label for="mail">Nouveau mail :</label><input class="text" type="text" id="mail" name="mail" />
<label for="mdp_mail">Mot de passe actuel :</label><input class="text" type="password" id="mdp_mail" name="mdp_mail" /><br /><br />
<b>L'adresse électronique sera modifiée une fois validée depuis votre nouvelle adresse.</b><br /><br />
<input class="submit" type="submit" value="OK" />
</fieldset></form>
<h2>Mode vacances</h2>
Si vous devez vous absenter de votre compte pour une durée supérieure à 3 jours, vous pouvez mettre votre compte en mode vacances.<br />Vous ne pouvez pas vous faire attaquer (les attaques déjà lancées ne seront pas annulées !) durant cette période, mais vous ne produirez pas de resources sur vos planètes.<br /><br /><b>Veuillez vider <u>toutes</u> vos files d'attentes avant d'activer le mode vacances !</b><br />
<br /><a href="<?php echo $this->_tpl_vars['menu']['options']; ?>
&amp;a=mv&amp;n=<?php echo $this->_tpl_vars['idvac']; ?>
">Activer le mode vacances maintenant</a>
<h2>Supprimer son compte</h2>
Contactez le chef interne de votre galaxie pour supprimer votre compte.
<div class="border_bt"></div>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/footer.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>

View file

@ -1,15 +0,0 @@
<?php /* Smarty version 2.6.19, created on 2008-05-17 16:38:59
compiled from cms/erreur.tpl */ ?>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'cms/header.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>
<div class="error"<?php if ($this->_tpl_vars['couleur']): ?> style="color: <?php echo $this->_tpl_vars['couleur']; ?>
;"<?php endif; ?>><?php echo $this->_tpl_vars['message']; ?>
</div>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'cms/footer.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>

View file

@ -1,17 +0,0 @@
<?php /* Smarty version 2.6.19, created on 2008-05-17 23:40:38
compiled from admin/vp.tpl */ ?>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/header.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>
<div class="border_top"></div>
<div class="error">... veuillez patienter ...</div>
<div class="border_bt"></div>
<?php echo $this->_tpl_vars['contenu']; ?>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/footer.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>

View file

@ -1,28 +0,0 @@
<?php /* Smarty version 2.6.19, created on 2008-05-18 22:44:53
compiled from game/rename.tpl */ ?>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/header.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>
<div class="border_top"></div>
<img src="images/planetes/<?php echo $this->_tpl_vars['planete']['image']; ?>
.jpg" width="200" height="200" alt="planète" />
<h2>Renommer la planète</h2>
<form action="?p=rename" method="post">
<fieldset class="options"><label for="planete">Renommer la planète: (<?php echo $this->_tpl_vars['planete']['galaxie']; ?>
:<?php echo $this->_tpl_vars['planete']['ss']; ?>
:<?php echo $this->_tpl_vars['planete']['position']; ?>
) :</label><input class="text" type="text" name="planete" value="<?php echo $this->_tpl_vars['planete']['nom_planete']; ?>
" id="planete" /><br /><br /><input class="submit" type="submit" value="OK" /></fieldset>
</form>
<h2>Abandonner la planète</h2>
<?php if ($this->_tpl_vars['abandonH']): ?><b>Attention, cette action est irréversible ; vous perdrez tous les batiments, vaisseaux et unités présents sur cette planète, les flottes ayant une mision qui a pour origine votre planète se perdront dans l'espace.</b><br /><br />Si vous êtes sur de vouloir abandonner cette planète : <a href="?p=rename&amp;a=<?php echo $this->_tpl_vars['abandonH']; ?>
" onclick="return confirm('Êtes-vous sûr de vouloir abandonner cette planète ?');">cliquez sur ce lien</a>.<br /><br />
<?php else: ?>Vous ne pouvez pas abandonner cette planète car vous n'en avez pas d'autre.<br /><br /><?php endif; ?>
<div class="border_bt"></div>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/footer.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>

View file

@ -1,31 +0,0 @@
<?php /* Smarty version 2.6.19, created on 2008-05-18 00:20:23
compiled from game/classement.tpl */ ?>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/header.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>
<div class="border_top"></div>
<h2>Classement</h2>
<form action="<?php echo $this->_tpl_vars['menu']['classement']; ?>
" method="get"><fieldset><input type="hidden" value="classement" name="p" /><select name="t"><option value="0">Pseudo</option><option value="1">Alliance</option></select>&nbsp;&nbsp;&nbsp;&nbsp;<select name="e"><option value="points"<?php if ($this->_tpl_vars['export'] == 'points'): ?> selected="selected"<?php endif; ?>>Points</option><option value="batiment"<?php if ($this->_tpl_vars['export'] == 'batiments'): ?> selected="selected"<?php endif; ?>>Bâtiment</option><option value="flotte"<?php if ($this->_tpl_vars['export'] == 'flottes'): ?> selected="selected"<?php endif; ?>>Flotte</option><option value="recherches"<?php if ($this->_tpl_vars['export'] == 'recherches'): ?> selected="selected"<?php endif; ?>>Recherches</option></select>&nbsp;&nbsp;&nbsp;&nbsp;<?php echo $this->_tpl_vars['q']; ?>
&nbsp;&nbsp;&nbsp;&nbsp;<input class="submit" type="submit" value="GO" /></fieldset></form>
<table class="systeme"><thead>
<tr><th>Rang</th><th>Evolution</th><th>Pseudo</th><th>Message</th><th>Race</th><th>Alliance</th><th>Points</th></tr></thead><tbody>
<?php $_from = $this->_tpl_vars['places']; if (!is_array($_from) && !is_object($_from)) { settype($_from, 'array'); }if (count($_from)):
foreach ($_from as $this->_tpl_vars['place']):
?>
<tr><td><?php echo $this->_tpl_vars['place']['0']; ?>
</td><td>-</td><td><?php echo $this->_tpl_vars['place']['1']; ?>
</td><td><a href="?p=envoyer&amp;d=<?php echo $this->_tpl_vars['place']['1']; ?>
" class="msg"><span>Message</span></a></td><td><?php echo $this->_tpl_vars['place']['2']; ?>
</td><td>-</td><td><?php echo $this->_tpl_vars['place']['3']; ?>
</td></tr>
<?php endforeach; endif; unset($_from); ?>
</tbody></table>
<div class="border_bt"></div>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/footer.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>

View file

@ -1,99 +0,0 @@
<?php /* Smarty version 2.6.19, created on 2008-05-23 02:27:35
compiled from game/defenses.tpl */ ?>
<?php require_once(SMARTY_CORE_DIR . 'core.load_plugins.php');
smarty_core_load_plugins(array('plugins' => array(array('modifier', 'lower', 'game/defenses.tpl', 27, false),)), $this); ?>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/header.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>
<div class="border_top"></div>
<h2>File d'attente</h2>
<div class="file">
<?php $_from = $this->_tpl_vars['file']; if (!is_array($_from) && !is_object($_from)) { settype($_from, 'array'); }if (count($_from)):
foreach ($_from as $this->_tpl_vars['key'] => $this->_tpl_vars['fvais']):
?>
<?php if ($this->_tpl_vars['key'] == 0): ?><span><strong>Prochain véhicule</strong> : <em id="resten"></em><script type="text/javascript">reste(<?php echo $this->_tpl_vars['fvais']['2']; ?>
,'resten', true);</script></span><?php endif; ?>
<span><?php echo $this->_tpl_vars['fvais']['1']; ?>
<?php echo $this->_tpl_vars['fvais']['3']; ?>
- <em id="reste<?php echo $this->_tpl_vars['key']; ?>
"></em><script type="text/javascript">reste(<?php echo $this->_tpl_vars['fvais']['4']; ?>
,'reste<?php echo $this->_tpl_vars['key']; ?>
', <?php if ($this->_tpl_vars['key'] == 0): ?>true<?php else: ?>false<?php endif; ?>);</script> - <a href="<?php echo $this->_tpl_vars['menu']['defenses']; ?>
&amp;a=<?php echo $this->_tpl_vars['fvais']['0']; ?>
">Annuler un</a> - <a href="<?php echo $this->_tpl_vars['menu']['defenses']; ?>
&amp;a=<?php echo $this->_tpl_vars['fvais']['0']; ?>
&amp;n=<?php echo $this->_tpl_vars['fvais']['1']; ?>
">Annuler tous</a></span>
<?php endforeach; endif; unset($_from); ?>
<?php if ($this->_tpl_vars['Vchaine']): ?><span>Aucun véhicule dans la file d'attente</span><?php endif; ?>
<br />
</div>
<h3><a href="<?php echo $this->_tpl_vars['menu']['arbre']; ?>
&amp;q=chantierterrestre">Arbre des technologies</a></h3><br />
<h2>Défenses</h2>
<table class="construction">
<?php $_from = $this->_tpl_vars['defenses']; if (!is_array($_from) && !is_object($_from)) { settype($_from, 'array'); }if (count($_from)):
foreach ($_from as $this->_tpl_vars['defense']):
?>
<tr>
<td>
<a class="bulle" href="?p=description&amp;d=<?php echo $this->_tpl_vars['defense']['num']; ?>
#menu">
<img width="130" height="132" src="images/terrestre/<?php echo $this->_tpl_vars['defense']['image']; ?>
" alt="Image" />
<span><?php echo $this->_tpl_vars['defense']['description']; ?>
</span>
</a>
</td>
<td>
<div>
<strong><?php echo $this->_tpl_vars['defense']['nom']; ?>
<?php if ($this->_tpl_vars['defense']['nombre'] > 0): ?> (<?php echo $this->_tpl_vars['defense']['nombre']; ?>
defense<?php if ($this->_tpl_vars['defense']['nombre'] > 1): ?>s<?php endif; ?>)<?php endif; ?></strong><br /><br />
<?php if ($this->_tpl_vars['defense']['nec_metal'] > 0): ?>
<?php if ($this->_tpl_vars['defense']['nec_metal'] > $this->_tpl_vars['planete']['metal']): ?><span class="lack">Coût <?php echo ((is_array($_tmp=$this->_tpl_vars['nomsressources']['0'])) ? $this->_run_mod_handler('lower', true, $_tmp) : smarty_modifier_lower($_tmp)); ?>
: <?php echo $this->_tpl_vars['defense']['nec_metalS']; ?>
</span><br />
<?php else: ?>Coût <?php echo ((is_array($_tmp=$this->_tpl_vars['nomsressources']['0'])) ? $this->_run_mod_handler('lower', true, $_tmp) : smarty_modifier_lower($_tmp)); ?>
: <?php echo $this->_tpl_vars['defense']['nec_metalS']; ?>
<br /><?php endif; ?>
<?php endif; ?>
<?php if ($this->_tpl_vars['defense']['nec_cristal'] > 0): ?>
<?php if ($this->_tpl_vars['defense']['nec_cristal'] > $this->_tpl_vars['planete']['cristal']): ?><span class="lack">Coût <?php echo ((is_array($_tmp=$this->_tpl_vars['nomsressources']['1'])) ? $this->_run_mod_handler('lower', true, $_tmp) : smarty_modifier_lower($_tmp)); ?>
: <?php echo $this->_tpl_vars['defense']['nec_cristalS']; ?>
</span><br />
<?php else: ?>Coût <?php echo ((is_array($_tmp=$this->_tpl_vars['nomsressources']['1'])) ? $this->_run_mod_handler('lower', true, $_tmp) : smarty_modifier_lower($_tmp)); ?>
: <?php echo $this->_tpl_vars['defense']['nec_cristalS']; ?>
<br /><?php endif; ?>
<?php endif; ?>
<?php if ($this->_tpl_vars['defense']['nec_hydrogene'] > 0): ?>
<?php if ($this->_tpl_vars['defense']['nec_hydrogene'] > $this->_tpl_vars['planete']['hydrogene']): ?><span class="lack">Coût <?php echo ((is_array($_tmp=$this->_tpl_vars['nomsressources']['2'])) ? $this->_run_mod_handler('lower', true, $_tmp) : smarty_modifier_lower($_tmp)); ?>
: <?php echo $this->_tpl_vars['defense']['nec_hydrogeneS']; ?>
</span><br />
<?php else: ?>Coût <?php echo ((is_array($_tmp=$this->_tpl_vars['nomsressources']['2'])) ? $this->_run_mod_handler('lower', true, $_tmp) : smarty_modifier_lower($_tmp)); ?>
: <?php echo $this->_tpl_vars['defense']['nec_hydrogeneS']; ?>
<br /><?php endif; ?>
<?php endif; ?>
Temps de construction : <?php echo $this->_tpl_vars['defense']['temps']; ?>
<br /><br />
<form action="<?php echo $this->_tpl_vars['menu']['defenses']; ?>
&amp;v=<?php echo $this->_tpl_vars['defense']['num']; ?>
" method="post">
<fieldset>
<input class="text" type="text" name="nombre" value="0" />
<input class="submit" type="submit" value="OK" />
</fieldset>
</form>
</div>
</td>
</tr>
<?php endforeach; endif; unset($_from); ?>
</table>
<div class="border_bt"></div>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/footer.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>

View file

@ -1,66 +0,0 @@
<?php /* Smarty version 2.6.19, created on 2008-05-20 00:35:27
compiled from game/accueil.tpl */ ?>
<?php require_once(SMARTY_CORE_DIR . 'core.load_plugins.php');
smarty_core_load_plugins(array('plugins' => array(array('modifier', 'upper', 'game/accueil.tpl', 18, false),)), $this); ?>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/header.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>
<div class="border_top"></div>
<h2>Evénements</h2>
<em>Heure du serveur: <?php echo $this->_tpl_vars['datehb']; ?>
</em>
<?php $_from = $this->_tpl_vars['attaques']; if (!is_array($_from) && !is_object($_from)) { settype($_from, 'array'); }if (count($_from)):
foreach ($_from as $this->_tpl_vars['key'] => $this->_tpl_vars['attaque']):
?>
<h4 class="attaque">attaque: Une flotte ennemie en provenance de <?php echo $this->_tpl_vars['attaque']['0']; ?>
[<?php echo $this->_tpl_vars['attaque']['2']; ?>
:<?php echo $this->_tpl_vars['attaque']['3']; ?>
:<?php echo $this->_tpl_vars['attaque']['4']; ?>
] atteint la planète <?php echo $this->_tpl_vars['attaque']['5']; ?>
[<?php echo $this->_tpl_vars['attaque']['6']; ?>
:<?php echo $this->_tpl_vars['attaque']['7']; ?>
:<?php echo $this->_tpl_vars['attaque']['8']; ?>
] dans <span id="reste<?php echo $this->_tpl_vars['key']; ?>
"><?php echo $this->_tpl_vars['attaque']['1']; ?>
</span><script type="text/javascript">reste(<?php echo $this->_tpl_vars['attaque']['9']; ?>
,'reste<?php echo $this->_tpl_vars['key']; ?>
', true);</script></h4>
<?php endforeach; endif; unset($_from); ?>
<?php if ($this->_tpl_vars['mail']['nbre'] >= 2): ?><h4>messagerie: <a href="?p=messagerie"><?php echo $this->_tpl_vars['mail']['nbre']; ?>
messages non lu</a></h4>
<?php elseif ($this->_tpl_vars['mail']['nbre'] >= 1): ?><h4>messagerie: <a href="?p=messagerie"><?php echo $this->_tpl_vars['mail']['nbre']; ?>
message non lu</a></h4>
<?php endif; ?>
<h3><a href="?p=rename"><?php if (! $this->_tpl_vars['planete']['nom_planete']): ?>Sans nom<?php endif; ?><?php echo $this->_tpl_vars['planete']['nom_planete']; ?>
</a> (<span><?php echo $this->_tpl_vars['user']['pseudo']; ?>
</span>)</h3>
<img src="images/planetes/<?php echo $this->_tpl_vars['planete']['image']; ?>
.jpg" width="200" height="200" alt="planete" />
<h2>Infos</h2>
<h4>Diamètre: <?php echo $this->_tpl_vars['diametre']; ?>
km <ins>(<?php echo $this->_tpl_vars['caseRest']; ?>
/<?php echo $this->_tpl_vars['planete']['cases']; ?>
cases)</ins></h4>
<h4>Race : <?php echo $this->_tpl_vars['user']['race']; ?>
</h4>
<h4>position: <a href="?p=carte&amp;galaxie=<?php echo $this->_tpl_vars['planete']['galaxie']; ?>
&amp;ss=<?php echo $this->_tpl_vars['planete']['ss']; ?>
"><?php echo $this->_tpl_vars['planete']['galaxie']; ?>
.<?php echo $this->_tpl_vars['planete']['ss']; ?>
.<?php echo $this->_tpl_vars['planete']['position']; ?>
</a></h4>
<h4>Classement: <a href="?p=classement&amp;j=<?php echo $this->_tpl_vars['user']['id']; ?>
"><?php echo $this->_tpl_vars['points']; ?>
points (<?php if ($this->_tpl_vars['user']['place_points'] == '0'): ?>non classé<?php else: ?><?php echo $this->_tpl_vars['user']['place_points']; ?>
<?php if ($this->_tpl_vars['user']['place_points'] == '1'): ?>er<?php else: ?>ème<?php endif; ?><?php endif; ?>)</a></h4>
<?php if ($this->_tpl_vars['alliance']): ?><h4>Alliance: <a href="?p=alliances">[<?php echo ((is_array($_tmp=$this->_tpl_vars['alliance']['tag'])) ? $this->_run_mod_handler('upper', true, $_tmp) : smarty_modifier_upper($_tmp)); ?>
] <?php echo $this->_tpl_vars['alliance']['nom']; ?>
</a></h4><?php endif; ?>
<div class="border_bt"></div>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/footer.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>

View file

@ -1,70 +0,0 @@
<?php /* Smarty version 2.6.19, created on 2008-05-23 01:21:07
compiled from game/ressources.tpl */ ?>
<?php require_once(SMARTY_CORE_DIR . 'core.load_plugins.php');
smarty_core_load_plugins(array('plugins' => array(array('function', 'html_options', 'game/ressources.tpl', 8, false),array('modifier', 'cat', 'game/ressources.tpl', 8, false),)), $this); ?>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/header.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>
<div class="border_top"></div>
<h2>Ressources</h2>
<form method="post" action="<?php echo $this->_tpl_vars['menu']['ressources']; ?>
">
<table>
<thead><tr><th> </th><th>Coefficient</th><th><?php echo $this->_tpl_vars['nomsressources']['0']; ?>
</th><th><?php echo $this->_tpl_vars['nomsressources']['1']; ?>
</th><th><?php echo $this->_tpl_vars['nomsressources']['2']; ?>
</th><th><?php echo $this->_tpl_vars['nomsressources']['3']; ?>
</th></tr></thead>
<tbody>
<tr><td><?php echo $this->_tpl_vars['planete']['mine_m']; ?>
<?php echo $this->_tpl_vars['nombat']['0']; ?>
</td><td><select name="coeff_metal" class="coeff"><?php echo smarty_function_html_options(array('values' => $this->_tpl_vars['ressources_tab'],'selected' => $this->_tpl_vars['ressources_coef']['0'],'output' => ((is_array($_tmp=$this->_tpl_vars['ressources_tab'])) ? $this->_run_mod_handler('cat', true, $_tmp, '%') : smarty_modifier_cat($_tmp, '%'))), $this);?>
</select></td><td><?php echo $this->_tpl_vars['ressources_prod']['0']; ?>
</td><td>0</td><td>0</td><td class="lack">-<?php echo $this->_tpl_vars['ressources_conso']['0']; ?>
</td></tr>
<?php if ($this->_tpl_vars['planete']['mine_c']): ?><tr><td><?php echo $this->_tpl_vars['planete']['mine_c']; ?>
<?php echo $this->_tpl_vars['nombat']['1']; ?>
</td><td><select name="coeff_cristal" class="coeff"><?php echo smarty_function_html_options(array('values' => $this->_tpl_vars['ressources_tab'],'selected' => $this->_tpl_vars['ressources_coef']['1'],'output' => ((is_array($_tmp=$this->_tpl_vars['ressources_tab'])) ? $this->_run_mod_handler('cat', true, $_tmp, '%') : smarty_modifier_cat($_tmp, '%'))), $this);?>
</select></td><td>0</td><td><?php echo $this->_tpl_vars['ressources_prod']['1']; ?>
</td><td>0</td><td class="lack">-<?php echo $this->_tpl_vars['ressources_conso']['1']; ?>
</td></tr><?php endif; ?>
<?php if ($this->_tpl_vars['planete']['mine_h']): ?><tr><td><?php echo $this->_tpl_vars['planete']['mine_h']; ?>
<?php echo $this->_tpl_vars['nombat']['2']; ?>
</td><td><select name="coeff_hydrogene" class="coeff"><?php echo smarty_function_html_options(array('values' => $this->_tpl_vars['ressources_tab'],'selected' => $this->_tpl_vars['ressources_coef']['2'],'output' => ((is_array($_tmp=$this->_tpl_vars['ressources_tab'])) ? $this->_run_mod_handler('cat', true, $_tmp, '%') : smarty_modifier_cat($_tmp, '%'))), $this);?>
</select></td><td>0</td><td>0</td><td><?php echo $this->_tpl_vars['ressources_prod']['2']; ?>
</td><td class="lack">-<?php echo $this->_tpl_vars['ressources_conso']['2']; ?>
</td></tr><?php endif; ?>
<tr><td><?php echo $this->_tpl_vars['planete']['centrale_s']; ?>
<?php echo $this->_tpl_vars['nombat']['3']; ?>
</td><td><select name="coeff_cs" class="coeff"><?php echo smarty_function_html_options(array('values' => $this->_tpl_vars['ressources_tab'],'selected' => $this->_tpl_vars['ressources_coef']['3'],'output' => ((is_array($_tmp=$this->_tpl_vars['ressources_tab'])) ? $this->_run_mod_handler('cat', true, $_tmp, '%') : smarty_modifier_cat($_tmp, '%'))), $this);?>
</select></td><td>0</td><td>0</td><td>0</td><td><?php echo $this->_tpl_vars['ressources_prod']['3']; ?>
</td></tr>
<?php if ($this->_tpl_vars['planete']['centrale_f']): ?><tr><td><?php echo $this->_tpl_vars['planete']['centrale_f']; ?>
<?php echo $this->_tpl_vars['nombat']['4']; ?>
</td><td><select name="coeff_ce" class="coeff"><?php echo smarty_function_html_options(array('values' => $this->_tpl_vars['ressources_tab'],'selected' => $this->_tpl_vars['ressources_coef']['4'],'output' => ((is_array($_tmp=$this->_tpl_vars['ressources_tab'])) ? $this->_run_mod_handler('cat', true, $_tmp, '%') : smarty_modifier_cat($_tmp, '%'))), $this);?>
</select></td><td>0</td><td>0</td><td class="lack">-<?php echo $this->_tpl_vars['ressources_conso']['3']; ?>
</td><td><?php echo $this->_tpl_vars['ressources_prod']['4']; ?>
</td></tr><?php endif; ?>
<tr><td><?php echo $this->_tpl_vars['planete']['silo']; ?>
<?php echo $this->_tpl_vars['nombat']['10']; ?>
</td><td>-</td><td><?php echo $this->_tpl_vars['ressources_silo']['1']; ?>
</td><td><?php echo $this->_tpl_vars['ressources_silo']['1']; ?>
</td><td><?php echo $this->_tpl_vars['ressources_silo']['1']; ?>
</td><td>0</td></tr>
<tr><td><strong>Total</strong></td><td>-</td><td><?php echo $this->_tpl_vars['ressources_prod']['0']; ?>
</td><td><?php echo $this->_tpl_vars['ressources_prod']['1']; ?>
</td><td><?php if ($this->_tpl_vars['planete']['mine_h']): ?><?php echo $this->_tpl_vars['ressources_toto']['0']; ?>
<?php else: ?>0<?php endif; ?></td><td<?php if ($this->_tpl_vars['alertes']['5'] <= 0): ?> class="lack"<?php endif; ?>><?php echo $this->_tpl_vars['alertes']['5']; ?>
</td></tr>
</tbody>
</table>
<input type="submit" class="submit" value="GO" /><br /><br />
</form>
<div class="border_bt"></div>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/footer.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>

View file

@ -1,22 +0,0 @@
<?php /* Smarty version 2.6.19, created on 2008-05-19 23:02:45
compiled from cms/mini.tpl */ ?>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'cms/header.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>
<div id="connexion" class="block">
<div class="header">Connexion</div>
<div class="corps"><form action="?log" method="post"><fieldset><span><input type="text" class="text" name="HB_login" maxlength="32" tabindex="1" /><input type="password" class="password" name="HB_password" maxlength="32" tabindex="2" /><input type="submit" class="submit" value="GO" tabindex="3" /></span><span><input type="checkbox" name="cookie" id="cookie" /><label for="cookie">Retenir mes informations</label> <a href="<?php echo $this->_tpl_vars['link']['oubliemdp']; ?>
" tabindex="4">Mot de passe oublié</a></span></fieldset></form></div>
</div>
<div id="inscription" class="block"><span><a href="<?php echo $this->_tpl_vars['link']['inscription']; ?>
">INSCRIVEZ VOUS</a> Rejoignez l'alliance ou engagez-vous</span> <p><strong>DEFENDREZ VOUS L'HUMANITE OU LA DETRUIREZ VOUS?</strong><br /><br />Repoussez l'ennemi et partez a la conquète des mondes-anneaux dans des univers vastes et riches basés sur l'univers du jeu vidéo Halo<br /><br /><em>Une simple inscription gratuite et un navigateur internet sont demandés pour pouvoir participer a des batailles épiques!</em></p> <a href="<?php echo $this->_tpl_vars['link']['inscription']; ?>
" class="link"><span>Cliquez ici pour vous inscrire</span></a> <a href="<?php echo $this->_tpl_vars['link']['inscription']; ?>
" class="more">En savoir plus</a></div>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'cms/footer.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>

View file

@ -1,64 +0,0 @@
<?php /* Smarty version 2.6.19, created on 2008-05-20 22:09:01
compiled from game/carte.tpl */ ?>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/header.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>
<div class="border_top"></div>
<h2>Navigation</h2>
<form action="<?php echo $this->_tpl_vars['menu']['carte']; ?>
" method="get"><fieldset class="systeme"><label for="galaxie">Amas :</label><input type="hidden" value="carte" name="p" /><input class="text" type="text" value="<?php echo $this->_tpl_vars['position']['0']; ?>
" id="galaxie" name="galaxie" /><label for="systeme">Système solaire :</label><input class="text" type="text" value="<?php echo $this->_tpl_vars['position']['1']; ?>
" id="systeme" name="ss" /><div><a href="<?php echo $this->_tpl_vars['menu']['carte']; ?>
&amp;galaxie=<?php echo $this->_tpl_vars['position']['4']; ?>
&amp;ss=<?php echo $this->_tpl_vars['position']['5']; ?>
">&#60;&#60;&#60;</a><input class="submit" type="submit" value="GO" /><a href="<?php echo $this->_tpl_vars['menu']['carte']; ?>
&amp;galaxie=<?php echo $this->_tpl_vars['position']['2']; ?>
&amp;ss=<?php echo $this->_tpl_vars['position']['3']; ?>
">&#62;&#62;&#62;</a></div></fieldset></form>
<h2>Système Solaire</h2>
<table class="systeme">
<thead>
<tr>
<td colspan="6">Système: <?php echo $this->_tpl_vars['position']['0']; ?>
:<?php echo $this->_tpl_vars['position']['1']; ?>
</td>
</tr>
<tr>
<th>Position</th>
<th>Nom</th>
<th>Débris métal</th>
<th>Débris cristal</th>
<th>Joueur</th>
<th>Message</th>
</tr>
</thead>
<tbody>
<?php $_from = $this->_tpl_vars['carte']; if (!is_array($_from) && !is_object($_from)) { settype($_from, 'array'); }if (count($_from)):
foreach ($_from as $this->_tpl_vars['plan']):
?>
<tr>
<td><?php echo $this->_tpl_vars['plan']['0']; ?>
</td>
<td><?php echo $this->_tpl_vars['plan']['1']; ?>
</td>
<td><?php echo $this->_tpl_vars['plan']['2']; ?>
</td>
<td><?php echo $this->_tpl_vars['plan']['3']; ?>
</td>
<td><?php echo $this->_tpl_vars['plan']['5']; ?>
<?php echo $this->_tpl_vars['plan']['4']; ?>
</td>
<td><?php echo $this->_tpl_vars['plan']['6']; ?>
</td>
</tr>
<?php endforeach; endif; unset($_from); ?>
</tbody>
</table>
<div class="border_bt"></div>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/footer.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>

View file

@ -1,50 +0,0 @@
<?php /* Smarty version 2.6.19, created on 2008-05-23 01:02:05
compiled from game/alliance_liste.tpl */ ?>
<?php require_once(SMARTY_CORE_DIR . 'core.load_plugins.php');
smarty_core_load_plugins(array('plugins' => array(array('modifier', 'date_format', 'game/alliance_liste.tpl', 20, false),)), $this); ?>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/header.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>
<div class="border_top"></div>
<h2>Composition de l'alliance</h2>
<table style="text-align: center; width: 100%;" cellpadding="0" cellspacing="0">
<thead>
<tr>
<th>Pseudo</th>
<th>Race</th>
<th>Derni&egrave;re connexion</th>
<th>Points</th>
<th>Grade</th>
<th>Mp</th>
</tr>
</thead>
<tbody>
<?php $_from = $this->_tpl_vars['membres']; if (!is_array($_from) && !is_object($_from)) { settype($_from, 'array'); }if (count($_from)):
foreach ($_from as $this->_tpl_vars['membre']):
?>
<tr>
<td><?php echo $this->_tpl_vars['membre']['pseudo']; ?>
</td>
<td><?php echo $this->_tpl_vars['membre']['race']; ?>
</td>
<td><?php echo ((is_array($_tmp=$this->_tpl_vars['membre']['last_visite'])) ? $this->_run_mod_handler('date_format', true, $_tmp, "%d/%m/%y %H:%M:%S") : smarty_modifier_date_format($_tmp, "%d/%m/%y %H:%M:%S")); ?>
</td>
<td><?php echo $this->_tpl_vars['membre']['points']; ?>
(<?php echo $this->_tpl_vars['membre']['place_points']; ?>
)</td>
<td><?php echo $this->_tpl_vars['membre']['id_grade_alliance']; ?>
</td>
<td><a href="?p=envoyer&amp;d=<?php echo $this->_tpl_vars['membre']['pseudo']; ?>
" class="msg"><span>Message</span></a></td>
</tr>
<?php endforeach; endif; unset($_from); ?>
</tbody>
</table>
<div class="border_bt"></div>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/footer.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>

View file

@ -1,17 +0,0 @@
<?php /* Smarty version 2.6.19, created on 2008-05-17 18:19:03
compiled from game/vp.tpl */ ?>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/header.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>
<div class="border_top"></div>
<div class="error">... veuillez patienter ...</div>
<div class="border_bt"></div>
<?php echo $this->_tpl_vars['contenu']; ?>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/footer.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>

View file

@ -1,102 +0,0 @@
<?php /* Smarty version 2.6.19, created on 2008-05-23 00:59:16
compiled from game/alliance_accueil.tpl */ ?>
<?php require_once(SMARTY_CORE_DIR . 'core.load_plugins.php');
smarty_core_load_plugins(array('plugins' => array(array('modifier', 'upper', 'game/alliance_accueil.tpl', 3, false),array('modifier', 'capitalize', 'game/alliance_accueil.tpl', 3, false),array('modifier', 'escape', 'game/alliance_accueil.tpl', 11, false),array('modifier', 'nl2br', 'game/alliance_accueil.tpl', 34, false),array('modifier', 'date_format', 'game/alliance_accueil.tpl', 57, false),)), $this); ?>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/header.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>
<div class="border_top"></div>
<h2>[<?php echo ((is_array($_tmp=$this->_tpl_vars['alliance']['tag'])) ? $this->_run_mod_handler('upper', true, $_tmp) : smarty_modifier_upper($_tmp)); ?>
] <?php echo ((is_array($_tmp=$this->_tpl_vars['alliance']['nom'])) ? $this->_run_mod_handler('capitalize', true, $_tmp) : smarty_modifier_capitalize($_tmp)); ?>
</h2>
<table cellpadding="2" cellspacing="0" style="text-align: center; width: 100%;">
<tbody>
<tr>
<td colspan="2"><img src="<?php echo $this->_tpl_vars['alliance']['image']; ?>
" /></td>
</tr>
<tr>
<td style="text-align: right; vertical-align: middle;"><strong>Nom : </strong></td>
<td style="width: 70%;"><?php echo ((is_array($_tmp=$this->_tpl_vars['alliance']['nom'])) ? $this->_run_mod_handler('escape', true, $_tmp) : smarty_modifier_escape($_tmp)); ?>
(<?php echo ((is_array($_tmp=$this->_tpl_vars['alliance']['tag'])) ? $this->_run_mod_handler('escape', true, $_tmp) : smarty_modifier_escape($_tmp)); ?>
)</td>
</tr>
<tr>
<td style="text-align: right;"><strong>Membres : </strong></td>
<td><?php echo $this->_tpl_vars['nbmembre']; ?>
(<a href="<?php echo $this->_tpl_vars['menu']['alliance']; ?>
&amp;q=liste">Liste des membres</a>)</td>
</tr>
<tr>
<td style="text-align: right;"><strong>Votre grade :</strong></td>
<td><?php if ($this->_tpl_vars['access']['fondateur']): ?>Fondateur<?php else: ?><?php echo ((is_array($_tmp=$this->_tpl_vars['grade']['nom'])) ? $this->_run_mod_handler('escape', true, $_tmp) : smarty_modifier_escape($_tmp)); ?>
<?php endif; ?><br /><?php if ($this->_tpl_vars['access']['chat']): ?> <a href="<?php echo $this->_tpl_vars['menu']['alliance']; ?>
&amp;q=adm_chat">Mod&eacute;rer le chat</a> |<?php endif; ?> <?php if ($this->_tpl_vars['access']['membre']): ?> <a href="<?php echo $this->_tpl_vars['menu']['alliance']; ?>
&amp;q=adm_membres">Gestion des membres</a> |<?php endif; ?> <?php if ($this->_tpl_vars['access']['ecriture']): ?> <a href="<?php echo $this->_tpl_vars['menu']['alliance']; ?>
&amp;q=adm_ecrits">Gestion des &eacute;critures</a> |<?php endif; ?> <?php if ($this->_tpl_vars['access']['alliance']): ?> <a href="<?php echo $this->_tpl_vars['menu']['alliance']; ?>
&amp;q=adm_alliance">Gestion de l'alliance</a> |<?php endif; ?></td>
</tr>
<tr>
<td style="text-align: right;"><strong>Status des inscriptions :</strong></td>
<td><?php if ($this->_tpl_vars['alliance']['etat_inscription']): ?>Ouvertes<?php else: ?>Ferm&eacute;e<?php endif; ?></td>
</tr>
<?php if ($this->_tpl_vars['access']['membre']): ?>
<tr>
<td style="text-align: right;"><strong>Mail collectif :</strong></td>
<td><a href="admin_alliance.php?action=massmail">Envoyer un message collectif</a> (prochainement)</td>
<?php endif; ?>
</tr>
</tbody>
</table>
<h2>Présentation</h2>
<?php echo ((is_array($_tmp=((is_array($_tmp=$this->_tpl_vars['alliance']['presentation'])) ? $this->_run_mod_handler('escape', true, $_tmp) : smarty_modifier_escape($_tmp)))) ? $this->_run_mod_handler('nl2br', true, $_tmp) : smarty_modifier_nl2br($_tmp)); ?>
<table style="width: 100%;">
<tbody>
<tr>
<td style="text-align: right;"><strong>Forum :</strong></td>
<td style="width: 70%;"><a href="<?php echo $this->_tpl_vars['alliance']['url']; ?>
"><?php echo $this->_tpl_vars['alliance']['url']; ?>
</a></td>
</tr>
</tbody>
</table>
<h2>Texte interne</h2>
<?php echo ((is_array($_tmp=((is_array($_tmp=$this->_tpl_vars['alliance']['texte_interne'])) ? $this->_run_mod_handler('escape', true, $_tmp) : smarty_modifier_escape($_tmp)))) ? $this->_run_mod_handler('nl2br', true, $_tmp) : smarty_modifier_nl2br($_tmp)); ?>
<h2>Chat</h2>
<div style="height: 150px; overflow: auto; width: 99%;" id="chat">
<table style="width: 100%; margin: 0px;">
<thead>
<tr>
<th style="width: 172px;">[pseudo] heure</td>
<th style="width: 536px;">Message</td>
</tr>
</thead>
<tbody>
<?php $_from = $this->_tpl_vars['chat']; if (!is_array($_from) && !is_object($_from)) { settype($_from, 'array'); }if (count($_from)):
foreach ($_from as $this->_tpl_vars['message']):
?>
<tr>
<td>[<?php echo $this->_tpl_vars['message']['emetteur']; ?>
] <i><?php echo ((is_array($_tmp=((is_array($_tmp=$this->_tpl_vars['message']['timestamp'])) ? $this->_run_mod_handler('date_format', true, $_tmp, "%d/%m/%y %H:%M:%S") : smarty_modifier_date_format($_tmp, "%d/%m/%y %H:%M:%S")))) ? $this->_run_mod_handler('escape', true, $_tmp) : smarty_modifier_escape($_tmp)); ?>
</i></td>
<td><?php echo $this->_tpl_vars['message']['message']; ?>
</td>
</tr>
<?php endforeach; endif; unset($_from); ?>
</tbody>
</table>
</div>
<form method="post" action="<?php echo $this->_tpl_vars['menu']['alliance']; ?>
&amp;q=chat">
Réponse :&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<input name="msg" type="text" size="50" maxlength="250">&nbsp;&nbsp;&nbsp;&nbsp;<input value="GO" class="submit" type="submit">
</form>
<div class="border_bt"></div>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/footer.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>

View file

@ -1,15 +0,0 @@
<?php /* Smarty version 2.6.19, created on 2008-05-17 23:39:08
compiled from game/aide.tpl */ ?>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/header.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>
<div class="border_top"></div>
<h2>Aide</h2>
<div class="border_bt"></div>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/footer.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>

View file

@ -1,74 +0,0 @@
<?php /* Smarty version 2.6.19, created on 2008-05-17 17:55:55
compiled from game/alliance_adm_admin.tpl */ ?>
<?php require_once(SMARTY_CORE_DIR . 'core.load_plugins.php');
smarty_core_load_plugins(array('plugins' => array(array('modifier', 'upper', 'game/alliance_adm_admin.tpl', 15, false),array('function', 'html_options', 'game/alliance_adm_admin.tpl', 19, false),)), $this); ?>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/header.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>
<div class="border_top"></div>
<h2>Administration de l'alliance</h2>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/alliance_adm_header.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>
<br />
<h2>Administration de l'alliance</h2>
<form method="post" action="<?php echo $this->_tpl_vars['menu']['alliance']; ?>
&amp;q=adm_alliance">
<table style="width: 100%;">
<tr>
<td style="width: 17%;"><strong><label for="nom">Nom :</label></strong></td>
<td colspan="3"><?php echo $this->_tpl_vars['alliance']['nom']; ?>
</td>
</tr>
<tr>
<td><strong><label for="tag">Tag :</label></strong></td>
<td colspan="3"><?php echo ((is_array($_tmp=$this->_tpl_vars['alliance']['tag'])) ? $this->_run_mod_handler('upper', true, $_tmp) : smarty_modifier_upper($_tmp)); ?>
</td>
</tr>
<tr>
<td><strong>Defcon : </strong></td>
<td><select name="defcon" id="defcon"><?php echo smarty_function_html_options(array('values' => $this->_tpl_vars['niveauxi'],'selected' => $this->_tpl_vars['alliance']['defcon'],'output' => $this->_tpl_vars['niveaux']), $this);?>
</select></td>
<td><strong><label for="defcon_txt">Message du Defcon :</label></strong></td>
<td><input name="defcon_txt" type="text" id="defcon_txt" value="<?php echo $this->_tpl_vars['alliance']['defcon_txt']; ?>
" /></td>
</tr>
<?php if ($this->_tpl_vars['access']['fondateur']): ?>
<tr>
<td><strong><label>Fondateur :</label></strong></td>
<td><select name="fondateur" id="fondateur"><?php echo smarty_function_html_options(array('values' => $this->_tpl_vars['membresi'],'selected' => $this->_tpl_vars['alliance']['fondateur'],'output' => $this->_tpl_vars['membres']), $this);?>
</select></td>
<td><strong>Dissoudre l'alliance</strong></td>
<td>Ecrivez votre mot de passe dans le champ ci-dessous :<br /><input name="pswd_admin" type="password" id="pswd_admin" /></td>
</tr>
<?php endif; ?>
<tr>
<td><strong><label for="etat_inscription">Etat des candidatures :</label></strong></td>
<td colspan="3"><select name="etat_inscription" id="etat_inscription"><?php echo smarty_function_html_options(array('values' => $this->_tpl_vars['etatinscripti'],'selected' => $this->_tpl_vars['alliance']['etat_inscription'],'output' => $this->_tpl_vars['etatinscript']), $this);?>
</select></td>
</tr>
<tr>
<td><strong><label for="image">Url de l'image :</label></strong></td>
<td colspan="3"><input name="image" type="text" id="image" value="<?php echo $this->_tpl_vars['alliance']['image']; ?>
" /></td>
</tr>
<tr>
<td><strong><label for="url">Url du forum de l'alliance :</label></strong></td>
<td colspan="3"><input name="url" type="text" id="url" value="<?php echo $this->_tpl_vars['alliance']['url']; ?>
" /></td>
</tr>
<tr>
<td colspan="4"><input type="submit" class="submit" value="Ok" /></td>
</tr>
</table>
</form>
<div class="border_bt"></div>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/footer.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>

View file

@ -1,17 +0,0 @@
<?php /* Smarty version 2.6.19, created on 2008-05-16 00:25:38
compiled from game/erreur.tpl */ ?>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/header.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>
<div class="border_top"></div>
<div class="error"<?php if ($this->_tpl_vars['couleur']): ?> style="color: <?php echo $this->_tpl_vars['couleur']; ?>
;"<?php endif; ?>><?php echo $this->_tpl_vars['message']; ?>
</div>
<div class="border_bt"></div>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/footer.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>

View file

@ -1,41 +0,0 @@
<?php /* Smarty version 2.6.19, created on 2008-05-18 00:20:06
compiled from cms/oubliemdp.tpl */ ?>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'cms/header.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>
<div id="dernierminute" class="block">
<div class="header">Informations</div>
<div class="corps" id="description"><b>Oublie de mot de passe</b><br /><br /><p>Compl&eacute;tez le formualaire ci-contre avec votre nom d&#39;utilisateur et votre adresse &eacute;lectronique. Un nouveau mot de passe sera envoy&eacute; &agrave; votre adresse, vous permettant ainsi d&#39;avoir de nouveau acc&egrave;s &agrave; votre compte.<br /><br />Pensez &agrave; changer ce nouveau mot de passe que vous ne retiendrez pas facilement, via la page option du jeu.</p>
</div>
</div>
<div id="statistiques" class="block">
<div class="header">Formulaire de r&eacute;initialisation de mot de passe</div>
<div class="corpsi">
<form action="<?php echo $this->_tpl_vars['link']['oubliemdp']; ?>
" method="post">
<span><label for="HB_pseudo">Pseudo :</label> <input class="text" name="HB_pseudo" id="pseudo" type="text" />
<br /><label for="HB_mail">Adresse &eacute;lectronique :</label> <input class="text" name="HB_mail" id="mail" type="text" />
<br /><br /><label for="HB_captcha">Recopiez ce texte :</label> <input class="text" name="HB_captcha" id="captcha" type="text" /> <img src="captcha/image.php" alt="Génération ..." id="gen" />
<br /><br /><input class="submit" value="OK" type="submit">
</span>
</form>
</div>
</div>
<?php if ($this->_tpl_vars['erreurs']): ?>
<div id="connexion" class="block">
<div class="header"><b>Impossible de changer le mot de passe :</b></div>
<div class="corps" id="description">
<p>
<?php echo $this->_tpl_vars['erreurs']; ?>
</p>
</div>
</div>
<?php endif; ?>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'cms/footer.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>

View file

@ -1,43 +0,0 @@
<?php /* Smarty version 2.6.19, created on 2008-05-19 02:25:42
compiled from game/aide/avertissements.tpl */ ?>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/header.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>
<div class="border_top"></div>
<h2>Aide de Halo-Battle :: Avertissements</h2>
<h3>Avertissement aux utilisateurs de téléviseurs à rétroprojection</h3><br />
Les images fixes peuvent endommager de manière irréversible le tube cathodique ou marquer à jamais les luminophores qui constituent l'écran de ces téléviseurs.<br />C'est pourquoi il est conseillé d'éviter d'utiliser des jeux vidéo trop souvent ou de façon prolongée avec les téléviseurs à rétroprojection.<br /><br />
<h3>Prévention des risques d'épilepsie</h3><br />
<h4>A lire avant toute utilisation d'un jeu vidéo par vous-même ou par votre enfant.</h4><br />
Chez certaines personnes, la stimulation visuelle par certains effets stroboscopiques ou motifs lumineux peut déclencher une crise d'épilepsie ou une perte de connaissance et ce, y compris dans la vie de tous les jours.<br />
Chez ces personnes, le simple fait de regarder la télévision ou de jouer à un jeu vidéo peut suffire à déclencher une crise. Les symptômes peuvent même se déclarer chez un individu sans antécédents médicaux ou n'ayant jamais souffert de crise d'épilepsie.<br />
Si vous-même ou un membre de votre famille avez déjà présenté des symptômes liés à l'épilepsie (crise d'épilepsie ou de perte de connaissance) à la suite d'une exposition à des effets lumineux stroboscopiques, veuillez consulter votre médecin avant de commencer à jouer.<br />
Nous conseillons vivement aux parents de prêter une attention soutenue à leurs enfants lorsqu'ils utilisent un jeu vidéo. Si vous ou votre enfant ressentez l'un des symptômes suivants en cours de jeu : vertiges, troubles de la vue, contractions oculaires ou musculaires incontrôlées, perte de connaissance, désorientation, mouvements involontaires ou convulsions, veuillez cesser IMMEDIATEMENT la partie et consulter votre médecin.<br /><br />
<h3>Règles à respecter pour jouer dans les meilleures conditions possibles</h3>
<ul>
<li>S'installer confortablement en position assise, le plus loin possible de l'écran.
<li>Jouer de préférence sur un écran de petite taille.</li>
<li>Eviter de jouer en cas de fatigue ou de manque de sommeil.</li>
<li>Veiller à ce que la pièce soit bien éclairée.</li>
<li>Observer des pauses de 10 à 15 minutes par heure de jeu.</li>
</ul><br />
<h3>Prévention des risques liés aux troubles du sommeil</h3><br />
Pour votre santé, veillez à observer un compte d'heures minimales allouées à votre repos. Jouer plusieurs heures d'affilées comporte un risque de déréglement de votre horloge interne et/ou de troubles du sommeil. Si vous ou votre enfant ressentez l'un des symptômes suivants en cours de jeu : fatigue, vertiges, troubles de la vue, contractions oculaires ou musculaires incontrôlées, perte de connaissance, insomnie, stress, veuillez cesser IMMEDIATEMENT de jouer et prenez du repos.<br />
Pour bien dormir, observez ces quelques règles :
<ul>
<li>Couchez-vous et levez-vous à heures régulières.</li>
<li>Pas de grasse matinée : levez-vous dès le réveil.</li>
<li>Dînez léger et pas trop tard, en mangeant un laitage.</li>
<li>Observer les premiers signes annonciateurs du sommeil, ne luttez pas contre le sommeil.</li>
<li>Maintenir une température basse (entre 15 et 18 °C) ainsi qu'un bon degré d'hygrométrie.<br />Opter pour l'obscurité, elle favorise le sommeil. Choisir un lit confortable (ni trop ferme ni trop mou) et des couvertures légères.</li>
<li>Evitez la prise de produits stimulants : coca-cola, thé, café, vitamine C…</li>
<li>La régularité du sommeil reste le meilleur gage de qualité.</li>
</ul>
<div class="border_bt"></div>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/footer.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>

View file

@ -1,36 +0,0 @@
<?php /* Smarty version 2.6.19, created on 2008-05-17 18:36:57
compiled from game/alliance_nm_postuler.tpl */ ?>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/header.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>
<div class="border_top"></div>
<h2>Postuler pour l'alliance : <?php echo $this->_tpl_vars['alliance']['nom']; ?>
</h2>
<form action="<?php echo $this->_tpl_vars['menu']['alliance']; ?>
&amp;q=postuler&amp;i=2" method="post">
<table style="width: 100%;">
<tr>
<td>Message de motivation </td>
<td><textarea name="message" cols="53" rows="6" id="message"></textarea></td>
<td rowspan="3"><div style="text-align: justify;">Une adh&eacute;sion &agrave; une alliance ne se fait pas automatiquement. Vous devez d'abord demand&eacute; &agrave; &ecirc;tre recrut&eacute;, via le formulaire ci-joint. Les fondateurs de l'alliance d&eacute;cideront ensuite de vous accepter, ou non, au sein de leur groupe. </div></td>
</tr>
<tr>
<td colspan="2">Une lettre de motivation courte est en g&eacute;n&eacute;ral appreci&eacute;e, et peut vous aider dans votre recrutement. Un fran&ccedil;ais correct est de rigueur. </td>
</tr>
<tr>
<td colspan="2">
<input name="id" type="hidden" id="id" value="<?php echo $this->_tpl_vars['alliance']['id']; ?>
" />
<?php if ($this->_tpl_vars['alliance']['etat_inscription']): ?><input type="submit" class="submit" value="GO" /><?php else: ?>Inscriptions ferm&eacute;es.<?php endif; ?>
</td>
</tr>
</table>
</form>
<div class="border_bt"></div>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/footer.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>

View file

@ -1,38 +0,0 @@
<?php /* Smarty version 2.6.19, created on 2008-05-17 18:45:20
compiled from game/alliance_nm_search.tpl */ ?>
<?php require_once(SMARTY_CORE_DIR . 'core.load_plugins.php');
smarty_core_load_plugins(array('plugins' => array(array('modifier', 'upper', 'game/alliance_nm_search.tpl', 13, false),)), $this); ?>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/header.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>
<div class="border_top"></div>
<table cellpadding="0" cellspacing="0" style="width: 60%;">
<thead>
<tr>
<th>[TAG] Alliance</th>
<th>Etat inscriptions </th>
</tr>
</thead>
<tbody>
<?php $_from = $this->_tpl_vars['recherches']; if (!is_array($_from) && !is_object($_from)) { settype($_from, 'array'); }if (count($_from)):
foreach ($_from as $this->_tpl_vars['recherche']):
?>
<tr>
<td><a href="<?php echo $this->_tpl_vars['menu']['alliance']; ?>
&amp;q=view&amp;i=<?php echo $this->_tpl_vars['recherche']['id']; ?>
">[<?php echo ((is_array($_tmp=$this->_tpl_vars['recherche']['tag'])) ? $this->_run_mod_handler('upper', true, $_tmp) : smarty_modifier_upper($_tmp)); ?>
] <?php echo $this->_tpl_vars['recherche']['nom']; ?>
</a></td>
<td><?php if ($this->_tpl_vars['recherche']['etat_inscription']): ?>Ouvertes<?php else: ?>Fermées<?php endif; ?></td>
</tr>
<?php endforeach; endif; unset($_from); ?>
</tbody>
</table>
<div class="border_bt"></div>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/footer.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>

View file

@ -1,39 +0,0 @@
<?php /* Smarty version 2.6.19, created on 2008-05-23 00:21:44
compiled from game/bugs.tpl */ ?>
<?php require_once(SMARTY_CORE_DIR . 'core.load_plugins.php');
smarty_core_load_plugins(array('plugins' => array(array('modifier', 'escape', 'game/bugs.tpl', 6, false),)), $this); ?>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/header.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>
<div class="border_top"></div>
<h2>Rapports de bug</h2>
<?php $_from = $this->_tpl_vars['bugs']; if (!is_array($_from) && !is_object($_from)) { settype($_from, 'array'); }if (count($_from)):
foreach ($_from as $this->_tpl_vars['bug']):
?>
<dl>
<dt><input class="button2" type="button" onclick="hide(this); return false;" /><?php echo $this->_tpl_vars['bug']['0']; ?>
, le <?php echo $this->_tpl_vars['bug']['1']; ?>
sur <?php echo ((is_array($_tmp=$this->_tpl_vars['bug']['2'])) ? $this->_run_mod_handler('escape', true, $_tmp) : smarty_modifier_escape($_tmp)); ?>
</dt><dd><?php echo $this->_tpl_vars['bug']['3']; ?>
<?php if ($this->_tpl_vars['auth_level'] > 2): ?><div style="text-align: right"><a href="<?php echo $this->_tpl_vars['menu']['bugs']; ?>
&amp;a=del&amp;i=<?php echo $this->_tpl_vars['bug']['4']; ?>
"><i>Supprimer</i></a></div><?php endif; ?></dd>
</dl>
<?php endforeach; endif; unset($_from); ?>
<h2>Ajouter un bug</h2>
<form action="<?php echo $this->_tpl_vars['menu']['bugs']; ?>
&amp;post" method="post"><fieldset class="options">
<strong>Attention : bien lire les bugs deja proposé,<br />l'utilisation abusive ou des bugs ayant non lieus seront sanctionnés.</strong><br /><br />
<label for="page">Page concernée :</label><input class="text" type="text" name="page" id="page" />
<label for="desc">Description :</label>
<textarea id="desc" name="description" cols="40" rows="10"></textarea><br /><br />
<input class="submit" type="submit" value="OK" />
</fieldset></form>
<div class="border_bt"></div>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/footer.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>

View file

@ -1,23 +0,0 @@
<?php /* Smarty version 2.6.19, created on 2008-05-14 22:48:04
compiled from cms/footer.tpl */ ?>
</div>
<div id="footer">
Réalisé par Halo Battle Staff<br />
Design by <a href="http://www.nothing-arts.com" onclick="window.open(this.href); return false;"><ins>nothingarts</ins></a><br /><br />
<!--Site visité 514200 fois depuis sa création<br />-->
<a href="<?php echo $this->_tpl_vars['link']['accueil']; ?>
">Accueil</a> | <a href="<?php echo $this->_tpl_vars['link']['jeu']; ?>
">Le jeu</a> | <a href="<?php echo $this->_tpl_vars['link']['inscription']; ?>
">S'inscrire</a> | <a href="<?php echo $this->_tpl_vars['link']['forum']; ?>
">Forum</a> | <a href="<?php echo $this->_tpl_vars['link']['staff']; ?>
">Staff</a> | <a href="<?php echo $this->_tpl_vars['link']['faq']; ?>
">F.A.Q.</a>
</div>
</div>
<div id="cornerbt"></div>
<?php echo $this->_tpl_vars['script']; ?>
<!-- \\******* By Phantom *******// Halo-Battle, Tous droits réservés -->
</body>
</html>

View file

@ -1,50 +0,0 @@
<?php /* Smarty version 2.6.19, created on 2008-05-16 23:14:02
compiled from game/alliance_nm_fonder.tpl */ ?>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/header.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>
<div class="border_top"></div>
<h2>Cr&eacute;ation d'une alliance</h2>
<form id="form2" method="post" action="<?php echo $this->_tpl_vars['menu']['alliance']; ?>
&amp;q=fonder">
<table cellpadding="0" cellspacing="0" style="height: 143px; width: 621px;">
<thead>
<tr>
<th width="367" scope="col">
<table width="376" height="159" border="0" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td width="113" height="50" align="center" valign="middle" scope="col"><strong>Nom</strong></td>
<td width="242" align="center" valign="middle" scope="col">
<input name="nom" type="text" maxlength="255" />
</td>
</tr>
<tr>
<td height="51" align="center" valign="middle"><strong>Tag</strong></td>
<td align="center" valign="middle">
<input name="tag" type="text" size="15" maxlength="15" />
</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="2" align="center" valign="middle"><input type="submit" class="submit" value="Cr&eacute;er " /></td>
</tr>
</tfoot>
</table>
</th>
<th scope="col" style="text-align: justify; vertical-align: middle; width: 254px;">
Rappel : <br />Cr&eacute;er une alliance ne peut pas se faire seul. Une fois que vous aurez lanc&eacute; la proc&eacute;dure, un lien vous sera donn&eacute;. Pour finir la cr&eacute;ation, donnez ce liens &agrave; quatre personnes qui sont sans alliance. &nbsp;
</th>
</tr>
</thead>
</table>
</form>
<div class="border_bt"></div>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/footer.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>

View file

@ -1,49 +0,0 @@
<?php /* Smarty version 2.6.19, created on 2008-05-14 22:48:12
compiled from game/alliance_nm_accueil.tpl */ ?>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/header.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>
<div class="border_top"></div>
<form method="post" action="<?php echo $this->_tpl_vars['menu']['alliance']; ?>
&amp;q=search">
<table width="355" height="194" border="0" cellpadding="0" cellspacing="0">
<thead>
<tr>
<th colspan="2" align="center" valign="middle" scope="col">
<p>Rechercher une alliance<br />
<a href="<?php echo $this->_tpl_vars['menu']['alliance']; ?>
&amp;q=fonder">Fonder une alliance</a> &dagger; <a href="<?php echo $this->_tpl_vars['menu']['alliance']; ?>
&amp;q=signerform">Ratifier une alliance</a></p>
</th>
</tr>
</thead>
<tbody>
<tr>
<td width="113" align="center" valign="middle">
<select name="by" size="2" id="by">
<option value="tag" selected="selected">Tag</option>
<option value="nom">Nom</option>
</select>
</td>
<td width="242" align="center" valign="middle">
<p>Rechercher les alliances dont le nom/tag contiennent :<br /><input name="search" type="text" id="search" /></p>
</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="2" align="center" valign="middle">
<input type="submit" class="submit" value="GO" />
</td>
</tr>
</tfoot>
</table>
</form>
<div class="border_bt"></div>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/footer.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>

View file

@ -1,24 +0,0 @@
<?php /* Smarty version 2.6.19, created on 2008-05-19 22:55:42
compiled from cms/secours.tpl */ ?>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'cms/header.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>
<div id="connexion" class="block">
<div class="header">Connexion</div>
<div class="corps">
Sélectionnez votre serveur :<br /><br />
<a href="http://battle.halo.fr/">Serveur n°1</a><br />
<!--<a href="http://battle.halo.fr/">Serveur n°2</a><br />-->
<br />
<a href="http://beta.halobattle.free.fr/">Serveur de béta-test #1</a><br />
</div>
</div>
<div id="inscription" class="block"><span>Le serveur de base de données est indisponible</span> <p><em>Le serveur de base de données n'étant actuellement pas en mesure d'assurer la génération des pages web, ni le processus de connexion ou d'inscription, utilisez les liens du cadre ci-contre pour accèder à la page de connexion de secours de votre serveur.<br /><br />Veuillez nous excuser pour la gène occasionnée, nous faisons notre possible pour rétablir le site au plus vite.<br /><br /><i>Le Staff</i></em></p></div>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'cms/footer.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>

View file

@ -1,14 +0,0 @@
<?php /* Smarty version 2.6.19, created on 2008-05-17 17:20:15
compiled from game/alliance_adm_header.tpl */ ?>
<?php if ($this->_tpl_vars['access']['chat']): ?><a href="<?php echo $this->_tpl_vars['menu']['alliance']; ?>
&amp;q=adm_chat">Administration du chat</a> - <?php endif; ?>
<?php if ($this->_tpl_vars['access']['membre']): ?><a href="<?php echo $this->_tpl_vars['menu']['alliance']; ?>
&amp;q=adm_membres">Administration des membres et des candidatures</a> - <?php endif; ?>
<?php if ($this->_tpl_vars['access']['grades']): ?><a href="<?php echo $this->_tpl_vars['menu']['alliance']; ?>
&amp;q=adm_grades">Administration des rangs</a> - <?php endif; ?>
<?php if ($this->_tpl_vars['access']['ecriture']): ?><a href="<?php echo $this->_tpl_vars['menu']['alliance']; ?>
&amp;q=adm_ecrits">Administration de la pr&eacute;sentation et de la page interne.</a> - <?php endif; ?>
<?php if ($this->_tpl_vars['access']['alliance']): ?><a href="<?php echo $this->_tpl_vars['menu']['alliance']; ?>
&amp;q=adm_alliance">Administration globale (defcon, successeur ...)</a> - <?php endif; ?>
<a href="<?php echo $this->_tpl_vars['menu']['alliance']; ?>
">Retour</a>

View file

@ -1,58 +0,0 @@
<?php /* Smarty version 2.6.19, created on 2008-05-23 01:04:47
compiled from game/alliance_adm_grades.tpl */ ?>
<?php require_once(SMARTY_CORE_DIR . 'core.load_plugins.php');
smarty_core_load_plugins(array('plugins' => array(array('modifier', 'escape', 'game/alliance_adm_grades.tpl', 22, false),array('modifier', 'nl2br', 'game/alliance_adm_grades.tpl', 23, false),)), $this); ?>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/header.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>
<div class="border_top"></div>
<h2>Administration de l'alliance</h2>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/alliance_adm_header.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>
<br />
<h2>Administration des grades</h2>
<table style="text-align: center; width: 100%;">
<thead>
<tr>
<th>Nom</th>
<th>Description</th>
<th>Gestion &eacute;critures</th>
<th>Gestion chat</th>
<th>Gestion membre</th>
<th>Gestion grades</th>
<th>Gestion alliance</th>
</tr>
</thead>
<tbody>
<?php $_from = $this->_tpl_vars['grades']; if (!is_array($_from) && !is_object($_from)) { settype($_from, 'array'); }if (count($_from)):
foreach ($_from as $this->_tpl_vars['grade']):
?>
<tr>
<td><a href="<?php echo $this->_tpl_vars['menu']['alliance']; ?>
&amp;q=adm_grades&amp;i=<?php echo $this->_tpl_vars['grade']['id']; ?>
"><?php echo ((is_array($_tmp=$this->_tpl_vars['grade']['nom'])) ? $this->_run_mod_handler('escape', true, $_tmp) : smarty_modifier_escape($_tmp)); ?>
</a></td>
<td><?php echo ((is_array($_tmp=((is_array($_tmp=$this->_tpl_vars['grade']['description'])) ? $this->_run_mod_handler('escape', true, $_tmp) : smarty_modifier_escape($_tmp)))) ? $this->_run_mod_handler('nl2br', true, $_tmp) : smarty_modifier_nl2br($_tmp)); ?>
</td>
<td><?php if ($this->_tpl_vars['grade']['gest_ecriture']): ?>Oui<?php else: ?>Non<?php endif; ?></td>
<td><?php if ($this->_tpl_vars['grade']['gest_chat']): ?>Oui<?php else: ?>Non<?php endif; ?></td>
<td><?php if ($this->_tpl_vars['grade']['gest_membre']): ?>Oui<?php else: ?>Non<?php endif; ?></td>
<td><?php if ($this->_tpl_vars['grade']['gest_rang']): ?>Oui<?php else: ?>Non<?php endif; ?></td>
<td><?php if ($this->_tpl_vars['grade']['gest_admin']): ?>Oui<?php else: ?>Non<?php endif; ?></td>
</tr>
<?php endforeach; endif; unset($_from); ?>
</tbody>
</table>
<a href="<?php echo $this->_tpl_vars['menu']['alliance']; ?>
&amp;q=adm_grades&amp;a=add">Ajouter un rang</a><br /><br />
<div class="border_bt"></div>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/footer.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>

View file

@ -1,131 +0,0 @@
<?php /* Smarty version 2.6.19, created on 2008-05-22 23:30:07
compiled from game/header.tpl */ ?>
<?php require_once(SMARTY_CORE_DIR . 'core.load_plugins.php');
smarty_core_load_plugins(array('plugins' => array(array('modifier', 'escape', 'game/header.tpl', 45, false),)), $this); ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="Content-Language" content="fr" />
<title> ::Halo-Battle:: - <?php echo $this->_tpl_vars['titre']; ?>
</title>
<?php if ($this->_tpl_vars['race'] == 'covenant'): ?><link rel="stylesheet" href="templates/covenants.css" type="text/css" media="all" title="Covenants" /><?php endif; ?>
<?php if ($this->_tpl_vars['race'] == 'humain'): ?><link rel="stylesheet" href="templates/csnu.css" type="text/css" media="all" title="CSNU" /><?php endif; ?>
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
<script src="js/fonctions.js" type="text/javascript"></script>
<script src="js/img_manques.js" type="text/javascript"></script>
<script src="js/infos.js" type="text/javascript"></script>
<?php echo $this->_tpl_vars['scripth']; ?>
</head>
<body onload="first(<?php echo $this->_tpl_vars['nbinfos']; ?>
);">
<div id="cornertop"></div>
<div id="all">
<div id="header">
<div id="header_link"><span id="date"><?php echo $this->_tpl_vars['date']; ?>
</span> | Vous jouez depuis <?php echo $this->_tpl_vars['tpsdejeu']; ?>
| <a href="?p=version">Version <?php echo $this->_tpl_vars['version']; ?>
</a></div><a href="<?php echo $this->_tpl_vars['link']['RSS']; ?>
" id="rss">RSS :: s'abonner</a>
<h1><a href="<?php echo $this->_tpl_vars['link']['self']; ?>
" id="img"><span></span>Halo Battle</a></h1>
<div id="buttons"><div><a href="<?php echo $this->_tpl_vars['link']['accueil']; ?>
">ACCUEIL</a></div> <div><a href="<?php echo $this->_tpl_vars['link']['jeu']; ?>
">LE JEU</a></div> <div><a href="<?php echo $this->_tpl_vars['link']['inscription']; ?>
">S'INSCRIRE</a></div> <div><a href="<?php echo $this->_tpl_vars['link']['forum']; ?>
">FORUM</a></div> <div><a href="<?php echo $this->_tpl_vars['link']['staff']; ?>
">STAFF</a></div> <div><a href="<?php echo $this->_tpl_vars['link']['faq']; ?>
">F.A.Q.</a></div></div>
<form action="#" method="post"><fieldset id="recherche"><input class="text" type="text" name="recherche" value="rechercher..." onfocus="this.value = this.value!='rechercher...'?this.value:''" onblur="this.value=this.value==''?'rechercher...':this.value" /><input value="OK" class="submit" type="submit" /><br /><a href="#">Recherche Avancée</a></fieldset></form>
</div>
<div id="annonce">
<?php $_from = $this->_tpl_vars['infos']; if (!is_array($_from) && !is_object($_from)) { settype($_from, 'array'); }if (count($_from)):
foreach ($_from as $this->_tpl_vars['key'] => $this->_tpl_vars['info']):
?>
<div id="quadri<?php echo $this->_tpl_vars['key']; ?>
" class="annonceleft"<?php if ($this->_tpl_vars['info']['color']): ?> style="color: <?php echo $this->_tpl_vars['info']['color']; ?>
;"<?php endif; ?>><?php echo $this->_tpl_vars['info']['texte']; ?>
</div>
<?php endforeach; endif; unset($_from); ?>
<span id="annonceright"><?php echo $this->_tpl_vars['count']['humains']; ?>
Marines et <?php echo $this->_tpl_vars['count']['covenants']; ?>
Covenants se battent dans <ins><?php echo $this->_tpl_vars['count']['serveurs']; ?>
galaxie<?php if ($this->_tpl_vars['count']['serveurs'] > 1): ?>s<?php endif; ?></ins></span>
</div>
<div>
<div id="menu"><div class="menu_head"></div>
<?php if ($this->_tpl_vars['page'] == 'admin'): ?> <?php if ($this->_tpl_vars['pagea'] == 'accueil'): ?><span>Accueil</span><?php else: ?><a href="<?php echo $this->_tpl_vars['menua']['accueil']; ?>
">Accueil</a><?php endif; ?><div class="space"></div>
<?php if ($this->_tpl_vars['pagea'] == 'vip'): ?><span>Vérifier IP</span><?php else: ?><a href="<?php echo $this->_tpl_vars['menua']['vip']; ?>
">Vérifier IP</a><?php endif; ?> <?php if ($this->_tpl_vars['pagea'] == 'vflottes'): ?><span>Vérifier flottes</span><?php else: ?><a href="<?php echo $this->_tpl_vars['menua']['vflottes']; ?>
">Vérifier flottes</a><?php endif; ?> <?php if ($this->_tpl_vars['pagea'] == 'vplanetes'): ?><span>Vérifier planètes</span><?php else: ?><a href="<?php echo $this->_tpl_vars['menua']['vplanetes']; ?>
">Vérifier planètes</a><?php endif; ?> <?php if ($this->_tpl_vars['pagea'] == 'vjoueurs'): ?><span>Vérifier joueurs</span><?php else: ?><a href="<?php echo $this->_tpl_vars['menua']['vjoueurs']; ?>
">Vérifier joueurs</a><?php endif; ?> <?php if ($this->_tpl_vars['pagea'] == 'valliances'): ?><span>Vérifier alliances</span><?php else: ?><a href="<?php echo $this->_tpl_vars['menua']['valliances']; ?>
">Vérifier alliances</a><?php endif; ?><div class="space"></div>
<?php if ($this->_tpl_vars['pagea'] == 'sancj'): ?><span>Sanctions joueur</span><?php else: ?><a href="<?php echo $this->_tpl_vars['menua']['sancj']; ?>
">Sanctions joueur</a><?php endif; ?> <?php if ($this->_tpl_vars['pagea'] == 'sancp'): ?><span>Sanctions planète</span><?php else: ?><a href="<?php echo $this->_tpl_vars['menua']['sancp']; ?>
">Sanctions planète</a><?php endif; ?> <?php if ($this->_tpl_vars['pagea'] == 'controle'): ?><span>Prendre le contrôle</span><?php else: ?><a href="<?php echo $this->_tpl_vars['menua']['controle']; ?>
">Prendre le contrôle</a><?php endif; ?> <?php if ($this->_tpl_vars['pagea'] == 'sjoueurs'): ?><span>Supprimer joueurs</span><?php else: ?><a href="<?php echo $this->_tpl_vars['menua']['sjoueurs']; ?>
">Supprimer joueurs</a><?php endif; ?><div class="space"></div>
<?php else: ?> <?php if ($this->_tpl_vars['page'] == 'accueil'): ?><span>Accueil</span><?php else: ?><a href="<?php echo $this->_tpl_vars['menu']['accueil']; ?>
">Accueil</a><?php endif; ?> <?php if ($this->_tpl_vars['page'] == 'batiments'): ?><span>Batiments</span><?php else: ?><a href="<?php echo $this->_tpl_vars['menu']['batiments']; ?>
">Batiments</a><?php endif; ?> <?php if ($this->_tpl_vars['page'] == 'caserne'): ?><span>Caserne</span><?php else: ?><a href="<?php echo $this->_tpl_vars['menu']['caserne']; ?>
">Caserne</a><?php endif; ?> <?php if ($this->_tpl_vars['page'] == 'chantierspatial'): ?><span>Chantier spatial</span><?php else: ?><a href="<?php echo $this->_tpl_vars['menu']['chantierspatial']; ?>
">Chantier spatial</a><?php endif; ?> <?php if ($this->_tpl_vars['page'] == 'chantierterrestre'): ?><span>Chantier terrestre</span><?php else: ?><a href="<?php echo $this->_tpl_vars['menu']['chantierterrestre']; ?>
">Chantier terrestre</a><?php endif; ?> <?php if ($this->_tpl_vars['page'] == 'defenses'): ?><span>Défenses</span><?php else: ?><a href="<?php echo $this->_tpl_vars['menu']['defenses']; ?>
">Défenses</a><?php endif; ?> <?php if ($this->_tpl_vars['page'] == 'laboratoire'): ?><span>Laboratoire</span><?php else: ?><a href="<?php echo $this->_tpl_vars['menu']['laboratoire']; ?>
">Laboratoire</a><?php endif; ?> <?php if ($this->_tpl_vars['page'] == 'arbre'): ?><span>Arbre technologique</span><?php else: ?><a href="<?php echo $this->_tpl_vars['menu']['arbre']; ?>
">Arbre technologique</a><?php endif; ?><div class="space"></div>
<?php if ($this->_tpl_vars['page'] == 'ressources'): ?><span>Ressources</span><?php else: ?><a href="<?php echo $this->_tpl_vars['menu']['ressources']; ?>
">Ressources</a><?php endif; ?> <?php if ($this->_tpl_vars['page'] == 'gestion' || $this->_tpl_vars['page'] == 'rename'): ?><span>Gestion</span><?php else: ?><a href="<?php echo $this->_tpl_vars['menu']['gestion']; ?>
">Gestion</a><?php endif; ?> <?php if ($this->_tpl_vars['page'] == 'flotte1' || $this->_tpl_vars['page'] == 'flotte2'): ?><span>Flottes</span><?php else: ?><a href="<?php echo $this->_tpl_vars['menu']['flotte']; ?>
">Flottes</a><?php endif; ?> <?php if ($this->_tpl_vars['page'] == 'armee'): ?><span>Armée</span><?php else: ?><a href="<?php echo $this->_tpl_vars['menu']['armee']; ?>
">Armée</a><?php endif; ?> <?php if ($this->_tpl_vars['page'] == 'carte'): ?><span>Carte spatiale</span><?php else: ?><a href="<?php echo $this->_tpl_vars['menu']['carte']; ?>
">Carte spatiale</a><?php endif; ?> <?php if ($this->_tpl_vars['page'] == 'options'): ?><span>Options</span><?php else: ?><a href="<?php echo $this->_tpl_vars['menu']['options']; ?>
">Options</a><?php endif; ?><div class="space"></div>
<?php if ($this->_tpl_vars['page'] == 'messagerie' || $this->_tpl_vars['page'] == 'envoyer'): ?><span>Messages et rapports</span><?php else: ?><a href="<?php echo $this->_tpl_vars['menu']['messages']; ?>
"><?php if ($this->_tpl_vars['alertMail']): ?><b>Messages et rapports (<?php echo $this->_tpl_vars['alertMail']; ?>
)</b><?php else: ?>Messages et rapports<?php endif; ?></a><?php endif; ?> <?php if ($this->_tpl_vars['page'] == 'alliance'): ?><span>Alliance</span><?php else: ?><a href="<?php echo $this->_tpl_vars['menu']['alliance']; ?>
">Alliance</a><?php endif; ?> <?php if ($this->_tpl_vars['page'] == 'classement'): ?><span>Classement</span><?php else: ?><a href="<?php echo $this->_tpl_vars['menu']['classement']; ?>
">Classement</a><?php endif; ?> <?php if ($this->_tpl_vars['page'] == 'forums'): ?><span>Forums</span><?php else: ?><a href="<?php echo $this->_tpl_vars['menu']['forums']; ?>
">Forums</a><?php endif; ?> <?php if ($this->_tpl_vars['page'] == 'bugs'): ?><span>Rapports de bug</span><?php else: ?><a href="<?php echo $this->_tpl_vars['menu']['bugs']; ?>
">Rapports de bug</a><?php endif; ?> <?php if ($this->_tpl_vars['page'] == 'faq'): ?><span>F.A.Q.</span><?php else: ?><a href="<?php echo $this->_tpl_vars['menu']['faq']; ?>
">F.A.Q.</a><?php endif; ?> <a href="<?php echo $this->_tpl_vars['menu']['deconnexion']; ?>
">Déconnexion</a><div class="space"></div>
<?php endif; ?> <div class="menu_bt"></div></div>
<?php if ($this->_tpl_vars['page'] != 'admin' && $this->_tpl_vars['page'] != 'messagerie' && $this->_tpl_vars['page'] != 'envoyer' && $this->_tpl_vars['page'] != 'bugs' && $this->_tpl_vars['page'] != 'carte' && $this->_tpl_vars['page'] != 'classement' && $this->_tpl_vars['page'] != 'options' && $this->_tpl_vars['page'] != 'vp'): ?>
<div id="corps_top">
<div class="border_top"></div>
<img src="images/planetes/<?php echo $this->_tpl_vars['planete']['image']; ?>
.jpg" width="70" height="70" alt="planète" />
<div>Bonjour, <span><?php echo $this->_tpl_vars['user']['pseudo']; ?>
.</span><br />Votre position actuelle:<br /><br /><form action="<?php echo $this->_tpl_vars['link']['changeplanete']; ?>
" method="post"><fieldset><select onchange="this.form.submit();" name="Cplanete"><?php $_from = $this->_tpl_vars['planetes']; if (!is_array($_from) && !is_object($_from)) { settype($_from, 'array'); }if (count($_from)):
foreach ($_from as $this->_tpl_vars['plan']):
?><option <?php if ($this->_tpl_vars['plan']['id'] == $this->_tpl_vars['planete']['id']): ?>selected="selected" <?php endif; ?>value="<?php echo $this->_tpl_vars['plan']['id']; ?>
"><?php echo ((is_array($_tmp=$this->_tpl_vars['plan']['nom_planete'])) ? $this->_run_mod_handler('escape', true, $_tmp, 'html') : smarty_modifier_escape($_tmp, 'html')); ?>
[<?php echo $this->_tpl_vars['plan']['galaxie']; ?>
:<?php echo $this->_tpl_vars['plan']['ss']; ?>
:<?php echo $this->_tpl_vars['plan']['position']; ?>
]</option><?php endforeach; endif; unset($_from); ?></select><noscript><div><br /><input class="submit" type="submit" value="GO" /></div></noscript></fieldset></form></div>
<div class="ressource"><span><?php echo $this->_tpl_vars['nomsressources']['3']; ?>
</span><br /><?php if ($this->_tpl_vars['alertes']['4'] == true): ?><span class="lack"><?php endif; ?><?php echo $this->_tpl_vars['alertes']['3']; ?>
<?php if ($this->_tpl_vars['alertes']['4']): ?></span><?php endif; ?></div>
<div class="ressource"><span><?php echo $this->_tpl_vars['nomsressources']['2']; ?>
</span><br /><?php if ($this->_tpl_vars['alertes']['2'] == true): ?><span class="lack"><?php endif; ?><?php echo $this->_tpl_vars['planete']['hydrogeneS']; ?>
<?php if ($this->_tpl_vars['alertes']['2']): ?></span><?php endif; ?></div>
<div class="ressource"><span><?php echo $this->_tpl_vars['nomsressources']['1']; ?>
</span><br /><?php if ($this->_tpl_vars['alertes']['1'] == true): ?><span class="lack"><?php endif; ?><?php echo $this->_tpl_vars['planete']['cristalS']; ?>
<?php if ($this->_tpl_vars['alertes']['1']): ?></span><?php endif; ?></div>
<div class="ressource"><span><?php echo $this->_tpl_vars['nomsressources']['0']; ?>
</span><br /><?php if ($this->_tpl_vars['alertes']['0'] == true): ?><span class="lack"><?php endif; ?><?php echo $this->_tpl_vars['planete']['metalS']; ?>
<?php if ($this->_tpl_vars['alertes']['0']): ?></span><?php endif; ?></div>
<div class="border_bt"></div>
</div>
<?php endif; ?>
<?php if ($this->_tpl_vars['page'] != 'admin'): ?><div><?php echo $this->_tpl_vars['pub']; ?>
</div><?php endif; ?>
<div id="corps">

View file

@ -1,80 +0,0 @@
<?php /* Smarty version 2.6.19, created on 2008-05-23 01:11:54
compiled from game/flotte1.tpl */ ?>
<?php require_once(SMARTY_CORE_DIR . 'core.load_plugins.php');
smarty_core_load_plugins(array('plugins' => array(array('modifier', 'escape', 'game/flotte1.tpl', 11, false),)), $this); ?>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/header.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>
<div class="border_top"></div>
<h2>Flottes en action</h2>
<table>
<thead>
<tr><th>Nom</th><th>Mission</th><th>Nb.vaisseau(x)</th><th>Destination</th><th>Heure d'arrivée</th><th>Retour</th><th>Heure de retour</th></tr>
</thead>
<tbody>
<?php $_from = $this->_tpl_vars['flottesEC']; if (!is_array($_from) && !is_object($_from)) { settype($_from, 'array'); }if (count($_from)):
foreach ($_from as $this->_tpl_vars['flotteEC']):
?>
<tr>
<td><a href="<?php echo $this->_tpl_vars['menu']['flotte']; ?>
&amp;n=<?php echo $this->_tpl_vars['flotteEC']['0']; ?>
"><?php echo ((is_array($_tmp=$this->_tpl_vars['flotteEC']['1'])) ? $this->_run_mod_handler('escape', true, $_tmp) : smarty_modifier_escape($_tmp)); ?>
</a></td>
<td><?php echo $this->_tpl_vars['flotteEC']['2']; ?>
</td>
<td><?php echo $this->_tpl_vars['flotteEC']['3']; ?>
</td>
<td><?php echo ((is_array($_tmp=$this->_tpl_vars['flotteEC']['4'])) ? $this->_run_mod_handler('escape', true, $_tmp) : smarty_modifier_escape($_tmp)); ?>
</td>
<td><?php echo $this->_tpl_vars['flotteEC']['5']; ?>
</td>
<td><?php echo ((is_array($_tmp=$this->_tpl_vars['flotteEC']['6'])) ? $this->_run_mod_handler('escape', true, $_tmp) : smarty_modifier_escape($_tmp)); ?>
</td>
<td><?php echo $this->_tpl_vars['flotteEC']['7']; ?>
</td>
</tr>
<?php endforeach; endif; unset($_from); ?>
</tbody>
</table>
<h2>Vaisseaux disponibles sur cette planète</h2>
<form action="<?php echo $this->_tpl_vars['menu']['flotte']; ?>
" method="post">
<table>
<thead>
<tr><th>Vaisseaux</th><th>Nombre disponible</th><th>Max</th><th>A envoyer<br />Flottes : <?php echo $this->_tpl_vars['nbflotte']; ?>
/<?php echo $this->_tpl_vars['nbflottemax']; ?>
</th></tr>
</thead>
<tfoot>
<tr><td colspan="4"><input class="button" type="button" value="Tous les vaisseaux" onclick="vaisseaux(true)" /> <input class="button" type="button" value="Aucun vaisseau" onclick="vaisseaux(false)" /></td></tr>
<tr><td colspan="4"><?php echo $this->_tpl_vars['action']; ?>
</td></tr>
</tfoot>
<tbody>
<?php $_from = $this->_tpl_vars['vaisseaux']; if (!is_array($_from) && !is_object($_from)) { settype($_from, 'array'); }if (count($_from)):
foreach ($_from as $this->_tpl_vars['vaisseau']):
?>
<tr>
<td><?php echo $this->_tpl_vars['vaisseau']['0']; ?>
</td>
<td><?php echo $this->_tpl_vars['vaisseau']['1']; ?>
<span id="v_<?php echo $this->_tpl_vars['vaisseau']['3']; ?>
" style="display: none;"><?php echo $this->_tpl_vars['vaisseau']['2']; ?>
</span></td>
<td><input class="button" type="button" value="Max" onclick="max('<?php echo $this->_tpl_vars['vaisseau']['3']; ?>
')" /></td>
<td><input class="text" type="text" name="v<?php echo $this->_tpl_vars['vaisseau']['3']; ?>
" value="0" /></td>
</tr>
<?php endforeach; endif; unset($_from); ?>
</tbody>
</table>
</form>
<div class="border_bt"></div>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/footer.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>

View file

@ -1,59 +0,0 @@
<?php /* Smarty version 2.6.19, created on 2008-05-20 00:01:48
compiled from game/messagerie.tpl */ ?>
<?php require_once(SMARTY_CORE_DIR . 'core.load_plugins.php');
smarty_core_load_plugins(array('plugins' => array(array('modifier', 'nl2br', 'game/messagerie.tpl', 9, false),)), $this); ?>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/header.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>
<div class="border_top"></div>
<h2>Messages</h2>
<?php echo $this->_tpl_vars['avertissement']; ?>
<h3><a href="<?php echo $this->_tpl_vars['menu']['envoie']; ?>
">Ecrire un message</a></h3>
<form action="<?php echo $this->_tpl_vars['menu']['messagerie']; ?>
" method="post">
<?php $_from = $this->_tpl_vars['messages']; if (!is_array($_from) && !is_object($_from)) { settype($_from, 'array'); }if (count($_from)):
foreach ($_from as $this->_tpl_vars['message']):
?>
<dl>
<dt><input class="button2" type="button" onclick="hide(this); return false;" /><input class="checkbox" type="checkbox" name="m<?php echo $this->_tpl_vars['message']['4']; ?>
" value="<?php echo $this->_tpl_vars['message']['5']; ?>
" /><a href="?p=envoyer&amp;d=<?php echo $this->_tpl_vars['message']['2']; ?>
&amp;o=<?php echo $this->_tpl_vars['message']['0']; ?>
"><?php echo $this->_tpl_vars['message']['0']; ?>
</a> de <?php echo $this->_tpl_vars['message']['2']; ?>
à <?php echo $this->_tpl_vars['message']['1']; ?>
</dt><dd><?php echo ((is_array($_tmp=$this->_tpl_vars['message']['3'])) ? $this->_run_mod_handler('nl2br', true, $_tmp) : smarty_modifier_nl2br($_tmp)); ?>
</dd>
</dl>
<?php endforeach; endif; unset($_from); ?>
<fieldset><input class="button" type="button" value="Tout sélectionner" onclick="checkboxes(true)" /> <input class="button" type="button" value="Tout déselectionner" onclick="checkboxes(false)" /><br /><br /><strong>Supprimer le sélection : </strong><input class="submit" type="submit" value="OK" /><br /><br /><input type="hidden" value="<?php echo $this->_tpl_vars['IM']; ?>
" name="IM" /></fieldset>
</form>
<h2>Rapports</h2>
<form action="<?php echo $this->_tpl_vars['menu']['messagerie']; ?>
" method="post">
<?php $_from = $this->_tpl_vars['rapports']; if (!is_array($_from) && !is_object($_from)) { settype($_from, 'array'); }if (count($_from)):
foreach ($_from as $this->_tpl_vars['rapport']):
?>
<dl>
<dt><input class="button2" type="button" onclick="hide(this); return false;" /><input class="checkbox" type="checkbox" name="r<?php echo $this->_tpl_vars['rapport']['4']; ?>
" value="<?php echo $this->_tpl_vars['rapport']['5']; ?>
" /><?php echo $this->_tpl_vars['rapport']['0']; ?>
à <?php echo $this->_tpl_vars['rapport']['1']; ?>
</dt><dd><?php echo ((is_array($_tmp=$this->_tpl_vars['rapport']['3'])) ? $this->_run_mod_handler('nl2br', true, $_tmp) : smarty_modifier_nl2br($_tmp)); ?>
</dd>
</dl>
<?php endforeach; endif; unset($_from); ?>
<fieldset><input class="button" type="button" value="Tout sélectionner" onclick="checkboxesr(true)" /> <input class="button" type="button" value="Tout déselectionner" onclick="checkboxesr(false)" /><br /><br /><strong>Supprimer le sélection : </strong><input class="submit" type="submit" value="OK" /><br /><br /><input type="hidden" value="<?php echo $this->_tpl_vars['IR']; ?>
" name="IR" /></fieldset>
</form>
<div class="border_bt"></div>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/footer.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>

View file

@ -1,25 +0,0 @@
<?php /* Smarty version 2.6.19, created on 2008-05-18 00:26:43
compiled from game/version.tpl */ ?>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/header.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>
<div class="border_top"></div>
<h2>Mises à jour</h2>
<table><thead><tr><th>Versions</th><th>Détails</th></tr></thead><tbody>
<?php $_from = $this->_tpl_vars['versions']; if (!is_array($_from) && !is_object($_from)) { settype($_from, 'array'); }if (count($_from)):
foreach ($_from as $this->_tpl_vars['version']):
?>
<tr><td><?php echo $this->_tpl_vars['version']['numero']; ?>
<br /><?php echo $this->_tpl_vars['version']['date']; ?>
</td><td><?php echo $this->_tpl_vars['version']['description']; ?>
</td></tr>
<?php endforeach; endif; unset($_from); ?>
</tbody></table>
<div class="border_bt"></div>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'game/footer.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>

View file

@ -7,11 +7,11 @@ if (!isset($technolo)) {
* Défenses
*/
//Attaque
$defense_at = array(10,20,30,40,50);
//Coque (pv)
$defense_pv = array(20,60,50,10,100);
$defense_at = array(10,35,70,250,50);
//D&eacute;fense (bouclier)
$defense_bc = array(20,60,100,1,100);
$defense_bc = array(0,15,30,35,100);
//Coque (pv)
$defense_pv = array(15,45,45,240,100);
//Débris de métal
$defense_md = array(300,300,300,300,300);
@ -29,7 +29,7 @@ if (!isset($technolo)) {
* Vaisseaux
*/
//Nombre maximal de ressources embarqu&eacute;
$nomvais_rs = array(5000,25000,7500,10,20000,50,800,1500,3000,10000,0,30000);
$nomvais_rs = array(5000,25000,7500,10,20000,50,300,4000,3000,10000,0,30000);
//Coefficient vitesse courte distance : temps pour parcourir un syst&egrave;me
$nomvais_dc = array(108,108,108,25,108,108,108,108,108,108,108,108);
@ -43,11 +43,11 @@ if (!isset($technolo)) {
$nomvais_cdl = array(0,20,20,0,20,0,0,20,20,20,0,20);
//Attaque
$nomvais_at = array(10,5,10,0.5,20,30,300,1500,1600,2400,4500,4000);
//Coque (pv)
$nomvais_pv = array(40,80,400,1,300,10,350,500,1500,2000,5000,5000);
$nomvais_at = array(10,5,10,0.5,20,30,70,400,1600,2400,4500,4000);
//D&eacute;fense (bouclier)
$nomvais_bc = array(20,40,500,1,1200,5,200,800,1000,2400,4000,3600);
$nomvais_bc = array(0,40,500,1,1200,0,10,70,1000,2400,4000,3600);
//Coque (pv)
$nomvais_pv = array(40,80,400,1,300,40,90,450,1500,2000,5000,5000);
//Débris de métal
$nomvais_md = array(300,300,300,300,300,300,300,300,300,300,300,36000);
//Débris de cristal
@ -326,27 +326,27 @@ $nomterrnCALC = array(
'$sec = ceil(4680/pow(1.25,($queryPlanete["chantier_terrestre"]-5)));'
),
array(
500,
200,
430,
230,
0,
'$sec = ceil(1080/pow(1.25,($queryPlanete["chantier_terrestre"]-1)));'
),
array(
4000,
2000,
0,
1250,
650,
80,
'$sec = ceil(2040/pow(1.25,($queryPlanete["chantier_terrestre"]-3)));'
),
array(
4500,
80,
60,
2500,
1750,
100,
'$sec = ceil(7200/pow(1.25,($queryPlanete["chantier_terrestre"]-4)));'
),
array(
12000,
10000,
1000,
6000,
3750,
120,
'$sec = ceil(3960/pow(1.25,($queryPlanete["chantier_terrestre"]-7)));'
),
array(
@ -442,21 +442,21 @@ $nomvaisnCALC = array(
'$sec = ceil(7380/pow(1.25,($queryPlanete["chantier_spatial"]-5)));'
),
array(
1700,
1220,
1800,
1000,
0,
'$sec = ceil(1200/pow(1.25,($queryPlanete["chantier_spatial"]-1)));'
),
array(
5800,
1400,
0,
2550,
1350,
65,
'$sec = ceil(4680/pow(1.25,($queryPlanete["chantier_spatial"]-3)));'
),
array(
20000,
16000,
1600,
12950,
6900,
100,
'$sec = ceil(16800/pow(1.25,($queryPlanete["chantier_spatial"]-6)));'
),
array(