Just a quick thanks to panic i used pulp to make one of my games (Coming Soon!) and i was a quarter done in 2 days! Its SO easy to learn and great to use! Thank you panic for easy development and a great devform to ask bizarre questions and think of wacky ideas!!!
This totorial is being a great help!
However, I have a quick -- noobie question:
if when I collect the key I want a message to pop up saying "key found!" I thought well to:
on the item key add the script:
on collect do
say "Key found!"
swap "white"
end
However, now the gate does not recognise I have collected the key, and it will not unlock.
Can you clarify what am I doing wrong ?
Just for reference the gate (sprite)'s script is as follows:
on interact do
if keys>0 then
keys--
swap "white"
else
say "Gate locked. Seek key"
end
end
Thank you. It seems the solution will be simple, yet I cannot reach it.