Look through your quest scripts and look for the ones that update the journal. They will have lines that looks similar to this:
AddJournalQuestEntry("Quest1", 10, oPC, FALSE, FALSE, FALSE);
The first "FALSE" in this funtion will most likely be set to "TRUE" in yours. If that is the case then just change it to "FALSE". If it is set to true then all party members' journals will be updated. If set to false then just the one player will have his journal updated. So it should look like this:
AddJournalQuestEntry("Quest1", 10, oPC,
TRUE, FALSE, FALSE);
Hope it helps. Good luck.
Modifié par GhostOfGod, 08 novembre 2010 - 04:01 .