i need help

iCORE

New member
Messages
393
Points
0
Location
Halcyon Ragnarok
Github
Naori
Emulator
hi guys
default_smile.png
i would ask you a simple favor could anyone here teach me how to add costume items (weapons,cards and ect) im begging you guys to help me in teamviewer or any remote program you have just 1 example will do and a full explanation
default_smile.png
im not that hard to teach

PS: i allready read the wiki about costume items but still i cant get it

advance thank you for those who help me

 
Last edited by a moderator:
2 Questions,

1)costume item or custom item?

2)which client you are using?

 
^ Costume Item really fits in Headgears..

Maybe you are talking about Custom Item since you are pointing out to (weapons,cards and ect). 
default_que.gif
 

 
yes im asking about how to add costume items 
(Too confusing..)

Assuming you are saying Custom Item(since you said weapons,cards and etc):

Custom Item Guide: http://herc.ws/wiki/Custom_Items

Note: You have to edit System/itemInfo.lub and not idnumtables and also be sure you edited all other luas properly.

Could you please tell which part of that guide you haven't understood.

Costume Item:

its the item which are in other tab. Just follow the guide of Custom Item , and in "Loc" Field of item_db.conf put the costume item value

Code:
1024 = Costume Top Headgear2048 = Costume Mid Headgear4096 = Costume Low Headgear8192 = Costume Garment/Robe
 
Last edited by a moderator:
i have lub files is this right?

Untitled.png


which is need to lub or lua?

opps sorry for double posting

here is my system folder what file do i need to edit here lub or lua?

Untitled.png


ok ill post everyting i made
default_smile.png


"View: " line i will add it later because it has not xtrayed yet

item_db2.png


this is my item_db2.txt

tell me whats wrong and tell me whats next

SLOT typo error

 
Last edited by a moderator:
Naori said:
ok ill post everyting i made
default_smile.png


"View: " line i will add it later because it has not xtrayed yet 

item_db2.png


this is my item_db2.txt

tell me whats wrong and tell me whats next

SLOT typo error
can you even read the text in the image?
 
i have lub files is this right?

Untitled.png


which is need to lub or lua?

opps sorry for double posting

here is my system folder what file do i need to edit here lub or lua?

Untitled.png


ok ill post everyting i made
default_smile.png


"View: " line i will add it later because it has not xtrayed yet

item_db2.png


this is my item_db2.txt

tell me whats wrong and tell me whats next

SLOT typo error
Please remove /* */ <-- use for comment...

it must be 

Id: 20000AegisName: "Hercules_Cap"Name: "Hercules Cap"Type: 5Weight: 10Def: 10Slots: 2Job: 0xFFFFFFFFGender: 2Loc: 1024View: //<---- You missed to put viewID here, it must be something you put in accessoryID,Script: <" bAllStats, 5; ">
In View tab, for example your accessoryID for Hercules_Cap is 1300, so View must be

View: 1300
in ItemInfo.lua

ClassNum = 1300

And you have typo-error in Slote, it must be Slots

I wish this information hepls you, Keep in mind that you have to learn to understand

not just copy/paste. Goodluck
default_smile.png


 
Last edited by a moderator:
i have lub files is this right?

Untitled.png


which is need to lub or lua?

opps sorry for double posting

here is my system folder what file do i need to edit here lub or lua?

Untitled.png


ok ill post everyting i made
default_smile.png


"View: " line i will add it later because it has not xtrayed yet

item_db2.png


this is my item_db2.txt

tell me whats wrong and tell me whats next

SLOT typo error
Please remove /* */ <-- use for comment...

it must be 

Id: 20000AegisName: "Hercules_Cap"Name: "Hercules Cap"Type: 5Weight: 10Def: 10Slots: 2Job: 0xFFFFFFFFGender: 2Loc: 1024View: //<---- You missed to put viewID here, it must be something you put in accessoryID,Script: <" bAllStats, 5; ">
In View tab, for example your accessoryID for Hercules_Cap is 1300, so View must be

View: 1300
in ItemInfo.lua

ClassNum = 1300

And you have typo-error in Slote, it must be Slots

I wish this information hepls you, Keep in mind that you have to learn to understand

not just copy/paste. Goodluck
default_smile.png
You also don't have Script Field correct.

it should be:

Script: <" bonus bAllStats,5; ">
you missed the word "bonus"

 
Untitled.png


what is the difference between costume and the general hmm i though it will be equip on general when i make costume

 
yes you can put it in general. by changing Loc: to

(2^0) 1 = Lower headgear(2^8) 256 = Upper headgear(2^9) 512 = Middle headgear(2^10) 1024 = Costume Top Headgear(2^11) 2048 = Costume Mid Headgear(2^12) 4096 = Costume Low Headgear

 
for example you want to put it in general Upper Headgear

Code:
Loc: 256 //<--- As simple as that and your done
 
Back
Top