Jump to content
  • 0

Instant Shadow Jump


Question

Posted

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.

4 answers to this question

Recommended Posts

Posted (edited)

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
Posted

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

Posted

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:

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.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...