RoT2_PRC8/_module/nss/asg_rul_micscfx.nss
Jaysyn904 499aba4eb3 Initial upload
Initial upload
2023-09-25 18:13:22 -04:00

25 lines
816 B
Plaintext

// Cleanup FX script for MICS.
void main()
{
object oTarget = OBJECT_SELF;
object oItem = GetLocalObject(oTarget,"ASG_BUILDITEM_ITEM");
object oFour = GetLocalObject(oTarget,"MICS_FX4");
object oThree = GetLocalObject(oTarget,"MICS_FX3");
object oTwo = GetLocalObject(oTarget,"MICS_FX2");
object oOne = GetLocalObject(oTarget,"MICS_FX1");
object oZero = GetLocalObject(oTarget,"MICS_FX0");
if (GetIsObjectValid(oFour)) DestroyObject(oFour);
if (GetIsObjectValid(oThree)) DestroyObject(oThree);
if (GetIsObjectValid(oTwo)) DestroyObject(oTwo);
if (GetIsObjectValid(oOne)) DestroyObject(oOne);
if (GetIsObjectValid(oZero)) DestroyObject(oZero);
if (GetIsObjectValid(oItem)) DeleteLocalObject(oTarget,"ASG_BUILDITEM_ITEM");
PlaySound("as_mg_frstmagic1");
}