thanks
2 - I have a problem conecting levels with stairs; when I go down it works but when i want go up it doesnt work; the party stop
thanks again
Code: Select all
function daggerCheck()
for i in my_alcove:containedItems() do
if i.name == "dagger" then
my_door:open()
end
end
end
Code: Select all
alcoveBool1 = false
alcoveBool2 = false
function alcove1Check()
for i in my_alcove1:containedItems() do
if i.name == "dagger" then
alcoveBool1 = true
checkAlcove()
end
end
end
function alcove2Check()
for i in my_alcove2:containedItems() do
if i.name == "compass" then
alcoveBool2 = true
checkAlcove()
end
end
end
function checkAlcove()
if alcoveBool1 and alcoveBool2 then
my_door:open()
end
end