2024-06-20 15:47:42 -04:00

27 lines
712 B
Plaintext

//::///////////////////////////////////////////////
//:: FileName gottoken
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 5/25/2004 10:06:41 PM
//:://////////////////////////////////////////////
#include "nw_i0_tool"
int StartingConditional()
{
//Eat meat first
object oPC = GetPCSpeaker();
object oItem;
oItem = GetItemPossessedBy(oPC, "NW_IT_MMIDMISC05");
if (GetIsObjectValid(oItem))
DestroyObject(oItem);
// Make sure the PC speaker has these items in their inventory
if(!HasItem(GetPCSpeaker(), "TheGreatBearsToken"))
return FALSE;
return TRUE;
}