thefuneral1About seven years ago I wrote a song called Funeral. That song has inspired Jon Kovach (an actor, musician, director, writer, and producer from Cincinnati) to write a play called THE FUNERAL.

In the play, Luke is hiding out in his bedroom because he doesn't care about his great grandmother's funeral happening in his parent's living room downstairs. His beautiful cousin, conflicted immediate family, and eclectic friends all visit Luke, each with their own scheme to lure him out of his bedroom. Will Luke venture downstairs, or will his parents follow through with their threat to bring his great grandmother up?

Jon is writing/directing THE FUNERAL as part of Serials! happening throughout the summer at Know Theatre of Cincinnati. As the name Serials! implies, the play is being presented in six parts: June 23rd, July 7th, July 21st, August 11th, August 25th, and September 8th. The cast includes Jared Earland as Luke, Tara Williams as Luke's mom, Becca Howell as Luke's cousin Erika, and Annie Kalahurka as Luke's sister Leslie.

thefuneral2aBlogger Kirk Sheppard wrote, "Kovach’s piece is sharp, funny, and professional. Tara Williams, who plays the mother, is as good an actress as anyone in town and this piece seemed like the start of a pretty well developed series. I’m excited to see where it goes."

David Lyman of the Cincinnati Enquirer wrote, "[THE FUNERAL] is the smartest and best-crafted offering of the entire evening."

Behind The Curtain Cincinnati wrote, "[A] smart, tightly-written and emotionally true script. Kovach packs alot into just 15 minutes without it feeling too dense or hurried. Definitely intrigued by the big question of the son’s reluctance to attend the funeral being held downstairs."


packfilmThe following Polaroid cameras can use the Fuji Packfilms: FP-100c and FP-3000b

Folding Pack Cameras:
100 Series: Automatic 100, 101, 102, 103, 104, 125, 135
200 Series: Automatic 210, 215, 220, 225, 230, 240, 250
300 Series: Automatic 315, 320, 325, 330, 335, 340, 350, 355, 360, M60,…
400 Series: Automatic 420, 430, 440, 450, 455, Countdown 70, Countdown 90
Pro Models: 180, 185, 190, 195
New Style Folding Cameras: EE100, EE100 Special, The Reporter, ProPack

2014-08-04 16.53.16All plastic Body:
Big Swinger, Colorpack II, Colorpack III, BigShot, Colorpack IV, Colorpack M6, Colorpack V, Minutemaker, Minutemaker Plus, Super Colorpack, Super Shooter


NOTE: Sometime around 2015 there was an update to Google Forms that broke the ability to quickly/easy store high scores for Twine Games in Google Drive. Sorry!

Screen Shot 2014-05-31 at 6.18.51 PMThe first thing that you will obviously need is a Twine game that stores the player’s points as a variable. To do this, write a bit of code like this in the Start passage: <<set $points = 100>>. Any time that you need to change the player’s points during the game, use some code like this: <<set $points = $points + 5>> or this: <<set $points = $points - 7>> As a side note, it's possible to use shorthand like this <<set $points += 5>> to add or subtract points, but I prefer to teach the former code to my elementary and middle school students because I believe that <<set $points = $points + 5>> is easier to comprehend.

Your Twine game will also need to store the player’s name. An easy way to ask the player their name is to use this code:

<<set $name = prompt("What’s your name?")>>

Screen Shot 2014-06-01 at 7.16.59 PMCreate a Google Form with two questions, each with Text input fields. Make the first question “Name: ” and “Score: ” for the second question. Don’t worry. We’re not just going to ask the player to type in their score, we’re going to use a script to enter their score automatically. Uncheck “Show link to submit another response” on the Confirmation Page.

Click “View live form” to see your form. Right-click and choose “View page source.” Copy all of the HTML code from...
Screen Shot 2014-05-31 at 6.02.18 PMb
to...
Screen Shot 2014-05-31 at 6.02.18 PM
Screen Shot 2014-06-01 at 7.12.09 PMb
...and paste all of this into the last passage of your Twine game.

Type <html> before the HTML code that you just pasted and type </html> after it.

Create a new Script passage, then copy and paste the following code:

/*Places the variables (given as parameters) into the Google Forms
text input field.*/
macros['googleForms'] =
{
handler: function (place, macroName, params, parser)
{
/*Enter the ID of the first Google Forms text input field here.*/
a = place.querySelector("#entry_111111111");
a.value = eval(Wikifier.parse(params[0]));
/*Enter the ID of the second Google Forms text input field here.*/
b = place.querySelector("#entry_222222222");
b.value = eval(Wikifier.parse(params[1]));
}
};

In the Script, replace entry_111111111 with the ID of your first Google Forms text input field and replace entry_222222222 with the ID of your second text input field. Make sure that you leave the # before the IDs.

After </html> type <<googleForms $name $points>>. Replace $name with whatever variable you used to store the player’s name and replace $points with whatever variable you used to store the player’s score.

You can test it out at this point by playing your Twine game. When you get to the end of your game, you should see something like this:

Screen Shot 2014-05-31 at 5.49.31 PM

Once you’ve tested it and it’s working, we’re going change the HTML code so that all of this business is hidden. Change <input type="text" to <input type="hidden" for both of the text input boxes. Change value="Submit" to value="High Scores" or something like that. Delete the following text from the HTML code: Name:, This is a required question, Score:, This is a required question, Never submit passwords through Google Forms.

Next we’re going to set up the Google Spreadsheet that will store the high scores. A spreadsheet should have been automatically created when you made the Google Form. If you named your form “Twine Game High Scores,” then the spreadsheet will be named “Twine Game High Scores (Responses).” Open it and insert a new sheet.

Add this code to cell A1 of the new sheet: =SORT('Form Responses'!B:C,2,0). If your game works so that low scores are better than high scores, then you would use this formula instead: =SORT('Form Responses'!B:C,2,1).

At the bottom-left, you will see “Form Responses” and “Sheet 2.” Drag and drop them so that “Sheet 2” comes before “Form Responses.”

Click the Share button at the top-right. Copy the “Link to share” and then share the file so that anyone with the link can view (but not edit).

Open your Google Form. Type “Your score has been saved. Click here to view the high scores.” in the box for the Confirmation Page and then paste the “Link to share.”

Here is a demo: ohiofi.github.io/twinehighscoredemo.html

I used this in my newest Twine game, Sundown.
You can check out Sundown here: http://ohiofi.github.io/sundown

mario




RECENT POSTS