From Test-Scratch-Wiki

A story project is a project in which a story is told. These can range from interactive stories, where users make their own story, to talk shows, where animated characters talk to each other. They are rare as they often fall into the animation category


Interactive Stories

These are projects where a user is presented with a variety of options. When they choose one, the story will progress. This gives the user the ability to 'make their own story.' Interactive projects are also called "Choose Your Adventure" projects. These projects tend to take a little more time than other story projects because a dialogue tree has to be constructed and every possible scenario needs to be programmed. To do that, these blocks are commonly used:

An interactive story made in the Collab Camp
if <> then 

end

ask [] and wait 

say []

when sprite clicked

The Collab Camp did a section on interactive stories that you can view here.

Sometimes, an interactive story will suggest users to comment suggestions for what will happen next. They're also known as "collaborative story projects".

Talk Shows

In these projects, two or more sprites talk to each other using text or programmed speech bubbles with the Say block. These story projects are common because they are easy for a new Scratcher to program.

A very common block used in these projects is the

broadcast [ v]

block. It is used to let each 'character' know when it's their turn to 'talk'.

Books/Short Stories

These are projects where the creator types up their own story/short story for other user's to read. These can be super long, or super short. They can have music or sound effects, but they don't need them. Generally, the story is typed up in backdrop(s) or sprite(s). A common script used to change the pages with the arrow keys is:

A Short Story cover example.

when green flag clicked
switch backdrop to [1 v]
forever
    
if <key [right arrow v] pressed?> then
   
switch backdrop to [next backdrop v]
wait until <not <key [right arrow v] pressed?>>
end
if <key [left arrow v] pressed?> then
    
switch backdrop to [previous backdrop v]
wait until <not <key [left arrow v] pressed?>>


end

end

Written text in Notes and Credits

Some story projects base the story as written text in the Notes and Credits. This is the simplest type of a story project as it only uses typed text to tell a story. Most projects of this type use a piece of art that goes along with the story.

Examples

Document.png Please expand this article or section. You can help by adding more information if you are an editor. More information might be found in a section of the talk page.


Interactive Stories

Books/Short Stories

Written text in Notes and Credits

Cookies help us deliver our services. By using our services, you agree to our use of cookies.