summaryrefslogtreecommitdiff
path: root/npc/commands/hug.txt
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-04-10 03:00:20 -0300
committerJesusaves <cpntb1@ymail.com>2021-04-10 03:00:20 -0300
commitba1e827b6b4c17c35a163e6b55be8c122de632b8 (patch)
tree819f93d0ffee3697e336471710afb9681f0b8d86 /npc/commands/hug.txt
parent6e7f3113c0faad9edd4367d100ba9dd77e8d3130 (diff)
downloadserverdata-ba1e827b6b4c17c35a163e6b55be8c122de632b8.tar.gz
serverdata-ba1e827b6b4c17c35a163e6b55be8c122de632b8.tar.bz2
serverdata-ba1e827b6b4c17c35a163e6b55be8c122de632b8.tar.xz
serverdata-ba1e827b6b4c17c35a163e6b55be8c122de632b8.zip
Add several convenience functions. Fix some bugs regarding misuse of readparam()
Diffstat (limited to 'npc/commands/hug.txt')
-rwxr-xr-xnpc/commands/hug.txt24
1 files changed, 0 insertions, 24 deletions
diff --git a/npc/commands/hug.txt b/npc/commands/hug.txt
deleted file mode 100755
index 4f7c086d..00000000
--- a/npc/commands/hug.txt
+++ /dev/null
@@ -1,24 +0,0 @@
-- script nonmagic-hug NPC32767,{
- explode .@name$[0], @args$, "*"; // strip the trailing *
- @target_id = if_then_else(.@name$[0] != "", getcharid(3, .@name$[0]), BL_ID);
- if (@target_id < 1 || !(isloggedin(@target_id))) set @target_id, BL_ID; // fallback to self
- if (.@name$[0] == "Tree" || .@name$[0] == "tree") set @target_id, .tree_id;
- .@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;
-
- @hugspell_time = gettimetick(2);
- misceffect FX_HUG, strcharinfo(0);
- if (@target_id != BL_ID) misceffect FX_HUG, @target_id;
-
- if (@target_id != .tree_id) end;
- @flag = 2;
- callfunc "QuestTreeTrigger";
- close;
-
-OnInit:
- .tree_id = getnpcid("#DruidTree0#_M");
- registercmd "*hugs", strnpcinfo(0); // eq: /me hugs (target)
- registercmd "*hugs*", strnpcinfo(0); // eq: /me hugs
- end;
-}