Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 08/05/18 in all areas

  1. M2 Download Center Download Here ( Internal ) Hi devs, I'd like to share a script I developed the other night whilst working on a project, this script is meant to improve the quality of life of Metin2 as often players find it hard to accurately tell the cooldown of skills and end up spamming their keyboards like many of us have. Preview: Without any further ado, let's dig right into coding this bad boy. We start with locale: Now we shall move onto root part: version 1.0 version 2.0 If you encounter any bugs or you have suggestions please let me know! Changes:
    1 point
  2. M2 Download Center Download Here ( Internal ) The textures of this water are ideally joined by no visible textures (seams). Colors are well matched to the climate of the metin. Download: [Hidden Content]
    1 point
  3. 1. mysql -u root -p 2. create user 'root'@'localhost' identified by 'password you wish'; 3. grant all privileges on *.* to 'root'@'localhost' identified by 'same pass' with grant option; 4. flush privileges; 5. exit You can also create a completely new user where you put instead of 'root@'localhost' - 'user'@'%'. Don't forget to add privileges. Now you should be able to connect from your MySQL client to the server using IP of the virtual machine, chosen username and password. If you need further assistance send me a DM. Regards.
    1 point
  4. Be sure your mysql server is running and can accept connection from 127.0.0.1. Be sure your config files have correct port (default 3306) So, to do that run this: netstat -na | grep 3306 To try the connection: mysql -h 127.0.0.1 You should not use 127.0.0.1 but localhost, in this way you will use unix socket instead loopback interface.
    1 point
  5. You should update your code with mysqli library or mysql PDO. Or you can downgrade your php version with legacy one (php5.6).
    1 point
  6. I have Current PHP version: 7.2.8 You are fucking best my friend i love u i love you mother i love u father and i love good for!!!!!!!!! i resolved
    1 point
  7. You can use something really basic like this: <?php echo 'Current PHP version: ' . phpversion() ?> Just add it into the (for example) index file and you'll see the current version.
    1 point
  8. quest npcshop begin state start begin when 9001.chat."Potts" begin npc . open_shop() setskin(NOWINDOW) end when 9001.chat."Upp" begin npc.open_shop() setskin(NOWINDOW) end when 9001.chat."kommt noch" begin npc.open_shop() setskin(NOWINDOW) end when 9003.chat."kommt noch" begin npc.open_shop(52) setskin(NOWINDOW) end end end
    1 point
  9. Nice Thank you!
    1 point
  10. The only two errors you could get when you compile your root are: "Decoding error, missing or incorrect coding"Since all the .py files are processed as korean strings, all of them written with a different charset (arabic) will trigger this issue. It's explained in the .txt file, and you can simply bypass this just writing the text in the locale_game.txt file. "Expected an increase in indentation level"This happens when the .py file has a bad tabulation, so bad written: It's clear that you won't be able to compile unworkable/unrunnable/broken .py files.
    1 point
×
×
  • 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.