I'm trying to make a scroll where only specific item id's can be enchanted with it. For example
I made few copies with the same configs just different weapon ID, but only the last one works. Any idea how to add many weapons to 1 scroll? For example with scroll 959 to can enchant weapon ID XX; weapon ID XX, Weapon ID XX ...
Code:
<scroll id="959" infallible="false" on_fail="NONE" chance_bonus="0" grade="S">
<levels min="7" max="25" />
<items_restrict type="WEAPON">
<item id="27043" />
</items_restrict>
<chances type="WEAPON">
<chance val="100"/><!-- 8 -->
<chance val="100"/><!-- 9 -->
<chance val="100"/><!-- 10 -->
<chance val="100"/><!-- 11 -->
<chance val="100"/><!-- 12 -->
<chance val="100"/><!-- 13 -->
<chance val="100"/><!-- 14 -->
<chance val="100"/><!-- 15 -->
<chance val="100"/><!-- 16 -->
<chance val="100"/><!-- 17 -->
<chance val="100"/><!-- 18 -->
<chance val="100"/><!-- 19 -->
<chance val="100"/><!-- 20 -->
<chance val="100"/><!-- 21 -->
<chance val="100"/><!-- 22 -->
<chance val="100"/><!-- 23 -->
<chance val="100"/><!-- 24 -->
<chance val="100"/><!-- 25 -->
</chances>
</scroll>