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)

Experienced Elementalist
Joined
Feb 15, 2010
Messages
201
Reaction score
296
Re: Delphi MapleStory Server (supports v75 & v80)

Still get error when close MapleServer ?
 
Last edited:
Experienced Elementalist
Joined
Oct 25, 2008
Messages
224
Reaction score
315
Re: Delphi MapleStory Server (supports v75 & v80)

@ix Toxic:
There is a v83 localhost now and that authentication crap has been disabled in it.

I've coded a DC-Command with comments for you, so you get an idea how my source works:
Code:
// Include ChannelServer and MaplePacketCreator in the uses list at the top of the file.

var
  Ch: TChannelServer;
  Victim: TMapleCharacter;
begin
  // Search the character in all channels
  for Ch in C.World.Channels do
  begin
    Victim := Ch.Player[Cmd]; // I have no PlayerStorage, Player[] is a property of TChannelServer
    if Victim <> nil then
      Break;   // Found, don't check the other channels
  end;

  // Not found? Display a message and stop processing
  if Victim = nil then
  begin
    // c.getSession().write() = C.EncryptAndSend() here. ShowOrangeText is declared in MaplePacketCreator
    C.EncryptAndSend(ShowOrangeText('No such player: ' + Cmd));
    Exit;   // same as return; in Java
  end;

  // Need to typecast to TMapleClient here, has to do with that "uses" system which is a bit crappy in Delphi
  TMapleClient(Victim.Client).Disconnect;
end;
 
Newbie Spellweaver
Joined
Feb 13, 2010
Messages
24
Reaction score
1
Re: Delphi MapleStory Server (supports v75 & v80)

thanks hendi, it kinda makes a bit more sense. so the v83 localhost will allow me to host a server? using your source of course =]

btw, is it possible to add the achievement system to the repack? i hate how all the stuff is in java

and i would like to know if i could help with the development of the source
 
Last edited:
Newbie Spellweaver
Joined
Dec 8, 2009
Messages
21
Reaction score
0
Re: Delphi MapleStory Server (supports v75 & v80)

if i use GMs v75 , got KOC Job In there use Delphi?

---------- Post added at 03:54 AM ---------- Previous post was at 03:49 AM ----------

Cash Shop Work for This Source ?

i cant open cash shop using this source and GMS v75
 
Experienced Elementalist
Joined
Oct 25, 2008
Messages
224
Reaction score
315
Re: Delphi MapleStory Server (supports v75 & v80)

2nd job advancements except bowman do not work and you expect the Cash Shop to work?!?!

Cygnus Knights only work in 0.83 - there is no reason for you to use 0.75 anymore, it isn't more stable or so.
 
Newbie Spellweaver
Joined
Dec 8, 2009
Messages
21
Reaction score
0
Re: Delphi MapleStory Server (supports v75 & v80)

2nd job advancements except bowman do not work and you expect the Cash Shop to work?!?!

Cygnus Knights only work in 0.83 - there is no reason for you to use 0.75 anymore, it isn't more stable or so.


owh ..

and yah , i'm really2 expect cash shop work perfectly , i hope u can fix it soon :):

and u know where to download client for v83 ?
can give link to downlaod it ?

and for v83 i need to setting Microsoft Loopback Adaptor to make it work ?:?:
 
Experienced Elementalist
Joined
Oct 25, 2008
Messages
224
Reaction score
315
Re: Delphi MapleStory Server (supports v75 & v80)

Setup:

Localhost can be found here on the forums, you don't need loopback.
 
Supreme Arcanarch
Loyal Member
Joined
Oct 18, 2009
Messages
914
Reaction score
335
Re: Delphi MapleStory Server (supports v75 & v80)

Hmm ya updating to v84?
 
Newbie Spellweaver
Joined
Dec 8, 2009
Messages
21
Reaction score
0
Re: Delphi MapleStory Server (supports v75 & v80)

Setup:

Localhost can be found here on the forums, you don't need loopback.

owh ..

thz for that ...:thumbup1:
 
Newbie Spellweaver
Joined
Feb 13, 2010
Messages
24
Reaction score
1
Re: Delphi MapleStory Server (supports v75 & v80)

Hendi, I can fix your job advancement issues (All the npcs need second/third/fourth job added, and I can't find the pirate advancement npc?). May I?

And I think Flav's v83 localhost would work if it was converted to Delphi
 
Last edited:
Experienced Elementalist
Joined
Oct 25, 2008
Messages
224
Reaction score
315
Re: Delphi MapleStory Server (supports v75 & v80)

Hendi, I can fix your job advancement issues (All the npcs need second/third/fourth job added, and I can't find the pirate advancement npc?). May I?

And I think Flav's v83 localhost would work if it was converted to Delphi

Only if you code them GMS-like.

And wtf? It's not Flav's, it was released by spudgy and works for all sources o.o
 
Newbie Spellweaver
Joined
Feb 13, 2010
Messages
24
Reaction score
1
Re: Delphi MapleStory Server (supports v75 & v80)

OMG lol.i meant Flavs cash shop XD.

I'll try to code them gms like. Its only those npc's that need coding?
And where is the pirate advancement file?
And does cygnus have all advancements?
Cause I might end up making a Cody for all the jobs, then code the npcs separately so that theres at least a job advancement.

Edit: I PMed you a new PAS file i was working on. I need some help with translating. (You'll get it when you see it =])
 
Last edited:
Junior Spellweaver
Joined
Dec 7, 2008
Messages
136
Reaction score
24
Re: Delphi MapleStory Server (supports v75 & v80)

OMG lol.i meant Flavs cash shop XD.

I'll try to code them gms like. Its only those npc's that need coding?
And where is the pirate advancement file?
And does cygnus have all advancements?
Cause I might end up making a Cody for all the jobs, then code the npcs separately so that theres at least a job advancement.

Edit: I PMed you a new PAS file i was working on. I need some help with translating. (You'll get it when you see it =])

Coding them GMS like is time consuming. Usually you have to sniff for all possible text or take screenshots of all cases.

The cash shop will work of course since packets don't change...
 
Newbie Spellweaver
Joined
Dec 8, 2009
Messages
21
Reaction score
0
Re: Delphi MapleStory Server (supports v75 & v80)

Ship still got bug ?

after i change job KOC , i went go Ellinia , i cant click NPC go to Ellinia .

still not fix ?
 
Newbie Spellweaver
Joined
Apr 2, 2008
Messages
83
Reaction score
0
Re: Delphi MapleStory Server (supports v75 & v80)

Anyone having problems downloading from the SVN? My TortoiseSVN just stays loading and never gets a single file.
 
Experienced Elementalist
Joined
Oct 25, 2008
Messages
224
Reaction score
315
Re: Delphi MapleStory Server (supports v75 & v80)

Ship still got bug ?

after i change job KOC , i went go Ellinia , i cant click NPC go to Ellinia .

still not fix ?
It works fine for me. Do you get any errors?

@NotHere:
Maybe it was a temporary problem, try again.
 
Newbie Spellweaver
Joined
Apr 2, 2008
Messages
83
Reaction score
0
Re: Delphi MapleStory Server (supports v75 & v80)

It must be something with my PC or SVN cause nothing. Is there another way I can get the files other than using TortoiseSVN?
 
Newbie Spellweaver
Joined
Dec 8, 2009
Messages
21
Reaction score
0
Re: Delphi MapleStory Server (supports v75 & v80)

hmm...

will u fix Cash Shop soon ?
 
Back
Top