Rune_PRC8/_module/nss/opw_ondeath_sit.nss
Jaysyn904 d1c309ae63 Initial commit
Initial commit
2024-09-13 09:10:39 -04:00

23 lines
556 B
Plaintext

////////////////////////////////////////////////////////////////////////////////
// Olander's Sit On Chair
// opw_ondeath_sit
// By Don Anderson
// dandersonru@msn.com
//
// Place this script in the Placeable OnDeath Event
//
// Thanks to: Jacob Holcomb
//
////////////////////////////////////////////////////////////////////////////////
void main()
{
object oChair = OBJECT_SELF;
if(GetIsObjectValid(oChair))
{
object oSurf = GetLocalObject( oChair, "SIT_SURF");
if(GetIsObjectValid(oSurf)) DestroyObject( oSurf );
}
}