dbmon Errors

10/17/2011 08:32 [DEV]HimuraKen#1
I'm trying another client, and i got this error.

[3836] Success - Load DLL .\ScriptProcess.dll
[3836] Load GameHI BillingProcess
[3836] >>> Loading ServiceObject/Roader/IPList
[3836] >>> Loading ServiceObject/Roader/GradeList
[3836] >>> Loading NPC...
[3836] >>> Loading Monster...
[3836] Wrong Length : Monster
[3836] >>> Loading Remote...
[3836] Wrong Length : Remote
[3836] >>> Loading Servant...
[3836] >>> Loading Guard...
[3836] >>> Loading Portal...
[3836] Portal Cell( 5, 0) Can't convert to INT from NULL
[3836] File: e:\release\dekaron\1.90.5.4\server\dekaron\service object\properties\tooliplist\../../../Share/LogicObject/Support/ITable.h, Line: 294


Then the dekaronserver crash :(
10/17/2011 10:50 ariesmichael#2
portal errors , go to open Portal.csv and find the 5,0 you will know why it crashed .
10/17/2011 16:41 [DEV]HimuraKen#3
Quote:
Originally Posted by ariesmichael View Post
portal errors , go to open Portal.csv and find the 5,0 you will know why it crashed .
This is what i see on my portal.csv

MapIndex,LocationIndex,Shape
0,0,Portal\Portal_01.txt
3,3,Portal\Portal_01.txt
6,6,Portal\Portal_01.txt
7,7,Portal\Portal_01.txt
NULL,200,"Portal,\Portal--1.t.xt"

:confused:
10/17/2011 17:20 BioNicX#4
Quote:
Originally Posted by [DEV]HimuraKen View Post
This is what i see on my portal.csv

MapIndex,LocationIndex,Shape
0,0,Portal\Portal_01.txt
3,3,Portal\Portal_01.txt
6,6,Portal\Portal_01.txt
7,7,Portal\Portal_01.txt
NULL,200,"Portal,\Portal--1.t.xt"

:confused:
It's the last line, delete it and try again. Don't just delete it and leave it cuz its working. When you know that , that line was the problem go back to it and try to fix it. Because you might delete certin protal in game and regret it later.

PS: what i would do is take example of line above the 5th one "7,7,Portal\Portal_01.txt", replace the last line with that one. Then figureout what goes in the first column which im guessing "200". So basically last line must look exactly like the onces above it but ofc except first 2 columns must be 200.
10/17/2011 19:31 [DEV]HimuraKen#5
Quote:
Originally Posted by BioNicX View Post
It's the last line, delete it and try again. Don't just delete it and leave it cuz its working. When you know that , that line was the problem go back to it and try to fix it. Because you might delete certin protal in game and regret it later.

PS: what i would do is take example of line above the 5th one "7,7,Portal\Portal_01.txt", replace the last line with that one. Then figureout what goes in the first column which im guessing "200". So basically last line must look exactly like the onces above it but ofc except first 2 columns must be 200.
I got this error , if i replace the last line with "7,7,Portal\Portal_01.txt"

[3308] >>> Loading Portal...
[3308] Portal Cell( 167, 0) Can't convert to INT from NULL
[3308] File: e:\release\dekaron\1.90.5.4\server\dekaron\service object\properties\tooliplist\../../../Share/LogicObject/Support/ITable.h, Line: 294

If i delete the last line i got this error

[2844] >>> Loading Portal...
[2844] Portal Cell( 176, 0) Can't convert to INT from NULL
[2844] File: e:\release\dekaron\1.90.5.4\server\dekaron\service object\properties\tooliplist\../../../Share/LogicObject/Support/ITable.h, Line: 294


Maybe are we looking into wrong files? a friend told me to watch at Action/npc/ npc-portal_deka.act.++++.csv (++++ are the index of all the files)

But i see nothing wrong with it...

PLS i'm stucked here :\
10/18/2011 00:03 BioNicX#6
Thats not what i said, i said instead of "NULL,200,"Portal,\Portal--1.t.txt" put this
"200,200,Portal\Portal_01.txt"

PS: check the cells that its telling you to check. "(167,0)"
10/18/2011 00:15 Decima#7
Quote:
Originally Posted by ariesmichael View Post
portal errors , go to open Portal.csv and find the 5,0 you will know why it crashed .

bad information here, when u see something in ( ) like that, in this example (5,0) it is pointing to row,column, keep in mind the debug starts its counting at 0, not at 1, so its 5 rows down (remember start counting using 0 not 1) and 0 columns over, so:

0 - MapIndex,LocationIndex,Shape
1 - 0,0,Portal\Portal_01.txt
2 - 3,3,Portal\Portal_01.txt
3 - 6,6,Portal\Portal_01.txt
4 - 7,7,Portal\Portal_01.txt
5 - NULL,200,"Portal,\Portal--1.t.xt" // this is row 5

also notice it says column 0, in this case, the first column of row 5, which says NULL, and according to the error: Can't convert to INT from NULL, it is wanting an INT (INT is short for Integer, which is a numeric representation of data) obviously NULL isnt a number, which is apparently what the server wants, and when it doesnt get it it throws a temper tantrum and spits out ur error.

in the future, if you dont know wtf ur talking about, dont post bad info on the subject, not only does this make u look like an idiot, but it also causes more stress for the guy trying to figure out wtf is going on, and more work for ppl that do know whats going on to re-explain to the guy what is ACTUALLY happening.
10/18/2011 03:38 [DEV]HimuraKen#8
#Fixed :handsdown:

I use this on Portal.csv and this is working now!

MapIndex,LocationIndex,Shape
0,0,Portal\Portal_01.txt
3,3,Portal\Portal_01.txt
6,6,Portal\Portal_01.txt
7,7,Portal\Portal_01.txt
19,19,Portal\Portal_01.txt
21,21,Portal\Portal_01.txt
26,26,Portal\Portal_01.txt
47,47,Portal\Portal_01.txt
51,51,Portal\Portal_01.txt
63,63,Portal\Portal_01.txt
150,150,Portal\Portal_01.txt
156,156,Portal\Portal_01.txt


Thanks to everyone.