Initial upload
Initial upload
This commit is contained in:
24
_module/nss/cb_good.nss
Normal file
24
_module/nss/cb_good.nss
Normal file
@@ -0,0 +1,24 @@
|
||||
void main()
|
||||
{
|
||||
|
||||
object oPC = GetPCSpeaker();
|
||||
|
||||
AdjustAlignment(oPC, ALIGNMENT_GOOD, 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);
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user