Jump to content

fenixplayscz

Inactive Member
  • Posts

    236
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    0%

Everything posted by fenixplayscz

  1. Hello, i tried Extended shop, but when i click to the NPC i get packet error i dont know very well, where can be fault, packets its same in core & binary.. if someone know, tell me please where can be problem Thanks
  2. Can i unpack themida on windows 10 ? or i must have windows xp ? thanks for answer
  3. Try this <?php if(isset($_POST['idrecover']) && $_POST['idrecover']=="Recuperar") { if (checkMail($_POST['idemail'])) { $email = mysql_real_escape_string($_POST['idemail']); $getUser = "SELECT login FROM account.account WHERE email='" . $email . "'"; $qryUser = mysql_query($getUser); if (mysql_num_rows($qryUser) > 0) { // Set empty array $foundLogins = array(); // get all User IDs with the given email while ($row = mysql_fetch_array($qryUser)) { $foundLogins[] = $row['login']; } // config email $from = "[email protected]"; // email (from) $to = "[email protected]"; // email (to) $subject = "Subject"; // Subject $message = "Found the following IDs with the email " . $email . ": "; $comma_separated = implode(",", $foundLogins); $finalMessage = $message.$comma_separated."</br>"; // set email header $headers = array(); $headers[] = "MIME-Version: 1.0"; $headers[] = "Content-type: text/plain; charset=iso-8859-1"; $headers[] = "From: Sender Name <$from>"; $headers[] = "Reply-To: Recipient Name <$from>"; $headers[] = "Subject: {$subject}"; $headers[] = "X-Mailer: PHP/" . phpversion(); // send mail if (!mail($to, $subject, $finalMessage, implode("\r\n", $headers))) { echo "Email could not send"; } else { echo "Email send"; } } else { echo "No entries found with this email"; } } else { echo "email not valid"; } } else { echo "fill the formular"; } ?>
  4. if you have in ActorInstaceData.cpp in void CActorInstance::SetAcce(DWORD eAcce, float fSpecular) this change to this
  5. Try this <?php if(isset($_POST['idrecover']) && $_POST['idrecover']=="Recuperar") { if(checkMail($_POST['idemail'])) { $email = mysql_real_escape_string($_POST['idemail']); $query = "SELECT login FROM account.account WHERE email='".$email."' LIMIT 100"; $result = mysql_query($query); echo'<p class="meldung">xxxxxx'; $absender = $serverSettings['titel']." Recuperação"; $email = $serverSettings['pass_mail']; $empfaenger = $_POST['idemail']; if(mysql_num_rows($result)>0) { //$qryPass = mysql_query($getUser); while($row = mysql_fetch_assoc($result)) { $mail_body = " Hellou!! This is realy funny, but dont Work. ID: ".$row['login']." ----------->>>> i wanna see all logins in Here!!!!"; } $titel = "Recuperação de Password ".$serverSettings['titel']; $header .= "X-Priority: 3\n"; $header .= "X-Mailer: mtVision Homepage Mailer\n"; $header .= "MIME-Version: 1.0\n"; $header .= "From: ".$absender." <".$serverSettings['pass_mail'].">\n"; $header .= "Reply-To: ".$serverSettings['pass_mail']."\n"; //$header .= "Content-Transfer-Encoding: 8bit\n"; $header .= "Content-Type: text/plain; charset=iso-8859-1\n"; if(!mail($empfaenger, $titel, $mail_body, $header)) { echo'<p class="meldung">xxxxxx'; } } else { echo'<p class="meldung">xxxxxx'; } } else { echo'<p class="meldung">xxxxxx'; } } ?>
  6. Make with while($row = $???) { echo row['login']; }
  7. Hello, when i want to open Acce combination window via quest, window dont show, when i want to open via command /acce open, still not show where can i be fault? ..
  8. Hello, i make max yang to long long, show yang in inventory is working but, when i (drop,pickup,sell,buy) or something like this, binary show me 0 yang, but when i logout and again login to character yang is still same, or increased from sell, or buy item or else, i checked all functions in core,binary all elk,money,gold and changed to long long but still dont work, and my shops is crazy So when i reach yang 2kkk+ binary show 0.. if someone know how to fix problem with 0 yang, and shops please help me
  9. Hello, its possible to compile binary without visual studio? like gmake in freebsd for server? i mean compile binary in cmd.. if yes, can you tell me how? thanks
  10. Hi, i can make code if you have design , contact me on skype: devfleshii
  11. if you mean metin2debug.exe, yea i builded in debug, and try but still same error crash after login to character, and in debug log its nothing strange
  12. MrLibya : i tried, but still same error ds_aim: how? i dont have game.core in core folder
  13. Hello, i using compiled game and binary from mainline, when i login in client, i can create character,delete character,but when i login to character, client crash to login, in syssers is nothing, server = clear client sysser = clear too.. i dont know what is bad.. did someone know?
  14. Hello i all edited, i have max alignment 100 000, yea i changed data type, but there is one problem, when i change TITLE_NAME_LIST in localeinfo.py, from 8 to 26 (my PVP_LEVEL is 26 max) , and pack root, my client give me this error FIXED!!!
  15. Thanks for reply, but i tried add name like this, but dont work, i think its need add something in binary for reading skilldesc add some type for L Skill? or idk, but i dont find something for skilldesc
  16. im making L Skills, skill after P but i dont know how to make in skilldesc, source is ok, only skilldesc dont know
  17. Hi, it someone know very good skilldesc? and can help me? if yes, add me on skype: devfleshii ,or write to this topic thanks.. if you help me , and works i give you some money:P
  18. DEFINE('SQL_HOST', 'IP OF GAME SERVER'); < what to right here? DEFINE('SQL_USER', 'NAME OF REMOTE MYSQL USER'); DEFINE('SQL_PASS', 'PASS OF REMOTE MYSQL USER'); < what to right here? DEFINE('SQL_HP_HOST', 'IP OF GAME SERVER'); < what to right here? DEFINE('SQL_HP_USER', 'NAME OF REMOTE MYSQL USER'); DEFINE('SQL_HP_PASS', 'PASS OF REMOTE MYSQL USER'); < what to right here? DEFINE('SQL_HP_DB', 'account'); < make like this, and its working fine for me
×
×
  • 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.