|
|
|
@ -29,7 +29,7 @@ function erstelleChar($user, $specialcharname, $newname = '', $picture = '', $lv
|
|
|
|
|
$special_char = false;
|
|
|
|
|
$dbz = 'Dragonball';
|
|
|
|
|
$op = 'Onepiece';
|
|
|
|
|
$c_type = '';
|
|
|
|
|
$c_type = '';
|
|
|
|
|
|
|
|
|
|
if($newname == ''){
|
|
|
|
|
displayErrorMessage(NULL,'Name ist nicht erlaubt!!',displayHistoryBackLink());
|
|
|
|
@ -157,16 +157,7 @@ function erstelleChar($user, $specialcharname, $newname = '', $picture = '', $lv
|
|
|
|
|
$Gluck += $lck;
|
|
|
|
|
$Ausdauer += $end;
|
|
|
|
|
$trainingspoints += $lp*2;
|
|
|
|
|
|
|
|
|
|
echo 'HP:'.$HP.'<br>';
|
|
|
|
|
echo 'HP:'.$MP.'<br>';
|
|
|
|
|
echo 'STR:'.$Starke.'<br>';
|
|
|
|
|
echo 'DEF:'.$Verteidigung.'<br>';
|
|
|
|
|
echo 'SPD:'.$Geschwindigkeit.'<br>';
|
|
|
|
|
echo 'LCK:'.$Gluck.'<br>';
|
|
|
|
|
echo 'END:'.$Ausdauer.'<br>';
|
|
|
|
|
echo 'TP:'.$trainingspoints.'<br>';
|
|
|
|
|
echo 'LVL:'.$lvl.'<br>';
|
|
|
|
|
$LP = ($lvl - 1) * 10;
|
|
|
|
|
|
|
|
|
|
// Ueberprüfe ob ein Slot frei ist
|
|
|
|
|
$chars = getCharsOfUser($user['id']);
|
|
|
|
@ -191,8 +182,7 @@ function erstelleChar($user, $specialcharname, $newname = '', $picture = '', $lv
|
|
|
|
|
displayErrorMessage(NULL,'Alle Slots sind schon belegt!!',displayHistoryBackLink());
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
// Slotüberprüfung beendet!
|
|
|
|
|
echo 'Slotüberprüfung abgeschlossen!<br>';
|
|
|
|
|
// Slotüberprüfung beendet!
|
|
|
|
|
$sql = 'Insert into chars(name, starke, verteidigung, speed, glueck, ausdauer, hp, mp, level, type, rasse, besitzer, char_type, training_points, lernpunkte, bild, exp) ' .
|
|
|
|
|
'values(\''.$newname.'\',' .
|
|
|
|
|
' '.$Starke.',' .
|
|
|
|
@ -208,13 +198,12 @@ function erstelleChar($user, $specialcharname, $newname = '', $picture = '', $lv
|
|
|
|
|
' '.$user['id'].',' .
|
|
|
|
|
' \''.$c_type.'\',' .
|
|
|
|
|
' '.$trainingspoints.',' .
|
|
|
|
|
' 0, ' .
|
|
|
|
|
' '.$LP.',' .
|
|
|
|
|
'\''.$picture.'\', '.
|
|
|
|
|
'\'0,'.calculateRequiredExpChars($lvl).'\'' .
|
|
|
|
|
')';
|
|
|
|
|
echo $sql.'<br>';
|
|
|
|
|
$identifier = mysql_query($sql);
|
|
|
|
|
echo $identifier;
|
|
|
|
|
//echo $sql.'<br>';
|
|
|
|
|
$identifier = mysql_query($sql);
|
|
|
|
|
if($identifier == FALSE){
|
|
|
|
|
if(mysql_fetch_assoc(mysql_query('Select * from chars where name = \''.$newname.'\''))){
|
|
|
|
|
displayErrorMessage(NULL,'Name schon vorhanden!!',displayHistoryBackLink());
|
|
|
|
|