Jump to content
  • 0

Reduce Specific Skills


Yoona

Question


  • Group:  Members
  • Topic Count:  153
  • Topics Per Day:  0.04
  • Content Count:  567
  • Reputation:   18
  • Joined:  04/15/13
  • Last Seen:  

Hi there! i am trying to look at the item bonuses and cant find what im looking for so can you guys tell me how to reduce Skill Delay on Specific Skills? like

 

 

i will reduce Hundred Spear for 30%

 

 

can anyone help me with this? :)

Link to comment
Share on other sites

10 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  91
  • Topics Per Day:  0.02
  • Content Count:  325
  • Reputation:   34
  • Joined:  06/01/13
  • Last Seen:  

Hi there! i am trying to look at the item bonuses and cant find what im looking for so can you guys tell me how to reduce Skill Delay on Specific Skills? like

 

 

i will reduce Hundred Spear for 30%

 

 

can anyone help me with this? :)

 

Check out the skill_db.txt structue :D i poked my nose into that stuff too before :P! since u wanna edit the hundred spears it must be in database/db/re/skill_db.txt   and see the "cast defence rate" or "max count" ( Find the positions of these 2 from the 1st line in skill_db.txt) 

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  153
  • Topics Per Day:  0.04
  • Content Count:  567
  • Reputation:   18
  • Joined:  04/15/13
  • Last Seen:  

sorry i didn't explain it well, but thanks for the reply

 

 

my point is i want to create an item that can reduce the delay of Hundred Spear. 

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  91
  • Topics Per Day:  0.02
  • Content Count:  325
  • Reputation:   34
  • Joined:  06/01/13
  • Last Seen:  

sorry i didn't explain it well, but thanks for the reply

my point is i want to create an item that can reduce the delay of Hundred Spear.

Hi again, just look at the Docs/item_bonus.txt i found one bonus : "bonus bCastRate,sk,n;" which can adjust the skill's rate so if hundred spears rate is 100 calculate 100-30 which is 70 as "n" in the bonus script and "sk" is the skill ID of hundred spear. Hope you understood what im trying to say xD Edited by Santafe
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  5
  • Topics Per Day:  0.00
  • Content Count:  58
  • Reputation:   6
  • Joined:  06/16/13
  • Last Seen:  

hundred spear have 3 secon of cool down.

//-- RK_HUNDREDSPEAR
2004,1000:900:800:700:600:500:400:300:200:100,500,0,0,0,3000,-1

so, for 30% reduce cool down

{ bonus2 bSkillCooldown,"RK_HUNDREDSPEAR",-900; },{},{}
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  153
  • Topics Per Day:  0.04
  • Content Count:  567
  • Reputation:   18
  • Joined:  04/15/13
  • Last Seen:  

@Santafe yes i understood what youre saying thanks! and let me try that!

 

 

@painrugi thanks for the reply but cool down and skill delay is not the same, i guess?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  5
  • Topics Per Day:  0.00
  • Content Count:  58
  • Reputation:   6
  • Joined:  06/16/13
  • Last Seen:  


{ bonus2 bSkillDelay,"RK_HUNDREDSPEAR",-150; },{},{}

Edited by painrugi
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  153
  • Topics Per Day:  0.04
  • Content Count:  567
  • Reputation:   18
  • Joined:  04/15/13
  • Last Seen:  

@bump!

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  72
  • Topics Per Day:  0.02
  • Content Count:  2997
  • Reputation:   1130
  • Joined:  05/27/12
  • Last Seen:  

bonus2 bSkillCooldown,sk,t;		Increases cooldown of skill sk by t milliseconds
Negative time -> reduces cooldown. Is that what you're looking for?
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  40
  • Topics Per Day:  0.01
  • Content Count:  587
  • Reputation:   104
  • Joined:  11/19/11
  • Last Seen:  

bonus2 bSkillCooldown,sk,t;		Increases cooldown of skill sk by t milliseconds
Negative time -> reduces cooldown. Is that what you're looking for?

 

I think she want to reduce not only cooldown but also  AfterCastActDelay

Link to comment
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.   Paste as plain text instead

  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.

×
×
  • Create New...