I selected the altar of talos (Located at WeynonStones01 in Tamriel) and then clicked the triggerbox button. A box dutifully appeared bound around the altar. Then I edited it to be player activatable, and then wrote a script for it. (Not the base, on the specific instance. That's what the Mehrune's dagon altar did.) Here's the script.
Scriptname AltarActivator extends ObjectReferenceObjectReference Property Altar Auto Quest Property TBJ01 Auto MiscObject Property Butterfly Auto MiscObject Property Bee Auto MiscObject Property DragonFly Auto MiscObject Property Torchbug Auto MiscObject Property Moth Auto event OnActivate(ObjectReference akReference) if (Game.Getplayer().getItemCount(Bee)==1 && Game.Getplayer().getItemCount(Butterfly)==1 && Game.Getplayer().getItemCount(Dragonfly)==1 && Game.Getplayer().getItemCount(Moth)==1 && Game.Getplayer().getItemCount(Torchbug)==1 && akReference==Game.Getplayer()) TBJ01.SetStage(60) ;if akReference==Game.GetPlayer()AltarButterfly.enable()AltarDragonfly.enable()AltarMoth.enable()AltarTorchbug.enable()Altarbee.enable() endifendEventObjectReference Property AltarBee Auto ObjectReference Property AltarMoth Auto ObjectReference Property AltarButterfly Auto ObjectReference Property AltarDragonfly Auto ObjectReference Property AltarTorchbug Auto
It compiles perfectly fine, and seems like it should work. I'm testing it by having given myself a copy of each jar. Trouble is, I don't get the Activate button to show up. (Actually I'm using an override so that it says Place Jars, but in any case) This is pretty troubling. I've looked and looked and cannot find a salient difference between what I did and what the folks at gamesas did for the Mehrune's Dagon quest.
Can anyone enlighten me?
