23 lines
551 B
Plaintext
23 lines
551 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName chk_rune4
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 9/30/2002 9:58:44 PM
|
|
//:://////////////////////////////////////////////
|
|
#include "nw_i0_tool"
|
|
|
|
int StartingConditional()
|
|
{
|
|
//Player has Rune of the Four Circles
|
|
if (GetIsObjectValid(GetItemPossessedBy(GetPCSpeaker(),"RuneoftheFourCircles")))
|
|
{
|
|
return TRUE;
|
|
}
|
|
else
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
}
|