You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
942 B

13 years ago
<?php
/*
*
* @copyright (c) 2010 animegame.eu
* @license http://www.gnu.org/licenses/gpl-3.0.html GNU General Public Licence
*
*/
####################KAMPF HP SPIELER 1
if($technick1[type] == hp) {
$k_mp[0] = $k_mp[0] - $technick1[mp];
if($k_mp[0] < 0) {
$k_mp[0] = 0;
$schaden_1 = "Keine MP";
$aktion_AV1[$x] = "nein";
} else {
$k_hp[0] = $k_hp[0] + (($k_hp1[1] / 100) * $technick1[hp]);
if($k_hp1[1] < $k_hp[0]) { $k_hp[0] = $k_hp1[1]; }
$schaden_1 = "+ $technick1[hp]% HP";
$aktion_AV1[$x] = "nein";
}}
####################KAMPF HP SPIELER 2
if($technick2[type] == hp) {
$k_mp[1] = $k_mp[1] - $technick2[mp];
if($k_mp[1] < 0) {
$k_mp[1] = 0;
$schaden_2 = "Keine MP";
$aktion_AV2[$x] = "nein";
} else {
$k_hp[1] = $k_hp[1] + (($k_hp2[1] / 100) * $technick2[hp]);
if($k_hp2[1] < $k_hp[1]) { $k_hp[1] = $k_hp2[1]; }
$schaden_2 = "+ $technick2[hp]% HP";
$aktion_AV2[$x] = "nein";
}}
?>