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!

[Delphi] [Source] [v83+]Delphi MapleStory Server (supports v83/v90/v97)

Newbie Spellweaver
Joined
Oct 22, 2009
Messages
10
Reaction score
0
Re: Delphi MapleStory Server (supports v75 & v80)

I can't get pass character screen. Whenever I double clicked, it went straight to the login screen with an error saying "Unable to connect to game server"

Code:
8:49:33 AM  Client disconnected from Login-Server: 63.251.217.2:51858
8:49:33 AM  Client connected to Scania-1! 63.251.217.2:51861
8:49:34 AM  Client disconnected from Scania-1: 63.251.217.2:51861
8:49:34 AM  Client connected to Login-Server: 63.251.217.2:51863
8:49:34 AM  63.251.217.2 is at the login screen now.
 
Experienced Elementalist
Joined
Oct 25, 2008
Messages
224
Reaction score
315
Re: Delphi MapleStory Server (supports v75 & v80)

Learn to read, someone a few posts above yours had the same problem.
 
Newbie Spellweaver
Joined
Feb 28, 2010
Messages
5
Reaction score
0
Re: Delphi MapleStory Server (supports v75 & v80)

so does this work i can't make a server with this and connect my friends too?!

can you hamachi this?
 
Newbie Spellweaver
Joined
Feb 19, 2009
Messages
16
Reaction score
1
Re: Delphi MapleStory Server (supports v75 & v80)

I can't connect using loopback!

I used the IP : 63.251.217.2 in the loopback and for the channel, but the real maple starts everytime

Do I have to compile Hendi48's server each time he makes an update?

I'm on v.83 GMS.... and I'm using windows 7

Thx for answer
 
Last edited:
Experienced Elementalist
Joined
Oct 25, 2008
Messages
224
Reaction score
315
Re: Delphi MapleStory Server (supports v75 & v80)

Try to add the other addresses (63.251.217.3 and .4) to the adapter, too:

Hendi48 - [Delphi] [Source] [v83+]Delphi MapleStory Server (supports v83/v90/v97) - RaGEZONE Forums


Just click that button and click "Add".

The MapleServer.exe on the SVN is v82, so you need to recompile if you want to use it for v83.
One warning though: v83 is not working yet, you will get to the login-screen but it will be stuck and give some debug output when pressing the "Login" button, as the client conencts to the new auth-server then. We don't know how to decrypt the packet it sends yet.
 
Newbie Spellweaver
Joined
Feb 19, 2009
Messages
16
Reaction score
1
Re: Delphi MapleStory Server (supports v75 & v80)

thx Hendi XD:thumbup1:

So If I have time this week I'll go get delphi (the one you posted on KD) and compile.

as for the loopback adapter, Maybe it wasn't working because I didn't compile....

Anyway! I'll try it maybe this week, I think My friend has the v.82 so I'll take it from him. But If I use v.82, will the ptacher pop-up?!?!?!:blink:
 
Experienced Elementalist
Joined
Oct 25, 2008
Messages
224
Reaction score
315
Re: Delphi MapleStory Server (supports v75 & v80)

It won't try to patch if your loopback-adapter is configured properly and is activated.
 
Newbie Spellweaver
Joined
Feb 19, 2009
Messages
16
Reaction score
1
Re: Delphi MapleStory Server (supports v75 & v80)

You don't have to! I'm sure it's just something I did wrong (well I didn't compile -_-') because I didn't see someone else having problem...don't worry about me.....Anyway I don't think I have time this week to test it so...thx though XD
 
Last edited:
Initiate Mage
Joined
Jan 16, 2010
Messages
4
Reaction score
0
Re: Delphi MapleStory Server (supports v75 & v80)

Wait so how do i download this?
 
Newbie Spellweaver
Joined
Apr 4, 2009
Messages
26
Reaction score
0
Re: Delphi MapleStory Server (supports v75 & v80)

I Use Wzexplorer in database.pas
procedure TfrmDatabase.btnConnectClick(Sender: TObject);
var
InfoQ: TZQuery;
begin
FDB := TDatabaseConnection.Create(edtDBName.Text, True);
try
InfoQ := FDB.GetQuery;
InfoQ.SQL.Text := 'CREATE TABLE `mcdb_info` (' +
'`version` int(11) NOT NULL, ' +
'`subversion` int(11) NOT NULL, ' +
'`maple_version` int(11) NOT NULL ' +
'`maple_locale` enum('global','europe','korea','japan','vietnam',' thailand','sea','brazil','china','taiwan') NOT NULL' +
'`test_server` tinyint(1) NOT NULL default '0',
') ENGINE=InnoDB DEFAULT CHARSET=latin1;';
InfoQ.ExecSQL;
InfoQ.SQL.Text := 'INSERT INTO mcdb_info VALUES :)maj, :min, :mver)';
InfoQ.ParamByName('maj').AsInteger := 4;
InfoQ.ParamByName('min').AsInteger := 2;
InfoQ.ParamByName('mver').AsInteger := ArchiveByName('Base.wz').Version;
InfoQ.ExecSQL;
 
Newbie Spellweaver
Joined
Feb 19, 2009
Messages
16
Reaction score
1
Re: Delphi MapleStory Server (supports v75 & v80)

Wait so how do i download this?

You need to download TortoiseSVN :

1. Install it (d'uh)
2. Right Click somewhere, it doesn't matter, and do SVN Checkout
3.Set up everything
Hendi48 - [Delphi] [Source] [v83+]Delphi MapleStory Server (supports v83/v90/v97) - RaGEZONE Forums

well...that's it!
 
Skilled Illusionist
Loyal Member
Joined
Apr 20, 2008
Messages
329
Reaction score
2
Re: Delphi MapleStory Server (supports v75 & v80)

Wow, haven't been on RageZone for the last 4 months :p
So basically this source only has first job and is coded in Delphi? Do I need loopback to host a Version 75?
 
Newbie Spellweaver
Joined
Apr 4, 2009
Messages
26
Reaction score
0
Re: Delphi MapleStory Server (supports v75 & v80)

I found it.
This is mcdb-4.3-global-83.zip
 
Back
Top