Jump to content

kieranFMT2

Inactive Member
  • Posts

    334
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by kieranFMT2

  1. this client was released on forums last year its not stealing.All the posts ive seen links are dead
  2. Hey there i am looking for the exorian.pl client.If can be ready to be unpacked by a normal extractor like eternexus. Here is a preview of the client If you have the client please pm me here
  3. Yeah but does some1 have the files? like ready to add to the client
  4. Hey guys im searching for the following systems that was featured in baria.top - New Character Information - Upgrate items thing that shows how much u have of the item needed - Sidebar Guys i would prefer not to be handed to paid services because im sure atleast 2 of the following are released somewhere but i cant find them for some reason. If you can send links in a pm or reply here. Kind Regards kieranFMT2/[SA]Titan
  5. Is there a tutorial on how to make such textures?
  6. Hey There, I am working on a new metin2 private server and im looking to protect my client.I used the Enigma Virtual Box just to find that someone released a vunrability on how to extract my archived files.I was just wonder if there will be a patch for this or is there any way to prevent people from using this tool to get my assets? This is the link to the tool in question:[Hidden Content] If anyone has any other method of protecting the client without client source please also reply
  7. Hey im trying to add a homepage to my server everything seems to be working apart from the register.php script. This is the original page: Click Here! Here is the register.php Register.php <h2>Registration</h2> <?PHP $regCoins = 0; // Startcoins $laufZeit = 365; //Tage autoloot,safebox $calcLZ = (60*60*24)*365; $expireStamp = time()+$calcLZ; $expireDate = date("Y-m-d H:i:s",$expireStamp); if($serverSettings['register_on'] && !isset($_SESSION['user_admin'])) { if(isset($_POST['submit']) && strtolower($_POST['submit']) == 'registrieren') { $error = false; $errorString = ""; if(empty($_POST['login'])) { $errorString .= '<li>You must insert a username to continue</li>'; } elseif(strlen($_POST['login']) > 16) { $errorString .= '<li>The username can only have a maximum of 16 characters</li>'; } elseif(strlen($_POST['login']) < 5) { $errorString .= '<li>The username must have a minimum of 5 characters</li>'; } elseif(!ctype_alnum(str_replace(' ', '', $_POST['login']))) { $errorString .= '<li>The username can only contain letters or numbers</li>'; } else { $login = mysql_real_escape_string($_POST['login']); } if(empty($_POST['real_name'])) { $errorString .= '<li>You must insert a name to continue</li>'; } elseif(strlen($_POST['real_name']) > 20) { $errorString .= '<li>The name can only have a maximum of 20 characters</li>'; } elseif(strlen($_POST['real_name']) < 3) { $errorString .= '<li>The name must have a minimum of 3 characters</li>'; } elseif(!ctype_alnum(str_replace(' ', '', $_POST['real_name']))) { $errorString .= '<li>The name can only contain letters or numbers</li>'; } else { $real_name = mysql_real_escape_string($_POST['real_name']); } if(empty($_POST['password'])) { $errorString .= '<li>You must insert a password to continue</li>'; } elseif(strlen($_POST['password']) > 32) { $errorString .= '<li>The password can only have a maximum of 32 characters</li>'; } elseif(strlen($_POST['password']) < 8) { $errorString .= '<li>The password must have a minimum of 8 characters</li>'; } else { $password = mysql_real_escape_string($_POST['password']); } if(empty($_POST['email'])) { $errorString .= '<li>You must insert an email address to continue</li>'; } elseif($_POST['email'] === false) { $errorString .= '<li>The email address you have provided is invalid</li>'; } else { $email = mysql_real_escape_string($_POST['email']); $qry = mysql_query("SELECT email FROM account.account WHERE email = '" . $email . "'", $sqlServ); if($qry && mysql_num_rows($qry) > 0) { $errorString .= '<li>This email already belongs to another username on the server</li>'; } } if(empty($_POST['social_id'])) { $errorString .= '<li>You must insert a deletion code to continue</li>'; } elseif(strlen($_POST['social_id']) != 7) { $errorString .= '<li>The deletion code can only have a minimum of 7 characters</li>'; } elseif(!ctype_alnum($_POST['social_id'])) { $errorString .= '<li>The deletion code can only contain letters or numbers</li>'; } else { $social_id = mysql_real_escape_string($_POST['social_id']); } if(empty($_POST['sicherheitsa'])) { $errorString .= '<li>You must insert a security answer to continue</li>'; } elseif(strlen($_POST['sicherheitsa']) < 3) { $errorString .= '<li>The security answer can only have a minimum of 7 characters</li>'; } elseif(strlen($_POST['sicherheitsa']) > 16) { $errorString .= '<li>The security answer can only have a maxium of 16 characters</li>'; } elseif(!ctype_alnum($_POST['sicherheitsa'])) { $errorString .= '<li>The security answer can only contain letters or numbers</li>'; } elseif(empty($_POST['sicherheitsf']) || !is_numeric($_POST['sicherheitsf'])) { $errorString .= '<li>Please select a security question to continue</li>'; } else { $hashSF = md5($_POST['sicherheitsa']); $sfNum = mysql_real_escape_string($_POST['sicherheitsf']); } if(empty($_SESSION['captcha_id']) || empty($_POST['captcha'])) { $errorString .= '<li>You must insert an answer to the captcha to continue</li>'; } elseif($_POST['captcha'] != $_SESSION['captcha_id']) { $errorString .= '<li>The captcha you have inserted is incorrect.Please enter the correct one</li>'; } if(!empty($errorString)) { $error = true; } if($error) { echo '<div class="meldung">'; echo '<p><strong>These errors have occurred during the registration:</strong></p>'; echo '<ul>'; echo $errorString; echo '</ul>'; echo '</div>'; } else { $sqlCmd = "INSERT INTO account.account (login,password,real_name,email,social_id,question1,answer1,create_time,status,coins,autoloot_expire,safebox_expire) VALUES ('" . $login . "',PASSWORD('" . $password . "'),'" . $real_name . "','" . $email . "','" . $social_id . "','" . $sfNum . "','" . $hashSF . "','" . $sqlZeit . "','OK','" . $regCoins . "','" . $expireDate . "','" . $expireDate."')"; $sqlQry = mysql_query($sqlCmd,$sqlServ); if($sqlQry) { echo'<p class="meldung">Registration successful : You can login to your account now.</p>'; } else { echo'<p class="meldung">Registration failed : Please fill in all fields properly.</p>'; } } } if(!isset($error) || $error) { ?> <form action="index.php?s=register" method="POST" id="registerForm"> <table> <tr> <th class="topLine">Account:</th> <td class="tdunkel"><input type="text" name="login" maxlength="16" size="16" placeholder="5-16 Characters (only a-Z,0-9)"<?php echo isset($_POST['login']) ? ' value="' . $_POST['login'] . '"' : ''; ?>></td> </tr> <tr> <th class="topLine">Name:</th> <td class="thell"><input type="text" name="real_name" maxlength="20" size="16" placeholder="3-20 Characters (only a-Z,0-9)"<?php echo isset($_POST['name']) ? ' value="' . $_POST['name'] . '"' : ''; ?>></td> </tr> <tr> <th class="topLine">Password:</th> <td class="tdunkel"><input type="password" name="password" maxlength="32" size="16" placeholder="8-32 Characters (only a-Z,0-9)"></td> </tr> <tr> <th class="topLine">E-Mail:</th> <td class="tdunkel"><input type="text" name="email" maxlength="50" size="25" placeholder="max. 50 Characters"<?php echo isset($_POST['email']) ? ' value="' . $_POST['email'] . '"' : ''; ?>></td> </tr> <tr> <th class="topLine">L&ouml;schcode:</th> <td class="tdunkel"><input type="text" name="social_id" maxlength="7" size="7" placeholder="7 Characters (only a-Z,0-9)"<?php echo isset($_POST['social_id']) ? ' value="' . $_POST['social_id'] . '"' : ''; ?>></td> </tr> <tr> <th class="topLine">Security Question:</th> <td class="thell"> <select name="sicherheitsf"> <?PHP foreach($sFrage AS $fragew => $frage) { echo'<option value="'.$fragew.'">'.$frage.'</option>'; } ?> </select> <br/> <input type="text" name="sicherheitsa" maxlength="16" size="16" placeholder="3-16 Characters (only a-Z,0-9)"> </td> </tr> <tr> <th class="topLine">Captcha:</th> <td class="tdunkel"><img src="./captcha/captcha.php" title="Captcha" class="captchaImg"/><br /><input type="text" name="captcha" maxlength="5" size="5"></td> </tr> <tr> <th class="topLine" style="text-align:center;" colspan="2"><input type="submit" name="submit" value="Register"></th> </tr> </table> </form> <?PHP } } else { echo'<p class="meldung">Registration is disabled or you are already logged in to an account. You must log out to create another account.</p>'; } ?> here is the table names for the required db: id login password real_name social_id email phone1 phone2 address zipcode create_time question1 answer1 question2 answer2 is_testor status securitycode newsletter empire name_checked availDt mileage cash gold_expire silver_expire safebox_expire autoloot_expire fish_mind_expire marriage_fast_expire money_drop_rate_expire ttl_cash ttl_mileage channel_company last_play coins web_admin web_ip web_aktiviert lastvote dp dm admin if u prefer to help me in private u can always pm me
  8. yeah but u must use some sort of sf base give us something xD and the website
  9. SYSERR: May 29 11:38:01.765161 :: hupsig: SIGHUP, SIGINT, SIGTERM signal has been received. shutting down. SYSERR: May 29 11:38:01.923769 :: pid_deinit: End of pid SYSERR: May 29 11:39:45.236658 :: pid_init: Start of pid: 775 SYSERR: May 29 11:39:45.238249 :: Start: TABLE_POSTFIX not configured use default SYSERR: May 29 11:39:47.569736 :: DirectQuery: AsyncSQL::DirectQuery : mysql_query error: Column 'money' in field list is ambiguous query: SELECT empire, pid, name, money, windate FROM monarch a, player b where a.pid=b.id anyone know how to fix this
  10. 0528 14:01:19256 :: File "game.py", line 1003, in StartExchange 0528 14:01:19256 :: File "interfaceModule.py", line 749, in StartExchange 0528 14:01:19256 :: File "uiExchange.py", line 84, in OpenDialog 0528 14:01:19256 :: TypeError 0528 14:01:19256 :: : 0528 14:01:19256 :: not enough arguments for format string 0528 14:01:19256 :: Anyone know why i get this
  11. how do i disable Lycan from items? like what class is allowed to wear what
  12. Guys how can i fix this without client source? 0520 20:08:00892 :: Traceback (most recent call last): 0520 20:08:00892 :: File "introLogo.py", line 60, in OnUpdate 0520 20:08:00892 :: File "networkModule.py", line 177, in SetLoginPhase 0520 20:08:00892 :: File "system.py", line 130, in __pack_import 0520 20:08:00892 :: File "system.py", line 110, in _process_result 0520 20:08:00892 :: File "introLogin.py", line 2, in <module> 0520 20:08:00892 :: File "system.py", line 137, in __pack_import 0520 20:08:00892 :: File "E:\Age Of Metin2\Game\Age Of Metin2 - A New Era broken\lib\urllib.py", line 26, in <module> 0520 20:08:00894 :: 0520 20:08:00894 :: import socket 0520 20:08:00895 :: File "system.py", line 137, in __pack_import 0520 20:08:00895 :: File "E:\Age Of Metin2\Game\Age Of Metin2 - A New Era broken\lib\socket.py", line 41, in <module> 0520 20:08:00900 :: 0520 20:08:00900 :: from _socket import * 0520 20:08:00900 :: File "system.py", line 137, in __pack_import 0520 20:08:00900 :: ImportError 0520 20:08:00900 :: : 0520 20:08:00900 :: Module use of python22.dll conflicts with this version of Python. 0520 20:08:00900 ::
  13. I need to protect my client though is there a tut for this?
  14. Hey there! How can i remove Encrypted Index Files and still have the client functioning? its some sort of protection that most server use to prevent files from being stolen. Can Anyone Help Me? Skype:-EDIT-
  15. how can i move the char model to the right position on the platform?
×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / 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.