[Solved]Skill not implented...

Support for the latest build of L2J Server, get help here with installations, upgrades, problems.
Do not post bugs reports here, use viewforum.php?f=77 instead.
There is no support for other server builds than the official provided by l2jserver.com
Forum rules
READ NOW: L2j Forums Rules of Conduct
Post Reply
DeathSpank287
Posts: 50
Joined: Mon Jan 23, 2012 10:39 pm

[Solved]Skill not implented...

Post by DeathSpank287 »

If you want to receive support we need this info to help you properly.
» Find Revision
L2J Revision Number: 5645
L2JDP Revision Number: 9191M

Hello L2J,
I have a problem with some scrolls I tried to change. When I am trying to use them I get ingame the message "Skill not implented Skill ID: 2996 ENCHANT_WEAPON". There is no error in the console or anything else. For me the XML seems okay.

The skill XML:

Code: Select all

     <skill id="2996" levels="1" name="PC room private weapon strengthening order sheet - C grade">        <set name="isMagic" val="2" /> <!-- Static Skill -->        <set name="target" val="TARGET_SELF" />        <set name="skillType" val="ENCHANT_ARMOR" />        <set name="operateType" val="A1" />    </skill> 
Note: I have tried both "<set name="skillType" val="ENCHANT_ARMOR" />" and "<set name="skillType" val="ENCHANT_WEAPON" />"

The Item XML:

Code: Select all

     <item id="15347" type="EtcItem" name="Scroll: Enchant Weapon (Grade C) - Exclusive to PC weapons">        <set name="icon" val="br_cashtex.item.br_cash_blessed_cry_of_ench_wp_a_i00" />        <set name="default_action" val="skill_reduce" />        <set name="etcitem_type" val="scrl_enchant_wp" />        <set name="immediate_effect" val="1" />        <set name="material" val="paper" />        <set name="weight" val="120" />        <set name="is_tradable" val="false" />        <set name="is_dropable" val="false" />        <set name="is_sellable" val="false" />        <set name="is_depositable" val="false" />        <set name="is_stackable" val="true" />        <set name="is_oly_restricted" val="true" />        <set name="handler" val="ItemSkills" />        <set name="item_skill" val="2996-1" />    </item> 
enchantData:

Code: Select all

     <enchant id="15347" targetGrade="s" isWeapon="false" isBlessed="true" successRate="65">        <item id="6658" />    </enchant> 
I am still a newbie... You can't even call me a Developer yet^^

Reason why I should instantly quit developing:
http://imageshack.us/photo/my-images/21 ... ntrnp.png/
My server is such a fail :o
DeathSpank287
Posts: 50
Joined: Mon Jan 23, 2012 10:39 pm

Re: [Solved]Skill not implented...

Post by DeathSpank287 »

Found the bug..

The Item XML:

Code: Select all

         <set name="handler" val="ItemSkills" /> 
This is the problem line just changed it to

Code: Select all

        <set name="handler" val="Enchant Scrolls" />
I am still a newbie... You can't even call me a Developer yet^^

Reason why I should instantly quit developing:
http://imageshack.us/photo/my-images/21 ... ntrnp.png/
My server is such a fail :o
Post Reply