item_db2.conf not detected

adani_jmc

New member
Messages
17
Points
0
i try to add custom item with the new item_db system on hercules.

i add the item one by one manually

and when i try to test it, it show error on the console like this

error-10.png


did someone knows why its happen ?

i try to search but not find anything

thx hercules
default_smile.png


 
Check the error in line 69

Or how about try to post ur custom items here?

 
Last edited by a moderator:
i try to add custom item with the new item_db system on hercules.

i add the item one by one manually

and when i try to test it, it show error on the console like this

error-10.png


did someone knows why its happen ?

i try to search but not find anything

thx hercules
default_smile.png
There is something wrong with your item_db2.conf at line 69, you need to check it.

 
hmm nothing wrong in the line 69,

but this is the first 100 lines in my item_db

Code:
{    Id: 20008    AegisName: "arcticwings"    Name: "_arcticwings"    Type: 5    Buy: 100000    Weight: 10    Atk:      Def: 1    Job: 0x2147483647    Loc: 1    Refine: false    View: 1008    Script: <" bonus bStr,2; ">},{    Id: 20009    AegisName: "bloodwings"    Name: "_bloodwings"    Type: 5    Buy: 100000    Weight: 10    Atk:      Def: 1    Loc: 1    Refine: false    View: 1009    Script: <" bonus bAgi,2; ">},{    Id: 20010    AegisName: "bloodybutterflywings"    Name: "_bloodybutterflywings"    Type: 5    Buy: 100000    Weight: 10    Atk:      Def: 1    Loc: 1    Refine: false    View: 1010    Script: <" bonus bVit,2; ">},{    Id: 20011    AegisName: "darkfairywings"    Name: "_darkfairywings"    Type: 5    Buy: 100000    Weight: 10    Atk:      Def: 1    Loc: 1    Refine: false    View: 1011    Script: <" bonus bInt,2; ">},{    Id: 20012    AegisName: "devilingwings"    Name: "_devilingwings"    Type: 5    Buy: 100000    Weight: 10    Atk:      Def: 1    Job: 0x2147483647    Loc: 1    Refine: false    View: 1012    Script: <" bonus bDex,2; ">},{    Id: 20013    AegisName: "dragonwings"    Name: "_dragonwings"    Type: 5    Buy: 100000    Weight: 10    Atk:      Def: 1    Loc: 1    Refine: false    View: 1013    Script: <" bonus bLuk,2; ">},{    Id: 20014    AegisName: "elementalwings"    Name: "_elementalwings"    Type: 5    Buy: 100000    Weight: 10    Atk:      Def: 1    Loc: 1    Refine: false    View: 1014    Script: <" bonus bSpeedAddRate,7; ">},{    Id: 20015    AegisName: "firey"    Name: "_firey"    Type: 5    Buy: 100000    Weight: 10    Atk:      Def: 1    Loc: 1    Refine: false    View: 1015    Script: <" bonus bStr,2; ">},{    Id: 20016    AegisName: "gargoylewings"    Name: "_gargoylewings"    Type: 5    Buy: 100000    Weight: 10    Atk:      Def: 1    Loc: 1    Refine: false    View: 1016    Script: <" bonus bAgi,2; ">},{    Id: 20017    AegisName: "greatevilwings"    Name: "_greatevilwings"    Type: 5    Buy: 100000    Weight: 10    Atk:      Def: 1    Loc: 1    Refine: false    View: 1017    Script: <" bonus bVit,2; ">},{    Id: 20018    AegisName: "icewings"    Name: "_icewings"    Type: 5    Buy: 100000    Weight: 10    Atk:      Def: 1    Loc: 1    Refine: false    View: 1018    Script: <" bonus bInt,2; ">},
 
Last edited by a moderator:
hmm nothing wrong in the line 69,

but this is the first 100 lines in my item_db

{  Id: 20008  AegisName: "arcticwings"  Name: "_arcticwings"  Type: 5  Buy: 100000  Weight: 10  Atk:    Def: 1  Job: 0x2147483647  Loc: 1  Refine: false  View: 1008  Script: <" bonus bStr,2; ">},{  Id: 20009  AegisName: "bloodwings"  Name: "_bloodwings"  Type: 5  Buy: 100000  Weight: 10  Atk:    Def: 1  Loc: 1  Refine: false  View: 1009  Script: <" bonus bAgi,2; ">},{  Id: 20010  AegisName: "bloodybutterflywings"  Name: "_bloodybutterflywings"  Type: 5  Buy: 100000  Weight: 10  Atk:    Def: 1  Loc: 1  Refine: false  View: 1010  Script: <" bonus bVit,2; ">},{  Id: 20011  AegisName: "darkfairywings"  Name: "_darkfairywings"  Type: 5  Buy: 100000  Weight: 10  Atk:    Def: 1  Loc: 1  Refine: false  View: 1011  Script: <" bonus bInt,2; ">},{  Id: 20012  AegisName: "devilingwings"  Name: "_devilingwings"  Type: 5  Buy: 100000  Weight: 10  Atk:    Def: 1  Job: 0x2147483647  Loc: 1  Refine: false  View: 1012  Script: <" bonus bDex,2; ">},
You can try this:

Code:
{	Id: 20008	AegisName: "arcticwings"	Name: "arcticwings"	Type: 5	Buy: 100000	Weight: 10	Job: 0xFFFFFFFE	Loc: 1	Refine: false	View: 1008	Script: <" bonus bStr,2; ">}, 
 
Last edited by a moderator:
0x2147483647
Change it to 

0x7FFFFFFF
or 

2147483647
2)

  Atk:
Any Field cannot be empty, 

delete this field, if you don't want any Atk Value.

 
yokai, now its got another error line, i think i can search it by myself

by the way, is there any documentation about common error in the new item db?

thank you for answering my question xD

+1

 
Back
Top