I'm very sure it hasn't, or at least not two practical ones since you need to step on the plate directly in front of the door to go through it thus closing the door.Billick wrote:Don't forget the checkered room has 2 solutions

I'm very sure it hasn't, or at least not two practical ones since you need to step on the plate directly in front of the door to go through it thus closing the door.Billick wrote:Don't forget the checkered room has 2 solutions
That's true... I'm just saying if you want it to emulate the puzzle in the original gameMontis wrote:I'm very sure it hasn't, or at least not two practical ones since you need to step on the plate directly in front of the door to go through it thus closing the door.Billick wrote:Don't forget the checkered room has 2 solutions
Code: Select all
function openport()
if
checkerplate1:isUp() and
checkerplate2:isDown() and
checkerplate3:isUp() and
checkerplate4:isDown() and
checkerplate5:isUp() and
checkerplate6:isDown() and
checkerplate7:isUp() and
checkerplate8:isDown() and
checkerplate9:isUp()
then
checkeredport:open()
elseif
checkerplate1:isDown() and
checkerplate2:isUp() and
checkerplate3:isDown() and
checkerplate4:isUp() and
checkerplate5:isDown() and
checkerplate6:isUp() and
checkerplate7:isDown() and
checkerplate8:isUp() and
checkerplate9:isDown()
then
checkeredport:open()
else
checkeredport:close()
end
end
Code: Select all
function openport()
if
oddplate1:isUp() and
oddplate2:isUp() and
oddplate3:isUp() and
oddplate4:isUp() and
oddplate5:isUp() and
evenplate1:isDown() and
evenplate2:isDown() and
evenplate3:isDown() and
evenplate4:isDown()
then
checkeredport:open()
elseif
oddplate1:isDown() and
oddplate2:isDown() and
oddplate3:isDown() and
oddplate4:isDown() and
oddplate5:isDown() and
evenplate1:isUp() and
evenplate2:isUp() and
evenplate3:isUp() and
evenplate4:isUp()
then
checkeredport:open()
else
checkeredport:close()
end
end
The first time I played the checker room in the main game I completed it wrongly.. the door still opened, but I was dismayed to find that when I stood in front of the door it closed again!Komag wrote:ah, tricky, few of us would think to try the "wrong" way on purpose! I love stuff like that! It might be good to have some little clue too, something to slightly indicate there is a secret to find in the area maybe, not sure
Yes I did that to, was most dismaying! I soon reversed it though.Grimwold wrote: The first time I played the checker room in the main game I completed it wrongly.. the door still opened, but I was dismayed to find that when I stood in front of the door it closed again!