Page 1 of 1

can't remove constant "journal entry" pop up

PostPosted: Wed Aug 19, 2009 9:01 am
by Heather Stewart
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.

can't remove constant "journal entry" pop up

PostPosted: Wed Aug 19, 2009 8:59 pm
by Davorah Katz
We'd need to see teh scripts you've modified in order to diagnose the problem.

can't remove constant "journal entry" pop up

PostPosted: Wed Aug 19, 2009 4:14 pm
by Vincent Joe
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


can't remove constant "journal entry" pop up

PostPosted: Wed Aug 19, 2009 7:17 pm
by Marie
thanks, i'll update my esp once i get a chance.