15 lines
299 B
Plaintext
15 lines
299 B
Plaintext
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
object oPC = GetPCSpeaker();
|
||
|
|
||
|
if (GetItemPossessedBy(oPC, "MAGICRUNE") == OBJECT_INVALID) return FALSE;
|
||
|
|
||
|
if (GetItemPossessedBy(oPC, "HOLYRUNE") == OBJECT_INVALID) return FALSE;
|
||
|
|
||
|
if (GetItemPossessedBy(oPC, "BLADERUNE") == OBJECT_INVALID) return FALSE;
|
||
|
|
||
|
return TRUE;
|
||
|
}
|
||
|
|