4a503405 |
<?php
//creation de la session ... inclusion du code ... verification de la session connect�e...
session_start();
include ('fonctions.php');
check_session();
include ('fonctionsDenTete.php');
//verification de la variable donnant le dialogue a atteindre
if(rand(1,3) == 3){
//on trouve le garde
$attente=0;
}else{
//on continue de dormir sur le banc
$attente=1;
}
if(!isset($_GET['etat'])){
//ajout ou supression d'energie
if(isset($_GET['Energie'])&&isset($_GET['AjoutOuSuppr'])){
ChangementEnergie($_GET['Energie'],$_GET['AjoutOuSuppr']);
}
}
?>
<html>
<head>
<title>Ville de Dragons</title>
<link rel='stylesheet' href='Style.css' type='text/css'>
</head>
<body>
<?php
AfficheBarreDEtat(0);
?>
<table border="0" height="100%" width="100%">
<tr>
<td valign="center">
<table border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td width="400">
<?php
switch($attente){
case 0:
//arriv�e
echo "<p align='left'>Vous sentez quelque chose vous bousculer violemment... Peu de temps apr�s �tre sortit des bras de Morph�e vous voyer un visage avec un gros casque sur le cr�ne qui vous crie dans les oreilles...</p><p align='left'>- ALLEZ DEBOUT ! ! C'est pas le moment de DORMIR !</p>"
."<center><img src='images/fioriture.png'></center>"
."<a href='D_Gardes.php?dialogueGarde=4'>[Continuer]</a>";
break;
case 1:
//on trouve le repos
echo "<p align='left'>Vous ne fermez pas l'oeil,</p>";
echo "<center><img src='images/fioriture.png'></center>";
echo "<br><a href='parc.php'>Arreter de dormir</a>"
."<br><a href='dormir.php?Energie=5&AjoutOuSuppr=0'>Continuer de dormir sur le banc</a>";
break;
}
?>
</td>
<td width="300">
<table border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td background="images/bordure_01.gif" width="14" height="19">
</td>
<td background="images/bordure_02.gif" width="272" height="19">
</td>
<td background="images/bordure_03.gif" width="14" height="19">
</td>
</tr>
<tr>
<td background="images/bordure_04.gif" width="14" height="193">
</td>
<td width="272" height="193" align="center" valign="center">
<?php
echo "<img src='images/dessins/dormir.jpg' border ='0' width='272' height='193'>";
?>
</td>
<td background="images/bordure_06.gif" width="14" height="193">
</td>
</tr>
<tr>
<td background="images/bordure_07.gif" width="14" height="18">
</td>
<td background="images/bordure_08.gif" width="3" height="18">
</td>
<td background="images/bordure_09.gif" width="14" height="18">
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
<?php
mysql_close();
?>
|