38 lines
736 B
Plaintext
38 lines
736 B
Plaintext
|
|
void main()
|
|
{
|
|
|
|
object oPC = GetEnteringObject();
|
|
|
|
if (!GetIsPC(oPC)) return;
|
|
|
|
if (GetItemPossessedBy(oPC, "sheelbasstone")== OBJECT_INVALID)
|
|
return;
|
|
|
|
if (!GetIsPC(oPC)) return;
|
|
|
|
if (GetItemPossessedBy(oPC, "eyesofsheelba")== OBJECT_INVALID)
|
|
return;
|
|
|
|
if (!GetIsPC(oPC)) return;
|
|
|
|
if (GetItemPossessedBy(oPC, "bloodredgem")== OBJECT_INVALID)
|
|
return;
|
|
|
|
if (!GetIsPC(oPC)) return;
|
|
|
|
if (GetItemPossessedBy(oPC, "golamulet")== OBJECT_INVALID)
|
|
return;
|
|
|
|
if (!GetIsPC(oPC)) return;
|
|
|
|
if (GetItemPossessedBy(oPC, "bgarricksnote")== OBJECT_INVALID)
|
|
return;
|
|
|
|
|
|
FloatingTextStringOnCreature("You hear a voice in your head - 'To the east, foolhardy one! Did the boy not deliver my message?'", oPC, FALSE);
|
|
|
|
DestroyObject(OBJECT_SELF);
|
|
|
|
}
|