Skip to content

Captain Brage, can't pick up his body or w/e you are supposed to do?

Hey!

I'm at the Captain Brage quest and I killed him. Then I wen't to Nashkel to collect my reward but could not since you apperently must bring his head there. But there was no such option to pick up his head after I killed him. I could only pick up his sword and armor.

Now that I went back to the place where I killed him I can not find his body anymore!?!?!?

What to do now?

I am very grateful for any answers and thank you in advance.

Comments

  • jmerryjmerry Member Posts: 3,881
    Brage's body should drop when you kill him, and that's what you turn in. His head does not exist as a separate item. This is done through a block in his script:
    IF
    	Die()
    	!StateCheck(Myself,STATE_FROZEN_DEATH)
    	!StateCheck(Myself,STATE_STONE_DEATH)
    	!HasItem("misc65",Myself)  // Brage's Body
    THEN
    	RESPONSE #100
    		GiveItemCreate("misc65",Myself,0,0,0)  // Brage's Body
    		ActionOverride(Myself,DropInventory())
    END
    

    It's possible that glitched and the body didn't drop. Brage's body is flagged as a critical item, so if you go back it should be there - while ordinary items despawn when left in ground piles too long, critical items don't.
  • okini55okini55 Member Posts: 64
    jmerry wrote: »
    Brage's body should drop when you kill him, and that's what you turn in. His head does not exist as a separate item. This is done through a block in his script:
    IF
    	Die()
    	!StateCheck(Myself,STATE_FROZEN_DEATH)
    	!StateCheck(Myself,STATE_STONE_DEATH)
    	!HasItem("misc65",Myself)  // Brage's Body
    THEN
    	RESPONSE #100
    		GiveItemCreate("misc65",Myself,0,0,0)  // Brage's Body
    		ActionOverride(Myself,DropInventory())
    END
    

    It's possible that glitched and the body didn't drop. Brage's body is flagged as a critical item, so if you go back it should be there - while ordinary items despawn when left in ground piles too long, critical items don't.

    Thank you very much for your answer. I managed to solve the problem :)
Sign In or Register to comment.