A Christmas Scratch game

Slides:



Advertisements
Similar presentations
Sprite-visual object (actor on the stage) Scripts- Tells actors (sprites) what to do.
Advertisements

Create a Simple Game in Scratch
In this tutorial, we are going to create: A race car that the user can control with the arrow keys for direction and speed. A simulated road with a striped.
Create a Simple Game in Scratch
Michael Parkes Dudley LA What can Scratch do? Make simple games, animations, presentations and stories.
Pong! “The oldest commercially available game in history” Resources created from the video tutorials provided by David Phillips on
How to make an educational Snakes and Ladders game in Scratch
Harry Potter Scratch Game
Adventures in Animation Harry Potter Game Pranali Choubal Kunal Shaw Barb Ericson Dec 2007.
Helicopter Game Tutorial
Code Club Session 3 Shark Eats Fish. Picture of finished product here.
Write Your First Computer Game!. Coding: Programming Languages Just like you can speak Chinese to someone who understands Chinese to tell them what to.
Racing Car Game Using the keys to control a sprite.
INTRODUCTION TO SCRATCH. About Me Resources Scratch Website Learn Scratch Washington-Lee Computer.
Fish Chomp. The screen where you can see what happens when you play your game is called the STAGE. The SCRIPT BANK is where the types of instructions.
CATCH SCRATCH! Programming from Scratch. Remember Scratch?
Using MIT Scratch for Programming and Control Exercise 3 Ball Game Year 9 ICT Autumn Term 2007.
We will be creating a spaceship that simulates real movements in space. The spaceship will fire a laser beam that can destroy targets. The spaceship will.
Using MIT Scratch for Programming and Control Exercise 6 – Creating a Scratch Packman Year 9 ICT Autumn Term 2007.
How to make a Shooting Target game in Scratch!. WE ARE GOING TO MAKE A TARGET GAME. This game will have: A Target that will move when clicked. A Timer.
2015 CSE/EGR Summer Camps 1 Computer Science Concepts 1. What is an algorithm? 2. Binary information coding 3. Programming concepts via Scratch Designed.
1 Understand how to use Scratch to: – Animate a sprite – Add sound to your script – Use the forever command to create a loop Lesson 2: Learning Objectives.
Geometry. The screen where you can see what happens when you play your game is called the STAGE. The SCRIPT BANK is where the types of instructions are.
Fish Chomp. The screen where you can see what happens when you play your game is called the STAGE. The SCRIPT BANK is where the types of instructions.
Creating a Simple Game in Scratch Barb Ericson Georgia Tech June 2008.
Making a Sprite Dance Barb Ericson Georgia Tech June 2011.
Create a Halloween Computer Game in Scratch Stephanie Smullen and Dawn Ellis Barb Ericson October 2008.
Computer Programming Modeling a Passive Solar Home.
Variables and Random Numbers Computer App Session 4.
By Mr. Putnam. In Catfall, the goal of the game is to touch the falling cats with the mouse. Every time you touch a cat, your score goes up by one point.
Marble Racer. The screen where you can see what happens when you play your game is called the STAGE. The SCRIPT BANK is where the types of instructions.
Introduction to Computer Programming - Project 2 Intro to Digital Technology.
Using MIT Scratch for Programming and Control Exercise 4 – Cat and Dog game Year 9 ICT Autumn Term 2007.
Scratch for Interactivity Dr. Ben Schafer Department of Computer Science University of Northern Iowa.
How to create a basic game in Scratch. The Scratch Stage The Scratch stage is 480 pixels wide and 360 pixels high x increasesx decreases.
Today's Ninja Challenge: Write Your First Computer Game!
Making a Flappy Birds Game PART 2 – MAKING THE BIRD FLAP AND FALL – AND DEVELOPING THE GAME FURTHER (ADDING ADDITIONAL CHARACTERS, GOODIES, ENEMIES AND.
ICT/COMPUTING RULES Only use software allowed by the teacher
Scratch Part 2 – Character Commands. What does a command do?  Commands in programming allow an object whatever it is to do something. In the case of.
Creating a Simple Game in Scratch Barb Ericson Georgia Tech May 2009.
Introducing Scratch Learning resources for the implementation of the scenario
Game Maker Tutorials Introduction Clickball IntroductionClickball Where is it? Shooting Where is it?Shooting.
School of Computer Science Space School 2015 Programming a Lunar Lander Game.
Index Background Costumes Making object walk smoothly Controlling an object with the keyboard Control an object with the mouse Changing costume when hit.
Movement Game Design (Scratch).
Create a Halloween Computer Game in Scratch
Scratch for Interactivity
Scratch for Interactivity
Pen Cards Pen Cards Back and Forth Draw a Line Special Effects
Pen Cards Pen Cards Back and Forth Draw a Line Special Effects
Scratch Programming Intro
The One Where You Scratch
Go to =>
Pen Cards Pen Cards Back and Forth Draw a Line Special Effects
Lesson Objectives To understand how to make sprites interact
Go to =>
Go to =>
Go to =>
Game Over Module 4 Lesson 2.
Pen Cards Pen Cards Back and Forth Draw a Line Special Effects
Pen Cards Pen Cards Back and Forth Draw a Line Special Effects
Pen Cards Pen Cards Back and Forth Draw a Line Special Effects
Creating a Simple Game in Scratch
Pen Cards Pen Cards Back and Forth Draw a Line Special Effects
Scratch Racing.
Pen Cards Pen Cards Back and Forth Draw a Line Special Effects
Pen Cards Pen Cards Back and Forth Draw a Line Special Effects
Catch Game Cards Catch Game Cards Make a Card Go to the Top Fall Down
Presentation transcript:

A Christmas Scratch game Sleigh Drop A Christmas Scratch game

Step 1. In this game items will drop from the sky and you will need to catch them to get points. Catch the wrong things however and you will lose points. You need to open the starting game which has all the graphics you need to start making the game. You can find this in: Common\Year13\Examples\ICT\...

Step 2. Let’s make the sleigh move from left to right when you click on the arrow keys. Click on the then choose the Enter the script below. then see if you can create the left arrow script

Step 3. Now we want our present to fall to the ground. Click on the and then the We want the present to fall from the top to the bottom so we change the y position of the present. Enter this script to make the present fall when the flag is clicked

Step 4. I want the present to start at the top every time the flag is clicked. This means I want to set y to 151 at the beginning Change your script so it looks like this.

Step 5. When the present reaches the bottom it should go back up to the top. So I want to check IF it has hit the blue at the bottom of the background. Change your script to look like the script on this page. Check that you have the if statement inside the forever loop. You can get the right colour by clicking in the touching colour command then clicking on the blue in the background

Step 6. Let’s make it all a bit more random. If the present falls in the same place each time it will be too easy to catch. So let choose a random position to start. Let’s also make it wait a random time before it appears again! We use the hide and show commands to control if the player can see the sprite.

Step 7. What is the point of a game if there is no way to keep a score! Now call your variable score Click Here Then here

Step 8. Back to your present sprite Change your script to change the score when it hits the blue. Your script should now look like this.

Step 9a. OK, we can lose points, but how do I get points? We want to say that IF the present touches the sleigh then change the points by 2. This looks a lot like the block that took points away. Put it in the forever loop but after your touching blue block.

Step 9b. Your sprite block is almost complete and looks like this.

Step 9c. One last change to make to the sprite to make it even more random. Change the top of your script to hide the sprite and then wait a random amount before showing it.

Extension Challenges Duplicate the present. Avoid the coal. Make a copy of the present by right clicking the sprite and choosing duplicate. Then change how it looks. Can you get three presents that all look different. Maybe each one is worth different points and falls at a different speed. Avoid the coal. Add scripts to the coal. It will fall just like the presents, but if you catch it then you lose 5 points (Boo). Add sounds. Make a nice noise when you catch a present and a oops sound if you catch the coal.

Extension Challenges Can you animate the background to make the stars move or twinkle in the sky? Could there be a naughty elf who bounces around the screen who takes points if he hits your sleigh Could you make them appear when the score is more than 10?