Help me T^T

Newbie Spellweaver
Joined
Dec 26, 2007
Messages
30
Reaction score
0
pandahero - Help me T^T - RaGEZONE Forums


pandahero - Help me T^T - RaGEZONE Forums
 
ACE_ASSERT: file Script.cpp, line 437 assertion failed for '0'.Aborting...
[Tue Aug 19 2008 18:34:17.726096 3086952128]: open log file '/var/log/cabal/WorldSvr_24_01.log'
[Tue Aug 19 2008 18:34:17.726152 3086952128]: LOG LEVEL: 3
[Tue Aug 19 2008 18:34:17.726288 3086952128]: Start WorldSvr_24_01 Server
[Tue Aug 19 2008 18:34:17.726315 3086952128]: GameGuard enabled version
[Tue Aug 19 2008 18:34:17.726335 3086952128]: GameGuard turned off
[Tue Aug 19 2008 18:34:17.726349 3086952128]: APEX enabled version
[Tue Aug 19 2008 18:34:17.726368 3086952128]: APEX turned off

[Tue Aug 19 2008 18:34:17.726700 3086952128]: Local ip = xxx.xxx.xx(from ini)
 
Last edited by a moderator:
Upvote 0
Next time post the whole log with [ code] [ /code] tags and in one post.

Like so :

Code:
ACE_ASSERT: file Script.cpp, line 437 assertion failed for '0'.Aborting...
[Tue Aug 19 2008 1817.726096 3086952128]: open log file '/var/log/cabal/WorldSvr_24_01.log'
[Tue Aug 19 2008 1817.726152 3086952128]: LOG LEVEL: 3
[Tue Aug 19 2008 1817.726288 3086952128]: Start WorldSvr_24_01 Server
[Tue Aug 19 2008 1817.726315 3086952128]: GameGuard enabled version
[Tue Aug 19 2008 1817.726335 3086952128]: GameGuard turned off
[Tue Aug 19 2008 1817.726349 3086952128]: APEX enabled version
[Tue Aug 19 2008 1817.726368 3086952128]: APEX turned off

[Tue Aug 19 2008 1817.726700 3086952128]: Local ip = xxx.xxx.xx(from ini)
[Tue Aug 19 2008 1817.726942 3086952128]: try connect xxx.xxx.xx:38170, Sync
[Tue Aug 19 2008 1817.727382 21416880]: CProcessLayer(0)::svc Start [21416880]
[Tue Aug 19 2008 1817.727445 3086952128]: sock 5 ->LinkHandler Open
[Tue Aug 19 2008 1817.727537 3086952128]: try connect xxx.xxx.xx:38181, Sync
[Tue Aug 19 2008 1817.727826 3086952128]: sock 7 ->LinkHandler Open
[Tue Aug 19 2008 1817.727876 3086952128]: try connect xxx.xxx.xx:38190, Sync
[Tue Aug 19 2008 1817.728462 3086952128]: sock 8 ->LinkHandler Open
[Tue Aug 19 2008 1817.728514 3086952128]: try connect xxx.xxx.xx:38121, Sync

[Tue Aug 19 2008 1817.728761 3086952128]: sock 9 ->LinkHandler Open
[Tue Aug 19 2008 1817.737196 3086952128]: [##ERROR##] [DATA FAULT]: GetIdx4Col(Value)

ACE_ASSERT: file Script.cpp, line 437 assertion failed for '0'.Aborting...
Btw next time post a HELP thread in the HELP & Requests section.
 
Upvote 0
Yes please use the subsections wherever possible. The more time i spend moving posts the less time i spend answering them ;)

This one is is a real pain to work out yourself but there is a clue in the log there.

[##ERROR##] [DATA FAULT]: GetIdx4Col(Value)

The server is having problems reading data from one of the files somewhere and it is probably in /etc/data. The reason is because you edited files in windows using a text editor that doesn't support UNIX format files and they got converted to DOS format, the server (like a lot of linux stuff) hates DOS format textfiles and falls over trying to read them.

You will need to open all of the files you edited in a text editor on windows that supports unix format (like crimson editor which is free) and convert them, open and savein centos itself or use the dos2unix command to convert them back.

The code tags are good as cizo says as it stops the forum deciding how to display the text and stuffing smileys in it.
 
Upvote 0
Back