Jump to content
  • 0

Instant Shadow Jump


Hercules

Question


  • Group:  Members
  • Topic Count:  39
  • Topics Per Day:  0.01
  • Content Count:  104
  • Reputation:   1
  • Joined:  05/04/12
  • Last Seen:  

I want to make my Shadow Jump skill to play instant.

Because when i hide+shadow jump.There is a delay between hiding and shadow jump.about a second before the ninja cast shadow jump after casting hiding.I already set the delay rate of my server to minimum on the skill.conf.

I play a before ragnarok that there is no delay in casting shadow jump.

The ninja there keeps shadow jumping very fast.

Please help.

Link to comment
Share on other sites

4 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  6
  • Topics Per Day:  0.00
  • Content Count:  90
  • Reputation:   12
  • Joined:  08/22/12
  • Last Seen:  

src/map/skill.c

Find

case NJ_SHADOWJUMP:

Just below that you'll see this

status_change_end(src, SC_HIDING, INVALID_TIMER);

just remove that last part and it should work fine.

Edited by Kyo
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  39
  • Topics Per Day:  0.01
  • Content Count:  104
  • Reputation:   1
  • Joined:  05/04/12
  • Last Seen:  

src/map/skill.c

Find

case NJ_SHADOWJUMP:

Just below that you'll see this

status_change_end(src, SC_HIDING, INVALID_TIMER);

just remove that last part and it should work fine.

what do you mean "LAST PART"?

please elaborate. /hmm

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  31
  • Topics Per Day:  0.01
  • Content Count:  666
  • Reputation:   93
  • Joined:  04/27/12
  • Last Seen:  

I think he means remove INVALID_TIMER so that it appears as such.

status_change_end(src, SC_HIDING);

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  17
  • Topics Per Day:  0.00
  • Content Count:  754
  • Reputation:   186
  • Joined:  05/22/12
  • Last Seen:  

I'm not sure if this is what you're saying..

status.c

 if (sc->option&OPTION_HIDE)
 switch (skill_num) { //Usable skills while hiding.
  case TF_HIDING:
  case AS_GRIMTOOTH:
  case RG_BACKSTAP:
  case RG_RAID:
-   case NJ_SHADOWJUMP:
  case NJ_KIRIKAGE:
  case KO_YAMIKUMO:
break;
  default:
//Non players can use all skills while hidden.
if (!skill_num || src->type == BL_PC)
 return 0;
 }

remove the

case NJ_SHADOWJUMP:

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...