Skip to content

Stuck on Cutscene in Windspear

Hey everyone. I'm new to the forums, but recently I went through and saved Iltha. When I get back to the cabin to turn the quest in, I'm just stuck in a cutscene and nothing happens at all. It looks like Garren isn't even in the room to turn it in. I've noticed that ever since I left the dungeon, Jum follows me around, but he never instigates conversation.

Should I just skip turning this quest in and move on? Or is there something I can do to turn this puppy in?

I won't be back for several hours to check up on this, but I'll look as soon as I make it back.

Thanks in advance.

Comments

  • bardezbardez Member Posts: 41
    edited November 2013
    I also have this problem. I'm playing a lawful evil group and told Garren to back off, went back to Athkatla and was attacked by the knights. I then returned to speak with Garren. I entered and Iltha auto-spoke to me, and the scene takes place as normal. I killed the orcs, and then a cutscene starts, but nothing happens and it never ends.

    My quicksave right before my entrance and the cutscene are attached.
  • bardezbardez Member Posts: 41
    Informationally, it looks like this block of Garren's script never executed (correctly), though the conditions should be valid.

    IF
    Global("FollowGarren","GLOBAL",1)
    Global("DomainAlreadyTeleported","LOCALS",0)
    Global("Kidnap","GLOBAL",0)
    THEN
    RESPONSE #100
    SetGlobal("DomainAlreadyTeleported","LOCALS",1)
    EscapeAreaMove("ar1204",422,430,0)
    END

    instead Garren is hiding in the trees in AR1200, in my save above at (794, 1068). He has a DOMAONALREADYTELEPORTED variable effect set, so it looks like EscapeAreaMove just never really worked.

    I believe I may have saved right after the conversation with Garren; could that have interrupted something?
  • bardezbardez Member Posts: 41
    Final note:

    CLUA creating Garren in AR1204 behaved oddly and did not work for me. I took the above script block in AR1200 and replaced the following condition:

    Global("DomainAlreadyTeleported","LOCALS",0)

    with

    !AreaCheck("ar1204")

    I entered Garren's home and Garren was in his house and the cutscenes proceeded naturally.
Sign In or Register to comment.