<!--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=153">Kevthunder</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=272#864" title="Re: project revolution">Et nous on a le dro...</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=272#863" title="Re: project revolution">si on peut meme pas...</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=272#862" title="Re: project revolution">je peut meme faire ...</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=272#861" title="Re: project revolution">arf.. les marines i...</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=272#860" title="Re: project revolution">dans les unites je ...</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=272#859" title="Re: project revolution">Moi je trouve que l...</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=272#858" title="Re: project revolution">moi j'adore les mar...</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=271#857" title="Re: Nouveau fanfic :)">Bien moi je trouve ...</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=274#856" title="Re: O sont donc t-ils ??? :D">pratique ce petit l...</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=271#855" title="Re: Nouveau fanfic :)">il vous plait tant ...</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'>Petites aides warcraft3:</font><br /> <font class='tiny'> Publi&eacute; par&nbsp;: <a href='http://damecraft.starcraft-fr.com/userinfo.php?uid=22'>Yukimura</a> , Le&nbsp;: Aug-22-2002 </font> <br /><br />La coupe du bois avec les gobelin:<br /> -Pour gagner plus de bois, trouvez un laboratoire gobelin. Ensuite achetez le gobelin trononeur. Vous verrez il coupe trs rapidement le bois et vous ramne 200 a chaque voyage. Pratique pour les Elfe de la nuit peut habile a la coupe du bois. <br />Je sais c'est court mais vous verrez a vous servira. <br /><br />  Les Ombres:<br />-Beucoup se demande a quoi peuvent bien servir ces esprit ,a part voir les unites invisible et etre invisible . Cette unit peut vous servir : - de barrage mine (faite une ligne de shades autour de la mine de votre adversaire pour qu'il ne puisse plus en recuperer l'or , ou mettez en juste quelques un pour gener le mouvement de ses peons. <br />- c'est aussi un eclaireur important <br />-il peut emppecher l'ennemi d'aller en un endroit <br />(en faisant la meme technique que pour les mines) <br />-et bien dotre utiliter que je nest surement pas encore trouver. <br />Malheuresement le shade coute 1 de bouffe et donc on peut arriver vite au high ukeep <br /><br />   La vague des mort-vivant:<br />  obligatoire pour l'attaque rapide: <br />-au moins deux cryptes et deux temple des damns <br />-neufs necromanciens + formation necromanciens adeptes <br />-16 goules (avec le maximum d'amelioration) <br />Strategie: <br />lorsque la mana des necromanciens sera au max envoyez vos goules aux portes de la bases ennemis. Trois secondes aprs envoyez les necromanciens et activez invocation morbide automatique (avec 1 clic droit sur l'option). Tenez vos necromanciens legerement a distance de la bataille. <br />But: <br />les necromanciens transformeront tout les cadavres (amis et ennemis compris sauf units volantes) qui jonchent le sol de la bataille en squelettes tout en attaquant a distances.l'ennemis se voit rapidement sur charg, c'est 1 vrai test d'endurance pour lui.vous pouvez renforcer votre attaque grace au hero ou en envoyant dotre goules et dore necromanciens. <br /><br /><br />Bonne chance! <img src='http://damecraft.starcraft-fr.com/images/smilies/icon_smile.gif' /><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=4'>Retour &agrave; Stratgies WarCraft</a> | <a href='./index.php'>Retour au sommaire des Sections</a> | <a href='./index.php?op=printpage&artid=4'><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=4' target='_blank'><img src='http://damecraft.starcraft-fr.com/dame.jpg' 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> 
