Jump to content
  • 0
Sign in to follow this  
ThyroDree

Someone Help me Item Script

Question

Please help me how to add skill on custom items like

 

[+ Yinyang Wing]

Use Lvl 4 Warm Wind

 

and teach me how to Increase Damage of skills

 

[^333399 If Refine +10 ^000000]
^00FF00 Increase 5% Acid Demontration Damage.^000000

 

 

 

[^333399 If Refine +10 ^000000]
^00FF00 Increase 5% Double Strafe and Sharp Shooting Damage.^000000

 Please Help me!  :(

 

Share this post


Link to post
Share on other sites

5 answers to this question

Recommended Posts

  • 0

This

1. itemid,item name,....{ if (isequipped(<yin_yang_id_number>)) { skill "TK_SEVENWIND",4; } },{},{ sc_end "TK_SEVENWIND"; }2. itemid,item name,....{ if ( getrefine() == 10 ) { bonus2 bSkillAtk,490,5; } },{},{}3. itemid,item name,....{ if ( getrefine() == 10 ) { bonus2 bSkillAtk,"AC_DOUBLE",5 bonus2 bSkillAtk,"SN_SHARPSHOOTING",5; } },{},{}

Edit : add a sc_end 

Edited by Patskie

Share this post


Link to post
Share on other sites
  • 0

 

check your re/skill_db.txt


Thanks! Last please. what script ?

----


[ Thief Class ]
Increase Soul Destroyer damage by 30%


How to make the effect activate if only wear with tHief class
{ if(Class==Job_Thief) bonus bla bla }

----

Help me how can i make this script on item_db2

[^000088 + Red Valkyrie Helm ^000000]
Enables use of ^008800Level 4 Warm Wind^000000.


Red Valkyrie Helm ID - 25000
Please

Share this post


Link to post
Share on other sites
  • 0
itemid,item name,....{ if ( BaseClass == Job_Thief ) { bonus2 bSkillAtk,379,30; } }itemid,item name,....{ if ( isequipped( 25000 ) ) { skill "TK_SEVENWIND",4; } },{},{ sc_end "TK_SEVENWIND"; }

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
Sign in to follow this  

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.