Aantioch_Infernum/_module/nss/69_hench_inven.nss
EpicValor 07f4ebed49 Added henchman rental
Many areas, items, and creatures were adjusted for balance and aesthetics.
2023-08-24 15:20:50 -05:00

19 lines
513 B
Plaintext

//::///////////////////////////////////////////////////
//:: 69_HENCH_INVEN
//:: Opens the henchman's inventory for the player.
//:: Copyright (c) 2002 Floodgate Entertainment
//:: Created By: Naomi Novik
//:: Created On: 01/24/2003
//:: Modified: 69MEH69 Sep2004
//::///////////////////////////////////////////////////
void main()
{
if (GetLocalInt(OBJECT_SELF, "HenchInv") == FALSE) //69MEH69
{
SpeakStringByStrRef(9066);
}
else
OpenInventory(OBJECT_SELF, GetPCSpeaker());
}