Jump to content
  • 0

Spear Quicken ASPD


geoffreypogi

Question


  • Group:  Members
  • Topic Count:  18
  • Topics Per Day:  0.01
  • Content Count:  71
  • Reputation:   0
  • Joined:  05/13/16
  • Last Seen:  

Hi guys! 

Can you help me editing the ASPD for 1 handed spear when using Spear Quicken? Please guide me where can I edit it and what should I be putting on it. Thanks! Btw, I'm using pre renewal but activated spear quicken for 1 handed spear. I just want to reduce ASPD for 1 handed spears not 2 handed. Thanks again!

Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • 0

  • Group:  Developer
  • Topic Count:  33
  • Topics Per Day:  0.01
  • Content Count:  790
  • Reputation:   225
  • Joined:  01/30/13
  • Last Seen:  

You can define the boost of SPEARQUICKEN in status.c for pre-renewal:

#ifndef RENEWAL_ASPD
		case SC_SPEARQUICKEN:
			val2 = 200+10*val1;
			break;
#endif

There's no easy way to make it work differently depending on weapon type, though.

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  8
  • Topics Per Day:  0.00
  • Content Count:  354
  • Reputation:   108
  • Joined:  01/30/13
  • Last Seen:  

Check renewal spear quicken weapon condition.

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  18
  • Topics Per Day:  0.01
  • Content Count:  71
  • Reputation:   0
  • Joined:  05/13/16
  • Last Seen:  

I'm sorry sir. What I'm trying to do is mentioned above. I know that the renewal system has it. as I have mentioned, I'm using pre-renewal and I'm trying to edit it on my pre-renewal SRC. Can you guide me where to find it and where to edit it. 

I can't figure out where to edit the ASPD of the spear quicken in pre-renewal. and if possible, I want to create a spear quicken code for 1-handed spear which is only 15% ASPD... or less

 

 

Edited by geoffreypogi
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  18
  • Topics Per Day:  0.01
  • Content Count:  71
  • Reputation:   0
  • Joined:  05/13/16
  • Last Seen:  

On 4/26/2017 at 4:08 AM, Playtester said:

You can define the boost of SPEARQUICKEN in status.c for pre-renewal:


#ifndef RENEWAL_ASPD
		case SC_SPEARQUICKEN:
			val2 = 200+10*val1;
			break;
#endif

There's no easy way to make it work differently depending on weapon type, though.

Hi,

if I'm correct, 200 means 20% and 10*Val1 means the skill level? And, #ifndef RENEWAL_ASPD, does it only indicate for renewal system or does it include pre renewal?

Thanks for your reply.

Edited by geoffreypogi
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  18
  • Topics Per Day:  0.01
  • Content Count:  71
  • Reputation:   0
  • Joined:  05/13/16
  • Last Seen:  

Hmm, so you mean the only way is to create a new skill for 1 hand spear quicken instead of changing the value for spear quicken itself (for 2 handed). 

Link to comment
Share on other sites

  • 0

  • Group:  Developer
  • Topic Count:  33
  • Topics Per Day:  0.01
  • Content Count:  790
  • Reputation:   225
  • Joined:  01/30/13
  • Last Seen:  

"ifndef" stands for "if NOT defined", so that actually means this code part is for pre-renewal only. Otherwise I wouldn't have quoted it. :-)

200 = 20%

val1 is the skil level

 

Theoretically you could check for weapon type equipped and set val2 to a different value depending on that, but it will probably cause the issue that someone could equip a two-handed spear, then cast the skill and then equip a one-handed spear to still get a larger boost. Anything beyond that might be a bit more work to code so I can't do it for you with my limited time.

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  18
  • Topics Per Day:  0.01
  • Content Count:  71
  • Reputation:   0
  • Joined:  05/13/16
  • Last Seen:  

no worries. Thanks for your reply. I made another skill just for a 1 hand quicken, same as the 1 hand spear quicken, needs to have a soul link. ^_^ thanks again.

Edited by geoffreypogi
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...