Help on Ankle Snare, Spider Web skill small changes

ThyroDree

New member
Messages
556
Points
0
Location
Philippines
Github
bosxkate23
Emulator
How can I make Charge Attack, Body Relocation,Back Sliding, Flying Side Kick, High Jump, Shadow Jump fail when they are trapped in Spider Web and Ankle Snare?

I tried on body relocation by adding this lines, The anklesnare skill fail when body reloacating works but the spider web skill fail wont work. I can still body reloc.

// Block skill usage while you have SC_SPIDERWEB AND ANKLESNARE status
if(sc && (sc->data[SC_SPIDERWEB] || sc->data[SC_ANKLESNARE]))
break;


Also How can i make the Spider Web works like Ankle snare trap by placing on floors not casting on player.

 
How can I make Charge Attack, Body Relocation,Back Sliding, Flying Side Kick, High Jump, Shadow Jump fail when they are trapped in Spider Web and Ankle Snare?

I tried on body relocation by adding this lines, The anklesnare skill fail when body reloacating works but the spider web skill fail wont work. I can still body reloc.

// Block skill usage while you have SC_SPIDERWEB AND ANKLESNARE status
if(sc && (sc->data[SC_SPIDERWEB] || sc->data[SC_ANKLESNARE]))
break;

// Block skill usage while you have SC_SPIDERWEB AND ANKLESNARE status
if(sc && (sc->data[SC_SPIDERWEB] || sc->data[SC_ANKLESNARE]))
break;


Also How can i make the Spider Web works like Ankle snare trap by placing on floors not casting on player.


need to place it at the top of the skill

and return 0;

 
Back
Top