|
Tell him how you got it, at least, so that he won't ask unnecessary questions in future.
If you want an item, you know the name, you know that it is an ITEM, go for your ".\media\server_dep\silkroad\textdata" and extract these files:
textdata_equip&skill.txt
textdata_object.txt
They are literally pointing you to the STRING of the ITEM NAME.
Lets say, you want the "Roc's claw", open both files in Notepad++ or whatever you prefer, CTRL+F, enter there for searching the exact name "Roc's claw", hit enter, and we get the string:
"SN_ITEM_QNO_RM_ARCHEMY_1"
For database stuff, search with
"ITEM_QNO_RM_ARCHEMY_1" ("SN_..." is not valid).
|