summaryrefslogtreecommitdiff
path: root/world/map/npc/items/launcher_ammo.txt
blob: 1582f8a4da6b8bfc5aaafd0de37687e7223ca4a9 (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
// ------------------------------------------------------------
// Ammo Needs to know Launcher and vice versa.
//
// Behavior:
//  - If only one is equipped, do nothing
//  - If incompatible launcher and ammo are equipped, unequip the ammo
//
// Variables passed to these scripts:
//
// @LauncherType, @AmmoType
//
// ------------------------------------------------------------

function|script|CheckLauncher
{
    if (getequipid(equip_arrow) == -1)
        set @LauncherType, 0;
    return;
}

function|script|CheckAmmo
{
    if ((@LauncherType == @AmmoType) || (!@LauncherType))
        goto L_Return;

    callfunc "UnequipLater";
    goto L_Return;

L_Return:
    set @LauncherType, 0;
    set @AmmoType, 0;
    return;
}