summaryrefslogtreecommitdiff
path: root/npc/items/launcher_ammo.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/items/launcher_ammo.txt')
-rwxr-xr-xnpc/items/launcher_ammo.txt19
1 files changed, 19 insertions, 0 deletions
diff --git a/npc/items/launcher_ammo.txt b/npc/items/launcher_ammo.txt
new file mode 100755
index 00000000..4c84e950
--- /dev/null
+++ b/npc/items/launcher_ammo.txt
@@ -0,0 +1,19 @@
+
+function script CheckLauncher {
+ if (getequipid(equip_arrow) == -1)
+ @LauncherType = 0;
+ return;
+}
+
+function script CheckAmmo {
+ if ((@LauncherType == @AmmoType) || (!@LauncherType))
+ goto L_Return;
+
+ callfunc "UnequipLater";
+ goto L_Return;
+
+L_Return:
+ @LauncherType = 0;
+ @AmmoType = 0;
+ return;
+}