27 lines
616 B
Plaintext
27 lines
616 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName element_ck_gems1
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 22/11/2003 22:24:09
|
|
//:://////////////////////////////////////////////
|
|
#include "nw_i0_plot"
|
|
|
|
int StartingConditional()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
|
|
|
|
if(HasItem(oPC, "airgem") &&
|
|
HasItem(oPC, "earthgem") &&
|
|
HasItem(oPC, "firegem") &&
|
|
HasItem(oPC, "watergem"))
|
|
{
|
|
return TRUE;
|
|
}
|
|
else
|
|
{
|
|
return FALSE;
|
|
}
|
|
}
|