Jaysyn904 ee1dc35889 Initial Commit
Initial Commit
2025-04-03 10:29:41 -04:00

23 lines
590 B
Plaintext

//::///////////////////////////////////////////////
//:: FileName sc_051
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 4/5/2003 2:12:26 AM
//:://////////////////////////////////////////////
#include "nw_i0_tool"
int StartingConditional()
{
// Make sure the PC speaker has these items in their inventory
if(!HasItem(GetPCSpeaker(), "towersword"))
return FALSE;
// Inspect local variables
if(!(GetLocalInt(GetPCSpeaker(), "elfjoinedonce") == 0))
return FALSE;
return TRUE;
}