Im GM-Panel wurde extra noch ein Menü zur Einstellung der Gebühr eingebaut.
main
radiskull 13 years ago
parent 26696dedce
commit 36e5dacfcf

@ -261,7 +261,7 @@ function displayClanProfileEditable($clan, $userid){
$member = array();
$count = mysql_num_rows($member_qry);
while($row = mysql_fetch_assoc($member_qry)){
$tmp = displayUserLinkByID($row['id']);
$tmp = generateUserLinkByID($row['id']);
$kickable = true;
if($row['id'] == $clan['leader']){

@ -10,6 +10,7 @@ include_once (ROOT_PATH . '/include/designfunctions.inc.php');
include_once (ROOT_PATH . '/include/fehlerausgabe.inc.php');
include_once (ROOT_PATH . '/include/parse.inc.php');
include_once (ROOT_PATH . '/include/clan.inc.php');
include_once (ROOT_PATH . '/include/user.inc.php');
// GET-Section
// Kritisch (SQL-Injections)
@ -22,84 +23,107 @@ $clan_info = validateString($_GET['clan_info']);
$user = $user_ida;
$charm = $_GET['charm'];
//Defines
defineIfNotDefined("CLAN_CREATION_FEE", 20000);
if ($charm == 1) {
$error = null;
if (!$clan_for AND !$clan_back) {
displayErrorMessage(NULL, 'Sie müssen ein Clanzeichen haben.', displayHistoryBackLink());
exit;
$error .= 'Sie m&uuml;ssen ein Clanzeichen haben.<br>';
}
if(strlen($clan_for.$clan_back) > MAX_CHARS_CLANSIGN) {
displayErrorMessage(NULL, 'Clanzeichen sind ungültig: Summe aus beiden Teilen darf nicht größer als '.MAX_CHARS_CLANSIGN.' Zeichen sein!.', displayHistoryBackLink());
exit;
$error .= 'Clanzeichen sind ungültig: Summe aus beiden Teilen darf nicht größer als '.MAX_CHARS_CLANSIGN.' Zeichen sein!.<br>';
}
if (!$clan_name) {
displayErrorMessage(NULL, 'Sie m&uuml;ssen einen Clannamen haben.', displayHistoryBackLink());
exit;
$error .= 'Sie m&uuml;ssen einen Clannamen haben.<br>';
}
if ($user['clan'] != 0) {
displayErrorMessage(NULL, 'Sie haben schon einen Clan.', displayHistoryBackLink());
exit;
$error .= 'Sie haben schon einen Clan.<br>';
}
$money = getRelevantMoney($user['id']);
if ($money < CLAN_CREATION_FEE) {
$error .= 'Sie haben nicht genug Geld um einen Clan gr&uuml;nden zu k&ouml;nnen.<br>';
}
$sql = 'SELECT id, clanname FROM clan WHERE clanname = \'' .$clan_name. '\'';
// echo $sql.'<br>';
// echo $sql.'<br>';
$dup = mysql_fetch_assoc(mysql_query($sql));
if($dup) {
// we have a clan that has the same name!!
displayErrorMessage(NULL, 'Es gibt schon einen Clan mit dem Namen '.$clan_name.'.', displayHistoryBackLink());
exit;
$error .= 'Es gibt schon einen Clan mit dem Namen '.$clan_name.'.';
}
$sql = 'INSERT into clan(clanname,clanz_pre,clanz_suff,info, leader) values(\''.$clan_name.'\', \''.$clan_for.'\', \''.$clan_back.'\', \''.$clan_info.'\', '.$user_ida['id'].')';
// echo $sql.'<br>';
mysql_query($sql);
if(mysql_affected_rows() > 0){ // Erstellen des Clans geglueckt
$c_id = mysql_fetch_assoc(mysql_query('Select * from clan where clanname = \''.$clan_name.'\''));
mysql_query('UPDATE user SET clan='.$c_id['id'].' WHERE id='.$user_ida['id']);
displayErrorMessage(NULL, 'Clan erfolgreich Erstellt.', '<a href="index.php?as=clan/clan_info">weiter...</a>');
} else{
$sql = 'Select * from clan where clanname = \''.$clan_name.'\'';
$c_id = mysql_fetch_assoc(mysql_query($sql));
if($c_id){
$error = 'Clanname besteht schon!';
if($error == null) {
$sql = 'INSERT into clan(clanname,clanz_pre,clanz_suff,info, leader) values(\''.$clan_name.'\', \''.$clan_for.'\', \''.$clan_back.'\', \''.$clan_info.'\', '.$user_ida['id'].')';
// echo $sql.'<br>';
mysql_query($sql);
if(mysql_affected_rows() > 0){ // Erstellen des Clans geglueckt
$c_id = mysql_fetch_assoc(mysql_query('Select * from clan where clanname = \''.$clan_name.'\''));
mysql_query('UPDATE user SET clan='.$c_id['id'].', geld = geld - '.CLAN_CREATION_FEE.' WHERE id='.$user_ida['id']);
displayErrorMessage(NULL, 'Clan erfolgreich Erstellt.', '<a href="index.php?as=clan/clan_info">weiter...</a>');
} else{
$error = 'Insert failed!';
$sql = 'Select * from clan where clanname = \''.$clan_name.'\'';
$c_id = mysql_fetch_assoc(mysql_query($sql));
if($c_id){
$error = 'Clanname besteht schon!';
} else{
$error = 'Insert failed!';
}
displayErrorMessage(NULL, 'Clan erstellen fehlgeschlagen! ('.$error.')', displayHistoryBackLink());
}
displayErrorMessage(NULL, 'Clan erstellen fehlgeschlagen! ('.$error.')', displayHistoryBackLink());
} else {
displayErrorMessage(NULL, $error , displayHistoryBackLink());
}
exit;
}
?>
} else {
?>
<form action="index.php" method="GET">
<input type="hidden" name="as" value="clan/new" />
<input type="hidden" name="charm" value="1" />
<input type="hidden" name="as" value="clan/new" /> <input type="hidden"
name="charm" value="1" />
<table cellpadding="0" cellspacing="0" width="100%">
<tr>
<th height="25" valign="top" width="557" colspan="2" align="center">Clan gr&uuml;nden</th>
</tr>
<tr>
<th height="25" width="162" valign="top" align="center">Clanname</th>
<td height="25" width="395" valign="top">&nbsp;<input name="clan_name"></td>
</tr>
<tr>
<th height="25" width="162" valign="top" align="center">Clanzeichen vorn</th>
<td height="25" width="395" valign="top">&nbsp;<input name="clan_for" size="5" maxlength="10"></td>
</tr>
<tr>
<th height="25" width="162" valign="top" align="center">Clanzeichen hinten</th>
<td height="25" width="395" valign="top">&nbsp;<input name="clan_back" size="5" maxlength="10"></td>
</tr>
<tr>
<th height="25" width="162" valign="top" align="center">Clan Info</th>
<td height="25" width="395" valign="top">&nbsp;<textarea rows="5" cols="30" name="clan_info"></textarea></td>
</tr>
<tr>
<td height="25" width="162" align="center" colspan="2"><input type="submit" value="Clan gr&uuml;nden"></td>
</tr>
</table>
<table cellpadding="0" cellspacing="0" width="100%">
<tr>
<th height="25" valign="top" width="557" colspan="2" align="center">Clan
gr&uuml;nden</th>
</tr>
<tr>
<th height="25" width="162" valign="top" align="center">Gründungsgebühr</th>
<td height="25" width="395" valign="top">&nbsp;<?php echo CLAN_CREATION_FEE;?>
</td>
</tr>
<tr>
<th height="25" width="162" valign="top" align="center">Clanname</th>
<td height="25" width="395" valign="top">&nbsp;<input
name="clan_name"></td>
</tr>
<tr>
<th height="25" width="162" valign="top" align="center">Clanzeichen
vorn</th>
<td height="25" width="395" valign="top">&nbsp;<input name="clan_for"
size="5" maxlength="10"></td>
</tr>
<tr>
<th height="25" width="162" valign="top" align="center">Clanzeichen
hinten</th>
<td height="25" width="395" valign="top">&nbsp;<input
name="clan_back" size="5" maxlength="10"></td>
</tr>
<tr>
<th height="25" width="162" valign="top" align="center">Clan Info</th>
<td height="25" width="395" valign="top">&nbsp;<textarea rows="5"
cols="30" name="clan_info"></textarea></td>
</tr>
<tr>
<td height="25" width="162" align="center" colspan="2"><input
type="submit" value="Clan gr&uuml;nden"></td>
</tr>
</table>
</form>
<?php
}
?>

@ -138,7 +138,7 @@ function displayOptions(){
</tr>
<tr>
<td>
<a href="<?php echo $_SERVER['PHP_SELF']; ?>?choose=clanitems">Clan-R&auml;ume bearbeiten</a>
<a href="<?php echo $_SERVER['PHP_SELF']; ?>?choose=clan">Clans bearbeiten</a>
</td>
</tr>
<tr>
@ -153,7 +153,7 @@ function displayOptions(){
</tr>
<tr>
<td>
<a href="<?php echo $_SERVER['PHP_SELF']; ?>?choose=tournament">Turniere</a>
<a href="<?php echo $_SERVER['PHP_SELF']; ?>?choose=tournament">Turniere bearbeiten</a>
</td>
</tr>
<tr>
@ -235,8 +235,8 @@ if(checkLoginData($_SESSION['user'],$_SESSION['password'])){
displayQuestNPC($_REQUEST['action'],$_REQUEST['npc_name'],$_REQUEST['starke'],$_REQUEST['speed'],$_REQUEST['verteidigung'],$_REQUEST['ausdauer'],$_REQUEST['hp'],$_REQUEST['mp'],$_REQUEST['level'],$_REQUEST['orte'],$_REQUEST['id'], $_REQUEST['anzahl'], $_REQUEST['confirm'], $_REQUEST['glueck']);
} else if($_REQUEST['choose'] == 'poll'){
displayPolls($_REQUEST['action'], $_REQUEST['openumfrage'], $_REQUEST['closeumfrage'],$_REQUEST['thema'],$_REQUEST['optionen'],$_REQUEST['text'],$_REQUEST['pollid']);
} else if($_REQUEST['choose'] == 'clanitems'){
displayClanItems($_REQUEST['action'],$_REQUEST['raumid'],$_REQUEST['raumname'],$_REQUEST['staerke'],$_REQUEST['verteidigung'],$_REQUEST['glueck'],$_REQUEST['ausdauer'],$_REQUEST['geschwindigkeit'], $_REQUEST['info'], $_REQUEST['req_level']);
} else if($_REQUEST['choose'] == 'clan'){
displayClanMenu($_REQUEST['action'],$_REQUEST['raumid'],$_REQUEST['raumname'],$_REQUEST['staerke'],$_REQUEST['verteidigung'],$_REQUEST['glueck'],$_REQUEST['ausdauer'],$_REQUEST['geschwindigkeit'], $_REQUEST['info'], $_REQUEST['req_level'], $_REQUEST['ccfee']);
} else if($_REQUEST['choose'] == 'drop'){
displayDrops();
} else if($_REQUEST['choose'] == 'news'){

@ -9,181 +9,313 @@
?>
<?php
function displayClanItems($action, $raumid, $raumname, $staerke, $verteidigung, $glueck, $ausdauer, $geschwindigkeit, $info, $level){
if($action == ''){
$raume_qry = mysql_query('SELECT * FROM clan_item order by tp');
?>
<table>
<tr>
<th align="center" colspan="11">Clanr&auml;ume bearbeiten</th>
</tr>
<tr><td>Name</td><td>St&auml;rke</td><td>Verteidigung</td><td>Gl&uuml;ck</td><td>Ausdauer</td><td>Geschwindigkeit</td><td>Kaufpreis</td><td>Miete</td><td>Nutzungsgeb&uuml;hr</td><td>TP</td><td>Level</td><td>bearbeiten</td></tr>
<?php
while($res = mysql_fetch_assoc($raume_qry)){
echo '<tr><td>'.$res['name'].'</td><td>'.$res['staerke'].'</td><td>'.$res['verteidigung'].'</td><td>'.$res['glueck'].'</td><td>'.$res['ausdauer'].'</td><td>'.$res['geschwindigkeit'].'</td><td>'.$res['preis'].'</td><td>'.$res['miete'].'</td><td>'.$res['nutzung'].'</td><td>'.$res['tp'].'</td><td>'.$res['req_level'].'</td><td><a href="'.$_SERVER['PHP_SELF'].'?choose=clanitems&action=edit&raumid='.$res['id'].'">edit</a> | <a href="'.$_SERVER['PHP_SELF'].'?choose=clanitems&action=delete&raumid='.$res['id'].'">delete</a></td></tr>';
}
?>
<tr>
<td align="center" colspan="11">
<a href="<?php echo $_SERVER['PHP_SELF'].'?choose=clanitems&action=create'; ?>">Raum erstellen</a>
</td>
</tr>
<tr>
<td align="center" colspan="11">
<a href="<?php echo $_SERVER['PHP_SELF']; ?>">Zum Hauptmenu</a>
</td>
</tr>
</table>
<?php
} else if($action == 'edit' || $action == 'create'){
if($raumname !== NULL){ // Sprich es wurde was geaendert!
// Berechne den TP Verbrauch
$b38 = 1.3; // Parameter aus Exceltabelle
$c38 = 0.3;
$g3 = ($staerke!=0?1:0) + ($verteidigung!=0?1:0) + ($glueck!=0?1:0) + ($ausdauer!=0?1:0) + ($geschwindigkeit!=0?1:0);
$summe_werte = ($staerke+$verteidigung+$glueck+$ausdauer+$geschwindigkeit);
$tp = round($summe_werte * (pow($b38,$g3)-$c38));
// Berechne Kaufpreis
$b33 = 1.1; // Parameter aus Exceltabelle
$c33 = 3000;
$kaufpreis = round(pow($b33,$summe_werte) * $c33);
// Berechne Miete
$b42=0.5; $c42=2; $d42=4; $e42=2; $f42=1; $g42=5; $h42=6; $i42=1.9; $j42=100;
$gewichtete_summe= $ausdauer*$b42+$staerke*$c42+$verteidigung*$d42+$geschwindigkeit*$e42+$glueck*$f42;
$miete = floor(pow($i42,log($gewichtete_summe,$h42)*$g42)*$j42/7); // Durch sieben (weil 7 Chars pro User)
// Berechne Nutzungsgebuehr
$b46 = 100; $c46 = 0.69; $d46 = -1762;
$nutz = floor(($miete*7*0.7)/log($gewichtete_summe, $b46)*$c46+$d46);
defineIfNotDefined("CLAN_CREATION_FEE", 20000);
// Und jetzt poliere die Preise optisch etwas auf
$stepkp = round(pow(10,floor(max(log10($kaufpreis),2)))/4);
$stepmp = round(pow(10,floor(max(log10($miete),2)))/4);
$stepnp = round(pow(10,floor(max(log10($nutz),2)))/4);
function displayClanItems() {
$raume_qry = mysql_query('SELECT * FROM clan_item order by tp');
?>
<table>
<tr>
<th align="center" colspan="12"><h1>Clanr&auml;ume bearbeiten</h1></th>
</tr>
<tr>
<td>Name</td>
<td>St&auml;rke</td>
<td>Verteidigung</td>
<td>Gl&uuml;ck</td>
<td>Ausdauer</td>
<td>Geschwindigkeit</td>
<td>Kaufpreis</td>
<td>Miete</td>
<td>Nutzungsgeb&uuml;hr</td>
<td>TP</td>
<td>Level</td>
<td>bearbeiten</td>
</tr>
<tr>
<td colspan=12><hr></td>
</tr>
<?php
while($res = mysql_fetch_assoc($raume_qry)){
echo '<tr><td>'.$res['name'].'</td><td>'.$res['staerke'].'</td><td>'.$res['verteidigung'].'</td><td>'.$res['glueck'].'</td><td>'.$res['ausdauer'].'</td><td>'.$res['geschwindigkeit'].'</td><td>'.$res['preis'].'</td><td>'.$res['miete'].'</td><td>'.$res['nutzung'].'</td><td>'.$res['tp'].'</td><td>'.$res['req_level'].'</td><td><a href="'.$_SERVER['PHP_SELF'].'?choose=clan&action=editrooms&raumid='.$res['id'].'">edit</a> | <a href="'.$_SERVER['PHP_SELF'].'?choose=clan&action=deleterooms&raumid='.$res['id'].'">delete</a></td></tr>';
}
?>
<tr>
<td colspan=12><hr></td>
</tr>
<tr>
<td align="center" colspan="12"><a
href="<?php echo $_SERVER['PHP_SELF'].'?choose=clan&action=createrooms'; ?>">Raum
erstellen</a>
</td>
</tr>
<tr>
<td align="center" colspan="12"><a
href="<?php echo $_SERVER['PHP_SELF'].'?choose=clan'; ?>">Zum
Clanmenu</a>
</td>
</tr>
</table>
<?php
}
$kaufpreis = round($kaufpreis/$stepkp)*$stepkp;
$miete = ceil($miete/$stepmp)*$stepmp;
$nutz = ceil($nutz/$stepnp)*$stepnp;
// So und nun kann weiter gemacht werden!
if($action == 'edit'){
logaction('Der Raum '.$raumname.' wurde editiert!');
$sql ='Update clan_item set name = \''.$raumname.'\', staerke = '.$staerke.', verteidigung = '.$verteidigung.', ausdauer = '.$ausdauer.', geschwindigkeit = '.$geschwindigkeit.', glueck = '.$glueck.', preis = '.$kaufpreis.', miete = '.$miete.', nutzung = '.$nutz.', tp = '.$tp.', info = \''.$info.'\', req_level = '.$level.' where id = '.$raumid.'';
$res = mysql_query($sql);
if(!$res)
echo $sql . '<br>';
} else if($action == 'create'){
logaction('Der Raum '.$raumname.' wurde erstellt!');
$sql = 'INSERT INTO clan_item(name, staerke, verteidigung, ausdauer, geschwindigkeit, glueck, preis, miete, nutzung, tp, info, req_level) values(\''.$raumname.'\', '.$staerke.', '.$verteidigung.', '.$ausdauer.', '.$geschwindigkeit.', '.$glueck.', '.$kaufpreis.', '.$miete.', '.$nutz.', '.$tp.', \''.$info.'\', '.$level.')';
$res = mysql_query($sql);
if(!$res)
echo $sql . '<br>';
}
}
function displayEditOrCreateClanRoom($action, $raumid, $raumname, $staerke, $verteidigung, $glueck, $ausdauer, $geschwindigkeit, $info, $level) {
if($raumname !== NULL){ // Sprich es wurde was geaendert!
// Berechne den TP Verbrauch
$b38 = 1.3; // Parameter aus Exceltabelle
$c38 = 0.3;
$g3 = ($staerke!=0?1:0) + ($verteidigung!=0?1:0) + ($glueck!=0?1:0) + ($ausdauer!=0?1:0) + ($geschwindigkeit!=0?1:0);
$summe_werte = ($staerke+$verteidigung+$glueck+$ausdauer+$geschwindigkeit);
$tp = round($summe_werte * (pow($b38,$g3)-$c38));
// Berechne Kaufpreis
$b33 = 1.1; // Parameter aus Exceltabelle
$c33 = 3000;
$kaufpreis = round(pow($b33,$summe_werte) * $c33);
// Berechne Miete
$b42=0.5; $c42=2; $d42=4; $e42=2; $f42=1; $g42=5; $h42=6; $i42=1.9; $j42=100;
$gewichtete_summe= $ausdauer*$b42+$staerke*$c42+$verteidigung*$d42+$geschwindigkeit*$e42+$glueck*$f42;
$miete = floor(pow($i42,log($gewichtete_summe,$h42)*$g42)*$j42/7); // Durch sieben (weil 7 Chars pro User)
// Berechne Nutzungsgebuehr
$b46 = 100; $c46 = 0.69; $d46 = -1762;
$nutz = floor(($miete*7*0.7)/log($gewichtete_summe, $b46)*$c46+$d46);
if($action == 'edit'){
$raum = mysql_fetch_assoc(mysql_query('SELECT * FROM clan_item WHERE id = '.$raumid));
$aLabel = 'editieren';
} else{
$aLabel = 'erstellen';
}
?>
<form action="" method="POST">
<input name="choose" value="clanitems" type="hidden"></input>
<input name="action" value="<?php echo $action; ?>" type="hidden"></input>
<input name="raumid" value="<?php echo $raumid; ?>" type="hidden"></input>
<table>
<tr>
<th align="center" colspan="2">Clanr&auml;ume <?php echo $aLabel; ?></th>
</tr>
<tr>
<td>Name</td><td><input type="text" class="text" name="raumname" value="<?php echo $raum['name']; ?>" /></td>
</tr>
<tr>
<td>St&auml;rke</td><td><input type="text" class="text" name="staerke" value="<?php echo $raum['staerke']; ?>" /></td>
</tr>
<tr>
<td>Verteidigung</td><td><input type="text" class="text" name="verteidigung" value="<?php echo $raum['verteidigung']; ?>" /></td>
</tr>
<tr>
<td>Gl&uuml;ck</td><td><input type="text" class="text" name="glueck" value="<?php echo $raum['glueck']; ?>" /></td>
</tr>
<tr>
<td>Ausdauer</td><td><input type="text" class="text" name="ausdauer" value="<?php echo $raum['ausdauer']; ?>" /></td>
</tr>
<tr>
<td>Geschwindigkeit</td><td><input type="text" class="text" name="geschwindigkeit" value="<?php echo $raum['geschwindigkeit']; ?>" /></td>
</tr>
<tr>
<td>Level</td><td><input type="text" class="text" name="req_level" value="<?php echo $raum['req_level']; ?>" /></td>
</tr>
<tr>
<td>Kaufpreis</td><td><?php echo $raum['preis']; ?></td>
</tr>
<tr>
<td>Miete</td><td><?php echo $raum['miete']; ?></td>
</tr>
<tr>
<td>Nutzungsgeb&uuml;hr</td><td><?php echo $raum['nutzung']; ?></td>
</tr>
<tr>
<td>Trainingspunkte</td><td><?php echo $raum['tp']; ?></td>
</tr>
<tr>
<td>Info</td><td><textarea name="info" rows="10" cols="50"><?php echo $raum['info']; ?></textarea></td>
</tr>
<tr>
<td align="center" colspan="2"><input type="submit" /></td>
</tr>
<tr>
<td align="center" colspan="2">
<a href="<?php echo $_SERVER['PHP_SELF'].'?choose=clanitems'; ?>">Zur &Uuml;bersicht</a>
</td>
</tr>
<tr>
<td align="center" colspan="2">
<a href="<?php echo $_SERVER['PHP_SELF']; ?>">Zum Hauptmenu</a>
</td>
</tr>
</table>
</form>
<?php
} else if($action == 'delete'){
?>
<table>
<?php
if($raumname !== NULL){
mysql_query('DELETE FROM clan_item WHERE id = '.$raumid);
mysql_query('DELETE FROM clan_ware where item_id ='.$raumid);
?>
<tr>
<td align="center" colspan="2">
Der Raum "<?php echo $raumname; ?>" wurde gel&ouml;scht
</td>
</tr>
<?php
} else{
$res = mysql_fetch_assoc(mysql_query('SELECT * FROM clan_item WHERE id = '.$raumid));
?>
<tr>
<td align="center" colspan="2">
Den Raum "<?php echo $res['name']; ?>" wirklich l&ouml;schen? <a href="<?php echo $_SERVER['PHP_SELF'].'?choose=clanitems&action=delete&raumid='.$raumid.'&raumname='.$res['name']; ?>">L&ouml;schen best&auml;tigen!</a>
</td>
</tr>
<?php
// Und jetzt poliere die Preise optisch etwas auf
$stepkp = round(pow(10,floor(max(log10($kaufpreis),2)))/4);
$stepmp = round(pow(10,floor(max(log10($miete),2)))/4);
$stepnp = round(pow(10,floor(max(log10($nutz),2)))/4);
$kaufpreis = round($kaufpreis/$stepkp)*$stepkp;
$miete = ceil($miete/$stepmp)*$stepmp;
$nutz = ceil($nutz/$stepnp)*$stepnp;
// So und nun kann weiter gemacht werden!
if($action == 'editrooms'){
logaction('Der Raum '.$raumname.' wurde editiert!');
$sql ='Update clan_item set name = \''.$raumname.'\', staerke = '.$staerke.', verteidigung = '.$verteidigung.', ausdauer = '.$ausdauer.', geschwindigkeit = '.$geschwindigkeit.', glueck = '.$glueck.', preis = '.$kaufpreis.', miete = '.$miete.', nutzung = '.$nutz.', tp = '.$tp.', info = \''.$info.'\', req_level = '.$level.' where id = '.$raumid.'';
$res = mysql_query($sql);
if(!$res)
echo $sql . '<br>';
} else if($action == 'createrooms'){
logaction('Der Raum '.$raumname.' wurde erstellt!');
$sql = 'INSERT INTO clan_item(name, staerke, verteidigung, ausdauer, geschwindigkeit, glueck, preis, miete, nutzung, tp, info, req_level) values(\''.$raumname.'\', '.$staerke.', '.$verteidigung.', '.$ausdauer.', '.$geschwindigkeit.', '.$glueck.', '.$kaufpreis.', '.$miete.', '.$nutz.', '.$tp.', \''.$info.'\', '.$level.')';
$res = mysql_query($sql);
if(!$res)
echo $sql . '<br>';
}
?>
<tr>
<td align="center" colspan="2">
<a href="<?php echo $_SERVER['PHP_SELF'].'?choose=clanitems'; ?>">Zur &Uuml;bersicht</a>
</td>
</tr>
<tr>
<td align="center" colspan="2">
<a href="<?php echo $_SERVER['PHP_SELF']; ?>">Zum Hauptmenu</a>
</td>
</tr>
</table>
<?php
}
if($action == 'editrooms'){
$raum = mysql_fetch_assoc(mysql_query('SELECT * FROM clan_item WHERE id = '.$raumid));
$aLabel = 'editieren';
} else{
$aLabel = 'erstellen';
}
?>
<form action="" method="POST">
<input name="choose" value="clan" type="hidden"></input> <input
name="action" value="<?php echo $action; ?>" type="hidden"></input> <input
name="raumid" value="<?php echo $raumid; ?>" type="hidden"></input>
<table>
<tr>
<th align="center" colspan="2">Clanr&auml;ume <?php echo $aLabel; ?>
</th>
</tr>
<tr>
<td>Name</td>
<td><input type="text" class="text" name="raumname"
value="<?php echo $raum['name']; ?>" /></td>
</tr>
<tr>
<td>St&auml;rke</td>
<td><input type="text" class="text" name="staerke"
value="<?php echo $raum['staerke']; ?>" /></td>
</tr>
<tr>
<td>Verteidigung</td>
<td><input type="text" class="text" name="verteidigung"
value="<?php echo $raum['verteidigung']; ?>" /></td>
</tr>
<tr>
<td>Gl&uuml;ck</td>
<td><input type="text" class="text" name="glueck"
value="<?php echo $raum['glueck']; ?>" /></td>
</tr>
<tr>
<td>Ausdauer</td>
<td><input type="text" class="text" name="ausdauer"
value="<?php echo $raum['ausdauer']; ?>" /></td>
</tr>
<tr>
<td>Geschwindigkeit</td>
<td><input type="text" class="text" name="geschwindigkeit"
value="<?php echo $raum['geschwindigkeit']; ?>" /></td>
</tr>
<tr>
<td>Level</td>
<td><input type="text" class="text" name="req_level"
value="<?php echo $raum['req_level']; ?>" /></td>
</tr>
<tr>
<td>Kaufpreis</td>
<td><?php echo $raum['preis']; ?></td>
</tr>
<tr>
<td>Miete</td>
<td><?php echo $raum['miete']; ?></td>
</tr>
<tr>
<td>Nutzungsgeb&uuml;hr</td>
<td><?php echo $raum['nutzung']; ?></td>
</tr>
<tr>
<td>Trainingspunkte</td>
<td><?php echo $raum['tp']; ?></td>
</tr>
<tr>
<td>Info</td>
<?php
echo '<td><textarea name="info" rows="10" cols="50">'.$raum['info'].'</textarea></td>';
?>
</tr>
<tr>
<td align="center" colspan="2"><input type="submit" /></td>
</tr>
<tr>
<td align="center" colspan="2"><a
href="<?php echo $_SERVER['PHP_SELF'].'?choose=clan&action=rooms'; ?>">Zur
&Uuml;bersicht</a>
</td>
</tr>
<tr>
<td align="center" colspan="2"><a
href="<?php echo $_SERVER['PHP_SELF'].'?choose=clan'; ?>">Zum
Clanmenu</a>
</td>
</tr>
</table>
</form>
<?php
}
function displayDeleteClanRoom($raumname, $raumid) {
?>
<table>
<?php
if($raumname !== NULL){
mysql_query('DELETE FROM clan_item WHERE id = '.$raumid);
mysql_query('DELETE FROM clan_ware where item_id ='.$raumid);
?>
<tr>
<td align="center" colspan="2">Der Raum "<?php echo $raumname; ?>"
wurde gel&ouml;scht</td>
</tr>
<?php
} else{
$res = mysql_fetch_assoc(mysql_query('SELECT * FROM clan_item WHERE id = '.$raumid));
?>
<tr>
<td align="center" colspan="2">Den Raum "<?php echo $res['name']; ?>"
wirklich l&ouml;schen? <a
href="<?php echo $_SERVER['PHP_SELF'].'?choose=clan&action=deleterooms&raumid='.$raumid.'&raumname='.$res['name']; ?>">L&ouml;schen
best&auml;tigen!</a>
</td>
</tr>
<?php
}
?>
<tr>
<td align="center" colspan="2"><a
href="<?php echo $_SERVER['PHP_SELF'].'?choose=clan&action=rooms'; ?>">Zur
&Uuml;bersicht</a>
</td>
</tr>
<tr>
<td align="center" colspan="2"><a
href="<?php echo $_SERVER['PHP_SELF'].'?choose=clan'; ?>">Zum
Clanmenu</a>
</td>
</tr>
</table>
<?php
}
function displayGeneralOptions($ccfee) {
$change = false;
if($ccfee != null && $ccfee != CLAN_CREATION_FEE) {
setDefine('CLAN_CREATION_FEE', $ccfee);
}
?>
<form method="POST">
<input type="hidden" name="choose" value="clan">
<input type="hidden" name="action" value="general">
<table width="50%">
<tr>
<th colspan="2" align="center"><h1>Übersicht</h1></th>
</tr>
<?php if($change === TRUE) {?>
<tr>
<td colspan="2" align="center">&Auml;nderungen &uuml;bernommen!</td>
</tr>
<?php }?>
<tr>
<td align="left">Gr&uuml;ndungsgeb&uuml;hr</td>
<td align="center"><input type="text" name="ccfee" value=<?php echo ($ccfee == null)?CLAN_CREATION_FEE:$ccfee;?>></td>
</tr>
<tr>
<td align="center" colspan="2"><input type="submit" value="&auml;ndern"></td>
</tr>
<tr>
<td align="center" colspan="2"><a
href="<?php echo $_SERVER['PHP_SELF'].'?choose=clan'; ?>">Zum Clanmenu</a>
</td>
</tr>
</table>
</form>
<?php
}
function displayClanOptions() {
?>
<table>
<tr>
<td><a
href="<?php echo $_SERVER['PHP_SELF']; ?>?choose=clan&action=general">Clanoptionen
bearbeiten</a>
</td>
</tr>
<tr>
<td><a
href="<?php echo $_SERVER['PHP_SELF']; ?>?choose=clan&action=rooms">Clanr&auml;ume
bearbeiten</a>
</td>
</tr>
<tr>
<td><a href="<?php echo $_SERVER['PHP_SELF']; ?>">Zum Hauptmenu</a><br>
</td>
</tr>
</table>
<?php
}
function displayClanMenu($action, $raumid, $raumname, $staerke, $verteidigung, $glueck, $ausdauer, $geschwindigkeit, $info, $level, $ccfee) {
switch ($action) {
case 'editrooms':
displayEditOrCreateClanRoom($action, $raumid, $raumname, $staerke, $verteidigung, $glueck, $ausdauer, $geschwindigkeit, $info, $level);
break;
case 'createrooms':
displayEditOrCreateClanRoom($action, $raumid, $raumname, $staerke, $verteidigung, $glueck, $ausdauer, $geschwindigkeit, $info, $level);
break;
case 'deleterooms':
displayDeleteClanRoom($raumname, $raumid);
break;
case 'rooms':
displayClanItems();
break;
case 'general':
displayGeneralOptions($ccfee);
break;
default:
displayClanOptions();
break;
}
}
?>

@ -156,6 +156,8 @@ function displayEditFee($klein, $wochen) {
$change = TRUE;
setDefine('TURNIER_WOCHEN_GEBUEHR', $wochen);
}
} else {
}
?>
<form method="get">

@ -45,6 +45,22 @@ function addMoneyToUser($userid, $amount) {
mysql_query('update user set geld = geld + ' . $amount . ' WHERE id = ' .$userid);
}
/**
* Gibt den wirklichen Geldbetrag des Users zurück (Abzug von Auktions-Aktionen)
* @param user id
*/
function getRelevantMoney($userid) {
$user = getUser($userid);
$auktionensumme = mysql_fetch_assoc(mysql_query('SELECT SUM(aktuellesgebot) as summe FROM auktion WHERE bieter = ' . $user['id'] . ' GROUP BY bieter'));
$auktionensumme = $auktionensumme['summe'];
if ($auktionensumme == 0) {
$money = $user[geld];
} else {
$money = $user['geld'] - $auktionensumme;
}
return $money;
}
function checkSessionPasswort($userid, $password){
$sql = 'SELECT passwort from user where id = \''.$userid.'\'';

Loading…
Cancel
Save