1 | 1 |
new file mode 100755 |
... | ... |
@@ -0,0 +1,86 @@ |
1 |
+<?php |
|
2 |
+//creation de la session ... inclusion du code ... verification de la session connect�e... |
|
3 |
+session_start(); |
|
4 |
+include ('fonctions.php'); |
|
5 |
+check_session(); |
|
6 |
+include ('fonctionsDenTete.php'); |
|
7 |
+?> |
|
8 |
+<html> |
|
9 |
+<head> |
|
10 |
+<title>Ville de Dragons</title> |
|
11 |
+<link rel='stylesheet' href='Style.css' type='text/css'> |
|
12 |
+</head> |
|
13 |
+<body> |
|
14 |
+<?php |
|
15 |
+ AfficheBarreDEtat(0); |
|
16 |
+?> |
|
17 |
+<table border="0" height="100%" width="100%"> |
|
18 |
+ <tr> |
|
19 |
+ <td valign="center"> |
|
20 |
+ <table border="0" cellspacing="0" cellpadding="0" align="center"> |
|
21 |
+ <tr> |
|
22 |
+ <td width="400"> |
|
23 |
+ <?php |
|
24 |
+ echo "Vous voici dans la partie Est du village, il s'y trouve une �glise respectable o� le pr�tre sert la messe trois fois par jour, un forgeron n'ayant pas peur du vide ainsi que la maison du propri�taire terrien de ce petit hameau, il lui arrive parfois de donner du travail aux nouveaux arrivants..."; |
|
25 |
+ $rencontre= rand(1,5); |
|
26 |
+ if ($rencontre==5){ |
|
27 |
+ $_SESSION['pagePrecedente'] = "croisement.php"; |
|
28 |
+ echo "<p align='left'>Vous croisez un garde, il se tient devant vous raide comme un baton dans son armure int�grale, la garde sur l'�p�e en vous d�visageant...</p>"; |
|
29 |
+ } |
|
30 |
+ echo "<center><img src='images/fioriture.png'></center>"; |
|
31 |
+ if ($rencontre==5 && $_SESSION['nudite']==1){ |
|
32 |
+ echo "<a href='D_Gardes.php'>[Suite]</a>"; |
|
33 |
+ }else{ |
|
34 |
+ if($rencontre == 5){ |
|
35 |
+ echo "<a href='D_Gardes.php'>Regarder le garde fixement...</a><br>"; |
|
36 |
+ } |
|
37 |
+ echo "<a href='taverne.php'>Retourner � la taverne</a>" |
|
38 |
+ ."<br><a href='Eglise.php'>Allez � l'�glise</a>" |
|
39 |
+ ."<br><a href='Forgeron.php'>Allez chez le forgeron</a>" |
|
40 |
+ ."<br><a href='maisonTravailleur.php'>Allez chez le maitre des ouvriers</a>" |
|
41 |
+ ."<br><a href='foret.php'>Rentrer dans la for�t</a>"; |
|
42 |
+ echo "<br><a href='croisement.php'>Retourner au croisement</a>"; |
|
43 |
+ } |
|
44 |
+ ?> |
|
45 |
+ </td> |
|
46 |
+ <td width="300"> |
|
47 |
+ <table border="0" cellspacing="0" cellpadding="0" align="center"> |
|
48 |
+ <tr> |
|
49 |
+ <td background="images/bordure_01.gif" width="14" height="19"> |
|
50 |
+ </td> |
|
51 |
+ <td background="images/bordure_02.gif" width="272" height="19"> |
|
52 |
+ </td> |
|
53 |
+ <td background="images/bordure_03.gif" width="14" height="19"> |
|
54 |
+ </td> |
|
55 |
+ </tr> |
|
56 |
+ <tr> |
|
57 |
+ <td background="images/bordure_04.gif" width="14" height="193"> |
|
58 |
+ </td> |
|
59 |
+ <td width="272" height="193" align="center" valign="center"> |
|
60 |
+ <?php |
|
61 |
+ echo "<img src='images/dessins/croisementDroite.jpg' border ='0' width='272' height='193'>"; |
|
62 |
+ ?> |
|
63 |
+ </td> |
|
64 |
+ <td background="images/bordure_06.gif" width="14" height="193"> |
|
65 |
+ </td> |
|
66 |
+ </tr> |
|
67 |
+ <tr> |
|
68 |
+ <td background="images/bordure_07.gif" width="14" height="18"> |
|
69 |
+ </td> |
|
70 |
+ <td background="images/bordure_08.gif" width="3" height="18"> |
|
71 |
+ </td> |
|
72 |
+ <td background="images/bordure_09.gif" width="14" height="18"> |
|
73 |
+ </td> |
|
74 |
+ </tr> |
|
75 |
+ </table> |
|
76 |
+ </td> |
|
77 |
+ </tr> |
|
78 |
+ </table> |
|
79 |
+ </td> |
|
80 |
+ </tr> |
|
81 |
+</table> |
|
82 |
+</body> |
|
83 |
+</html> |
|
84 |
+<?php |
|
85 |
+ mysql_close(); |
|
86 |
+?> |