How can i make this bow looks different

I am not that familiar with the iteminfo format, however the guide applies pretty much the same, except instead of editing 7 client files you just need to add one entry

Open your Lua filesiteminfo.lua

Code:
[5013] = {        unidentifiedDisplayName = "Head Gear", <--- Item Name when not identified (num2itemdisplaynametable.txt value)        unidentifiedResourceName = "¸®º»", <---- Sprite used when not identified (num2itemresnametable.txt value)        unidentifiedDescriptionName = {            "Unidentified item, can be identified with [Magnifier].", <---- Description used when not identified (num2itemdesctable.txt value)        },        identifiedDisplayName = "Lord Kaho's Horn",<--- identified name (idnum2itemdisplaynametable.txt value)        identifiedResourceName = "·ÎµåīȣÀÇ»Ô", <---- identified sprite (idnum2itemresnametable.txt value)        identifiedDescriptionName = {            "A special headgear created specifically for Lord Kaho ... Whoever he is.", <--- identified description (idnum2itemdesctable.txt value)            "STR + 5, INT + 5",            "VIT + 10, AGI + 10",            "LUK + 20, MDEF + 10",            "Class :^777777 Headgear^000000",            "Defense :^777777 30^000000",            "Equipped on :^777777 Upper^000000",            "Weight :^777777 10^000000",            "Applicable Job :^777777 Every Job^000000",        },        slotCount = 4, <-- amount of slots (itemslotcounttable.txt value)        ClassNum = 99 <--- No idea... Item type I'd guess? O.o
 
From what i understand ClassNum is the viewid you specify in item_db.txt. so putting the bow's view id value there ideally should show the correct bow sprite.

 
The thing is in 2013 clients, all item weapon shows default sprite. What i mean is if i wear a Rudra's Bow it will still appear as brown ordinary bow,if i wear naght twin sword,it will look like a normal sword in sprite. Every weapon show as what they are...in short all bows shows as normal bow ,all swords shows normal swords no matter what sword sprite they must be in real.

http://herc.ws/board/topic/1379-all-weapon-sprite-showing-default/

and i found another topic about it too.

http://rathena.org/board/topic/73980-all-weapon-sprites-default/

 
Back
Top