1
Fork 0

Remove only one Rune Key in the Abandoned Temple; Rune Key has a price

development
Eddoursul 2 years ago
parent 2ee7b5e135
commit 7b91327a04
  1. BIN
      Rune Key has price.esp
  2. BIN
      scripts/_00e_mq00templepuzzlescn.pex
  3. 5
      source/scripts/_00e_mq00templepuzzlescn.psc

Binary file not shown.

@ -2,8 +2,9 @@ Scriptname _00E_MQ00TemplePuzzleSCN extends ObjectReference
;DRSTG08AStoneSecretDoorOpenM ;DRSTG08AStoneSecretDoorOpenM
Event OnActivate(ObjectReference akActionRef) Event OnActivate(ObjectReference akActionRef)
if akActionRef == Game.GetPlayer() && !Activated && (Game.GetPlayer().GetItemCount(_00E_MQ00TempleKey) >= 1) Actor PlayerRef = Game.GetForm(0x14) as Actor
Game.GetPlayer().RemoveItem(_00E_MQ00TempleKey, Game.GetPlayer().GetItemCount(_00E_MQ00TempleKey)) if akActionRef == PlayerRef && !Activated && (PlayerRef.GetItemCount(_00E_MQ00TempleKey) >= 1)
PlayerRef.RemoveItem(_00E_MQ00TempleKey, 1)
MoveStone = true MoveStone = true
Runenstein.enable() Runenstein.enable()
;_00E_MQP03_sMechanismSomethingMissing.Show() ;_00E_MQP03_sMechanismSomethingMissing.Show()

Loading…
Cancel
Save