Jump to content
  • 0
Sign in to follow this  
zack

Skill Trace NPC

Question

Hi there. im thinking how to trace skill?

because im making PVP ROOM no assumption i dont use dispell all.. only assumption when enter. and yes you can use assump inside only warper block you for assumption

 

 

map,x,y,0    script    PVP Room    123,{

if(******************) { // This line check you when you are using Assumption Skill

mes "Sorry you cant enter on this room while you have assumption buff";

close;

}

.............

.............

............

 

Thank you

Share this post


Link to post
Share on other sites

2 answers to this question

Recommended Posts

  • 0

*Assumptio

 

You don't need to trace the skill, trace status change (everything that has an icon appearing on the right of screen is a status change)

Actually, if you don't want some buff just dispel it on entrance:

 

sc_end SC_ASSUMPTIO; //If person has assumptio buff it will be dispelled.

If you really want to check if assumptio is on, you can use this check (note that it's not needed in the above case):

if( getstatus(SC_ASSUMPTIO) ) {//code}
Edited by Garr

Share this post


Link to post
Share on other sites
  • 0

Maybe you're looking for something like this ? 

http://www.eathena.ws/board/index.php?showtopic=274088&start=0&p=1503318entry1503318

 

But this won't allow you to alter the behaviour of the skill, for that you'll require different source edits.

 

What Garr said is what you're really looking for.

Edited by Smokexyz

Share this post


Link to post
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.   Restore formatting

  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.

Loading...
Sign in to follow this  

×
×
  • Create New...

Important Information

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