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
Apr 23, 2011
Messages
84
Reaction score
5
Re: LastChaos Wind0ws Server files DEVELOPMENT

Looks nice !
Can you share your german itemname.lod?
 
Experienced Elementalist
Joined
Jul 13, 2008
Messages
272
Reaction score
136
Re: LastChaos Wind0ws Server files DEVELOPMENT

I updated the tool.
I made some terrible mistakes in the SQL query.

I forgot a shitload of , and 6000+ records in 1 insert query also doesn't seem like a good idea :p

So there are now 100 records each query and it works like a charm.
Please redownload ;)

 
Junior Spellweaver
Joined
Aug 5, 2011
Messages
101
Reaction score
16
Re: LastChaos Wind0ws Server files DEVELOPMENT

sure :D

View attachment ger.rar


i hope the client you found works

now only add all the mobs :wink:

edit:

hmm, add skills (skilllvl) also easy?
 

Attachments

You must be registered for see attachments list
Last edited:
Junior Spellweaver
Joined
Feb 13, 2011
Messages
112
Reaction score
23
Re: LastChaos Wind0ws Server files DEVELOPMENT

Nice, thanks wiza :) and good job Ilan ;)

Is there a query to change the flags of several items? ("Alter" or something like that?)
 
Experienced Elementalist
Joined
Jul 13, 2008
Messages
272
Reaction score
136
Re: LastChaos Wind0ws Server files DEVELOPMENT

Adding skills i not easy.
Besides from the skills database there is also the t_magic table and t_magic_level those 2 tables keep the information about power and effect.
Replicating those will be a lot of work


Nice, thanks wiza :) and good job Ilan ;)

Is there a query to change the flags of several items? ("Alter" or something like that?)

Yes there is.

Code:
UPDATE t_item SET a_flag = yourflaghere WHERE a_flag = theoldflaghere

Or if u want to do it with every equipment from 73 till 165
Code:
UPDATE t_item SET a_flag = 1234 WHERE a_type_idx < 2 AND a_level > 72 AND a_level < 167
The query says it all
Set flag to 1234 if the type is less then 2 (0 = weapon 1 = armor)
and if the level is higher then 72 and lower then 167
 
Last edited:
Junior Spellweaver
Joined
Aug 5, 2011
Messages
101
Reaction score
16
Re: LastChaos Wind0ws Server files DEVELOPMENT

got a shitload of , and 6000+ records in 1 insert query also doesn't seem like a good idea :p


i convert your sql out to an csv change all flags to zero and import to my db :blushing: BUT it works xD

good job Ilan ;)

ty, your idea yesterday :D



@ skills, ok can wait i think

mobs add should be easy, right?
i try it with the emulator NPC table, hope it works
 
Last edited:
Experienced Elementalist
Joined
Jul 13, 2008
Messages
272
Reaction score
136
Re: LastChaos Wind0ws Server files DEVELOPMENT

Mobs adding is a bit different since not all the data the server needs is in the client files. attack / defense / statpoints / drop items
 
Junior Spellweaver
Joined
Feb 13, 2011
Messages
112
Reaction score
23
Re: LastChaos Wind0ws Server files DEVELOPMENT

What about zones guys? I did as wiz told me (add it to gameserver's newstorm the id etc) but it didn't work... any idea?
 
Experienced Elementalist
Joined
Jul 13, 2008
Messages
272
Reaction score
136
Re: LastChaos Wind0ws Server files DEVELOPMENT

There could be a limiter in the gameserver but that sounds very unlikely.
Maybe i should try it once
 
Junior Spellweaver
Joined
Aug 5, 2011
Messages
101
Reaction score
16
Re: LastChaos Wind0ws Server files DEVELOPMENT

What about zones guys? I did as wiz told me (add it to gameserver's newstorm the id etc) but it didn't work... any idea?

ok, true zones more important than mobs

to example pyra or strayana, exist serverside(i think) in npcregen ar all the mobs


OT: i think the client its a little bit strange o.o
all the data are there (also nightshadow) but connect to this server? o.o
 
Last edited:
Newbie Spellweaver
Joined
Apr 23, 2011
Messages
84
Reaction score
5
Re: LastChaos Wind0ws Server files DEVELOPMENT

Bad news, the dl stopps all the time because the speed are under 1,5kbs ...
Can someone else try it? Myabe is in Germany a bad connection...

Adding Maps is easy, you can copy the t_npc_regen and the .sht/.sat files from wiza's ep2 db. The strings are also in th Client.
 
Junior Spellweaver
Joined
Aug 5, 2011
Messages
101
Reaction score
16
Re: LastChaos Wind0ws Server files DEVELOPMENT

ok, i download (500 KB/s o.o xDD)

~ 1 hour left

i it down i will test will it work u upload (over night) and add the link @ work :)
 
Last edited:
Newbie Spellweaver
Joined
Apr 23, 2011
Messages
84
Reaction score
5
Re: LastChaos Wind0ws Server files DEVELOPMENT

nice ^^
Ask wiza, he know how to add characters (He added Rogue in the 2005 files)
 
Junior Spellweaver
Joined
Feb 13, 2011
Messages
112
Reaction score
23
Re: LastChaos Wind0ws Server files DEVELOPMENT

I tried to change the job of my sorc to 7, but it didn't turn into a ns (just a send report)
 
Junior Spellweaver
Joined
Aug 5, 2011
Messages
101
Reaction score
16
Re: LastChaos Wind0ws Server files DEVELOPMENT

I tried to change the job of my sorc to 7, but it didn't turn into a ns (just a send report)

i think the client dont know nightshadow :)

only textures etc are there (from an newer client, same @ interface i think)




@ download 80/1000 MB done :3

edit: @ fabi

I found an new 17173 Client (05/11)

i hope it works but, hm i think we need an older client pre 2009 maybe :/
 
Last edited:
Experienced Elementalist
Joined
Jul 13, 2008
Messages
272
Reaction score
136
Re: LastChaos Wind0ws Server files DEVELOPMENT

aqualung - [RELEASE] LastChaos Server Files - RaGEZONE Forums


Strayana ;)

But there were some problems getting there.
As i configured the zone in the NewStobm.bin file i seen that it didnt want to load it, aswell as zone 17.

Zone 15 is the last one it reads.
So when i changed No=15 into No=23 it worked like it should.
 
Junior Spellweaver
Joined
Feb 13, 2011
Messages
112
Reaction score
23
Re: LastChaos Wind0ws Server files DEVELOPMENT

But no way to edit spawn point...

(am i wrong?)
 
Junior Spellweaver
Joined
Aug 5, 2011
Messages
101
Reaction score
16
Re: LastChaos Wind0ws Server files DEVELOPMENT

hmm, sry back 2 items, on my tabble much bugs (alle flag i change to zero :/)

but in an tabble create by your tool many flags wrong (i think) item 2502 (lv85 dualsword) is missing, ok, not missing but i can drop it
 
Junior Spellweaver
Joined
Feb 13, 2011
Messages
112
Reaction score
23
Re: LastChaos Wind0ws Server files DEVELOPMENT

Try 134219902, it's works fine for me
 
Junior Spellweaver
Joined
Aug 5, 2011
Messages
101
Reaction score
16
Re: LastChaos Wind0ws Server files DEVELOPMENT

hm, ok yes but you dont know there are other items ._.


@ download: 379/1000mb done
 
Status
Not open for further replies.
Back
Top