Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
kilverStarting the romance
#7
So the progression, AFAICT, is this:



  1. When Yoshimo joins, he sets a five-day timer: YoshimoTalksPC
  2. When that timer expires, his script prompts a banter. From the script block it's supposed to be the BYoshimo3 one that starts with "Tell me, how did you get into adventuring?"
  3. The variables PCYosh and BYoshimo3 are set to 1 after that talk.
  4. BYoshimo4 ("Tell me, where did you spend your childhood?") is the next banter in the sequence triggered by Yoshimo's script if PCYosh=1 and if the YoshimoTalksPC2 timer is expired. Unfortunately this timer never gets set, so I don't think this banter can actually fire.
  5. If BYoshimo4 could fire successfully, it would reset the YoshimoTalksPC2 timer to ten days and set BYoshimo4 to 1. If you answer all of Yoshimo's questions it will also set PCYosh to 2. 
  6. Despite BYoshimo4 resetting the YoshimoTalksPC2 timer, it's never used again.
  7. BYoshimo5 ("I have pondered what you have said about Bhaal.") is, AFAICT, a completely random banter and not prompted at all. It does require PCYosh=2 so if you cut Yoshimo's questions short in the previous banter this one will never fire.
Right, so there are a couple of bugs to address in the base game's sequencing:

  • BYoshimo3 needs to set the YoshimoTalksPC2 timer at its conclusion so that BYoshimo4 will fire.
  • Yoshimo's script should probably have a trigger, based on PCYosh=2 and an expired YoshimoTalksPC2 timer, to prompt the BYoshimo5 banter.


Both of these should be fixed in the future by BG2 Fixpack/EEs, but a local fix is easy enough in the meantime.



For a workaround for your game in progress: at the console, use

Code:
CLUAConsole:SetGlobal("YoshimoTalksPC2","GLOBAL",1)

to force the YoshimoTalksPC2 to expire. This should prompt the BYoshimo4 banter. Since BYpshimo5 is random, it's a bit harder to prompt especially since you seem to be on oBG2. You could try to enable the cheatkeys and then try CTRL-I to try and force the banter.
  


Messages In This Thread
Starting the romance - by kilver - 03-11-2022, 12:24 PM
RE: Starting the romance - by Lava - 03-11-2022, 12:46 PM
RE: Starting the romance - by kilver - 03-11-2022, 01:15 PM
RE: Starting the romance - by Lava - 03-11-2022, 01:27 PM
RE: Starting the romance - by kilver - 03-11-2022, 01:49 PM
RE: Starting the romance - by Lava - 03-11-2022, 03:50 PM
RE: Starting the romance - by Lava - 03-11-2022, 03:12 PM
RE: Starting the romance - by CamDawg - 03-11-2022, 03:33 PM
RE: Starting the romance - by kilver - 03-11-2022, 03:53 PM
RE: Starting the romance - by Lava - 03-11-2022, 04:07 PM
RE: Starting the romance - by kilver - 03-11-2022, 06:20 PM
RE: Starting the romance - by Lava - 03-11-2022, 06:32 PM

Forum Jump:


Users browsing this thread:
1 Guest(s)

Starting the romance00