12 lines
577 B
PHP
12 lines
577 B
PHP
|
<?php
|
||
|
|
||
|
$template = <<<END
|
||
|
{{avatar}}<br />
|
||
|
You are fighting <b>{{charname}}</b>.<br />
|
||
|
{{charname}}'s HP: {{currenthp}}<br /><br />
|
||
|
{{message}}
|
||
|
You attack {{charname}} for (<span style="color: black; font-weight: bold;">{{playerphysdamage}}</span>|<span style="color: green; font-weight: bold;">{{playermagicdamage}}</span>|<span style="color: red; font-weight: bold;">{{playerfiredamage}}</span>|<span style="color: blue; font-weight: bold;">{{playerlightdamage}}</span>) damage.<br /><br />
|
||
|
<iframe src="pvpmini.php" width="470" height="50" frameborder="0"></iframe>
|
||
|
END;
|
||
|
|
||
|
?>
|