Last active
March 24, 2020 14:58
-
-
Save confraria/d251dcdcbb36387980ac61f8d55cf749 to your computer and use it in GitHub Desktop.
scripts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<performance title="Battle of Wits"> | |
<!--Information about the graphical elements of the play--> | |
<header> | |
<!--Cast of characters and props--> | |
<castList> | |
<character id="vizzini"> | |
<name> | |
Vizzini | |
</name> | |
<!--Character models defined for this character. The first model is designated the default model--> | |
<availModelList> | |
<model id="defaultViz" location="c:\performances\bow\models\vizzini\default.bmp"/> | |
<model id="vizziniDrink" location="c:\performances\bow\models\vizzini\drinking.bmp"/> | |
<model id="vizziniLaugh" location="c:\performances\bow\models\vizzini\laughing.bmp"/> | |
<model id="vizziniDead" location="c:\performances\bow\models\vizzini\dead.bmp"/> | |
</availModelList> | |
</character> | |
… | |
</castList> | |
… | |
</header> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<dialogue speaker="vizzini"> | |
<line>Well, I- I could have sworn I saw something.</line> | |
<line>No matter. First, let's drink.</line> | |
<line>Me from my glass, and you from yours.</line> | |
</dialogue> | |
<stageDirection> | |
<costumeChange characterID="vizzini" model="vizziniDrink"/> | |
<costumeChange characterID="westley" model="westleyDrink"/> | |
<pause duration=“3”/> | |
<costumeChange characterID="vizzini" model="defaultViz"/> | |
<costumeChange characterID="westley" model="defaultWest"/> | |
</stageDirection> | |
<dialogue speaker="westley"> | |
<line>You guessed wrong. </line> | |
</dialogue> | |
<stageDirection> | |
<costumeChange characterID="vizzini" model="vizziniLaugh"/> | |
</stageDirection> | |
<dialogue speaker="vizzini"> | |
<line>You only think I guessed wrong! That's what's so funny!</line> | |
<line>I switched glasses when your back was turned!</line> | |
</dialogue> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment