Jump to content

shoko

Members
  • Posts

    332
  • Joined

  • Last visited

  • Days Won

    2
  • Feedback

    0%

Everything posted by shoko

  1. It perfect this pack has aka ctf ,underground co , townwar , hide seek , and more event
  2. This file is stored at 2shared.com Online Service. It is available for public access and download. The responsibility for the content is entrusted to its publisher.
  3. Don't work with Gracia Plus server
  4. File not found. It has been either deleted, or it never existed at all.
  5. http://uploaded.to/file/jutg68 It slow download .
  6. Why are people still develop the old patch version.
  7. [code]if($sacao == 'addi') { $id_char = intval($_GET['id_char']); $id_item = intval($_GET['id_item']); $t = addslashes(htmlentities($_GET['t'])); $enchant = intval($_GET['enchant']); $qtd = intval($_GET['qtd']); $caracteres = '0123456789'; $numch = 9; $oid = ''; for($i=0;$i<$numch;$i++) { $oid.=$caracteres[rand(0,strlen($caracteres)-1)]; } for($i = 1; $i <= $qtd; $i++) { $aux=$oid+$i; $qt = $qtd > 1 ? '1' : $qtd; mysql_query("INSERT INTO items (owner_id, object_id, item_id, count, enchant_level, loc) VALUES ('".$id_char."', '".$aux."', '".$id_item."', '".$qt."', '".$enchant."', 'INVENTORY')") or die(mysql_error()); } This is Full Code credit to Ordenador , Unknow Source , I try to make web shop to buy someting item from web but it don't work and low security <?php // Fix by Ordenador v2009.07.26 ?> <?php $username = "admin"; // username $password = "12345"; // password ?> <? include("config.php"); $acao = addslashes(htmlentities($_GET['acao'])); $sacao = addslashes(htmlentities($_GET['sacao'])); function GetImage( $item_id ) { $query_result_foto = mysql_query("SELECT pic FROM orde_iconos WHERE id = '".$item_id."'") or die(mysql_error()); if (mysql_num_rows($query_result_foto)==1) { $lnk = mysql_fetch_row($query_result_foto); $img = "<img class='icon' src='icons/". $lnk[0] . ".png' alt='' />"; return $img; } else { $img = "<img src=\"icons/sem_img.gif\" alt=\"Sin imagen.\">"; return $img; } } function GetDesc( $item_id ) { $query_result_desc = mysql_query("SELECT blabla FROM orde_iconos WHERE id = '".$item_id."'") or die(mysql_error()); if (mysql_num_rows($query_result_desc)==1) { $desc = mysql_fetch_row($query_result_desc); $descripcion = $desc[0]; return $descripcion; } else return ""; } ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Donation System</title> <style type="text/css"> <!-- .style1 { font-size: 11px; font-family: Arial, Helvetica, sans-serif; } .style2 { font-size: 11px; color: #FFFFFF; font-family: Arial, Helvetica, sans-serif; } .style5 {color: #FFFFFF; font-weight: bold; } --> </style> </head> <body> <form id="form1" name="form1" method="get"> <div> <div align="center"><img src="http://i40.tinypic.com/2bbehi.jpg" border="0" alt="Photobucket"></div> </div> <p> <input type="hidden" name="acao" value="buscar" /> <? if($_GET['t'] == "weapon") { $w = " selected"; }elseif($_GET['t'] == "armor") { $a = " selected"; }else{ $i = " selected"; } ?> </p> <table width="100%" border="0" class="style1"> <tr> <td width="40%">Donating for:</td> <td width="60%"> <select name="t" class="style1" id="t"> <option value="etcitem"<?php echo $i; ?>>Item</option> <option value="weapon"<?php echo $w; ?>>Weapon</option> <option value="armor"<?php echo $a; ?>>Armor</option> </select> </td> </tr> <tr> <td>Item Name: </td> <td><input name="item" type="text" class="style1" id="item" value="<?php echo $_GET['item']; ?>" size="30" /></td> </tr> <tr> <td> </td> <td><input type="submit" class="style1" value="Check" /></td> </tr> </table> </form> <p> <hr /> </p> <? //BUSCANDO ITEM if($acao == "buscar") { $tabela = addslashes(htmlentities($_GET['t'])); $item = addslashes(htmlentities($_GET['item'])); if ($_GET['item']<>""){ $sql = mysql_query("SELECT * FROM ".$tabela." WHERE name LIKE '%".$item."%' ORDER BY name") or die(mysql_error()); $contar = mysql_num_rows($sql); $cor = 0; }else{ $contar = 0; } if($contar < 1) { ?> <table width="100%" border="0" class="style1"> <tr> <td align="center">No se encontraron items con nombre: <strong><?php echo $item; ?></strong></td> </tr> </table> <? }else{ ?> <table width="100%" border="0"> <tr bgcolor="#666666" class="style2"> <td> </td> <td width="6%" align="center"><strong>Item ID</strong></td> <td width="25%" align="center"><strong>Nombre: </strong></td> <td width="29%" align="center"><strong>Descripcion: </strong></td> <td width="6%" align="center"><strong>Grado # :</strong></td> <td width="15%" align="center"><strong>Tipo: </strong></td> <td width="19%" align="center"><strong>Accion:</strong></td> </tr> <? while($c = mysql_fetch_array($sql)) { $cor = $cor + 1; if ($cor % 2 == 0) { $bg = '#F7F7F7'; } else { $bg = '#E7E7E7'; } $c['name'] = str_replace("_", " ", $c['name']); $img = GetImage($c['item_id']); $descripcion = GetDesc($c['item_id']); ?> <tr class="style1" bgcolor="<?php echo $bg; ?>"> <td><?php echo $img; ?></td> <td align="center"><?php echo $c['item_id']; ?></td> <td><?php echo ucwords(strtolower($c['name'])); ?></td> <td><?php echo $descripcion; ?></td> <td align="center"><?php echo ucwords($c['crystal_type']); ?></td> <td><?php echo $c['bodypart']; ?></td> <td><a href="?acao=doar&t=<?php echo $tabela; ?>&id=<?php echo $c['item_id']; ?>">ADD donated Item</a> </td> </tr> <? } } ?> </table> <? } if($acao == "doar") { $t = addslashes(htmlentities($_GET['t'])); $id = intval($_GET['id']); ?> <form method="get"> <input type="hidden" name="sacao" value="conta" /> <input type="hidden" name="acao" value="doar" /> <input type="hidden" name="t" value="<?php echo $t; ?>" /> <input type="hidden" name="id_item" value="<?php echo $id; ?>" /> <table width="100%" border="0" class="style1"> <tr> <td width="32%" align="right">Login of the Player: </td> <td width="68%"><input name="conta" type="text" class="style1" id="conta" /></td> </tr> <tr> <td> </td> <td><input type="submit" class="style1" value="Do It!" /></td> </tr> </table> </form> <? //lol where is the charID...? :P so the script has error.. and we find that lol if($sacao == 'conta') { $t = addslashes(htmlentities($_GET['t'])); $id_item = intval($_GET['id_item']); $conta = addslashes(htmlentities($_GET['conta'])); $co = mysql_query("SELECT * FROM characters WHERE account_name = '".$conta."'") or die(mysql_error()); $contar = mysql_num_rows($co); if($contar < 1) { echo "No Chars found !"; }else{ ?> <table width="100%" border="0" class="style1"> <tr> <td colspan="3" align="center" bgcolor="#FFFFFF" class="style1"><hr /></td> </tr> <tr> <td colspan="3" align="center" bgcolor="#FFFFFF" class="style1">List of the chars: <strong><?php echo $conta; ?></strong></td> </tr> <tr bgcolor="#666666"> <td width="35%" class="style2"><span class="style5">Name of char:</span></td> <td width="45%" class="style2"><span class="style5">Level of char:</span></td> <td width="20%" class="style2"><strong>Action:</strong></td> </tr> <? $cor = 0; while($c = mysql_fetch_object($co)) { $cor = $cor + 1; $bg = $cor % 2 == 0 ? '#F7F7F7' : '#E7E7E7'; ?> <tr bgcolor="<?php echo $bg; ?>"> <td><?php echo $c->char_name; ?></td> <td><?php echo $c->level; ?></td> <td> <a href="?acao=add&id_char=<?php echo $c->charId; ?>&t=<?php echo $t; ?>&id_item=<?php echo $id_item; ?>"> ADD Item </a> </td> </tr> <? } ?> </table> <? } } } if($acao == 'add') { $id_char = intval($_GET['id_char']); $id_item = intval($_GET['id_item']); $t = addslashes(htmlentities($_GET['t'])); ?> <form method="get"> <input type="hidden" name="sacao" value="addi" /> <input type="hidden" name="acao" value="add" /> <input type="hidden" name="id_char" value="<?php echo $id_char; ?>" /> <input type="hidden" name="id_item" value="<?php echo $id_item; ?>" /> <input type="hidden" name="t" value="<?php echo $t; ?>" /> <table width="100%" border="0" class="style1"> <tr> <td width="36%">Enchant of the Item: </td> <td width="64%"><input name="enchant" type="text" class="style1" id="enchant" /></td> </tr> <tr> <td>Quantity:</td> <td><input name="qtd" type="text" class="style1" id="qtd" /></td> </tr> <tr> <td> </td> <td><input type="submit" class="style1" value="Do It!" /></td> </tr> <tr> <td> </td> <td> </td> </tr> <tr> <td> </td> <td> </td> </tr> </table> </form> <? if($sacao == 'addi') { $id_char = intval($_GET['id_char']); $id_item = intval($_GET['id_item']); $t = addslashes(htmlentities($_GET['t'])); $enchant = intval($_GET['enchant']); $qtd = intval($_GET['qtd']); $caracteres = '0123456789'; $numch = 9; $oid = ''; for($i=0;$i<$numch;$i++) { $oid.=$caracteres[rand(0,strlen($caracteres)-1)]; } for($i = 1; $i <= $qtd; $i++) { $aux=$oid+$i; $qt = $qtd > 1 ? '1' : $qtd; mysql_query("INSERT INTO items (owner_id, object_id, item_id, count, enchant_level, loc) VALUES ('".$id_char."', '".$aux."', '".$id_item."', '".$qt."', '".$enchant."', 'INVENTORY')") or die(mysql_error()); mysql_query("INSERT INTO items_log (owner_id, object_id, item_id, count, enchant_level, loc) VALUES ('".$id_char."', '".$aux."', '".$id_item."', '".$qt."', '".$enchant."', 'INVENTORY')") or die(mysql_error()); } echo "Item Added!"; } } ?> </body> </html> echo "Item Added!"; [/code]
  8. Thank you for share maybe can use with l2jserver ?
  9. I need CTF for 2.4 who can share CTF for mee pls need l2jserver.jar or code ? thk
  10. I need CTF for 2.4 who can share CTF for mee pls need l2jserver.jar or code ? thk
  11. link is dead need new link pls http://www.4shared.com/file/vlbIgeO9/freyapart2.html
  12. Thx The End i was looking for it!
  13. Thank you
  14. http://www.4shared.com is very slow -*-
  15. I run on Live server has not ploblem
  16. Thank very much This Problem some file can't load how to fix this
×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..