19 lines
513 B
Plaintext
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());
|
|
}
|