Tiviel Posted January 15, 2024 Posted January 15, 2024 Hello, In the "Gain the services of Sir Sarles for the temple" quest Jerlia can give us fake illithium ore (as well as real one). There are couple of dialog options that can get us fake ore. One is during dialog where we ask for her illithium source, and another in new conversation after learning about her source. The issue is in this second scenario, where she doesn't give the player dialog about fake ore. I believe the cause is the trigger change made by fixpack: https://github.com/Gibberlings3/BG2-Fixpack/blob/6679746f7ee53ec5a4f094c0fcb4292c4fe4bd91/bg2fixpack/compile/soa-dlg.d#L2127 // shouldn't be able to ask jerlia about ore if you've already given sarles real/fake ore ADD_STATE_TRIGGER SCJERLIA 38 ~OR(2) Global("SarlesPissed","GLOBAL",1) GlobalGT("SculptorPlot","GLOBAL",3)~ This prevents the dialog from triggering BEFORE we hand over the real ore. GlobalGT("SculptorPlot","GLOBAL",3) means we already handed the ore and progressed the quest. I think the logic there should be inverted to something like GlobalLT("SculptorPlot","GLOBAL",4). Quote
Recommended Posts
Join the conversation
You are posting as a guest. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.