FYI the campfires are under Moveable Static -> Clutter. With Campfire01Burning being the main one I want to reference in my script. Here's my script just so you can see the direction I'm thinking with XXXXXX being the part I need to figure out.
Scriptname BK_FireScript extends ObjectReference {Drops an object that when Activated makes a fire.Hitting the fire removes it.}XXXXXX Property BK_CampingFireREF AutoObjectReference Fireint FireSpawnedEvent OnActivate(ObjectReference akActionRef)if FireSpawned == 0 Debug.Notification("Starting the Fire") Fire = Game.GetPlayer().PlaceAtMe(BK_CampingFireREF) Fire.SetAngle(0, 0, 0) FireSpawned = 1elseif FireSpawned == 1 Debug.Notification("Putting out the Fire.") FireSpawned = 0 Fire.Disable() Fire.Delete()endifEndEventIt's not an ObjectReference (well when I link it to one I placed in a cell it doesnt work anyways)
It's not under Static. Only the extinguished fires show up on that list.
I've tried just going through the list on the Properties page and trying a bunch of different ones but no go so far.
Any help would be appreciated

