Get owner ID of an entity in OnEntitySpawned?Solved
Hi, 

I cant figure out a way to get the owner of a placed item such as a furnace when using OnEntitySpawned. Can someone help?
Have you tried casting it to BaseEntity, then using the field "BaseEntity.OwnerID"?
Off the top of my head, the game may be setting the OwnerID right after spawning it. If so, you would have to perform the check in a NextTick callback, or use a different hook that is called later, such as OnEntityBuilt.
5f542b9181eac.png 0x89A
Have you tried casting it to BaseEntity, then using the field "BaseEntity.OwnerID"?

Thanks, this worked

Locked automatically