diff options
Diffstat (limited to 'world/map/npc')
-rw-r--r-- | world/map/npc/functions/hug.txt | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/world/map/npc/functions/hug.txt b/world/map/npc/functions/hug.txt index d8fc81df..f1bd2637 100644 --- a/world/map/npc/functions/hug.txt +++ b/world/map/npc/functions/hug.txt @@ -6,7 +6,9 @@ if (.@name$[0] == "Tree" || .@name$[0] == "tree") set @target_id, .tree_id; set .@range, if_then_else(@target_id == .tree_id, 3, 6); if (distance(BL_ID, @target_id) >= .@range) end; + if (gettimetick(2) - @hugspell_time < 3) end; + set @hugspell_time, gettimetick(2); misceffect FX_HUG, strcharinfo(0); if (@target_id != BL_ID) misceffect FX_HUG, @target_id; @@ -16,11 +18,6 @@ OnInit: set .tree_id, getnpcid("#DruidTree0#_M"); - registercmd "hug", strnpcinfo(0); - registercmd "*hug", strnpcinfo(0); - registercmd "*hug*", strnpcinfo(0); - registercmd "hugs", strnpcinfo(0); registercmd "*hugs", strnpcinfo(0); - registercmd "*hugs*", strnpcinfo(0); end; } |