Have a quick question? Need a quick answer? If you have not had any luck with the http://www.creationkit.com/Main_Page, post away and hopefully someone will have the answer(s) you seek.
Formlist Property HISCarcassFLST autoActor Property PlayerREF autoKeyword Property ActorTypeAnimal autoKeyword Property ActorTypeCreature autoEvent OnInit() isSKSELoaded()EndEventEvent OnPlayerLoadGame() isSKSELoaded()EndEventbool function isSKSELoaded() if (SKSE.GetVersion()) return True AddInventoryEventFilter(HISCarcassFLST) Debug.Notification("SKSE Loaded. Hunting in Skyrim SKSE features enabled.") else return False endifendfunctionEvent OnItemAdded(Form akBaseItem, int aiItemCount, ObjectReference akItemReference, ObjectReference akSourceContainer) if HISCarcassFLST.HasForm(akBaseItem) if akSourceContainer.HasKeyWord(ActorTypeAnimal) || akSourceContainer.HasKeyWord(ActorTypeCreature) Input.TapKey(Input.GetMappedKey("Tween Menu")) endif endifendEvent