GAME:IT Junior Learning Game Maker: The Score Tab.

Slides:



Advertisements
Similar presentations
GAME:IT Junior Paddle Ball Objectives: Review skills from Introduction Create a background Add simple object control (up and down) Add how to create a.
Advertisements

GAME:IT Junior Learning Game Maker: The Control Tab.
GAME:IT Junior Ping Pong Objectives: Review skills from previous lessons Create a 2-player game Create a scoring display system Using old and new skills,
Create a Simple Game in Scratch
Summer Computing Workshop. Introduction to Variables Variables are used in every aspect of programming. They are used to store data the programmer needs.
Dh 1 Million Dh 500,000 Dh 250,000 Dh 125,000 Dh 64,000 Dh 32,000 Dh 16,000 Dh 8,000 Dh 4,000 Dh 2,000 Dh 1,000 Dh 500 Dh 400 Dh 300 Dh 200 Dh 100.
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
Harry Potter Scratch Game
 graphic organizers in the form of illustrations or images displayed in sequence for the purpose of pre-visualizing a motion picture, animation, motion.
This game is loosely based on the Whack-A- Mole arcade game.  Each game starts with 45 seconds of play.  Moles randomly pop out of holes on the landscape.
How to make a game on game maker 7. Start With an Idea Before you actually start making your game, you are going to need an idea as to what it is you.
Scratch Programming Session 9 of 10 Review elements to use in stories, games, etc.
Escape from Fitz! Mark Healy Nickie McCabe April 26, 2005.
LO: Learn how to develop your game further to include interactions with the device.
GAME:IT Junior Bouncing Ball Objectives: Create Sprites Create Sounds Create Objects Create Room Program simple game.
GameMaker.  A lot of Different Definitions  Easier to Say What is NOT a Game  Movie is Not a Game  No Active Participation  Final Outcome is Fixed.
Creating a movie in PICASA
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.
Game Design Creating a game called PING Phase 3: Steps for building basic game.
GAME:IT Bouncing Ball Objectives: Create Sprites Create Sounds Create Objects Create Room Program simple game.
Spiral Rider PAGE 1. Set Up Scene 1.Add Stage-underwater scene 2.Add crab sprite 3.Add two fish sprites PAGE 2.
Team 22 沈昇勳、李宗儒、洪銘駿. Among EE students, one particular game is especially popular and has many devoted players: LUMINES. FOREWORDS.
11 Making a Sprite Session 4.2. Session Overview  Describe the principle of a game sprite, and see how to create a sprite in an XNA game  Learn more.
Game Maker Terminology
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.
Game Maker Galactic Mail Advanced Group: Complete Galactic Mail, then start developing an independent project.
Game Maker Tutorial.
2D Platform Game Game Maker Terminology. Object  Item in a game that has behavior, such as a main character who can move.
Create a Halloween Computer Game in Scratch Stephanie Smullen and Dawn Ellis Barb Ericson October 2008.
Galactic Mail Part 2. Winning and Losing Exploding Asteroids Including Scoring Adding Levels And more.
Tank Game Part 3 of 6. Secondary Weapons and Pick ups Pick ups will appear randomly in the battle area and can be collected by driving into them. Each.
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.
CIS—100 Chapter 8—Tracking Changes 1. Turning on Track Changes On the Review tab, in the Tracking group, click Track Changes. The background of the Track.
Mindstorm NXT-G Introduction Towson University Robotics.
GAME:IT Junior Paddle Ball Objectives: Review skills from Introduction Create a background Add simple object control (up and down) Add how to create a.
GAME:IT Paddle Ball Objectives: Review skills from Introduction Create a background Add simple object control (up and down) Add how to create a simple.
The Word Window Fill out your Word Window Worksheet as you view this PowerPoint.
Tank Game Part 2 of 6. Firing Shells Coming up… Players Scores Large Explosions Small Explosions Damage Health Bars Parent Shell Destructible Walls Reappear.
Creating a Simple Game in Scratch Barb Ericson Georgia Tech May 2009.
GRAPHING TECHNIQUES The Experiment Various amounts of table salt are added to 100 grams of water. The boiling point of the solution is measured with.
Game Maker Tutorials Introduction Clickball IntroductionClickball Where is it? Shooting Where is it?Shooting.
Scratch Programming Cards
Create a Halloween Computer Game in Scratch
PYGAME.
Pen Cards Pen Cards Back and Forth Draw a Line Special Effects
Pen Cards Pen Cards Back and Forth Draw a Line Special Effects
Competitive Multiplayer Game
Scratch Programming Intro
BYOB – Costumes.
Pen Cards Pen Cards Back and Forth Draw a Line Special Effects
Space Shooter Tips.
Tank Game Part 2 of 6.
Pen Cards Pen Cards Back and Forth Draw a Line Special Effects
Flappy bird Demo: Lesson 5 Flappy bird Demo:
Reporting Site Manager User Guide February 2019.
Pen Cards Pen Cards Back and Forth Draw a Line Special Effects
Game development using Scratch
Pen Cards Pen Cards Back and Forth Draw a Line Special Effects
Nate Brunelle Today: Games
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.
JavaScript 101 Lesson 8: Loops.
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:

GAME:IT Junior Learning Game Maker: The Score Tab

Set Score: Game Maker has the ability to keep track of 3 specific variables used in gaming: Score, Lives, and Health. They really are just 3 variablesthey have nothing to do with score, lives, or healthsometimes we use them to keep track of other variable values. Typically, you must set an initial value. Example: Score = 0 When you want to increase the score, you use the same action but activate the relative button.

Test Score: This action checks whether a score has reached a particular value.

Draw Score: This action will draw the value of the score in any position on the screen. Must be used with the Draw Event.

Show Highscore: Game Maker keeps track of the top 10 high scores for each game. This action displays the high score list.

Clear High Score: This action will clear the high score list

Set Lives: With this action you can change the number of lives left using an initial number (like 3) and using a second action to decrease lives until you reach 0 (by using the relative function). This action can also serve as another variable unrelated to lives but necessary to your game. Example: using it as a counter that counts loops through a part of the program.

Allows you to check whether lives have reached a certain value. Check Lives:

Draw Lives: Allows you to draw lives in any position on the screen. Must be used with the Draw Event.

Draw Life Images: Instead of drawing a number at any given position, you can draw images (sprites).

Set Health: Health is the 3 rd variable available for use. Using as a Health variable, value is usually set for 100 for full health and 0 for no health at all.

Check Health: Allows you to check whether health has reached a certain value.

Draw Health: With this action you can draw health in the form of a health bar. When health is 100 a full bar is drawn. When it is 0, the bar is empty. You can indicate position, size, color, and background of bar.

Score Caption: This action allows you to manipulate what scores you want displayed. You can indicate to show or not show score, lives, and/or health.