Clear out experimental .35 files

Clear out experimental .35 files
This commit is contained in:
Jaysyn904
2024-02-11 13:04:14 -05:00
parent 2112b92e24
commit 618cd42b82
22356 changed files with 0 additions and 1248956 deletions

View File

@@ -1,39 +0,0 @@
// NPC ONLY
// SMP_1_NPCDestroy
// Destroys themselves (the body) if dead, thier inventory is copied to the ground
// where they lay.
void main()
{
// Debug
if(!GetIsDead(OBJECT_SELF)) return;
// Declare, and stop
location lSelf = GetLocation(OBJECT_SELF);
ClearAllActions();
// Make sure we don't disappear just yet
SetIsDestroyable(FALSE, FALSE, FALSE);
// Apply cutseen invisibility
ApplyEffectToObject(DURATION_TYPE_PERMANENT, EffectCutsceneGhost(), OBJECT_SELF);
ApplyEffectToObject(DURATION_TYPE_PERMANENT, EffectVisualEffect(VFX_DUR_CUTSCENE_INVISIBILITY), OBJECT_SELF);
// Copy inventory
object oToCopy = GetFirstItemInInventory();
while(GetIsObjectValid(oToCopy))
{
// Droppable?
if(GetDroppableFlag(oToCopy))
{
// + Copy vars, when copied across.
CopyItem(oToCopy, OBJECT_INVALID, TRUE);
}
oToCopy = GetNextItemInInventory();
}
// Re-destroyable
SetIsDestroyable(TRUE, FALSE, FALSE);
// Destroy self
DelayCommand(0.0, DestroyObject(oToCopy));
}