Jump to content

davecosmo

Inactive Member
  • Posts

    3
  • Joined

  • Last visited

  • Feedback

    0%

About davecosmo

Recent Profile Visitors

39 profile views

davecosmo's Achievements

Explorer

Explorer (4/16)

  • One Year In
  • First Post
  • Dedicated
  • One Month Later
  • Week One Done

Recent Badges

9

Reputation

  1. Hello there, friend. I know it was not directed to me, but fyi I'm the one (or one of) that have disliked your comment, I'll explain now why. You know... I'll be 49 years old next Friday, and I can speak/write in 7 different languages (not including computer languages)... and also, from my experience of life, I can (and will) tell you this: -> When I'm helping someone to learn something, -> -> I learn something too in return, -> -> and I've made a friend, a platonic one, not a alcohol friend like so many others... -> If no body explain things to one another, no body learns nothing... -> If I write something, I'll always try to make someone feel better, not the opposite. Even now, I'm helping you to learn something, even if its Off Topic (and sorry about that, guys) like your post, which btw didn't contribute nothing to the topic. Nothing personal. @ Ulthar Files are 5 stars really! Good Work bro! And sorry for my intromission.
  2. Hi @gergogonczi, try this (it worked for me) In file /usr/metin2/src/game/src/stdafx.h Search for: #include <tr1/unordered_map> #include <tr1/unordered_set> replace with: #include <unordered_map> #include <unordered_set> Should be ok to compile after that. If I've understood correctly, this happened because of new version of c++ does not use tr1 any more. @ Ulthar : Great Work so far!!!! I'm testing now, all went OK, just the tr1 thingy that i've managed to correct it. Best regards to you all!! EDIT: I had a "problem" which was my bad ahahahah! Its OK now -> continuing playing around with these files
  3. Hi all, since my good friend @ Karbust forgot to mention (this mod work well btw and ty both), I've come to let you my small contribution, explaining how to implement. His mod is done like this: After implemented the full mod as @ Owsap explain, open the file Client source -> in file ServerStateChecker.cpp Search for: ipaddr = inet_addr(strcmp(rkAccountConnector.GetServerAddr(), "localhost") == 0 ? "127.0.0.1" : rkAccountConnector.GetServerAddr()); and replace that* line (just that one) with all these given by @ Karbust : struct hostent* remoteHost; if ((remoteHost = gethostbyname(rkAccountConnector.GetServerAddr())) == NULL) { #if defined(_DEBUG_RTT) TraceError("Unknown Hostname.\n\n"); #endif return; // Unkown Hostname } char* pDmsIP = inet_ntoa(*(struct in_addr*)(remoteHost->h_addr_list[0])); ipaddr = inet_addr(pDmsIP); Work just fine for me. EDIT: @Jimmermania you must have missed a step somewhere, verify again, or rollback to a previous backup and restart again.
×
×
  • 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.