4
Fork 0

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

master
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
Event OnActivate(ObjectReference akActionRef)
if akActionRef == Game.GetPlayer() && !Activated && (Game.GetPlayer().GetItemCount(_00E_MQ00TempleKey) >= 1)
Game.GetPlayer().RemoveItem(_00E_MQ00TempleKey, Game.GetPlayer().GetItemCount(_00E_MQ00TempleKey))
Actor PlayerRef = Game.GetForm(0x14) as Actor
if akActionRef == PlayerRef && !Activated && (PlayerRef.GetItemCount(_00E_MQ00TempleKey) >= 1)
PlayerRef.RemoveItem(_00E_MQ00TempleKey, 1)
MoveStone = true
Runenstein.enable()
;_00E_MQP03_sMechanismSomethingMissing.Show()

Loading…
Cancel
Save