I trying to make a Corpse Removal mod by myself. To reduce the mountains of corpses after IWS and etc. But i don't have any exp in writing scripts.( I find the way, how to check corpse dead-time, and mark it to delete. but don't know how to automaticly select a "dead" Actors in the area one after another, to check them out for delete. Now all what I have is:
if target.IsActor
if target.GetDead
if target.GetTimeDead > 24
Disable
markForDelete
endif
endif
endif
but iduno how to get this "target". T____T Please, Help.