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!

L2J [Help] How To Make A Recipie+Enchantments Shop [C5]

Status
Not open for further replies.
Newbie Spellweaver
Joined
Dec 8, 2006
Messages
6
Reaction score
0
The title mostly says it all.

I have very little experience with this. Please, help me out or atleast provide some sort of reference / idea that I can look at and then maybe I can go from there.

Thanks,
Trix.
 
Newbie Spellweaver
Joined
Dec 7, 2006
Messages
37
Reaction score
0
1. Do a xml file
2. Do html file for it
3. Open Npc table in navicat or what program u use.
4. Add the new Npc that sells it.

Example of XML file
Code:
<?xml version='1.0' encoding='utf-8'?>
<list>
 <!-- Divine Bow -->
  <item id="1">
    <ingredient id="6673" count="500" enchant="0"/>
    <production id="9051" count="1" enchant=""/>
  </item>
</list>
Code:
[COLOR="red"]Ingredient are what item they need to exchange 
for the item, Lets say its adena then its 57, the count is how much they need to pay![/COLOR]
<ingredient id="57" count="500" enchant="0"/>
[COLOR="red"]The Item id they Gets lets say its Its Devine bow that in my 
example, then its ID 9049, the count is how many they gets.[/COLOR]
<production id="9046" count="1" enchant="5000"/>
 
Upvote 0
Status
Not open for further replies.
Back
Top