Jump to content
  • 0

Item Call Skill


0flee

Question

Hello folks. How i can make this xml to call a skill which i put on item_skill?
 

<item id="22568" type="EtcItem" name="item name">
        <set name="etcitem_type" val="RUNE" />
        <set name="immediate_effect" val="true" />
        <set name="material" val="PAPER" />
        <set name="weight" val="100" />
        <set name="price" val="150000" />
        <set name="is_tradable" val="false" />
        <set name="is_dropable" val="false" />
        <set name="handler" val="ItemSkills" />
        <set name="item_skill" val="20923-1" />
    </item>
Now don;t work 😞 Thank you

P.S.- Skill its active and work like a buff ! Thank you again

Edited by 0flee
Link to comment
Share on other sites

8 answers to this question

Recommended Posts

  • 0
1 hour ago, 0flee said:

Hello folks. How i can make this xml to call a skill which i put on item_skill?
 

<item id="22568" type="EtcItem" name="item name">
        <set name="etcitem_type" val="RUNE" />
        <set name="immediate_effect" val="true" />
        <set name="material" val="PAPER" />
        <set name="weight" val="100" />
        <set name="price" val="150000" />
        <set name="is_tradable" val="false" />
        <set name="is_dropable" val="false" />
        <set name="handler" val="ItemSkills" />
        <set name="item_skill" val="20923-1" />
    </item>
Now don;t work 😞 Thank you

P.S.- Skill its active and work like a buff ! Thank you again

Find an item that skill is working and copy 

Link to comment
Share on other sites

  • 0
4 hours ago, 0flee said:

Hello folks. How i can make this xml to call a skill which i put on item_skill?
 

<item id="22568" type="EtcItem" name="item name">
        <set name="etcitem_type" val="RUNE" />
        <set name="immediate_effect" val="true" />
        <set name="material" val="PAPER" />
        <set name="weight" val="100" />
        <set name="price" val="150000" />
        <set name="is_tradable" val="false" />
        <set name="is_dropable" val="false" />
        <set name="handler" val="ItemSkills" />
        <set name="item_skill" val="20923-1" />
    </item>
Now don;t work 😞 Thank you

P.S.- Skill its active and work like a buff ! Thank you again

 

You want to click the item and trigger the skill

You want to get the item and automatically take the skill?

 

What exactly do you want?

Link to comment
Share on other sites

  • 0
47 minutes ago, 0flee said:

``You want to get the item and automatically take the skill?``
yes. But i trigged the skill from click on item. BUt was more good option  2nd from you

That skill is like a buff or perma skill ? I ask this because the approach of code is different in those cases

Link to comment
Share on other sites

  • 0
13 minutes ago, 0flee said:

Like when okayer get that item, automacally get skill too

 

You need modify the methods where the item is added to player's inventory 

and check the item skills to give them to him, same way if item is removed from inventory. 

 

For example in L2J (HighFive):

 

public L2ItemInstance addItem(final String process, final int itemId, final long count, final L2PcInstance actor, final Object reference)

 

here you could add your lines of code for example:

 

getItem().getSkills().addSkill(s -> addSkill(s, false);

 

(Consider those are handwritten lines, do not copy paste.

 

Same thing must happen at "destroyItem" (for cases of drop, destroy e.t.c) 

to remove the skills. 

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.


×
×
  • Create New...