he quest is called: MAYadbaQuest
The following script is to be attached on a War Axe so when the players picks it up it updates the quest in the journal:
Two options the quest has already started (basically superior to 0) or the player has no clue about this quest but still stumble accross the Axe during his Skyrim exploration (quest < 0)
So is my script ok:
Scriptname YadbaWarAxe ObjectReference
Event OnActivate
if (MAYadaQuest < 0)
MAYadbaQuest.SetStage(5)
endif
MAYadbaQuest.SetStage(30)
EndEvent


