9 lines
335 B
PHP
9 lines
335 B
PHP
|
<?php
|
||
|
|
||
|
$template = <<<END
|
||
|
If you think you're tough enough, you can challenge other players in the game to a duel. Players must be online and in this town. Click one of the players in the list below to challenge them!<br /><br />
|
||
|
{{list}}<br />
|
||
|
If you've changed your mind, you may also return to <a href="index.php">town</a>.
|
||
|
END;
|
||
|
|
||
|
?>
|