Book Image

Scratch 2.0 Game Development Hotshot

Book Image

Scratch 2.0 Game Development Hotshot

Overview of this book

Table of Contents (18 chapters)
Scratch 2.0 Game Development HOTSHOT
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface
Index

Sending a message


Sometimes, you don't want a script to start working right from the start of the game. For such cases, you can trigger a script by sending a message, instead of just starting it when the <green flag> button is pressed. This way, the script will stay dormant and inactive until it receives the right message. You can actually compare this to someone yelling a certain order that the script has to respond to. In this section, we will postpone the appearance of the boss monster until certain game conditions are met.

Prepare for lift off

Messages are part of the Events category. Let's go there and see what we have to work with. Near the bottom of the list are three message blocks; one starting block (with the curved top) that can receive a message, and two broadcasters immediately below that can shout a message to all the scripts.

Engage thrusters

We will use these messages to differentiate between the two states of the game. The player can either fight waves of enemies or the...