blob: 3b0b21f86f322953cd757ac373f5938d1cc9aff7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
// ------------------------------------------------------------
// Ammo Needs to know Launcher and vice versa.
//
// Behavior:
// Ammo is always unequipped
//
// Variables passed to this script:
//
// @LauncherType, @AmmoType
//
// ------------------------------------------------------------
function|script|CheckLauncher|,
{
set @AmmoEquip, (getequipid(equip_arrow) + 1);
if (@AmmoEquip)
goto L_Return;
L_NoAmmoEquip:
set @LauncherType, 0;
L_Return:
return;
}
function|script|CheckAmmo|,
{
if ((@LauncherType == @AmmoType) || (!@LauncherType))
goto L_Return;
L_Unequip:
callfunc "UnequipLater";
L_Return:
return;
}
|