L2JMobius

Buy [418 Assassin] An Item that adds primepoints to the character

Suloko · 3 · 974

Offline Suloko

  • Knight
  • ***
    • Posts: 97
  • Be yourself
Looking for implementation of an item (any item of your choice is okay as long as functionality is there) that adds prime points to the character on double click. Item should be consumed after prime points succesfully added.

Price 20 Euros.

Please DM for further contacts or more information.


Online Mobius

  • Distinguished King
  • *****
    • Posts: 16120
Why pay when extractable items support prime points?

Code: [Select]
<item id="65000" name="Hero's Treasure Chest" type="EtcItem">
<!-- Use it to obtain a special item. -->
<set name="icon" val="icon.bm_pirate_battle_box" />
<set name="displayId" val="95851" /> <!-- Main 80503 - Essence 95851 -->
<set name="default_action" val="PEEL" />
<set name="immediate_effect" val="true" />
<set name="material" val="MITHRIL" />
<set name="weight" val="0" />
<set name="is_tradable" val="true" />
<set name="is_dropable" val="false" />
<set name="is_sellable" val="false" />
<set name="is_stackable" val="true" />
<set name="is_premium" val="true" />
<set name="handler" val="ExtractableItems" />
<set name="is_clan_depositable" val="false" />
<set name="is_mailable" val="true" />
<set name="is_destroyable" val="false" />
<set name="is_commissionable" val="false" />
<set name="is_private_storeable" val="true" />
<capsuled_items>
<item id="-1" min="100" max="100" chance="100" /> <!-- Prime Points -->
</capsuled_items>
</item>


Offline Suloko

  • Knight
  • ***
    • Posts: 97
  • Be yourself