[help] how to create new items

Newbie Spellweaver
Joined
Dec 5, 2008
Messages
23
Reaction score
0
[Solved] how to create new items

Ok so let's say I want to create a new dagger...

I went in the ITEM table of my database and added a new row that start with the number "999999999"
just to be sure i wasnt making a new item with the same ID of an existing one...
I filled the collumns with the appropriate infos ... after that I edited the TBL file on the client side...
and now what? I inserted the item into my warehouse using the SQL query but when I log into my account the inn is empty... what did I missed?

Thanks alot!

Ps:thumbup1:
 
Last edited:
think youre right ... the only guide that exist is the one with the DXT editor which is a nice one exept that if you're just trying to add an unique like +0 "gm weapon" or non-upgradable ... it's not really clear.

Btw, i also edited item_ext24.tbl and item_ext in db ... still no item ingame.
Im going to try to just copy the "dagger of selfname" from ITEM and ITEM_EXT table and in the tbl file and change it's name to see if it would work.

I'll give you news
 
I believe you also need to edit item_org_en.tbl and/or item_org_us.tbl or whichever language u use.
Add a row in there, and make sure it points to the item_ext##.tbl (whatever ## u put in there, it should specify that number in item_org_xx.tbl.. i believe its second column -- check with other items)
 
Yep i already did that ... that's why im posting here because i thought normally the item SHOULD be ingame and its not :(
ill try something else and post news.

Thanks
 
Service load: 0% 100%

File: Klg_decoder.exe
Status: POSSIBLY INFECTED/MALWARE (Note: this file was only classified as malware by scanners known to generate more false positives than the average scanner. Do not consider these results definately accurate. Also, because of this, results of this scan will not be recorded in the database.)
MD5: 17f6450a2ebfef047f6697436dc3992b
Packers detected: -

Scanner results
Scan taken on 21 Dec 2008 06:33:11 (GMT)
A-Squared Found nothing
AntiVir Found nothing
ArcaVir Found nothing
Avast Found nothing
AVG Antivirus Found nothing
BitDefender Found nothing
ClamAV Found nothing
CPsecure Found nothing
Dr.Web Found nothing
F-Prot Antivirus Found nothing
F-Secure Anti-Virus Found nothing
G DATA Found nothing
Ikarus Found Trojan-Downloader.Win32.Banload
Kaspersky Anti-Virus Found nothing
NOD32 Found nothing
Norman Virus Control Found nothing
Panda Antivirus Found nothing
Sophos Antivirus Found nothing
VirusBuster Found nothing
VBA32 Found nothing


Infected or packer used ???!

Thanks for the share
 
Last edited:
yeah i've seen that topic but its not really helping me :S ... i did everything correctly (i think) and still no results
 
i decoded the log file and that's why the item is not being loaded ingame:

[22:12:13] WareHouse - Ware - Unknown Item 379079000, IDNumber
[22:12:13] WareHouse - Ware - Unknown Item 999999999, IDNumber
[22:12:13] WareHouse - Ware - Unknown Item 999999999, IDNumber
[22:12:13] WareHouse - Ware - Unknown Item 999999999, IDNumber
[22:12:13] WareHouse - Ware - Unknown Item 999999999, IDNumber
[22:12:13] WareHouse - Ware - Unknown Item 999999999, IDNumber
[22:12:13] WareHouse - Ware - Unknown Item 999999999, IDNumber
[22:12:13] WareHouse - Ware - Unknown Item 999999999, IDNumber
[22:12:13] WareHouse - Ware - Unknown Item 999999999, IDNumber
[22:12:13] WareHouse - Ware - Unknown Item 999999999, IDNumber
[22:12:13] WareHouse - Ware - Unknown Item 999999999, IDNumber
[22:12:13] WareHouse - Ware - Unknown Item 999999999, IDNumber
[22:12:13] WareHouse - Ware - Unknown Item 999999999, IDNumber
[22:12:13] WareHouse - Ware - Unknown Item 999999999, IDNumber
[22:12:13] WareHouse - Ware - Unknown Item 999999999, IDNumber
[22:12:13] WareHouse - Ware - Unknown Item 999999999, IDNumber
[22:12:26] CNEng::~CN3Eng - Device reference count is bigger than 0
// End writing log... [12/15 22:12]

the problem is that the item IS in the database so why is it written "unknown item" ?... (sorry for double post)
 
U have to add item to:
•item_org_us.tbl

•item_ext_**_us.tbl (** must be the same number at 1-Byte column at item_org_us.tbl)
/Item/ (the correct *.n3cplug *.n3pmesh with correct file names) + (u have to hex *.n3pmesh file to see its *.dxt files and add these too to the Item folder)

•/UI/ (the correct *.dxt file with the correct file name of item num so see an item in ur inventroy. Also the file name and 6-UInt32 and 7-UInt32 columns at item_org_us.tbl must match)

Check these steps again, i think ur missing smt.
Probably u dont have the necessary *.n3cplug *.n3pmesh *.dxt files
 
ok ... item is:
999999999 in item_orgus.tbl (item_ext in there is set for #24)
item is added in item_ext_24_us_tbl (last row... the 1st number is 402... ? is that a problem ...i also tried with 999)
in /item/ i copied and renamed 1 .n3cplug and 1 .n3pmesh to 9_9999_999.bothextentions
i hexed both files to change the hex to the same # 9_9999_999
/UI/ the 6-Ulnt32 and 7-Ulnt32 is 11121000 (shard icon) ... there is already a file called 1_11_21000.dxt

so what am i missing?
 
Make item files name like below : (8 digits and last two digit is 0)
9_9999_90_0.n3cplug
9_9999_90_0.n3pmesh

and also make 6-UInt32 and 7-UInt32 at item_org_us.tbl: (8 digits and last two digit is 0)
99999900

and then copy the shard's dxt file at UI folder and rename it to:
itemicon_9_9999_90_0.dxt

I dont know which version ur server is but is there a item_ext_24.tbl at v1299?
i mean better use item_ext_23 and dont forget to change it at item_org_us.tbl column 1-Byte

and make the 0- UInt32 at item_ext_23:
999

by this u should at least see the item icon and use it
 
Back