Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

How to add Custom Items using Renewal Client

Newbie Spellweaver
Joined
Apr 18, 2009
Messages
77
Reaction score
29
Download this LUA FILES using TortoiseSVN or any SVN checker/downloader whatever!:



:::INDEX:::
-Client Side
-Server Side


CLIENT SIDE:
lua files/data info/accname.lua
USE ANY EDITOR, or NOTEPAD EDITOR or WORDPAD

EXAMPLE:
[ACCESSORY_IDs.ACCESSORY_BUNNYBAND] = "_�䳢�Ӹ���",

HOW TO ADD:
[ACCESSORY_IDs.ACCESSORY_HEADGEARNAME] = "_SPRITENAME", <<<<---- UNDERSCORE+SPRITENAME +COMMA don't forget it!

We're now done on how to add the "SPRITE"... next step....

goto:
lua files/data info/accessoryid.lua

EXAMPLE:
ACCESSORY_BUNNYBAND = 15,

HOW TO ADD:
ACCESSORY_HEADGEARNAME = ViewID, <<--- + comma.. ----///// we need to use the ViewID later! and also the HEADERGEARNAME

We're now done on how to add the "ViewID"

--------------------------------------------------------------------------------------------

:::NEXT STEP:::
File to edits:
idnum2itemdesctable.txt
idnum2itemdisplaynametable.txt
idnum2itemresnametable.txt
num2itemdesctable.txt
num2itemdisplaynametable.txt
num2itemresnametable.txt


ABOUT THE:
idnum2itemdesctable.txt
num2itemdesctable.txt
I KNOW! YOU ALREADY KNOW HOW TO ADD/EDIT THAT ONE!

---------------

1st STEP:
idnum2itemdisplaynametable.txt
2214#Bunny_Band#


how to add:
ITEMNUMBER#CLIENTITEMNAME#

---------------

2nd STEP:
idnum2itemresnametable.txt

2214#�䳢�Ӹ���#

how to add:
ITEMNUMBER#SPRITENAME# <<<----so the sprite name! you need to remove the UNDERSCORE for it...

3rd STEP:
num2itemdisplaynametable.txt
2214#Hat# <--- this is used for UNMAGNIFIED items.

how to add:
ITEMNUMBER#HAT#

---------------

4th STEP:
num2itemresnametable.txt

2214#�䳢�Ӹ���#

how to add:

ITEMNUMBER#SPRITENAME#

----------------


Server Side:


----------------

go to your db/item_db.txt or item_db2.txt

2214,Bunny_Band,Bunny Band,5,20,,100,,2,,0,0xFFFFFFFF,31,2,256,,0,1,15,{ bonus bLuk,2; },{},{}

how to add:

2214,Bunny_Band,Bunny Band,5,20,,100,,2,,0,0xFFFFFFFF,31,2,256,,0,1,ViewID,{ bonus bLuk,2; },{},{}

---- remember about the ViewID above? specied your own id!lol


END OF TUTORIAL!

::::LOGICALLY this guide is work on RENEWAL CLIENT the "RagexeRE CLIENTS" do not use other client it won't work!::::

ABOUT THE:
lua files/data info/accname.lua
lua files/data info/accessoryid.lua
-The HeadGEAR name or the ItemNAME must equal.so that the SPRITE and VIEWID will merge like XRAY client GUIDES...
 
Newbie Spellweaver
Joined
Mar 1, 2011
Messages
94
Reaction score
25
I don't really edit the following files to add custom items lol
Code:
num2itemdesctable.txt
num2itemdisplaynametable.txt
num2itemresnametable.txt
 
Initiate Mage
Joined
Feb 22, 2012
Messages
2
Reaction score
0
hello sir..
so how or where i can insert the new sprites sir??
 
Back
Top