Larian Banner: Baldur's Gate Patch 9
Previous Thread
Next Thread
Print Thread
Joined: Dec 2025
W
stranger
OP Offline
stranger
W
Joined: Dec 2025
Hi all, I was too eager and entered Stormfist Castle before I received my invitation. Now that I am here officially and Janus wants me to find his white cat, I cannot. The cat spawning in the hallway before the kitchen will NOT trigger! I have tried walking in from different angles, closing and opening doors, retalking to people but nothing works.

Have I messed it up completely and need to restart the game? Or is there something I perhaps haven't thought of? I've put in 25 hours already so ideally I can salvage this. I do not have a save from before I entered stormfist castle the first time. Anythings helps!

Joined: Nov 2022
R
apprentice
Online Content
apprentice
R
Joined: Nov 2022
It's strange, there are no hidden conditions for meeting the cat in the script.
IF
NpcLeavesRegion(NPC_Hero, REGION_castle_arhu2)
AND
InRegion(NPC_Hero, REGION_castle_arhu1)
THEN
StartScene(7);

PROC
DoStartScene(7)
THEN
StartScriptFrame(NPC_Arhu, "Arhu castle run by");

IF
NpcSees(NPC_Hero, NPC_Arhu)
AND NOT
Triggered("Arhu meets Hero in castle")
THEN
Triggered("Arhu meets Hero in castle");
ShiftToNpc(NPC_Arhu);
LaunchTimer(ENGINE_GAME, "Arhu meet hero", 30);
LockStarted(4);

PROC
EndLock(4)
THEN
EndScene(7);
GoalCompleted;

IF
TimerFinished(ENGINE_GAME, "Arhu meet hero")
THEN
StartMonologue(ENGINE_GAME, "MONO_psst");

IF
MonologueEvent(ENGINE_GAME, "MONO_psst Ends")
THEN
SetAndStartDialog(NPC_Arhu, DIALOG_Arhu, 0);

IF
DialogEnds(DIALOG_Arhu, _, _)
THEN
ShiftToNpc(NPC_Hero);
EndScene(7);
GoalCompleted;

PROC
PROC_CompleteGoal("Arhu meet hero in castle")
THEN
GoalCompleted;
You've already been to the Dwarven Breath Inn and spoken to Wouter.


Moderated by  Larian_QA, Lar_q, Lynn, Macbeth 

Link Copied to Clipboard
Powered by UBB.threads™ PHP Forum Software 7.7.5