More updates to level listing
This commit is contained in:
parent
d89f4954ba
commit
626e4ba05e
|
@ -9,7 +9,20 @@ nethack.net - ratcatcher level screenshots
|
|||
<br>
|
||||
<table border=1 align=center>
|
||||
<script language="php">
|
||||
for ($w = 1; $w <= 3; $w++) {
|
||||
|
||||
function getworldname($wld) {
|
||||
if ($wld == 1) {
|
||||
return "Forest";
|
||||
} else if ($wld == 2) {
|
||||
return "Beach";
|
||||
} else if ($wld == 3) {
|
||||
return "Kitchen";
|
||||
} else if ($wld == 4) {
|
||||
return "Snow";
|
||||
}
|
||||
}
|
||||
|
||||
for ($w = 1; $w <= 4; $w++) {
|
||||
echo "<tr>\n";
|
||||
printf("<th colspan=4>World %d</th>\n",$w);
|
||||
echo "</tr>\n";
|
||||
|
|
Loading…
Reference in New Issue