Rune_PRC8/_module/nss/opw_ondeath_sit.nss

23 lines
556 B
Plaintext
Raw Normal View History

2024-09-13 09:10:39 -04:00
////////////////////////////////////////////////////////////////////////////////
// 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 );
}
}