Skill Trace NPC

zack

New member
Messages
7
Points
0
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

 
*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):

Code:
if( getstatus(SC_ASSUMPTIO) ) {//code}
 
Last edited by a moderator:
Back
Top