Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Connecting, please wait...

Status
Not open for further replies.
Initiate Mage
Joined
Feb 5, 2022
Messages
1
Reaction score
0
Hello, I followed Groxy's guide step by step for the installation of "Ketchup VS19", here I am at the end, so close to the goal, it shows me "connecting, please wait" , I checked all the ports in the cache.ini and other files and everything looks good, except the Neuz which shows this and which I couldn't modify with the ResHacker :
Code:
STRINGTABLE
LANGUAGE LANG_KOREAN, SUBLANG_KOREAN
{
  1,     "0"
  2,     "1"
  3,     "0"
  4,     "1"
  5,     "1"
  6,     "0"
  7,     "1"
  8,     "5000"
  9,     "5"
  10,     "1252"
  11,     "1"
}

Could it be a port issue? from Batch? of files? I'm lost
Thanks for taking the time to help

EDIT :I managed to modify the Neuz codes, but the result remains the same, I'll show you the rest:

AccountServer.ini :

Code:
AddTail( -1, 1, "Ketchup V18 (VS22)", "127.0.0.1", 0, 1, 1000 );
AddTail( 1, 1, "Channel-1", "127.0.0.1", 1, 1, 1000 );

DSN_NAME_LOGIN        "login"
DB_ADMIN_ID_LOGIN    "sa"

DSN_NAME_LOG        "log01"
DB_ADMIN_ID_LOG        "sa"

MSG_VER            "20100412"

TEST
SKIP_TRACKING
NOLOG


CacheServer.ini :

Code:
Core    "127.0.0.1"    // String, Core-Address
Port    15400        // number, Core-Port
//* Heartbeat hb( "10" ); // Virtual, I don't know this one.

LoginServer.ini :

Code:
DB            "127.0.0.1"    // DB-ip-address
Core            "127.0.0.1"    // Core-ip-address
AddCache("127.0.0.1");
MSG_VER            "20100412"    // must match Neuz.exe, if not set default = "20100412"





 
Last edited:
Inactive
Joined
Jan 20, 2009
Messages
1,014
Reaction score
1,831
You have in the source:
Code:
#define NEUZ_CPORT	"5400"

But in CacheServer.ini:
Code:
Port    15400

Set it to 5400 and it should work.

And tbh you should be using the VS22 over the VS19 lol.
 
Upvote 0
Status
Not open for further replies.
Back
Top