Okay, I have a question:
In SCI0, whenever Ego walks to the edge of the screen, Ego would be "sent" to another room:
(assume rm001.sc, Pic.001, rm002.sc and Pic.002 exists)
(properties
picture scriptNumber
// Set up the rooms to go to/come from here
north 0
east 0
south 2
west 0
)
In SCI1.1, I had tried to implement the same thing, but I can't seem to get it to work:
(assume rm110.sc, Pic.110, rm111.sc and Pic.111 exists)
(properties
picture 110
south 111
style (| dpANIMATION_BLACKOUT dpOPEN_FADEPALETTE)
horizon 50
vanishingX 130
vanishingY 50
noun N_ROOM
)
This leads to two questions, and this is on my learning curve:
1. Are we no longer able to do this on SCI1.1? (if so, what am I missing?)
2. If we can't, does that mean we will need to use Control areas to navigate rooms?