Initial commit

This commit is contained in:
root
2020-08-17 19:16:42 -04:00
commit 61584e0eb2
600 changed files with 50518 additions and 0 deletions

View File

@ -0,0 +1,22 @@
<?php
// translator ready
// addnews ready
// mail ready
function getmountname()
{
global $playermount;
tlschema("mountname");
$name = '';
$lcname = '';
if (isset($playermount['mountname'])) {
$name = sprintf_translate("Your %s", $playermount['mountname']);
$lcname = sprintf_translate("your %s", $playermount['mountname']);
}
tlschema();
if (isset($playermount['newname']) && $playermount['newname'] != "") {
$name = $playermount['newname'];
$lcname = $playermount['newname'];
}
return array($name, $lcname);
}
?>