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!

[RELEASE] LastChaos Server Files

Status
Not open for further replies.
Newbie Spellweaver
Joined
Jul 23, 2011
Messages
71
Reaction score
63
Re: LastChaos Wind0ws Server files DEVELOPMENT

how to connect using the aeria client 090313:

- replace the server files with the ones without encryption made by ghost107



- replace the gameserver posted above with this one (this one fixes the displaying of other players and the lvl 130 loop bug)



- download the client LcInstallUSA 090313 and install it

)

- replace engine.dll (located at the client installation folder, inside data folder) with this one:



- edit sl.dta (located at the client installation folder) with the ip tool

- create a .bat file in the client installation folder:

Code:
start bin/nksp.exe 6574

- run the bat file and have fun :)
 
Experienced Elementalist
Joined
Jul 13, 2008
Messages
272
Reaction score
136
Re: LastChaos Wind0ws Server files DEVELOPMENT

Yes, i think i understand what u mean.
No value so the exp requirement is 0 and therefore u get unlimited levelups.

From your experience, until what level u think its possible to make the exp table if u look at the allocated memory for it ?


Btw, all those older clients can be started with the command : "nksp.exe -Engine.dll" and just change nksp.exe to another name to profit from the ability to open more then 1 client at the same time
 
Newbie Spellweaver
Joined
Jul 23, 2011
Messages
71
Reaction score
63
Re: LastChaos Wind0ws Server files DEVELOPMENT

it only has space for lvl 1-140. but i can make a new section in the .exe and should be easy to add exp table up to lvl 255

---------- Post added at 09:57 PM ---------- Previous post was at 09:52 PM ----------

please guys, post all bugs you find

current bug list:

server:
-moonstatue doesnt work (missing quest in the database?)
-cant turn pk mode on (maybe something wrong in the config)

client (aeria 910313):
-character pants and hands disappearing in the login screen (because the server doesnt send the character helmet in the packet)
 
Junior Spellweaver
Joined
Feb 13, 2011
Messages
112
Reaction score
23
Re: LastChaos Wind0ws Server files DEVELOPMENT

In this client, the drop lag issue is fixed? (in the chinese one, something on the ground caused big lags)

[100 ko/sec, i think i'll go watch a movie -.-]
 
Newbie Spellweaver
Joined
Jul 23, 2011
Messages
71
Reaction score
63
Re: LastChaos Wind0ws Server files DEVELOPMENT

i dont know. try it out and let us know :)
 
Junior Spellweaver
Joined
Feb 13, 2011
Messages
112
Reaction score
23
Re: LastChaos Wind0ws Server files DEVELOPMENT

K, so see you in 1 hour :p
 
Newbie Spellweaver
Joined
Jul 23, 2011
Messages
71
Reaction score
63
Re: LastChaos Wind0ws Server files DEVELOPMENT

you should have downloaded it when i posted it few pages back :p
 
Junior Spellweaver
Joined
Feb 13, 2011
Messages
112
Reaction score
23
Re: LastChaos Wind0ws Server files DEVELOPMENT

Or i should live somewhere else lol
 
Junior Spellweaver
Joined
Aug 5, 2011
Messages
101
Reaction score
16
Re: LastChaos Wind0ws Server files DEVELOPMENT

hm, think thats an good idea :D
disable encryption on server and client, also other clients, at 1st to find an propper client :blush:

its imposible do change the sending packed by server with helmed information?
sure, server sends instandly "no helmed" but right packedsize, only an dummy :)

wooooooooow i have fixed the displaying of other players by adding the helmet packet in the gameserver

ok now no one can say I have bad ideas xDD
 
Banned
Banned
Joined
Apr 29, 2008
Messages
713
Reaction score
264
Re: LastChaos Wind0ws Server files DEVELOPMENT

it only has space for lvl 1-140. but i can make a new section in the .exe and should be easy to add exp table up to lvl 255

---------- Post added at 09:57 PM ---------- Previous post was at 09:52 PM ----------

please guys, post all bugs you find

current bug list:

server:
-moonstatue doesnt work (missing quest in the database?)
-cant turn pk mode on (maybe something wrong in the config)

client (aeria 910313):
-character pants and hands disappearing in the login screen (because the server doesnt send the character helmet in the packet)

I dont think we will need above 140 anytime soon anyways. Since they skills in the client max out at 140. Its better to skip expanding it and work on something else. Currently im working on fixing every skill in the 910313 client in the database so people can learn all skills. :thumbup:

@Patch works great!
aqualung - [RELEASE] LastChaos Server Files - RaGEZONE Forums


+Bug
Scroll of recall works server side, but client locks up client side (no visual teleport).
 
Last edited:
Newbie Spellweaver
Joined
Dec 5, 2008
Messages
40
Reaction score
0
Re: LastChaos Wind0ws Server files DEVELOPMENT

[Server]
Number=9
MaxSubServer=1
IP=MY_LOCAL_IP
Port=4006


nummber 9 or other change the name from server in newStobm.bin

 
Experienced Elementalist
Joined
Jul 13, 2008
Messages
272
Reaction score
136
Re: LastChaos Wind0ws Server files DEVELOPMENT

The pk mode is also a client packet mismatch.
It works perfectly when u enter the arena and go out of the arena.
Still the packet is 1 byte different.

21 00 00 00 21 00 17 EC B8 DB 49 2B

21 Opcode for action
00 00 00 21 = CharID
00 = no idea
17 = Pk Mode
EC normally should be on / off 00 / 0a

Sadly EC is part of the 5 bytes to make the packet a size to work with 3DES
(total size of data + 2nd header - opcode must be a multiplier of 8, if not bytes must be added in the end of the packet until it is)

This is the complete packet :
81 01 48 16 00 00 A4 00 00 00 00 11 (00 00 00 11 = packet size w/o header)
81 00 00 00 07 ( 00 00 00 07 = Data size )
21 00 00 00 21 00 17 = Data
EC B8 DB 49 2B


When u enter the arena and leave the arena this is send to the client :
21 00 00 00 21 00 17 0A [Enter arena (pkmode on)]
21 00 00 00 21 00 17 00 [Leave arena (pkmode off )]


I think that this is the packet the client also needs to send when clicking pk mode.
21 00 00 00 21 00 17 0A

byte OpCode
int CharID
byte 0x00
byte Action
byte start/stop

But i don't know if its possible to change that

---------- Post added at 09:36 PM ---------- Previous post was at 08:53 PM ----------

Indeed the guild problem is also solved now.
Dratan castle siege works also
aqualung - [RELEASE] LastChaos Server Files - RaGEZONE Forums



Sadly, the tomb manager does nothing when i click manage or condition
So i am afraid that the tomb might be not supported
 
Last edited:
Junior Spellweaver
Joined
Feb 13, 2011
Messages
112
Reaction score
23
Re: LastChaos Wind0ws Server files DEVELOPMENT

Works fine, but of course we don't have all the items we added :/ and i got crash if i try to put newer files :(
 
Newbie Spellweaver
Joined
Jul 22, 2011
Messages
39
Reaction score
3
Re: LastChaos Wind0ws Server files DEVELOPMENT

Works fine, but of course we don't have all the items we added :/ and i got crash if i try to put newer files :(

so y dont you just edit the files that r there?
 
Junior Spellweaver
Joined
Feb 13, 2011
Messages
112
Reaction score
23
Re: LastChaos Wind0ws Server files DEVELOPMENT

I'll try, but even it if works it will take some time to add once again every item...

mmh, we'll have to wait for a new tool anyway :)
 
Experienced Elementalist
Joined
Jul 13, 2008
Messages
272
Reaction score
136
Re: LastChaos Wind0ws Server files DEVELOPMENT

U crash because the client can only load a certain amount of items.
I don't think we are going over that limit.
The other limit is on the ItemBtn*.tex files.
I think every item above Icon ID 8 will give a error.
Thats not bad, just change it to a lower id and it should work
 
Junior Spellweaver
Joined
Feb 13, 2011
Messages
112
Reaction score
23
Re: LastChaos Wind0ws Server files DEVELOPMENT

I can change it in the database, but not in the client, unless you already have a tool :)

edit : if i take the chinese file i have a send error report right after the character selection screen :/ it would take too much time to edit every id, i give up.
 
Banned
Banned
Joined
Apr 29, 2008
Messages
713
Reaction score
264
Re: LastChaos Wind0ws Server files DEVELOPMENT

Wiz you think you can get sskill_usa.lod opened? I really need the magic indexs for the skills that aren't in the database already. And im sure that file will probably hold them.
 
Junior Spellweaver
Joined
Feb 13, 2011
Messages
112
Reaction score
23
Re: LastChaos Wind0ws Server files DEVELOPMENT

Pet quests don't work? I thought it was fixed...
 
Newbie Spellweaver
Joined
Apr 23, 2011
Messages
84
Reaction score
5
Re: LastChaos Wind0ws Server files DEVELOPMENT

We (ILAN and I) used an patch for the 090313 only with these the pet quest doesnt work... without the patch all works fine.
 
Status
Not open for further replies.
Back
Top