summaryrefslogtreecommitdiff
path: root/npc/commands/mobinfo.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/commands/mobinfo.txt')
-rw-r--r--npc/commands/mobinfo.txt29
1 files changed, 0 insertions, 29 deletions
diff --git a/npc/commands/mobinfo.txt b/npc/commands/mobinfo.txt
deleted file mode 100644
index 691bfb68..00000000
--- a/npc/commands/mobinfo.txt
+++ /dev/null
@@ -1,29 +0,0 @@
-// The Mana World Script
-//
-// @monsterinfo <monsterAegis>
-// Sends @mobinfo with a delay (moved from atcommand.conf)
-// Requires EVOL_MONSTER_IDENTIFY
-//
-- script @monsterinfo 32767,{
- end;
-
-OnCall:
- // Check for skill level
- if (!getskilllv(EVOL_MONSTER_IDENTIFY))
- end;
-
- // ...
- if (@rsync_delay > gettimetick(2)) {
- dispbottom l("Not doing that to prevent flood.");
- end;
- }
-
- // Send @mobinfo and set a cooldown of 3 seconds.
- atcommand("@mobinfo " + implode(.@atcmd_parameters$, " "));
- @rsync_delay=gettimetick(2)+3;
- end;
-
-OnInit:
- bindatcmd "monsterinfo", "@monsterinfo::OnCall", 0, 60, 0;
- end;
-}