forked from NB-Core/lotgd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rock.php
45 lines (36 loc) · 1.57 KB
/
rock.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?php
// translator ready
// addnews ready
// mail ready
require_once("common.php");
require_once("lib/villagenav.php");
require_once("lib/commentary.php");
tlschema("rock");
// This idea is Imusade's from lotgd.net
if ($session['user']['dragonkills']>0 ||
$session['user']['superuser'] & SU_EDIT_COMMENTS){
addcommentary();
}
checkday();
addnav("Navigation");
villagenav();
if ($session['user']['dragonkills']>0 ||
$session['user']['superuser'] & SU_EDIT_COMMENTS){
page_header("The Veteran's Club");
output("`b`c`2The Veteran's Club`0`c`b");
output("`n`n`4Something in you compels you to examine the curious rock. Some dark magic, locked up in age old horrors.`n`n");
output("When you arrive at the rock, an old scar on your arm begins to throb in succession with a mysterious light that now seems to come from the rock. ");
output("As you stare at it, the rock shimmers, shaking off an illusion. You realize that this is more than a rock. ");
output("It is, in fact, a doorway, and over the threshold you see others bearing an identical scar to yours. ");
output("It somehow reminds you of the head of one of the great serpents from legend.`n`n");
output("You have discovered The Veteran's Club.`n`n");
modulehook("rock");
commentdisplay("", "veterans","Boast here",30,"boasts");
}else{
page_header("Curious looking rock");
output("You approach the curious looking rock. ");
output("After staring and looking at it for a little while, it continues to look just like a curious looking rock.`n`n");
output("Bored, you decide to leave the rock alone.");
}
page_footer();
?>