Ok.. I know how to scroll, I can do it but what I dont know what to do is this:
Program the character so when he hits the buildings - he doesnt walk over them, he just bumps into them.
Offline
Just use the code from this project http://scratch.mit.edu/projects/archmage/635312
Offline
You can program hit tests. Here's how
Make a new sprite and paint it like a small black line.
Make a green flag forever script with "go to sprite (character)".
Paint it correctly, and it will go to the desired region.
Then make a variable called "hit".
Using the If/else block, put "If touching (terrain)" in the if block, and under if put "set variable hit to 1"
Under else, put "set variable hit to 0".
Now, go to the character's scripts and put "if hit equals 1" and under that if, put an opposing movement.
Hope that wasn't too confusing
Offline