diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/functions/hub.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/npc/functions/hub.txt b/npc/functions/hub.txt index b9817f18a..f5e1b205e 100644 --- a/npc/functions/hub.txt +++ b/npc/functions/hub.txt @@ -397,6 +397,12 @@ function script HUB_SkillInvoke { sleep2(100); } break; + case TMW2_AVOID: + .@t = 44 - (@skillLv * 4); + .@p = 105+(@skillLv * 5); + SC_Bonus(.@t, SC_WALKSPEED, .@p); + sc_start SC_WALKSPEED, .@t * 1000, .@p, 10000, SCFLAG_NOAVOID, @skillCaster; + break; } return; } |