Initial upload
Initial upload
This commit is contained in:
25
_module/nss/cb_neutral.nss
Normal file
25
_module/nss/cb_neutral.nss
Normal file
@@ -0,0 +1,25 @@
|
||||
void main()
|
||||
{
|
||||
|
||||
object oPC = GetPCSpeaker();
|
||||
|
||||
AdjustAlignment(oPC, ALIGNMENT_NEUTRAL, 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