Jump to content

Metin2SP

Active Member
  • Posts

    55
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by Metin2SP

  1. Bump!! the open beta is started!!
  2. Closed beta started! https://metin2sp.net
  3. this game mode including co-op too, you can play with friends
  4. same like all metin2 servers... AI? Try again...
  5. https://metin2sp.net METIN II SINGLEPLAYER A forgotten realm. A legend reborn. Not another private server. Metin2 rebuilt as a story-driven singleplayer RPG. What is Metin2 SP? Metin II Singleplayer reimagines the classic Metin2 experience as a cinematic, story-driven RPG built primarily for solo play. Instead of connecting to a public server, everything runs locally on your own computer, giving you complete control over your adventure. Create your own save files, explore a handcrafted campaign, progress at your own pace, and enjoy optional co-op whenever you want to play with friends. Features Offline singleplayer experience Runs entirely on your own PC Local save slots (Create / Load / Delete) Original story campaign Optional co-op Join friends using a simple invite code The Last Bastion — Chapter I The three kingdoms have fallen into darkness. Shinsoo lies in ruins. Chunjo has been torn apart by conflict. Only Jinno remains, standing against an ancient corruption spreading from the Metin Stones. As the last hope of the continent, you must uncover forgotten secrets, battle powerful enemies, and decide the fate of the world. The campaign includes A handcrafted story Story-driven quests Cinematic moments A fresh interpretation of the classic Metin2 universe Core Features Story Campaign Experience an original chapter-based adventure with memorable characters, meaningful progression and an evolving storyline. Solo Dungeons Take on handcrafted dungeons designed specifically for one player, featuring unique mechanics and challenging boss encounters. Character Progression Choose one of the four classic classes: Warrior Ninja Sura Shaman Level up, improve your equipment, unlock powerful skills and customize your build. Crafting & Equipment Collect rare resources, upgrade your weapons and armor, and prepare yourself for increasingly difficult challenges. Optional Co-op Invite friends into your world using a simple join code. No complicated networking. No port forwarding. Just launch the game and play together. Open World Explore villages, forests and dungeons filled with quests, merchants, hidden treasures and familiar systems including inventory management, skills, resource gathering and quest journals. Why Metin2 SP is Different Unlike traditional private servers, Metin2 SP is designed as a complete singleplayer RPG. There are no public servers to depend on, no wipes, no waiting for administrators, and no pressure to keep up with other players. Everything is stored locally on your own computer, allowing you to enjoy the game whenever you want while still having the option to invite friends for cooperative adventures. Closed Beta The project is currently in Closed Beta. Players can submit an application through the official website. Selected applicants will receive an invitation by email. Website: https://metin2sp.net Current Beta Language: English Return to the world you remember. Forge a new path. © 2026 Metin2 SP https://metin2.download/video/Kb259LDTl8HDql1t74S6Ehe0iyURfR04/.mp4
  6. Lubię tematy, gdzie ludzie mówią o mnie jakbym był kimś innym niż naprawdę jestem no i wygląda, że nie mogę się pozbyć głupich ludzi, co mi wmawiają różne głupoty. poza tym, nie trzeba mieć nazwiska polskiego żeby być Polakiem. Jak można być takim głupim w 2025, żeby myśleć że ktoś nie jest Polakiem bo nie ma polskiego nazwiska? Też przestałem pracować z tym gościem, bo jego niedowierzanie już by sprawiło, że projekt by się zaczął źle. A ja nie chcę psuć sobie reputacji przez takich ludzi dzięki!this people act like police and try to scam me with some contracts be
  7. Thanks, I will think about this
  8. Yes, it is, but if you need to find something on mobile, it's useful It's something classic, everyone can adapt it to their liking
  9. This simple script was developed as a free tool for a customer, and I’m sharing it here to help others. It allows you to view the entire logs table from Navicat with search and filter options, making it easier to find specific entries and analyze your data quickly. Instructions: Upload files, Edit config.php That's it! Download [Hidden Content]
  10. Contact me -> mutulic on discord!
  11. Hello guys , i recreated a Dracarys Event Calendar for Website. It works using JSON, i can adapt to work with Dracarys SQL if u want. If you need custom work, visit: PSD For Background: [Hidden Content] (To edit days name) Download Alternative download links → Metin2 Download
  12. Hello comunity, That's a script to offer for online players some reward in items. Instructions: Upload files on web server. Edit config.php with your navicat details. Features: show online players in last 5 minutes use item_award to insert reward to players items show instantly in ITEMSHOP ingame only set vnum and count and press button to offer reward offer reward to more players without refresh For custom work contact me. [Hidden Content] [Hidden Content]
  13. header.php updated today - 05.08.2024
  14. Hello everyone, here i will add updates about my CMS! My CMS will be FREE open source on GitHub and will have a premium version too. - Framework abilities: Use Twig for template [NEW] Use Frameworks for pagination [NEW] For internal database using TXT files, not SQLite: Themplates change Easy to adapt existent template html to my CMS - Developed functions: Multilanguage system [Created with JS (auto reload current page with selected language)] Server statistics Top 10 guilds Top 10 players Template changer New default template - In construction: Register News on first page User Panel Admin Panel Download
  15. Gameforge coming too :))
  16. i'm not sure, i think 13000 or 13001
  17. Sure, you can add by game source and using my php code to access it
  18. for custom work add me on discord
  19. Hello comunity, This is a API script for Metin2 - PHP version TCP to P2P Connection. Thanks @ Gurgarath for explain how metin2 works ? Download Alternative download links → Mega
  20. Can you explain?
  21. Hello comunity, This is a tutorial to add custom delete code character for Metin2CMS by @ IonutRO. Location: pages/register.php Under: <tr> <td><?php print $lang['email-address']; ?>:</td> <td><input class="form-control" name="email" id="email" pattern=".{7,64}" maxlength="64" placeholder="*****@*****.tld" required="" type="email"> <p class="text-danger" id="checkemail"></p> </td> </tr> Add: <tr> <td>Delete code:</td> <td><input class="form-control" name="delete_char" id="delete_char" pattern=".{7,7}" maxlength="7" required="" type="number"> </td> </tr> Location: include/functions/register.php Replace: if(isset($_POST['captcha']) && isset($_POST['username']) && isset($_POST['password']) && isset($_POST['rpassword']) && isset($_POST['email']) && isset($_SESSION['captcha']['code'])) With: if(isset($_POST['captcha']) && isset($_POST['username']) && isset($_POST['password']) && isset($_POST['rpassword']) && isset($_POST['email']) && isset($_SESSION['captcha']['code'] && isset($_POST['delete_char'])) Location: include/functions/register.php Replace: if($database->register($_POST['username'],$_POST['password'],$_POST['email'],$ref)) With: if($database->register($_POST['username'], $_POST['password'], $_POST['email'], $ref, $_POST['delete_char'])) Location: include/classes/user.php Replace: public function register($username,$password,$email,$ref) With: public function register($username, $password, $email, $ref, $delcode) Location: include/classes/user.php Replace: $stmt->bindparam(":social_id", $social_id); With: $stmt->bindparam(":social_id", $delcode); Location: include/classes/user.php Remove: $social_id = rand(1000000, 9999999); // updated in v2.12 Thanks ?
      • 10
      • Metin2 Dev
      • Love
×
×
  • 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.