16 lines
254 B
Plaintext
16 lines
254 B
Plaintext
|
|
void main()
|
|
{
|
|
|
|
object oPC = GetEnteringObject();
|
|
|
|
if (!GetIsPC(oPC)) return;
|
|
|
|
if (GetItemPossessedBy(oPC, "towerofangarngit")== OBJECT_INVALID)
|
|
return;
|
|
|
|
FloatingTextStringOnCreature("The Eye of the Leviathan is making you feel.. strange.", oPC);
|
|
|
|
}
|
|
|