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
Aug 21, 2011
Messages
29
Reaction score
2
Re: LastChaos Server Files

lol i reinstall lc usa and update to 1279 and test it

---------- Post added at 07:04 PM ---------- Previous post was at 07:04 PM ----------

:blush:5 minutes:blush:

---------- Post added at 07:06 PM ---------- Previous post was at 07:04 PM ----------

megachomba...1 question you have addet the weapon lvl 135 i say in you server lol......how to you do it lol.....when i open mine server i do it me too...
 
Newbie Spellweaver
Joined
Sep 4, 2011
Messages
46
Reaction score
0
Re: LastChaos Server Files

[IMG]https://forum.ragezone.com/ima... think you will add your weps in 5 minutes XD
 
Newbie Spellweaver
Joined
Aug 21, 2011
Messages
29
Reaction score
2
Re: LastChaos Server Files

grat aromr lol....

---------- Post added at 07:19 PM ---------- Previous post was at 07:18 PM ----------

great*
 
Newbie Spellweaver
Joined
Sep 5, 2011
Messages
19
Reaction score
0
Re: LastChaos Server Files

i think its copied from metin or something
 
Banned
Banned
Joined
Apr 29, 2008
Messages
713
Reaction score
264
Re: LastChaos Server Files

All basic pet color crystals work, and blue pan flute and pink drake egg work too. The server already has them quests by default. So does naming your pet.

aqualung - [RELEASE] LastChaos Server Files - RaGEZONE Forums


Code:
Green = 2399
Red = 2396
White = 2568
Black = 2569
Orange = 2397
Yellow = 2398
Blue = 2400
Dark Blue = 2401
Purple = 2402

Pink Egg = 1706
Blue Pan Flute = 1707

Pet Name Tag = 2360
 
Newbie Spellweaver
Joined
Aug 21, 2011
Messages
29
Reaction score
2
Re: LastChaos Server Files

Warmonger can you help me with error Time Out?

---------- Post added at 12:25 PM ---------- Previous post was at 12:01 PM ----------

no ty i dnt need help i have opened mine server
 
Newbie Spellweaver
Joined
Aug 25, 2011
Messages
12
Reaction score
0
Re: LastChaos Server Files

Hello guys, could anyone of you please upload his Aeria Client ? I got big problems with it. My game crashes everytime I try to use 165 Weapons. I got the complete DB updated but my client is sucking hard. Please please please someone upload his client !

Regards, Dakura17
 
Junior Spellweaver
Joined
Oct 27, 2008
Messages
165
Reaction score
89
Re: LastChaos Server Files

Tables missing from database(newproject_db):
insert into t_margadum_pvp ( a_date, subno, a_rank, a_char_idx, a_damage ) values ( now(), %d, %d, %d, %lld )

INSERT INTO t_event_2pan4pan (a_user_index, %s) VALUES (%d, 1)
Code:
INSERT INTO t_event_2pan4pan (a_user_index, %s) VALUES (%d, 1)
UPDATE t_event_2pan4pan SET %s=1 WHERE a_user_index=%d AND %s=0.a_noraba
a_laghaim
a_ssawar
a_2pan4pan
a_lastchaos
UPDATE t_event_2pan4pan SET %s=0 WHERE a_user_index=%d AND %

newproject_db_auth:

select a_rank from t_guild_point_rank_all where a_server = %d and a_guild_index = %d

INSERT INTO t_ip_log (a_ip, a_date) VALUES ( '%s', NOW() )

This what i found in the server files.
About connection limit still no good news, will take a while, since the valies of connection /player limit is discarded, either the value loads from somewhere like the database or either it is written somewhere in the data segment, or text one.
 
Last edited:
Slothstronaut
Loyal Member
Joined
Aug 5, 2011
Messages
2,907
Reaction score
2,279
Re: LastChaos Server Files

Warmonger can you help me with error Time Out?

---------- Post added at 12:25 PM ---------- Previous post was at 12:01 PM ----------

no ty i dnt need help i have opened mine server

Getting the same thing..
 
Newbie Spellweaver
Joined
Sep 4, 2011
Messages
46
Reaction score
0
Re: LastChaos Server Files

Tables missing from database(newproject_db):
insert into t_margadum_pvp ( a_date, subno, a_rank, a_char_idx, a_damage ) values ( now(), %d, %d, %d, %lld )

INSERT INTO t_event_2pan4pan (a_user_index, %s) VALUES (%d, 1)

newproject_db_auth:

select a_rank from t_guild_point_rank_all where a_server = %d and a_guild_index = %d

INSERT INTO t_ip_log (a_ip, a_date) VALUES ( '%s', NOW() )

This what i found in the server files.


whats for the t_event_2pan4pan, the a_rank selection? for the i_ip_log, seems clear

---------- Post added at 03:02 PM ---------- Previous post was at 03:02 PM ----------

EDIT: Something new about the user limit?

---------- Post added at 03:09 PM ---------- Previous post was at 03:02 PM ----------

EDIT2: Wrong syntax on all the querries....
 
Banned
Banned
Joined
Apr 29, 2008
Messages
713
Reaction score
264
Re: LastChaos Server Files

Tables missing from database(newproject_db):
insert into t_margadum_pvp ( a_date, subno, a_rank, a_char_idx, a_damage ) values ( now(), %d, %d, %d, %lld )

INSERT INTO t_event_2pan4pan (a_user_index, %s) VALUES (%d, 1)
Code:
INSERT INTO t_event_2pan4pan (a_user_index, %s) VALUES (%d, 1)
UPDATE t_event_2pan4pan SET %s=1 WHERE a_user_index=%d AND %s=0.a_noraba
a_laghaim
a_ssawar
a_2pan4pan
a_lastchaos
UPDATE t_event_2pan4pan SET %s=0 WHERE a_user_index=%d AND %

newproject_db_auth:

select a_rank from t_guild_point_rank_all where a_server = %d and a_guild_index = %d

INSERT INTO t_ip_log (a_ip, a_date) VALUES ( '%s', NOW() )

This what i found in the server files.

PHP:
DROP TABLE IF EXISTS `t_ip_log`;
CREATE TABLE `t_ip_log` (
  `a_ip` varchar(50) NOT NULL,
  `a_date` date NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

PHP:
DROP TABLE IF EXISTS `t_event_2pan4pan`;
CREATE TABLE `t_event_2pan4pan` (
  `a_user_index` int(11) NOT NULL,
  `%s` tinyint(10) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
 
Newbie Spellweaver
Joined
Sep 4, 2011
Messages
46
Reaction score
0
Re: LastChaos Server Files

About connection limit still no good news, will take a while, since the valies of connection /player limit is discarded, either the value loads from somewhere like the database or either it is written somewhere in the data segment, or text one.

well, we can only wait,only thing we can do...... hopping you will find it.

but if it wasnt that, what the hell you raised to 256 last time?
 
Junior Spellweaver
Joined
Oct 27, 2008
Messages
165
Reaction score
89
Re: LastChaos Server Files

whats for the t_event_2pan4pan, the a_rank selection? for the i_ip_log, seems clear

---------- Post added at 03:02 PM ---------- Previous post was at 03:02 PM ----------

EDIT: Something new about the user limit?

---------- Post added at 03:09 PM ---------- Previous post was at 03:02 PM ----------

EDIT2: Wrong syntax on all the querries....

i just copy paste from the server files.
try
newproject_db
Code:
CREATE TABLE t_margadum_pvp ( 
a_date datetime NOT NULL DEFAULT '0000-00-00 00:00:00', 
subno int(11) NOT NULL DEFAULT '0',
 a_rank int(11) NOT NULL DEFAULT '0', 
a_char_idx int(11) NOT NULL DEFAULT '0',
 a_damage int(11) NOT NULL DEFAULT '0' );

Code:
CREATE TABLE t_event_2pan4pan (
a_user_index int(11) NOT NULL DEFAULT '0',
 a_laghaim varchar(255) NOT NULL DEFAULT '',
a_ssawar varchar(255) NOT NULL DEFAULT '',
a_2pan4pan varchar(255) NOT NULL DEFAULT '',
a_lastchaos varchar(255) NOT NULL DEFAULT '',
a_user_index int(11) NOT NULL DEFAULT '0',
a_noraba int(11) NOT NULL DEFAULT '0'/*dont know the type yet*/

) ;

newproject_db_auth:

Code:
CREATE TABLE t_guild_point_rank_all (
a_rank int(11) NOT NULL DEFAULT '0',
a_server int(11) NOT NULL DEFAULT '0',
a_guild_index int(11) NOT NULL DEFAULT '0'
);

CREATE TABLE t_ip_log(
a_ip varchar(255) NOT NULL DEFAULT '',,
a_date datetime NOT NULL DEFAULT '0000-00-00 00:00:00'
);
 
Slothstronaut
Loyal Member
Joined
Aug 5, 2011
Messages
2,907
Reaction score
2,279
Re: LastChaos Server Files

Just copying from them doesn't work for me. Plus I'd prefer not to copy
 
Newbie Spellweaver
Joined
Sep 4, 2011
Messages
46
Reaction score
0
Re: LastChaos Server Files

i just copy paste from the server files.
try
newproject_db
Code:
CREATE TABLE t_margadum_pvp ( 
a_date datetime NOT NULL DEFAULT '0000-00-00 00:00:00', 
subno int(11) NOT NULL DEFAULT '0',
 a_rank int(11) NOT NULL DEFAULT '0', 
a_char_idx int(11) NOT NULL DEFAULT '0',
 a_damage int(11) NOT NULL DEFAULT '0' );

Code:
CREATE TABLE t_event_2pan4pan (
a_user_index int(11) NOT NULL DEFAULT '0',
 a_laghaim varchar(255) NOT NULL DEFAULT '',
a_ssawar varchar(255) NOT NULL DEFAULT '',
a_2pan4pan varchar(255) NOT NULL DEFAULT '',
a_lastchaos varchar(255) NOT NULL DEFAULT '',
a_user_index int(11) NOT NULL DEFAULT '0',
a_noraba int(11) NOT NULL DEFAULT '0'/*dont know the type yet*/

) ;

newproject_db_auth:

Code:
CREATE TABLE t_guild_point_rank_all (
a_rank int(11) NOT NULL DEFAULT '0',
a_server int(11) NOT NULL DEFAULT '0',
a_guild_index int(11) NOT NULL DEFAULT '0'
);

CREATE TABLE t_ip_log(
a_ip varchar(255) NOT NULL DEFAULT '',,
a_date datetime NOT NULL DEFAULT '0000-00-00 00:00:00'
);


take care, you duplicated the a_user_index int(11) NOT NULL DEFAULT '0', on the t_event2pan4pan

EDIT: Wrong syntax on the t_ip_log
 
Newbie Spellweaver
Joined
Apr 23, 2011
Messages
65
Reaction score
18
Re: LastChaos Server Files

is there a command to spawn costumes with longer period?, because when i spawn them and after picking it up like half a sec they disappears.
 
Banned
Banned
Joined
Apr 29, 2008
Messages
713
Reaction score
264
Re: LastChaos Server Files

is there a command to spawn costumes with longer period?, because when i spawn them and after picking it up like half a sec they disappears.

Thats because Wiz's exporter doesn't export the data properly yet. Try putting 30 in a_num_4 for that costume. This will temporary fix them so you can mess with them.
 
Newbie Spellweaver
Joined
Sep 10, 2011
Messages
46
Reaction score
11
Re: LastChaos Server Files

I think the problem with some antiviruses is because the new segment i introduced to the GameServer.exe i didn't gave generic name i game another name.

Here it is with a generic name(.data segment):


About the Player limit i'm gonna look some more, because i allways see the files usually are discarded or are set directly from code, some things from configuration files are discarded.

@ReturnKratos
What client do you use. Are you sure it is Patched.

So now the zone limit has been lifted can we implement Mondshine or any of the strayana caves etc ?
 
Status
Not open for further replies.
Back
Top