Jump to content

pollux

Honorable Member
  • Posts

    264
  • Joined

  • Days Won

    23
  • Feedback

    0%

Everything posted by pollux

  1. Do you have any output in your syserr of your client? If not, start your client with a 'debug binary' and watch the console. Also it would be nice to know which Client (src?) you use and which switchbot?
  2. There is a small api but it does not have that much 'features'. Look here: [Hidden Content] (moved to Q&A)
  3. Today is the last chance to participate. We will announce the winners tomorrow!
  4. As mentioned before: If you use PHP >= 7 you have to use MySQLi or PDO. If you use a lower version of PHP you should check if the mysql module is loaded by your webserver. If you're not familiar with PHP you can try to change everything to mysqli - it's likely the same. [Hidden Content]
  5. This is just a clean source yet, so you don't need to use a modified binary. The 40250 test-client just works fine. Downloadlink: [Hidden Content] (copied from this post)
  6. There's only one week left to participate... Do it NOW!
  7. Happy new year (and a big thank you)! Do you guys remember 'the good old times'? I think of this time the forum had only 385 members. It was the time everything started - back in 2014. And now - approx. 3 years later - we're still there! We're still... THERE! Yes, you are right! We're still here! Now with 11.111 members - okay, maybe a bit more now, but we had these members at 16:32 GMT+1 today - we'll soon switch to year 2017. As a big 'Thank you!' to all of you and a New Year present we want to do a giveaway with all our members which were here in the last 3 years. Okay.. Also the newer ones will get their chance, but not everyone might be chosen for this... We will give away 11x VIP rank on this forum - all you need to do is to enter the giveaway on our small giveaway page. But please don't be upset if you don't understand the requirements - it's a mystery for us, too. We want to thank all of you for your confidence in us, for your loyalty, for your effort to make this a great place to be. We also want to wish all of you a Happy New Year and we hope we still see you in the next 3 years. This giveaway will be open until the 31th January 2017. You can take part on this page. Sincerely, metin2dev.org Administration ... and always remember: We are a community!
  8. #moved (Releases > Binaries & Clients/Serverfiles to Metin2 > Q&A)
  9. No really.. Try something like this: UPDATE player.mob_proto SET exp = (exp / 4); $handle = fopen("exp_table.txt", "r"); if ($handle) { while (($line = fgets($handle)) !== false) { // process the line read. $line = (intval($line) / 4); file_put_contents('exp_table_new.txt', $line.PHP_EOL, FILE_APPEND | LOCK_EX); } fclose($handle); } else { // error opening the file. }
  10. You don't need to increase the exp. Just divide the needed exp per level and the exp per mob(kill) by the same amount and you have smaller numbers but the same time you need to get to a higher level. Easy to do...
  11. #moved (Metin2 > General to Releases > Tools)
  12. Google hates it. Really. In general we can say that the html redirect is just a "workaround" when you don't have any other possibility to do it (e.g. via htaccess/redirect engine or php). The html redirect looks really spammy for Google itself because Google will think that this is only a temporary redirect (302 vs. 301). Additionally to this, the W3C (as mentioned >>here<<) discouraged this method because unexpected refreshs can disorient users.
  13. Just do it as @Ayaka told you. Use the bad style and put a html based redirect anywhere in your script. Or do it with header(); and don't do any output (eg: echo, var_dump, print, print_r) before it. You can also put a delay like it's shown here: [Hidden Content]
  14. @Fleon i hid your first post and edited your second. You are able to use the edit function (i saw this ^^) so please do it (again) in the future.
  15. #moved (Binaries & Clients/Serverfiles -> Questions and Answers)
  16. First of all you should update your code to MySQLi. It's newer, safer and better Then: Please show us the error code you're getting. ini_set('display_errors', '1'); error_reporting(E_ALL);
  17. Please use the file request thread in the future. #closed
×
×
  • 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.