anpera.net
https://anpera.dyndns.org/phpbb3/

Dringend: Creauture-Editor: Für Level 17+
https://anpera.dyndns.org/phpbb3/viewtopic.php?f=25&t=4076
Seite 1 von 1

Autor:  Fajeth [ Mo 15 Okt, 2007 17:24 ]
Betreff des Beitrags:  Dringend: Creauture-Editor: Für Level 17+

Hey, ich habe mir vorgenommen am LoGD etwas rumzuschrauben. Nun ja ich wollte Stufe 20 einführen, brauch also auch monster dafür. Weil es im Editor aber bequemer ist, wollt ichs so machen, kommen aber ständig fehlermeldung (auch nachdem ich diese $i variable 0 bis 21 eingestellt hab)...

Also ich hab schon alles rumprobiert (es funktioniert schonmal so dass ich die höher stufigen editieren kann... was mir nichts bringt, wenn sie die LP etc net bekommen)

Siehe Source....

Währe dringend, was mach ich wenn ich user bekomm und die zu hoch leveln? XD also bitte antwort ^^

Autor:  Eliwood [ Mo 15 Okt, 2007 18:45 ]
Betreff des Beitrags:  Re: Dringend: Creauture-Editor: Für Level 17+

Im Quelltext findest du ganz oben eine Tabelle (Wer das Ding erfunden hat, gehört geschlagen O.o Als Machtbarkeitsdemonstration ganz nett, aber Nutzen?!). Die ergänzen.

Autor:  Fajeth [ Mo 15 Okt, 2007 18:52 ]
Betreff des Beitrags: 

ja die hab ich ergänzt... Nur mein Problem wenn ich dann auf erstellen klicke und die werte wie name etc eingebe komtm darauf hin eine tolle seite mit allen möglichen Buchstaben (gewirr). Wenn ich zurück gehe hat er die kreatur (nur bei ab 17) zweimal erstellt aber ohne lp etc (hab ich inenr datenbank nachgeschaut)

Autor:  Eliwood [ Mo 15 Okt, 2007 18:54 ]
Betreff des Beitrags: 

Gib mal den Quelltext her. Deine Source geht nicht :p

Autor:  Fajeth [ Mo 15 Okt, 2007 18:57 ]
Betreff des Beitrags: 

oha ich sehs auch grad. Warum geht die nicht? XD manuell gehts aber ^^
Quelltext = Du willst den code der ganzen creatures oder was? ^^


ai ai ich seh auch grad liegt nicht nur am link, die source hatn fehler, lol? Hab da nie was verändert... Aber das später...

[php]
<?
require_once "common.php";
isnewday(2);

//select distinct creaturelevel,max(creaturehealth) as creaturehealth,max(creatureattack) as creatureattack,max(creaturedefense) as creaturedefense,max(creatureexp) as creatureexp,max(creaturegold) as creaturegold from creatures where creaturelevel<17 group by creaturelevel;
$creaturestattable="
+---------------+----------------+----------------+-----------------+-------------+--------------+
| creaturelevel | creaturehealth | creatureattack | creaturedefense | creatureexp | creaturegold |
+---------------+----------------+----------------+-----------------+-------------+--------------+
| 1 | 20 | 1 | 1 | 14 | 36 |
| 2 | 41 | 3 | 3 | 24 | 97 |
| 3 | 62 | 5 | 4 | 34 | 148 |
| 4 | 83 | 7 | 6 | 45 | 162 |
| 5 | 103 | 9 | 7 | 55 | 198 |
| 6 | 124 | 11 | 8 | 66 | 234 |
| 7 | 144 | 13 | 10 | 77 | 268 |
| 8 | 160 | 15 | 11 | 89 | 302 |
| 9 | 184 | 17 | 13 | 101 | 336 |
| 10 | 205 | 19 | 14 | 114 | 369 |
| 11 | 225 | 21 | 15 | 127 | 402 |
| 12 | 245 | 23 | 17 | 141 | 435 |
| 13 | 265 | 25 | 18 | 156 | 467 |
| 14 | 285 | 27 | 20 | 172 | 499 |
| 15 | 305 | 29 | 21 | 189 | 531 |
| 16 | 323 | 31 | 22 | 207 | 563 |
| 17 | 343 | 33 | 24 | 230 | 595 | | 18 | 370 | 35 | 25 | 255 | 640 |
| 19 | 400 | 37 | 26 | 288 | 690 |
| 20 | 425 | 39 | 27 | 310 | 739 |
| 21 | 445 | 41 | 29 | 350 | 800 |
+---------------+----------------+----------------+-----------------+-------------+--------------+
";
$creaturestats=Array();
$creaturestattable=split("\n",$creaturestattable);
$x=0;
while (list($key,$val)=each($creaturestattable)){
if (strpos($val,"|")!==false){
//echo("$val`n");
$x++;
$a = split("\\|",$val);
if ($x==1){
$stats=array();
while (list($key1,$val1)=each($a)){
if (trim($val1)>"") {
$stats[$key1]=trim($val1);
//output($val1." is col $key1`n");
}
}
}else{
reset($stats);
while (list($key1,$val1)=each($stats)){
$creaturestats[(int)$a[1]][$val1]=trim($a[$key1]);
//output ("[".(int)$a[1]."][$val1]=".trim($a[$key1])."`n");
}
}
}
}

page_header("Creature Editor");

if ($session[user][superuser] >= 2){
addnav("G?Zurück zur Grotte","superuser.php");
addnav("W?Zurück zum Weltlichen","village.php");
if ($HTTP_POST_VARS[save]<>""){
if (!isset($HTTP_POST_VARS['location'])) $HTTP_POST_VARS['location']=0;
if ($HTTP_POST_VARS[id]!=""){
$sql="UPDATE creatures SET ";
//unset($HTTP_POST_VARS[save]);
while (list($key,$val)=each($HTTP_POST_VARS)){
if (substr($key,0,8)=="creature") $sql.="$key = \"$val\", ";
}
reset($creaturestats[(int)$HTTP_POST_VARS[creaturelevel]]);
while (list($key,$val)=each($creaturestats[$HTTP_POST_VARS[creaturelevel]])){
if ( $key!="creaturelevel" && substr($key,0,8)=="creature"){
$sql.="$key = \"".addslashes($val)."\", ";
}
}
$sql.=" location=\"".(int)($_POST['location'])."\", ";
//$sql = substr($sql,0,strlen($sql)-2);
$sql.= " createdby=\"".addslashes($session[user][login])."\" ";
$sql.= " WHERE creatureid='$HTTP_POST_VARS[id]'";
//output($sql);
db_query($sql) or output("`\$".db_error(LINK)."`0`n`#$sql`0`n");
output(db_affected_rows()." ".(db_affected_rows()==1?"Eintrag":"Einträge")." geändert.");
}else{
$cols = array();
$vals = array();

while (list($key,$val)=each($HTTP_POST_VARS)){
if (substr($key,0,8)=="creature" || $key=="location") {
array_push($cols,$key);
array_push($vals,$val);
//$sql.="$key = \"$val\", ";
}
}
reset($creaturestats[(int)$HTTP_POST_VARS[creaturelevel]]);
while (list($key,$val)=each($creaturestats[$HTTP_POST_VARS[creaturelevel]])){
if ($key!="creaturelevel"){
//$sql.="$key = \"".addslashes($val)."\", ";
array_push($cols,$key);
array_push($vals,$val);
}
}
$sql="INSERT INTO creatures (".join(",",$cols).",createdby) VALUES (\"".join("\",\"",$vals)."\",\"".addslashes($session['user']['login'])."\")";
//echo $sql;
db_query($sql);
}
}
if ($HTTP_GET_VARS[op]=="del"){
$sql = "DELETE FROM creatures WHERE creatureid = \"$HTTP_GET_VARS[id]\"";
db_query($sql);
if (db_affected_rows()>0){
output("Kreatur gelöscht`n`n");
}else{
output("Kreatur nicht gelöscht: ".db_error(LINK));
}
$HTTP_GET_VARS[op]="";
}
if ($HTTP_GET_VARS[op]==""){
$sql = "SELECT * FROM creatures ORDER BY creaturelevel,creaturename";
$result = db_query($sql) or die(db_error(LINK));
addnav("Eine Kreatur hinzufügen","creatures.php?op=add");
output("<table><tr><td>Ops</td><td>Kreaturname</td><td>Level</td><td>Waffe</td><td>Nachricht beim Tod</td><td>Autor</td></tr>",true);
addnav("","creatures.php");
for ($i=0;$i<db_num_rows($result);$i++){
$row = db_fetch_assoc($result);
// if ($row[creaturelevel]==17 || $row[creaturelevel]==18){
// output("<tr><td> [Edit|Del] </td><td>",true);
// }else{
output("<tr><td> [<a href='creatures.php?op=edit&id=$row[creatureid]'>Edit</a>|".
"<a href='creatures.php?op=del&id=$row[creatureid]' onClick='return confirm(\"Bist du dir sicher, dass du diese Kreatur löschen willst?\");'>Del</a>] </td><td>",true);
addnav("","creatures.php?op=edit&id=$row[creatureid]");
addnav("","creatures.php?op=del&id=$row[creatureid]");
// }
output($row[creaturename]);
output("</td><td>",true);
output($row[creaturelevel]);
output("</td><td>",true);
output($row[creatureweapon]);
output("</td><td>",true);
output($row[creaturelose]);
output("</td><td>",true);
output($row[createdby]);
output("</td></tr>",true);
}
output("</table>",true);
}
if ($HTTP_GET_VARS[op]=="edit" || $HTTP_GET_VARS[op]=="add"){
if ($HTTP_GET_VARS[op]=="edit"){
$sql = "SELECT * FROM creatures WHERE creatureid=$HTTP_GET_VARS[id]";
$result = db_query($sql) or die(db_error(LINK));
if (db_num_rows($result)<>1){
output("`4Fehler`0, diese Kreatur wurde nicht gefunden!");
}else{
$row = db_fetch_assoc($result);
}
}
output("<form action='creatures.php' method='POST'>",true);
output("<input name='id' value=\"".HTMLEntities($HTTP_GET_VARS[id])."\" type='hidden'>",true);
output("<table border='0' cellpadding='2' cellspacing='0'>",true);
output("<tr><td>Kreaturname:</td><td><input name='creaturename' maxlength='50' value=\"".HTMLEntities($row[creaturename])."\"></td></tr>",true);
output("<tr><td>Waffe: </td><td><input name='creatureweapon' maxlength='50' value=\"".HTMLEntities($row[creatureweapon])."\"></td></tr>",true);
output("<tr><td colspan='2'>Nachricht beim Tod: <br><input name='creaturelose' size='65' maxlength='120' value=\"".HTMLEntities($row[creaturelose])."\"></td></tr>",true);
output("<tr><td>Level: </td><td><select name='creaturelevel'>",true);
for ($i=1;$i<=21;$i++){
output("<option value='$i'".($row[creaturelevel]==$i?" selected":"").">$i</option>\n",true);
}
output("</select></td></tr>",true);
output("<tr><td>Kreatur ist auch auf dem Friedhof</td><td><input type='radio' name='location' value='1'".($row['location']==1?" checked":"").">Ja <input type='radio' name='location' value='0'".($row['location']==0?" checked":"").">Nein </td></tr>",true);
output("<tr><td colspan='2'><input type='hidden' name='save' value='Save'><input type='submit' class='button' name='submit' value='Speichern'></td></tr>",true);
output("</table>",true);
output("</form>",true);
addnav("","creatures.php");
}else{

}
addnav("Zurück zum Monster-Editor","creatures.php");

}
else{
output("Weil du versucht hast die Götter zu betrügen, wurdest du niedergeschmettert!");
addnews("`&".$session[user][name]." wurde für den Versuch, die Götter zu betrügen, niedergeschmettert (hat versucht die Superuser-Seiten zu hacken).");
$session[user][hitpoints]=0;
}
page_footer();
?>
[/php]
So ich hoffe das wird jetzt richtig angezeigt ^^

Autor:  Fajeth [ Mo 15 Okt, 2007 19:07 ]
Betreff des Beitrags: 

hm bei mir sieht die tabelle bei den ergänzungen aber passend aus... Vielleicht schon hier mein fehler? ^^

Edit: Quelle oben bearbeitet, Tabelle passt zwar aber Fehler ist immernoch da siehe unten ^^

Autor:  Eliwood [ Mo 15 Okt, 2007 19:09 ]
Betreff des Beitrags: 

Fajeth hat geschrieben:
hm bei mir sieht die tabelle bei den ergänzungen aber passend aus... Vielleicht schon hier mein fehler? ^^


Nimmst du Leerschläge oder Tabs? Wenn Tabs => Fehler ^^

Autor:  Fajeth [ Mo 15 Okt, 2007 19:13 ]
Betreff des Beitrags: 

ich hatte beides drinne... Ich mach die Tabs mal raus ^^ Kan ndas der gesamte fehler sein?

Autor:  Fajeth [ Mo 15 Okt, 2007 19:19 ]
Betreff des Beitrags: 

ok hat sich noch nicht wirklich gebessert (alle tabs sind raus)
Fehlermeldung lautet wie folgt:
Warning: reset(): Passed variable is not an array or object in /www/www/virtual/westerlande.de/htdocs/gw/creatures.php on line 71

Warning: Variable passed to each() is not an array or object in /www/www/virtual/westerlande.de/htdocs/gw/creatures.php on line 72

Warning: Cannot modify header information - headers already sent by (output started at /www/www/virtual/westerlande.de/htdocs/gw/creatures.php:71) in /www/www/virtual/westerlande.de/htdocs/gw/common.php on line 62

Autor:  Squall [ Mo 15 Okt, 2007 20:44 ]
Betreff des Beitrags: 

hier nimm meine veränderte datei..funzt einwandfrei..
jedoch sollest du die werte anpassen...

$this->bbcode_second_pass_code('', '
<?
require_once "common.php";
isnewday(2);

//select distinct creaturelevel,max(creaturehealth) as creaturehealth,max(creatureattack) as creatureattack,max(creaturedefense) as creaturedefense,max(creatureexp) as creatureexp,max(creaturegold) as creaturegold from creatures where creaturelevel<17 group by creaturelevel;
$creaturestattable="
+---------------+----------------+----------------+-----------------+-------------+--------------+
| creaturelevel | creaturehealth | creatureattack | creaturedefense | creatureexp | creaturegold |
+---------------+----------------+----------------+-----------------+-------------+--------------+
| 1 | 10 | 1 | 1 | 14 | 36 |
| 2 | 21 | 3 | 3 | 24 | 97 |
| 3 | 32 | 5 | 4 | 34 | 148 |
| 4 | 43 | 7 | 6 | 45 | 162 |
| 5 | 53 | 9 | 7 | 55 | 198 |
| 6 | 64 | 11 | 8 | 66 | 234 |
| 7 | 74 | 13 | 10 | 77 | 268 |
| 8 | 84 | 15 | 11 | 89 | 302 |
| 9 | 94 | 17 | 13 | 101 | 336 |
| 10 | 105 | 19 | 14 | 114 | 369 |
| 11 | 115 | 21 | 15 | 127 | 402 |
| 12 | 125 | 23 | 17 | 141 | 435 |
| 13 | 135 | 25 | 18 | 156 | 467 |
| 14 | 145 | 27 | 20 | 172 | 499 |
| 15 | 155 | 29 | 21 | 189 | 531 |
| 16 | 166 | 31 | 22 | 207 | 563 |
| 17 | 176 | 33 | 25 | 230 | 600 |
| 18 | 186 | 35 | 27 | 250 | 660 |
| 19 | 197 | 37 | 29 | 280 | 720 |
| 20 | 203 | 39 | 30 | 300 | 750 |
| 21 | 210 | 41 | 32 | 320 | 780 |
| 22 | 225 | 43 | 34 | 340 | 800 |
| 23 | 230 | 45 | 36 | 360 | 850 |
| 24 | 245 | 47 | 39 | 400 | 900 |
| 25 | 255 | 50 | 41 | 440 | 950 |
| 26 | 267 | 52 | 43 | 470 | 1000|
| 27 | 277 | 54 | 46 | 500 | 1200|
| 28 | 285 | 56 | 48 | 530 | 1400|
| 29 | 290 | 59 | 50 | 560 | 1600|
| 30 | 300 | 61 | 53 | 600 | 1800|
| 31 | 310 | 63 | 56 | 630 | 2000|
| 32 | 320 | 65 | 58 | 660 | 2400|
| 33 | 330 | 67 | 60 | 700 | 2600|
| 34 | 340 | 69 | 62 | 740 | 2800|
| 35 | 350 | 71 | 65 | 760 | 3000|
| 36 | 360 | 73 | 67 | 780 | 3200|
| 37 | 370 | 75 | 69 | 810 | 3400|
| 38 | 380 | 77 | 71 | 840 | 3700|
| 39 | 390 | 79 | 73 | 870 | 4000|
| 40 | 400 | 81 | 75 | 920 | 4300|
| 41 | 410 | 84 | 77 | 960 | 4700|
| 42 | 420 | 87 | 79 | 1000| 5000|
| 43 | 430 | 90 | 81 | 1500| 5500|
| 44 | 440 | 92 | 83 | 2000| 6000|
| 45 | 455 | 94 | 85 | 2400| 6600|
| 46 | 465 | 96 | 87 | 2800| 7100|
| 47 | 475 | 99 | 90 | 3200| 7600|
| 48 | 485 | 101| 92 | 3500| 8000|
| 49 | 495 | 103| 94 | 3700| 8300|
| 50 | 510 | 106| 97 | 4000| 8500|
| 51 | 555 | 150| 100| 7000| 3000|
| 52 | 1000| 200| 150| 9600| 3000|
+---------------+----------------+----------------+-----------------+-------------+--------------+
";
$creaturestats=Array();
$creaturestattable=split("\n",$creaturestattable);
$x=0;
while (list($key,$val)=each($creaturestattable)){
if (strpos($val,"|")!==false){
//echo("$val`n");
$x++;
$a = split("\\|",$val);
if ($x==1){
$stats=array();
while (list($key1,$val1)=each($a)){
if (trim($val1)>"") {
$stats[$key1]=trim($val1);
//output($val1." is col $key1`n");
}
}
}else{
reset($stats);
while (list($key1,$val1)=each($stats)){
$creaturestats[(int)$a[1]][$val1]=trim($a[$key1]);
//output ("[".(int)$a[1]."][$val1]=".trim($a[$key1])."`n");
}
}
}
}

page_header("Creature Editor");

if ($session[user][superuser] >= 2){
addnav("G?Zurück zur Grotte","superuser.php");
addnav("W?Zurück zum Weltlichen","stadtzentrum.php");
if ($HTTP_POST_VARS[save]<>""){
if (!isset($HTTP_POST_VARS['location'])) $HTTP_POST_VARS['location']=0;
if ($HTTP_POST_VARS[id]!=""){
$sql="UPDATE creatures SET ";
//unset($HTTP_POST_VARS[save]);
while (list($key,$val)=each($HTTP_POST_VARS)){
if (substr($key,0,8)=="creature") $sql.="$key = \"$val\", ";
}
reset($creaturestats[(int)$HTTP_POST_VARS[creaturelevel]]);
while (list($key,$val)=each($creaturestats[$HTTP_POST_VARS[creaturelevel]])){
if ( $key!="creaturelevel" && substr($key,0,8)=="creature"){
$sql.="$key = \"".addslashes($val)."\", ";
}
}
$sql.=" location=\"".(int)($_POST['location'])."\", ";
//$sql = substr($sql,0,strlen($sql)-2);
$sql.= " createdby=\"".addslashes($session[user][login])."\" ";
$sql.= " WHERE creatureid='$HTTP_POST_VARS[id]'";
//output($sql);
db_query($sql) or output("`\$".db_error(LINK)."`0`n`#$sql`0`n");
output(db_affected_rows()." ".(db_affected_rows()==1?"Eintrag":"Einträge")." geändert.");
}else{
$cols = array();
$vals = array();

while (list($key,$val)=each($HTTP_POST_VARS)){
if (substr($key,0,8)=="creature" || $key=="location") {
array_push($cols,$key);
array_push($vals,$val);
//$sql.="$key = \"$val\", ";
}
}
reset($creaturestats[(int)$HTTP_POST_VARS[creaturelevel]]);
while (list($key,$val)=each($creaturestats[$HTTP_POST_VARS[creaturelevel]])){
if ($key!="creaturelevel"){
//$sql.="$key = \"".addslashes($val)."\", ";
array_push($cols,$key);
array_push($vals,$val);
}
}
$sql="INSERT INTO creatures (".join(",",$cols).",createdby) VALUES (\"".join("\",\"",$vals)."\",\"".addslashes($session['user']['login'])."\")";
//echo $sql;
db_query($sql);
}
}
if ($HTTP_GET_VARS[op]=="del"){
$sql = "DELETE FROM creatures WHERE creatureid = \"$HTTP_GET_VARS[id]\"";
db_query($sql);
if (db_affected_rows()>0){
output("Kreatur gelöscht`n`n");
}else{
output("Kreatur nicht gelöscht: ".db_error(LINK));
}
$HTTP_GET_VARS[op]="";
}
if ($HTTP_GET_VARS[op]==""){
$sql = "SELECT * FROM creatures ORDER BY creaturelevel,creaturename";
$result = db_query($sql) or die(db_error(LINK));
addnav("Eine Kreatur hinzufügen","creatures.php?op=add");
output("<table><tr><td>Ops</td><td>Kreaturname</td><td>Level</td><td>Waffe</td><td>Nachricht beim Tod</td><td>Autor</td></tr>",true);
addnav("","creatures.php");
for ($i=0;$i<db_num_rows($result);$i++){
$row = db_fetch_assoc($result);
if ($row[creaturelevel]==51 || $row[creaturelevel]==52){
output("<tr><td> [Edit|Del] </td><td>",true);
}else{
output("<tr><td> [<a href='creatures.php?op=edit&id=$row[creatureid]'>Edit</a>|".
"<a href='creatures.php?op=del&id=$row[creatureid]' onClick='return confirm(\"Bist du dir sicher, dass du diese Kreatur löschen willst?\");'>Del</a>] </td><td>",true);
addnav("","creatures.php?op=edit&id=$row[creatureid]");
addnav("","creatures.php?op=del&id=$row[creatureid]");
}
output($row[creaturename]);
output("</td><td>",true);
output($row[creaturelevel]);
output("</td><td>",true);
output($row[creatureweapon]);
output("</td><td>",true);
output($row[creaturelose]);
output("</td><td>",true);
output($row[createdby]);
output("</td></tr>",true);
}
output("</table>",true);
}else{
if ($HTTP_GET_VARS[op]=="edit" || $HTTP_GET_VARS[op]=="add"){
if ($HTTP_GET_VARS[op]=="edit"){
$sql = "SELECT * FROM creatures WHERE creatureid=$HTTP_GET_VARS[id]";
$result = db_query($sql) or die(db_error(LINK));
if (db_num_rows($result)<>1){
output("`4Fehler`0, diese Kreatur wurde nicht gefunden!");
}else{
$row = db_fetch_assoc($result);
}
}
output("<form action='creatures.php' method='POST'>",true);
output("<input name='id' value=\"".HTMLEntities($HTTP_GET_VARS[id])."\" type='hidden'>",true);
output("<table border='0' cellpadding='2' cellspacing='0'>",true);
output("<tr><td>Kreaturname:</td><td><input name='creaturename' maxlength='50' value=\"".HTMLEntities($row[creaturename])."\"></td></tr>",true);
output("<tr><td>Waffe: </td><td><input name='creatureweapon' maxlength='50' value=\"".HTMLEntities($row[creatureweapon])."\"></td></tr>",true);
output("<tr><td colspan='2'>Nachricht beim Tod: <br><input name='creaturelose' size='65' maxlength='120' value=\"".HTMLEntities($row[creaturelose])."\"></td></tr>",true);
output("<tr><td>Level: </td><td><select name='creaturelevel'>",true);
for ($i=1;$i<=50;$i++){
output("<option value='$i'".($row[creaturelevel]==$i?" selected":"").">$i</option>\n",true);
}
output("</select></td></tr>",true);
output("<tr><td>Kreatur ist auch auf dem Friedhof</td><td><input type='radio' name='location' value='1'".($row['location']==1?" checked":"").">Ja <input type='radio' name='location' value='0'".($row['location']==0?" checked":"").">Nein </td></tr>",true);
output("<tr><td colspan='2'><input type='hidden' name='save' value='Save'><input type='submit' class='button' name='submit' value='Speichern'></td></tr>",true);
output("</table>",true);
output("</form>",true);
addnav("","creatures.php");
}else{

}
addnav("Zurück zum Monster-Editor","creatures.php");
}
}else{
output("Weil du versucht hast die Götter zu betrügen, wurdest du niedergeschmettert!");
addnews("`&".$session[user][name]." wurde für den Versuch, die Götter zu betrügen, niedergeschmettert (hat versucht die Superuser-Seiten zu hacken).");
$session[user][hitpoints]=0;
}
page_footer();
?>')

Autor:  Fajeth [ Di 16 Okt, 2007 18:03 ]
Betreff des Beitrags: 

vielen dank werds gleich testen :)

Seite 1 von 1 Alle Zeiten sind UTC + 1 Stunde
Powered by phpBB® Forum Software © phpBB Group
https://www.phpbb.com/