10 lines
279 B
PHP
10 lines
279 B
PHP
|
<?php
|
||
|
|
||
|
$template = <<<END
|
||
|
Buying Maps will put the town in your Travel To box, for fast travel around the Realm.<br /><br />
|
||
|
Click a town name to purchase its map.<br /><br />
|
||
|
{{maptable}}
|
||
|
If you've changed your mind, you may also return to <a href="index.php">town</a>.
|
||
|
END;
|
||
|
|
||
|
?>
|