rpg statistic problem

:::Aioria:::

New Member
the Bars rpg not stop growing any idea? :rolleyes:
miofb5.png

the code:
Code:
RPG Stats 1.2

How To Install -

Upload the provided XML file

Add the following to your postbit or postbit_legacy template
where you see fit.

<div>
$vbphrase[posts]: $post[posts]
</div>

add

<div class="smallfont">Level: $showlevel<br />
HP: $hp / $maxhp<br />
MP: $mp / $maxmp<br />
EXP: $ep% <br />
</div>

If you want a prettier stats

You can use this code which was provided by haiboss (http://www.vbulletin.org/forum/member.php?userid=106918)

Please upload the level folder found in the zip to your images folder /misc/

Level: $showlevel<br />
HP: $hp / $maxhp
<table width="100%" >
<tr style="background-image:url($stylevar[imgdir_misc]/level/red_faded.gif)"> 
<td nowrap="nowrap" ><img src="$stylevar[imgdir_misc]/level/red_left.gif" height="8"><img src="$stylevar[imgdir_misc]/level/red.gif" width="$hpf% " height="8" /><img src="$stylevar[imgdir_misc]/level/red_faded_right.gif" width="1" height="8" /></td>
</tr>
</table>
<span>MP: $mp / $maxmp</span>
<table width="100%" >
<tr style="background-image:url($stylevar[imgdir_misc]/level/green_faded.gif)"> 
<td nowrap="nowrap" ><img src="$stylevar[imgdir_misc]/level/green_left.gif" height="8"><img src="$stylevar[imgdir_misc]/level/green.gif" width="$mp / $maxmp" height="8" /><img src="$stylevar[imgdir_misc]/level/green_faded_right.gif" width="1" height="8" /></td>
</tr>
</table>
<span>EXP: $ep% </span> 
<table width="100%" >
<tr style="background-image:url($stylevar[imgdir_misc]/level/grey_faded.gif)"> 
<td nowrap="nowrap"><img src="$stylevar[imgdir_misc]/level/grey_left.gif" height="8"><img src="$stylevar[imgdir_misc]/level/grey.gif" width="$ep%" height="8" /><img src="$stylevar[imgdir_misc]/level/grey_faded_right.gif" width="1" height="8" /></td>
</tr>
</table>
pdt :sorry may move to the area corresponding me wrong
 
Back
Top