Initial upload
Initial upload
This commit is contained in:
23
_module/nss/cb_rune1.nss
Normal file
23
_module/nss/cb_rune1.nss
Normal file
@@ -0,0 +1,23 @@
|
||||
void main()
|
||||
{
|
||||
|
||||
object oPC = GetPCSpeaker();
|
||||
|
||||
object oItem;
|
||||
oItem = GetItemPossessedBy(oPC, "BLADERUNE");
|
||||
|
||||
if (GetIsObjectValid(oItem))
|
||||
DestroyObject(oItem);
|
||||
|
||||
oItem = GetItemPossessedBy(oPC, "MAGICRUNE");
|
||||
|
||||
if (GetIsObjectValid(oItem))
|
||||
DestroyObject(oItem);
|
||||
|
||||
oItem = GetItemPossessedBy(oPC, "HOLYRUNE");
|
||||
|
||||
if (GetIsObjectValid(oItem))
|
||||
DestroyObject(oItem);
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user