Anpassung der HP und MP an die richtigen Werte

main
radiskull 13 years ago
parent 5e9b247234
commit 6db4c3bf4d

@ -242,12 +242,12 @@ function handleThirdPhaseForTester($type, $name, $char_lvl){
<td><?php echo $lp?></td>
</tr>
<tr>
<th align="left">HP (1LP = 20HP): </th>
<th align="left">HP (1LP = 10HP): </th>
<td><input name="hp" value = "0" id="input">
</td>
</tr>
<tr>
<th align="left">MP (1LP = 10MP): </th>
<th align="left">MP (1LP = 5MP): </th>
<td><input name="mp" value = "0" id="input">
</td>
</tr>

@ -149,8 +149,8 @@ function erstelleChar($user, $specialcharname, $newname = '', $picture = '', $lv
// If-Anweisungen ende
// Werte hinzufügen, falls ein Testcharakter erstellt wird
$HP += ($hp*20);
$MP += ($mp*10);
$HP += ($hp*10);
$MP += ($mp*5);
$Starke += $str;
$Verteidigung += $def;
$Geschwindigkeit += $spd;

Loading…
Cancel
Save