26 lines
421 B
Plaintext
26 lines
421 B
Plaintext
void main()
|
|
{
|
|
|
|
object oPC = GetPCSpeaker();
|
|
|
|
AdjustAlignment(oPC, ALIGNMENT_EVIL, 100);
|
|
|
|
object oItem;
|
|
oItem = GetItemPossessedBy(oPC, "SCROLLOFEVIL");
|
|
|
|
if (GetIsObjectValid(oItem))
|
|
DestroyObject(oItem);
|
|
|
|
oItem = GetItemPossessedBy(oPC, "SCROLLOFNEUTRAL");
|
|
|
|
if (GetIsObjectValid(oItem))
|
|
DestroyObject(oItem);
|
|
|
|
oItem = GetItemPossessedBy(oPC, "HOLYSERUM");
|
|
|
|
if (GetIsObjectValid(oItem))
|
|
DestroyObject(oItem);
|
|
|
|
}
|
|
|