Jump to content

Auto remove all other clothing when main item (slot 32) removed


Recommended Posts

Posted

Is there a mod that automatically removes other clothing when the main item (slot 32) is removed? This would be really handy for Estrus and other similar mods that auto-remove the main items but miss others. The simplest version would remove everything but a better version would allow you to specify which slots to remove so rings etc could remain.

 

Alternately has anyone patched Estrus to be more generous in the items it auto-removes?

Posted

A mod like that could technically be made fairly quickly, making a quest with an player alias containing the following script:

Event OnObjectUnequipped(Form akBaseObject, ObjectReference akReference)
  Armor tmp = akBaseObject as Armor
  If(tmp)
    If(tmp.IsCuirass() == true)
      Game.GetPlayer().UnequipAll()
    EndIf
  EndIf
EndEvent

 

The hard part there now would be to make it work only in specific circumstances, which goes beyond my 5min of time I wanted to invest into this, my pardon

Posted

To answer the question, no Estrus isn't part of SL unfortunately and it hasn't been

 

Wow, Scrab looks like that a good chunk of the solution. Unfortunately I don't know how to finish it off. One thought would be can you detect when the player controls are disabled? Estrus disables the player controls and unequips slot 32 (and a few other slots but far from all). If the player is disabled and a mod is removing slot 32 the author probably should be removing all the clothing (but several don't). 

 

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...