9 lines
290 B
PHP
9 lines
290 B
PHP
|
<?php
|
||
|
|
||
|
$template = <<<END
|
||
|
Your Spell Points have been distributed.<br /><br />
|
||
|
You now have {{levelspell}} points remaining to be used.<br /><br />
|
||
|
You may now go back to your <a href="users.php?do=profile">Extended Profile</a> or continue <a href="index.php">playing the game</a>.
|
||
|
END;
|
||
|
|
||
|
?>
|