<!--xoopsCode start--> <script type="text/javascript"> <!--// function xoopsCodeUrl(id){ 	var text = prompt("Entrez l'URL du site que vous voulez ajouter:", ""); 	var dom = xoopsGetElementById(id); 	if ( text != null && text != "" ) { 		var text2 = prompt("Entrez le titre du Site:", ""); 		if ( text2 != null ) { 			if ( text2 == "" ) { 				var result = "[url=" + text + "]" + text + "[/url]"; 			} else { 				var pos = text2.indexOf(unescape('%00')); 				if(0 <= pos){ 					text2 = text2.substr(0,pos); 				} 				var result = "[url=" + text + "]" + text2 + "[/url]"; 			} 			dom.value += result; 		} 	} 	dom.focus(); }  function xoopsCodeImg(id){ 	var text = prompt("Entrez l'URL de l'image que vous vouez ajouter.", ""); 	var dom = xoopsGetElementById(id); 	if ( text != null && text != "" ) { 		var text2 = prompt("Maintenant, entrez la position de l'image.\n'R' or 'r' pour droite, 'L' or 'l' pour gauche, ou laisser vide.", ""); 		while ( ( text2 != "" ) && ( text2 != "r" ) && ( text2 != "R" ) && ( text2 != "l" ) && ( text2 != "L" ) && ( text2 != null ) ) { 			text2 = prompt("ERREUR! Entrez la position de l'image.\n'R' or 'r' pour droite, 'L' or 'l' pour gauche, ou laisser vide.","");            		} 		if ( text2 == "l" || text2 == "L" ) {  			text2 = " align=left"; 		} else if ( text2 == "r" || text2 == "R" ) { 			text2 = " align=right"; 		} else { 			text2 = ""; 		} 		var result = "[img" + text2 + "]" + text + "[/img]"; 		var dom = xoopsGetElementById(id); 		dom.value += result; 	} 	dom.focus(); }  function xoopsCodeEmail(id){ 	var text = prompt("Entrez l'adresse email que vous voulez ajouter.", ""); 	var dom = xoopsGetElementById(id); 	if ( text != null && text != "" ) { 		var result = "[email]" + text + "[/email]"; 		dom.value += result; 	} 	dom.focus(); }  function xoopsCodeQuote(id){ 	var text = prompt("Entrez le texte que vous voulez citer.", ""); 	var dom = xoopsGetElementById(id); 	if ( text != null && text != "" ) { 		var pos = text.indexOf(unescape('%00')); 		if(0 <= pos){ 			text = text.substr(0,pos); 		} 		var result = "[quote]" + text + "[/quote]"; 		dom.value += result; 	} 	dom.focus(); }  function xoopsCodeText(id){ 	var textareaDom = xoopsGetElementById(id); 	var textDom = xoopsGetElementById(id + "Addtext"); 	var fontDom = xoopsGetElementById(id + "Font"); 	var colorDom = xoopsGetElementById(id + "Color"); 	var sizeDom = xoopsGetElementById(id + "Size"); 	var hiddenTextDomStyle = xoopsGetElementById("hiddenText").style; 	var textDomValue = textDom.value; 	var fontDomValue = fontDom.options[fontDom.options.selectedIndex].value; 	var colorDomValue = colorDom.options[colorDom.options.selectedIndex].value; 	var sizeDomValue = sizeDom.options[sizeDom.options.selectedIndex].value; 	if ( textDomValue == "" ) { 		alert("SVP Insrez le trxte dans la boite de dialogue."); 		textDom.focus(); 	} else { 		if ( fontDomValue != "FONT") { 			textDomValue = "[font=" + fontDomValue + "]" + textDomValue + "[/font]"; 			fontDom.options[0].selected = true; 		} 		if ( colorDomValue != "COLOR") { 			textDomValue = "[color=" + colorDomValue + "]" + textDomValue + "[/color]"; 			colorDom.options[0].selected = true; 		} 		if ( sizeDomValue != "SIZE") { 			textDomValue = "[size=" + sizeDomValue + "]" + textDomValue + "[/size]"; 			sizeDom.options[0].selected = true; 		} 		if ( xoopsGetElementById(id + "Bold").checked == true ) { 			textDomValue = "[b]" + textDomValue + "[/b]"; 			xoopsGetElementById(id + "Bold").checked = false; 		} 		if ( xoopsGetElementById(id + "Italic").checked == true ) { 			textDomValue = "[i]" + textDomValue + "[/i]"; 			xoopsGetElementById(id + "Italic").checked = false; 		} 		if ( xoopsGetElementById(id + "Underline").checked == true ) { 			textDomValue = "[u]" + textDomValue + "[/u]"; 			xoopsGetElementById(id + "Underline").checked = false; 		} 		textareaDom.value += textDomValue; 		textDom.value = ""; 		hiddenTextDomStyle.color = "#000000"; 		hiddenTextDomStyle.fontFamily = ""; 		hiddenTextDomStyle.fontStyle = "normal"; 		hiddenTextDomStyle.fontSize = "12px"; 		hiddenTextDomStyle.fontWeight = "normal"; 		hiddenTextDomStyle.textDecoration = "none"; 		hiddenTextDomStyle.visibility = "hidden"; 		textareaDom.focus(); 	} }  function xoopsCodeSmilie(id, smilieCode) { 	var revisedMessage; 	var textareaDom = xoopsGetElementById(id); 	revisedMessage = textareaDom.value + smilieCode; 	textareaDom.value = revisedMessage; 	textareaDom.focus(); 	return; }  function xoopsValidate(subjectId, textareaId, submitId) { 	var maxchars = 65535; 	var subjectDom = xoopsGetElementById(subjectId); 	var textareaDom = xoopsGetElementById(textareaId); 	var submitDom = xoopsGetElementById(submitId); 	if (textareaDom.value == "" || subjectDom.value == "") { 		alert("SVP Renseinez les champs message et sujet."); 		return false; 	} 	if (maxchars != 0) { 		if (textareaDom.value.length > maxchars) { 			alert("Votre mesage est trop long.\n\nLongueur autorise (en caractres): " + maxchars + "\nLongueur actuelle: " + textareaDom.value.length + ""); 			textareaDom.focus(); 			return false; 		} else { 			submitDom.disabled = true; 			return true;  		} 	} else { 		submitDom.disabled = true; 		return true; 	}     }   //--></script> <!--xoopsCode end-->  <html> <head> <meta http-equiv='Content-Type' content='text/html; charset=ISO-8859-1' /> <meta name='author' content='DameCraft' /> <meta name='copyright' content='Copyright (c) 2002 by DameCraft' /> <meta name='keywords' content='news, News, new, New, articles, Articles, article, Article, Starcraft, starcraft, Broodwar, broodwar, StarEdit, Staredit, staredit, stratgies, Stratgies, stratgie, Stratgie, strategies, Strategies, strategie, Strategie, Tlchargements, tlchargements, Tlchargement, tlchargement, Telechargements, telechargements, Telechargement, telechargement, Maps, maps, Map, map, Scums, scums, Scum, scum, replays, Replays, replay, Replay, LaDameBlanche, ladameblanche, la dame blanche, La Dame Blanche, warcraft, Warcraft, age of empires, jeux, sierra on-line, red alert, starcraft, warcraft, yong park, tim cain, alerte rouge, leonard boyarsky, sharon shellman, mark harrison, chris jones, jesse reynolds, jason anderson , troika games, jason alexander, sierra studios, chad moore, role playing game, Warcraft, Starcraft, Blizzard, BattleNet, B.Net, Battle, Net, Strategie, Stratgie, Wargame, Editeur, Campagnes, orc, humain, elf, morts-vivants, Fanfic, Forum, Chat, portail, fansite, terran, zerg, protoss, staredit, waredit, rpg, diablo, wow, world' /> <meta name='description' content='The site de rfrence sur Starcraft/Broodwar !' /> <meta name='generator' content='XOOPS 1.3.8' />  <title>DameCraft</title> <script type='text/javascript'> <!-- function xoopsGetElementById(id){ 	if (document.getElementById) { 		return (document.getElementById(id)); 	} else if (document.all) { 		return (document.all[id]); 	} else { 		if ((navigator.appname.indexOf("Netscape") != -1) && parseInt(navigator.appversion == 4)) { 			return (document.layers[id]); 		} 	} }  function showImgSelected(imgId, selectId, imgDir) { 	imgDom = xoopsGetElementById(imgId); 	selectDom = xoopsGetElementById(selectId); 	imgDom.src = "http://damecraft.starcraft-fr.com/"+ imgDir + "/" + selectDom.options[selectDom.selectedIndex].value; }  function justReturn() { 	return; }  function init() {  }  function openWithSelfMain(url,name,width,height){ 	var options = "width=" + width + ",height=" + height + "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no"; 	new_window = window.open(url, name, options); 	window.self.name = "main"; 	new_window.focus(); }  function setElementColor(id, color){ 	xoopsGetElementById(id).style.color = "#" + color; }  function setElementFont(id, font){ 	xoopsGetElementById(id).style.fontFamily = font; }  function setElementSize(id, size){ 	xoopsGetElementById(id).style.fontSize = size; }  function changeDisplay(id){ 	var elestyle = xoopsGetElementById(id).style; 	if (elestyle.display == "") { 		elestyle.display = "none"; 	} else { 		elestyle.display = "block"; 	} }  function setVisible(id){ 	xoopsGetElementById(id).style.visibility = "visible"; }  function setHidden(id){ 	xoopsGetElementById(id).style.visibility = "hidden"; }  function makeBold(id){ 	var eleStyle = xoopsGetElementById(id).style; 	if (eleStyle.fontWeight != "bold") { 		eleStyle.fontWeight = "bold"; 	} else { 		eleStyle.fontWeight = "normal"; 	} }  function makeItalic(id){ 	var eleStyle = xoopsGetElementById(id).style; 	if (eleStyle.fontStyle != "italic") { 		eleStyle.fontStyle = "italic"; 	} else { 		eleStyle.fontStyle = "normal"; 	} }  function makeUnderline(id){ 	var eleStyle = xoopsGetElementById(id).style; 	if (eleStyle.textDecoration != "underline") { 		eleStyle.textDecoration = "underline"; 	} else { 		eleStyle.textDecoration = "none"; 	} }  function appendSelectOption(selectMenuId, optionName, optionValue){ 	var selectMenu = xoopsGetElementById(selectMenuId); 	var newoption = new Option(optionName, optionValue); 	selectMenu.options[selectMenu.length] = newoption; 	selectMenu.options[selectMenu.length].selected = true; }  function disableElement(target){ 	var targetDom = xoopsGetElementById(target); 	if (targetDom.disabled != true) { 		targetDom.disabled = true; 	} else { 		targetDom.disabled = false; 	} } function xoopsCheckAll(formname, switchid) { 	var ele = document.forms[formname].elements; 	var switch_cbox = xoopsGetElementById(switchid); 	for (var i = 0; i < ele.length; i++) { 		var e = ele[i]; 		if ( (e.name != switch_cbox.name) && (e.type == 'checkbox') ) { 			e.checked = switch_cbox.checked; 		} 	} }   window.onload=init; //--> </script> <link rel='stylesheet' type='text/css' media='all' href='http://damecraft.starcraft-fr.com/xoops.css' /> <style type='text/css' media='all'><!-- @import url(http://damecraft.starcraft-fr.com/themes/damecraft/style/style.css); --></style>  </head><body> <div id='waitDiv' style='position:absolute;left:40%;top:50%;visibility:hidden;text-align: center;'><table cellpadding='6' border='2' class='bg2'><tr><td align='center'><b><big>Chargement...</big></b><br /><img src='http://damecraft.starcraft-fr.com/images/await.gif' alt='' /><br />Patientez SVP</td></tr></table></div><script type='text/javascript'> <!--  	var DHTML = (document.getElementById || document.all || document.layers); function ap_getObj(name) { if (document.getElementById) { return document.getElementById(name).style; } else if (document.all) { return document.all[name].style; } else if (document.layers) { return document.layers[name]; } } function ap_showWaitMessage(div,flag)  { if (!DHTML) return; var x = ap_getObj(div); x.visibility = (flag) ? 'visible':'hidden' if(! document.getElementById) if(document.layers) x.left=280/2; return true; } ap_showWaitMessage('waitDiv', 1);   //--> </script><table summary='themeheader1' border='0' cellpadding='0' cellspacing='0' class='toptable'><tr align='center'><td valign='center' class='top'><a href='http://damecraft.starcraft-fr.com/modules/news/'><img src='http://damecraft.starcraft-fr.com/themes/damecraft/images/logo.gif' align='center' alt='Pour accder au forum officiel de DameCraft cliquez ici...' /></a></tr><a name='hdt'></td></tr></table><table border='0' cellpadding='0' cellspacing='0' class='table'><tr><td class='sidebar1' valign='top'><table summary='sidebox' border='0' cellpadding='0' cellspacing='0' class='tablesidbox'><tr><td><div class='sidboxtitle'>Connexion</div></td></tr><tr><td class='sideboxcontent'><div align='center'><p><form action='http://damecraft.starcraft-fr.com/user.php' method='post'>Pseudo<br /><input type='text' name='uname' size='12' maxlength='25' /><br />Mot de Passe<br /><input type='password' name='pass' size='12' maxlength='20' /><br /><input type='hidden' name='op' value='login' /><input type='submit' value='Connexion' /></form></p><a href='http://damecraft.starcraft-fr.com/user.php#lost'>Mot de Passe perdu?</a><br /><br />Pas encore Membre?<br /> <a href='http://damecraft.starcraft-fr.com/register.php'>Inscrivez-vous!</a></div></td></tr></table><table summary='sidebox' border='0' cellpadding='0' cellspacing='0' class='tablesidbox'><tr><td><div class='sidboxtitle'>Menu</div></td></tr><tr><td class='sideboxcontent'><b><a href="http://damecraft.starcraft-fr.com/modules/news/">Accueil</a><br /><a href="http://damecraft.starcraft-fr.com/modules/news/archive.php">Archives</a><br /><a href="http://damecraft.starcraft-fr.com/modules/newbb/">Forums</a><br /><br /><a href="http://damecraft.starcraft-fr.com/modules/xoopsfaq/index.php?cat_id=2#12">Charte du site</a><br /><br /><a href="http://damecraft.starcraft-fr.com/modules/nsections/">Dossiers/Stratgies</a></b><br /><i>- <a href="http://damecraft.starcraft-fr.com/modules/nsections/index.php?op=listarticles&secid=1">Battle.net</a><br />- <a href="http://damecraft.starcraft-fr.com/modules/nsections/index.php?op=listarticles&secid=2">StarEdit</a><br />- <a href="http://damecraft.starcraft-fr.com/modules/nsections/index.php?op=listarticles&secid=5">WorldEdit</a><br />- <a href="http://damecraft.starcraft-fr.com/modules/nsections/index.php?op=listarticles&secid=3">Stratgies Starcraft</a><br />- <a href="http://damecraft.starcraft-fr.com/modules/nsections/index.php?op=listarticles&secid=4">Stratgies WarCraft</a></i><br />- <a href="http://damecraft.starcraft-fr.com/modules/nsections/index.php?op=listarticles&secid=6">Divers</a><br />- <a href="http://damecraft.starcraft-fr.com/modules/nsections/index.php?op=listarticles&secid=7">Fanfics</a></i><br /><br /><b><a href="http://damecraft.starcraft-fr.com/modules/xgallery/">Gallerie d'images</a></b><br />- <i><a href="http://damecraft.starcraft-fr.com/modules/xgallery/view_album.php?set_albumName=scbw">Starcraft/Broodwar</a><br />- <a href="http://damecraft.starcraft-fr.com/modules/xgallery/view_album.php?set_albumName=scg">Starcraft : Ghost</a><br />- <a href="http://damecraft.starcraft-fr.com/modules/xgallery/view_album.php?set_albumName=war3">WarCraft 3</a><br />- <a href="http://damecraft.starcraft-fr.com/modules/xgallery/view_album.php?set_albumName=the_frozen_throne">The Frozen Throne</a><br />- <a href="http://damecraft.starcraft-fr.com/modules/xgallery/view_album.php?set_albumName=wow">World of Warcraft</a></i><br /><br /><b><a href="http://damecraft.starcraft-fr.com/modules/mydownloads/">Downloads</a></b><br /><i>- <a href="http://damecraft.starcraft-fr.com/modules/mydownloads/viewcat.php?cid=4">Maps</a><br />- <a href="http://damecraft.starcraft-fr.com/modules/mydownloads/viewcat.php?cid=14">Replays</a><br />- <a href="http://damecraft.starcraft-fr.com/modules/mydownloads/viewcat.php?cid=1">Divers</a><br />- <a href="http://damecraft.starcraft-fr.com/modules/mydownloads/topten.php?hit=1">Les plus tlchargs</a></i><br /><br /><b><a href="http://damecraft.starcraft-fr.com/modules/xoopsfaq/">FAQ</a><br /><a href="http://damecraft.starcraft-fr.com/modules/xoopspoll/">Sondages</a> <br /><a href="http://damecraft.starcraft-fr.com/modules/mylinks/">Liens</a><br /><a href="http://damecraft.starcraft-fr.com/modules/contact/">Nous Contacter</a><br /><a href="http://damecraft.starcraft-fr.com/modules/xtremguestbook/">Livre D'or</a><br /><a href="http://damecraft.starcraft-fr.com/modules/xoopsmembers/">Liste des membres</a></b></td></tr></table><table summary='sidebox' border='0' cellpadding='0' cellspacing='0' class='tablesidbox'><tr><td><div class='sidboxtitle'>Partenaires</div></td></tr><tr><td class='sideboxcontent'><p><br> - <a href="http://www.strangewc.com" target="_blank">Strange War City Gnrations</a><br> - <a href="http://clanfds.starcraft-fr.com" target="_blank">Clan Fils de Shakuras</a><br> - <a href="http://www.starchaos.fr.st" target="_blank">Starcraft CHAOS</a><br> - <a href="http://www.infos-du-net.com/" target="_blank">Infos Du Net</a><br> - <a href="http://www.fannzic.net" target="_blank">FannZic.Net</a><br> - <a href="http://www.starmuseum.fr.st/" target="_blank">StarMuseum</a><br> - <a href="http://uragon.warparadise.com/" target="_blank">Uragon</a></p><div align="center"><a href='http://damecraft.starcraft-fr.com/modules/partners/index.php?op=click&id=3' target='_blank'><img src='http://topsite.strangewc.com/btop.gif' border='0' /></a><br /> <br /> <a href='http://damecraft.starcraft-fr.com/modules/partners/index.php?op=click&id=4' target='_blank'><img src='http://damecraft.starcraft-fr.com/logoGU.gif' border='0' /></a><br /> <br /> <a href='http://damecraft.starcraft-fr.com/modules/partners/index.php?op=click&id=5' target='_blank'><img src='http://loga.hit-parade.com/logohp1.gif?site=a230838' border='0' /></a><br /> <br /> <a href='http://damecraft.starcraft-fr.com/modules/partners/index.php?op=click&id=8' target='_blank'><img src='http://clanseigneur.starcraft-fr.com/botsc.jpg' border='0' /></a><br /> <br /> <a href='http://damecraft.starcraft-fr.com/modules/partners/index.php?op=click&id=11' target='_blank'><img src='http://damecraft.starcraft-fr.com/modules/partners/top100star.jpg' border='0' /></a><br /> <br /> <a href='http://damecraft.starcraft-fr.com/modules/partners/index.php?op=click&id=12' target='_blank'><img src='http://damecraft.starcraft-fr.com/modules/partners/top100war.jpg' border='0' /></a><br /> <br /> <a href='http://damecraft.starcraft-fr.com/modules/partners/index.php?op=click&id=13' target='_blank'><img src='http://site.voila.fr/averipman/tinnyban.jpg' border='0' /></a><br /> <br /> <a href='http://damecraft.starcraft-fr.com/modules/partners/index.php?op=click&id=14' target='_blank'><img src='http://www.ifrance.com/jeuxvideowarrior/logo.jpg' border='0' /></a><br /> <br /> </div></td></tr></table><table summary='sidebox' border='0' cellpadding='0' cellspacing='0' class='tablesidbox'><tr><td><div class='sidboxtitle'>Equipe du site</div></td></tr><tr><td class='sideboxcontent'><p><br><div style='text-align: center;'><table width='92%' border='0' cellspacing='1' cellpadding='0' class='bg2'><tr><td> <table width='100%' border='0' cellspacing='1' cellpadding='8' class='bg1'><tr><td> <tr><td colspan="2"><small><b>Admin</b></small></td></tr><tr><td width=80%><small><a href="http://damecraft.starcraft-fr.com/userinfo.php?uid=1">LaDameBlanche</a></small></td><td width=20% align=right><a href="mailto:ladameblanche@strangewc.com"><img src="http://damecraft.starcraft-fr.com/images/icons/em_small.gif" border="0" width="16" height="14" alt="Envoyer Mail  LaDameBlanche" /></a> </td></tr><tr><td width=80%><small><a href="http://damecraft.starcraft-fr.com/userinfo.php?uid=20">Rendar</a></small></td><td width=20% align=right><a href="mailto:rendar@strangewc.com"><img src="http://damecraft.starcraft-fr.com/images/icons/em_small.gif" border="0" width="16" height="14" alt="Envoyer Mail  Rendar" /></a> </td></tr><tr><td colspan="2"><small><b>Modo</b></small></td></tr><tr><td width=80%><small><a href="http://damecraft.starcraft-fr.com/userinfo.php?uid=81">Rapidus</a></small></td><td width=20% align=right><a href="mailto:genie_o@hotmail.com"><img src="http://damecraft.starcraft-fr.com/images/icons/em_small.gif" border="0" width="16" height="14" alt="Envoyer Mail  Rapidus" /></a> </td></tr><tr><td width=80%><small><a href="http://damecraft.starcraft-fr.com/userinfo.php?uid=123">Reav</a></small></td><td width=20% align=right><a href="mailto:clanfds@hotmail.com"><img src="http://damecraft.starcraft-fr.com/images/icons/em_small.gif" border="0" width="16" height="14" alt="Envoyer Mail  Reav" /></a> </td></tr><tr><td width=80%><small><a href="http://damecraft.starcraft-fr.com/userinfo.php?uid=153">Kevthunder</a></small></td><td width=20% align=right><a href="mailto:Kev_gig@hotmail.com"><img src="http://damecraft.starcraft-fr.com/images/icons/em_small.gif" border="0" width="16" height="14" alt="Envoyer Mail  Kevthunder" /></a> </td></tr><tr><td width=80%><small><a href="http://damecraft.starcraft-fr.com/userinfo.php?uid=156">Obi-Wan</a></small></td><td width=20% align=right><a href="mailto:francoiscote85@hotmail.com"><img src="http://damecraft.starcraft-fr.com/images/icons/em_small.gif" border="0" width="16" height="14" alt="Envoyer Mail  Obi-Wan" /></a> </td></tr><tr><td colspan="2"><small><b>Modo en entranement</b></small></td></tr><tr><td width=80%><small><a href="http://damecraft.starcraft-fr.com/userinfo.php?uid=10">Averipman</a></small></td><td width=20% align=right><a href="mailto:insgadget26@hotmail.com"><img src="http://damecraft.starcraft-fr.com/images/icons/em_small.gif" border="0" width="16" height="14" alt="Envoyer Mail  Averipman" /></a> </td></tr></table></td></tr></table><br /><img src='http://damecraft.starcraft-fr.com/images/s_poweredby.gif' alt='DameCraft' border='0' /><p class='ahem'><small>This site will look MUCH better in a browser that supports <a title='The Web Standards Project&apos;s BROWSER UPGRADE initiative.' href='http://www.webstandards.org/upgrade/'>web standards</a>, but its content is accessible to any browser or Internet device.</small></p></div></td></tr></table><table summary='sidebox' border='0' cellpadding='0' cellspacing='0' class='tablesidbox'><tr><td><div class='sidboxtitle'>Derniers commentaires</div></td></tr><tr><td class='sideboxcontent'><div align="center"><font size="1">Derniers commentaire est de :<br><b><A HREF="http://damecraft.starcraft-fr.com/userinfo.php?uid=219">Only4Fun</A></b><br><br></div><img src="http://damecraft.starcraft-fr.com/modules/i-Blocks/images/LastxComments/bullet.gif"> <a  href="http://damecraft.starcraft-fr.com/modules/news/article.php?mode=flat&order=0&storyid=263#806" title="Re: Ptits truc pour gerer Zerg...">Puis je vien de lir...</a></div><img src="http://damecraft.starcraft-fr.com/modules/i-Blocks/images/LastxComments/bullet.gif"> <a  href="http://damecraft.starcraft-fr.com/modules/news/article.php?mode=flat&order=0&storyid=263#805" title="Re: Ptits truc pour gerer Zerg...">jai pas besoi de ma...</a></div><img src="http://damecraft.starcraft-fr.com/modules/i-Blocks/images/LastxComments/bullet.gif"> <a  href="http://damecraft.starcraft-fr.com/modules/news/article.php?mode=flat&order=0&storyid=263#804" title="Re: Ptits truc pour gerer Zerg...">Mais autre chose......</a></div><img src="http://damecraft.starcraft-fr.com/modules/i-Blocks/images/LastxComments/bullet.gif"> <a  href="http://damecraft.starcraft-fr.com/modules/news/article.php?mode=flat&order=0&storyid=263#803" title="Re: Ptits truc pour gerer Zerg...">deja jai meme pas b...</a></div><img src="http://damecraft.starcraft-fr.com/modules/i-Blocks/images/LastxComments/bullet.gif"> <a  href="http://damecraft.starcraft-fr.com/modules/news/article.php?mode=flat&order=0&storyid=263#802" title="Re: Ptits truc pour gerer Zerg...">Mais autre point qu...</a></div><img src="http://damecraft.starcraft-fr.com/modules/i-Blocks/images/LastxComments/bullet.gif"> <a  href="http://damecraft.starcraft-fr.com/modules/news/article.php?mode=flat&order=0&storyid=263#801" title="Re: Ptits truc pour gerer Zerg...">je peut te prouver ...</a></div><img src="http://damecraft.starcraft-fr.com/modules/i-Blocks/images/LastxComments/bullet.gif"> <a  href="http://damecraft.starcraft-fr.com/modules/news/article.php?mode=flat&order=0&storyid=263#800" title="Re: Ptits truc pour gerer Zerg...">Tu saura phoenix qu...</a></div><img src="http://damecraft.starcraft-fr.com/modules/i-Blocks/images/LastxComments/bullet.gif"> <a  href="http://damecraft.starcraft-fr.com/modules/news/article.php?mode=flat&order=0&storyid=263#799" title="Re: Ptits truc pour gerer Zerg...">Mais ce qui arrive ...</a></div><img src="http://damecraft.starcraft-fr.com/modules/i-Blocks/images/LastxComments/bullet.gif"> <a  href="http://damecraft.starcraft-fr.com/modules/news/article.php?mode=flat&order=0&storyid=263#798" title="Re: Ptits truc pour gerer Zerg...">ben on se rjouit d...</a></div><img src="http://damecraft.starcraft-fr.com/modules/i-Blocks/images/LastxComments/bullet.gif"> <a  href="http://damecraft.starcraft-fr.com/modules/news/article.php?mode=flat&order=0&storyid=263#797" title="Re: Ptits truc pour gerer Zerg...">bein blast ces auss...</a></div></td></tr></table></td><td class='leftmb'>&nbsp;</td><td class='newstd'><table summary='OpenTableborder' width='100%' border='0' cellspacing='4' cellpadding='0' class='bg4'><tr><td valign='top'> <table width='100%' border='0' cellspacing='1' cellpadding='8' class='bg1'><tr><td valign='top'>  <font class='title'>Au champs d&#039;honneur ( chapitre 1er )</font><br /> <font class='tiny'> Publi&eacute; par&nbsp;: <a href='http://damecraft.starcraft-fr.com/userinfo.php?uid=20'>Rendar</a> , Le&nbsp;: Jan-09-2003 </font> <br /><br />Chapitre 1er : La loi<br /><br /><br />	De toute sa longue de delfe, il navait jamais vu pareille dsolation. Cadavres gorgs, dcapits gisant partout dans la ville. Triste rsultat de la colre du Roi Liche. En entrant dans une maison dont la porte avait t arrache, il eut soudain un atroce envie de vomir. Sur la table, le corps dun homme compltement viscr gisait. Plus loin dans les chambres, les restes des enfants taient parpills un peu partout. Un horrible gmissement le tira de son tat de torpeur. La femme, il navait pas vu son cadavre ! Des bruits de pas derrire lui le firent se retourner vivement. Prire au lvre il affronta labomination morte vivante qui se tenait devant lui. La triste maldiction quest le flau de la Non-Vie stait abattu sur cette pauvre femme. Son corps dcrpit avant lentement, un seul dsir animait la crature, la chair. Un zombie, pensa lelfe. Dans un ultime cri de guerre, le cadavre ambulant se jeta sur le prtre. Les mouvements lents et saccads de la crature ntaient quun formalit  viter pour les mouvement gracieux et prcis de lelfes. Le long bton dacier bni du prtre senfona dans la chair putrfie du mort-vivant, la laissant comme brle. Aprs avoir acheve son travail, le prtre commena la purification des lieux. Dans quelques temps, les paladins et les hauts-prtres arriveraient et dici l, il voulait recueillir le reste des indices de ce qui ctait vritablement pass ici. Le travail serait ardu, tous avaient pri dans lultime dfense de cette petite ville ctire du nord de Lordaeron. Lamar avait t totalement dtruite.<br /><br />	Quelques heures plus tard, le prtre entendit le lointain son dun cor. Il sortit pour voir de plus prs ce spectacle qui a chaque fois lmerveillait. Sa vision perante delfe lui permettait de voir facilement les compagnies avancer vers les ruines de la cit. Marchant au son martial du tambour, les fantassins en armures avanait dun pas sur. Derrire eux galopant sur leur formidables destriers, les valeureux chevalier de lAlliance dans leur armures tincelantes.  leurs cts, les quipes dartillerie naines et leur tranges machines de guerre. On aurait cru, la dure dun instant, la gloire passe de lAlliance retrouve. Ouvrant la marche, le jeune elfe aperut trois personnages quil connaissait bien. La premire, monte sur un magnifique coursier elfique dune blancheur clatante, le paladin Victor Markch.  20 ans il tait le plus jeune paladin jamais admis. Jeune et fougueux, il incarnait lespoir des hommes.  ses cts, gracieuse et belle, la douce Ellhyn, grande sorcire et matresse de lOrdre Flamboyant de Lordaeron. L bas, on entranait les plus grands mages, ceux qui taient destins  servir lAlliance sur les champs de bataille, les archimages.  Ellhyn tait lune des plus puissante mages jamais connues. Le troisime, il le connaissait que trop bien.  Le grand prtre de son ordre, Huefa, majestueux elfe dans ses habit de soie. Arrogant et fier, Huefa tait larchtype de lelfe. Son autorit tait grande parmi les clergs de Lordaeron mais peu a vrai dire le respectait en temps que personne. Sa force rsidait dans sa parfaite matrise de la magie divine. On dit quil pouvait dune seule prire rendre une jambe perdue  un homme, pour ensuite le renvoyer au combat en parfait tat. Il tait le but que ctait fix Llhynt, il devait prendre sa place, montrer  tous quil tait le plus fort.<br />	<br />	Larme avana dun pas lent. Le cliquetis des armures et le pitinement des sabot se faisait entendre  des kilomtres  la ronde. Ctait un avertissement  quiconque osait dfier lempire des Hommes. Lorsque que Huefa arriva auprs de Llhynt, il le trouva encore plong dans ses penses, comme absorb par le spectacle qui dfilait devant lui. <br />- Alors mon fils, votre rapport<br />	( Llhynt sursauta et se retourna vivement )<br />- Heuh quoi ? ! Oh pardon mon pre, je me suis laiss aller. Alors mon rapport, a croire par ltat des lieu, je dirais des mort-vivants. Des milliers pour sur. <br />- Et quest-ce qui vous faite dire cela mon fils ?<br />- Je ne sais pas mon pre mais je doute quun simple dtachement aille pu faire autant de ravages. Quoiquil en soit, ils sont dsormais beaucoup plus nombreux  ... ( Huera paru surpris ) .... Prs de la moiti des cadavres sont manquants, jai moi mme du affronter des zombie monsieur. <br />- Je vois ... ( Huera se pencha par terre, examinant le sol ) Ils ne sont pas bien loin, je les entends, leurs mes tortures hurlent  qui veut bien lentendre. Vous entendez Llhynt ? Il faut partir  leur rencontre, il doivent payer.<br />- Sauf votre respect sire, jaimerais rester ici, dit Llhynt. Il y a srement dautres indices  trouver sur le Flau ici.<br />- Impossible, jai besoin de vous sur le champ de bataille, rpondit schement Huera. Je laisserais quelques hommes sen occuper. Ce nest pas notre travail.  ( Huera lui tourna le dos et parti rejoindre Victor et Ellhyn . ) <br /><br />Frustr et du, Llhynt prpara son quipement en prvision du combat. Victor lui dit quils les rattraperaient dici deux ou trois jours, dici la il fallait se tenir prt, il avait limpression que la Lgion savait se qui se prparait. Il quitta la ville avec comme dernire scne, Lamar brlant sous les flammes purificatrices des hommes. Plus que tout il voulait en savoir plus sur le Flau, apprendre  mieux le connatre pour mieux le vaincre... Qui sait peut-tre deviendrait-il le premier elfe  tre nomm paladin ...<br /> <br /> <table align='center' width='100%' border='0' cellspacing='0' cellpadding='5'> <tr> <td align='left'></td><td align='right'></td> </tr><tr> <td colspan='2' align='center'>[ <a href='./index.php?op=listarticles&secid=7'>Retour &agrave; Fanfics</a> | <a href='./index.php'>Retour au sommaire des Sections</a> | <a href='./index.php?op=printpage&artid=40'><img src='http://damecraft.starcraft-fr.com/images/print.gif' border='0' alt='Format imprimable' /></a> ]</td> </tr></table></td></tr></table></td></tr></table> </td><td class='rigthmb'>&nbsp;</td><td class='sidebar2'>&nbsp;</td></tr><tr><td class='bunnmbleft'>&nbsp;</td><td class='leftmb2'>&nbsp;</td><td class='bunnmb'>&nbsp;</td><td class='rigthmb2'>&nbsp;</td><td class='bunnmbrigth'>&nbsp;</td></tr><tr><td class='bunnmfooter2'>&nbsp;</td><td class='bunnmfooter'>&nbsp;</td><td class='bunnmfooter'><center><br /><div><a href='http://damecraft.starcraft-fr.com/banners.php?op=click&amp;bid=3' target='_blank'><img src='http://fl01.ct2.comclick.com/aff_url.ct2?id_regie=1&num_editeur=5441&num_site=2&num_emplacement=1' alt='' /></a></div><br /><a href="#hdt">Haut de page</a><br /><b>DameCraft v4.1 - Tous droits rservs !</b><br />Dclaration  la CNIL n817741<br />Powered by&nbsp;XOOPS XOOPS 1.3.8 &copy; 2002 <a href='http://www.xoops.org/' target='_blank'>The XOOPS Project</a><br /></center></td><td class='bunnmfooter'>&nbsp;</td><td class='bunnmfooter3'>&nbsp;</td></tr></table><script type='text/javascript'> <!--    			ap_showWaitMessage('waitDiv', 0);  			//--></script><br /></body></html> 
