1 | 1 |
new file mode 100755 |
... | ... |
@@ -0,0 +1,120 @@ |
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 |
+/*variable de session Couple |
|
9 |
+0:rien ne s'est passer |
|
10 |
+1:l'homme est sortie |
|
11 |
+2:la femme est sortie |
|
12 |
+3:les deux sont sortit |
|
13 |
+4:les deux sont revenus dans leur maison |
|
14 |
+5:le couple est de nouveau r�uni |
|
15 |
+*/ |
|
16 |
+ //verification de la variable donnant le dialogue a atteindre |
|
17 |
+ if(!isset($_GET['evenement'])){ |
|
18 |
+ $evenement=0; |
|
19 |
+ }else{ |
|
20 |
+ $evenement=$_GET['evenement']; |
|
21 |
+ } |
|
22 |
+?> |
|
23 |
+<html> |
|
24 |
+<head> |
|
25 |
+<title>Ville de Dragons</title> |
|
26 |
+<link rel='stylesheet' href='Style.css' type='text/css'> |
|
27 |
+</head> |
|
28 |
+<body> |
|
29 |
+<?php |
|
30 |
+ AfficheBarreDEtat(0); |
|
31 |
+?> |
|
32 |
+<table border="0" height="100%" width="100%"> |
|
33 |
+ <tr> |
|
34 |
+ <td valign="center"> |
|
35 |
+ <table border="0" cellspacing="0" cellpadding="0" align="center"> |
|
36 |
+ <tr> |
|
37 |
+ <td width="400"> |
|
38 |
+ <?php |
|
39 |
+ switch($evenement){ |
|
40 |
+ case 0: |
|
41 |
+ if($_SESSION['couple']==1){ |
|
42 |
+ $perso="une femme en pleurs assise sur le lit"; |
|
43 |
+ }else{ |
|
44 |
+ $perso="un homme qui a l'air triste au fond de la pi�ce vous regardant"; |
|
45 |
+ } |
|
46 |
+ //il y a quelqu'un |
|
47 |
+ echo "<p align='left'>Vous voyez ".$perso.".</p><p align='left'>La maison est joliment d�cor�e, sur la table se trouve des assiettes et des verres, ainsi qu'un vase vide. Une commode meuble le mur o� se trouve la fen�tre, sur celle-ci on peut y trouver un coffre et trois bagues. Il y a aussi un po�le contre le mur du fond.</p>"; |
|
48 |
+ if($_SESSION['couple']==1){ |
|
49 |
+ //vol possible suivant int et sag |
|
50 |
+ echo "<br>La femme ne remarque m�me pas votre pr�sence"; |
|
51 |
+ }else{ |
|
52 |
+ //ton en fonction du charisme |
|
53 |
+ echo "<br>L'homme s'avance vers vous, et vous adresse la parole sur un ton triste et las, comme s'il voulait en finir avec la vie..."; |
|
54 |
+ } |
|
55 |
+ break; |
|
56 |
+ case 1: |
|
57 |
+ //il n'y a personne |
|
58 |
+ break; |
|
59 |
+ case 2: |
|
60 |
+ //le couple est r�uni |
|
61 |
+ break; |
|
62 |
+ } |
|
63 |
+ ?> |
|
64 |
+ </td> |
|
65 |
+ <td width="300"> |
|
66 |
+ <table border="0" cellspacing="0" cellpadding="0" align="center"> |
|
67 |
+ <tr> |
|
68 |
+ <td background="images/bordure_01.gif" width="14" height="19"> |
|
69 |
+ </td> |
|
70 |
+ <td background="images/bordure_02.gif" width="272" height="19"> |
|
71 |
+ </td> |
|
72 |
+ <td background="images/bordure_03.gif" width="14" height="19"> |
|
73 |
+ </td> |
|
74 |
+ </tr> |
|
75 |
+ <tr> |
|
76 |
+ <td background="images/bordure_04.gif" width="14" height="193"> |
|
77 |
+ </td> |
|
78 |
+ <td width="272" height="193" align="center" valign="center"> |
|
79 |
+ <?php |
|
80 |
+ echo "<div style='position:relative;top:0;left:0'><img src='images/dessins/Maison_Croisement.jpg' border ='0' width='272' height='193'></div>"; |
|
81 |
+ switch($_SESSION['couple']){ |
|
82 |
+ case 1: |
|
83 |
+ echo "<div style='position:absolute;top:199;left:420'><img src='images/dessins/Maison_Croisement_FPleurs.png' border ='0' width='272' height='193'></div>"; |
|
84 |
+ break; |
|
85 |
+ case 2: |
|
86 |
+ echo "<div style='position:absolute;top:199;left:420'><img src='images/dessins/Maison_Croisement_HPleurs.png' border ='0' width='272' height='193'></div>"; |
|
87 |
+ break; |
|
88 |
+ case 5: |
|
89 |
+ echo "<div style='position:absolute;top:199;left:420'><img src='images/dessins/Maison_Croisement_FHBisous.png' border ='0' width='272' height='193'></div>"; |
|
90 |
+ break; |
|
91 |
+ default: |
|
92 |
+ } |
|
93 |
+ if($_SESSION['bagueMaisonCouple']==0){ |
|
94 |
+ echo "<div style='position:absolute;top:199;left:420'><img src='images/dessins/Maison_Croisement_bagues.png' border ='0' width='272' height='193'></div>"; |
|
95 |
+ } |
|
96 |
+ ?> |
|
97 |
+ </td> |
|
98 |
+ <td background="images/bordure_06.gif" width="14" height="193"> |
|
99 |
+ </td> |
|
100 |
+ </tr> |
|
101 |
+ <tr> |
|
102 |
+ <td background="images/bordure_07.gif" width="14" height="18"> |
|
103 |
+ </td> |
|
104 |
+ <td background="images/bordure_08.gif" width="3" height="18"> |
|
105 |
+ </td> |
|
106 |
+ <td background="images/bordure_09.gif" width="14" height="18"> |
|
107 |
+ </td> |
|
108 |
+ </tr> |
|
109 |
+ </table> |
|
110 |
+ </td> |
|
111 |
+ </tr> |
|
112 |
+ </table> |
|
113 |
+ </td> |
|
114 |
+ </tr> |
|
115 |
+</table> |
|
116 |
+</body> |
|
117 |
+</html> |
|
118 |
+<?php |
|
119 |
+ mysql_close(); |
|
120 |
+?> |
|
0 | 121 |
\ No newline at end of file |