035a48fbfe
2.26.2006 - Build 14 (Pete Rose): - The poor sods who are stuck on dial-up can now select to not show the minimap in their account settings. - Fixed a problem with guild names in paneltop. - Fixed minor bug in account settings that caused a server error when not changing your password. - Manually logging out of the game now resets your onlinetime so you no longer appear in Who's Online. - Letting a duel time out after it's been accepted now counts against your duelling wins/losses. - Overhauled dorow() to allow forcing array indexes by a specific column. Modified several functions accordingly. - Guild Honor is now shown correctly on the main Guild Hall page immediately after an update. - Guild shoutboxes now add the guild ID from userrow instead of in the GET request. More secure. - Guild minimim join/start levels are now admin-editable in controlrow. - updateuserrow() now array_maps addslashes to allow apostrophes in item names.
20 lines
712 B
PHP
20 lines
712 B
PHP
<?php
|
|
|
|
$template = <<<END
|
|
<div class="big"><b>Location</b></div>
|
|
{{action}} {{townname}}<br />
|
|
Realm: {{worldname}}<br />
|
|
Latitude: {{latitude}}<br />
|
|
Longitude: {{longitude}}<br /><br />
|
|
<center>
|
|
<a href="index.php?do=explore&dir=n"><img src="images/compass_01.png" alt="North" title="North" /></a><br />
|
|
<a href="index.php?do=explore&dir=w"><img src="images/compass_02.png" alt="West" title="West" /></a><a href="index.php?do=explore&dir=e"><img src="images/compass_03.png" alt="East" title="East" /></a><br />
|
|
<a href="index.php?do=explore&dir=s"><img src="images/compass_04.png" alt="South" title="South" /></a><br /><br />
|
|
{{minimap}}
|
|
</center>
|
|
<div class="big"><b>Travel To</b></div>
|
|
{{travelto}}
|
|
|
|
END;
|
|
|
|
?>
|