summaryrefslogblamecommitdiff
path: root/world/map/npc/items/launcher_ammo.txt
blob: 1582f8a4da6b8bfc5aaafd0de37687e7223ca4a9 (plain) (tree)
1
2
3
4
5
6
7
8



                                                               

                                                                      
  
                                     




                                                               
                             
 

                                      


           
                         



                                                         
                            
                  

         

                         

           
// ------------------------------------------------------------
// 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;
}