UW2_PRC8/_module/nss/chestdestroyer.nss

15 lines
193 B
Plaintext
Raw Permalink Normal View History

2023-09-25 20:24:01 -04:00
//Put this script OnOpen
void main()
{
object oPC = GetLastOpenedBy();
if (!GetIsPC(oPC)) return;
object oTarget;
oTarget = OBJECT_SELF;
DelayCommand(80.0, DestroyObject(oTarget, 0.0));
}