<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr"> <head> <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" /> <meta http-equiv="content-language" content="fr" /> <meta name="robots" content="index,follow" /> <meta name="keywords" content="news, technology, headlines, xoops, xoop, nuke, myphpnuke, myphp-nuke, phpnuke, SE, geek, geeks, hacker, hackers, linux, software, download, downloads, free, community, mp3, forum, forums, bulletin, board, boards, bbs, php, survey, poll, polls, kernel, comment, comments, portal, odp, open, source, opensource, FreeSoftware, gnu, gpl, license, Unix, *nix, mysql, sql, database, databases, web site, weblog, guru, module, modules, theme, themes, cms, content management" /> <meta name="description" content="XOOPS is a dynamic Object Oriented based open source portal script written in PHP." /> <meta name="rating" content="general" /> <meta name="author" content="http://fortchaos.iaols.com" /> <meta name="copyright" content="Copyright &copy; 2001-2003" /> <meta name="generator" content="XOOPS" /> <title>AmnesiA asbl - Articles</title> <link href="http://www.amnesiaasbl.be/favicon.ico" rel="SHORTCUT ICON" /> <link rel="stylesheet" type="text/css" media="all" href="http://www.amnesiaasbl.be/xoops.css" /> <link rel="stylesheet" type="text/css" media="all" href="http://www.amnesiaasbl.be/themes/aablue/style.css" /> <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, extra) { 	imgDom = xoopsGetElementById(imgId); 	selectDom = xoopsGetElementById(selectId); 	imgDom.src = "http://www.amnesiaasbl.be/"+ imgDir + "/" + selectDom.options[selectDom.selectedIndex].value + extra; }  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 makeLineThrough(id){ 	var eleStyle = xoopsGetElementById(id).style; 	if (eleStyle.textDecoration != "line-through") { 		eleStyle.textDecoration = "line-through"; 	} 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; 		} 	} }  // RMV-NOTIFY function xoopsCheckGroup(formname, switchid, groupid) { 	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.type == 'checkbox') && (e.id == groupid) ) { 			e.checked = switch_cbox.checked; 			e.click(); e.click();  // Click to activate subgroups 									// Twice so we don't reverse effect 		} 	} }  function xoopsCodeUrl(id){ 	var text = prompt("Entrez l'URL du lien que vous voulez ajouter :", ""); 	var domobj = xoopsGetElementById(id); 	if ( text != null && text != "" ) { 		var text2 = prompt("Entrez le titre du site web :", ""); 		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]"; 			} 			xoopsInsertText(domobj, result); 		} 	} 	domobj.focus(); }  function xoopsCodeImg(id){ 	var text = prompt("Entrez l'URL de l'image que vous voulez ajouter.", ""); 	var domobj = xoopsGetElementById(id); 	if ( text != null && text != "" ) { 		var text2 = prompt("Maintenant, entrez la position de l'image.\n'R' ou 'r' pour droite, 'L' ou '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' ou 'r' pour droite, 'L' ou '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]"; 		xoopsInsertText(domobj, result); 	} 	domobj.focus(); }  function xoopsCodeEmail(id){ 	var text = prompt("Entrez l'adresse e-mail que vous voulez ajouter.", ""); 	var domobj = xoopsGetElementById(id); 	if ( text != null && text != "" ) { 		var result = "[email]" + text + "[/email]"; 		xoopsInsertText(domobj, result); 	} 	domobj.focus(); }  function xoopsCodeQuote(id){ 	var text = prompt("Entrez le texte que vous voulez citer.", ""); 	var domobj = 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]"; 		xoopsInsertText(domobj, result); 	} 	domobj.focus(); }  function xoopsCodeCode(id){ 	var text = prompt("Entrez les codes que vous voulez ajouter.", ""); 	var domobj = xoopsGetElementById(id); 	if ( text != null && text != "" ) { 		var result = "[code]" + text + "[/code]"; 		xoopsInsertText(domobj, result); 	} 	domobj.focus(); }    function xoopsCodeText(id, hiddentext){ 	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 xoopsHiddenTextDomStyle = 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("Merci de saisir le texte dans la boite."); 		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 (xoopsHiddenTextDomStyle.fontWeight == "bold") { 			textDomValue = "[b]" + textDomValue + "[/b]"; 			xoopsHiddenTextDomStyle.fontWeight = "normal"; 		} 		if (xoopsHiddenTextDomStyle.fontStyle == "italic") { 			textDomValue = "[i]" + textDomValue + "[/i]"; 			xoopsHiddenTextDomStyle.fontStyle = "normal"; 		} 		if (xoopsHiddenTextDomStyle.textDecoration == "underline") { 			textDomValue = "[u]" + textDomValue + "[/u]"; 			xoopsHiddenTextDomStyle.textDecoration = "none"; 		} 		if (xoopsHiddenTextDomStyle.textDecoration == "line-through") { 			textDomValue = "[d]" + textDomValue + "[/d]"; 			xoopsHiddenTextDomStyle.textDecoration = "none"; 		} 		xoopsInsertText(textareaDom, textDomValue); 		textDom.value = ""; 		xoopsHiddenTextDomStyle.color = "#000000"; 		xoopsHiddenTextDomStyle.fontFamily = ""; 		xoopsHiddenTextDomStyle.fontSize = "12px"; 		xoopsHiddenTextDomStyle.visibility = "hidden"; 		textareaDom.focus(); 	} }  function xoopsSavePosition(id) { 	var textareaDom = xoopsGetElementById(id); 	if (textareaDom.createTextRange) { 		textareaDom.caretPos = document.selection.createRange().duplicate(); 	} }  function xoopsInsertText(domobj, text) { 	if (domobj.createTextRange && domobj.caretPos){   		var caretPos = domobj.caretPos; 		caretPos.text = caretPos.text.charAt(caretPos.text.length - 1)  == ' ' ? text + ' ' : text;   	} else if (domobj.getSelection && domobj.caretPos){ 		var caretPos = domobj.caretPos; 		caretPos.text = caretPos.text.charat(caretPos.text.length - 1)   == ' ' ? text + ' ' : text; 	} else { 		domobj.value = domobj.value + text;   	} }  function xoopsCodeSmilie(id, smilieCode) { 	var revisedMessage; 	var textareaDom = xoopsGetElementById(id); 	xoopsInsertText(textareaDom, smilieCode); 	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("Merci de compl&eacute;ter le sujet et le champs message."); 		return false; 	} 	if (maxchars != 0) { 		if (textareaDom.value.length > maxchars) { 			alert("Votre message est trop long.\n\nLongueur maxi de caract&egrave;res autoris&eacute;e :&nbsp;" + maxchars + "\nLongueur de caract&egrave;res actuelle :&nbsp;" + textareaDom.value.length + ""); 			textareaDom.focus(); 			return false; 		} else { 			submitDom.disabled = true; 			return true; 		} 	} else { 		submitDom.disabled = true; 		return true; 	} } window.onload=init;  //--> </script> </head> <body> <! -------------------------Start of Header ------------------------->   <div align="center"><center>  <table border="0" width="900" cellspacing="0" cellpadding="0">   <tr>     <td width="205" height="16" nowrap="nowrap"><a href="http://www.amnesiaasbl.be/"><img src="http://www.amnesiaasbl.be/themes/aablue/home.jpg" width="41" height="16" alt="Home" ><a href="http://www.amnesiaasbl.be/modules/news/index.php"><img src="http://www.amnesiaasbl.be/themes/aablue/news.jpg" width="41" height="16"alt="News" ></a></a><a href="http://www.amnesiaasbl.be/modules/newbb/"><img src="http://www.amnesiaasbl.be/themes/aablue/forum.jpg" width="41" height="16"alt="Forums" ></a></a><a href="http://www.amnesiaasbl.be/modules/uskolaxgallery/"><img src="http://www.amnesiaasbl.be/themes/aablue/photo.jpg" width="41" height="16"alt="Photos"></a><a href="http://www.amnesiaasbl.be/register.php"><img src="http://www.amnesiaasbl.be/themes/aablue/join.jpg" width="41" height="16" alt="S'enregistrer"></td>     <td width="347"><img src="http://www.amnesiaasbl.be/themes/aablue/butto2.jpg" width="347" height="16"></td>     <td width="340%" align="left"><img src="http://www.amnesiaasbl.be/themes/aablue/button3.jpg" width="347" height="16"></td>   </tr> </table> </center></div><div align="center"><center>  <table border="0" width="900" cellspacing="0" cellpadding="0">   <tr>     <td width="530" height="80"><img src="http://www.amnesiaasbl.be/themes/aablue/pagelogo.jpg" width="530" height="80"></td>     <td width="370" height="80" background="http://www.amnesiaasbl.be/themes/aablue/pagebg.jpg" valign="middle" align="center"><br><form style="margin-top: 0px;" action="http://www.amnesiaasbl.be/user.php" method="post"><input type="text" name="uname" size="12" value="" style="font-family: Tahoma; font-size: 11pt; background-color: rgb(213,234,253); color: rgb(0,0,0); border: 1px solid rgb(0,0,0)" /><input type="password" name="pass" size="12"  style="font-family: Tahoma; font-size: 11pt; background-color: rgb(213,234,253); color: rgb(0,0,0); border: 1px solid rgb(0,0,0)" /><input type="hidden" name="op" value="login" /><input type="submit" value="Connection" style="font-family: Tahoma; background-color: rgb(99,154,206); color: rgb(0,0,0); border: 1px groove rgb(0,0,0)"/><br> <center><font face="Tahoma" size="2">Pseudo /&nbsp; Mot de passe /&nbsp; Connection </center> </form></td>   </tr> </table> </center></div><div align="center"><center>  <table border="0" width="900" cellspacing="0" cellpadding="0">   <tr>     <td width="89" background="http://www.amnesiaasbl.be/themes/aablue/belowtitleleft.jpg" height="20"></td>     <td width="811" background="http://www.amnesiaasbl.be/themes/aablue/belowtitlebg.jpg"></td>   </tr> </table> </center></div>  <! ---------------------end of header --------------------------------->  <! --------------------------Left Block------------->  <div align="center">   <table cellspacing="0" width="900">     <tr>       <td id="leftcolumn" bgcolor="#FFFFFF">          <!-- Start left blocks loop -->                   <table cellspacing=0 cellpadding=0 width=180 bgcolor="#FFFFFF" border=0">   <tbody>    <tr>      <td height="28">        <table width="100%" border="0" cellspacing="0" cellpadding="0" height="100%" >         <tr>            <td height="35" background="http://www.amnesiaasbl.be/themes/aablue/fcmenutop.jpg" colspan="3">             <div align="center">               <table width="100%" border="0" cellspacing="0" cellpadding="0" height="10">                 <tr>                   <td></td>                 </tr>               </table>               <div class="blockTitle">Connexion</div>           </td>         </tr>         <tr>            <td height="10" background="http://www.amnesiaasbl.be/themes/aablue/borderleft.jpg"><img border="0" src="http://www.amnesiaasbl.be/themes/aablue/pixel.gif" width="4" height="1"></td>           <td width="172">             <table cellpadding=5 width=100%>               <tr>                 <td bgcolor="#FFFFFF" align="left"> <div class="blockContent"><form style="margin-top: 0px;" action="http://www.amnesiaasbl.be/user.php" method="post">Pseudo :&nbsp;<br /><input type="text" name="uname" size="12" value="" /><br />Mot de Passe :&nbsp;<br /><input type="password" name="pass" size="12" /><br /><input type="hidden" name="xoops_redirect" value="/modules/news/article.php?storyid=17" /><input type="hidden" name="op" value="login" /><input type="submit" value="Connexion" /><br /> </form> <a href="http://www.amnesiaasbl.be/user.php#lost">Perdu le Mot de Passe ?</a> <br /><br /> <a href="http://www.amnesiaasbl.be/register.php">Inscrivez-vous maintenant !</a></div></td>               </tr>             </table>           </td>           <td height="10" background="http://www.amnesiaasbl.be/themes/aablue/borderright.jpg"><img border="0" src="http://www.amnesiaasbl.be/themes/aablue/pixel.gif" width="7" height="1"></td>         </tr>       </table>     </td>   </tr>   <tr>      <td> <img border="0" src="http://www.amnesiaasbl.be/themes/aablue/fcmenubottom.jpg" width="190" height="35"></td>   </tr>   </tbody>  </table> <br>                                                     <table cellspacing=0 cellpadding=0 width=180 bgcolor="#FFFFFF" border=0">   <tbody>    <tr>      <td height="28">        <table width="100%" border="0" cellspacing="0" cellpadding="0" height="100%" >         <tr>            <td height="35" background="http://www.amnesiaasbl.be/themes/aablue/fcmenutop.jpg" colspan="3">             <div align="center">               <table width="100%" border="0" cellspacing="0" cellpadding="0" height="10">                 <tr>                   <td></td>                 </tr>               </table>               <div class="blockTitle">Menu Principal</div>           </td>         </tr>         <tr>            <td height="10" background="http://www.amnesiaasbl.be/themes/aablue/borderleft.jpg"><img border="0" src="http://www.amnesiaasbl.be/themes/aablue/pixel.gif" width="4" height="1"></td>           <td width="172">             <table cellpadding=5 width=100%>               <tr>                 <td bgcolor="#FFFFFF" align="left"> <div class="blockContent"><table cellspacing="0">   <tr>     <td id="mainmenu">       <a class="menuTop" href="http://www.amnesiaasbl.be/">Accueil</a>       <!-- start module menu loop -->             <a class="menuMain" href="http://www.amnesiaasbl.be/modules/news/">Articles</a>                   <a class="menuSub" href="http://www.amnesiaasbl.be/modules/news/submit.php">Proposer un Article</a>                   <a class="menuSub" href="http://www.amnesiaasbl.be/modules/news/archive.php">Archives</a>                     <a class="menuMain" href="http://www.amnesiaasbl.be/modules/uskolaxgallery/">Galeria</a>                     <a class="menuMain" href="http://www.amnesiaasbl.be/modules/shoutbox/">Shoutbox</a>                     <a class="menuMain" href="http://www.amnesiaasbl.be/modules/newbb/">Forum</a>                     <a class="menuMain" href="http://www.amnesiaasbl.be/modules/mylinks/">Liens Webs</a>                     <a class="menuMain" href="http://www.amnesiaasbl.be/modules/mydownloads/">T&eacute;l&eacute;chargements</a>                     <a class="menuMain" href="http://www.amnesiaasbl.be/modules/contact/">Contactez-nous</a>                     <a class="menuMain" href="http://www.amnesiaasbl.be/modules/xoopsfaq/">FAQ</a>                     <!-- end module menu loop -->     </td>   </tr> </table></div></td>               </tr>             </table>           </td>           <td height="10" background="http://www.amnesiaasbl.be/themes/aablue/borderright.jpg"><img border="0" src="http://www.amnesiaasbl.be/themes/aablue/pixel.gif" width="7" height="1"></td>         </tr>       </table>     </td>   </tr>   <tr>      <td> <img border="0" src="http://www.amnesiaasbl.be/themes/aablue/fcmenubottom.jpg" width="190" height="35"></td>   </tr>   </tbody>  </table> <br>                                                   <!-- End left blocks loop -->        </td> <! --------------------------End of Left Block------------->        <td id="centercolumn" bgcolor="#FFFFFF">          <!-- Display center blocks if any -->                 <!-- End display center blocks -->          <div id="content"><div style="text-align: left; margin: 10px;"></div>  <div style="padding: 3px; margin-right:3px;"> <div class="item">   <div class="itemHead"><span class="itemTitle"><a href='http://www.amnesiaasbl.be/modules/news/index.php?storytopic=6'>Wizard Academy</a>&nbsp;:&nbsp;Le choix du background</span></div>   <div class="itemInfo">     <span class="itemPoster">Post&eacute; par <a href="http://www.amnesiaasbl.be/userinfo.php?uid=1">webmaster</a></span> <span class="itemPostDate">le 16/12/2002 18:45:34</span> (<span class="itemStats">253 lectures</span>)   </div>   <div class="itemBody">     <a href='http://www.amnesiaasbl.be/modules/news/index.php?storytopic=6'><img src='http://www.amnesiaasbl.be/modules/news/images/topics/WA_182_132.jpg' alt='Wizard Academy' hspace='10' vspace='10' align='left' /></a>     <p class="itemText"><H1>Le choix du background.</H1><br /><p><br />Durant ce WE du 7,8 et 9 mars vous allez jouer un lve dune cole de magie (Haute Ecole de Magie Nicolas Flamel). <br /><br />Contrairement  Harry Potter, pour qui ses tudes commencent  11 ans, vous interprterez des tudiants de 18 ans. En effet dans notre monde, les enfants sont bien trop indisciplins et imprvisibles pour apprendre la magie.<br />Si le monde abord  la WA ressemble  celui de Harry Potter, il sen diffrencie par de nombreux points que vous dcouvrirez au cours du jeu. Harry Potter existe dans le monde de la Wizard Academy mais nest quune sitcom  succs dans le monde des magiciens (sitcom qui a t adapte avec succs dans le monde des moldus (non-magiciens))<br /></p><br /><br /><p><br />A la Haute Ecole de Magie Nicolas Flamel, le port de luniforme est obligatoire. Vous porterez :<br><br />- Pour les garons : un pantalon noir et des chaussures noires (pas de baskets), une chemise blanche, un pull  col en V <br />gris et une cravate noire. Par dessus, vous porterez une cape noire.<br><br /><br />- Pour les filles : une jupe plisse noire, des collants noirs ou chair,  et des chaussures noires (pas de baskets), une chemise blanche, un pull  col en V gris et une cravate noire. Par dessus, vous porterez une cape noire.<br><br /></p><br /><br /><p> <br />Le port de la robe de magicien ne sera pas accept. Cet habit reprsente lobtention du diplme avec grande distinction et ne sera donc ports que par les professeurs et les personnes en tant digne.<br><br /><br />Vous aurez galement besoin d une baguette magique denviron 30 cm.<br />Vous serez rpartis dans 4 maisons de 10 lves selon les caractristiques de votre personnage. Vous recevrez un cusson aux couleurs de votre cole que vous accrocherez  votre cape.<br /></p><br /><br /><p><br /><H1>Le choix du personnage.</H1><br><br />La Wizard Academy est base sur le concept de background prcrit. Ds  prsent, une liste est affiche sur le site reprenant les noms des 40 personnages. Certains de ces rles sont rservs aux filles, dautres aux garons et dautres sont accessibles aux deux. <br /></p><br /> <br /><p><br />Diffrents choix sont  raliser :<br><br /> <br /><H2>Le choix de loption de cours.</H2><br /><br />Dans le tableau des lves, certains backgrounds imposent loption de cours, dautres pas. Dans ce cas, les trois options sont possibles selon les places restantes.<br />Les trois options de cours de la Wizard Academy sont :</p><br /><TABLE><TH>Option</TH><TH>Cours suivis</TH><TH>Nbre de cours durant le WE</TH><br /><TR><br />	<TD valign='top'>Arcanes</TD><br />	<TD><br />	Enchantement<br><br />	Cratures Magiques<br><br />	Divination<br><br />	Histoire de la magie<br><br />	Quidditch<br> <br />	</TD><br />	<TD align='right'><br />	2<br><br />	1<br><br />	1<br><br />	1<br><br />	1<br> <br />	</TD><br /></TR><br /><TR><br />	<TD valign='top'>Alchimie</TD><br />	<TD><br />	Potiologie<br><br />	Herboristerie/minralogie<br><br />	Divination<br><br />	Histoire de la magie<br><br />	Quidditch<br> <br />	</TD><br />	<TD align='right'><br />	2<br><br />	1<br><br />	1<br><br />	1<br><br />	1<br> <br />	</TD><br /></TR><br /><TR><br />	<TD valign='top'>Armes magiques</TD><br />	<TD><br />	Armes magiques<br><br />	Cratures magiques<br><br />	Herboristerie/minralogie<br><br />	Histoire de la magie<br><br />	Quidditch<br> <br />	</TD><br />	<TD align='right'><br />	2<br><br />	1<br><br />	1<br><br />	1<br><br />	1<br> <br />	</TD><br /></TR><br /></TABLE><br /><p><br />Contrairement aux GN classiques, vos comptences seront dtermines au cours du jeu, selon les cours suivis, votre assiduit  les suivre et votre capacit  apprendre. Vos connaissances aurant galement la possibilit dvoluer suivant les iffrentes rencontres et aventures que vous vivrez le long de ce WE. <br /></p><br /><p><br />Chaque option accueillera un nombre dtermin dlves :<br><br />Arcanes : 20<br><br />Alchimie : 12<br><br />Armes magiques : 8<br><br /></p><br /><br /><H2>Le choix du background</H2><br /><p><br />Pour amliorer le jeu et rserver le maximum de surprises, nous avons dcid de ne rien rvler des diffrents backgrounds sur le site. Votre choix se fera donc avec nous. <br /></p><br /><p><br />Il vous est ds  prsent possible de nous contacter pour nous aider  choisir avec vous le personnage que vous avez le plus envie de jouer. Ces contacts se feront prfrentiellement par e-mail (<a href="mailto:amnesia_asbl@hotmail.com">amnesia_asbl@hotmail.com</a>). Il sera galement possible de nous contacter par tlphone (085/611.551 ou 0494/381314) en semaine aprs 18h30 et le WE.  Nous ne pourrons pas assurer nous mme les coups de tlphone. Donc, si personne ne rpond, ressayez plus tard.<br /></p><br /><p><br />Avant de nous contacter, nous vous demandons davoir rflchi au pralable au type de personnage que vous aimeriez jouer, et de nous donner des informations. Nous naccepterons aucun background, mais uniquement des choses que vous auriez envie de faire, par exemple :<br /></p><br />- Vous tes vraiment fan de tel ou tel cours propos (prcisez lequel), ou au contraire vous seriez plutt un cancre.<br><br /><br />- Vous adorez les cratures magiques (elfes, trolls,cratures tranges), ou au contraire vous les pourchassez<br><br /><br />- Vous dtestez les moldus (non-magiciens), ou au contraire vous les adorez<br><br /><br />- Vous aimez travailler au grand jour, ou vos activits prfrent peut-tre lombre<br><br /><br />- Vous aimeriez tre en contact privilgi avec un professeur ou au contraire vous les vitez<br><br /><br />- Vous avez un problme que vous esprez rsoudre  la WA, ou vous attendez les vnement qui vous seront rservs l-bas.<br><br /><br />- Vous agissez pour le bien de tous ou au contraire vos intentions sont moins nobles.<br><br /><br /><p><br />Sur base de ces informations, nous choisirons le rle le plus adapt  vos envies.  Une option sera alors dpose sur le personnage. Il ne vous restera plus qu verser le montant de linscription sur notre compte et  renvoyer la feuille dinscription accompagne dune photographie didentit (celle-ci est obligatoire car elle sera utilise en terme de jeu). <br /><br />Si linscription nest pas rgle dans les 15 jours suivant loption nous supprimons loption et le personnage redevient <br />libre. Notons que le contenu du rle choisi ne sera pas dvoil avant rception du montant de linscription.<br /></p> <br /><p> <br />Aprs rception du rle, aucun changement ne sera accept. Ce sera  vous dinterprter au mieux le rle qui vous sera attribu. Pour le bon droulement du jeu, nous vous demandons de jouer au mieux le background qui vous sera impos.<br /></p><br /><p><br />Pouquoi sinscrire rapidement ?<br><br />Parce que rapidement, le choix des options de cours  suivre, ainsi que des backgrounds va diminuer. Parce quil ne restera plus alors qu prendre ce quil reste. Notons cependant quune mme attention a t porte  chacun des rles. Ceux qui resteront ne seront pas les moins intressants, ils nauront juste pas encore t choisis.<br /></p><br /></p>   </div>   <div class="itemFoot">     <span class="itemAdminLink"></span> <span class="itemPermaLink"></span>   </div> </div></div>  <div style="text-align: left; margin: 10px;"></div>  <div style="padding: 5px; text-align: right; margin-right:3px;"> <a href="print.php?storyid=17"><img src="images/print.gif" border="0" alt="Format Imprimable" /></a> <a target="_top" href="mailto:?subject=Article intressant sur AmnesiA asbl&amp;body=Voici un article intressant trouv sur AmnesiA asbl:  http://www.amnesiaasbl.be/modules/news/article.php?storyid=17"><img src="images/friend.gif" border="0" alt="Envoyer cet article &agrave; un(e) ami(e)" /></a> </div>  <div style="text-align: center; padding: 3px; margin:3px;">  <form method="get" action="article.php"> <table width="95%" class="outer" cellspacing="1">   <tr>     <td class="even" align="center"><select name="com_mode"><option value="flat" selected="selected">A plat</option><option value="thread">Par Conversation</option><option value="nest">Embo&icirc;t&eacute;</option></select> <select name="com_order"><option value="0">Les + anciens en Premier</option><option value="1" selected="selected">Les + r&eacute;cents en Premier</option></select><input type="hidden" name="storyid" value="17" /> <input type="submit" value="Actualiser" class="formButton" />     </td>   </tr> </table> </form> Les commentaires appartiennent &agrave; leurs auteurs. Nous ne sommes pas responsables de leur contenu. </div>  <div style="margin:3px; padding: 3px;"> <!-- start comments loop --> <table class="outer" cellpadding="5" cellspacing="1">   <tr>     <th width="20%">Auteur</td>     <th>Conversation</td>   </tr>   </table><!-- end comments loop --> </div></div>       </td>               <td id="rightcolumn" bgcolor="#FFFFFF">         <!-- Start right blocks loop -->                   <table cellspacing=0 cellpadding=0 width=180 border=0">   <tbody>    <tr>      <td height="28">        <table width="100%" border="0" cellspacing="0" cellpadding="0" height="100%" >         <tr>            <td height="35" background="http://www.amnesiaasbl.be/themes/aablue/fcmenutop.jpg" colspan="3">             <div align="center">               <table width="100%" border="0" cellspacing="0" cellpadding="0" height="10">                 <tr>                   <td></td>                 </tr>               </table>               <div class="blockTitle">Recherche</div>           </td>         </tr>         <tr>            <td height="10" background="http://www.amnesiaasbl.be/themes/aablue/borderleft.jpg"><img border="0" src="http://www.amnesiaasbl.be/themes/aablue/pixel.gif" width="4" height="1"></td>           <td width="172">             <table cellpadding=5 width=100%>               <tr>                 <td bgcolor="#FFFFFF"><div class="blockContent"><form style="margin-top: 0px;" action="http://www.amnesiaasbl.be/search.php" method="post">   <input type="text" name="query" size="14" /><input type="hidden" name="action" value="results" /><br /><input type="submit" value="Recherche" /> </form> <a href="http://www.amnesiaasbl.be/search.php">Recherche avanc&eacute;e</a></div></td>               </tr>             </table>           </td>           <td height="10" background="http://www.amnesiaasbl.be/themes/aablue/borderright.jpg"><img border="0" src="http://www.amnesiaasbl.be/themes/aablue/pixel.gif" width="7" height="1"></td>         </tr>       </table>     </td>   </tr>   <tr>      <td> <img border="0" src="http://www.amnesiaasbl.be/themes/aablue/fcmenubottom.jpg" width="190" height="35"></td>   </tr>   </tbody>  </table> <br>                                                     <table cellspacing=0 cellpadding=0 width=180 border=0">   <tbody>    <tr>      <td height="28">        <table width="100%" border="0" cellspacing="0" cellpadding="0" height="100%" >         <tr>            <td height="35" background="http://www.amnesiaasbl.be/themes/aablue/fcmenutop.jpg" colspan="3">             <div align="center">               <table width="100%" border="0" cellspacing="0" cellpadding="0" height="10">                 <tr>                   <td></td>                 </tr>               </table>               <div class="blockTitle">Qui est en ligne</div>           </td>         </tr>         <tr>            <td height="10" background="http://www.amnesiaasbl.be/themes/aablue/borderleft.jpg"><img border="0" src="http://www.amnesiaasbl.be/themes/aablue/pixel.gif" width="4" height="1"></td>           <td width="172">             <table cellpadding=5 width=100%>               <tr>                 <td bgcolor="#FFFFFF"><div class="blockContent"><b>3</b> utilisateur(s) en ligne (dont <b>1</b> sur <b>Articles</b>)<br /><br />Membre(s): 0<br />Invit&eacute;(s): 3<br /><br /> <a href="javascript:openWithSelfMain('http://www.amnesiaasbl.be/misc.php?action=showpopups&amp;type=online','Online',420,350);">plus...</a></div></td>               </tr>             </table>           </td>           <td height="10" background="http://www.amnesiaasbl.be/themes/aablue/borderright.jpg"><img border="0" src="http://www.amnesiaasbl.be/themes/aablue/pixel.gif" width="7" height="1"></td>         </tr>       </table>     </td>   </tr>   <tr>      <td> <img border="0" src="http://www.amnesiaasbl.be/themes/aablue/fcmenubottom.jpg" width="190" height="35"></td>   </tr>   </tbody>  </table> <br>                                                     <table cellspacing=0 cellpadding=0 width=180 border=0">   <tbody>    <tr>      <td height="28">        <table width="100%" border="0" cellspacing="0" cellpadding="0" height="100%" >         <tr>            <td height="35" background="http://www.amnesiaasbl.be/themes/aablue/fcmenutop.jpg" colspan="3">             <div align="center">               <table width="100%" border="0" cellspacing="0" cellpadding="0" height="10">                 <tr>                   <td></td>                 </tr>               </table>               <div class="blockTitle">Top envois</div>           </td>         </tr>         <tr>            <td height="10" background="http://www.amnesiaasbl.be/themes/aablue/borderleft.jpg"><img border="0" src="http://www.amnesiaasbl.be/themes/aablue/pixel.gif" width="4" height="1"></td>           <td width="172">             <table cellpadding=5 width=100%>               <tr>                 <td bgcolor="#FFFFFF"><div class="blockContent"><table cellspacing="1" class="outer">     <tr class="even" valign="middle">     <td>1</td>     <td align="center">             <img src="http://www.amnesiaasbl.be/uploads/cavt3ea908a0aef34.jpg" alt="" width="32" /><br />             <a href="http://www.amnesiaasbl.be/userinfo.php?uid=137">Tara</a>     </td>     <td align="center">234</td>   </tr>     <tr class="odd" valign="middle">     <td>2</td>     <td align="center">             <a href="http://www.amnesiaasbl.be/userinfo.php?uid=93">Ellie</a>     </td>     <td align="center">145</td>   </tr>     <tr class="even" valign="middle">     <td>3</td>     <td align="center">             <img src="http://www.amnesiaasbl.be/uploads/cavt3ea56c6cb29a8.jpg" alt="" width="32" /><br />             <a href="http://www.amnesiaasbl.be/userinfo.php?uid=136">Hubert_Grandjean</a>     </td>     <td align="center">116</td>   </tr>     <tr class="odd" valign="middle">     <td>4</td>     <td align="center">             <img src="http://www.amnesiaasbl.be/uploads/cavt3ea98efaefd9c.gif" alt="" width="32" /><br />             <a href="http://www.amnesiaasbl.be/userinfo.php?uid=157">Cassius</a>     </td>     <td align="center">56</td>   </tr>     <tr class="even" valign="middle">     <td>5</td>     <td align="center">             <a href="http://www.amnesiaasbl.be/userinfo.php?uid=118">Patoche51</a>     </td>     <td align="center">55</td>   </tr>     <tr class="odd" valign="middle">     <td>6</td>     <td align="center">             <img src="http://www.amnesiaasbl.be/uploads/cavt3ea637c94913c.gif" alt="" width="32" /><br />             <a href="http://www.amnesiaasbl.be/userinfo.php?uid=1">webmaster</a>     </td>     <td align="center">53</td>   </tr>     <tr class="even" valign="middle">     <td>7</td>     <td align="center">             <img src="http://www.amnesiaasbl.be/uploads/cavt3ea56c6cd9459.gif" alt="" width="32" /><br />             <a href="http://www.amnesiaasbl.be/userinfo.php?uid=22">jeanjean</a>     </td>     <td align="center">52</td>   </tr>     <tr class="odd" valign="middle">     <td>8</td>     <td align="center">             <img src="http://www.amnesiaasbl.be/uploads/cavt3ea56c6ce36e1.jpg" alt="" width="32" /><br />             <a href="http://www.amnesiaasbl.be/userinfo.php?uid=45">dunhallym</a>     </td>     <td align="center">50</td>   </tr>     <tr class="even" valign="middle">     <td>9</td>     <td align="center">             <img src="http://www.amnesiaasbl.be/uploads/cavt3ea56c6ccd757.jpg" alt="" width="32" /><br />             <a href="http://www.amnesiaasbl.be/userinfo.php?uid=20">Fab</a>     </td>     <td align="center">43</td>   </tr>     <tr class="odd" valign="middle">     <td>10</td>     <td align="center">             <a href="http://www.amnesiaasbl.be/userinfo.php?uid=108">WhismerHill</a>     </td>     <td align="center">37</td>   </tr>   </table></div></td>               </tr>             </table>           </td>           <td height="10" background="http://www.amnesiaasbl.be/themes/aablue/borderright.jpg"><img border="0" src="http://www.amnesiaasbl.be/themes/aablue/pixel.gif" width="7" height="1"></td>         </tr>       </table>     </td>   </tr>   <tr>      <td> <img border="0" src="http://www.amnesiaasbl.be/themes/aablue/fcmenubottom.jpg" width="190" height="35"></td>   </tr>   </tbody>  </table> <br>                                                   <!-- End right blocks loop -->       </td>             </tr> <table cellspacing="0">     <tr id="footerbar">       <td><b><font size="1">Theme</font></b><font size="1"> By &#032;<a href="&#104;&#116;&#116;&#112;&#058;//&#102;&#111;&#114;&#116;&#099;&#104;&#097;&#111;&#115;.&#105;&#097;&#111;&#108;&#115;.&#099;&#111;&#109;/">       Fort Chaos</a> </span></font><b><font size="1">Adapted       </span></font></b>&#032;<font size="1"> By        <a href="http://www.amnesiaasbl.be">AmnesiA</span></a></font><br>       </font>  </td>     </tr>   </table> </body> </html>                                                                                                                                            
