Jump to content
  • 0
Nicko

WZ_WATERBALL change

Question

Hi rAthena!

I just need a small source change, but i really don't know how to do it.

I need that the class Expanded Super Novice, can use the skill WZ_WATERBALL without the water requeriments, but this change can't effect mages, that means:

*Expanded super novice, can use it without water.

*Mages need water for use it.

Thanks, so much for the help!

Kisses!

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

But it will remove the water requeriment for all classes.

I just wan't remove the requeriment for the Expanded super novice class.

Link to comment
Share on other sites

But it will remove the water requeriment for all classes.

I just wan't remove the requeriment for the Expanded super novice class.

try this

skill.c

   case ST_WATER:

+        if(sd->status.class_ == JOB_SUPER_NOVICE_E)
+            break;
       if (sc && (sc->data[sC_DELUGE] || sc->data[sC_SUITON]))
           break;
       if (map_getcell(sd->bl.m,sd->bl.x,sd->bl.y,CELL_CHKWATER))
           break;
       clif_skill_fail(sd,skill,USESKILL_FAIL_LEVEL,0);
       return 0;

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

Important Information

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