23 lines
543 B
Plaintext
23 lines
543 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: FileName demonacremains
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Script Wizard
|
||
|
//:: Created On: 9/24/2002 1:32:02 PM
|
||
|
//:://////////////////////////////////////////////
|
||
|
#include "nw_i0_tool"
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
//Player has Demoniac Remains
|
||
|
if (GetIsObjectValid(GetItemPossessedBy(GetPCSpeaker(),"DemoniacRemains")))
|
||
|
{
|
||
|
return TRUE;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
return FALSE;
|
||
|
}
|
||
|
|
||
|
}
|