Amon_PRC8/_module/nss/meng_hasorbs.nss
Jaysyn904 c5cffc37af Initial Commit
Initial Commit [v1.01]
2025-04-03 19:00:46 -04:00

25 lines
715 B
Plaintext

//::///////////////////////////////////////////////
//:: 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;
}