• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

Adding Custom Items - Renewal Client

Newbie Spellweaver
Joined
Mar 1, 2011
Messages
94
Reaction score
25
In this guide we will walk you through out the complete process on how to add a custom item to your server using Renewal Client.


Let's download some necessary tools first and extract them to wherever you want.

Open your GRF using GRF Tool ( I won't go into details about this one since its pretty much basic ) and extract the following files
Tribalist - Adding Custom Items - Renewal Client - RaGEZONE Forums

Now here's the folder structure that you should have. Other files or folders that are not listed below, delete it.
  • for Lua Files: "lua files\datainfo\"
  • for Sprite Folder: "sprite\¾ÆÀÌÅÛ" and "sprite\¾Ç¼¼»ç¸®\¿©" and "sprite\¾Ç¼¼»ç¸®\³²"
  • for texture: "texture\À¯ÀúÀÎÅÍÆäÀ̽º\collection" and "texture\À¯ÀúÀÎÅÍÆäÀ̽º\item"

Now that the client folders are ready. Let's start grabbing our server files, for this you will need to open your item_db2.txt inside the db folder in your server files.

For this example we will add Malayan Ears to our server. Open item_db2.txt and add the following lines
30000,malayanears,Malayan Ears,5,5000,,500,,1,,0,0xFFFFFFFF,7,2,512,,0,0,1200,{},{},{}
We started our item id at 30000, our view id at 1200 and the position of the headgear is 512 (mid). I won't go into details regarding creating an entry to the database.

Now that our server has the item entry, we need to add necessary client files to our client for it to be usable by everyone.
Let's first open our lua files\datainfo\accessoryid.lua
Tribalist - Adding Custom Items - Renewal Client - RaGEZONE Forums


You will notice that there is a gap between the view id of 728 and 1200(malayan ears) Its for easy reading and tracing where you started your custom items entry.

Also, use that format "ACCESSORY_MALAYAN_EARS = 1200,"
1200 being our view id.

save that and close
Then, let's open "lua files\datainfo\accname.lua"
Tribalist - Adding Custom Items - Renewal Client - RaGEZONE Forums


You will notice there's an entry of "_malayanears"
malayanears is our sprite name, keep the format intact by following it "_spritenamehere"

Now let's add our sprite files
Drop Sprite should be place in..
sprite\¾ÆÀÌÅÛ
Now for Male and Female folders
sprite\¾Ç¼¼»ç¸®\¿©
sprite\¾Ç¼¼»ç¸®\³²
NOTE: for male and female folders add a prefix to your sprite filenames
"¿©_"
"³²_"

without double quotes of course lol

Now, lets add the the files for texture folder
For our collection image ( the image when you right click the item ingame)
texture\À¯ÀúÀÎÅÍÆäÀ̽º\collection

for our item image (the image inside your inventory)
texture\À¯ÀúÀÎÅÍÆäÀ̽º\item

------------------------------------------------------
Now that the files are inside their necessary folders, It's time to add the entries to our txt files in our client.
  • idnum2itemdesctable.txt -contains the description of the item when you right click them
  • idnum2itemdisplaynametable.txt - the name of the item
  • idnum2itemresnametable.txt - the sprite name of the item
  • itemslotcounttable.txt - if you are making a slotted item, you need to edit this to correctly display the slot

Now everything is done. All you need is to patch it to your client using your favorite patcher :)

If you have questions, please post here.
 
Initiate Mage
Joined
Feb 20, 2013
Messages
1
Reaction score
0
where did i get file dnum2itemdesctable.txt
idnum2itemdisplaynametable.txt
idnum2itemresnametable.txt
itemslotcounttable.txt
 
Newbie Spellweaver
Joined
Jul 27, 2012
Messages
20
Reaction score
3
@Tribalist can you update this link ,, thanks advance :)
 
Back
Top