Amon_PRC8/_module/nss/meng_hasorbs.nss

25 lines
715 B
Plaintext
Raw Permalink Normal View History

2025-04-03 19:00:46 -04:00
//::///////////////////////////////////////////////
//:: FileName meng_hasorbs
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 2/22/2009 12:37:18 AM
//:://////////////////////////////////////////////
#include "nw_i0_tool"
int StartingConditional()
{
// Make sure the PC speaker has these items in their inventory
if(!HasItem(GetPCSpeaker(), "OrbBird"))
return FALSE;
if(!HasItem(GetPCSpeaker(), "OrbBoatRoom"))
return FALSE;
if(!HasItem(GetPCSpeaker(), "OrbLetter"))
return FALSE;
if(!HasItem(GetPCSpeaker(), "OkonatilOrb"))
return FALSE;
return TRUE;
}