Jump to content
  • 0
darking123

need help about tarot skill

Question

i want to remove the skill that teleports the enemy when they are using tarot on it thank you

Edited by glemor123
Link to comment
Share on other sites

6 answers to this question

Recommended Posts

actually

the teleport under tarot card of fate = teleport + heal 2000hp

under skill.c

find: case 5: // 2000HP heal, random teleported

   case 5: // 2000HP heal, random teleported
 status_heal(src, 2000, 0, 0);
 if( !map_flag_vs(bl->m) )
  unit_warp(bl, -1,-1,-1, CLR_TELEPORT);
 break;

commented that line (//) or remove it

then above that

change 14 in this line

eff = rnd() % 14;

to 13

Link to comment
Share on other sites

sir keikun

i do not know what to edit here to remove this teleport skill

can you help me

   case 4: // atk halved
 sc_start(bl,SC_INCATKRATE,100,-50,skill_get_time2(skillid,skilllv));
 break;
   case 5: // 2000HP heal, random teleported
 status_heal(src, 2000, 0, 0);
 if( !map_flag_vs(bl->m) )
  unit_warp(bl, -1,-1,-1, CLR_TELEPORT);
 break;
   case 6: // random 2 other effects
 if (count == -1)
  count = 3;
 else
  count++; //Should not retrigger this one.
 break;

BUMP!

Link to comment
Share on other sites

if i add comment..i think the case # will be affected

also i dont get this

change 14 in this line

eff = rnd() % 14;

to 13

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.