
Now, here are the scripts. There's four of them: 1 for each of the 2 switches, and two different approaches so solve the Main Gate Script... one which is a quest script, and one which is applied to an Object in the same cell as the Gate. None of those latter two works

scn tfrDungeon04SwitchAScript
short busy
short Activated
ref target
ref mySelf
begin onActivate
if busy == 0
if activated == 0
if player.getitemcount tfrDungeon04KeyA == 1
set target to getParentRef
set mySelf to getSelf
target.activate mySelf 1
playgroup forward 1
set busy to 1
set activated to 1
tfrDungeon04GreenA1real.enable
tfrDungeon04GreenA2.enable
tfrDungeon04RedA1.disable
tfrDungeon04RedA2.disable
player.removeitem tfrDungeon04KeyA 1
set tfrEntranceGlobal to tfrEntranceGlobal +1
endif
endif
endif
end
begin gameMode
if isAnimPlaying == 0 && busy == 1
set busy to 0
endif
end
short busy
short Activated
ref target
ref mySelf
begin onActivate
if busy == 0
if activated == 0
if player.getitemcount tfrDungeon04KeyA == 1
set target to getParentRef
set mySelf to getSelf
target.activate mySelf 1
playgroup forward 1
set busy to 1
set activated to 1
tfrDungeon04GreenA1real.enable
tfrDungeon04GreenA2.enable
tfrDungeon04RedA1.disable
tfrDungeon04RedA2.disable
player.removeitem tfrDungeon04KeyA 1
set tfrEntranceGlobal to tfrEntranceGlobal +1
endif
endif
endif
end
begin gameMode
if isAnimPlaying == 0 && busy == 1
set busy to 0
endif
end
scn tfrDungeon04SwitchBScript
short busy
short Activated
ref target
ref mySelf
begin onActivate
if busy == 0
if activated == 0
if player.getitemcount tfrDungeon04KeyB == 1
set target to getParentRef
set mySelf to getSelf
target.activate mySelf 1
playgroup forward 1
set busy to 1
set activated to 1
tfrDungeon04GreenB1real.enable
tfrDungeon04GreenB2.enable
tfrDungeon04RedB1.disable
tfrDungeon04RedB2.disable
player.removeitem tfrDungeon04KeyB 1
set tfrEntranceGlobal to tfrEntranceGlobal +1
endif
endif
endif
end
begin gameMode
if isAnimPlaying == 0 && busy == 1
set busy to 0
endif
end
short busy
short Activated
ref target
ref mySelf
begin onActivate
if busy == 0
if activated == 0
if player.getitemcount tfrDungeon04KeyB == 1
set target to getParentRef
set mySelf to getSelf
target.activate mySelf 1
playgroup forward 1
set busy to 1
set activated to 1
tfrDungeon04GreenB1real.enable
tfrDungeon04GreenB2.enable
tfrDungeon04RedB1.disable
tfrDungeon04RedB2.disable
player.removeitem tfrDungeon04KeyB 1
set tfrEntranceGlobal to tfrEntranceGlobal +1
endif
endif
endif
end
begin gameMode
if isAnimPlaying == 0 && busy == 1
set busy to 0
endif
end
THIS IS THE QUEST SCRIPT
scn 0tfrDungeon04GateControlScript
begin gamemode
if tfrEntranceGlobal == 2
tfrDungeon04CircleDoorRef.playgroup forward 1
message "As the gate opens, a foul stench emerges from the depths below..."
set tfrEntranceGlobal to 3
endif
end
begin gamemode
if tfrEntranceGlobal == 2
tfrDungeon04CircleDoorRef.playgroup forward 1
message "As the gate opens, a foul stench emerges from the depths below..."
set tfrEntranceGlobal to 3
endif
end
THIS IS THE OBJECT SCRIPT
scn 0tfrDungeon04GateControlScriptREAL
begin gamemode
if tfrEntranceGlobal == 2
;Set fQuestDelayTime to 0.01
tfrDungeon04CircleDoorRef.playgroup forward 1
message "As the gate opens, a foul stench emerges from the depths below..."
set tfrEntranceGlobal to 3
endif
end
begin gamemode
if tfrEntranceGlobal == 2
;Set fQuestDelayTime to 0.01
tfrDungeon04CircleDoorRef.playgroup forward 1
message "As the gate opens, a foul stench emerges from the depths below..."
set tfrEntranceGlobal to 3
endif
end
Any ideas??
