23 lines
552 B
Plaintext
23 lines
552 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName checkstaffstars
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 10/9/2002 2:31:59 PM
|
|
//:://////////////////////////////////////////////
|
|
#include "nw_i0_tool"
|
|
|
|
int StartingConditional()
|
|
{
|
|
//Player has Broken Staff of Stars
|
|
if (GetIsObjectValid(GetItemPossessedBy(GetPCSpeaker(),"BrokenStaffofStars")))
|
|
{
|
|
return TRUE;
|
|
}
|
|
else
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
}
|