If you try to subscribe to a creature’s fort_character EliminatedEvent, the function that is listening for that event will never fire when the creature has been eliminated
Steps to Reproduce
Set up a creature placer device in verse
Subscribe to the SpawnedEvent on the creature placer and create a function that subscribes that creature to the EliminatedEvent in it’s fort_character
Spawn in a creature and kill it with a weapon
Expected Result
When the creature dies, the function that is listening for its EliminatedEvent fires
Observed Result
The function that is listening to the creature’s EliminatedEvent never fires
Creatures are not fort characters. Directly subscribe to the spawner device Eliminated event, then you should be able to get the source and target from the device_ai_interaction_result.
Incorrect, creatures do have the fort_character interface. I did not realize that the spawner itself gave the device_ai_interaction_result though so I appreciate that info.