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