Jump to content
  • 0

Question

Posted

Hi all. It is possible to create a new item ( Bracelet ) Which have condition ti can support 1 type of talisman?
This required knowledge of java? Or i just can create item and to apply condition on xml?

4 answers to this question

Recommended Posts

  • 0
Posted

The pointless to make something what already exists in L2.

 

Item:

	<item id="9589" type="Armor" name="Iron Bracelet">
		<set name="icon" val="icon.etc_rbracelet_c_i00" />
		<set name="default_action" val="EQUIP" />
		<set name="bodypart" val="rbracelet" />
		<set name="immediate_effect" val="true" />
		<set name="crystal_count" val="72" />
		<set name="crystal_type" val="C" />
		<set name="material" val="SILVER" />
		<set name="weight" val="150" />
		<set name="price" val="216000" />
		<set name="item_skill" val="3322-1" />
	</item>

 

Skill:

	<skill id="3322" levels="1" name="Brass Bracelet">
		<!-- Confirmed CT2.5 -->
		<set name="icon" val="icon.etc_rbracelet_c_i00" />
		<set name="magicLvl" val="20" />
		<set name="operateType" val="P" />
		<set name="targetType" val="SELF" />
		<for>
			<effect name="TalismanSlot">
				<param slots="1" />
			</effect>
		</for>
	</skill>

If you really need new one item with one slot then make new item by posted example and specify this skill ID.

Guest
This topic is now closed to further replies.


×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..