So I've finally got my keening mod together, however whenever the keening is changed, the game tell me the journal entry has been updated. is there any way to remove this from happening every time the player changes keening? I have no experience with the journal editor so any help is appreciated.
Make a do once conditional that gets set to 1 the first time Keening is equipped:
short doOnceshort OnPCEquip ;this should already be declared by the Keening scriptif ( OnPCEquip == 1 ) if ( doOnce == 0 ) Journal ;should already be set by the Keening script. set doOnce to 1 set OnPCEquip to 0 endifendif