Jump to content

Discussion: Changing Class/Race/Kit Restrictions with WeiDU


Andyr

Recommended Posts

The problem is that if someone has changed the file (BG1 Banter Pack, for example) your offset is going to be wrong.

You may have a point... If this goes in the fixpack or something though it'll happen first so everything will be ok. Just if a BG1 mod does something it might cause trouble.

Link to comment

I think the best way to remove journal entries would be by script. Most (in not all) quests set a global to indicate the quest is done. Simply EXTEND baldur.bcs with:

IF
  Global("QuestDone","Global",X)
  Global("EraseQuestJournalEntry","Global",0)
THEN
  RESPONSE #100
     EraseJournalEntry(blah)
     EraseJournalEntry(blah)
     EraseJournalEntry(blah)
     SetGlobal("EraseQuestJournalEntry","Global",1)
END

While you're at this can you stop rumours, from bartenders etc, being placed in your journal? This gets on my tits because the same entry is added again and again, and there is no check to see if the quest has been done or not.

Link to comment

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...