Error Converting idnum2s to iteminfo.lua

stevler

New member
Messages
33
Points
0
I put my item_db, and all the idnum2/num2item's and for some reason this error pops up

fSw9Mi8.png


I'm using 2013/08/07a client, if I use another iteminfo.lua it works, but the armor values are set to renewal so I wanted to use the descriptions from my pre-renewal data files. Any ideas?

Am I missing any files?

http://i.imgur.com/V8i4jsf.png

lastPatches.xml

 

Attachments

Last edited by a moderator:
Check the content of ItemInfo.lua near the line 79560. You should be able to find the issue pretty easily (there's a closing bracket missing)!

(Take a picture near these lines or copy the content if you can't fix the issue)

 
Last edited by a moderator:
This is where it is, I can't find it.

Also this is the lua

http://i.imgur.com/mtJIyJ8.png

Code:
[6598] = {		unidentifiedDisplayName = "요르문간드의 늑골",		unidentifiedResourceName  = "스켈본",		unidentifiedDescriptionName = {			"거대한 뱀 "요르문간드"의 늑골. 믿을 수 없을 정도의 강도와 크기를 자랑한다.",			"무게 : ^7777772000^000000",		},		identifiedDisplayName = "요르문간드의 늑골",		identifiedResourceName = "스켈본",		identifiedDescriptionName = {			"거대한 뱀 "요르문간드"의 늑골. 믿을 수 없을 정도의 강도와 크기를 자랑한다.",			"무게 : ^7777772000^000000",		},

 
Last edited by a moderator:
Line 79560, the quotes are not escaped properly. Replace with 

"거대한 뱀 "요르문간드"의 늑골. 믿을 수 없을 정도의 강도와 크기를 자랑한다.",

Same with line 79576 :

"오딘의 사역마 중 하나인 사고를 관장하는 까마귀 "후긴"의 혼을 형상화 한 것.",

And line 79594 :

"오딘의 사역마 중 하나인 기억를 관장하는 까마귀 "무닌"의 혼을 형상화 한 것.",

You could also use the replace feature within Notepad++ and use "Replace all" :

UkBodgG.png


 
It seems to have worked. Thank you very much Tokeiburu, appreciate the help. 

 
Last edited by a moderator:
Back
Top