23 lines
538 B
Plaintext
23 lines
538 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: FileName inancientmap
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Script Wizard
|
||
|
//:: Created On: 9/18/2002 12:13:46 PM
|
||
|
//:://////////////////////////////////////////////
|
||
|
#include "nw_i0_tool"
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
//Player has Skeleton Skull
|
||
|
if (GetIsObjectValid(GetItemPossessedBy(GetPCSpeaker(),"SkeletonSkull")))
|
||
|
{
|
||
|
return TRUE;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
return FALSE;
|
||
|
}
|
||
|
|
||
|
}
|