[Help]how put custom skill? L2J 

Newbie Spellweaver
Joined
Jan 26, 2006
Messages
30
Reaction score
0
I had in server <skill id="10001" levels="1" name="CP RESTORE">

I putted it in npc buffer and it works but
when I use skill it sais: U used . instead of you used CP RESTORE

what files do I have to change to get it to work?
I allready putted skill in skillname-e.dat but still same what did I do wrong or forgot?

and if I do add skill 10001 to a player he recieves the skill , I see skill in DB, but ingame in skilllist of char active or passive skill I can't find it it isn't there

I put code of xml here maybe it helps:

Code:
<?xml version='1.0' encoding='utf-8'?>
<list>
<skill id="10001" levels="1" name="CP RESTORE">
  <table name="#rateCp"> 999999999.0 </table>
  <table name="#mpConsume"> 0 </table>
  <set name="mpConsume" val="#mpConsume"/>
  <set name="power" val="#rateCp"/>
  <set name="target" val="TARGET_SELF"/>
  <set name="skillRadius" val="600"/>
  <set name="hitTime" val="2000"/>
  <set name="reuseDelay" val="0"/>
  <set name="skillTime" val="21"/>
  <set name="skillType" val="COMBATPOINTHEAL"/>
  <set name="isMagic" val="true"/>
  <set name="operateType" val="OP_ACTIVE"/>
  <set name="buffDuration" val="1200"/>
  <set name="castRange" val="-1"/>
  <for>
  </for>
</skill>
</list>
 
Ritual of Life the skill from Overlord hast cp restore ... you can use that skill and just change some things and it will works 100%
 
Upvote 0
you're client don't know the skill so it can't put in your skill list!

You should (or must, I don't remember the good word ^^) edit with fileedit "skillname-e.dat" and "skillgrp.dat" and add the description for your skill...

bye
 
Upvote 0
Back