Jump to content

127.0.0.1

Banned
  • Posts

    51
  • Joined

  • Last visited

  • Feedback

    0%

About 127.0.0.1

Core X

  • BAN_NOTICE
    Yes

Informations

  • Gender
    Male

Recent Profile Visitors

2365 profile views

127.0.0.1's Achievements

Contributor

Contributor (5/16)

  • First Post
  • Collaborator
  • Conversation Starter
  • Week One Done
  • One Month Later

Recent Badges

32

Reputation

  1. cmd_emotion.cpp if(IS_SET(emotion_types[i].flag, WOMAN_ONLY) && SEX_MALE == GET_SEX(ch)) { ch->ChatPacket(CHAT_TYPE_INFO, LC_TEXT("여자만 할 수 있습니다.")); return; } Delete this part of code. A question, perhaps you want to make a server for a gay community? If you need help to remove female characters , open a topic, i will try to help you. This question made my day
  2. Let me explain, let's say that you did a database backup with MySQL 5.5 , and now you have installed MySQL 5.6 If you have the database on MySQL 5.5 and MySQL 5.6 installed, this means that you overwrite database .. This is not good. All versions are different, and once this thing could cost you your entire database. Each MySQL version has a different structure, more or less. Never overwrite folder var/db/mysql/mysql this folder should be never overwrite. No one can know what is in your server, follow the steps above .. and come back with an answer if this problem appears. I'm pretty sure the problem is only mysql server. And to make sure that the tables are optimized for MySQL version/MariaDB that you use to run this command too. After installing the database as I said above, run this command. // Mysql 5.6 mysql_upgrade // mysql 5.7 mysql_upgrade -u root -p After reboot you server. Then wait for a new crash.
  3. Why always you guys overwrite MySQL database? How hard can it be to install some mysql tables correct? Can't connect to local MySQL server through socket '/tmp/mysql.sock' This means that MySQL server is dead. I noticed that most people who work in Metin2 scene, just make a backup archive and unpack in /var/db/ This is fucking wrong guys. You guys do not know to install a MySQL database and you want to make servers. I suggest you to do so: Stop the metin server Repair all the tables to make sure they are functional. Create a .sql dump to all databases belonging to metin. Stop the MySQL server. ( service mysql-server stop) Delete the folder / var / db / mysql Now start again mysql server Now configure your mysql server again (The user " root " ) GRANT ALL PRIVILEGES ON *.* TO root@"%" IDENTIFIED BY 'password' WITH GRANT OPTION; FLUSH PRIVILEGES; Now install metin tables from .sql dump Regards, Ramy
  4. Nice , you want to sell them?
  5. Hello, look at my profile and add me on skype. I will do my best
  6. Damn, I forgot that they were added when it was implemented in C ++ 11. Then, make files as they were before. and run only gmake dep command. To work as I told you above, you compiler need to support C ++ 11.
  7. Open db/src/stdafx.h and add : #include <unordered_map> #include <unordered_set> Then open ClientManager.h and replace all boost::unordered_map boost::unordered_set with std::unordered_map std::unordered_set Then go to db/src directory and run this command gmake dep Then compile again Back intro the past , STL was too immature and bloated. But that was >10 years ago. Now we should use STL where is possile , also STL is now much faster than boost
  8. Now you need the hackshield library. libhackshield/lib
  9. You do not have libraries devIL intro server/libdevil , take them from novaline or any other source.
  10. I, personally I checked. All are identical, only a few functions are different, that are unimportant. You can use mainline_released ->mainline_relesed
×
×
  • 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.