diff --git a/ag/info/attacken.php b/ag/info/attacken.php index 4e5a607..eb9407b 100644 --- a/ag/info/attacken.php +++ b/ag/info/attacken.php @@ -6,6 +6,8 @@ * */ include_once (ROOT_PATH . '//include/config.inc.php'); +include_once (ROOT_PATH . '//include/sqlwrapper.inc.php'); +include_once (ROOT_PATH . '//include/rassen.inc.php'); include_once (ROOT_PATH . '//include/designfunctions.inc.php'); // TODO: Muss noch angepasst werden! @@ -148,6 +150,35 @@ function showAttDetails($at_id) {
- Alle Attacken | - Dragon-Ball | - One Piece | - Teufelsfrüchte + Alle Attacken + '.$choice['name'].''; + } + ?> |
- Pirat
- - Schwert Kämpfer
- - Grandline Maschine
- - Shichibukai - - Mensch - - Saiyajin - - Dämon - - Mutant - - Cyborg - - Namekianer - - Kaioshin - - Parameciafrüchte - - Zoanfrüchte - - Logiafrüchte - '.$race['name'].''; + } + } else if($type == -1) { // TF's + $links[] = 'Parameciafrüchte'; + $links[] = 'Zoanfrüchte'; + $links[] = 'Logiafrüchte'; } + echo implode(' - ', $links); + + ?> - + |
'.$tf_array['item'].''; - } - + $condition = getFruchtCondition($fruchttyp); + $tf_query = db_query('SELECT * FROM wochen_markt WHERE '.$condition.' 1 ORDER BY item ASC'); + $first = true; + while ($tf_array= mysql_fetch_assoc($tf_query)) { + if($first) { + $first = false; + } else { + echo ' - '; + } + echo ''.$tf_array['item'].''; + } ?> | @@ -458,9 +446,9 @@ if ($order) { #$rassen1 = $rassen +1; #$linkz = "seiten=$seiten&order_art=$order_art&last_klick1=$last_klick1&rassen=$rassen1&teufel=$teufel"; if (!empty($type) AND empty($fruchttyp)) { - $linkz = 'type=tf&pagenum='.$pagenum.'&order_art='.$order_art.'&last_klick1='.$last_klick1.'&rassen='.$rassen.'&teufel='.$teufel; + $linkz = 'type='.$type.'&pagenum='.$pagenum.'&order_art='.$order_art.'&last_klick1='.$last_klick1.'&rassen='.$rassen.'&teufel='.$teufel; } elseif (!empty($type) AND !empty($fruchttyp)) { - $linkz = 'type=tf&fruchttyp='.$fruchttyp.'&pagenum='.$pagenum.'&order_art='.$order_art.'&last_klick1='.$last_klick1.'&rassen='.$rassen.'&teufel='.$teufel; + $linkz = 'type='.$type.'&fruchttyp='.$fruchttyp.'&pagenum='.$pagenum.'&order_art='.$order_art.'&last_klick1='.$last_klick1.'&rassen='.$rassen.'&teufel='.$teufel; } else { $linkz = 'pagenum='.$pagenum.'&order_art='.$order_art.'&last_klick1='.$last_klick1.'&rassen='.$rassen.'&teufel='.$teufel; }