Jump to content
  • 0

How i can create and add SA's in any waepons!!


Question

Posted

Hello ppl,

 

if some1 know how i can create Special abilities and add them to any weapon i want... i would like to know !!

 

Thanks for any reply

6 answers to this question

Recommended Posts

  • 0
Posted

That's impossible mate... no one can do this only if the server don't have some special ability's to some weapons and thats custom things..

  • 0
Posted

yes i need to add special ability to a weapon which dont have Special ability... so i need to make it Acumen and give 17,5% cast.speed

 

 

Do you know how i can do that?

  • 0
Posted

You want other players to add the SA normaly with life crystal ? or just make a weapon buyable with that custom SA ?

Some fast solutions i can think :

1)this way you can add stats to a weapon that dont have SA .

First find the id of the weapon you want , then go to your stats folder od l2j server and open the folder called weapons .

Choose the proper .xml file (the file that involves the weapon id you choose) find the weapon you want and after the last line add

<mul val='1.175' order='0x30' stat='mAtkSpd'/>

this will give 17,5% more casting speed to anyone that wears the weapon . and if you want to make it look like that weapon has SA go and edit your itemname.dat at your system folder.

Its not the best way but its an easy way . WARNING : if you edit the initial weapon [ the one without SA ] players will be able to add SA on that weapon . So they will get the 17,5% casting speed and the SA bonus too . so if you are a bit familiriar with l2j better make a new weapon  and add this stats.

2)this way you can change an existing SA to give other stats

first of all you want to add 17,5% casting speed so you need to make a new SA skill .  you can use this code

<?xml version='1.0' encoding='utf-8'?>
<list>
<skill id="8000" levels="3" name="Special Ability: Acumen175">
<table name="#pvpBonus"> 1.0 1.05 1.10 </table>
  <set name="power" val="0.0"/>
  <set name="target" val="TARGET_SELF"/>
  <set name="skillType" val="BUFF"/>
  <set name="operateType" val="OP_PASSIVE"/>
  <set name="castRange" val="-1"/>
  <set name="effectRange" val="-1"/>
  <for>
    <mul order="0x30" stat="mAtkSpd" val="1.175"/> <!-- Casting Spd. +17.5% -->
    <mul val="#pvpBonus" order="0x30" stat="pvpPhysDmg"/><!-- Enhances damage to target during PvP -->
    <mul val="#pvpBonus" order="0x30" stat="pvpMagicalDmg"/>
  </for>
</skill>
</list>

you must make an xml file call 8000-8099.xml and put it inside

now you have a ready new sa skill xD

lets go to change the SA now . as i begun playing low rate server i always wanted Sword of Whispering Death with Acumen SA so lets do it

open yours mysql editor ( navicat in most of cases ) go to weapons table and go find the weapon Sword of Whispering Death-Empower his id is 6310 if you search you will see a column called itemskill id and is seted as '0' change it with 8000 and at skilllvl  change it with 1 .

save it and its ok . now you added +17.5 % casting speed to Sword of Whispering Death-Empower  . no go to delete the Empower SA [if you want ] go to stats folder , then go to weapons find the proper xml and when you find the Sword of Whispering Death-Empower delete the 2 lines

    <!-- SA: Empower -->
    <add val='24' order='0x40' stat='mAtk'/>

and save it .

you have done it , but there is a small problem . if a player open his inventory the weapon will say SA : empower and he will get casting speed bonus he will say wtf? so the last step is to edit your itemname-e.dat find the weapon and chant the words xD

 

i dont know if i helped anyway have fun

 

 

   

  • 0
Posted

thanks a lot bro, ofc u helped me.Now i can do w/e i want with ur guide~ i already did and i will do more!

 

Appreciate ^^ See ya arround

Guest
This topic is now closed to further replies.


×
×
  • Create New...