Jump to content

Schematics!


ZzzSmileYzzZ

Recommended Posts

Items.xml.

 

You need to make a schematic item for it. So, as an example...

 

<item id="971" name="clawHammerSchematic"> <!-- NO LONGER USED -->
<property name="Extends" value="schematicMaster"/>
<property name="CustomIcon" value="schematicMaster"/>
<property class="Action1">
	<property name="Recipes_to_learn" value="clawHammer"/>
	<!-- <property name="Skills_to_gain" value="craftSkillTools"/> -->
</property>
</item>

 

It's actually already in the code but commented out, and makes you learn the schematic instead of the item. :)

 

EDIT: Oh! and you need to edit loot.xml so it can drop, and traders.xml if you want people to be able to buy it.

Link to comment
Share on other sites

N/M Got it to work.

 

had to change the code from:

 

<item id="971" name="clawHammerSchematic"> <!-- NO LONGER USED -->
<property name="Extends" value="schematicMaster"/>
<property name="CustomIcon" value="schematicMaster"/>
<property class="Action1">
<property name="Recipes_to_learn" value="clawHammerSchematic"/>
<!-- <property name="Skills_to_gain" value="craftSkillTools"/> -->
</property>
</item>

 

To:

 

<item id="971" name="clawHammerSchematic"> <!-- NO LONGER USED -->
<property name="Extends" value="schematicMaster"/>
<property name="CustomIcon" value="schematicMaster"/>
<property class="Action1">
<property name="Recipes_to_learn" value="clawHammer"/>
<!-- <property name="Skills_to_gain" value="craftSkillTools"/> -->
</property>
</item>

 

And it's work now. Now I need to put it into the loot group, any suggestion?

 

Cheers,

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...