From 6db4c3bf4deecc5119b19dfab2642e768955b4c0 Mon Sep 17 00:00:00 2001 From: radiskull Date: Thu, 21 Jul 2011 20:54:41 +0000 Subject: [PATCH] Anpassung der HP und MP an die richtigen Werte --- ag/char.php | 4 ++-- ag/include/erstellfunctions.inc.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ag/char.php b/ag/char.php index bfb0ba1..f896c50 100644 --- a/ag/char.php +++ b/ag/char.php @@ -242,12 +242,12 @@ function handleThirdPhaseForTester($type, $name, $char_lvl){ - HP (1LP = 20HP): + HP (1LP = 10HP): - MP (1LP = 10MP): + MP (1LP = 5MP): diff --git a/ag/include/erstellfunctions.inc.php b/ag/include/erstellfunctions.inc.php index 093988c..16b7a87 100644 --- a/ag/include/erstellfunctions.inc.php +++ b/ag/include/erstellfunctions.inc.php @@ -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;