Jump to content
Metin2 Network
Create New...

Calos

Member
  • Posts

    6
  • Joined

  • Last visited

Calos's Achievements

  • Conversation Starter

Recent Badges

2

Reputation

  1. # Freebsd 13.0 - MariaDB 10.5 Server + Clang Login: root / dev GCC 11 Clang Python 3.9 Lua 5.3 MariaDB 10.5 All ports & pkg are up to date. Download: [Hidden Content]
  2. Download: [Hidden Content]
  3. We enter the game source in input_login.cpp and look for: ch->StartCheckSpeedHackEvent(); Under it we add: #ifdef SET_LEVEL_FIRST_LOGIN ch->FirstLogin(); #endif Now we enter char.h and look for: void SendEquipment(LPCHARACTER ch); Under it we add: #ifdef SET_LEVEL_FIRST_LOGIN void FirstLogin(); #endif Enter char.cpp and search for: void CHARACTER::SetMarryPartner(LPCHARACTER ch) { m_pkChrMarried = ch; } Under it we add: #ifdef SET_LEVEL_FIRST_LOGIN void CHARACTER::FirstLogin() { if (!GetQuestFlag("start.first_login")) { ResetPoint(MINMAX(1, 99, PLAYER_MAX_LEVEL_CONST)); /* here you select your start level */ SetQuestFlag("start.first_login", 1); } } #endif
  4. You can use the FreeBSD 13.3 mariadb10.6 version that I created for you from the iso file with peace of mind, the information is in the file Download: [Hidden Content] pass: Metin2hub
  5. Upgraded from FreeBSD 11.4 Timezone problem has been fixed. ZFS is preferred as the file system due to higher disk speed. Available Packages: Gmake Gcc8 Gcc9 Gcc10 MySQL 5.5 Python 2.7 x32 VHD MySql 5.5 gcc9 pyton 2.7 id: root pw: dev Download: [Hidden Content]
  6. Sometimes there is a need to use older software because there are compatibility problems with the current one. Often such a case in the metin2 server is a mysql server where there are differences between versions of mysql /mariadb and releases /5.6 /8.0. To avoid this hassle there is a way to install mysql56-server mysql56-client on any release of Freebsd up to 14 x64. To do this just do the following: 1. download the files [Hidden Content] put in sftp ftp to ur server and follow 2. 3. 4. step 2. install mysql56 pkg install mysql56-client-5.6.51.pkg mysql56-server-5.6.51.pkg 3. check if the library files are already installed find / -iname "libssl.so.111" && find / -iname "libcrypto.so.111" this command should this result as they are installed /usr/lib/libssl.so.111 /lib/libcrypto.so.111 If it shows nothing means that we have to install them manually tar -xzf libs_64bit_mysql.tgz -C / (for Freebsd 32bit use libs_32bit_mysql.tgz ) 3.now we have mysql56 installed and proceed as standard sysrc mysql_enable=YES service mysql-server start mysql_secure_installation The rest is done exactly the same as with any other mysql server, then just add the user and install the databases.
×
×
  • Create New...

Important Information

Terms of Service

Write what you are looking for and press enter or click the search icon to begin your search