From 50e35ab679b5b13fa71e102332e8f59ec1cdf609 Mon Sep 17 00:00:00 2001 From: Gaston Sanchez Date: Wed, 11 Jul 2012 12:49:11 -0700 Subject: [PATCH] star wars arc diagram project --- README.md | 63 + Rscripts/DOCUMENTATION.md | 80 + Rscripts/arcBandBars.R | 184 + Rscripts/arcBands.R | 144 + Rscripts/arcDiagram.R | 101 + Rscripts/arcPies.R | 136 + Rscripts/get_top_char_terms_by_eps.R | 252 + Rscripts/get_top_characters.R | 102 + Rscripts/get_top_chars_network.R | 221 + Rscripts/parsing_episodeIV.R | 114 + Rscripts/parsing_episodeV.R | 101 + Rscripts/parsing_episodeVI.R | 140 + Rscripts/star_wars_parsing.R | 362 ++ Rscripts/ultimate_arc_diagram.R | 108 + StarWars_Arc_Diagram.pdf | Bin 0 -> 150935 bytes Text_files/EpisodeIV_dialogues.txt | 1012 +++ Text_files/EpisodeVI_dialogues.txt | 678 ++ Text_files/EpisodeV_dialogues.txt | 841 +++ Text_files/SW_EpisodeIV.txt | 1011 +++ Text_files/SW_EpisodeV.txt | 840 +++ Text_files/SW_EpisodeVI.txt | 675 ++ Text_files/StarWars_EpisodeIV_script.txt | 7518 ++++++++++++++++++++++ Text_files/StarWars_EpisodeVI_script.txt | 5022 +++++++++++++++ Text_files/StarWars_EpisodeV_script.txt | 5012 +++++++++++++++ Text_files/top_char_terms.txt | 201 + Text_files/top_chars_by_eps.txt | 21 + Text_files/top_chars_network.txt | 187 + Text_files/weight_edges_graph1.txt | 187 + Text_files/weight_edges_graph2.txt | 187 + 29 files changed, 25500 insertions(+) create mode 100644 README.md create mode 100644 Rscripts/DOCUMENTATION.md create mode 100644 Rscripts/arcBandBars.R create mode 100644 Rscripts/arcBands.R create mode 100644 Rscripts/arcDiagram.R create mode 100644 Rscripts/arcPies.R create mode 100644 Rscripts/get_top_char_terms_by_eps.R create mode 100644 Rscripts/get_top_characters.R create mode 100644 Rscripts/get_top_chars_network.R create mode 100644 Rscripts/parsing_episodeIV.R create mode 100644 Rscripts/parsing_episodeV.R create mode 100644 Rscripts/parsing_episodeVI.R create mode 100644 Rscripts/star_wars_parsing.R create mode 100644 Rscripts/ultimate_arc_diagram.R create mode 100644 StarWars_Arc_Diagram.pdf create mode 100644 Text_files/EpisodeIV_dialogues.txt create mode 100644 Text_files/EpisodeVI_dialogues.txt create mode 100644 Text_files/EpisodeV_dialogues.txt create mode 100644 Text_files/SW_EpisodeIV.txt create mode 100644 Text_files/SW_EpisodeV.txt create mode 100644 Text_files/SW_EpisodeVI.txt create mode 100644 Text_files/StarWars_EpisodeIV_script.txt create mode 100644 Text_files/StarWars_EpisodeVI_script.txt create mode 100644 Text_files/StarWars_EpisodeV_script.txt create mode 100644 Text_files/top_char_terms.txt create mode 100644 Text_files/top_chars_by_eps.txt create mode 100644 Text_files/top_chars_network.txt create mode 100644 Text_files/weight_edges_graph1.txt create mode 100644 Text_files/weight_edges_graph2.txt diff --git a/README.md b/README.md new file mode 100644 index 0000000..6b8048e --- /dev/null +++ b/README.md @@ -0,0 +1,63 @@ +## Visualizing Star Wars Movie Scripts +====================================== + +**Description:** +Perform a statistical text analysis on the Star Wars scripts from Episodes IV, V, and VI, in order to obtain an arc-diagram representation (more or less equivalent to the one in [Similar Diversity](http://similardiversity.net/)) with the most talkative characters of the Star Wars trilogy. + +
+ +### R scripts +**Parsing scripts:** R scripts to parse the movie scripts, extract the characters & dialogues, and produce the data tables: +``` +1. parsing_episodeIV.R +2. parsing_episodeV.R +3. parsing_episodeVI.R +``` +**Analysis scripts:** R scripts for the performed analysis (run them sequentially): +``` +1. get_top_characters.R +2. get_top_characters_network.R +3. get_terms_by_episodes.R +4. ultimate_arc_diagram.R +``` +**Functions:** R functions for plotting different types of arc diagrams (these functions are used in some of the above analysis scripts): +``` +1. arcDiagram.R +2. arcPies.R +3. arcBands.R +4. arcBandBars.R +``` + +
+ +### Text Files +**Movie Scripts:** These are the movie scripts (raw text data) which are parsed to produced the dialogues files: +``` +1. StarWars_EpisodeIV_script.txt +2. StarWars_EpisodeV_script.txt +3. StarWars_EpisodeVI_script.txt +``` +**Text dialogues:** These are intermediate files containing the extracted dialogues from the movie scripts: +``` +1. EpisodeIV_dialogues.txt +2. EpisodeV_dialogues.txt +3. EpisodeVI_dialogues.txt +``` +**Input tables:** These are the input files (in data table format) used for the text mining analysis: +``` +1. SW_EpisodeIV.txt +2. SW_EpisodeV.txt +3. SW_EpisodeVI.txt +``` +**Output tables:** These are the output files (in data table format), produced in the text mining analysis, that are used to get the different arc-diagrams: +``` +1. top_chars_by_eps.txt +2. top_chars_network.txt +3. top_char_terms.txt +4. weight_edges_graph1.txt +5. weight_edges_graph2.txt +``` +
+ +#### PS: +Keep in mind that my main motivation for this project was to replicate, as much as possible, the arc diagram of Similar Diversity by Philipp Steinweber and Andreas Koller. I'm sure there are a lot of parts in the analysis that can be made faster, more efficient, and simpler. However, my quota of spare time is very limited and I haven't had enough time to write the ideal code. \ No newline at end of file diff --git a/Rscripts/DOCUMENTATION.md b/Rscripts/DOCUMENTATION.md new file mode 100644 index 0000000..f996c95 --- /dev/null +++ b/Rscripts/DOCUMENTATION.md @@ -0,0 +1,80 @@ +## Star Wars Arc Diagram +============================================= +by [Gaston Sanchez](http://www.gastonsanchez.com/) + +**Motivation** +The main idea behind this project is to reproduce, as much as possible, an arc-diagram in R like the one depicted in [Similar Diversity](http://similardiversity.net/) (by Philipp Steinweber and Andreas Koller). + +**Long story short** +I think I saw the arc-diagram of ***Similar Diversity*** for the first time back in 2010. Every time I contemplated that diagram, both amazed and amused, I always ended up wondering how the hell did Philipp and Andreas do it. Finally one day, I couldn't stand my questions anymore so I decided to try to make my own arc-diagram in R... and this project is the result of such attempt. Although I haven't been able to obtain an identical representation of the Similar Diversity arc diagram, I'm really happy with what I got and I guess it's pretty much similar. + +**Source** +In my case, I decided to use the movie scripts from the original Star Wars trilogy (episodes IV, V, and VI) as the text data for my analysis. I found the movie scripts at [Ben and Grove](http://www.benandgrover.com/scripts.asp) and [corkey.net](http://corky.net/scripts/) where you can find other scripts if you want to play with other movies. + +---------------------------------- + +## Analysis recipe: + +### Step 1) Text Parsing +Parse the text data of the movie scripts to extract the dialogues of each character. The final output files are the extracted dialogues in table format (one table per movie) +``` +Movie script text files | Parsed files | Data table files +------------------------------- | ------------------------ | ----------------- +StarWars_EpisodeIV_script.txt | EpisodeIV_dialogues.txt | SW_EpisodeIV.txt +StarWars_EpisodeV_script.txt | EpisodeV_dialogues.txt | SW_EpisodeV.txt +StarWars_EpisodeVI_script.txt | EpisodeVI_dialogues.txt | SW_EpisodeVI.txt +``` +The R scripts for this step are: +``` +1. parsing_episodeIV.R +2. parsing_episodeV.R +3. parsing_episodeVI.R +``` +------------------------------------ +### Step 2) Identify top characters +Once we have the dialogues in table format, the next step is to identify the most talkative characters of the trilogy. This implies performing a frequency analysis to detect the *most talkative* characters, that is, the characters with the greatest number of dialogues in english. Unfortunately, Artoo and Chewie are excluded since they don't speak english. The R script for this step is: +``` +get_top_characters.R +``` +The output file is: +``` +top_chars_by_eps.txt +``` +------------------------------------ +### Step 3) Network between top characters +Having identified the top characters (ie most talkative ones) of the trilogy, the following step is to get a network between them. The way I get the network is by looking at associations between the words that appear in the dialogues of the top characters. This process implies a text mining analysis with the help of the ```tm``` package. In turn, the network is obtained by using the ```igraph``` package. The R script for this step is: +``` +get_top_characters_network.R +``` +The output files are: +``` +top_chars_network.txt +weight_edges_graph1.txt +weight_edges_graph2.txt +``` +For exploratory purposes, we can get some preliminary visualizations using some of the plotting functions: +``` +1. arcDiagram.R +2. arcPies.R +3. arcBands.R +``` +------------------------------------ +### Step 4) Identify top terms of top characters +The next step is to identify the top terms said by the top characters, according to the episodes in which they appear. The results obtained in this phase are used for plotting the bar-charts below each character in the final arc-diagram. The R script for this step is: +``` +get_terms_by_episodes.R +``` +The output file is: +``` +top_char_terms.txt +``` +------------------------------------ +### Step 5) Ultimate Arc-Diagram +The last step is to get the final arc-diagram containing the top characters, their participation by episode, and the associated top terms from their dialogues. The size of the bands around each character reflect how much they talk in the movies, as well as their participation in each episode. The width of the arcs connecting two characters reflect the number of words in common. In turn, the color of the arcs reflect the association between two characters depending on the similarity of the words in their dialogues. The R script for this step is: +``` +ultimate_arc_diagram.R +``` +The plotting function is: +``` +arcBandBars.R +``` diff --git a/Rscripts/arcBandBars.R b/Rscripts/arcBandBars.R new file mode 100644 index 0000000..8881083 --- /dev/null +++ b/Rscripts/arcBandBars.R @@ -0,0 +1,184 @@ +############################################################################ +# Title: arcBandBars.R +# Description: function to plot an arc-diagram with bands and bar-charts +# Author: Gaston Sanchez +# www.gastonsanchez.com +# License: BSD Simplified License +# http://www.opensource.org/license/BSD-3-Clause +# Copyright (c) 2012, Gaston Sanchez +# All rights reserved +############################################################################ + +arcBandBars <- function( + edgelist, bands, bars, col.bands=NULL, sorted=TRUE, decreasing=FALSE, + lwd=NULL, col=NULL, cex=NULL, col.nodes=NULL, cex.terms=NULL, col.terms=NULL, + lend=1, ljoin=2, lmitre=1, bg=NULL, mar=c(4,1,3,1)) +{ + # ARGUMENTS + # edgelist: two-column matrix with edges + # bands: numeric matrix with rows=nodes and columns=numbers + # bars: list of numeric tables with propotions for bar-charts + # sorted: logical to indicate if nodes should be sorted + # decreasing: logical to indicate type of sorting (used only when sorted=TRUE) + # lwd: widths for the arcs (default 1) + # col: color for the arcs (default "gray50") + # cex: magnification of the nodes labels (default 1) + # col.nodes: color of the nodes labels (default "gray50") + # cex.terms: magnification of the terms in bar charts + # col.terms: color of the terms in bar charts + # lend: the line end style for the arcs (see par) + # ljoin: the line join style for the arcs (see par) + # lmitre: the line mitre limit fort the arcs (see par) + # bg: background color (default "white") + # mar: numeric vector for margins (see par) + + # make sure edgelist is a two-col matrix + if (!is.matrix(edgelist) || ncol(edgelist)!=2) + stop("argument 'edgelist' must be a two column matrix") + edges = edgelist + # how many edges + ne = nrow(edges) + # get nodes + nodes = unique(as.vector(edges)) + nums = seq_along(nodes) + # how many nodes + nn = length(nodes) + # ennumerate + if (sorted) { + nodes = sort(nodes, decreasing=decreasing) + nums = order(nodes, decreasing=decreasing) + } + # make sure bands is correct + if (!is.matrix(bands) && !is.data.frame(bands)) + stop("argument 'bands' must be a numeric matrix or data frame") + if (is.data.frame(bands)) + bands = as.matrix(bands) + if (nrow(bands) != nn) + stop("number of rows in 'bands' is different from number of nodes") + + # check default argument values + if (is.null(lwd)) lwd = rep(1, ne) + if (length(lwd) != ne) lwd = rep(lwd, length=ne) + if (is.null(col)) col = rep("gray50", ne) + if (length(col) != ne) col = rep(col, length=ne) + if (is.null(col.nodes)) col.nodes = rep("gray50", nn) + if (length(col.nodes) != nn) col.nodes = rep(col.nodes, length=nn) + if (!is.null(cex) && length(cex) != nn) cex = rep(cex, length=nn) + if (is.null(bg)) bg = "white" + + # nodes frequency from bands + nf = rowSums(bands) / sum(bands) + # words center coordinates + fin = cumsum(nf) + ini = c(0, cumsum(nf)[-nn]) + centers = (ini + fin) / 2 + names(centers) = nodes + # node radiums + nrads = nf / 2 + + # arcs coordinates + # matrix with numeric indices + e_num = matrix(0, nrow(edges), ncol(edges)) + for (i in 1:nrow(edges)) + { + e_num[i,1] = centers[which(nodes == edges[i,1])] + e_num[i,2] = centers[which(nodes == edges[i,2])] + } + # max arc radius + radios = abs(e_num[,1] - e_num[,2]) / 2 + max_radios = which(radios == max(radios)) + max_rad = unique(radios[max_radios] / 2) + # arc locations + locs = rowSums(e_num) / 2 + + # function to get pie segments + t2xy <- function(x1, y1, u, rad) + { + t2p <- pi * u + 0 * pi/180 + list(x2 = x1 + rad * cos(t2p), y2 = y1 + rad * sin(t2p)) + } + + # plot + par(mar = mar, bg=bg) + plot.new() + plot.window(xlim=c(-0.025, 1.025), ylim=c(-0.7*max_rad, 1*max_rad*2)) + # plot connecting arcs + z = seq(0, pi, l=100) + for (i in 1:ne) + { + radio = radios[i] + x = locs[i] + radio * cos(z) + y = radio * sin(z) + lines(x, y, col=col[i], lwd=lwd[i], + lend=lend, ljoin=ljoin, lmitre=lmitre) + } + # plot node bands + for (i in 1:nn) + { + radius = nrads[i] + p = c(0, cumsum(bands[i,] / sum(bands[i,]))) + dp = diff(p) + np = length(dp) + angle <- rep(45, length.out = np) + for (k in 1:np) + { + n <- max(2, floor(200 * dp[k])) + P <- t2xy(centers[i], 0, seq.int(p[k], p[k+1], length.out=n), rad=radius) + polygon(c(P$x2, centers[i]), c(P$y2, 0), angle=angle[i], + border=NA, col=col.bands[k], lty=0) + } + # draw white circles + theta = seq(0, pi, length=100) + x3 = centers[i] + 0.7*nrads[i] * cos(theta) + y3 = 0 + 0.7*nrads[i] * sin(theta) + polygon(x3, y3, col=bg, border=bg, lty=1, lwd=2) + } + # add node names + if (is.null(cex)) { + cex = nf + cex[nf < 0.01] = 0.01 + cex = cex * 5 + } + # add node names + text(centers, 0, nodes, cex=cex, adj=c(0.5,0), col=col.nodes) + + # plot bar-charts below each node + # mwax number of bar-charts divisions + bar_divs = max(sapply(bars, nrow)) + 1 + # heights (I'm adding one more division to plot blank lines) + yh = seq(-0.05*max_rad, -0.7*max_rad, length.out=bar_divs+1) + # default cex effect for the terms + if (is.null(cex.terms)) { + cex.terms = nf + cex.terms[nf < 0.01] = 0.01 + cex.terms = cex.termsex * 3 + } + # for each node + for (w in nums) + { + xrange = fin[w] - ini[w] + # for each adjunct term + nadjs = nrow(bars[[w]]) + nc = ncol(bars[[w]]) + for (i in 1:nadjs) + { + Bp_ranges = bars[[w]][i,] * xrange + ord = order(Bp_ranges, decreasing=TRUE) + Bp_ranges_ord = sort(Bp_ranges, decreasing=TRUE) + Bp_intervals = ini[w] + cumsum(Bp_ranges_ord) + x_start = c(ini[w], Bp_intervals[-nc]) + x_end = Bp_intervals + cols_ord = col.bands[ord] + for (j in 1:nc) + { + rect(x_start[j], yh[i+1], x_end[j], yh[i], col=cols_ord[j], + border=NA, lwd=0, lty=1) + } + # add white line in right border + lines(rep(x_end[nc],nadjs+1), yh[1:(nadjs+1)], col=bg) + # add labels of terms + text(x_start[1], yh[i+1], rownames(bars[[w]])[i], + col=col.terms, cex=cex.terms[w], adj=c(-0.05,-0.4)) + } + } +} diff --git a/Rscripts/arcBands.R b/Rscripts/arcBands.R new file mode 100644 index 0000000..a1c0811 --- /dev/null +++ b/Rscripts/arcBands.R @@ -0,0 +1,144 @@ +############################################################################ +# Title: arcBands.R +# Description: function to plot a basic arc-diagram with bands +# Author: Gaston Sanchez +# www.gastonsanchez.com +# License: BSD Simplified License +# http://www.opensource.org/license/BSD-3-Clause +# Copyright (c) 2012, Gaston Sanchez +# All rights reserved +############################################################################ + + +arcBands <- function( + edgelist, bands, col.bands=NULL, + sorted=TRUE, decreasing=FALSE, lwd=NULL, + col=NULL, cex=NULL, col.nodes=NULL, lend=1, ljoin=2, lmitre=1, + las=2, bg=NULL, mar=c(4,1,3,1)) +{ + # ARGUMENTS + # edgelist: two-column matrix with edges + # bands: numeric matrix with rows=nodes and columns=numbers + # sorted: logical to indicate if nodes should be sorted + # decreasing: logical to indicate type of sorting (used only when sorted=TRUE) + # lwd: widths for the arcs (default 1) + # col: color for the arcs (default "gray50") + # cex: magnification of the nodes labels (default 1) + # col.nodes: color of the nodes labels (default "gray50") + # lend: the line end style for the arcs (see par) + # ljoin: the line join style for the arcs (see par) + # lmitre: the line mitre limit fort the arcs (see par) + # las: numeric in {0,1,2,3}; the style of axis labels (see par) + # bg: background color (default "white") + # mar: numeric vector for margins (see par) + + # make sure edgelist is a two-col matrix + if (!is.matrix(edgelist) || ncol(edgelist)!=2) + stop("argument 'edgelist' must be a two column matrix") + edges = edgelist + # how many edges + ne = nrow(edges) + # get nodes + nodes = unique(as.vector(edges)) + nums = seq_along(nodes) + # how many nodes + nn = length(nodes) + # ennumerate + if (sorted) { + nodes = sort(nodes, decreasing=decreasing) + nums = order(nodes, decreasing=decreasing) + } + # make sure bands is correct + if (!is.matrix(bands) && !is.data.frame(bands)) + stop("argument 'bands' must be a numeric matrix or data frame") + if (is.data.frame(bands)) + bands = as.matrix(bands) + if (nrow(bands) != nn) + stop("number of rows in 'bands' is different from number of nodes") + + # check default argument values + if (is.null(lwd)) lwd = rep(1, ne) + if (length(lwd) != ne) lwd = rep(lwd, length=ne) + if (is.null(col)) col = rep("gray50", ne) + if (length(col) != ne) col = rep(col, length=ne) + if (is.null(col.nodes)) col.nodes = rep("gray50", nn) + if (length(col.nodes) != nn) col.nodes = rep(col.nodes, length=nn) + if (!is.null(cex) && length(cex) != nn) cex = rep(cex, length=nn) + if (is.null(bg)) bg = "white" + + # nodes frequency from bands + nf = rowSums(bands) / sum(bands) + # words center coordinates + fin = cumsum(nf) + ini = c(0, cumsum(nf)[-nn]) + centers = (ini + fin) / 2 + names(centers) = nodes + # node radiums + nrads = nf / 2 + + # arcs coordinates + # matrix with numeric indices + e_num = matrix(0, nrow(edges), ncol(edges)) + for (i in 1:nrow(edges)) + { + e_num[i,1] = centers[which(nodes == edges[i,1])] + e_num[i,2] = centers[which(nodes == edges[i,2])] + } + # max arc radius + radios = abs(e_num[,1] - e_num[,2]) / 2 + max_radios = which(radios == max(radios)) + max_rad = unique(radios[max_radios] / 2) + # arc locations + locs = rowSums(e_num) / 2 + + # function to get pie segments + t2xy <- function(x1, y1, u, rad) + { + t2p <- pi * u + 0 * pi/180 + list(x2 = x1 + rad * cos(t2p), y2 = y1 + rad * sin(t2p)) + } + + # plot + par(mar = mar, bg = bg) + plot.new() + plot.window(xlim=c(-0.025, 1.025), ylim=c(0, 1*max_rad*2)) + # plot connecting arcs + z = seq(0, pi, l=100) + for (i in 1:ne) + { + radio = radios[i] + x = locs[i] + radio * cos(z) + y = radio * sin(z) + lines(x, y, col=col[i], lwd=lwd[i], + lend=lend, ljoin=ljoin, lmitre=lmitre) + } + # plot node bands + for (i in 1:nn) + { + radius = nrads[i] + p = c(0, cumsum(bands[i,] / sum(bands[i,]))) + dp = diff(p) + np = length(dp) + angle <- rep(45, length.out = np) + for (k in 1:np) + { + n <- max(2, floor(200 * dp[k])) + P <- t2xy(centers[i], 0, seq.int(p[k], p[k+1], length.out=n), rad=radius) + polygon(c(P$x2, centers[i]), c(P$y2, 0), angle=angle[i], + border=NA, col=col.bands[k], lty=0) + } + # draw white circles + theta = seq(0, pi, length=100) + x3 = centers[i] + 0.7*nrads[i] * cos(theta) + y3 = 0 + 0.7*nrads[i] * sin(theta) + polygon(x3, y3, col=bg, border=bg, lty=1, lwd=2) + } + # add node names + if (is.null(cex)) { + cex = nf + cex[nf < 0.01] = 0.01 + cex = cex * 5 + } + # add node names + text(centers, 0, nodes, cex=cex, adj=c(0.5,0), col=col.nodes) +} diff --git a/Rscripts/arcDiagram.R b/Rscripts/arcDiagram.R new file mode 100644 index 0000000..50e6440 --- /dev/null +++ b/Rscripts/arcDiagram.R @@ -0,0 +1,101 @@ +############################################################################ +# Title: arcDiagram.R +# Description: function to plot a basic arc-diagram +# Author: Gaston Sanchez +# www.gastonsanchez.com +# License: BSD Simplified License +# http://www.opensource.org/license/BSD-3-Clause +# Copyright (c) 2012, Gaston Sanchez +# All rights reserved +############################################################################ + + +arcDiagram <- function( + edgelist, sorted=TRUE, decreasing=FALSE, lwd=NULL, + col=NULL, cex=NULL, col.nodes=NULL, lend=1, ljoin=2, lmitre=1, + las=2, bg=NULL, mar=c(4,1,3,1)) +{ + # ARGUMENTS + # edgelist: two-column matrix with edges + # sorted: logical to indicate if nodes should be sorted + # decreasing: logical to indicate type of sorting (used only when sorted=TRUE) + # lwd: widths for the arcs (default 1) + # col: color for the arcs (default "gray50") + # cex: magnification of the nodes labels (default 1) + # col.nodes: color of the nodes labels (default "gray50") + # lend: the line end style for the arcs (see par) + # ljoin: the line join style for the arcs (see par) + # lmitre: the line mitre limit fort the arcs (see par) + # las: numeric in {0,1,2,3}; the style of axis labels (see par) + # bg: background color (default "white") + # mar: numeric vector for margins (see par) + + # make sure edgelist is a two-col matrix + if (!is.matrix(edgelist) || ncol(edgelist)!=2) + stop("argument 'edgelist' must be a two column matrix") + edges = edgelist + # how many edges + ne = nrow(edges) + # get nodes + nodes = unique(as.vector(edges)) + nums = seq_along(nodes) + # how many nodes + nn = length(nodes) + # ennumerate + if (sorted) { + nodes = sort(nodes, decreasing=decreasing) + nums = order(nodes, decreasing=decreasing) + } + # check default argument values + if (is.null(lwd)) lwd = rep(1, ne) + if (length(lwd) != ne) lwd = rep(lwd, length=ne) + if (is.null(col)) col = rep("gray50", ne) + if (length(col) != ne) col = rep(col, length=ne) + if (is.null(cex)) cex = rep(1, nn) + if (length(cex) != nn) cex = rep(cex, length=nn) + if (is.null(col.nodes)) col.nodes = rep("gray50", nn) + if (length(col.nodes) != nn) col.nodes = rep(col.nodes, length=nn) + if (is.null(bg)) bg = "white" + + # node labels coordinates + nf = rep(1 / nn, nn) + # node labels center coordinates + fin = cumsum(nf) + ini = c(0, cumsum(nf)[-nn]) + centers = (ini + fin) / 2 + names(centers) = nodes + + # arcs coordinates + # matrix with numeric indices + e_num = matrix(0, nrow(edges), ncol(edges)) + for (i in 1:nrow(edges)) + { + e_num[i,1] = centers[which(nodes == edges[i,1])] + e_num[i,2] = centers[which(nodes == edges[i,2])] + } + # max arc radius + radios = abs(e_num[,1] - e_num[,2]) / 2 + max_radios = which(radios == max(radios)) + max_rad = unique(radios[max_radios] / 2) + # arc locations + locs = rowSums(e_num) / 2 + + # plot + par(mar = mar, bg = bg) + plot.new() + plot.window(xlim=c(-0.025, 1.025), ylim=c(0, 1*max_rad*2)) + # plot connecting arcs + z = seq(0, pi, l=100) + for (i in 1:nrow(edges)) + { + radio = radios[i] + x = locs[i] + radio * cos(z) + y = radio * sin(z) + lines(x, y, col=col[i], lwd=lwd[i], + lend=lend, ljoin=ljoin, lmitre=lmitre) + } + # add node names + mtext(nodes, side=1, line=0, at=centers, cex=cex, + col=col.nodes, las=las) +} + diff --git a/Rscripts/arcPies.R b/Rscripts/arcPies.R new file mode 100644 index 0000000..1f13448 --- /dev/null +++ b/Rscripts/arcPies.R @@ -0,0 +1,136 @@ +############################################################################ +# Title: arcPies.R +# Description: function to plot a basic arc-diagram w/ pie charts on nodes +# Author: Gaston Sanchez +# www.gastonsanchez.com +# License: BSD Simplified License +# http://www.opensource.org/license/BSD-3-Clause +# Copyright (c) 2012, Gaston Sanchez +# All rights reserved +############################################################################ + + +arcPies <- function( + edgelist, pies, col.pies=NULL, + sorted=TRUE, decreasing=FALSE, lwd=NULL, + col=NULL, cex=NULL, col.nodes=NULL, lend=1, ljoin=2, lmitre=1, + las=2, bg=NULL, mar=c(4,1,3,1)) +{ + # ARGUMENTS + # edgelist: two-column matrix with edges + # pies: numeric matrix with rows=nodes and columns=numbers + # col.pies: color vector for pie charts + # sorted: logical to indicate if nodes should be sorted + # decreasing: logical to indicate type of sorting (used only when sorted=TRUE) + # lwd: widths for the arcs (default 1) + # col: color for the arcs (default "gray50") + # cex: magnification of the nodes labels (default 1) + # col.nodes: color of the nodes labels (default "gray50") + # lend: the line end style for the arcs (see par) + # ljoin: the line join style for the arcs (see par) + # lmitre: the line mitre limit fort the arcs (see par) + # las: numeric in {0,1,2,3}; the style of axis labels (see par) + # bg: background color (default "white") + # mar: numeric vector for margins (see par) + + # make sure edgelist is a two-col matrix + if (!is.matrix(edgelist) || ncol(edgelist)!=2) + stop("argument 'edgelist' must be a two column matrix") + edges = edgelist + # how many edges + ne = nrow(edges) + # get nodes + nodes = unique(as.vector(edges)) + nums = seq_along(nodes) + # how many nodes + nn = length(nodes) + # ennumerate + if (sorted) { + nodes = sort(nodes, decreasing=decreasing) + nums = order(nodes, decreasing=decreasing) + } + # make sure pies is correct + if (!is.matrix(pies) && !is.data.frame(pies)) + stop("argument 'pies' must be a numeric matrix or data frame") + if (is.data.frame(pies)) + pies = as.matrix(pies) + if (nrow(pies) != nn) + stop("number of rows in 'pies' is different from number of nodes") + # check default argument values + if (is.null(col.pies)) + col.pies = rainbow(ncol(pies)) + if (is.null(lwd)) lwd = rep(1, ne) + if (length(lwd) != ne) lwd = rep(lwd, length=ne) + if (is.null(col)) col = rep("gray50", ne) + if (length(col) != ne) col = rep(col, length=ne) + if (is.null(cex)) cex = rep(1, nn) + if (length(cex) != nn) cex = rep(cex, length=nn) + if (is.null(col.nodes)) col.nodes = rep("gray50", nn) + if (length(col.nodes) != nn) col.nodes = rep(col.nodes, length=nn) + if (is.null(bg)) bg = "white" + + # node labels coordinates + nf = rep(1 / nn, nn) + # node labels center coordinates + fin = cumsum(nf) + ini = c(0, cumsum(nf)[-nn]) + centers = (ini + fin) / 2 + # node radiums for pies + nrads = nf / 2.2 + + # arcs coordinates + # matrix with numeric indices + e_num = matrix(0, nrow(edges), ncol(edges)) + for (i in 1:nrow(edges)) + { + e_num[i,1] = centers[which(nodes == edges[i,1])] + e_num[i,2] = centers[which(nodes == edges[i,2])] + } + # max arc radius + radios = abs(e_num[,1] - e_num[,2]) / 2 + max_radios = which(radios == max(radios)) + max_rad = unique(radios[max_radios] / 2) + # arc locations + locs = rowSums(e_num) / 2 + + # function to get pie segments + t2xy <- function(x1, y1, u, rad) + { + t2p <- pi * u + 0 * pi/180 + list(x2 = x1 + rad * cos(t2p), y2 = y1 + rad * sin(t2p)) + } + + # plot + par(mar = mar, bg = bg) + plot.new() + plot.window(xlim=c(-0.025, 1.025), ylim=c(0, 1*max_rad*2)) + # plot connecting arcs + z = seq(0, pi, l=100) + for (i in 1:ne) + { + radio = radios[i] + x = locs[i] + radio * cos(z) + y = radio * sin(z) + lines(x, y, col=col[i], lwd=lwd[i], + lend=lend, ljoin=ljoin, lmitre=lmitre) + } + # plot nodes pie charts + for (i in 1:nn) + { + radius = nrads[i] + p = c(0, cumsum(pies[i,] / sum(pies[i,]))) + dp = diff(p) + np = length(dp) + angle <- rep(45, length.out = np) + for (k in 1:np) + { + n <- max(2, floor(200 * dp[k])) + P <- t2xy(centers[i], 0, seq.int(p[k], p[k+1], length.out=n), rad=radius) + polygon(c(P$x2, centers[i]), c(P$y2, 0), angle=angle[i], + border=NA, col=col.pies[k], lty=0) + } + } + # add node names + mtext(nodes, side=1, line=0, at=centers, cex=cex, + col=col.nodes, las=las) +} diff --git a/Rscripts/get_top_char_terms_by_eps.R b/Rscripts/get_top_char_terms_by_eps.R new file mode 100644 index 0000000..fe671f4 --- /dev/null +++ b/Rscripts/get_top_char_terms_by_eps.R @@ -0,0 +1,252 @@ +############################################################################ +# Title: get_top_char_terms_by_eps.R +# Description: Script to get the top-10 terms of the top characters +# for each episode +# Input files: top_chars_by_eps.txt +# SW_EpisodeIV.txt +# SW_EpisodeV.txt +# SW_EpisodeVI.txt +# Author: Gaston Sanchez +# www.gastonsanchez.com +# License: BSD Simplified License +# http://www.opensource.org/license/BSD-3-Clause +# Copyright (c) 2012, Gaston Sanchez +# All rights reserved +############################################################################ + +# set your working directory (don't use mine!) +# setwd("/Users/gaston/Documents/Gaston/GoogleSite/StarWars") + +# load package tm +require(tm) + +# import data tables +Ep4 = read.table("SW_EpisodeIV.txt") +Ep5 = read.table("SW_EpisodeV.txt") +Ep6 = read.table("SW_EpisodeVI.txt") + +# select dialogues +diags4 = Ep4[,2] +diags5 = Ep5[,2] +diags6 = Ep6[,2] + +# select characters +chars4 = Ep4[,1] +chars5 = Ep5[,1] +chars6 = Ep6[,1] + +# import 'top_chars_by_eps.txt' +top_chars_by_eps = read.table("top_chars_by_eps.txt") + +# top character names (sorted) +aux_top_chars = rownames(top_chars_by_eps) + +# ===================================================================== +# Episode IV: get most frequent terms of top characters +# ===================================================================== + +# identify top characters in episode IV +aux_chars4 = chars4 %in% aux_top_chars +top_chars_eps4 = unique(chars4[aux_chars4]) +# empty vector to collect dialogues of top chars +diag4_top_chars = rep("", length(top_chars_eps4)) +# collect dialogues for top characters +for (i in 1:length(top_chars_eps4)) +{ + diag4_top_chars[i] = paste(diags4[chars4 == top_chars_eps4[i]], collapse=" ") +} +names(diag4_top_chars) = top_chars_eps4 + +# get corpus for top characters in episode IV +diag4_corpus = Corpus(VectorSource(diag4_top_chars)) + +# apply text transformatioins +diag4_corpus = tm_map(diag4_corpus, tolower) +diag4_corpus = tm_map(diag4_corpus, removeWords, + c(stopwords("english"),"comlink")) +diag4_corpus = tm_map(diag4_corpus, removeNumbers) +diag4_corpus = tm_map(diag4_corpus, removePunctuation) +diag4_corpus = tm_map(diag4_corpus, stripWhitespace) + +# term-document matrix +diag4_tdm = TermDocumentMatrix(diag4_corpus) +dim(diag4_tdm) +diag4_tdm = as.matrix(diag4_tdm) +# get top terms for top characters in episode IV +diag4_top_terms = as.list(1:ncol(diag4_tdm)) +for (j in 1:ncol(diag4_tdm)) +{ + aux = sort(diag4_tdm[,j], decreasing=TRUE) + diag4_top_terms[[j]] = head(aux, 10) +} +names(diag4_top_terms) = colnames(diag4_tdm) + + +# ===================================================================== +# Episode V: get most frequent terms of top characters +# ===================================================================== + +# identify top characters in episode V +aux_chars5 = chars5 %in% aux_top_chars +top_chars_eps5 = unique(chars5[aux_chars5]) +# empty vector to collect dialogues of top chars +diag5_top_chars = rep("", length(top_chars_eps5)) +# collect dialogues for top characters +for (i in 1:length(top_chars_eps5)) +{ + diag5_top_chars[i] = paste(diags5[chars5 == top_chars_eps5[i]], collapse=" ") +} +names(diag5_top_chars) = top_chars_eps5 + +# get corpus for top characters in episode V +diag5_corpus = Corpus(VectorSource(diag5_top_chars)) + +# apply text transformations +diag5_corpus = tm_map(diag5_corpus, tolower) +diag5_corpus = tm_map(diag5_corpus, removeWords, + c(stopwords("english"),"comlink")) +diag5_corpus = tm_map(diag5_corpus, removeNumbers) +diag5_corpus = tm_map(diag5_corpus, removePunctuation) +diag5_corpus = tm_map(diag5_corpus, stripWhitespace) + +# term-document matrix +diag5_tdm = TermDocumentMatrix(diag5_corpus) +dim(diag5_tdm) +diag5_tdm = as.matrix(diag5_tdm) +# get top terms for top characters in episode V +diag5_top_terms = as.list(1:ncol(diag5_tdm)) +for (j in 1:ncol(diag5_tdm)) +{ + aux = sort(diag5_tdm[,j], decreasing=TRUE) + diag5_top_terms[[j]] = head(aux, 10) +} +names(diag5_top_terms) = colnames(diag5_tdm) + + +# ===================================================================== +# Episode VI: get most frequent terms of top characters +# ===================================================================== + +# identify top characters in episode VI +aux_chars6 = chars6 %in% aux_top_chars +top_chars_eps6 = unique(chars6[aux_chars6]) +# empty vector to collect dialogues of top chars +diag6_top_chars = rep("", length(top_chars_eps6)) +# collect dialogues for top characters +for (i in 1:length(top_chars_eps6)) +{ + diag6_top_chars[i] = paste(diags6[chars6 == top_chars_eps6[i]], collapse=" ") +} +names(diag6_top_chars) = top_chars_eps6 + +# get corpus for top characters in episode VI +diag6_corpus = Corpus(VectorSource(diag6_top_chars)) + +# apply text transformations +diag6_corpus = tm_map(diag6_corpus, tolower) +diag6_corpus = tm_map(diag6_corpus, removeWords, + c(stopwords("english"),"comlink")) +diag6_corpus = tm_map(diag6_corpus, removeNumbers) +diag6_corpus = tm_map(diag6_corpus, removePunctuation) +diag6_corpus = tm_map(diag6_corpus, stripWhitespace) + +# term-document matrix +diag6_tdm = TermDocumentMatrix(diag6_corpus) +dim(diag6_tdm) +diag6_tdm = as.matrix(diag6_tdm) +# get top terms for top characters in episode VI +diag6_top_terms = as.list(1:ncol(diag6_tdm)) +for (j in 1:ncol(diag6_tdm)) +{ + aux = sort(diag6_tdm[,j], decreasing=TRUE) + diag6_top_terms[[j]] = head(aux, 10) +} +names(diag6_top_terms) = colnames(diag6_tdm) + + +# ===================================================================== +# Create data tables from diagX_top_terms +# ===================================================================== + +# handy function to join terms and their countings +myfun <- function(x) { + paste(names(x), x, sep="=") +} + +# reshape lists into tables +X4 = sapply(diag4_top_terms, myfun) +X5 = sapply(diag5_top_terms, myfun) +X6 = sapply(diag6_top_terms, myfun) +X = rbind(t(X4), t(X5), t(X6)) + +# create a flag vector indicating the episodes +ntc4 = length(top_chars_eps4) +ntc5 =length(top_chars_eps5) +ntc6 =length(top_chars_eps6) +eps = c(rep(4,ntc4), rep(5,ntc5), rep(6,ntc6)) + +# add flag vector of episodes +X = cbind(X, eps) +# add column names +colnames(X) = c(paste("x", 1:10, sep=""), "eps") + + +# ===================================================================== +# List with data tables of top-chars with top10 terms by episode +# ===================================================================== + +# how many top characters +nc = length(aux_top_chars) +# create list to store results +top_char_terms10 = as.list(1:nc) +# collect results +for (i in 1:nc) +{ + tmp = which(rownames(X) == aux_top_chars[i]) + # split terms and their count number + term_vals = strsplit(t(X[tmp,-11]), "=") + terms = sapply(term_vals, function(x) x[1]) + vals = as.numeric(sapply(term_vals, function(x) x[2])) + epis = rep(X[tmp,11], each=10) + # unique terms + uniq_terms = unique(terms) + # how many times each unique term + uniq_vals = rep(0, length(uniq_terms)) + for (j in seq_along(uniq_terms)) + { + uniq_vals[j] = sum(vals[terms == uniq_terms[j]]) + } + names(uniq_vals) = uniq_terms + # get top 10 terms + top10_terms = head(sort(uniq_vals, decreasing=TRUE), 10) + top10_words = names(top10_terms) + # distribution of top10 terms by episode + auxdf = data.frame(terms, vals, epis=as.numeric(epis)) + DF = data.frame(char=rep(aux_top_chars[i], 10), term=top10_words, + epIV=rep(0,10), epV=rep(0,10), epVI=rep(0,10)) + for (k in 1:10) + { + where_word <- auxdf[,1] == top10_words[k] + DF[k,auxdf[where_word,3]-1] = auxdf[where_word,2] + } + top_char_terms10[[i]] = DF +} + +# ===================================================================== +# Export results in table format to file "top_char_terms.txt" +# ===================================================================== + +# save list of tables in file "top_char_terms.txt" as table format +cat(c("character","term","epIV","epV","epVI"), file="top_char_terms.txt", sep=",") +# write data to outfile file +for (i in 1:nc) +{ + for (j in 1:10) + { + cat("\n", file="top_char_terms.txt", append=TRUE) + cat(unlist(top_char_terms10[[i]][j,]), file="top_char_terms.txt", + sep=",", append=TRUE) + } +} + + diff --git a/Rscripts/get_top_characters.R b/Rscripts/get_top_characters.R new file mode 100644 index 0000000..19e1e33 --- /dev/null +++ b/Rscripts/get_top_characters.R @@ -0,0 +1,102 @@ +############################################################################ +# Title: get_top_characters.R +# Description: Script to identify the most talkative characters +# Input files: SW_EpisodeIV.txt +# SW_EpisodeV.txt +# SW_EpisodeVI.txt +# Author: Gaston Sanchez +# www.gastonsanchez.com +# License: BSD Simplified License +# http://www.opensource.org/license/BSD-3-Clause +# Copyright (c) 2012, Gaston Sanchez +# All rights reserved +############################################################################ + +# set your working directory (don't use mine!) +# setwd("/Users/gaston/Documents/Gaston/GoogleSite/StarWars") + +# load package plyr +require(plyr) + +# import data tables +Ep4 = read.table("SW_EpisodeIV.txt") +Ep5 = read.table("SW_EpisodeV.txt") +Ep6 = read.table("SW_EpisodeVI.txt") + +# select dialogues +diags4 = Ep4[,2] +diags5 = Ep5[,2] +diags6 = Ep6[,2] + +# select characters +chars4 = Ep4[,1] +chars5 = Ep5[,1] +chars6 = Ep6[,1] + +# how many dialogues in each episode +n4 = length(diags4) +n5 = length(diags5) +n6 = length(diags6) + +# ======================================================= +# Find most talkative characters +# ======================================================= +# Keep in mind that Artoo and Chewie are not included +# since they don't really have dialogues in english + +# join characters names +chars = c(chars4, chars5, chars6) +# vector with episode number +eps = c(rep("IV", n4), rep("V", n5), rep("VI", n6)) + +# get absolute frequencies +char_names = table(chars) +# get quantity number of names +y = as.vector(char_names) +# sort by frequency +yord = order(y, decreasing=TRUE) + +# inspect frequencies of names +head(sort(y, decreasing=TRUE)) +head(names(char_names)[yord], 20) +tail(names(char_names)[yord], 20) + +# barplot with the top 20 characters (most talkative) +par(mar = c(7, 4, 4, 1)) +top_chars = head(char_names[yord], 20) +barplot(top_chars, las=2, cex.names=0.7, + border=NA, ylim=c(0,500), ylab="num of dialogues") +title(c("Star Wars (Episodes IV, V, VI)", "top 20 most talkative characters"), + cex.main=0.9) +# get top names +who_top_chars = names(top_chars) + + +# ======================================================= +# Find dialogue frequencies of top characters by episode +# ======================================================= + +# data frame with character names and episodes +char_eps = data.frame(characters=chars, episodes=eps) +# number of dialogues per episode +char_by_eps = ddply(subset(char_eps, characters %in% who_top_chars), + .(characters, episodes), "nrow") +# not exactly in the shape I want it +char_by_eps + +# I want the results in a matrix format +top_chars_by_eps = matrix(0, nrow=length(top_chars), ncol=3) +aux_top_chars = sort(who_top_chars) +for (i in 1:nrow(char_by_eps)) +{ + irow = which(char_by_eps[i,1] == aux_top_chars) + icol = which(char_by_eps[i,2] == c("IV","V","VI")) + top_chars_by_eps[irow, icol] = char_by_eps[i,3] +} +rownames(top_chars_by_eps) = aux_top_chars +colnames(top_chars_by_eps) = c("IV","V","VI") +# this is one of the table for the next steps in the analysis process +top_chars_by_eps + +# export matrix 'top_chars_by_eps' +write.table(top_chars_by_eps, "top_chars_by_eps.txt") diff --git a/Rscripts/get_top_chars_network.R b/Rscripts/get_top_chars_network.R new file mode 100644 index 0000000..2d15874 --- /dev/null +++ b/Rscripts/get_top_chars_network.R @@ -0,0 +1,221 @@ +############################################################################ +# Title: get_top_chars_network.R +# Description: Script to get a network of the top talkative characters +# Input files: top_chars_by_eps.txt +# SW_EpisodeIV.txt +# SW_EpisodeV.txt +# SW_EpisodeVI.txt +# R functions: arcDiagram.R +# Author: Gaston Sanchez +# www.gastonsanchez.com +# License: BSD Simplified License +# http://www.opensource.org/license/BSD-3-Clause +# Copyright (c) 2012, Gaston Sanchez +# All rights reserved +############################################################################ + +# set your working directory (don't use mine!) +# setwd("/Users/gaston/Documents/Gaston/GoogleSite/StarWars") + +# load package tm +require(tm) +require(igraph) + +# import data tables +Ep4 = read.table("SW_EpisodeIV.txt") +Ep5 = read.table("SW_EpisodeV.txt") +Ep6 = read.table("SW_EpisodeVI.txt") + +# select dialogues +diags4 = Ep4[,2] +diags5 = Ep5[,2] +diags6 = Ep6[,2] + +# select characters +chars4 = Ep4[,1] +chars5 = Ep5[,1] +chars6 = Ep6[,1] + +# how many dialogues in each episode +n4 = length(diags4) +n5 = length(diags5) +n6 = length(diags6) + +# import 'top_chars_by_eps.txt' +top_chars_by_eps = read.table("top_chars_by_eps.txt") + + +# ================================================================== +# Get dialogues of top characters +# ================================================================== + +# join characters names +chars = c(chars4, chars5, chars6) + +# join dialogues in one vector +diags = c(diags4, diags5, diags6) + +# how many top characters +ntop = nrow(top_chars_by_eps) +# top character names (sorted) +aux_top_chars = rownames(top_chars_by_eps) + +# create empty vector to collect dialogues of top characters +top_char_diags = rep("", ntop) +# collect dialogues for top characters +for (i in 1:ntop) { + top_char_diags[i] = paste(diags[chars == aux_top_chars[i]], collapse=" ") +} +names(top_char_diags) = aux_top_chars + + +# ================================================================== +# Text mining +# ================================================================== + +# get corpus +diag_corpus = Corpus(VectorSource(top_char_diags)) +# apply some text transformations +diag_corpus = tm_map(diag_corpus, tolower) +diag_corpus = tm_map(diag_corpus, removeWords, + c(stopwords("english"),"comlink")) +diag_corpus = tm_map(diag_corpus, removeNumbers) +diag_corpus = tm_map(diag_corpus, removePunctuation) +diag_corpus = tm_map(diag_corpus, stripWhitespace) + +# get document-term matrix +diag_dtm = DocumentTermMatrix(diag_corpus) +# inspect diag_dtm +# (90% sparsity, which means a lot of empty cells) +diag_dtm +dim(diag_dtm) + +# convert as matrix +diag_mat = as.matrix(diag_dtm) + +# get word count +count_terms = colSums(diag_mat) +hist(count_terms, col="gray80") + +# to simplify, we need to get the less sparsed terms +# for instance, let's get terms >= 90% quantile frequency +which_mfw <- count_terms >= quantile(count_terms, probs=0.90) +sum(which_mfw) +# top 30 terms +mfw = count_terms[which_mfw] +barplot(head(sort(mfw, decreasing=TRUE), 30), + border=NA, las=2) +title(c("Most frequent terms in dialogues", + "(from top characters)"), cex.main=0.9) + + +# ================================================================== +# Network between top characters +# ================================================================== +# In order to get a network between top characters, we first need to +# obtain an adjacency matrix based on the most frequent terms +# (we'll use this matrix to make the graph for the arc-diagram) +# Although we can get an adjacency matrix in several ways, I'm using +# two slightly different approaches (they provide the same graph) +# The difference in the two approaches are in the nodes weights +# which we'll use for plotting the arcs in the arc-diagram + +# Option 1 +# matrix with most frequent terms +mft_mat = diag_mat[,which_mfw] +# first adjacency matrix +adj_mat1 = diag_mat %*% t(diag_mat) +# set zeros in diagonal +diag(adj_mat1) = 0 +# create graph from adjacency matrix +graph_chars1 = graph.adjacency(adj_mat1, mode="undirected", weighted=TRUE, diag=FALSE) +# get edgelist 1 +edges1 = get.edgelist(graph_chars1) + +# Option 2 +# transform mft_mat to a binary (ie boolean) matrix +bin_mat = mft_mat +bin_mat[mft_mat != 0] = 1 +# second adjacency matrix using binary distances +adj_mat2 = dist(bin_mat, method="binary", diag=TRUE, upper=TRUE) +adj_mat2 = 1 - as.matrix(adj_mat2) +# set zeros in the diagonal +diag(adj_mat2) = 0 +# create graph from adjacency matrix +graph_chars2 = graph.adjacency(adj_mat2, mode="undirected", weighted=TRUE, diag=FALSE) +# get edgelist 2 +edges2 = get.edgelist(graph_chars2) + +# the difference between the two graphs is in the weights +a = E(graph_chars1)$weight +b = E(graph_chars2)$weight +summary(a); summary(b) + +# save network in file "top_chars_network.txt" +write.table(edges1, "top_chars_network.txt") +write.table(E(graph_chars1)$weight, "weight_edges_graph1.txt") +write.table(E(graph_chars2)$weight, "weight_edges_graph2.txt") + +# ================================================================== +# Preliminary arc-diagram plots +# ================================================================== + +# let's take a first look to the arc-diagram network +# using the arcDiagram function + +# arc-diagram using default parameters (not very interesting) +arcDiagram(edges1, cex=0.8, mar=c(7,1,4,1)) +title("Preliminary arc-diagram", cex.main=0.9) + +# let's try to improve the arc-diagram tweaking some parameters +# arc widths based on graph_chars1 +w1 = E(graph_chars1)$weight +lwds = sqrt(w1/20) +# arc colors based on graph-chars2 +w2 = E(graph_chars2)$weight +cols = hsv(h=0, s=w2/max(w2), v=0, alpha=0.5*w2/max(w2)) + +# The width of the arcs connecting two characters reflect the number +# of words in common. In turn, the color of the arcs reflect the +# association between two characters depending on the similarity +# of the words in their dialogues. +# arc-diagram +arcDiagram(edges1, lwd=lwds, col=cols, cex=0.8, mar=c(7,1,4,1)) +title("Preliminary arc-diagram", cex.main=0.9) + + +# ================================================================== +# Arc-diagram with pie charts +# ================================================================== + +# now let's add some pie-charts in each node to reflect the +# dialogues participation proportion of each character by episode + +# arc-diagram with pie charts on nodes +# color bands (of episodes VI, V, IV) +col.pies = c("#C7F464", "#4ECDC4", "#556270") +# arc-diagram with pie charts +arcPies(edges1, top_chars_by_eps, cex=1, col.pies=col.pies, + lwd=lwds, col=cols, mar=c(7,1,4,1)) +title("Arc-diagram with pie charts", cex.main=0.9) +legend(x=0.9, y=0.5, title="Episodes", text.col="gray65", cex=0.8, + legend=c("IV","V","VI"), pch=19, col=col.pies, bty="n") + + +# ================================================================== +# Arc-diagram with bands +# ================================================================== + +# We can add more visual effects by making the size of the nodes +# proportional to the importance of each character. In addition, +# we can substitute the pie-charts for band-charts + +# arc-diagram with bands on nodes +# color bands (of episodes VI, V, IV) +col.bands = c("#C7F464", "#4ECDC4", "#556270") +# arc-diagram with bands +arcBands(edges1, top_chars_by_eps, col.bands=col.bands, + lwd=lwds, col=cols, mar=c(4,1,4,1)) +title("Arc-diagram with bands", cex.main=0.9) +legend(x=0.9, y=0.5, title="Episodes", text.col="gray65", cex=0.8, + legend=c("IV","V","VI"), pch=19, col=col.bands, bty="n") diff --git a/Rscripts/parsing_episodeIV.R b/Rscripts/parsing_episodeIV.R new file mode 100644 index 0000000..6357111 --- /dev/null +++ b/Rscripts/parsing_episodeIV.R @@ -0,0 +1,114 @@ +############################################################################ +# Title: parsing_episodeIV.R +# Description: Script to parse Star Wars Episode IV (text file) +# Input file: StarWars_EpisodeIV_script.txt +# Author: Gaston Sanchez +# www.gastonsanchez.com +# License: BSD Simplified License +# http://www.opensource.org/license/BSD-3-Clause +# Copyright (c) 2012, Gaston Sanchez +# All rights reserved +############################################################################ + +# set your working directory (don't use mine!) +# setwd("/Users/gaston/Documents/Gaston/GoogleSite/StarWars") + +# read episode IV script in R (this is a character vector) +sw = readLines("StarWars_EpisodeIV_script.txt") + +# inspect first 70 lines +# you'll see that the first dialogue is from THREEPIO in line 52 +sw[1:70] + +# command to extract character name (just for demo purposes) +substr(sw[52], 21, nchar(sw[52])) +# command to extract dialogue text (just for demo purposes) +substr(sw[53], 11, nchar(sw[53])) + +# we need these auxiliary strings to help us +# extract character names and their dialogues +b10 = " " +b20 = " " + +# how many lines in input file +nlines = length(sw) + +# let's parse the entire script while extracting only the names of the +# characters and their dialogues. The output file is EpisodeIV_dialogues.txt + +# write first line in output file +writeLines("STAR WARS - EPISODE 4: STAR WARS", "EpisodeIV_dialogues.txt") + +# the first 50 lines don't contain dialogues +# start reading at line 50 +i = 50 + +# while loop to extract character and dialogues +# you may get some errors, just ignore them and re-run +# the while loop as many times as needed +while (i <= nlines) +{ + # if empty line + if (sw[i] == "") i = i + 1 # next line + # if text line + if (sw[i] != "") + { + # if script description + if (substr(sw[i], 1, 1) != " ") i = i + 1 # next line + if (nchar(sw[i]) < 10) i = i + 1 # next line + # if character name + if (substr(sw[i], 1, 20) == b20) + { + if (substr(sw[i], 21, 21) != " ") + { + tmp_name = substr(sw[i], 21, nchar(sw[i], "bytes")) + cat("\n", file="EpisodeIV_dialogues.txt", append=TRUE) + cat(tmp_name, "", file="EpisodeIV_dialogues.txt", sep="\t", append=TRUE) + i = i + 1 + } else { + i = i + 1 + } + } + # if dialogue + if (substr(sw[i], 1, 10) == b10) + { + if (substr(sw[i], 11, 11) != " ") + { + tmp_diag = substr(sw[i], 11, nchar(sw[i], "bytes")) + cat(tmp_diag, file="EpisodeIV_dialogues.txt", append=TRUE) + i = i + 1 + } else { + i = i + 1 + } + } + } +} + + +# ===================================================================== +# Creating data table "SW_EpisodeIV.txt" +# ===================================================================== + +# how many lines in output file +system("wc -l EpisodeIV_dialogues.txt") + +# get vector of character names +SW4_chars = system("tail -n1010 EpisodeIV_dialogues.txt | cut -f1", intern=TRUE) +# get vector of dialogue lines +SW4_diags = system("tail -n1010 EpisodeIV_dialogues.txt | cut -f2", intern=TRUE) + +# check character names +table(SW4_chars) +# remove voices +SW4_chars = gsub("'S VOICE", "", SW4_chars) + +# join characters and dialogues in one table +SW4 = cbind(character=SW4_chars, dialogue=SW4_diags) + +# save SW4 in file 'SW_EpisodeIV.txt' +write.table(SW4, file="SW_EpisodeIV.txt") + +# if you want to check the data table +# A = read.table("SW_EpisodeIV.txt") +# head(A) +# tail(A) diff --git a/Rscripts/parsing_episodeV.R b/Rscripts/parsing_episodeV.R new file mode 100644 index 0000000..63ea7af --- /dev/null +++ b/Rscripts/parsing_episodeV.R @@ -0,0 +1,101 @@ +############################################################################ +# Title: parsing_episodeV.R +# Description: Script to parse Star Wars Episode V (text file) +# Input file: StarWars_EpisodeV_script.txt +# Author: Gaston Sanchez +# www.gastonsanchez.com +# License: BSD Simplified License +# http://www.opensource.org/license/BSD-3-Clause +# Copyright (c) 2012, Gaston Sanchez +# All rights reserved +############################################################################ + +# set your working directory (don't use mine!) +# setwd("/Users/gaston/Documents/Gaston/GoogleSite/StarWars") + +# read episode IV script in R (this is a character vector) +sw = readLines("StarWars_EpisodeV_script.txt") + +# inspect first 70 lines +# you'll see that the first dialogue is from LUKE in line 64 +sw[1:70] + +# how many lines in input file +nlines = length(sw) +# we can start reading at line 30, for instance +i = 30 + +# auxiliary flag to indicate if the current line is part +# of the same dialogue +current = FALSE + +# write title line in output file +writeLines("STAR WARS - EPISODE 5: THE EMPIRE STRIKES BACK", "EpisodeV_dialogues.txt") + +# while loop to extract character and dialogues +# you may get some errors, just ignore them and re-run +# the while loop as many times as needed +i = i + 1 +while (i <= nlines) +{ + # if empty line + if (sw[i] == "" || substr(sw[i], 1, 1) == " ") { + current = FALSE + i = i + 1 # next line + } else { + # EXTERIOR or INTERIOR (we don't want these lines) + if (str_extract(sw[i], "\\w+") %in% c("INTERIOR", "EXTERIOR")) + { + current = FALSE + i = i + 1 + } else { + # good dialogue + if (!current) { + cat("\n", file="EpisodeV_dialogues.txt", append=TRUE) + cat(sw[i], "", file="EpisodeV_dialogues.txt", append=TRUE) + i = i + 1 + current = TRUE + } else { + cat("", sw[i], file="EpisodeV_dialogues.txt", append=TRUE) + i = i + 1 + current = TRUE + } + } + } +} + + +# ========================================================================= +# Creating data table "SW_EpisodeIV.txt" +# ========================================================================= + +# how many lines in output file +system("wc -l EpisodeV_dialogues.txt") + +# get vector of character names +SW5_chars = system("tail -n839 EpisodeV_dialogues.txt | cut -f1 -d':'", intern=TRUE) +# get vector of dialogue lines +SW5_diags = system("tail -n839 EpisodeV_dialogues.txt | cut -f2 -d':'", intern=TRUE) + +# check character names +table(SW5_chars) +# remove apostrophes voices +SW5_chars = gsub("'S VOICE", "", SW5_chars) + +# remove strings between parenthesis in dialogues +SW5_diags = gsub("\\((.*?)\\)", "", SW5_diags) + +# remove extra white spaces at the beginning and the end of dialogues +SW5_diags = gsub("^\\s+", "", SW5_diags) +SW5_diags = gsub("\\s+$", "", SW5_diags) + +# join characters and dialogues in one table +SW5 = cbind(character=SW5_chars, dialogue=SW5_diags) +# save SW5 in file 'SW_EpisodeV.txt' +write.table(SW5, file="SW_EpisodeV.txt") + +# if you want to check the data table +# A = read.table("SW_EpisodeV.txt") +# head(A) +# tail(A) + diff --git a/Rscripts/parsing_episodeVI.R b/Rscripts/parsing_episodeVI.R new file mode 100644 index 0000000..cb0b236 --- /dev/null +++ b/Rscripts/parsing_episodeVI.R @@ -0,0 +1,140 @@ +############################################################################ +# Title: parsing_episodeVI.R +# Description: Script to parse Star Wars Episode VI (text file) +# Input file: StarWars_EpisodeVI_script.txt +# Author: Gaston Sanchez +# www.gastonsanchez.com +# License: BSD Simplified License +# http://www.opensource.org/license/BSD-3-Clause +# Copyright (c) 2012, Gaston Sanchez +# All rights reserved +############################################################################ + +# set your working directory (don't use mine!) +# setwd("/Users/gaston/Documents/Gaston/GoogleSite/StarWars") + +# read episode VI script in R (this is a character vector) +sw = readLines("StarWars_EpisodeVI_script.txt") + +# inspect first 90 lines +# you'll see that the first dialogue is from SHUTTLE CAPTAIN in line 76 +sw[1:90] + +# command to extract character name (just for demo purposes) +substr(sw[76], 31, nchar(sw[76])) +# command to extract dialogue text (just for demo purposes) +substr(sw[77], 16, nchar(sw[77])) + +# we need these auxiliary strings to help us +# extract character names and their dialogues +b15 = " " +b30 = " " + +# how many lines in input file +nlines = length(sw) + +# let's parse the entire script while extracting only the names of the +# characters and their dialogues. The output file is EpisodeVI_dialogues.txt + +# write title line in output file +writeLines("STAR WARS - EPISODE 6: RETURN OF THE JEDI", "EpisodeVI_dialogues.txt") + +# the first 70 lines don't contain dialogues +# so we can start reading at line 70 (for instance) +i = 70 + +# while loop to extract character and dialogues +# (probably there's a better way to parse the file instead of +# using my crazy nested if-then-elses, but this works for me) +while (i <= nlines) +{ + # if empty line + if (sw[i] == "") i = i + 1 # next line + # if text line + if (sw[i] != "") + { + # if uninteresting stuff + if (substr(sw[i], 1, 1) != " ") { + i = i + 1 # next line + } else { + if (nchar(sw[i]) < 10) { + i = i + 1 # next line + } else { + if (substr(sw[i], 1, 5) != " " && substr(sw[i], 6, 6) != " ") { + i = i + 1 # next line + } else { + # if character name + if (substr(sw[i], 1, 30) == b30) + { + if (substr(sw[i], 31, 31) != " ") + { + tmp_name = substr(sw[i], 31, nchar(sw[i], "bytes")) + cat("\n", file="EpisodeVI_dialogues.txt", append=TRUE) + cat(tmp_name, "", file="EpisodeVI_dialogues.txt", sep="\t", append=TRUE) + i = i + 1 + } else { + i = i + 1 + } + } else { + # if dialogue + if (substr(sw[i], 1, 15) == b15) + { + if (substr(sw[i], 16, 16) != " ") + { + tmp_diag = substr(sw[i], 16, nchar(sw[i], "bytes")) + cat("", tmp_diag, file="EpisodeVI_dialogues.txt", append=TRUE) + i = i + 1 + } else { + i = i + 1 + } + } + } + } + } + } + } +} + + +# ===================================================================== +# Creating data table "SW_EpisodeVI.txt" +# ===================================================================== + +# how many lines in output file +system("wc -l EpisodeVI_dialogues.txt") + +# get vector of character names +SW6_chars = system("tail -n676 EpisodeVI_dialogues.txt | cut -f1", intern=TRUE) +# get vector of dialogue lines +SW6_diags = system("tail -n676 EpisodeVI_dialogues.txt | cut -f2", intern=TRUE) + +# check character names +table(SW6_chars) +# remove strings between parenthesis in SW6_chars +SW6_chars = gsub("\\((.*?)\\)", "", SW6_chars) +# remove extra white spaces in SW6_chars +SW6_chars = gsub("\\s+$", "", SW6_chars) + +# remove strings between parenthesis in dialogues +SW6_diags = gsub("\\((.*?)\\)", "", SW6_diags) +# remove extra white spaces at the beginning of dialogues +SW6_diags = gsub("^\\s+", "", SW6_diags) + +# remove last line (useless) +SW6_chars = SW6_chars[-length(SW6_chars)] +SW6_diags = SW6_diags[-length(SW6_diags)] + +# fix DEATH STAR CONTROLLER dialogue (this is the only exception) +SW6_diags[2] = SW6_diags[3] + +# join characters and dialogues in one table +SW6 = cbind(character=SW6_chars[-3], dialogue=SW6_diags[-3]) + +# save SW6 in file 'SW_EpisodeVI.txt' +write.table(SW6, file="SW_EpisodeVI.txt") + +# if you want to check the data table +# A = read.table("SW_EpisodeVI.txt") +# head(A) +# tail(A) + diff --git a/Rscripts/star_wars_parsing.R b/Rscripts/star_wars_parsing.R new file mode 100644 index 0000000..034d695 --- /dev/null +++ b/Rscripts/star_wars_parsing.R @@ -0,0 +1,362 @@ +setwd("/Users/gaston/Documents/Gaston/GoogleSite/StarWars") + +# load packages +library(ggplot2) +library(plyr) +library(stringr) +library(tm) +library(igraph) + +# reading cleaned scripts +Ep4 = read.table("SW_EpisodeIV.txt") +Ep5 = read.table("SW_EpisodeV.txt") +Ep6 = read.table("SW_EpisodeVI.txt") + +# select dialogues +diags4 = Ep4[,2] +diags5 = Ep5[,2] +diags6 = Ep6[,2] + +# characters +chr4 = Ep4[,1] +chr5 = Ep5[,1] +chr6 = Ep6[,1] + +# how many dialogues in each episode +n4 = length(chr4) +n5 = length(chr5) +n6 = length(chr6) + +# ==================================================== +# Find most talkative characters +# and their dialogue frequencies per episode +# ==================================================== + +# join characters names +chrs = c(chr4, chr5, chr6) +eps = c(rep("IV",n4), rep("V",n5), rep("VI",n6)) +# remove strings between parenthesis +#chrs = gsub("\\((.*?)\\)", "", chrs) +# strip whitespaces +chrs = gsub("\\s$", "", chrs) +# get absolute frequencies +chr_names = table(chrs) +# get number +y = as.vector(chr_names) +# sort by frequency +yord = order(y, decreasing=TRUE) +# inspect freqs +head(sort(y, decreasing=TRUE)) +head(names(chr_names)[yord], 20) +tail(names(chr_names)[yord], 20) +# top 20 characters (most talkative) barplot +par(mar = c(7, 4, 4, 1)) +top_chrs = head(chr_names[yord], 20) +barplot(top_chrs, las=2, cex.names=0.7, + border=NA, ylim=c(0,500), ylab="num of dialogues") +title(c("Star Wars (Episodes IV, V, VI)", "top 20 most talkative characters"), + cex.main=0.9) +# get names +who_top_chrs = names(top_chrs) + + +# data frame +chr_eps = data.frame(characters=chrs, episodes=eps) +# number of dialogues per episode +chr_by_eps = ddply(subset(chr_eps, characters %in% who_top_chrs), + .(characters, episodes), "nrow") +# not exactly in the shape I want it +chr_by_eps + +# I want results in a matrix format +top_chrs_by_eps = matrix(0, nrow=length(top_chrs), ncol=3) +aux_top_chrs = sort(who_top_chrs) +for (i in 1:nrow(chr_by_eps)) +{ + irow = which(chr_by_eps[i,1] == aux_top_chrs) + icol = which(chr_by_eps[i,2] == c("IV","V","VI")) + top_chrs_by_eps[irow, icol] = chr_by_eps[i,3] +} +rownames(top_chrs_by_eps) = aux_top_chrs +colnames(top_chrs_by_eps) = c("IV","V","VI") +# we'll use this to draw the bands +top_chrs_by_eps + + +# ==================================================== +# Network between top20 characters +# ==================================================== + +# concatenate dialogues +diags = c(diags4, diags5, diags6) +# empty vector to collect dialogues of top chars +diag_top_chrs = rep("", 20) +# collect dialogues for top20 characters +for (i in 1:20) +{ + diag_top_chrs[i] = paste(diags[chrs == aux_top_chrs[i]], collapse=" ") +} +names(diag_top_chrs) = aux_top_chrs + +# get corpus +diag_corpus = Corpus(VectorSource(diag_top_chrs)) +# transforming +diag_corpus = tm_map(diag_corpus, tolower) +diag_corpus = tm_map(diag_corpus, removeWords, + c(stopwords("english"),"comlink")) +diag_corpus = tm_map(diag_corpus, removeNumbers) +diag_corpus = tm_map(diag_corpus, removePunctuation) +diag_corpus = tm_map(diag_corpus, stripWhitespace) + +# dtm +diag_dtm = DocumentTermMatrix(diag_corpus) +dim(diag_dtm) + +# as matrix +diag_mat = as.matrix(diag_dtm) + +# get word count +count_terms = colSums(diag_mat) +# get less sparse terms +# terms >= 90% quantile frequency +which_mfw <- count_terms >= quantile(count_terms, probs=0.90) +sum(which_mfw) +# top 30 terms +mfw = count_terms[which_mfw] +barplot(head(sort(mfw, decreasing=TRUE), 30), + border=NA, las=2) + + +# adjacency matrix with most freq terms +mft_mat = diag_mat[,which_mfw] +adj_mat = diag_mat %*% t(diag_mat) +# zeors in diagonal +diag(adj_mat) = 0 +# create graph from adjacency matrix +graph_chrs = graph.adjacency(adj_mat, mode="undirected", weighted=TRUE, diag=FALSE) +# get edgelist +edges = get.edgelist(graph_chrs) + + +#adj_mat = abs(cor(t(mft_mat))) +bin_mat = mft_mat +bin_mat[mft_mat != 0] = 1 +#adj_mat = dist(bin_mat, method="binary", diag=TRUE, upper=TRUE) +#adj_mat = 1 - as.matrix(adj_mat) +#adj_mat = abs(cor(t(bin_mat))) + +adj_mat = bin_mat %*% t(bin_mat) + +diag(adj_mat) = 0 +# create graph from adjacency matrix +graph_chrs = graph.adjacency(adj_mat, mode="undirected", weighted=TRUE, diag=FALSE) +# get edgelist +edges = get.edgelist(graph_chrs) + + + + +# ==================================================== +# top terms for each character +# ==================================================== + +# how many characters +nc = nrow(top_chrs_by_eps) +# list to store top terms +top_terms_by_chr = as.list(1:nc) +for (i in 1:nc) +{ + terms_by_chr = sort(diag_mat[i,], decreasing=TRUE) + top_terms_by_chr[[i]] = head(terms_by_chr, 10) +} +names(top_terms_by_chr) = rownames(diag_mat) +# maximum num of times of frequent term pronounced by each char +maxi = sapply(top_terms_by_chr, function(x) max(x)) +maxi + + +# ==================================================== +# plot characters with bands +# ==================================================== + +# characters frequency +cf = rowSums(top_chrs_by_eps) / sum(top_chrs_by_eps) +# words center coordinates +fin = cumsum(cf) +ini = c(0, cumsum(cf)[-nc]) +centers = (ini + fin) / 2 +names(centers) = names(cf) +# word radiums +crads = cf / 2 +# how many docs +ndocs = ncol(top_chrs_by_eps) + +# colors of episodes (VI, V, IV) +#cols = c("#556270", "#4ECDC4", "#C7F464") +cols = c("#C7F464", "#4ECDC4", "#556270") + +# function to get pie segments +t2xy <- function(x1, y1, u, rad) +{ + t2p <- pi * u + 0 * pi/180 + list(x2 = x1 + rad * cos(t2p), y2 = y1 + rad * sin(t2p)) +} + +# ennumerate +inds = sort(unique(as.vector(edges))) +nums = order(inds) +# matrix with numeric indices +e_num = matrix(0, nrow(edges), ncol(edges)) +for (i in 1:nrow(edges)) +{ + e_num[i,1] = centers[which(inds == edges[i,1])] + e_num[i,2] = centers[which(inds == edges[i,2])] +} +# max arc +radios = abs(e_num[,1] - e_num[,2]) / 2 +max_radios = which(radios == max(radios)) +max_rad = unique(radios[max_radios] / 2) +# circle locations +locs = rowSums(e_num) / 2 +# arc line width +#lwds = log10(E(graph_chrs)$weight) + 0.2 #/ max(E(graph_chrs)$weight) +#lwds = (log2(E(graph_chrs)$weight)+0.2) / 2 +summary(E(graph_chrs)$weight) +hist(E(graph_chrs)$weight, breaks=seq(0, 3500, length=21)) +boxplot(E(graph_chrs)$weight) +lwds = sqrt(E(graph_chrs)$weight/10) +summary(15*E(graph_chrs)$weight/max(E(graph_chrs)$weight)) +#lwds = 20*E(graph_chrs)$weight/max(E(graph_chrs)$weight) +lwds = 10*E(graph_chrs)$weight/max(E(graph_chrs)$weight) + +lwds = 10 * (E(graph_chrs)$weight - 0.9*min(E(graph_chrs)$weight)) / max(E(graph_chrs)$weight) +summary(lwds) + +# gray colors for arcs +# arc_cols = hsv(0,0.2,0,0.10) +# arc_cols = hsv(h=0, s=lwds/max(lwds), v=0, alpha=0.5*lwds/max(lwds)) +arc_cols = hsv(h=0, s=E(graph_chrs)$weight/max(E(graph_chrs)$weight), + v=0, alpha=0.5*lwds/max(lwds)) + +#pdf("myplot.pdf", width=7, height=6) +# plot +par(mar = c(3,1,3,1)) +plot.new() +plot.window(xlim=c(-0.025, 1.025), ylim=c(-0.5*max_rad, 1.1*max_rad*2)) +# plot connecting arcs +z = seq(0, pi, l=100) +for (i in 1:nrow(edges)) +{ + radio = radios[i] + x = locs[i] + radio * cos(z) + y = radio * sin(z) + lines(x, y, col=arc_cols[i], lwd=lwds[i], + lend=1, ljoin=2, lmitre=1) +} +abline(h=0, col="white", lwd=5) +# add legend +legend(x=0.9, y=2*max_rad, title="Episodes", text.col="gray65", + legend=c("IV","V","VI"), pch=19, col=cols, bty="n") + +# plot word arcs +for (i in 1:nc) +{ + radius = crads[i] + p = c(0, cumsum(top_chrs_by_eps[i,] / sum(top_chrs_by_eps[i,]))) + dp = diff(p) + np = length(dp) + angle <- rep(45, length.out = np) + for (k in 1:np) + { + n <- max(2, floor(200 * dp[k])) + P <- t2xy(centers[i], 0, seq.int(p[k], p[k+1], length.out=n), rad=radius) + polygon(c(P$x2, centers[i]), c(P$y2, 0), angle=angle[i], + border=NA, col=cols[k], lty=0) + } + # draw white circles + theta = seq(0, pi, length=100) + x3 = centers[i] + 0.7*crads[i] * cos(theta) + y3 = 0 + 0.7*crads[i] * sin(theta) + polygon(x3, y3, col="white", border="white", lty=1, lwd=2) + +} +# add word names +cex_names = cf +cex_names[cf < 0.01] = 0.01 +cex_names = cex_names * 5 +text(centers, 0, rownames(top_chrs_by_eps), cex=cex_names, + adj=c(0.5,0), col="gray50") +# close pdf +dev.off() + + + +# ==================================================== +# Find most frequent terms +# ==================================================== + +# collapse dialogues into single vectors +d4 = paste(diags4, collapse=" ") +d5 = paste(diags5, collapse=" ") +d6 = paste(diags6, collapse=" ") + +# join collapsed dialogues vectors +all = c(d4, d5, d6) + +# corpus +corpus = Corpus(VectorSource(all)) + +# transforming +corpus = tm_map(corpus, tolower) +corpus = tm_map(corpus, removeWords, + c(stopwords("english"),"comlink")) +corpus = tm_map(corpus, removeNumbers) +corpus = tm_map(corpus, removePunctuation) +corpus = tm_map(corpus, stripWhitespace) + +# tdm +tdm = TermDocumentMatrix(corpus) +dim(tdm) +# convert as matrix +m = as.matrix(tdm) +# +a = rowSums(m) +head(sort(a, decreasing=TRUE), 20) + + +# ==================================================== +# Find most talking characters +# ==================================================== + +# concatenate dialogues +dialogues = c(diags4, diags5, diags6) +# get corpus +diag_corpus = Corpus(VectorSource(dialogues)) +# transforming +diag_corpus = tm_map(diag_corpus, tolower) +diag_corpus = tm_map(diag_corpus, removeWords, + c(stopwords("english"),"comlink")) +diag_corpus = tm_map(diag_corpus, removeNumbers) +diag_corpus = tm_map(diag_corpus, removePunctuation) +diag_corpus = tm_map(diag_corpus, stripWhitespace) + +# tdm +diag_tdm = TermDocumentMatrix(diag_corpus) +dim(diag_tdm) + +diag_tdm = TermDocumentMatrix(diag_corpus, + control=list(wordLengths=c(4, Inf), minDocFreq=5)) + +# as matrix +diag_mat = as.matrix(diag_tdm) +colnames(diag_mat) = chrs +# +b = rowSums(diag_mat) +head(sort(b, decreasing=TRUE), 20) + +# most frequent terms +most_freq = findFreqTerms(diag_mat, lowfreq=30) +mft = which(rownames(diag_mat) %in% most_freq) +mft_mat = diag_mat[mft,] +z = colSums(mft_mat) +head(sort(z, decreasing=TRUE), 20) diff --git a/Rscripts/ultimate_arc_diagram.R b/Rscripts/ultimate_arc_diagram.R new file mode 100644 index 0000000..80bced2 --- /dev/null +++ b/Rscripts/ultimate_arc_diagram.R @@ -0,0 +1,108 @@ +############################################################################ +# Title: ultimate_arc_diagram.R +# Description: Script to get the customized arc-diagram plot +# Input files: top_chars_by_eps.txt +# top_chars_network.txt +# top_char_terms.txt +# weight_edges_graph1.txt +# weight_edges_graph2.txt +# R functions: arcBandBars.R +# Author: Gaston Sanchez +# www.gastonsanchez.com +# License: BSD Simplified License +# http://www.opensource.org/license/BSD-3-Clause +# Copyright (c) 2012, Gaston Sanchez +# All rights reserved +############################################################################ + +# ================================================================== +# Input files +# ================================================================== + +# set your working directory (don't use mine!) +# setwd("/Users/gaston/Documents/Gaston/GoogleSite/StarWars") + +# import 'top_chars_by_eps.txt' +top_chars_by_eps = read.table("top_chars_by_eps.txt") + +# top character names (sorted) +aux_top_chars = rownames(top_chars_by_eps) +# how many top characters +nc = length(aux_top_chars) + +# import top_chars_network.txt +top_chars_network = read.table("top_chars_network.txt") +edges1 = as.matrix(top_chars_network) + +# import table top_char_terms.txt +top_char_terms = read.table("top_char_terms.txt", header=TRUE, sep=",") + +# get a list of terms frequency by character +# we'll use these in the barcharts below the arcs +top_chars_freq_terms = as.list(1:nc) +sec = seq(1, 200, by=10) +for (i in 1:20) +{ + Baux = as.matrix(top_char_terms[sec[i]:(sec[i]+9),3:5]) + rownames(Baux) = top_char_terms[sec[i]:(sec[i]+9),2] + # greater than 4 + gt4 <- rowSums(Baux) >= 4 + # select those terms with counts greater than 4 + if (sum(gt4) > 1) { + Baux = Baux[gt4,] + } else { + Baux = Baux[1:2,] + } + Bp = prop.table(Baux, margin=1) + top_chars_freq_terms[[i]] = Bp +} + +# import table top_char_terms.txt +w1 = read.table("weight_edges_graph1.txt", header=TRUE) +w1 = as.vector(t(w1)) +w2 = read.table("weight_edges_graph2.txt") +w2 = as.vector(t(w2)) + + +# ================================================================== +# Prepare parameters for plotting the arc-diagram +# ================================================================== + +# arcs width parameter based on edge weights from graph_chars1 +lwds = sqrt(w1/20) +summary(10 * w1 / max(w1)) +lwds = 20 * w1 / max(w1) + +# arc colors based on graph_chars2 +cols = hsv(h=0, s=w2/max(w2), v=0, alpha=0.6*w2/max(w2)) + +# color bands (of episodes VI, V, IV) +col.bands = c("#4EA3CD", "#4E70CD", "#5E4ECD") + +# magnification factor of terms in bar-charts +# (I went through a large trial-and-error process in order +# to get the right size for the labels) +cex.terms = rowSums(top_chars_by_eps) / sum(top_chars_by_eps) +cex.terms[cex.terms < 0.1] = max(cex.terms) / 4 +cex.terms = 3 * cex.terms + + +# ================================================================== +# Arc-diagram with bands +# ================================================================== +# This diagram is obtained with the function arcBandBars +# The function is pretty much tuned for the StarWars data tables +# although it can be modified to fit the user's needs + +# save the image in pdf format so you can zoom-in +# and see all the interesting details +pdf("StarWars_Arc_Diagram.pdf", width=14, height=9) +arcBandBars(edges1, top_chars_by_eps, top_chars_freq_terms, + col.bands=col.bands, lwd=lwds, col=cols, cex.terms=cex.terms, + col.terms="white", mar=c(1,1,3,1), bg="gray80") +title(c("Star Wars: Character Dialogues", "Arc-diagram"), + cex.main=0.9, col.main="gray50") +# add legend +legend(x=0.9, y=0.5, title="Episodes", text.col="gray25", cex=0.8, + legend=c("IV","V","VI"), pch=19, col=col.bands, bty="n") +dev.off() diff --git a/StarWars_Arc_Diagram.pdf b/StarWars_Arc_Diagram.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0af3cfeb09620b3cb4233f58f12b850225819b0c GIT binary patch literal 150935 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

c1+j~C*K8dN+pC|^Y~rtC&0llLah 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≪zxHLnM2UT*%o3Gi`-BO)) z#k8ugbqMgxO|CU&nDZq^22u8bhp0jemic-3?u|Oz26>kmc-z6t?7f-pG12AF@$|!%Z{+Im+bTOfF11x` zXmy$+DMD^F*yYZjXI4?N%d)de;Q2IZF_{#A zUQNvBfB!rX&QFZ`9dqV;G|m+84ZaRHBDm(~LJVQGS4kua1OXa0=LJlBgWexfR^~mt zn8JUvHJLF0l3WOBsFzSRHn8FFKM1hm~!m z!?HDY_5#E0MaL>iSfm#lOIWBDJKo6}xF>xi-0e4url5j$7}2L>5th4m1WaswR-=vy zoTiXlQ0^Ve)0j>+Ng5BLhBPD z^7`teJT(n)L!T#tcvo~LZjq?I1g+BJJ^s|1G8>+()&n(HSK6)RlPwwwl1jekXpj5a zBbkpkz)$U4hK|$l+ntD5^EF%T@pK)?XQ6@M5^aiHH-@|##Ej)@H-plSx5Fxnd1i++*Q^~pPn^o+DTF8kPEgRag;2)^ymW~@Wq}Xu*#Y|%~nu0?c5WsIiZ_Gq@zMo z5zUB%hgfvBqau9028!uFC?(S$RB$1`%LkY}@(~D!77bf7`uXp7HtDOp)9EmGX?|O3YQ$MV>B8WHvNhdJ(A7=Rra^*?zrI)i-*8 z4EV0@WHm!sGnSq^`v6hf&T;(_SFH0#_)ThFVL77h#kUC;B ziBpV|Q&myiVBsLg4uSJSp|3aSf-E}(fIDVv(y4a6HOqhRx*+UwSpNpEFacNx8o#;8 z)Y`uKv#Mx~ZvqM2alny!hQpO}+bvWui%ol{RsZoMvPvM7-ko|%VjKz0uiJ5QyzZ0U zrM8wNZDR3x`u65+8%GpnPdeuM`(p&!65RaIXg%EYDLot`(;?73OX3J7yKH z@goLGQU~u@!s}QaFG!!tc{|v?pLt!1`u+rO%@pajO!$v@Z;tkFp&doO6!^8imo}}N z>CU(IyaTxgMr2#b0M86nRdoJ#lS=(%Jo#wEE5t+fV8;Om60SJC=gtrr`Y*tDXNxq6 z=d1OindU}=LJSr70=am%1yn-6NvelI_@*~&DN`#}+v#$xYj>ex78CV_u{9ke)*t

hO;LNPy)nf2cN8-1GqcH6j+FwZ)qzh)g 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 literal 0 HcmV?d00001 diff --git a/Text_files/EpisodeIV_dialogues.txt b/Text_files/EpisodeIV_dialogues.txt new file mode 100644 index 0000000..7fb1d02 --- /dev/null +++ b/Text_files/EpisodeIV_dialogues.txt @@ -0,0 +1,1012 @@ +STAR WARS - EPISODE 4: STAR WARS + +THREEPIO Did you hear that? They've shut down the main reactor. We'll be destroyed for sure. This is madness! +THREEPIO We're doomed! +THREEPIO There'll be no escape for the Princess this time. +THREEPIO What's that? +THREEPIO I should have known better than to trust the logic of a half-sized thermocapsulary dehousing assister... +LUKE Hurry up! Come with me! What are you waiting for?! Get in gear! +THREEPIO Artoo! Artoo-Detoo, where are you? +THREEPIO At last! Where have you been? +THREEPIO They're heading in this direction. What are we going to do? We'll be sent to the spice mines of Kessel or smashed into who knows what! +THREEPIO Wait a minute, where are you going? +IMPERIAL OFFICER The Death Star plans are not in the main computer. +VADER Where are those transmissions you intercepted? +REBEL OFFICER We intercepted no transmissions. Aaah... This is a consular ship. Were on a diplomatic mission. +VADER If this is a consular ship... where is the Ambassador? +VADER Commander, tear this ship apart until you've found those plans and bring me the Ambassador. I want her alive! +TROOPER There she is! Set for stun! +TROOPER She'll be all right. Inform Lord Vader we have a prisoner. +THREEPIO Hey, you're not permitted in there. It's restricted. You'll be deactivated for sure.. +THREEPIO Don't call me a mindless philosopher, you overweight glob of grease! Now come out before somebody sees you. +THREEPIO Secret mission? What plans? What are you talking about? I'm not getting in there! +THREEPIO I'm going to regret this. +CHIEF PILOT There goes another one. +CAPTAIN Hold your fire. There are no life forms. It must have been short-circuited. +THREEPIO That's funny, the damage doesn't look as bad from out here. +THREEPIO Are you sure this things safe? +WOMAN I've told you kids to slow down! +FIXER Did I hear a young noise blast through here? +CAMIE It was just Wormie on another rampage. +LUKE Shape it up you guys!... Biggs? +LUKE I didn't know you were back! When did you get in? +BIGGS Just now. I wanted to surprise you, hot shot. I thought you'd be here... certainly didn't expect you to be out working. +LUKE The Academy didn't change you much... but you're back so soon? Hey, what happened, didn't you get your commission? +BIGGS Of course I got it. Signed aboard The Rand Ecliptic last week. First mate Biggs Darklighter at your service...... I just came back to say goodbye to all you unfortunate landlocked simpletons. +LUKE I almost forgot. There's a battle going on! Right here in our system. Come and look! +DEAK Not again! Forget it. +LUKE There they are! +BIGGS That's no battle, hot shot... they're just sitting there! Probably a freighter-tanker refueling. +LUKE But there was a lot of firing earlier... +LUKE Hey, easy with those... +CAMIE Don't worry about it, Wormie. +FIXER I keep telling you, the Rebellion is a long way from here. I doubt if the Empire would even fight to keep this system. Believe me Luke, this planet is a big hunk of nothing... +LEIA Lord Vader, I should have known. Only you could be so bold. The Imperial Senate will not sit stillfor this, when they hear you've attacked a diplomatic... +VADER Don't play games with me, Your Highness. You weren't on any mercy mission this time. You passed directly through a restricted system. Several transmissions were beamed to this ship by Rebel spies. I want to know what happened to the plans they sent you. +LEIA I don't know what you're talking about. I'm a member of the Imperial Senate on a diplomatic mission to Alderaan... +VADER You're a part of the Rebel Alliance... and a traitor. Take her away! +COMMANDER Holding her is dangerous. If word of this gets out, it could generate sympathy for the Rebellion in the senate. +VADER I have traced the Rebel spies to her. Now she is my only link to find their secret base! +COMMANDER you anything. +VADER Leave that to me. Send a distress signal and then inform the senate that all aboard were killed! +SECOND OFFICER Lord Vader, the battle station plans are not aboard this ship! And no transmissions were made. An escape pod was jettisoned during the fighting, but no life forms were aboard. +VADER She must have hidden the plans in the escape pod. Send a detachment down to retrieve them. See to it personally, Commander. There'll be no one to stop us this time. +COMMANDER Yes, sir. +THREEPIO How did I get into this mess? I really don't know how. We seem to be made to suffer. It's our lot in life. +THREEPIO I've got to rest before I fall apart. My joints are almost frozen. +THREEPIO What a desolate place this is. +THREEPIO Where are you going? +THREEPIO Well, I'm not going that way. It's much too rocky. This way is much easier. +THREEPIO What makes you think there are settlements over there? +THREEPIO Don't get technical with me. +THREEPIO What mission? What are you talking about? I've had just about enough of you! Go that way! You'll be malfunctioning within a day, you nearsighted scrap pile! +THREEPIO And don't let me catch you following me begging for help, because you won't get it. +THREEPIO No more adventures. I'm not going that way. +THREEPIO That malfunctioning little twerp. This is all his fault! He tricked me into going this way, but he'll do no better. +THREEPIO Wait, what's that? A transport! I'm saved! +THREEPIO Over here! Help! Please, help! +LUKE ... so I cut off my power, shut down the afterburners and came in low on Deak's trail. I was so close I thought I was going to fry my instruments. As it was I busted up the Skyhopper pretty bad. Uncle Owen was pretty upset. He grounded me for the rest of the season. You should have been there... it was fantastic. +BIGGS You ought to take it a little easy Luke. You may be the hottest bushpilot this side of Mos Eisley, but those little Skyhoppers are dangerous. Keep it up, and one day, whammo, you're going to be nothing more than a dark spot on the down side of a canyon wall. +LUKE Look who's talking. Now that you've been around those giant starships you're beginning to sound like my uncle. You've gotten soft in the city... +BIGGS I've missed you kid. +LUKE Well, things haven't been the same since you left, Biggs. It's been so...quiet. +BIGGS Luke, I didn't come back just to say goodbye... I shouldn't tell you this, but you're the only one I can trust... and if I don't come back, I want somebody to know. +LUKE What are you talking about? +BIGGS I made some friends at the Academy. ... when our frigate goes to one of the central systems, we're going to jump ship and join the Alliance... +LUKE Join the Rebellion?! Are you kidding! How? +BIGGS Quiet down will ya! You got a mouth bigger than a meteor crater! +LUKE I'm sorry. I'm quiet. Listen how quiet I am. You can barely hear me... +BIGGS My friend has a friend on Bestine who might help us make contact. +LUKE around forever trying to find them. +BIGGS I know it's a long shot, but if I don't find them I'll do what I can on my own... It's what we always talked about. Luke, I'm not going to wait for the Empire to draft me into service. The Rebellion is spreading and I want to be on the right side - the side I believe in. +LUKE And I'm stuck here... +BIGGS I thought you were going to the Academy next term. You'll get your chance to get off this rock. +LUKE Not likely! I had to cancel my application. There has been a lot of unrest among the Sand People since you left... they've even raided the outskirts of Anchorhead. +BIGGS Your uncle could hold off a whole colony of Sand People with one blaster. +LUKE I know, but he's got enough vaporators going to make the place pay off. He needs me for just one more season. I can't leave him now. +BIGGS I feel for you, Luke, you're going to have to learn what seems to be important or what really is important. What good is all your uncle's work if it's taken over by the Empire?... You know they're starting to nationalize commerce in the central systems...it won't be long before your uncle is merely a tenant, slaving for the greater glory of the Empire. +LUKE It couldn't happen here. You said it yourself. The Empire won't bother with this rock. +BIGGS Things always change. +LUKE I wish I was going... Are you going to be around long? +BIGGS No, I'm leaving in the morning... +LUKE Then I guess I won't see you. +BIGGS Maybe someday... I'll keep a lookout. +LUKE Well, I'll be at the Academy next season... after that who knows. I won't be drafted into the Imperial Starfleet that's for sure... Take care of yourself, you'll always be the best friend I've got. +BIGGS So long, Luke. +THREEPIO Artoo-Detoo! It's you! It's you! +FIRST TROOPER Someone was in the pod. The tracks go off in this direction. +SECOND TROOPER Look, sir - droids. +THREEPIO Wake up! Wake up! +THREEPIO We're doomed. +THREEPIO Do you think they'll melt us down? +THREEPIO Don't shoot! Don't shoot! Will this never end? +BERU Luke, tell Owen that if he gets a translator to be sure it speaks Bocce. +LUKE It looks like we don't have much of a choice but I'll remind him. +OWEN I have no need for a protocol droid. +THREEPIO Sir - not in an environment such as this - that's why I've also been programmed for over thirty secondary functions that... +OWEN What I really need is a droid that understands the binary languages of moisture vaporators. +THREEPIO Vaporators! Sir - My first job was programming binary load lifters... very similar to your vaporators. You could say... +OWEN Do you speak Bocce? +THREEPIO Of course I can, sir. It's like a second language for me... I'm as fluent in Bocce... +OWEN All right; shut up! I'll take this one. +THREEPIO Shutting up, sir. +OWEN Luke, take these two over to the garage, will you? I want you to have both of them cleaned up before dinner. +LUKE But I was going into Toshi Station to pick up some power converters... +OWEN You can waste time with your friends when your chores are done. Now, come on, get to it! +LUKE All right, come on! And the red one, come on. Well, come on, Red, let's go. +LUKE Uncle Owen... +OWEN Yeah? +LUKE This R2 unit has a bad motivator. Look! +OWEN Hey, what're you trying to push on us? +THREEPIO Excuse me, sir, but that R2 unit is in prime condition. A real bargain. +LUKE Uncle Owen... +OWEN Yeah? +LUKE What about that one? +OWEN What about that blue one? We'll take that one. +LUKE Yeah, take it away. +THREEPIO Uh, I'm quite sure you'll be very pleased with that one, sir. He really is in first-class condition. I've worked with him before. Here he comes. +LUKE Okay, let's go. +THREEPIO Now, don't forget this! Why I should stick my neck out for you is quite beyond my capacity! +THREEPIO Thank the maker! This oil bath is going to feel so good. I've got such a bad case of dust contamination, I can barely move! +LUKE It just isn't fair. Oh, Biggs is right. I'm never gonna get out of here! +THREEPIO Is there anything I might do to help? +LUKE Well, not unless you can alter time, speed up the harvest, or teleport me off this rock! +THREEPIO I don't think so, sir. I'm only a droid and not very knowledgeable about such things. Not on this planet, anyways. As a matter of fact, I'm not even sure which planet I'm on. +LUKE Well, if there's a bright center to the universe, you're on the planet that it's farthest from. +THREEPIO I see, sir. +LUKE Uh, you can call me Luke. +THREEPIO I see, sir Luke. +LUKE Just Luke. +THREEPIO And I am See-Threepio, human-cyborg relations, and this is my counterpart, Artoo-Detoo. +LUKE Hello. +LUKE You got a lot of carbon scoring here. It looks like you boys have seen a lot of action. +THREEPIO With all we've been through, sometimes I'm amazed we're in as good condition as we are, what with the Rebellion and all. +LUKE You know of the Rebellion against the Empire? +THREEPIO That's how we came to be in your service, if you take my meaning, sir. +LUKE Have you been in many battles? +THREEPIO Several, I think. Actually, there's not much to tell. I'm not much more than an interpreter, and not very good at telling stories. Well, not at making them interesting, anyways. +LUKE Well, my little friend, you've got something jammed in here real good. Were you on a starcruiser or... +LEIA Help me, Obi-Wan Kenobi. You'remy only hope. +LUKE What's this? +THREEPIO What is what?!? He asked you a question...What is that? +LEIA Help me, Obi-Wan Kenobi. You're my only hope. Help me, Obi-Wan Kenobi. You're my only hope. +THREEPIO Oh, he says it's nothing, sir. Merely a malfunction. Old data. Pay it no mind. +LUKE Who is she? She's beautiful. +THREEPIO I'm afraid I'm not quite sure, sir. +LEIA Help me, Obi-Wan Kenobi... +THREEPIO I think she was a passenger on our last voyage. A person of some importance, sir - I believe. Our captain was attached to... +LUKE Is there more to this recording? +THREEPIO Behave yourself, Artoo. You're going to get us in trouble. It's all right, you can trust him. He's our new master. +THREEPIO He says he's the property of Obi-Wan Kenobi, a resident of these parts. And it's a private message for him. Quite frankly, sir, I don't know what he's talking about. Our last master was Captain Antilles, but with what we've been through, this little R2 unit has become a bit eccentric. +LUKE Obi-Wan Kenobi? I wonder if he means old Ben Kenobi? +THREEPIO I beg your pardon, sir, but do you know what he's talking about? +LUKE Well, I don't know anyone named Obi-Wan, but old Ben lives out beyond the dune sea. He's kind of a strange old hermit. +LUKE I wonder who she is. It sounds like she's in trouble. I'd better play back the whole thing. +THREEPIO He says the restraining bolt has short circuited his recording system. He suggests that if you remove the bolt, he might be able to play back the entire recording. +LUKE H'm? Oh, yeah, well, I guess you're too small to run away on me if I take this off! Okay. +LUKE There you go. +LUKE Well, wait a minute. Where'd she go? Bring her back! Play back the entire message. +THREEPIO been playing. The one you're carrying inside your rusty innards! +AUNT BERU Luke? Luke! Come to dinner! +LUKE All right, I'll be right there, Aunt Beru. +THREEPIO I'm sorry, sir, but he appears to have picked up a slight flutter. +LUKE Well, see what you can do with him. I'll be right back. +THREEPIO Just you reconsider playing that message for him. +THREEPIO No, I don't think he likes you at all. +THREEPIO No, I don't like you either. +LUKE You know, I think that R2 unit we bought might have been stolen. +OWEN What makes you think that? +LUKE Well, I stumbled across a recording while I was cleaning him. He says he belongs to someone called Obi-Wan Kenobi. +LUKE I thought he might have meant Ben. Do you know what he's talking about? Well, I wonder if he's related to Ben. +OWEN That old man's just a crazy wizard. Tomorrow I want you to take that R2 unit into Anchorhead and have its memory flushed. That'll be the end of it. It belongs to us now. +LUKE But what if this Obi-Wan comes looking for him? +OWEN He won't, I don't think he exists any more. He died about the same time as your father. +LUKE He knew my father? +OWEN I told you to forget it. Your only concern is to prepare the new droids for tomorrow. In the morning I want them on the south ridge working out those condensers. +LUKE Yes, sir. I think those new droids are going to work out fine. In fact, I, uh, was also thinking about our agreement about my staying on another season. And if these new droids do work out, I want to transmit my application to the Academy this year. +OWEN You mean the next semester before harvest? +LUKE Sure, there're more than enough droids. +OWEN Harvest is when I need you the most. Only one more season. This year we'll make enough on the harvest so I'll be able to hire some more hands. And then you can go to the Academy next year. +OWEN You must understand I need you here, Luke. +LUKE But it's a whole 'nother year. +OWEN Look, it's only one more season. +LUKE Yeah, that's what you said last year when Biggs and Tank left. +AUNT BERU Where are you going? +LUKE It looks like I'm going nowhere. I have to finish cleaning those droids. +AUNT BERU Owen, he can't stay here forever. Most of his friends have gone. It means so much to him. +OWEN I'll make it up to him next year. I promise. +AUNT BERU Luke's just not a farmer, Owen. He has too much of his father in him. +OWEN That's what I'm afraid of. +LUKE What are you doing hiding there? +THREEPIO It wasn't my fault, sir. Please don't deactivate me. I told him not to go, but he's faulty, malfunctioning; kept babbling on about his mission. +LUKE Oh, no! +THREEPIO That R2 unit has always been a problem. These astro-droids are getting quite out of hand. Even I can't understand their logic at times. +LUKE How could I be so stupid? He's nowhere in sight. Blast it! +THREEPIO Pardon me, sir, but couldn't we go after him? +LUKE It's too dangerous with all the Sand People around. We'll have to wait until morning. +OWEN Luke, I'm shutting the power down for the night. +LUKE All right, I'll be there in a few minutes. Boy, am I gonna get it. +LUKE You know that little droid is going to cause me a lot of trouble. +THREEPIO Oh, he excels at that, sir. +OWEN Luke? Luke? Luke? Where could he be loafing now! +OWEN Have you seen Luke this morning? +AUNT BERU He said he had some things to do before he started today, so he left early. +OWEN Uh? Did he take those two new droids with him? +AUNT BERU I think so. +OWEN Well, he'd better have those units in the south range repaired bemidday or there'll be hell to pay! +LUKE How's that. +LUKE Old Ben Kenobi lives out in this direction somewhere, but I don't see how that R2 unit could have come this far. We must have missed him. Uncle Owen isn't going to take this very well. +THREEPIO Sir, would it help if you told him it was my fault. +LUKE Sure. He needs you. He'd probably only deactivate you for a day or so... +THREEPIO Deactivate! Well, on the other hand if you hadn't removed his restraining bolt... +LUKE Wait, there's something dead ahead on the scanner. It looks like our droid... hit the accelerator. +LUKE Hey, whoa, just where do you think you're going? +THREEPIO Master Luke here is your rightful owner. We'll have no more of this Obi-Wan Kenobi jibberish... and don't talk to me of your mission, either. You're fortunate he doesn't blast you into a million pieces right here. +LUKE Well, come on. It's getting late. I only hope we can get back before Uncle Owen really blows up. +THREEPIO If you don't mind my saying so, sir, I think you should deactivate the little fugitive until you've gotten him back to your workshop. +LUKE No, he's not going to try anything. +LUKE What's wrong with him now? +THREEPIO Oh my... sir, he says there are several creatures approaching from the southeast. +LUKE Sand People! Or worse! Come on, let's have a look. Come on. +LUKE There are two Banthas down there but I don't see any... wait a second, they're Sand People all right. I can see one of them now. +BEN Hello there! Come here my little friend. Don't be afraid. +BEN Don't worry, he'll be all right. +LUKE What happened? +BEN Rest easy, son, you've had a busy day. You're fortunate you're still in one piece. +LUKE Ben? Ben Kenobi! Boy, am I glad to see you! +BEN The Jundland Wastes are not to be traveled lightly. Tell me, young Luke, what brings you out this far? +LUKE Oh, this little droid! I think he's searching for his former master... I've never seen such devotion in a droid before... there seems tobe no stopping him. He claims to be the property of an Obi-Wan Kenobi. Is he a relative of yours? Do you know who he's talking about? +BEN Obi-Wan Kenobi... Obi-Wan? Now thats a name I haven't heard in a long time... a long time. +LUKE I think my uncle knew him. He said he was dead. +BEN Oh, he's not dead, no... not yet. +LUKE You know him! +BEN Well of course, of course I know him. He's me! I haven't gone by the name Obi-Wan since oh, before you were born. +LUKE Then the droid does belong to you. +BEN Don't seem to remember ever owning a droid. Very interesting... +BEN I think we better get indoors. The Sand People are easily startled but they will soon be back and in greater numbers. +LUKE ... Threepio! +THREEPIO Where am I? I must have taken a bad step... +LUKE Can you stand? We've got to get out of here before the Sand People return. +THREEPIO I don't think I can make it. You go on, Master Luke. There's no sense in you risking yourself on my account. I'm done for. +LUKE No, you're not. What kind of talk is that? +BEN Quickly, son... they're on the move. +LUKE No, my father didn't fight in the wars. He was a navigator on a spice freighter. +BEN That's what your uncle told you. He didn't hold with your father's ideals. Thought he should have stayed here and not gotten involved. +LUKE You fought in the Clone Wars? +BEN Yes, I was once a Jedi Knight the same as your father. +LUKE I wish I'd known him. +BEN He was the best star-pilot in the galaxy, and a cunning warrior. I understand you've become quite a good pilot yourself. And he was a good friend. Which reminds me... +BEN I have something here for you. Your father wanted you to have this when you were old enough, but your uncle wouldn't allow it. He feared you might follow old Obi-Wan on some damned-fool idealistic crusade like your father did. +THREEPIO Sir, if you'll not be needing me, I'll close down for awhile. +LUKE Sure, go ahead. +LUKE What is it? +BEN Your fathers lightsaber. This is the weapon of a Jedi Knight. Not as clumsy or as random as a blaster. +BEN An elegant weapon for a morecivilized time. For over a thousand generations the Jedi Knights were the guardians of peace and justice in the Old Republic. Before the dark times, before the Empire. +LUKE How did my father die? +BEN A young Jedi named Darth Vader, who was a pupil of mine until he turned to evil, helped the Empire hunt down and destroy the Jedi Knights. He betrayed and murdered your father. Now the Jedi are all but extinct. Vader was seduced by the dark side of the Force. +LUKE The Force? +BEN Well, the Force is what gives the Jedi his power. It's an energy field created by all living things. It surrounds us and penetrates us. It binds the galaxy together. +BEN Now, let's see if we can't figure out what you are, my little friend. And where you come from. +LUKE I saw part of the message he was... +BEN I seem to have found it. +LEIA General Kenobi, years ago you served my father in the Clone Wars. Now he begs you to help him in his struggle against the Empire. I regret that I am unable to present my father's request to you in person, but my ship has fallen under attack and I'm afraid my mission to bring you to Alderaan has failed. I have placed information vital to the survival of the Rebellion into the memory systems of this R2 unit. My father will know how to retrieve it. You must see this droid safely delivered to him on Alderaan. This is our most desperate hour. Help me, Obi-Wan Kenobi, you're my only hope. +BEN You must learn the ways of the Force if you're to come with me to Alderaan. +LUKE Alderaan? I'm not going to Alderaan. I've got to go home. It's late, I'm in for it as it is. +BEN I need your help, Luke. I'm getting too old for this sort of thing.She needs your help. +LUKE I can't get involved! I've got work to do! It's not that I like the Empire. I hate it! But there's nothing I can do about it right now. It's such a long way from here. +BEN That's your uncle talking. +LUKE Oh, God, my uncle. How am I ever going to explain this? +BEN Learn about the Force, Luke. +LUKE Look, I can take you as far as Anchorhead. You can get a transport there to Mos Eisley or wherever you're going. +BEN You must do what you feel is right, of course. +TAGGE Until this battle station is fully operational we are vulnerable. The Rebel Alliance is too well equipped. They're more dangerous than you realize. +MOTTI Dangerous to your starfleet, Commander; not to this battle station! +TAGGE The Rebellion will continue to gain support in the Imperial Senate as long as.... +TARKIN The Imperial Senate will no longer be of any concern to us. I've just received word that the Emperor has dissolved the council permanently. The last remnants of the Old Republic have been swept away. +TAGGE That's impossible! How will the Emperor maintain control without the bureaucracy? +TARKIN The regional governors now have direct control over territories. Fear will keep the local systems in line. Fear of this battle station. +TAGGE And what of the Rebellion? If the Rebels have obtained a complete technical readout of this station, it is possible, however unlikely, that they might find a weakness and exploit it. +VADER The plans you refer to will soon be back in our hands. +MOTTI Any attack made by the Rebels against this station would be a useless gesture, no matter what technical data they've obtained. This station is now the ultimate power in the universe. I suggest we use it! +VADER Don't be too proud of this technological terror you've constructed. The ability to destroy a planet is insignificant next to the power of the Force. +MOTTI Don't try to frighten us with your sorcerer's ways, Lord Vader. Your sad devotion to that ancient religion has not helped you conjure up the stolen data tapes, or given you clairvoyance enough to find the Rebel's hidden fort... +VADER I find your lack of faith disturbing. +TARKIN Enough of this! Vader, release him! +VADER As you wish. +TARKIN This bickering is pointless. Lord Vader will provide us with the location of the Rebel fortress by the time this station is operational. We will then crush the Rebellion with one swift stroke. +LUKE It looks like Sand People did this, all right. Look, here are gaffi sticks, bantha tracks. It's just... I never heard of them hitting anything this big before. +BEN They didn't. But we are meant to think they did. These tracks are side by side. Sand People always ride single file to hide there numbers. +LUKE These are the same Jawas that sold us Artoo and Threepio. +BEN And these blast points, too accurate for Sand People. Only Imperial stormtroopers are so precise. +LUKE Why would Imperial troops want to slaughter Jawas? +LUKE If they traced the robots here, they may have learned who they sold them to. And that would lead them back home! +BEN Wait, Luke! It's too dangerous. +LUKE Uncle Owen! Aunt Beru! Uncle Owen! +VADER And, now Your Highness, we will discuss the location of your hidden Rebel base. +BEN There's nothing you could have done, Luke, had you been there. You'd have been killed, too, and the droids would now be in the hands of the Empire. +LUKE I want to come with you to Alderaan. There's nothing here for me now. I want to learn the ways of the Force and become a Jedi like my father. +BEN Mos Eisley Spaceport. You will never find a more wretched hive of scum and villainy. We must be cautious. +TROOPER How long have you had these droids? +LUKE About three or four seasons. +BEN They're for sale if you want them. +TROOPER Let me see your identification. +BEN You don't need to see his identification. +TROOPER We don't need to see his identification. +BEN looking for. +TROOPER These are not the droids we're looking for. +BEN He can go about his business. +TROOPER You can go about your business. +BEN Move along. +TROOPER Move along. Move along. +THREEPIO I can't abide these Jawas. Disgusting creatures. +LUKE Go on, go on. I can't understand how we got by those troopers. I thought we were dead. +BEN The Force can have a strong influence on the weak-minded. You will find it a powerful ally. +LUKE Do you really think we're going to find a pilot here that'll take us to Alderaan? +BEN Well, most of the best freighter pilots can be found here. Only watch your step. This place can be a little rough. +LUKE I'm ready for anything. +THREEPIO Come along, Artoo. +BARTENDER We don't serve their kind here! +LUKE What? +BARTENDER Your droids. They'll have to wait outside. We don't want them here. +LUKE Listen, why don't you wait out by the speeder. We don't want any trouble. +THREEPIO I heartily agree with you sir. +CREATURE Negola dewaghi wooldugger?!? +HUMAN He doesn't like you. +LUKE I'm sorry. +HUMAN I don't like you either +HUMAN Don't insult us. You just watch yourself. We're wanted men. I have the death sentence on twelve systems. +LUKE I'll be careful than. +HUMAN You'll be dead. +BEN This little one isn't worth the effort. Come let me buy you something... +BARTENDER No blasters! No blaster! +BEN This is Chewbacca. He's first-mate on a ship that might suit our needs. +THREEPIO I don't like the look of this. +HAN Han Solo. I'm captain of the Millennium Falcon. Chewie here tells me you're looking for passage to the Alderaan system. +BEN Yes, indeed. If it's a fast ship. +HAN Fast ship? You've never heard of the Millennium Falcon? +BEN Should I have? +HAN It's the ship that made the Kessel run in less than twelve parsecs! +HAN I've outrun Imperial starships, not the local bulk-cruisers, mind you. I'm talking about the big Corellian ships now. She's fast enough for you, old man. What's the cargo? +BEN Only passengers. Myself, the boy, two droids, and no questions asked. +HAN What is it? Some kind of local trouble? +BEN Let's just say we'd like to avoid any Imperial entanglements. +HAN Well, that's the real trick, isn't it? And it's going to cost you something extra. Ten thousand in advance. +LUKE Ten thousand? We could almost buy our own ship for that! +HAN But who's going to fly it, kid! You? +LUKE You bet I could. I'm not such a bad pilot myself! We don't have to sit here and listen... +BEN We haven't that much with us. But we could pay you two thousand now, plus fifteen when we reach Alderaan. +HAN Seventeen, huh! +HAN Okay. You guys got yourself a ship. We'll leave as soon as you're ready. Docking bay Ninety-four. +BEN Ninety-four. +HAN Looks like somebody's beginning to take an interest in your handiwork. +TROOPER All right, we'll check it out. +HAN Seventeen thousand! Those guys must really be desperate. This could really save my neck. Get back to the ship and get her ready. +BEN You'll have to sell your speeder. +LUKE That's okay. I'm never coming back to this planet again. +GREEDO Going somewhere, Solo? +HAN Yes, Greedo. As a matter of fact, I was just going to see your boss. Tell Jabba that I've got his money. +GREEDO It's too late. You should have paid him when you had the chance. Jabba's put a price on your head, so large that every bounty hunter in the galaxy will be looking for you. I'm lucky I found you first. +HAN Yeah, but this time I got the money. +GREEDO If you give it to me, I might forget I found you. +HAN I don't have it with me. Tell Jabba... +GREEDO Jabba's through with you. He has no time for smugglers who drop their shipments at the first sign of an Imperial cruiser. +HAN Even I get boarded sometimes. Do you think I had a choice? +GREEDO You can tell that to Jabba. He may only take your ship. +HAN Over my dead body. +GREEDO That's the idea I've been looking forward to killing you for a long time. +HAN Yes, I'll bet you have. +HAN Sorry about the mess. +VADER Her resistance to the mind probe is considerable. It will be some time before we can extract any information from her. +IMPERIAL OFFICER The final check-out is complete. All systems are operational. What course shall we set? +TARKIN Perhaps she would respond to an alternative form of persuasion. +VADER What do you mean? +TARKIN I think it is time we demonstrate the full power of this station.Set your course for Princess Leia's home planet of Alderaan. +TROOPER With pleasure. +THREEPIO Lock the door, Artoo. +TROOPER All right, check that side of the street. It's secure. Move on to the next door. +THREEPIO I would much rather have gone with Master Luke than stay here with you. I don't know what all this trouble is about, but I'm sure it must be your fault. +THREEPIO You watch your language! +LUKE He says it's the best he can do. Since the XP-38 came out, they +BEN It will be enough. +BEN If the ship's as fast as he's boasting, we ought to do well. +JABBA Come on out, Solo! +HAN I've been waiting for you, Jabba. +JABBA I expected you would be. +HAN I'm not the type to run. +JABBA Han, my boy, there are times when you disappoint me... why haven't you paid me? And why did you have to fry poor Greedo like that... after all we've been through together. +HAN You sent Greedo to blast me. +JABBA Han, why you're the best smuggler in the business. You're too valuable to fry. He was only relaying my concern at your delays. He wasn't going to blast you. +HAN I think he thought he was. Next time don't send one of those twerps. If you've got something to say to me, come see me yourself. +JABBA Han, Han! If only you hadn't had to dump that shipment of spice... you understand I just can't make an exception. Where would I be if every pilot who smuggled for me dumped their shipment at the first sign of an Imperial starship? It's not good business. +HAN You know, even I get boarded sometimes, Jabba. I had no choice, but I've gota charter now and I can pay you back, plus a little extra. I just need some more time. +JABBA Put your blasters away. Han, my boy, I'm only doing this because you're the best and I need you. So, for an extra, say... twenty percent I'll give you a little more time... but this is it. If you disappoint me again, I'll put a price on your head so large you won't be able to go near a civilized system for the rest of your short life. +HAN Jabba, I'll pay you because it's my pleasure. +LUKE What a piece of junk. +HAN She'll make point five beyond the speed of light. She may not look like much, but she's got it where it counts, kid. I've added some special modifications myself. +HAN We're a little rushed, so if you'll hurry aboard we'll get out of here. +THREEPIO Hello, sir. +TROOPER Which way? +TROOPER All right, men. Load your weapons! +TROOPER Stop that ship! +TROOPER Blast 'em! +HAN Chewie, get us out of here! +THREEPIO Oh, my. I'd forgotten how much I hate space travel. +HAN It looks like an Imperial cruiser. Our passengers must be hotter than I thought. Try and hold them off. Angle the deflector shield while I make the calculations for the jump to light speed. +HAN Stay sharp! There are two more coming in; they're going to try to cut us off. +LUKE Why don't you outrun them? I thought you said this thing was fast. +HAN Watch your mouth, kid, or you're going to find yourself floating home. We'll be safe enough once we make the jump to hyperspace. Besides, I know a few maneuvers. We'll lose them! +HAN Here's where the fun begins! +BEN How long before you can make the jump to light speed? +HAN It'll take a few moments to get the coordinates from the navi-computer. +LUKE Are you kidding? At the rate they're gaining... +HAN Traveling through hyperspace isn't like dusting crops, boy! Without precise calculations we could fly right through a star or bounce too close to a supernova and that'd end your trip real quick, wouldn't it? +LUKE What's that flashing? +HAN We're losing our deflector shield. Go strap yourself in, I'm going to make the jump to light speed. +MOTTI We've entered the Alderaan system. +LEIA Governor Tarkin, I should have expected to find you holding Vader's leash. I recognized your foul stench when I was brought on board. +TARKIN Charming to the last. You don't know how hard I found it signing the order to terminate your life! +LEIA to take the responsibility yourself! +TARKIN Princess Leia, before your execution I would like you to be my guest at a ceremony that will make this battle station operational. No star system will dare oppose the Emperor now. +LEIA The more you tighten your grip, Tarkin, the more star systems will slip through your fingers. +TARKIN Not after we demonstrate the power of this station. In a way, you have determined the choice of the planet that'll be destroyed first. Since you are reluctant to provide us with the location of the Rebel base, I have chosen to test this station's destructive power... on your home planet of Alderaan. +LEIA No! Alderaan is peaceful. We have no weapons. You can't possibly... +TARKIN You would prefer another target? A military target? Then name the system! +TARKIN I grow tired of asking this. So it'll be the last time. Where is the Rebel base? +LEIA Dantooine. +LEIA They're on Dantooine. +TARKIN There. You see Lord Vader, she can be reasonable. Continue with the operation. You may fire when ready. +LEIA What? +TARKIN You're far too trusting. Dantooine is too remote to make an effective demonstration. But don't worry. We will deal with your Rebel friends soon enough. +LEIA No! +VADER Commence primary ignition. +LUKE Are you all right? What's wrong? +BEN I felt a great disturbance in the Force... as if millions of voices suddenly cried out in terror and were suddenly silenced. I fear something terrible has happened. +BEN You'd better get on with your exercises. +HAN Well, you can forget your troubles with those Imperial slugs. I told you I'd outrun 'em. +HAN Don't everyone thank me at once. +HAN Anyway, we should be at Alderaan about oh-two-hundred hours. +THREEPIO Now be careful, Artoo. +THREEPIO He made a fair move. Screaming about it won't help you. +HAN Let him have it. It's not wise to upset a Wookiee. +THREEPIO But sir, nobody worries about upsetting a droid. +HAN That's 'cause droids don't pull people's arms out of their socket when they lose. Wookiees are known to do that. +THREEPIO I see your point, sir. I suggest a new strategy, Artoo. Let the Wookiee win. +BEN Remember, a Jedi can feel the Force flowing through him. +LUKE You mean it controls your actions? +BEN Partially. But it also obeys your commands. +HAN Hokey religions and ancient weapons are no match for a good blaster at your side, kid. +LUKE You don't believe in the Force, do you? +HAN Kid, I've flown from one side of this galaxy to the other. I've seen a lot of strange stuff, but I've never seen anything to make me believe there's one all-powerful force controlling everything. There's no mystical energy field that controls my destiny. +HAN It's all a lot of simple tricks and nonsense. +BEN I suggest you try it again, Luke. +BEN This time, let go your conscious self and act on instinct. +LUKE With the blast shield down, I can't even see. How am I supposed to fight? +BEN Your eyes can deceive you. Don't trust them. +BEN Stretch out with your feelings. +BEN You see, you can do it. +HAN I call it luck. +BEN In my experience, there's no such thing as luck. +HAN Look, going good against remotes is one thing. Going good against the living? That's something else. +HAN Looks like we're coming up on Alderaan. +LUKE You know, I did feel something. I could almost see the remote. +BEN That's good. You have taken your first step into a larger world. +TARKIN Yes. +OFFICER CASS Our scout ships have reached Dantooine. They found the remains of a Rebel base, but they estimate that it has been deserted for some time. They are now conducting an extensive search of the surrounding systems. +TARKIN She lied! She lied to us! +VADER I told you she would never consciously betray the Rebellion. +TARKIN Terminate her... immediately! +HAN Stand by, Chewie, here we go. Cut in the sublight engines. +HAN What the...? Aw, we've come out of hyperspace into a meteor shower. Some kind of asteroid collision. It's not on any of the charts. +LUKE What's going on? +HAN Our position is correct, except... no, Alderaan! +LUKE What do you mean? Where is it? +HAN Thats what I'm trying to tell you, kid. It ain't there. It's been totally blown away. +LUKE What? How? +BEN Destroyed... by the Empire! +HAN The entire starfleet couldn't destroy the whole planet. It'd take a thousand ships with more fire power than I've... +HAN There's another ship coming in. +LUKE Maybe they know what happened. +BEN It's an Imperial fighter. +LUKE It followed us! +BEN No. It's a short range fighter. +HAN There aren't any bases around here. Where did it come from? +LUKE It sure is leaving in a big hurry. If they identify us, we're in big trouble. +HAN Not if I can help it. Chewie... jam it's transmissions. +BEN It'd be as well to let it go. It's too far out of range. +HAN Not for long... +BEN A fighter that size couldn't get this deep into space on its own. +LUKE Then he must have gotten lost, been part of a convoy or something... +HAN Well, he ain't going to be around long enough to tell anyone about us. +LUKE Look at him. He's heading for that small moon. +HAN I think I can get him before he gets there... he's almost in range. +BEN That's no moon! It's a space station. +HAN It's too big to be a space station. +LUKE I have a very bad feeling about this. +BEN Turn the ship around! +HAN Yeah, I think your right. Full reverse! Chewie, lock in the auxiliary power. +LUKE Why are we still moving towards it? +HAN We're caught in a tractor beam! It's pulling us in! +LUKE But there's gotta be something you can do! +HAN There's nothin' I can do about it, kid. I'm in full power. I'm going to have to shut down. But they're not going to get me without a fight! +BEN You can't win. But there are alternatives to fighting. +VOICE OVER DEATH STAR INTERCOM Clear Bay twenty-three-seven. We are opening the magnetic field. +OFFICER To your stations! +OFFICER Come with me. +OFFICER Close all outboard shields! Close all outboard shields! +TARKIN Yes. +VOICE We've captured a freighter entering the remains of the Alderaan system. It's markings match those of a ship that blasted its way out of Mos Eisley. +VADER They must be trying to return the stolen plans to the princess. She may yet be of some use to us. +VOICE Unlock one-five-seven and nine. Release charges. +OFFICER There's no one on board, sir. According to the log, the crew abandoned ship right after takeoff. It must be a decoy, sir. Several of the escape pods have been jettisoned. +VADER Did you find any droids? +OFFICER No, sir. If there were any on board, they must also have jettisoned. +VADER Send a scanning crew on board. I want every part of this ship checked. +OFFICER Yes, sir. +VADER I sense something... a presence I haven't felt since... +OFFICER Get me a scanning crew in here on the double. I want every part of this ship checked! +LUKE Boy, it's lucky you had these compartments. +HAN I use them for smuggling. I never thought I'd be smuggling myself in them. This is ridiculous. Even if I could take off, I'd never get past the tractor beam. +BEN Leave that to me! +HAN Damn fool. I knew that you were going to say that! +BEN Who's the more foolish... the fool or the fool who follows him? +TROOPER The ship's all yours. If the scanners pick up anything, report it immediately. All right, let's go. +HAN'S VOICE Hey down there, could you give us a hand with this? +GANTRY OFFICER TX-four-one-two. Why aren't you at your post? TX-four-one-two, do you copy? +GANTRY OFFICER Take over. We've got a bad transmitter. I'll see what I can do. +LUKE You know, between his howling and your blasting everything in sight, it's a wonder the whole station doesn't know we're here. +HAN Bring them on! I prefer a straight fight to all this sneaking around. +THREEPIO We found the computer outlet, sir. +BEN Plug in. He should be able to interpret the entire Imperial computer network. +THREEPIO He says he's found the main control to the power beam that's holding the ship here. He'll try to make the precise location appear on the monitor. +THREEPIO The tractor beam is coupled to the main reactor in seven locations. A power loss at one of the terminals will allow the ship to leave. +BEN I don't think you boys can help. I must go alone. +HAN Whatever you say. I've done more than I bargained for on this trip already. +LUKE I want to go with you. +BEN Be patient, Luke. Stay and watch over the droids. +LUKE But he can... +BEN They must be delivered safely or other star systems will suffer the same fate as Alderaan. Your destiny lies along a different path from mine. The Force will be with you... always! +HAN Boy you said it, Chewie. +HAN Where did you dig up that old fossil? +LUKE Ben is a great man. +HAN Yeah, great at getting us into trouble. +LUKE I didn't hear you give any ideas... +HAN Well, anything would be better than just hanging around waiting for them to pick us up... +LUKE Who do you think... +LUKE What is it? +THREEPIO I'm afraid I'm not quite sure, sir. He says "I found her," and keepsrepeating, "She's here." +LUKE Well, who... who has he found? +THREEPIO Princess Leia. +LUKE The princess? She's here? +HAN Princess? +LUKE Where... where is she? +HAN Princess? What's going on? +THREEPIO Level five. Detention block AA-twenty-three. I'm afraid she's scheduled to be terminated. +LUKE Oh, no! We've got to do something. +HAN What are you talking about? +LUKE The droid belongs to her. She's the one in the message. We've got to help her. +HAN Now, look, don't get any funny ideas. The old man wants us to wait right here. +LUKE But he didn't know she was here. Look, will you just find a way back into the detention block? +HAN I'm not going anywhere. +LUKE They're going to execute her. Look, a few minutes ago you said you didn't want to just wait here to be captured. Now all you want to do is stay. +HAN Marching into the detention area is not what I had in mind. +LUKE But they're going to kill her! +HAN Better her than me... +LUKE She's rich. +HAN Rich? +LUKE Yes. Rich, powerful! Listen, if you were to rescue her, the reward would be... +HAN What? +LUKE Well more wealth that you can imagine. +HAN I don't know, I can imagine quite a bit! +LUKE You'll get it! +HAN I better! +LUKE You will... +HAN All right, kid. But you'd better be right about this! +LUKE All right. +HAN What's your plan? +LUKE Uh... Threepio, hand me those binders there will you? +LUKE Okay. Now, I'm going to put these on you. +LUKE Okay. Han, you put these on. +HAN Don't worry, Chewie. I think I know what he has in mind. +THREEPIO Master Luke, sir! Pardon me for asking... but, ah... what should Artoo and I do if we're discovered here? +LUKE Lock the door! +HAN And hope they don't have blasters. +THREEPIO That isn't very reassuring. +LUKE I can't see a thing in this helmet. +HAN This is not going to work. +LUKE Why didn't you say so before? +HAN I did say so before! +OFFICER Where are you taking this... thing? +LUKE Prisoner transfer from Block one-one-three-eight. +OFFICER I wasn't notified. I'll have to clear it. +HAN Look out! He's loose! +LUKE He's going to pull us all apart. +HAN Go get him! +HAN We've got to find out which cell this princess of yours is in. Here it is... cell twenty-one-eight-seven. You go get her. I'll hold them here. +HAN Everything is under control. Situation normal. +INTERCOM VOICE What happened? +HAN Uh... had a slight weapons malfunction. But, uh, everything's perfectly all right now. We're fine. We're all fine here, now, thank you. How are you? +INTERCOM VOICE We're sending a squad up. +HAN Uh, uh, negative, negative. We had a reactor leak here now. Give us a few minutes to lock it down. Large leak... very dangerous. +INTERCOM VOICE Who is this? What's your operating number? +HAN Boring conversation anyway.Luke! We're going to have company! +LEIA Aren't you a little short for a stormtrooper? +LUKE What? Oh... the uniform. I'm Luke Skywalker. I'm here to rescue you. +LEIA You're who? +LUKE I'm here to rescue you. I've got your R2 unit. I'm here with Ben Kenobi. +LEIA Ben Kenobi is here! Where is he? +LUKE Come on! +VADER He is here... +TARKIN Obi-Wan Kenobi! What makes you think so? +VADER A tremor in the Force. The last time I felt it was in the presence of my old master. +TARKIN Surely he must be dead by now. +VADER Don't underestimate the Force. +TARKIN The Jedi are extinct, their fire has gone out of the universe. You, my friend, are all that's left of their religion. +TARKIN Yes. +INTERCOM VOICE Governor Tarkin, we have an emergency alert in detention block AA-twenty-three. +TARKIN The princess! Put all sections on alert! +VADER Obi-Wan is here. The Force is with him. +TARKIN If you're right, he must not be allowed to escape. +VADER Escape may not his plan. I must face him alone. +HAN Chewie! +HAN Get behind me! Get behind me! +HAN Can't get out that way. +LEIA Looks like you managed to cut off our only escape route. +HAN Maybe you'd like it back in your cell, Your Highness. +LUKE See-Threepio! See-Threepio! +THREEPIO Yes sir? +LUKE We've been cut off! Are there any other ways out of the cell bay?...What was that? I didn't copy! +THREEPIO I said, all systems have been alerted to your presence, sir. The main entrance seems to be the only way out; all other information on your level is restricted. +TROOPER VOICE Open up in there! +THREEPIO Oh, no! +LUKE There isn't any other way out. +HAN I can't hold them off forever! Now what? +LEIA This is some rescue. When you came in here, didn't you have a plan for getting out? +HAN He's the brains, sweetheart. +LUKE Well, I didn't... +HAN What the hell are you doing? +LEIA Somebody has to save our skins. Into the garbage chute, wise guy. +HAN Get in there you big furry oaf! I don't care what you smell! Get in there and don't worry about it. +HAN Wonderful girl! Either I'm going to kill her or I'm beginning to like her. Get in there! +HAN Oh! The garbage chute was a really wonderful idea. What an incredible smell you've discovered! Let's get out of here! Get away from there... +LUKE No! wait! +LUKE Will you forget it? I already tried it. It's magnetically sealed! +LEIA Put that thing away! You're going to get us all killed. +HAN Absolutely, Your Worship. Look, I had everything under control until you led us down here. You know, it's not going to take them long to figure out what happened to us. +LEIA It could be worse... +HAN It's worse. +LUKE There's something alive in here! +HAN That's your imagination. +LUKE Something just moves past my leg! Look! Did you see that? +HAN What? +LUKE Help! +HAN Luke! Luke! Luke! +LEIA Luke! +LEIA Luke, Luke, grab a hold of this. +LUKE Blast it, will you! My gun's jammed. +HAN Where? +LUKE Anywhere! Oh!! +HAN Luke! Luke! +LEIA Grab him! +LEIA What happened? +LUKE I don't know, it just let go of me and disappeared... +HAN I've got a very bad feeling about this. +LUKE The walls are moving! +LEIA Don't just stand there. Try and brace it with something. +LUKE Wait a minute! +LUKE Threepio! Come in Threepio! Threepio! Where could he be? +FIRST TROOPER Take over!See to him! Look there! +THREEPIO They're madmen! They're heading for the prison level. If you hurry, you might catch them. +FIRST OFFICER Follow me! You stand guard. +THREEPIO Come on! +THREEPIO Oh! All this excitement has overrun the circuits of my counterpart here. If you don't mind, I'd like to take him down to maintenance. +TROOPER All right. +LUKE Threepio! Come in, Threepio! Threepio! +HAN Get to the top! +LEIA I can't +LUKE Where could he be? Threepio! Threepio, will you come in? +THREEPIO They aren't here! Something must have happened to them. See if they've been captured. +THREEPIO Hurry! +HAN One thing's for sure. We're all going to be a lot thinner!Get on top of it! +LEIA I'm trying! +THREEPIO Thank goodness, they haven't found them! Where could they be? +THREEPIO Use the comlink? Oh, my! I forgot I turned it off! +THREEPIO Are you there, sir? +LUKE Threepio! +THREEPIO We've had some problems... +LUKE Shut down all the garbage mashers on the detention level, will you? Do you copy? +LUKE Shut down all the garbage mashers on the detention level. +LUKE Shut down all the garbage mashers on the detention level. +THREEPIO No. Shut them all down! Hurry! +THREEPIO Listen to them! They're dying, Artoo! Curse my metal body! I wasn't fast enough. It's all my fault! My poor master! +LUKE Threepio, we're all right! +LUKE We're all right. You did great. +LUKE Hey... hey, open the pressure maintenance hatch on unit number... where are we? +HAN Three-two-six-eight-two-seven. +HAN If we can just avoid any more female advice, we ought to be able to get out of here. +LUKE Well, let's get moving! +HAN Where are you going? +LEIA No, wait. They'll hear! +HAN Come here, you big coward! +HAN Chewie! Come here! +LEIA Listen. I don't know who you are, or where you came from, but from now on, you do as I tell you. Okay? +HAN Look, Your Worshipfulness, let's get one thing straight! I takeorders from one person! Me! +LEIA It's a wonder you're still alive.Will somebody get this big walking carpet out of my way? +HAN No reward is worth this. +OFFICER Secure this area until the alert is canceled. +FIRST TROOPER Give me regular reports. +FIRST TROOPER Do you know what's going on? +SECOND TROOPER Maybe it's another drill. +SECOND TROOPER What was that? +FIRST TROOPER Oh, it's nothing. Don't worry about it. +HAN There she is. +LUKE See-Threepio, do you copy? +THREEPIO For the moment. Uh, we're in the main hangar across from the ship. +LUKE We're right above you. Stand by. +LEIA You came in that thing? You're braver that I thought. +HAN Nice! Come on! +FIRST TROOPER It's them! Blast them! +HAN Get back to the ship! +LUKE Where are you going? Come back! +LEIA He certainly has courage. +LUKE What good will it do us if he gets himself killed? Come on! +LUKE I think we took a wrong turn. +LEIA There's no lock! +LUKE That oughta hold it for a while. +LEIA Quick, we've got to get across. Find the control that extends the bridge. +LUKE Oh, I think I just blasted it. +LEIA They're coming through! +LUKE Here, hold this. +LEIA Here they come! +LEIA For luck! +THREEPIO Where could they be? +TROOPER Close the blast doors! +TROOPER Open the blast doors! Open the blast doors! +VADER I've been waiting for you, Obi-Wan. We meet again, at last. The circle is now complete. +VADER When I left you, I was but the learner; now I am the master. +BEN Only a master of evil, Darth. +VADER Your powers are weak, old man. +BEN You can't win, Darth. If you strike me down, I shall become more powerful than you can possibly imagine. +HAN Didn't we just leave this party? +HAN What kept you? +LEIA We ran into some old friends. +LUKE Is the ship all right? +HAN Seems okay, if we can get to it.Just hope the old man got the tractor beam out of commission. +LUKE Look! +THREEPIO Come on, Artoo, we're going! +HAN Now's our chance! Go! +LUKE No! +HAN Come on! +LEIA Come on! Luke, its too late! +HAN Blast the door! Kid! +BEN'S VOICE Run, Luke! Run! +HAN I hope the old man got that tractor beam out if commission, or this is going to be a real short trip. Okay, hit it! +HAN We're coming up on the sentry ships. Hold 'em off! Angle the deflector shields while I charge up the main guns! +LUKE I can't believe he's gone. +LEIA There wasn't anything you could have done. +HAN Come on, buddy, we're not out of this yet! +HAN You in, kid? Okay, stay sharp! +LEIA Here they come! +LUKE They're coming in too fast! +THREEPIO Oooh! +LEIA We've lost lateral controls. +HAN Don't worry, she'll hold together. +HAN You hear me, baby? Hold together! +LUKE Got him! I got him! +HAN Great kid! Don't get cocky. +LEIA There are still two more of them out there! +LUKE That's it! We did it! +LEIA We did it! +THREEPIO Help! I think I'm melting!This is all your fault. +TARKIN Are they away? +VADER They have just made the jump into hyperspace. +TARKIN You're sure the homing beacon is secure aboard their ship? I'm taking an awful risk, Vader. This had better work. +HAN Not a bad bit of rescuing, huh? You know, sometimes I even amaze myself. +LEIA That doesn't sound too hard. Besides, they let us go. It's the only explanation for the ease of our escape. +HAN Easy... you call that easy? +LEIA Their tracking us! +HAN Not this ship, sister. +LEIA At least the information in Artoo is still intact. +HAN What's so important? What's he carrying? +LEIA The technical readouts of that battle station. I only hope that when the data is analyzed, a weakness can be found. It's not over yet! +HAN It is for me, sister! Look, I ain't in this for your revolution, and I'm not in it for you, Princess. I expect to be well paid. I'm in it for the money! +LEIA You needn't worry about your reward. If money is all that you love, then that's what you'll receive! +LEIA Your friend is quite a mercenary. I wonder if he really cares about anything... or anyone. +LUKE I care! +LUKE So... what do you think of her, Han? +HAN I'm trying not to, kid! +LUKE Good... +HAN Still, she's got a lot of spirit. I don't know, what do you think? Do you think a princess and a guy like me... +LUKE No! +WILLARD You're safe! We had feared the worst. +WILLARD When we heard about Alderaan, we were afraid that you were... lost along with your father. +LEIA We don't have time for our sorrows, commander. The battle station has surely tracked us here.It's the only explanation for the ease of our escape. You must use the information in this R2 unit to plan the attack. It is our only hope. +TARKIN Yes. +DEATH STAR INTERCOM VOICE We are approaching the planet Yavin. The Rebel base is on a moon on the far side. We are preparing to orbit the planet. +DODONNA The battle station is heavily shielded and carries a firepower greater than half the star fleet.Its defenses are designed around a direct large-scale assault. A small one-man fighter should be able to penetrate the outer defense. +GOLD LEADER Pardon me for asking, sir, but what good are snub fighters going to be against that? +DODONNA Well, the Empire doesn't consider a small one-man fighter to be any threat, or they'd have a tighter defense. An analysis of the plans provided by Princess Leia has demonstrated a weakness in the battle station. +DODONNA The approach will not be easy. You are required to maneuver straight down this trench and skim the surface to this point. The target area is only two meters wide. It's a small thermal exhaust port, right below the main port. The shaft leads directly to the reactor system. A precise hit will start a chain reaction which should destroy the station. +DODONNA Only a precise hit will set up a chain reaction. The shaft is ray-shielded, so you'll have to use proton torpedoes. +WEDGE That's impossible, even for a computer. +LUKE It's not impossible. I used to bullseye womp rats in my T-sixteen back home. They're not much bigger than two meters. +DODONNA Man your ships! And may the Force be with you! +DEATH STAR INTERCOM VOICE Orbiting the planet at maximum velocity. The moon with the Rebel base will be in range in thirty minutes. +VADER This will be a day long remembered. It has seen the end of Kenobi and it will soon see the end of the Rebellion. +MAN'S VOICE All flight troops, man your stations. All flight troops, man your stations. +LUKE So... you got your reward and you're just leaving then? +HAN That's right, yeah! I got some old debts I've got to pay off with this stuff. Even if I didn't, you don't think I'd be fool enough to stick around here, do you? Why don't you come with us? You're pretty good in a fight. I could use you. +LUKE Come on! Why don't you take a look around? You know what's about to happen, what they're up against. They could use a good pilot like you. You're turning your back on them. +HAN What good's a reward if you ain't around to use it? Besides, attacking that battle station ain'tmy idea of courage. It's more like suicide. +LUKE All right. Well, take care of yourself, Han... guess that's what you're best at, isn't it? +HAN Hey, Luke... may the Force be with you! +HAN What're you lookin' at? I know what I'm doing. +LEIA What's wrong? +LUKE Oh, it's Han! I don't know, I really thought he'd change his mind. +LEIA He's got to follow his own path. No one can choose it for him. +LUKE I only wish Ben were here. +BIGGS Luke! I don't believe it! How'd you get here... are you going out with us?! +LUKE Biggs! Of course, I'll be up there with you! Listen, have I got some stories to tell... +RED LEADER Are you... Luke Skywalker? Have you been checked out on the Incom T-sixty-five? +BIGGS Sir, Luke is the best bushpilot in the outer rim territories. +RED LEADER I met your father once when I was just a boy. He was a great pilot. You'll do all right. If you've got half of your father's skill, you'll do better than all right. +LUKE Thank you, sir. I'll try. +BIGGS I've got to get aboard. Listen, you'll tell me your stories when we come back. All right? +LUKE I told you I'd make it someday, Biggs. +BIGGS You did, all right. It's going to be like old times Luke. We're a couple of shooting stars that'll never be stopped! +CHIEF This R2 unit of your seems a bit beat up. Do you want a new one? +LUKE Not on your life! That little droid and I have been through a lot together.You okay, Artoo? +CHIEF Okay, easy she goes! +THREEPIO Hang on tight, Artoo, you've got to come back. +THREEPIO You wouldn't want my life to get boring, would you? +BEN'S VOICE Luke, the Force will be with you. +MASSASSI INTERCOM VOICE Stand-by alert. Death Star approaching. Estimated time to firing range, fifteen minutes. +RED LEADER All wings report in. +RED TEN Red Ten standing by. +RED SEVEN Red Seven standing by. +BIGGS Red Three standing by. +PORKINS Red Six standing by. +RED NINE Red Nine standing by. +WEDGE Red Two standing by. +RED ELEVEN Red Eleven standing by. +LUKE Red Five standing by. +RED LEADER Lock S-foils in attack position. +RED LEADER We're passing through their magnetic field. +RED LEADER Hold tight! +RED LEADER Switch your deflectors on. +RED LEADER Double front! +WEDGE Look at the size of that thing! +RED LEADER Cut the chatter, Red Two. +RED LEADER Accelerate to attack speed. This is it, boys! +GOLD LEADER Red Leader, this is Gold Leader. +RED LEADER I copy, Gold Leader. +GOLD LEADER We're starting for the target shaft now. +RED LEADER We're in position. I'm going to cut across the axis and try and draw their fire. +WEDGE Heavy fire, boss! Twenty-threedegrees. +RED LEADER I see it. Stay low. +LUKE This is Red Five! I'm going in! +BIGGS Luke, pull up! +BIGGS Are you all right? +LUKE I got a little cooked, but I'm okay. +ASTRO-OFFICER We count thirty Rebel ships, Lord Vader. But they're so small they're evading our turbo-lasers! +VADER We'll have to destroy them ship to ship. Get the crews to their fighters. +RED LEADER Luke, let me know when you're going in. +LUKE I'm on my way in now... +RED LEADER Watch yourself! There's a lot of fire coming from the right side of that deflection tower. +LUKE I'm on it. +CONTROL OFFICER Squad leaders, we've picked up a new group of signals. Enemy fighters coming your way. +LUKE My scope's negative. I don't see anything. +RED LEADER Keep up your visual scanning. With all this jamming, they'll be on top of you before your scope can pick them up. +RED LEADER Biggs! You've picked one up... watch it! +BIGGS I can't see it! Where is he?! +BIGGS He's on me tight, I can't shake him... I can't shake him. +LUKE Hang on, Biggs, I'm coming in. +LUKE Got him! +VADER Several fighters have broken off from the main group. Come with me! +BIGGS Pull in! Luke... pull in! +WEDGE Watch your back, Luke! +WEDGE Watch your back! Fighter's above you, coming in! +LUKE I'm hit, but not bad. +LUKE'S VOICE Artoo, see what you can do with it. Hang on back there. +RED LEADER Red Six... +RED LEADER Can you see Red Five? +RED TEN There's a heavy fire zone on this side. Red Five, where are you? +LUKE I can't shake him! +WEDGE I'm on him, Luke! +WEDGE Hold on! +LUKE Blast it! Wedge where are you? +LUKE Thanks, Wedge. +BIGGS Good shooting, Wedge! +GOLD LEADER Red Leader... +GOLD LEADER ... This is Gold Leader. We're starting out attack run. +RED LEADER I copy, Gold Leader. Move into position. +VADER Stay in attack formation! +GOLD LEADER The exhaust post is... +GOLD LEADER ... marked and locked in! +GOLD LEADER Switch power to front deflection screens. +GOLD LEADER How many guns do you think, Gold Five? +GOLD FIVE I'd say about twenty guns. Some on the surface, some on the towers. +MASSASSI INTERCOM VOICE Death Star will be in range in five minutes. +GOLD LEADER Switch to targeting computer. +GOLD TWO Computer's locked. Getting a signal. +GOLD TWO The guns... they've stopped! +GOLD FIVE Stabilize your rear deflectors. Watch for enemy fighters. +GOLD LEADER They've coming in! Three marks at two ten. +VADER I'll take them myself! Cover me! +WINGMAN'S VOICE Yes, sir. +GOLD LEADER I can't maneuver! +GOLD FIVE Stay on target. +GOLD LEADER We're too close. +GOLD FIVE Stay on target! +GOLD LEADER Loosen up! +GOLD FIVE Gold Five to Red Leader... +GOLD FIVE Lost Tiree, lost Dutch. +RED LEADER I copy, Gold Five. +GOLD FIVE They came from behind.... +OFFICER We've analyzed their attack, sir, and there is a danger. Should I have your ship standing by? +TARKIN Evacuate? In out moment of triumph? I think you overestimate their chances! +VOICE Rebel base, three minutes and closing. +RED LEADER Red Group, this is Red Leader. +RED LEADER Rendezvous at mark six point one. +WEDGE This is Red Two. Flying towards you. +BIGGS Red Three, standing by. +DODONNA Red Leader, this is Base One. Keep half your group out of range for the next run. +RED LEADER'S VOICE Copy, Base One. Luke, take Red Two and Three. Hold up here and wait for my signal... to start your run. +RED LEADER This is it! +RED TEN We should be able to see it by now. +RED LEADER Keep your eyes open for those fighters! +RED TEN There's too much interference! +RED TEN'S VOICE Red Five, can you see them from where you are? +LUKE No sign of any... wait! +LUKE Coming in point three five. +RED TEN I see them. +RED LEADER I'm in range. +RED LEADER Target's coming up! +RED LEADER Just hold them off for a few seconds. +VADER Close up formation. +RED LEADER Almost there! +RED TEN You'd better let her loose. +RED LEADER Almost there! +RED TEN I can't hold them! +RED LEADER It's away! +RED NINE'S VOICE It's a hit! +RED LEADER Negative. +RED LEADER Negative! It didn't go in, it just impacted on the surface. +LUKE Red Leader, we're right above you. Turn to point... +LUKE ... oh-five; we'll cover for you. +RED LEADER Stay there... +RED LEADER ... I just lost my starboard engine. +RED LEADER Get set up for your attack run. +DEATH STAR INTERCOM VOICE Rebel base, one minute and closing. +LUKE Biggs, Wedge, let's close it up. We're going in. We're going in full throttle. +WEDGE Right with you, boss. +BIGGS Luke, at that speed will you be able to pull out in time? +LUKE It'll be just like Beggar's Canyon back home. +BIGGS We'll stay back far enough to cover you. +WEDGE My scope shows the tower, but I can't see the exhaust port! Are you sure the computer can hit it? +LUKE Watch yourself! Increase speed full throttle! +WEDGE What about that tower? +LUKE You worry about those fighters! I'll worry about the tower! +LUKE Artoo... that, that stabilizer's broken loose again! See if you can't lock it down! +WEDGE I'm hit! I can't stay with you. +LUKE Get clear, Wedge. +LUKE You can't do any more good back there! +WEDGE Sorry! +VADER Let him go! Stay on the leader! +BIGGS Hurry, Luke, they're coming in much faster this time. I can't hold them! +LUKE Artoo, try and increase the power! +BIGGS Hurry up, Luke! +BIGGS Wait! +DEATH STAR INTERCOM VOICE Rebel base, thirty seconds and closing. +VADER I'm on the leader. +THREEPIO Hang on, Artoo! +BEN'S VOICE Use the Force, Luke. +BEN'S VOICE Let go, Luke. +VADER The Force is strong with this one! +BEN'S VOICE Luke, trust me. +BASE VOICE His computer's off. Luke, you switched off your targeting computer. What's wrong? +LUKE Nothing. I'm all right. +LUKE I've lost Artoo! +MASSASSI INTERCOM VOICE The Death Star has cleared the planet. The Death Star has cleared the planet. +DEATH STAR INTERCOM VOICE Rebel base, in range. +TARKIN You may fire when ready. +DEATH STAR INTERCOM VOICE Commence primary ignition. +VADER I have you now. +VADER What? +HAN Yahoo! +WINGMAN Look out! +HAN You're all clear, kid. +HAN Now let's blow this thing and go home! +INTERCOM VOICE Stand by to fire at Rebel base. +INTERCOM VOICE Standing by. +HAN Great shot, kid. That was one in a million. +BEN'S VOICE Remember, the Force will be with you... always. +LEIA Luke! Luke! Luke! +HAN Hey! Hey! +LUKE I knew you'd come back! I just knew it! +HAN Well, I wasn't gonna let you get all the credit and take all the reward. +LEIA Hey, I knew there was more to you than money. +LUKE Oh, no! +THREEPIO Oh, my! Artoo! Can you hear me? Say something!You can repair him, can't you? +TECHNICIAN We'll get to work on him right away. +THREEPIO You must repair him! Sir, if any of my circuits or gears will help, I'll gladly donate them. +LUKE He'll be all right. \ No newline at end of file diff --git a/Text_files/EpisodeVI_dialogues.txt b/Text_files/EpisodeVI_dialogues.txt new file mode 100644 index 0000000..d1d0cb0 --- /dev/null +++ b/Text_files/EpisodeVI_dialogues.txt @@ -0,0 +1,678 @@ +STAR WARS - EPISODE 6: RETURN OF THE JEDI + +SHUTTLE CAPTAIN Command station, this is ST 321. Code Clearance Blue. We're starting our approach. Deactivate the security shield. +DEATH STAR CONTROLLER +(filtered VO) The security deflector shield will be deactivated when we have confirmation of your code transmission. Stand by... You are clear to proceed. +SHUTTLE CAPTAIN We're starting our approach. +OFFICER Inform the commander that Lord Vader's shuttle has arrived. +OPERATOR Yes, sir. +JERJERROD Lord Vader, this is an unexpected pleasure. We're honored by your presence. +VADER You may dispense with the pleasantries, Commander. I'm here to put you back on schedule. +JERJERROD I assure you, Lord Vader, my men are working as fast as they can. +VADER Perhaps I can find new ways to motivate them. +JERJERROD I tell you, this station will be operational as planned. +VADER The Emperor does not share your optimistic appraisal of the situation. +JERJERROD But he asks the impossible. I need more men. +VADER Then perhaps you can tell him when he arrives. +JERJERROD (aghast) The Emperor's coming here? +VADER That is correct, Commander. And he is most displeased with your apparent lack of progress. +JERJERROD We shall double our efforts. +VADER I hope so, Commander, for your sake. The Emperor is not as forgiving as I am. +THREEPIO Of course I'm worried. And you should be, too. Lando Calrissian and poor Chewbacca never returned from this awful place. +THREEPIO Don't be so sure. If I told you half the things I've heard about this Jabba the Hutt, You'd probably short-circuit. +THREEPIO Artoo, are you sure this is the right place? I better knock, I suppose. +THREEPIO (instantly) There doesn't seem to be anyone there. Let's go back and tell Master Luke. +STRANGE VOICE Tee chuta hhat yudd! +THREEPIO Goodness gracious me! +THREEPIO Artoo Detoowha bo Seethreepiowha ey toota odd mischka Jabba du Hutt. +THREEPIO I don't think they're going to let us in, Artoo. We'd better go. +THREEPIO Artoo, wait. Oh, dear! Artoo. Artoo, I really don't think we should rush into all this. +THREEPIO Oh, Artoo! Artoo, wait for me! +THREEPIO Just you deliver Master Luke's message and get us out of here. Oh my! Oh! Oh, no. +BIB Die Wanna Wanga! +THREEPIO Oh, my! Die Wanna Wauaga. We -- we bring a message to your master, Jabba the Hutt. +THREEPIO (cont) ... and a gift. (thinks a moment, then to Artoo) Gift, what gift? +BIB Nee Jabba no badda. Me chaade su goodie. +THREEPIO He says that our instructions are to give it only to Jabba himself. +THREEPIO I'm terribly sorry. I'm afraid he's ever so stubborn about these sort of things. +BIB Nudd Chaa. +THREEPIO Artoo, I have a bad feeling about this. +THREEPIO Good morning. +JABBA Bo Shuda! +THREEPIO The message, Artoo, the message. +LUKE Greetings, Exalted One. Allow me to introduce myself. I am Luke Skywalker, Jedi Knight and friend to Captain Solo. I know that you are powerful, mighty Jabba, and that your anger with Solo must be equally powerful. I seek an audience with Your Greatness to bargain for Solo's life. (Jabba's crowd laughs) With your wisdom, I'm sure that we can work out an arrangement which will be mutually beneficial and enable us to avoid any unpleasant confrontation. As a token of my goodwill, I present to you a gift: these two droids. +THREEPIO What did he say? +LUKE (cont) ... Both are hardworking and will serve you well. +THREEPIO This can't be! Artoo, you're playing the wrong message. +JABBA (in Huttese subtitled) There will be no bargain. +THREEPIO We're doomed. +JABBA (in Huttese subtitled) I will not give up my favorite decoration. I like Captain Solo where he is. +THREEPIO Artoo, look! Captain Solo. And he's still frozen in carbonite. +THREEPIO What could possibly have come over Master Luke. Is it something I did? He never expressed any unhappiness with my work. Oh! Oh! Hold it! Ohh! +NINEDENINE Ah, good. New acquisitions. You are a protocol droid, are you not? +THREEPIO I am See-Threepio, human-cy... +NINEDENINE Yes or no will do. +THREEPIO Oh. Well, yes. +NINEDENINE How many languages do you speak? +THREEPIO I am fluent in over six million forms of communication, and can readily... +NINEDENINE Splendid! We have been without an interpreter since our master got angry with our last protocol droid and disintegrated him. +THREEPIO Disintegrated? +NINEDENINE (to a Gamorrean guard) Guard! This protocol droid might be useful. Fit him with a restraining bolt and take him back to His Excellency's main audience chamber. +THREEPIO (disappearing) Artoo, don't leave me! Ohhh! +NINEDENINE You're a feisty little one, but you'll soon learn some respect. I have need for you on the master's Sail Barge. And I think you'll fit in nicely. +JABBA Da Eitha! +OOLA Na Chuba negatorie Na! Na! Natoota... +JABBA Boscka! +BOUSHH (in Ubese subtitled) I have come for the bounty on this Wookiee. +THREEPIO Oh, no! Chewbacca! +JABBA (in Huttese subtitled) At last we have the mighty Chewbacca. +THREEPIO Oh, uh, yes, uh, I am here, Your Worshipfulness. Uh... yes! +THREEPIO Oh. The illustrious Jabba bids you welcome and will gladly pay you the reward of twenty- five thousand. +BOUSHH (in Ubese subtitled) I want fifty thousand. No less. +THREEPIO Uh, oh... but what, what did I say? (to Boushh) Uh, the mighty Jabba asks why he must pay fifty thousand. +THREEPIO Because he's holding a thermal detonator. +JABBA (in Huttese subtitled) This bounty hunter is my kind of scum. Fearless and inventive. +THREEPIO Jabba offers the sum of thirty-five. And I suggest you take it. +BOUSHH Zeebuss. +THREEPIO He agrees! +BOUSHH Just relax for a moment. You're free of the carbonite. +BOUSHH Shhh. You have hibernation sickness. +HAN I can't see. +BOUSHH You eyesight will return in time. +HAN Where am I? +BOUSHH Jabba's palace. +HAN Who are you? +LEIA Someone who loves you. +HAN Leia! +LEIA I gotta get you out of here. +HAN What's that? I know that laugh. +HAN Hey, Jabba. Look, Jabba, I was just on my way to pay you back, but I got a little sidetracked. It's not my fault. +JABBA (in Huttese subtitled) It's too late for that, Solo. You may have been a good smuggler, but now you're Bantha fodder. +HAN Look... +JABBA (cont Huttese subtitled) Take him away! +HAN Jabba... I'll pay you triple! You're throwing away a fortune here. Don't be a fool! +JABBA (in Huttese subtitled) Bring her to me. +LEIA We have powerful friends. You're gonna regret this... +JABBA (in Huttese subtitled) I'm sure. +LEIA Ugh! +THREEPIO Ohhh, I can't bear to watch. +HAN Chewie? Chewie, is that you? +HAN Ah! Chew--Chewie! +HAN Wait. I can't see, pal. What's goin' on? +HAN Luke? Luke's crazy. He can't even take care of himself, much less rescue anybody. +HAN A...Jedi Knight? I--I'm out of it for a little while, everybody gets delusions of grandeur. +HAN I'm all right, pal. I'm all right. +LUKE I must speak with Jabba. +LUKE You will take me to Jabba now! +LUKE You serve your master well. +LUKE And you will be rewarded. +THREEPIO At last! Master Luke's come to rescue me. +BIB Master. +BIB ...Luke Skywalker, Jedi Knight. +JABBA (in Huttese subtitled) I told you not to admit him. +LUKE I must be allowed to speak. +BIB (in Huttese subtitled) He must be allowed to speak. +JABBA (in Huttese subtitled) You weak-minded fool! He's using an old Jedi mind trick. +LUKE You will bring Captain Solo and the Wookiee to me. +JABBA (in Huttese subtitled) Your mind powers will not work on me, boy. +LUKE Nevertheless, I'm taking Captain Solo and his friends. You can either profit by this... or be destroyed! It's your choice. But I warn you not to underestimate my powers. +THREEPIO Master Luke, you're standing on... +JABBA (in Huttese subtitled) There will be no bargain, young Jedi. I shall enjoy watching you die. +JABBA Bascka! +THREEPIO Oh, no! The Rancor! +JABBA (in Huttese subtitled) Bring me Solo and the Wookiee. They will all suffer for this outrage. +LUKE Han! +HAN Luke! +LUKE Are you all right? +HAN Fine. Together again, huh? +LUKE Wouldn't miss it. +HAN How are we doing? +LUKE The same as always. +HAN That bad, huh? Where's Leia? +LEIA I'm here. +THREEPIO Oh, dear. His High Exaltedness, the great Jabba the Hutt, has decreed that you are to be terminated immediately. +HAN Good, I hate long waits. +THREEPIO You will therefore be taken to the Dune Sea and cast into the pit of Carkoon, the nesting place of the all-powerful Sarlacc. +HAN (to Luke) Doesn't sound so bad. +THREEPIO In his belly, you will find a new definition of pain and suffering, as you are slowly digested over a thousand years. +HAN On second thought, let's pass on that, huh? +LUKE You should have bargained, Jabba. That's the last mistake you'll ever make. +HAN I think my eyes are getting better. Instead of a big dark blur, I see a big light blur. +LUKE There's nothing to see. I used to live here, you know. +HAN You're gonna die here, you know. Convenient. +LUKE Just stick close to Chewie and Lando. I've taken care of everything. +HAN Oh... great! +JABBA (in Huttese subtitled) Soon you will learn to appreciate me. +THREEPIO Oh, I'm terribly sor... Artoo! What are you doing here? +THREEPIO Well, I can see you're serving drinks, but this place is dangerous. They're going to execute Master Luke and, if we're not careful, us too! +THREEPIO Hmm. I wish I had your confidence. +THREEPIO Victims of the almighty Sarlacc: His Excellency hopes that you will die honorably. But should any of you wish to beg for mercy, the great Jabba the Hutt will now listen to your pleas. +HAN Threepio, you tell that slimy piece of... worm-ridden filth he'll get no such pleasure from us. Right? +LUKE Jabba! This is your last chance. Free us or die. +JABBA (in Huttese subtitled) Move him into position. +JABBA (in Huttese subtitled) Put him in. +LUKE Easy, Chewie. +LANDO Whoa! Whoa! Help! +HAN Chewie, you okay? Where is he? +HAN I'm okay, pal. +LANDO Han! Chewie? +HAN Lando! +HAN Boba Fett?! Boba Fett?! Where? +HAN Lando, grab it! +LANDO Lower it! +HAN I'm trying! +HAN Whoa! Whoa! Grab me, Chewie! I'm slipping. +HAN Grab it! L--Lando. Grab! +HAN Grab it! Almost... You almost got it! +LANDO Hold it! Whoa! +HAN Gently now. All... all right. Now easy, easy. Hold me, Chewie. +HAN Chewie! Chewie, give me the gun. Don't move, Lando. +LANDO No, wait! I thought you were blind! +HAN It's all right. Trust me. Don't move. +LANDO All right! A little higher! Just a little higher! +HAN Chewie, Pull us up! Come on! Okay... up, Chewie, up! +LEIA Come on. We gotta get out of here quick. +THREEPIO Not my eyes! Artoo, help! Quickly, Artoo. Oh! Ohhh! You beast! +LUKE (to Leia) Get the gun! Point it at the deck! +LUKE Point it at the deck! +THREEPIO Artoo, where are we going? I couldn't possibly jump. +LUKE Come on! +LUKE Let's go! And don't forget the droids. +LANDO We're on our way. +HAN I don't know. All I can see is a lot of blowing sand! +LEIA That's all any of us can see. +HAN (blinking) Then I guess I'm getting better. +HAN (turning to Luke) I've got to hand it to you, kid, you were pretty good out there. +LUKE (shrugging it off) I had a lot of help. Think nothing of it. +HAN No, I'm thinking a lot about it. That carbon freeze was the closest thing to dead there is. And it wasn't just sleepin'. It was a big wide awake nothing! +LUKE (moving to his ship) I'll see you back at the fleet. +HAN Why don't you leave that crate and come with us? +LUKE I have a promise I have to keep first... to an old friend. +HAN (looking dubiously at Lando, obviously remembering his friend's betrayal and subsequent aide) Guess I owe you some thanks, too, Lando. +LANDO Figured if I left you frozen like that you'd just give me bad luck the rest of my life, so I might as well get you unfrozen sooner or later. +LEIA He means "You're welcome." +LANDO Come on, let's get off this miserable dust ball. +LUKE I'll meet you back at the fleet. +LEIA (over comlink) Hurry. The Alliance should be assembled by now. +LUKE I will. +HAN (over comlink) Hey, Luke, thanks. Thanks for comin' after me. Now I owe you one. +LUKE That's right, Artoo. We're going to the Dagobah system. I have a promise to keep... to an old friend. +EMPEROR (to Vader) Rise, my friend. +VADER The Death Star will be completed on schedule. +EMPEROR You have done well, Lord Vader. And now I sense you wish to continue your search for young Skywalker. +VADER Yes, my Master. +EMPEROR Patience, my friend. In time he will seek you out. And when he does, you must bring him before me. He has grown strong. Only together can we turn him to the dark side of the Force. +VADER As you wish. +EMPEROR Everything is proceeding as I have foreseen. +YODA Hmm. That face you make. Look I so old to young eyes? +LUKE No... of course not. +YODA (tickled, chuckles) I do, yes, I do! Sick have I become. Old and weak. (Points a crooked finger) When nine hundred years old you reach, look as good you will not. Hmm? +YODA Soon will I rest. Yes, forever sleep. Earned it, I have. +LUKE Master Yoda, you can't die. +YODA Strong am I with the Force... but not that strong! Twilight is upon me and soon night must fall. That is the way of things ... the way of the Force. +LUKE But I need your help. I've come back to complete the training. +YODA No more training do you require. Already know you that which you need. +LUKE Then I am a Jedi? +YODA (shakes his head) Ohhh. Not yet. One thing remains: Vader. You must confront Vader. Then, only then, a Jedi will you be. And confront him you will. +LUKE Master Yoda... is Darth Vader my father? +YODA Mmm... rest I need. Yes... rest. +LUKE Yoda, I must know. +YODA Your father he is. +YODA Told you, did he? +LUKE Yes. +YODA Unexpected this is, and unfortunate.. +LUKE Unfortunate that I know the truth? +YODA (gathering all his strength) No. Unfortunate that you rushed to face him... that incomplete was your training. Not ready for the burden were you. +LUKE Well, I'm sorry. +YODA Remember, a Jedi's strength flows from the Force. But beware. Anger, fear, aggression. The dark side are they. Once you start down the dark path, forever will it dominate your destiny. +YODA Luke...Luke...Do not...Do not underestimate the powers of the Emperor, or suffer your father's fate, you will. Luke, when gone am I (cough), the last of the Jedi will you be. Luke, the Force runs strong in your family. Pass on what you have learned, Luke... (with great effort) There is... another...Sky...Sky...walker. +LUKE I can't do it, Artoo. I can't go on alone. +BEN (OS) Yoda will always be with you. +LUKE Obi-Wan! Why didn't you tell me? +LUKE You told me Vader betrayed and murdered my father. +BEN You father was seduced by the dark side of the Force. He ceased to be Anakin Skywalker and became Darth Vader. When that happened, the good man who was your father was destroyed. So what I have told you was true... from a certain point of view. +LUKE (turning away, derisive) A certain point of view! +BEN Luke, you're going to find that many of the truths we cling to depend greatly on our own point of view. +BEN I don't blame you for being angry. If I was wrong in what I did, it certainly wouldn't have been for the first time. You see, what happened to your father was my fault. +BEN Anakin was a good friend. +BEN When I first knew him, your father was already a great pilot. But I was amazed how strongly the Force was with him. I took it upon myself to train him as a Jedi. I thought that I could instruct him just as well as Yoda. I was wrong. My pride has had terrible consequences for the galaxy. +LUKE There's still good in him. +BEN I also thought he could be turned back to the good side. It couldn't be done. He is more machine now than man. Twisted and evil. +LUKE I can't do it, Ben. +BEN You cannot escape your destiny. +LUKE I tried to stop him once. I couldn't do it. +BEN Vader humbled you when first you met him, Luke...but that experience was part of your training. It taught you, among other things, the value of patience. Had you not been so impatient to defeat Vader then, you could have finished your training here with Yoda. You would have been prepared. +LUKE But I had to help my friends. +BEN (grinning at Luke's indignation) And did you help them? It was they who had to save you. You achieved little by rushing back prematurely, I fear. +LUKE (with sadness) I found out Darth Vader was my father. +BEN To be a Jedi, Luke, you must confront and then go beyond the dark side - the side your father couldn't get past. Impatience is the easiest door - for you, like your father. Only, your father was seduced by what he found on the other side of the door, and you have held firm. You're no longer so reckless now, Luke. You are strong and patient. And now, you must face Darth Vader again! +LUKE I can't kill my own father. +BEN Then the Emperor has already won. You were our only hope. +LUKE Yoda spoke of another. +BEN The other he spoke of is your twin sister. +LUKE But I have no sister. +BEN Hmm. To protect you both from the Emperor, you were hidden from your father when you were born. The Emperor knew, as I did, if Anakin were to have any offspring, they would be a threat to him. That is the reason why your sister remains safely anonymous. +LUKE Leia! Leia's my sister. +BEN Your insight serves you well. Bury your feelings deep down, Luke. They do you credit. But they could be made to serve the Emperor. +BEN (continuing his narrative) When your father left, he didn't know your mother was pregnant. Your mother and I knew he would find out eventually, but we wanted to keep you both as safe as possible, for as long as possible. So I took you to live with my brother Owen on Tatooine... and your mother took Leia to live as the daughter of Senator Organa, on Alderaan. +BEN (attempting to give solace with his words) The Organa household was high-born and politically quite powerful in that system. Leia became a princess by virtue of lineage... no one knew she'd been adopted, of course. But it was a title without real power, since Alderaan had long been a democracy. Even so, the family continued to be politically powerful, and Leia, following in her foster father's path, became a senator as well. That's not all she became, of course... she became the leader of her cell in the Alliance against the corrupt Empire. And because she had diplomatic immunity, she was a vital link for getting information to the Rebel cause. That's what she was doing when her path crossed yours... for her foster parents had always told her to contact me on Tatooine, if her troubles became desperate. +LUKE But you can't let her get involved now, Ben. Vader will destroy her. +BEN She hasn't been trained in the ways of the Jedi the way you have, Luke ... but the Force is strong with her, as it is with all of your family. There is no avoiding the battle. You must face and destroy Vader! +HAN Well, look at you, a general, huh? +LANDO Oh, well, someone must have told them about my little maneuver at the battle of Taanab. +HAN (sarcastic) Well, don't look at me, pal. I just said you were a fair pilot. I didn't know they were lookin' for somebody to lead this crazy attack. +LANDO (smiling) I'm surprised they didn't ask you to do it. +HAN Well, who says they didn't. But I ain't crazy. You're the respectable one, remember? +MON MOTHMA The Emperor has made a critical error and the time for our attack has come. +MON MOTHMA The data brought to us by the Bothan spies pinpoints the exact location of the Emperor's new battle station. We also know that the weapon systems of this Death Star are not yet operational. With the Imperial Fleet spread throughout the galaxy in a vain effort to engage us, it is relatively unprotected. But most important of all, we've learned that the Emperor himself is personally overseeing the final stages of the construction of this Death Star. +MON MOTHMA (cont) Many Bothans died to bring us this information. Admiral Ackbar, please. +ACKBAR You can see here the Death Star orbiting the forest Moon of Endor. Although the weapon systems on this Death Star are not yet operational, the Death Star does have a strong defense mechanism. It is protected by an energy shield, which is generated from the nearby forest Moon of Endor. The shield must be deactivated if any attack is to be attempted. Once the shield is down, our cruisers will create a perimeter, while the fighters fly into the superstructure and attempt to knock out the main reactor. +ACKBAR (cont) General Calrissian has volunteered to lead the fighter attack +HAN Good luck. +HAN You're gonna need it. +ACKBAR General Madine. +GENERAL MADINE We have stolen a small Imperial shuttle. Disguised as a cargo ship, and using a secret Imperial code, a strike team will land on the moon and deactivate the shield generator. +THREEPIO Sounds dangerous. +LEIA (to Han) I wonder who they found to pull that off. +GENERAL MADINE General Solo, is your strike team assembled? +HAN Uh, my team's ready. I don't have a command crew for the shuttle. +HAN Well, it's gonna be rough, pal. I didn't want to speak for you. +HAN (smiles) That's one. +LEIA Uh, General... count me in. +VOICE (OS) I'm with you, too! +LEIA What is it? +LUKE (hesitant) Ask me again sometime. +HAN Luke. +LUKE Hi, Han... Chewie. +THREEPIO "Exciting" is hardly the word I would use. +HAN Look. I want you to take her. I mean it. Take her. You need all the help you can get. She's the fastest ship in the fleet. +LANDO All right, old buddy. You know, I know what she means to you. I'll take good care of her. She-she won't get a scratch. All right? +HAN (looks at him warmly) Right. I got your promise now. Not a scratch. +LANDO Look, would you get going, you pirate. +LANDO Good luck. +HAN You, too. +HAN You got her warmed? +LUKE Yeah, she's comin' up. +HAN No. I don't think the Empire had Wookiees in mind when they designed her, Chewie. +LEIA Hey, are you awake? +HAN Yeah, I just got a funny feeling. Like I'm not gonna see her again. +LEIA (softly) Come on, General, let's move. +HAN Right. Chewie, let's see what this piece of junk can do. Ready, everybody? +LUKE All set. +THREEPIO Here we go again. +HAN All right, hang on. +VADER What is thy bidding, my Master? +EMPEROR Send the fleet to the far side of Endor. There it will stay until called for. +VADER What of the reports of the Rebel fleet massing near Sullust? +EMPEROR It is of no concern. Soon the Rebellion will be crushed and young Skywalker will be one of us! Your work here is finished, my friend. Go out to the command ship and await my orders. +VADER Yes, my Master. +HAN If they don't go for this, we're gonna have to get outta here pretty quick, Chewie. +CONTROLLER (over radio) We have you on our screen now. Please identify. +HAN Shuttle Tydirium requesting deactivation of the deflector shield. +CONTROLLER (over radio) Shuttle Tydirium, transmit the clearance code for shield passage. +HAN Transmission commencing. +LEIA Now we find out if that code is worth the price we paid. +HAN It'll work. It'll work. +LUKE Vader's on that ship. +HAN Now don't get jittery, Luke. There are a lot of command ships. Keep your distance though, Chewie, but don't look like you're trying to keep your distance. +HAN I don't know. Fly casual. +LUKE I'm endangering the mission. I shouldn't have come. +HAN It's your imagination, kid. Come on. Let's keep a little optimism here. +VADER Where is that shuttle going? +PIETT (into comlink) Shuttle Tydirium, what is your cargo and destination? +PILOT VOICE (HAN)(filtered) Parts and technical crew for the forest moon. +VADER Do they have a code clearance? +PIETT It's an older code, sir, but it checks out. I was about to clear them. +PIETT Shall I hold them? +VADER No. Leave them to me. I will deal with them myself. +PIETT (surprised) As you wish, my lord. (to controller) Carry on. +HAN They're not goin' for it, Chewie. +CONTROLLER (filtered) Shuttle Tydirium, deactivation of the shield will commence immediately. Follow your present course. +HAN Okay! I told you it was gonna work. No problem. +THREEPIO Oh, I told you it was dangerous here. +LEIA Shall we try and go around? +HAN It'll take time. This whole party'll be for nothing if they see us. +HAN Chewie and I will take care of this. You stay here. +LUKE Quietly, there might be more of them out there. +HAN (grins) Hey... it's me. +SCOUT #1 Go for help! Go! +LUKE (sarcastic) Great. Come on. +LEIA Over there! Two more of them! +LUKE I see them. Wait, Leia! +LUKE (pointing to the controls) Quick! Jam their comlink. Center switch! +HAN Hey, wait! Ahhh! +LUKE Move closer! +LUKE Get alongside that one! +LUKE Get him! +LUKE (indicating the one ahead) Keep on that one! I'll take these two! +THREEPIO Oh, General Solo, somebody's coming. Oh! +HAN Luke! Where's Leia? +LUKE (concerned) What? She didn't come back? +HAN I thought she was with you. +LUKE We got separated. +LUKE Hey, we better go look for her. +HAN Take the squad ahead. We'll meet at the shield generator at 0300. +LUKE Come on, Artoo. We'll need your scanners. +THREEPIO Don't worry, Master Luke. We know what to do. +THREEPIO (to Artoo) And you said it was pretty here. Ugh! +LEIA Cut it out! +LEIA I'm not gonna hurt you. +LEIA Well, looks like I'm stuck here. Trouble is, I don't know where here is. +LEIA Well, maybe you can help me. Come on, sit down. +LEIA I promise I won't hurt you. Now come here. +LEIA All right. You want something to eat? +LEIA That's right. Come on. Hmmm? +LEIA Look, it's a hat. It's not gonna hurt you. Look. You're a jittery little thing, aren't you? +LEIA What is it? +SCOUT #l Freeze! Come on, get up! +SCOUT #1 Go get your ride and take her back to base. +SCOUT #2 Yes, sir. +LEIA Come on, let's get outta here. +GUARD Halt! The Emperor does not wish to be disturbed at the moment. +VADER (raising his gloved hand to the two guards and choking them with the Force) The Emperor will see me, now! +GUARD (repeating Vader's command) The Emperor will see you, now. +EMPEROR I told you to remain on the command ship. +VADER A small Rebel force has penetrated the shield and landed on Endor. +EMPEROR (no surprise) Yes, I know. +VADER (after a beat) My son is with them. +EMPEROR (very cool) Are you sure? +VADER I have felt him, my Master. +EMPEROR Strange, that I have not. I wonder if your feelings on this matter are clear, Lord Vader. +VADER They are clear, my Master. +EMPEROR Then you must go to the Sanctuary Moon and wait for them. +VADER (skeptical) He will come to me? +EMPEROR I have foreseen it. His compassion for you will be his undoing. He will come to you and then you will bring him before me. +VADER (bows) As you wish. +HAN (OS) Luke! Luke! +THREEPIO Oh, Master Luke. +LUKE There's two more wrecked speeders back there. And I found this. +THREEPIO I'm afraid that Artoo's sensors can find no trace of Princess Leia. +HAN (gravely) I hope she's alright. +HAN What, Chewie? What? Chewie! +HAN Hey, I don't get it. +HAN (cont) Nah, it's just a dead animal, Chewie. +LUKE Chewie, wa-wait! Don't! +HAN Nice work. Great, Chewie! Great! Always thinking with your stomach. +LUKE Will you take it easy? Let's just figure out a way to get out of this thing. (trying to free an arm) Han, can you reach my lightsaber? +HAN Yeah, sure. +THREEPIO Artoo, I'm not sure that's such a good idea. It's a very long dro-o-op!! +HAN Wha--? Hey! Point that thing someplace else. +HAN Hey! +LUKE Han, don't. It'll be all right. +LUKE Chewie, give 'em your crossbow. +THREEPIO Oh, my head. Oh, my goodness! +LUKE Do you understand anything they're saying? +THREEPIO Oh, yes, Master Luke! Remember that I am fluent in over six million forms of communication. +HAN What are you telling them? +THREEPIO Hello, I think... I could be mistaken. They're using a very primitive dialect. But I do believe they think I am some sort of god. +HAN Well, why don't you use your divine influence and get us out of this? +THREEPIO I beg your pardon, General Solo, but that just wouldn't be proper. +HAN Proper?! +THREEPIO It's against my programming to impersonate a deity. +HAN Why, you-- +HAN My mistake. He's an old friend of mine. +HAN I have a really bad feeling about this. +HAN What did he say? +THREEPIO I'm rather embarrassed, General Solo, but it appears you are to be the main course at a banquet in my honor. +HAN and LUKE Leia! +LEIA Oh! +THREEPIO Your Royal Highness. +LEIA But these are my friends. Threepio, tell them they must be set free. +HAN Somehow, I got the feeling that didn't help us very much. +LUKE Threepio, tell them if they don't do as you wish, you'll become angry and use your magic. +THREEPIO But Master Luke, what magic? couldn't possibly -- +LUKE Just tell them. +THREEPIO You see, Master Luke; they didn't believe me. Just... +THREEPIO ... as I said they wouldn't. Wha-wha-what's happening! Oh! Oh, dear! Oh! +THREEPIO Put me down! He-e-elp! Master Luke! Artoo! Somebody, somebody, help! Master Luke, Artoo! Artoo, quickly! Do something, somebody! Oh! Ohhh! +THREEPIO Oh, oh, oh, oh! Thank goodness. +LUKE Thanks, Threepio. +THREEPIO (still shaken) I...I never knew I had it in me. +THREEPIO Yes, Artoo. I was just coming to that. +HAN What's going on? +LEIA I don't know. +THREEPIO Wonderful! We are now a part of the tribe. +HAN Just what I always wanted. +HAN (chuckles) Well, short help is better than no help at all, Chewie. (to Wicket) Thank you. Okay. +THREEPIO He says the scouts are going to show us the quickest way to the shield generator. +HAN Good. How far is it? Ask him. We need some fresh supplies, too. And try and get our weapons back. +HAN (cont) And hurry up, will ya? I haven't got all day. +LUKE Luke, what's wrong? +LUKE Leia... do you remember your mother? Your real mother? +LEIA Just a little bit. She died when I was very young. +LUKE What do you remember? +LEIA Just...images, really. Feelings. +LUKE Tell me. +LEIA (a little surprised at his insistence) She was very beautiful. Kind, but...sad. (looks up) Why are you asking me all this? +LUKE I have no memory of my mother. I never knew her. +LEIA Luke, tell me. What's troubling you? +LUKE Vader is here...now, on this moon. +LEIA (alarmed) How do you know? +LUKE I felt his presence. He's come for me. He can feel when I'm near. That's why I have to go. (facing her) As long as I stay, I'm endangering the group and our mission here. (beat) I have to face him. +LEIA Why? +LUKE He's my father. +LEIA Your father? +LUKE There's more. It won't be easy for you to hear it, but you must. If I don't make it back, you're the only hope for the Alliance. +LEIA Luke, don't talk that way. You have a power I--I don't understand and could never have. +LUKE You're wrong, Leia. You have that power too. In time you'll learn to use it as I have. The Force is strong in my family. My father has it...I have it...and...my sister has it. +LUKE Yes. It's you Leia. +LEIA I know. Somehow...I've always known. +LUKE Then you know why I have to face him. +LEIA No! Luke, run away, far away. If he can feel your presence, then leave this place. I wish I could go with you. +LUKE No, you don't. You've always been strong. +LEIA But, why must you confront him? +LUKE Because...there is good in him. I've felt it. He won't turn me over to the Emperor. I can save him. I can turn him back to the good side. I have to try. +HAN Hey, what's goin' on? +LEIA Nothing. I - just want to be alone for a little while. +HAN (angry) Nothing? Come on, tell me. What's goin' on? +LEIA I...I can't tell you. +HAN (loses his temper) Did you tell Luke? Is that who you could tell? +LEIA I... +HAN Ahhh... +HAN I'm sorry. +LEIA Hold me. +COMMANDER This is a Rebel that surrendered to us. Although he denies it, I believe there may be more of them, and I request permission to conduct a further search of the area. +COMMANDER He was armed only with this. +VADER Good work, Commander. Leave us. Conduct your search and bring his companions to me. +COMMANDER Yes, my Lord. +VADER The Emperor has been expecting you. +LUKE I know, father. +VADER So, you have accepted the truth. +LUKE I've accepted the truth that you were once Anakin Skywalker, my father. +VADER (turning to face him) That name no longer has any meaning for me. +LUKE It is the name of your true self. You've only forgotten. I know there is good in you. The Emperor hasn't driven it from you fully. That is why you couldn't destroy me. That's why you won't bring me to your Emperor now. +VADER (indicating lightsaber) I see you have constructed a new lightsaber. +VADER Your skills are complete. Indeed, you are powerful, as the Emperor has foreseen. +LUKE Come with me. +VADER Obi-Wan once thought as you do. +VADER You don't know the power of the dark side. I must obey my master. +LUKE I will not turn...and you'll be forced to kill me. +VADER If that is your destiny. +LUKE Search your feelings, father. You can't do this. I feel the conflict within you. Let go of your hate. +VADER It is too late for me, son. The Emperor will show you the true nature of the Force. He is your master now. +LUKE Then my father is truly dead. +LEIA The main entrance to the control bunker's on the far side of that landing platform. This isn't gonna be easy. +HAN Hey, don't worry. Chewie and me got into a lot of places more heavily guarded than this. +LEIA What's he saying? +THREEPIO He says there's a secret entrance on the other side of the ridge. +LANDO Admiral, we're in position. All fighters accounted for. +ACKBAR (VO) Proceed with the countdown. All groups assume attack coordinates. +LANDO Don't worry, my friends are down there. They'll have that shield down on time...(to himself) or this'll be the shortest offensive of all time. +ACKBAR (VO) All craft, prepare to jump to hyperspace on my mark. +LANDO All right. Stand by. +HAN Back door, huh? Good idea. +HAN (cont) It's only a few guards. This shouldn't be too much trouble. +LEIA Well, it only takes one to sound the alarm. +HAN (with self-confident grin) Then we'll do it real quiet-like. +THREEPIO Oh! Oh, my. Uh, Princess Leia! +LEIA Quiet. +THREEPIO I'm afraid our furry companion has gone and done something rather rash. +LEIA Oh, no. +HAN (sighs) There goes our surprise attack. +SCOUT Look! Over there! Stop him! +HAN Not bad for a little furball. There's only one left. You stay here. We'll take care of this. +THREEPIO I have decided that we shall stay here. +EMPEROR Welcome, young Skywalker. I have been expecting you. +EMPEROR You no longer need those. +EMPEROR Guards, leave us. +EMPEROR (to Luke) I'm looking forward to completing your training. In time you will call me Master. +LUKE You're gravely mistaken. You won't convert me as you did my father. +EMPEROR Oh, no, my young Jedi. You will find that it is you who are mistaken...about a great many things. +VADER His lightsaber. +EMPEROR Ah, yes, a Jedi's weapon. Much like your father's. By now you must know your father can never be turned from the dark side. So will it be with you. +LUKE You're wrong. Soon I'll be dead...and you with me. +EMPEROR Perhaps you refer to the imminent attack of your Rebel fleet. +EMPEROR Yes...I assure you we are quite safe from your friends here. +LUKE Your overconfidence is your weakness. +EMPEROR Your faith in your friends is yours. +VADER It is pointless to resist, my son. +EMPEROR (angry) Everything that has transpired has done so according to my design. (indicates Endor) Your friends up there on the Sanctuary Moon... +EMPEROR (cont) ...are walking into a trap. As is your Rebel fleet! It was I who allowed the Alliance to know the location of the shield generator. It is quite safe from your pitiful little band. An entire legion of my best troops awaits them. +EMPEROR Oh...I'm afraid the deflector shield will be quite operational when your friends arrive. +HAN All right! Up! Move! Come on! Quickly! Quickly, Chewie. +LEIA Han! Hurry! The fleet will be here any moment. +HAN Charges! Come on, come on! +THREEPIO (to Wicket) Oh, my! They'll be captured! +THREEPIO Wa-wait! Wait, come back! Artoo, stay with me. +COMMANDER Freeze! You Rebel scum. +LANDO All wings report in. +WEDGE Red Leader standing by. +GRAY LEADER Gray Leader standing by. +GREEN LEADER Green Leader standing by. +WEDGE Lock S-foils in attack positions. +ACKBAR May the Force be with us. +LANDO We've got to be able to get some kind of a reading on that shield, up or down. Well, how could they be jamming us if they don't know if we're coming. +LANDO Break off the attack! The shield is still up. +RED LEADER (VO) I get no reading. Are you sure? +LANDO Pull up! All craft pull up! +ACKBAR Take evasive action! Green Group, stick close to holding sector MV-7. +CONTROLLER Admiral, we have enemy ships in sector 47. +ACKBAR It's a trap! +LANDO (over comlink) Fighters coming in. +REBEL PILOT There's too many of them! +LANDO Accelerate to attack speed! Draw their fire away from the cruisers. +WEDGE Copy, Gold Leader. +EMPEROR Come, boy. See for yourself. +EMPEROR From here you will witness the final destruction of the Alliance, and the end of your insignificant Rebellion. +EMPEROR You want this, don't you? The hate is swelling in you now. Take your Jedi weapon. Use it. I am unarmed. Strike me down with it. Give in to your anger. With each passing moment, you make yourself more my servant. +LUKE No! +EMPEROR It is unavoidable. It is your destiny. You, like your father, are now mine! +STORMTROOPER All right, move it! I said move it! Go on! +THREEPIO Hello! I say, over there! Were you looking for me? +BUNKER COMMANDER Bring those two down here! +STORMTROOPER Let's go! +THREEPIO Well, they're on their way. Artoo, are you sure this was a good idea? +STORMTROOPER Freeze! Don't move! +THREEPIO We surrender. +THREEPIO Ohhh! Stand back, Artoo. +LEIA The code's changed. We need Artoo! +HAN Here's the terminal. +LEIA (into comlink) Artoo, where are you? We need you at the bunker right away. +THREEPIO Going? What do you mean, you're going. But-- but going where, Artoo? No, what! Artoo! Oh, this is no time for heroics. Come back! +LANDO Watch yourself, Wedge! Three from above! +WEDGE Red Three, Red Two, pull in! +RED TWO Got it! +RED THREE Three of them coming in, twenty degrees! +WEDGE Cut to the left! I'll take the leader! They're heading for the medical frigate. +NAVIGATOR Pressure's steady. +LANDO Only the fighters are attacking. I wonder what those Star Destroyers are waiting for. +COMMANDER We're in attack position now, sir. +PIETT Hold here. +COMMANDER We're not going to attack? +PIETT I have my orders from the Emperor himself. He has something special planned for them. We only need to keep them from escaping. +EMPEROR As you can see, my young apprentice, your friends have failed. Now witness the firepower of this fully armed and operational battle station. (into comlink) Fire at will, Commander. +JERJERROD Fire! +LANDO That blast came from the Death Star! That thing's operational! (into comlink) Home One, this is Gold Leader. +ACKBAR We saw it. All craft prepare to retreat. +LANDO You won't get another chance at this, Admiral. +ACKBAR We have no choice, General Calrissian. Our cruisers can't repel firepower of that magnitude. +LANDO Han will have that shield down. We've got to give him more time. +THREEPIO We're coming! +HAN Come on! Come on! +THREEPIO Oh, Artoo, hurry! +THREEPIO My goodness! Artoo, why did you have to be so brave? +HAN Well, I suppose I could hotwire this thing. +LEIA I'll cover you. +LANDO (desperately) Yes! I said closer! Move as close as you can and engage those Star Destroyers at point- blank range. +ACKBAR At that close range, we won't last long against those Star Destroyers. +LANDO We'll last longer then we will against that Death Star...and we might just take a few of them with us. +REBEL PILOT She's gonna blow! +Y-WING PILOT I'm hit! +EMPEROR Your fleet has lost. And your friends on the Endor moon will not survive. There is no escape, my young apprentice. The Alliance will die...as will your friends. +EMPEROR Good. I can feel your anger. I am defenseless. Take your weapon! Strike me down with all your hatred, and your journey towards the dark side will be complete. +WALKER PILOT #1 Look! +PILOT #2 Get him off of there! +HAN I think I got it. I got it! +THREEPIO Oh, Princess Leia, are you all right? +HAN Let's see. +LEIA It's not bad. +STORMTROOPER (OS) Freeze! +THREEPIO Oh, dear. +STORMTROOPER Don't move! +HAN I love you. +LEIA I know. +STORMTROOPER Hands up! Stand up! +HAN (to Leia) Stay back. +HAN Chewie! Get down here! She's wounded! No, wait.... I got an idea. +EMPEROR (laughing) Good. Use your aggressive feelings, boy! Let the hate flow through you. +VADER Obi-Wan has taught you well. +LUKE I will not fight you, father. +VADER You are unwise to lower your defenses. +LUKE Your thoughts betray you, father. I feel the good in you...the conflict. +VADER There is no conflict. +LUKE You couldn't bring yourself to kill me before, and I don't believe you'll destroy me now. +VADER You underestimate the power of the dark side. If you will not fight, then you will meet your destiny. +EMPEROR (laughs) Good. Good. +LANDO Watch out. Squad at .06. +REBEL PILOT I'm on it, Gold Leader. +WEDGE Good shot, Red Two. +LANDO Now...come on, Han, old buddy. Don't let me down. +HAN/PILOT (VO) It's over, Commander. The Rebels have been routed. They're fleeing into the woods. We need reinforcements to continue the pursuit. +CONTROL ROOM COMMANDER Send three squads to help. Open the back door. +SECOND COMMANDER Yes, sir. +HAN Throw me another charge. +VADER You cannot hide forever, Luke. +LUKE I will not fight you. +VADER Give yourself to the dark side. It is the only way you can save your friends. Yes, your thoughts betray you. Your feelings for them are strong. Especially for... +VADER Sister! So...you have a twin sister. Your feelings have now betrayed her, too. Obi-Wan was wise to hide her from me. Now his failure is complete. If you will not turn to the dark side, then perhaps she will. +LUKE Never-r-r! +EMPEROR Good! Your hate has made you powerful. Now, fulfill your destiny and take your father's place at my side! +LUKE Never! I'll never turn to the dark side. You've failed, Your Highness. I am a Jedi, like my father before me. +EMPEROR So be it...Jedi. +HAN Move! Move! +ACKBAR The shield is down! Commence attack on the Death Star's main reactor. +LANDO We're on our way. Red Group, Gold Group, all fighters follow me. (laughs) Told you they'd do it! +EMPEROR If you will not be turned, you will be destroyed. +EMPEROR Young fool...only now, at the end, do you understand. +EMPEROR Your feeble skills are no match for the power of the dark side. You have paid the price for your lack of vision. +LUKE (groans) Father, please. Help me. +EMPEROR Now, young Skywalker...you will die. +WEDGE I'm going in. +LANDO Here goes nothing. +LANDO Now lock onto the strongest power source. It should be the power generator. +WEDGE Form up. And stay alert. We could run out of space real fast. +LANDO Split up and head back to the surface. See if you can get a few of those TIE fighters to follow you. +PILOT Copy, Gold Leader. +LANDO That was too close. +ACKBAR We've got to give those fighters more time. Concentrate all fire on that Super Star Destroyer. +CONTROLLER Sir, we've lost our bridge deflector shield. +PIETT Intensify the forward batteries. I don't want anything to get through. +PIETT Intensify forward firepower! +COMMANDER It's too late! +VADER (a whisper) Luke, help me take this mask off. +LURE But you'll die. +VADER Nothing can stop that now. Just for once... let me look on you with my own eyes. +ANAKIN (very weak) Now...go, my son. Leave me. +LUKE No. You're coming with me. I can't leave you here. I've got to save you. +ANAKIN You already have, Luke. You were right about me. Tell your sister...you were right. +LUKE Father... I won't leave you. +WEDGE There it is! +LANDO All right, Wedge. Go for the power regulator on the north tower. +WEDGE Copy, Gold Leader. I'm already on my way out. +ACKBAR Move the fleet away from the Death Star. +LANDO (into comlink) Wedge, I don't think we're going to make it. +WEDGE (VO) You'll make it. Just follow me Gold Leader. +LANDO (to himself) I promised to return his ship without a scratch...I sure hope that old pirate forgives me. +HAN (whispering to himself) Lando... +THREEPIO (misinterpreting Han's reference) They did it! +FADE OUT \ No newline at end of file diff --git a/Text_files/EpisodeV_dialogues.txt b/Text_files/EpisodeV_dialogues.txt new file mode 100644 index 0000000..fccf6f4 --- /dev/null +++ b/Text_files/EpisodeV_dialogues.txt @@ -0,0 +1,841 @@ +STAR WARS - EPISODE 5: THE EMPIRE STRIKES BACK + +LUKE: (into comlink) Echo Three to Echo Seven. Han, old buddy, do you read me? +HAN: (over comlink) Loud and clear, kid. What's up? +LUKE: (into comlink) Well, I finished my circle. I don't pick up any life readings. +HAN: (over comlink) There isn't enough life on this ice cube to fill a space cruiser. The sensors are placed. I'm going back. +LUKE: (into comlink) Right. I'll see you shortly. There's a meteorite that hit the ground near here. I want to check it out. It won't take long. +LUKE: Hey, steady girl. What's the matter? You smell something? +LUKE: Aaargh! +HAN: Chewie! +HAN: All right, don't lose your temper. I'll come right back and give you a hand. +RIEEKAN: Solo? +HAN: No sign of life out there, General. The sensors are in place. You'll know if anything comes around. +RIEEKAN: Commander Skywalker reported in yet? +HAN: No. He's checking out a meteorite that hit near him. +RIEEKAN: (indicates radar screen) With all the meteor activity in this system, it's going to be difficult to spot approaching ships. +HAN: General, I've got to leave. I can't stay anymore. +RIEEKAN: I'm sorry to hear that. +HAN: Well, there's a price on my head. If I don't pay off Jabba the Hut, I'm a dead man. +RIEEKAN: A death mark's not an easy thing to live with. You're a good fighter, Solo. I hate to lose you. +HAN: Thank you, General. +HAN: (with feeling) Well, Your Highness, I guess this is it. +LEIA: That's right. +HAN: (cooly) Well, don't get all mushy on me. So long, Princess. +LEIA: Han! +HAN: Yes, Your Highnessness? +LEIA: I thought you decided to stay. +HAN: Well, the bounty hunter we ran into on Ord Mantell changed my mind. +LEIA: Han, we need you! +HAN: We? +LEIA: Yes. +HAN: Oh, what about you need? +LEIA: (mystified) I need? I don't know what you're talking about. +HAN: (shakes his head, fed up) You probably don't. +LEIA: And what precisely am I supposed to know? +HAN: Come on! You want me to stay because of the way you feel about me. +LEIA: Yes. You're a great help to us. You're a natural leader... +HAN: No! That's not it. Come on. Aahhh -- uh huh! Come on. +LEIA: You're imagining things. +HAN: Am I? Then why are you following me? Afraid I was going to leave without giving you a goodbye kiss? +LEIA: I'd just as soon kiss a Wookiee. +HAN: I can arrange that. You could use a good kiss! +THREEPIO: Don't try to blame me. I didn't ask you to turn on the thermal heater. I merely commented that it was freezing in the princess's chamber. But it's supposed to be freezing. How are we going to dry out all her clothes? I really don't know. +THREEPIO: Oh, switch off. +HAN: (to Chewie) Why do you take this apart now? I'm trying to get us out of here and you pull both of these. +THREEPIO: Excuse me, sir. +HAN: (to Chewie) Put them back together right now. +THREEPIO: Might I have a word with you, please? +HAN: What do you want? +THREEPIO: Well, it's Princess Leia, sir. She's been trying to get you on the communicator. +HAN: I turned it off. I don't want to talk to her. +THREEPIO: Oh. Well, Princess Leia is wondering about Master Luke. He hasn't come back yet. She doesn't know where he is. +HAN: I don't know where he is. +THREEPIO: Nobody knows where he is. +HAN: What do you mean, "nobody knows"? +THREEPIO: Well, uh, you see... +HAN: Deck Officer. Deck Officer! +THREEPIO: Excuse me, sir. Might I inqu-... +DECK OFFICER: Yes, sir? +HAN: Do you know where Commander Skywalker is? +DECK OFFICER: I haven't seen him. It's possible he came in through the south entrance. +HAN: It's possible? Why don't you go find out? It's getting dark out there. +DECK OFFICER: Yes, sir. +THREEPIO: Excuse me, sir. Might I inquire what's going on? +HAN: Why not? +THREEPIO: Impossible man. Come along, Artoo, lets find Princess Leia. Between ourselves, I think Master Luke is in considerable danger. +DECK OFFICER: Sir, Commander Skywalker hasn't come in through the south entrance. He might have forgotten to check in. +HAN: Not likely. Are the speeders ready? +DECK OFFICER: Not yet. We're having some trouble adapting them to the cold. +HAN: Then we'll have to go out on Tauntauns. +DECK OFFICER: Sir, the temperature's dropping too rapidly. +HAN: That's right. And my friends out in it. +ASSISTANT OFFICER: I'll cover sector twelve. Have com-control set screen alpha. +DECK OFFICER: Your Tauntaun'll freeze before you reach the first marker. +HAN: Then I'll see you in hell! +THREEPIO: You must come along now, Artoo. There's really nothing more we can do. And my joints are freezing up. +THREEPIO: Don't say thing like that! Of course we'll see Master Luke again. He'll be quite all right, you'll see. (to himself) Stupid little short-circuit. He'll be quite all right. +LIEUTENANT: Sir, all the patrols are in. There's still no contact from Skywalker or Solo. +THREEPIO: Mistress Leia, Artoo says he's been quite unable to pick up any signals, although he does admit that his own range is far too weak to abandon all hope. +DERLIN: Your Highness, there's nothing more we can do tonight. The shield doors must be closed. +DERLIN: Close the doors. +LIEUTENANT: Yes, sir. +THREEPIO: Artoo says the chances of survival are seven hundred seventy-five...to one. +THREEPIO: Actually, Artoo has been known to make mistakes...from time to time. Oh, dear, oh, dear. Don't worry about Master Luke. I'm sure he'll be all right. He's quite clever, you know...for a human being. +BEN: Luke...Luke. +LUKE: (weakly) Ben? +BEN: You will go to the Dagobah system. +LUKE: Dagobah system? +BEN: There you will learn from Yoda, the Jedi Master who instructed me. +LUKE: (groaning faintly) Ben...Ben. +HAN: Luke! Luke! Don't do this, Luke. Come on, give me a sign here. +HAN: Not much time. +LUKE: (moaning) Ben...Ben... +HAN: Hang on, kid. +LUKE: Dagobah system... +HAN: (reeling from the odor) Whew... +LUKE: Dagobah... +HAN: This may smell bad, kid... +LUKE: (moaning) Yoda... +HAN: ...but it will keep you warm...til I get the shelter built. (struggling to get Luke in the carcass) Ooh...I thought they smelled bad on the outside! +ZEV: (into transmitter) Echo Base...I've got something! Not much, but it could be a life form. +ZEV: (into transmitter) This is Rouge Two. this is Rouge Two. Captain Solo, so you copy? Commander Skywalker, do you copy? This is Rouge Two. +HAN: (filtered over Zev's receiver) Good morning. Nice of you guys to drop by. +ZEV: (switching transmitters) Echo Base...this is Rouge Two. I found them. Repeat, I found them. +THREEPIO: Master Luke, sir, it's good to see you fully functional again. +THREEPIO: Artoo expresses his relief, also. +HAN: How are you feeling, kid? You don't look so bad to me. In fact, you look strong enough to pull the ears off a Gundark. +LUKE: Thanks to you. +HAN: That's two you owe me, junior. +HAN: Well your Worship, looks like you managed to keep me around for a little while longer. +LEIA: (haughtily) I had nothing to do with it. General Rieekan thinks it's dangerous for any ships to leave the system until we've activated the energy shield. +HAN: That's a good story. I think you just can't bear to let a gorgeous guy like me out of your sight. +LEIA: I don't know where you get you delusions, laser brain. +HAN: Laugh it up, fuzz ball. But you didn't see us alone in the south passage. +HAN: She expressed her true feelings for me. +LEIA: My...! Why, you stuck up,...half-witted,...scruffy-looking... nerf-herder! +HAN: Who's scruffy-looking? (to Luke) I must have hit her pretty close to the mark to get her all riled up like that, huh, kid? +LEIA: Why, I guess you don't know everything about women yet? +ANNOUNCER: (over loudspeaker) Headquarters personnel, report to command center. +HAN: Take it easy. +THREEPIO: Excuse us, please. +RIEEKAN: Princess...we have a visitor. +RIEEKAN: We've picked up something outside the base in zone twelve, moving east. +SENIOR CONTROLLER: It's metal. +LEIA: Then it couldn't be one of those creatures that attacked Luke. +HAN: It could be a speeder, one of ours. +SENIOR CONTROLLER: No. Wait -- there's something very weak coming through. +THREEPIO: Sir, I am fluent in six million forms of communication. This signal is not used by the Alliance. It could be an Imperial code. +HAN: It isn't friendly, whatever it is. Come on, Chewie, let's check it out. +RIEEKAN: Send Rouges Ten and Eleven to station three-eight. +HAN: (over comlink) Afraid there's not much left. +LEIA: (into comlink) What was it? +HAN: (over comlink) Droid of some kind. I didn't hit it that hard. It must have had a self-destruct. +LEIA: (into comlink) An Imperial probe droid. +HAN: (over comlink) It's a good bet the Empire knows we're here. +RIEEKAN: We'd better start the evacuation. +PIETT: Admiral. +OZZEL: Yes, Captain +PIETT: I think we've got something, sir. The report is only a fragment had. +OZZEL: (irritated) We have thousands of probe droids searching the galaxy. I want proof, not leads! +PIETT: The visuals indicate life readings. +OZZEL: It could mean anything. If we followed every lead... +PIETT: But, sir, the Hoth system is supposed to be devoid of human forms. +VADER: You found something? +PIETT: Yes, my lord. +VADER: (studying the image on the console screen) That's it. The Rebels are there. +OZZEL: My lord, there are so many uncharted settlements. It could be smugglers, it could be... +VADER: That is the system. And I'm sure Skywalker is with them. Set your course for the Hoth system. General Veers, prepare you men. +REBEL CAPTAIN: Groups seven and ten will stay behind to fly the speeders. As soon as each transport is loaded, evacuation control will give clearance for immediate launch. +REBEL FIGHTER: Right, sir. +HAN: (into comlink, to Chewie) Okay, that's it. Try it...Off! Turn it off! Turn it off! Off! +MEDICAL DROID: Sir, it will take quite awhile to evacuate the T-forty- sevens. +LUKE: Well, forget the heavy equipment. There's plenty of time to get the smaller modules on the transports. +MEDICAL DROID: Take care, sir. +LUKE: Thanks. +LUKE: Chewie, take care of yourself, okay? +HAN: Hi, kid. (to droid) There's got to be a reason for it. Check it at the other end. Wait a second. (to Luke) You all right? +LUKE: Yeah. +HAN: Be careful. +LUKE: You, too. +CONTROLLER: General, there's a fleet of Star Destroyers coming out of hyperspace in sector four. +RIEEKAN: Reroute all power to the energy shield. We've got to hold them till all transports are away. Prepare for ground assault. +VADER: What is it, General? +VEERS: My lord, the fleet has moves out of light-speed. Com-Scan has detected an energy field protecting an area around the sixth planet of the Hoth system. The field is strong enough to deflect any bombardment. +VADER: (angrily) The Rebels are alerted to our presence. Admiral Ozzel came out of light-speed too close to the system. +VEERS: He felt surprise was wiser... +VADER: He is as clumsy as he is stupid. General, prepare your troops for a surface attack. +VEERS: Yes, my lord. +OZZEL: Lord Vader, the fleet has moved out of light-speed, and we're preparing to...Aaagh! +VADER: You have failed me for the last time, Admiral. Captain Piett. +PIETT: Yes, my lord. +VADER: Make ready to land out troops beyond the energy shield and deploy the fleet so that nothing gets off that system. You are in command now, Admiral Piett. +PIETT: Thank you, Lord Vader. +LEIA: All troop carriers will assemble at the north entrance. The heavy transport ships will leave as soon as they're loaded. Only two fighter escorts per ship. The energy shield can only be opened for a short time, so you'll have to stay very close to your transports. +HOBBIE: Two fighters against a Star Destroyer? +LEIA: The ion cannon will fire several shots to make sure that any enemy ships will be out of your flight path. When you've gotten past the energy shield, proceed directly to the rendezvous point. Understood? +PILOTS: (in unison) Right. Okay. +LEIA: Good luck. +DERLIN: Okay. Everyone to your stations. Let's go! +RIEEKAN: Their primary target will be the power generators. Prepare to open the shield. +CONTROLLER: Sir, Rebel ships are coming into our sector. +CAPTAIN: Good. Our first catch of the day. +WOMAN CONTROLLER: Stand by, ion control....Fire! +ANNOUNCER: (over loudspeaker) The first transport is away. +DACK: Feeling all right, sir? +LUKE: Just like new, Dack. How about you? +DACK: Right now I feel I could take on the whole Empire myself. +LUKE: (quietly, strapping in) I know what you mean. +TRENCH OFFICER: Echo Station Three-T-Eight. +TRENCH OFFICER: (over comlink) We have spotted Imperial walkers! +CONTROLLER: Imperial walkers on the north ridge. +LUKE: (into comlink) Echo station Five-Seven. We're on our way. +LUKE: (into comlink) All right, boys, keep tight now. +DACK: Luke, I have no approach vector. I'm not set. +LUKE: Steady, Dack. Attack pattern delta. Go now! +LUKE: All right, I'm coming in. +LUKE: (into comlink) Hobbie, you still with me? +LUKE: That armor's too strong for blasters. +LUKE: (into comlink) Rouge Group, use your harpoons and tow cables. Go for the legs. It might be our only chance of stopping them. (to Dack) All right, stand by, Dack. +DACK: Luke, we've got a malfunction in fire control. I'll have to cut in the auxiliary. +LUKE: Just hang on. Hang on, Dack. Get ready to fire that tow cable. +LUKE: Dack? Dack! +VEERS: Yes, Lord Vader. I've reached the main power generator. The shield will be down in moments. You may start your landing. +LUKE: (into comlink) Rouge Three. +WEDGE: (into comlink) Copy, Rouge Leader +LUKE: (over comlink) Wedge, I've lost my gunner. You'll have to make this shot. I'll cover for you. Set your harpoon. Follow me on the next pass. +WEDGE: (into comlink) Coming around, Rouge Leader. +LUKE: (into comlink) Steady, Rouge Two +WEDGE: (to gunner) Activate harpoon. +WEDGE: (to gunner) Good shot, Janson. +WEDGE: One more pass. +JANSON: Coming around. Once more. +JANSON: One more. +JANSON: Cable out! Let her go! +WEDGE: Detach cable. +JANSON: Cable detached. +TRENCH OFFICER: Come on! +WEDGE: (into comlink) Whooha!! That got him! +LUKE: (into comlink) I see it, Wedge. Good work. +RIEEKAN: I don't think we can protect two transports at a time. +LEIA: It's risky, but we can't hold out much longer. We have no choice. +RIEEKAN: (into comlink) Launch patrols. +LEIA: (to an aide) Evacuate remaining ground staff. +HAN: No, no! No! This one goes there, that one goes there. right? +THREEPIO: Artoo, you take good care of Master Luke now, understand? And...do take care of yourself. Oh, dear, oh, dear. +VEERS: All troops will debark for ground assault. Prepare to target the main generator. +LUKE: (into comlink) Rouge Two, are you all right? +ZEV: (into comlink) Yeah. I'm with you, Rouge Leader. +LUKE: (into comlink) We'll set harpoon. I'll cover for you. +ZEV: (into comlink) Coming around. +LUKE: (into comlink) Watch that cross fire, boys. +ZEV: (into comlink) Set for position three. (to gunner) Steady. +LUKE: (over comlink) Stay tight and low. +LUKE: (into comlink) Hobbie, I've been hit! +HAN: You all right? +LEIA: Why are you still here? +HAN: I heard the command center had been hit. +LEIA: You got your clearance to leave. +HAN: Don't worry. I'll leave. First I'm going to get you to your ship. +THREEPIO: Your Highness, we must take this last transport. It's our only hope. +LEIA: (to controller) Send all troops in sector twelve to the south slope to protect the fighters. +ANNOUNCER: (over loudspeaker) Imperial troops have entered the base. +HAN: Come on...that's it. +LEIA: (to head controller) Give the evacuation code signal. And get to your transports! +HEAD CONTROLLER: K-one-zero...all troops disengage. +THREEPIO: (to Han and Leia) Oh! Wait for me! +OFFICER: Begin retreat! +SECOND OFFICER: Fall back! +VEERS: Distance to power generators? +PILOT: One-seven, decimal two-eight. +VEERS: Target. Maximum fire power. +HAN: (into comlink) Transport, this is Solo. Better take off -- I can't get to you. I'll get the princess out on the Falcon. +THREEPIO: But...but...but...where are you going? Uh...come back!! +THREEPIO: Wait! Wait for me! Wait! Stop! +THREEPIO: (exasperated) How typical. +HAN: Come on. +HAN: Hurry up, goldenrod, or you're going to be a permanent resident! +THREEPIO: Wait! Wait! +HAN: (to Chewie) How's this? +LEIA: Would it helped if I got out and pushed? +HAN: It might. +THREEPIO: Captain Solo, Captain Solo...sir, might I suggest that you... +THREEPIO: It can wait. +LEIA: The bucket of bolts is never going to get us past that blockade. +HAN: This baby's got a few surprises left in her, sweetheart. +HAN: Come on! Come on! Switch over. Let's hope we don't have a burnout. +HAN: See? +LEIA: Someday you're going to be wrong, and I hope I'm there to see it. +HAN: Punch it! +LUKE: Artoo! Get her ready for takeoff. +WEDGE: Good luck, Luke. See you at the rendezvous. +LUKE: Don't worry, Artoo. We're going, we're going. +LUKE: (into comlink) There's nothing wrong, Artoo. I'm just setting a new course. +LUKE: (into comlink) We're not going to regroup with the others. +LUKE: (into comlink) We're going to the Dagobah system. +LUKE: (into comlink) Yes, Artoo? +LUKE: (into comlink, chuckling) That's all right. I'd like to keep it on manual control for a while. +HAN: (harried) I saw them! I saw them! +LEIA: Saw what? +HAN: Star Destroyers, two of them, coming right at us. +THREEPIO: Sir, sir! Might I suggest... +HAN: (to Leia) Shut him up or shut him down! (to Chewie) Check the deflector shield! +HAN: Oh, great. Well, we can still outmaneuver them. +IMPERIAL OFFICER: Take evasive action! +HAN: Prepare to make the jump to light-speed. +THREEPIO: But, sir! +LEIA: They're getting closer! +HAN: (with a gleam in his eye) Oh yeah? Watch this. +LEIA: Watch what? +HAN: I think we're in trouble. +THREEPIO: If I may say so, sir, I noticed earlier the hyperdrive motivator has been damaged. It's impossible to go to light-speed! +HAN: We're in trouble! +HAN: Horizontal boosters...! +HAN: Alluvial dampers...! Well that's not it. +HAN: Bring me the hydrospanners! +HAN: I don't know how we're going to get out of this one. +HAN: Oww! Chewie! +HAN: That was no laser blast! Something hit us. +LEIA: (over comlink) Han, get up here! +HAN: Come on, Chewie! +LEIA: Asteroids! +HAN: Oh, no! Chewie, set two-seven-one. +LEIA: What are you doing? You're not actually going into an asteroid field? +HAN: They'd be crazy to follow us, wouldn't they? +LEIA: You don't have to do this to impress me. +THREEPIO: Sir, the possibility of successfully navigating an asteroid field is approximately three thousand, seven hundred and twenty to one. +HAN: Never tell me the odds! +HAN: You said you wanted to be around when I made a mistake; well, this could be it, sweetheart. +LEIA: I take it back. We're going to get pulverized if we stay out here much longer. +HAN: I'm not going to argue with that. +THREEPIO: Pulverized? +HAN: I'm going in closer to one of the big ones. +LEIA: Closer? +THREEPIO: Closer?! +THREEPIO: Oh, this is suicide! +HAN: There. That looks pretty good. +LEIA: What looks pretty good? +HAN: Yeah. That'll do nicely. +THREEPIO: (to Leia) Excuse me, ma'am, but where are we going? +LEIA: I hope you know what you're doing. +HAN: Yeah, me too. +LUKE: (into comlink) Yes, that's it. Dagobah. +LUKE: (into comlink) No, I'm not going to change my mind about this. (getting a little nervous) I'm not picking up any cities or technology. Massive life-form readings, though. There's something alive down there... +LUKE: (into comlink) Yes, I'm sure it's perfectly safe for droids. +LUKE: (into comlink) I know, I know! All the scopes are dead. I can't see a thing! Just hang on, I'm going to start the landing cycle... +LUKE: No, Artoo, you stay put. I'll have a look around. +LUKE: Artoo? +LUKE: Artoo! Where are you? +LUKE: Artoo! You be more careful. +LUKE: Artoo -- that way! +LUKE: Artoo! +LUKE: Oh, no! Are you all right? Come on. You're lucky you don't taste very good. Anything broken? +LUKE: If you're saying coming here was a bad idea, I'm beginning to agree with you. Oh, Artoo, what are we doing here? It's like... something out of a dream, or, I don't know. Maybe I'm just going crazy. +VADER: Yes, Admiral? +PIETT: Our ships have sighted the Millennium Falcon, lord. But...it has entered an asteroid field and we cannot risk... +VADER: (interrupting) Asteroids do not concern me, Admiral. I want that ship and not excuses. +PIETT: Yes, lord. +HAN: I'm going to shut down everything but the emergency power systems. +THREEPIO: Sir, I'm almost afraid to ask, but...does that include shutting me down, too? +HAN: No, I need you to talk to the Falcon, find out what's wrong with the hyperdrive. +THREEPIO: Sir, it's quite possible this asteroid is not entirely stable. +HAN: Not entirely stable? I'm glad you're here to tell us these things. Chewie, take the professor in the back and plug him into the hyperdrive. +THREEPIO: Oh! Sometimes I just don't understand human behavior. After all, I'm only trying to do my job in the most... +LEIA: Let go. +HAN: Sshh! +LEIA: Let go, please. +HAN: Don't get excited. +LEIA: Captain, being held by you isn't quite enough to get me excited. +HAN: Sorry, sweetheart. We haven't got time for anything else. +LUKE: Ready for some power? Okay. Let's see now. Put that in there. There you go. +LUKE: (sighs) Now all I have to do is find this Yoda...if he even exists. +LUKE: Still...there's something familiar about this place. I feel like...I don't know... +STRANGE VOICE: Feel like what? +LUKE: (looking at the creature) Like we're being watched! +CREATURE: Away with your weapon! I mean you no harm. +CREATURE: I am wondering, why are you here? +LUKE: I'm looking for someone. +CREATURE: Looking? Found someone, you have, I would say, hmmm? +LUKE: (Trying to keep from smiling) Right. +CREATURE: Help you I can. Yes, mmmm. +LUKE: I don't think so. I'm looking for a great warrior. +CREATURE: Ahhh! A great warrior. (laughs and shakes his head) Wars not make one great. +LUKE: Put that down. Hey! That's my dinner. +CREATURE: How you get so big, eating food of this kind? +LUKE: Listen, friend, we didn't mean to land in that puddle, and if we could get our ship out, we would, but we can't, so why don't you just... +CREATURE: (teasing) Aww, cannot get your ship out? +LUKE: Hey, you could have broken this. Don't do that. Ohhh...you're making a mess. Hey, give me that! +CREATURE: (retreating with the lamp) Mine! Or I will help you not. +LUKE: I don't want your help. I want my lamp back. I'll need it to get out of this slimy mudhole. +CREATURE: Mudhole? Slimy? My home this is. +CREATURE: Ah, ah, ah! +LUKE: Oh, Artoo, let him have it. +CREATURE: Mine! Mine! +LUKE: Artoo! +CREATURE: Mine! +CREATURE: Mine! +LUKE: (fed up) Now will you move along, little fella? We're got a lot of work to do. +CREATURE: No! No, no! Stay and help you, I will. (laughs) Find your friend, hmm? +LUKE: I'm not looking for a friend, I'm looking for a Jedi Master. +CREATURE: Oohhh. Jedi Master. Yoda. You seek Yoda. +LUKE: You know him? +CREATURE: Mmm. Take you to him, I will. (laughs) Yes, yes. But now, we must eat. Come. Good food. Come. +CREATURE: (in the distance) Come, come. +LUKE: Stay here and watch after the camp, Artoo. +THREEPIO: Oh, where is Artoo when I need him? +THREEPIO: Sir, I don't know where your ship learned to communicate, but it has the most peculiar dialect. I believe, sir, it says that the power coupling on the negative axis has been polarized. I'm afraid you'll have to replace it. +HAN: Well, of course I'll have to replace it. +HAN: Here! And Chewie... +HAN: (continued)...I think we'd better replace the negative power coupling. +HAN: Hey, Your Worship, I'm only trying to help. +LEIA: (still struggling) Would you please stop calling me that? +HAN: Sure, Leia. +LEIA: Oh, you make it so difficult sometimes. +HAN: I do, I really do. You could be a little nicer, though. (he watches her reaction) Come on, admit it. Sometimes you think I'm all right. +LEIA: Occasionally (a little smile, haltingly) maybe...when you aren't acting like a scoundrel. +HAN: (laughs) Scoundrel? Scoundrel? I like the sound of that. +LEIA: Stop that. +HAN: Stop what? +LEIA: Stop that! My hands are dirty. +HAN: My hands are dirty, too. What are you afraid of? +LEIA: (looking right into his eyes) Afraid? +HAN: You're trembling. +LEIA: I'm not trembling. +HAN: You like me because I'm a scoundrel. There aren't enough scoundrels in your life. +LEIA: I happen to like nice men. +HAN: I'm a nice man. +LEIA: No, you're not. You're... +THREEPIO: Sir, sir! I've isolated the reverse power flux coupling. +HAN: Thank you. Thank you very much. +THREEPIO: Oh, you're perfectly welcome, sir. +NEEDA: (in hologram)...and that, Lord Vader, was the last time they appeared in any of our scopes. Considering the amount of damage we've sustained, they must have been destroyed. +VADER: No, Captain, they're alive. I want every ship available to sweep the asteroid field until they are found. +PIETT: Lord Vader. +VADER: Yes, Admiral, what is it? +PIETT: The Emperor commands you make contact with him. +VADER: Move the ship out of the asteroid field so that we can send a clear transmission. +PIETT: Yes, my lord. +VADER: What is thy bidding, my master? +EMPEROR: There is a great disturbance in the Force. +VADER: I have felt it. +EMPEROR: We have a new enemy -- Luke Skywalker. +VADER: Yes, my master. +EMPEROR: He could destroy us. +VADER: He's just a boy. Obi-Wan can no longer help him. +EMPEROR: The Force is strong with him. The son of Skywalker must not become a Jedi. +VADER: If he could be turned, he would become a powerful ally. +EMPEROR: Yes. Yes. He would be a great asset. Can it be done? +VADER: He will join us or die, my master. +LUKE: Look, I'm sure it's delicious. I just don't understand why we can't see Yoda now. +CREATURE: Patience! For the Jedi it is time to eat as well. Eat, eat. Hot. Good food, hm? Good, hmm? +LUKE: How far away is Yoda? Will it take us long to get there? +CREATURE: Not far. Yoda not far. Patience. Soon you will be with him. (tasting food from the pot) Rootleaf, I cook. Why wish you become Jedi? Hm? +LUKE: Mostly because of my father, I guess. +CREATURE: Ah, your father. Powerful Jedi was he, powerful Jedi, mmm. +LUKE: (a little angry) Oh, come on. How could you know my father? You don't even know who I am. (fed up) Oh, I don't even know what I'm doing here. We're wasting our time. +CREATURE: (irritated) I cannot teach him. The boy has no patience. +BEN'S VOICE: He will learn patience. +YODA: Hmmm. Much anger in him, like his father. +BEN'S VOICE: Was I any different when you taught me? +YODA: Hah. He is not ready. +LUKE: Yoda! I am ready. I...Ben! I can be a Jedi. Ben, tell him I'm ready. +YODA: Ready, are you? What know you of ready? For eight hundred years have I trained Jedi. My own counsel will I keep on who is to be trained! A Jedi must have the deepest commitment, the most serious mind. (to the invisible Ben, indicating Luke) This one a long time have I watched. Never his mind on where he was. Hmm? What he was doing. Hmph. Adventure. Heh! Excitement. Heh! A Jedi craves not these things. (turning to Luke) You are reckless! +BEN'S VOICE: So was I, if you'll remember. +YODA: He is too old. Yes, too old to begin the training. +LUKE: But I've learned so much. +YODA: (sighs) Will he finished what he begins? +LUKE: I won't fail you -- I'm not afraid. +YODA: (turns slowly toward him) Oh, you will be. You will be. +THREEPIO: Sir, if I may venture an opinion... +HAN: I'm not really interested in your opinion, Threepio. +LEIA: (out of breath) There's something out there. +HAN: Where? +LEIA: Outside, in the cave. +THREEPIO: There it is. Listen! Listen! +HAN: I'm going out there. +LEIA: Are you crazy?! +HAN: I just got this bucket back together. I'm not going to let something tear it apart. +LEIA: Then I'm going with you. +THREEPIO: I think it might be better if I stay here and guard the ship. (hears another mysterious noise) Oh, no. +LEIA: This ground sure feels strange. It doesn't feel like rock at all. +HAN: There's an awful lot of moisture in here. +LEIA: I don't know. I have a bad feeling about this. +HAN: Yeah. +HAN: (to Leia) Watch out! +HAN: Yeah, that's what I thought. Mynock. Chewie, check the rest of the ship, make sure there aren't any more attached. They're chewing on the power cables. +LEIA: Mynocks? +HAN: Go on inside. We'll clean them off if there are any more. +THREEPIO: Ohhh! Go away! Go away! Beastly thing. Shoo! Shoo! +HAN: Wait a minute... +HAN: All right, Chewie, let's get out of here! +LEIA: The Empire is still out there. I don't think it's wise to... +HAN: (interrupting) No time to discuss this as a committee. +LEIA: (angry) I am not a committee! +LEIA: You can't make the jump to light-speed in this asteroid field... +HAN: Sit down, sweetheart. We're taking off! +THREEPIO: Look! +HAN: I see it, I see it. +THREEPIO: We're doomed! +LEIA: The cave is collapsing. +HAN: This is no cave. +LEIA: What? +YODA: Run! Yes. A Jedi's strength flows from the Force. But beware of the dark side. Anger...fear...aggression. The dark side of the Force are they. Easily they flow, quick to join you in a fight. If once you start down the dark path, forever will it dominate your destiny, consume you it will, as it did Obi-Wan's apprentice. +LUKE: Vader. Is the dark side stronger? +YODA: No...no...no. Quicker, easier, more seductive. +LUKE: But how am I to know the good side from the bad? +YODA: You will know. When you are calm, at peace. Passive. A Jedi uses the Force for knowledge and defense, never for attack. +LUKE: But tell me why I can't... +YODA: (interrupting) No, no, there is no why. Nothing more will I teach you today. Clear your mind of questions. Mmm. Mmmmmm. +LUKE: There's something not right here. +LUKE: I feel cold, death. +YODA: That place...is strong with the dark side of the Force. A domain of evil it is. In you must go. +LUKE: What's in there? +YODA: Only what you take with you. +YODA: Your weapons...you will not need them. +PIETT: Bounty hunters. We don't need that scum. +FIRST CONTROLLER: Yes, sir. +PIETT: Those Rebels won't escape us. +SECOND CONTROLLER: Sir, we have a priority signal from the Star Destroyer Avenger. +PIETT: Right. +VADER: ...there will be a substantial reward for the one who finds the Millennium Falcon. You are free to use any methods necessary, but I want them alive. No disintegrations. +BOBA FETT: As you wish. +PIETT: Lord Vader! My lord, we have them. +THREEPIO: Oh, thank goodness we're coming out of the asteroid field. +HAN: Let's get out of here. Ready for light-speed? One...two...three! +HAN: (frantic) It's not fair! +HAN: The transfer circuits are working. It's not my fault! +LEIA: (almost expecting it) No light-speed? +HAN: It's not my fault. +THREEPIO: Sir, we just lost the main rear deflector shield. One more direct hit on the back quarter and we're done for. +HAN: Turn her around. +HAN: I said turn her around! I'm going to put all power in the front shield. +LEIA: You're going to attack them?! +THREEPIO: Sir, the odds of surviving a direct assault on an Imperial Star Destroyer... +LEIA: Shut up! +NEEDA: They're moving to attack position. Shields up! +NEEDA: Track them,. They may come around for another pass. +TRACKING OFFICER: Captain Needa, the ship no longer appears on our scopes. +NEEDA: They can't have disappeared. No ship that small has a cloaking device. +TRACKING OFFICER: Well, there's no trace of them, sir. +COMMUNICATIONS OFFICER: Captain, Lord Vader demands an update on the pursuit. +NEEDA: (drawing a breath) Get a shuttle ready. I shall assume full responsibility for losing them, and apologize to Lord Vader. Meanwhile, continue to scan the area. +COMMUNICATIONS OFFICER: Yes, Captain Needa. +YODA: Use the Force. Yes... +YODA: Now...the stone. Feel it. +YODA: Concentrate! +LUKE: Oh, no. We'll never get it out now. +YODA: So certain are you. Always with you it cannot be done. Hear you nothing that I say? +LUKE: Master, moving stones around is one thing. This is totally different. +YODA: No! No different! Only different in your mind. You must unlearn what you have learned. +LUKE: (focusing, quietly) All right, I'll give it a try. +YODA: No! Try not. Do. Or do not. There is no try. +LUKE: (panting heavily) I can't. It's too big. +YODA: Size matters not. Look at me. Judge me by my size, do you? Hm? Mmmm. +YODA: And well you should not. For my ally in the Force. And a powerful ally it is. Life creates it, makes it grow. It's energy surrounds us and binds us. Luminous beings are we...(Yoda pinches Luke's shoulder)...not this crude matter. (a sweeping gesture) You must feel the Force around you. (gesturing) Here, between you...me...the tree...the rock...everywhere! Yes, even between this land and that ship! +LUKE: (discouraged) You want the impossible. +LUKE: I don't...I don't believe it. +YODA: That is why you fail. +VADER: Apology accepted, Captain Needa. +PIETT: Lord Vader, our ships have completed their scan of the area and found nothing. If the Millennium Falcon went into light-speed, it'll be on the other side of the galaxy by now. +VADER: Alert all commands. Calculate every possible destination along their last know trajectory. +PIETT: Yes, my lord. We'll find them. +VADER: Don't fail me again, Admiral. +PIETT: Alert all commands. Deploy the fleet. +THREEPIO: Captain Solo, this time you have gone too far. (Chewie growls) No, I will not be quiet, Chewbacca. Why doesn't anyone listen to me? +HAN: (to Chewie) The fleet is beginning to break up. Go back and stand by the manual release for the landing claw. +THREEPIO: I really don't see how thats going to help. Surrender is a perfectly acceptable alternative in extreme circumstances. The Empire may be gracious enough... +HAN: Thank you. +LEIA: What did you have in mind for your next move? +HAN: Well, if they follow standard Imperial procedure, they'll dump their garbage before they go to light-speed, then we just float away. +LEIA: With the rest of the garbage. Then what? +HAN: Then we've got to find a safe port somewhere around here. Got any ideas? +LEIA: No. Where are we? +HAN: The Anoat system. +LEIA: Anoat system. There's not much there. +HAN: No. Well, wait. This is interesting. Lando. +LEIA: Lando system? +HAN: Lando's not a system, he's a man. Lando Calrissian. He's a card player, gambler, scoundrel. You'd like him. +LEIA: Thanks. +HAN: Bespin. It's pretty far, but I think we can make it. +LEIA: (reading from the computer) A mining colony? +HAN: Yeah, a Tibanna gas mine. Lando conned somebody out of it. We go back a long way, Lando and me. +LEIA: Can you trust him? +HAN: No. But he has no love for the Empire, I can tell you that. +HAN: (into intercom) Here we go, Chewie. Stand by. Detach! +LEIA: You do have your moments. Not many, but you have them. +YODA: Concentrate...feel the Force flow. Yes. Good. Calm, yes. Through the Force, things you will see. Other places. The future...the past. Old friends long gone. +LUKE: Han! Leia! +YODA: (shaking his head) Hmm. Control, control. You must learn control. +LUKE: I saw...I saw a city in the clouds. +YODA: Mmm. Friends you have there. +LUKE: They were in pain. +YODA: It is the future you see. +LUKE: Future? Will they die? +YODA: Difficult to see. Always in motion is the future. +LUKE: I've got to go to them. +YODA: Decide you must how to serve them best. If you leave now, help them you could. But you would destroy all for which they have fought and suffered. +HAN: (into transmitter) No, I don't have a landing permit. I'm trying to reach Lando Calrissian. +HAN: (into transmitter) Whoa! Wait a minute! Let me explain. +INTERCOM VOICE: You will not deviate from your present course. +THREEPIO: Rather touchy, aren't they? +LEIA: I thought you knew this person. +HAN: (to Chewie) Well, that was a long time ago. I'm sure he's forgotten about that. +INTERCOM VOICE: Permission granted to land on Platform Three-two-seven. +HAN: (into transmitter) Thank you. +HAN: There's nothing to worry about. We go way back, Lando and me. +LEIA: Who's worried? +THREEPIO: Oh. No one to meet us. +LEIA: I don't like this. +HAN: Well, what would you like? +THREEPIO: Well, they did let us land. +HAN: Look, don't worry. Everything's going to be fine. Trust me. +HAN: See? My friend. (to Chewie) Keep your eyes open, okay? +LANDO: Why, you slimy, double-crossing, no-good swindler! You've got a lot of guts coming here, after what you pulled. +LANDO: (laughs) How you doing, you old pirate? So good to see you! I never thought I'd catch up with you again. Where you been? +THREEPIO: Well, he seems very friendly. +LEIA: (wary) Yes...very friendly. +LANDO: What are you doing here? +HAN: (gestures toward the Falcon) Ahh...repairs. I thought you could help me out. +LANDO: (in mock panic) What have you done to my ship? +HAN: Your ship? Hey, remember, you lost her to me fair and square. +LANDO: Hello. What have we here? Welcome. I'm Lando Calrissian. I'm the administrator of this facility. and who might you be? +LEIA: Leia. +LANDO: Welcome, Leia. +HAN: All right, all right, you old smoothie. +THREEPIO: Hello, sir. I am See-Threepio, human-cyborg relations. My facilities are at your... +THREEPIO: Well, really! +LANDO: What's wrong with the Falcon? +HAN: Hyperdrive. +LANDO: I'll get my people to work on it. +HAN: Good. +LANDO: You know, that ship saved my life quite a few times. She's the fastest hunk of junk in the galaxy. +HAN: How's the gas mine? Is it paying off for you? +LANDO: Oh, not as well as I'd like. We're a small outpost and not very self-sufficient. And I've had supply problems of every kind. I've had labor difficulties...(catches Han grinning at him) What's so funny? +HAN: You. Listen to you -- you sound like a businessman, a responsible leader. Who'd have thought that, huh? +LANDO: You know, seeing you sure brings back a few things. +HAN: Yeah. +LANDO: (shakes his head) Yeah, I'm responsible these days. It's the price you pay for being successful. +THREEPIO: Oh! Nice to see a familiar face. +SECOND THREEPIO: (mumbles) E chu ta! +THREEPIO: How rude! +THREEPIO: That sounds like an R2 unit in there. I wonder if... +THREEPIO: Hello? How interesting. Oh, my. +MAN'S VOICE: (from within) Who are you? +THREEPIO: Oh, I'm terribly sorry. I...I didn't mean to intrude. No, no, please don't get up. No! +YODA: Luke! You must complete the training. +LUKE: I can't keep the vision out of my head. They're my friends. I've got to help them. +YODA: You must not go! +LUKE: But Han and Leia will die if I don't. +BEN'S VOICE: You don't know that. +BEN: Even Yoda cannot see their fate. +LUKE: But I can help them! I feel the Force! +BEN: But you cannot control it. This is a dangerous time for you, when you will be tempted by the dark side of the Force. +YODA: Yes, yes. To Obi-Wan you listen. The cave. Remember your failure at the cave! +LUKE: But I've learned so much since then. Master Yoda, I promise to return and finish what I've begun. You have my word. +BEN: It is you and your abilities the Emperor wants. that is why your friends are made to suffer. +LUKE: And that is why I have to go. +BEN: Luke, I don't want to lose you to the Emperor the way I lost Vader. +LUKE: You won't. +YODA: Stopped they must be. On this depends. Only a fully trained Jedi Knight with the Force as his ally will conquer Vader and his Emperor. If you end your training now, if you choose the quick and easy path, as Vader did, you will become an agent of evil. +BEN: Patience. +LUKE: And sacrifice Han and Leia? +YODA: If you honor what they fight for...yes! +BEN: If you choose to face Vader, you will do it alone. I cannot interfere. +LUKE: I understand. (he moves to his X-wing) Artoo, fire up the converters. +BEN: Luke, don't give in to hate -- that leads to the dark side. +YODA: Strong is Vader. Mind what you have learned. Save you it can. +LUKE: I will. And I'll return. I promise. +YODA: (sighs) Told you, I did. Reckless is he. Now matters are worse. +BEN: That boy is our last hope. +YODA: (looks up) No. There is another. +HAN: The ship is almost finished. Two or Three more things and we're in great shape. +LEIA: The sooner the better. Something's wrong here. No one has seen or knows anything about Threepio. He's been gone too long to have gotten lost. +HAN: Relax. I'll talk to Lando and see what I can find out. +LEIA: I don't trust Lando. +HAN: Well, I don't trust him, either. But he is my friend. Besides, we'll soon be gone. +LEIA: And then you're as good as gone, aren't you? +LEIA: What happened? +HAN: Where? Found him in a junk pile? +LEIA: Oh, what a mess. Chewie, do you think you can repair him? +HAN: Lando's got people who can fix him. +LEIA: No, thanks. +LANDO: I'm sorry. Am I interrupting anything? +LEIA: Not really. +LANDO: You look absolutely beautiful. You truly belong here with us among the clouds. +LEIA: (coolly) Thank you. +LANDO: Will you join me for a little refreshment? +LANDO: Everyone's invited, of course. +LANDO: Having trouble with you droid? +HAN: No. No problem. Why? +LANDO: So you see, since we're a small operation, we don't fall into the...uh...jurisdiction of the Empire. +LEIA: So you're part of the mining guild then? +LANDO: No, not actually. Our operation is small enough not to be noticed...which is advantageous for everybody since our customers are anxious to avoid attracting attention to themselves. +HAN: Aren't you afraid the Empire's going to find out about this little operation and shut you down? +LANDO: That's always been a danger looming like a shadow over everything we've built here. But things have developed that will insure security. I've just made a deal that will keep the Empire out of here forever. +VADER: We would be honored if you would join us. +LANDO: I had no choice. They arrived right before you did. I'm sorry. +HAN: I'm sorry, too. +LUKE: (into comlink) No, Threepio's with them. +LUKE: (into comlink) Just hang on. We're almost there. +THREEPIO: Mmmm. Oh, my. Uh, I, uh -- Take this off! I, uh, don't mean to intrude here. I, don't, no, no, no...Please don't get up. No! +THREEPIO: Stormtroopers? Here? We're in danger. I must tell the others. Oh, no! I've been shot! +LANDO: Lord Vader. +VADER: (to Fett) You may take Captain Solo to Jabba the Hut after I have Skywalker. +BOBA FETT: He's no good to me dead. +VADER: He will not be permanently damaged. +LANDO: Lord Vader, what about Leia and the Wookiee? +VADER: They must never again leave this city. +LANDO: That was never a condition of our agreement, nor was giving Han to this bounty hunter! +VADER: Perhaps you think you're being treated unfairly. +LANDO: No. +VADER: Good. It would be unfortunate if I had to leave a garrison here. +LANDO: This deal's getting worse all the time. +THREEPIO: Oh, yes, that's very good. I like that. Oh! Something's not right because now I can't see. Wait. Wait! Oh, my! what have you done? I'm backwards, you stupid furball. Only an overgrown mophead like you would be stupid enough... +HAN: I feel terrible. +LEIA: Why are they doing this? +HAN: They never even asked me any questions. +LEIA: Lando. +HAN: Get out of here, Lando! +LANDO: Shut up and listen! Vader has agreed to turn Leia and Chewie over to me. +HAN: Over to you? +LANDO: They'll have to stay here, but at least they'll be safe. +LEIA: What about Han? +LANDO: Vader's giving him to the bounty hunter. +LEIA: Vader wants us all dead. +LANDO: He doesn't want you at all. He's after somebody called Skywalker. +HAN: Luke? +LANDO: Lord Vader has set a trap for him. +LEIA: And we're the bait. +LANDO: Well, he's on his way. +HAN: Perfect. You fixed us all pretty good, didn't you? (spits it out) My friend! +LANDO: Stop! I've done all I can do. I'm sorry I couldn't do better, but I have my own problems. +HAN: Yeah, you're a real hero. +LEIA: (dabs at his wound) You certainly have a way with people. +VADER: This facility is crude, but it should be adequate to freeze Skywalker for his journey to the Emperor. +IMPERIAL SOLDIER: Lord Vader, ship approaching. X-wing class. +VADER: Good. Monitor Skywalker and allow him to land. +LANDO: Lord Vader, we only use this facility for carbon freezing. If you put him in there, it might kill him. +VADER: I do not want the Emperor's prize damaged. We will test it...on Captain Solo. +THREEPIO: If only you had attached my legs, I wouldn't be in this ridiculous position. Now, remember, Chewbacca, you have a responsibility to me, so don't do anything foolish. +HAN: (to Lando) What's going on...buddy? +LANDO: You're being put into carbon freeze. +BOBA FETT: What if he doesn't survive? He's worth a lot to me. +VADER: The Empire will compensate you if he dies. Put him in! +THREEPIO: Oh, no! No, no, no! Stop, Chewbacca, stop...! +HAN: Stop, Chewie, stop! Do you hear me? Stop! +THREEPIO: Yes, stop, please! I'm not ready to die. +HAN: Chewie! Chewie, this won't help me. Hey! +HAN: Save your strength. There'll be another time. The princess -- you have to take care of her. You hear me? +LEIA: I love you! +HAN: I know. +THREEPIO: What...what's going on? Turn around, Chewbacca, I can't see. Oh...they've encased him in carbonite. He should be quite well-protected -- if he survives the freezing process, that is. +VADER: Well, Calrissian, did he survive? +LANDO: Yes, he's alive. And in perfect hibernation. +VADER: He's all yours bounty hunter. Reset the chamber for Skywalker. +IMPERIAL OFFICER: Skywalker has just landed, my lord. +VADER: Good. See to it that he finds his way here. Calrissian, take the princess and the Wookiee to my ship. +LANDO: You said they'd be left in the city under my supervision. +VADER: I am altering the deal. Pray I don't alter it any further. +LEIA: Luke! Luke, don't -- it's a trap! It's a trap! +VADER: The Force is with you, young Skywalker. But you are not a Jedi yet. +LANDO: Well done. Hold them in the security tower -- and keep it quiet. Move. +LEIA: What do you think you're doing? +LANDO: We're getting out of here. +THREEPIO: I knew all along it had to be a mistake. +LEIA: Do you think that after what you did to Han we're going to trust you? +LANDO: (choking) I had no choice... +THREEPIO: (to Chewie) What are you doing? Trust him, trust him! +LEIA: Oh, so we understand, don't we, Chewie? He had no choice. +LANDO: I'm just trying to help... +LEIA: We don't need any of your help. +LANDO: (choking) H-a-a-a... +LEIA: What? +THREEPIO: It sounds like Han. +LANDO: There's still a chance to save Han...I mean, at the East Platform... +LEIA: Chewie. +THREEPIO: (to Lando) I'm terribly sorry about all this. After all, he's only a Wookiee. +BOBA FETT: Put Captain Solo in the cargo hold. +THREEPIO: Artoo! Artoo! Where have you been? +THREEPIO: Turn around, you wooly...! (to Artoo) Hurry, hurry! We're trying to save Han from the bounty hunter! +THREEPIO: Well, at least your still in one piece! Look what happened to me! +THREEPIO: Oh, no! Chewie, they're behind you! +VADER: You have learned much, young one. +LUKE: You'll find I'm full of surprises. +VADER: Your destiny lies with me, Skywalker. Obi-Wan knew this to be true. +LUKE: No! +VADER: All to easy. Perhaps you are not as strong as the Emperor thought. +VADER: Impressive...most impressive. +VADER: Obi-Wan has taught you well. You have controlled your fear... now release your anger. +VADER: Only your hatred can destroy me. +LANDO: The security codes has been changed! +THREEPIO: Artoo, you can tell the computer to override the security system. +LANDO: Attention! This is Lando Calrissian. The Empire has takes control of the city. I advise everyone to leave before more Imperial troops arrive. +LANDO: This way. +THREEPIO: Don't blame me. I'm an interpreter. I'm not supposed to know a power socket from a computer terminal. +THREEPIO: What are you talking about? We're not interested in the hyperdrive on the Millennium Falcon. It's fixed! Just open the door, you stupid lump. +THREEPIO: (to Artoo) I never doubted you for a second. Wonderful! +THREEPIO: Ouch! Oh! Ah! That hurt, Bend down, you thoughtless...Ow! +LANDO: Leia! Go! +THREEPIO: I thought that hairy beast would be the end of me. Of course, I've looked better. +VADER: You are beaten. It is useless to resist. Don't let yourself be destroyed as Obi-Wan did. +VADER: There is no escape. Don't make me destroy you. You do not yet realize your importance. You have only begun to discover you power. Join me and I will complete your training. With our combined strength, we can end this destructive conflict and bring order to the galaxy. +LUKE: I'll never join you! +VADER: If you only knew the power of the dark side. Obi-Wan never told you what happened to your father. +LUKE: He told me enough! He told me you killed him. +VADER: No. I am your father. +LUKE: No. No. That's not true! That's impossible! +VADER: Search your feelings. You know it to be true. +LUKE: No! No! No! +VADER: Luke. You can destroy the Emperor. He has foreseen this. It is your destiny. Join me, and we can rule the galaxy as father and son. Come with me. It's the only way. +LUKE: Ben...Ben, please! +LUKE: Ben. Leia! +LUKE: Hear me! Leia! +LEIA: Luke...We've got to go back. +LANDO: What? +LEIA: I know where Luke is. +LANDO: But what about those fighter? +LEIA: Chewie, just do it. +LANDO: But what about Vader? +LANDO: All right, all right, all right. +VADER: Bring my shuttle. +LANDO: (pointing out the cockpit window) Look, someone's up there. +LEIA: It's Luke. Chewie, slow down. Slow down and we'll get under him. Lando, open the top hatch. +LEIA: Okay. Easy, Chewie. +LEIA: (into intercom) Lando? +LANDO: (over intercom) Okay, let's go. +LUKE: Oh, Leia. +LANDO: All right, Chewie. Let's go. +LEIA: I'll be back. +LEIA: Star Destroyer. +LANDO: All right, Chewie. Ready for light-speed. +LEIA: If your people fixed the hyperdrive. +LEIA: All the coordinates are set. It's now or never. +LANDO: Punch it! +LANDO: They told me they fixed it. I trusted them to fix it. It's not my fault! +PIETT: They'll be in range of our tractor beam in moments, lord. +VADER: Did your men deactivate the hyperdrive on the Millennium Falcon? +PIETT: Yes, my lord. +VADER: Good. Prepare the boarding party and set for your weapons for stun. +PIETT: Yes, my lord. +THREEPIO: Noisy brute. Why don't we just go into light-speed? +THREEPIO: We can't? How would you know the hyperdrive is deactivated? +THREEPIO: The city's central computer told you? Artoo-Detoo, you know better than to trust a strange computer. Ouch! Pay attention to what you're doing! +VADER: Luke. +LUKE: Father. +VADER: Son, come with me. +LUKE: (moaning) Ben, why didn't you tell me? +LANDO: (into intercom) Chewie! +LUKE: It's Vader. +VADER: Luke...it is your destiny. +LUKE: Ben, why didn't you tell me? +PIETT: Alert all commands. Ready for the tractor beam. +THREEPIO: Artoo, come back at once! You haven't finished with me yet! You don't know how to fix the hyperdrive. Chewbacca can do it. I'm standing here in pieces, and you're having delusions of grandeur! +THREEPIO: Oh, you did it! +LANDO: (into comlink) Luke, we're ready for takeoff. +LUKE: (over comlink) Good luck, Lando +LANDO: (into comlink) When we find Jabba the Hut and that bounty hunter, we'll contact you. +LUKE: (into comlink) I'll meet you at the rendezvous point on Tatooine. +LANDO: (into comlink) Princess, we'll find Han. I promise. +LUKE: (into comlink) Chewie, I'll be waiting for your signal. +LUKE: (into comlink) Take care, you two. May the Force be with you. +LUKE: Ow! diff --git a/Text_files/SW_EpisodeIV.txt b/Text_files/SW_EpisodeIV.txt new file mode 100644 index 0000000..58ae4fb --- /dev/null +++ b/Text_files/SW_EpisodeIV.txt @@ -0,0 +1,1011 @@ +"character" "dialogue" +"1" "THREEPIO" "Did you hear that? They've shut down the main reactor. We'll be destroyed for sure. This is madness!" +"2" "THREEPIO" "We're doomed!" +"3" "THREEPIO" "There'll be no escape for the Princess this time." +"4" "THREEPIO" "What's that?" +"5" "THREEPIO" "I should have known better than to trust the logic of a half-sized thermocapsulary dehousing assister..." +"6" "LUKE" "Hurry up! Come with me! What are you waiting for?! Get in gear!" +"7" "THREEPIO" "Artoo! Artoo-Detoo, where are you?" +"8" "THREEPIO" "At last! Where have you been?" +"9" "THREEPIO" "They're heading in this direction. What are we going to do? We'll be sent to the spice mines of Kessel or smashed into who knows what!" +"10" "THREEPIO" "Wait a minute, where are you going?" +"11" "IMPERIAL OFFICER" "The Death Star plans are not in the main computer." +"12" "VADER" "Where are those transmissions you intercepted?" +"13" "REBEL OFFICER" "We intercepted no transmissions. Aaah... This is a consular ship. Were on a diplomatic mission." +"14" "VADER" "If this is a consular ship... where is the Ambassador?" +"15" "VADER" "Commander, tear this ship apart until you've found those plans and bring me the Ambassador. I want her alive!" +"16" "TROOPER" "There she is! Set for stun!" +"17" "TROOPER" "She'll be all right. Inform Lord Vader we have a prisoner." +"18" "THREEPIO" "Hey, you're not permitted in there. It's restricted. You'll be deactivated for sure.." +"19" "THREEPIO" "Don't call me a mindless philosopher, you overweight glob of grease! Now come out before somebody sees you." +"20" "THREEPIO" "Secret mission? What plans? What are you talking about? I'm not getting in there!" +"21" "THREEPIO" "I'm going to regret this." +"22" "CHIEF PILOT" "There goes another one." +"23" "CAPTAIN" "Hold your fire. There are no life forms. It must have been short-circuited." +"24" "THREEPIO" "That's funny, the damage doesn't look as bad from out here." +"25" "THREEPIO" "Are you sure this things safe?" +"26" "WOMAN" "I've told you kids to slow down!" +"27" "FIXER" "Did I hear a young noise blast through here?" +"28" "CAMIE" "It was just Wormie on another rampage." +"29" "LUKE" "Shape it up you guys!... Biggs?" +"30" "LUKE" "I didn't know you were back! When did you get in?" +"31" "BIGGS" "Just now. I wanted to surprise you, hot shot. I thought you'd be here... certainly didn't expect you to be out working. " +"32" "LUKE" "The Academy didn't change you much... but you're back so soon? Hey, what happened, didn't you get your commission?" +"33" "BIGGS" "Of course I got it. Signed aboard The Rand Ecliptic last week. First mate Biggs Darklighter at your service...... I just came back to say goodbye to all you unfortunate landlocked simpletons." +"34" "LUKE" "I almost forgot. There's a battle going on! Right here in our system. Come and look!" +"35" "DEAK" "Not again! Forget it." +"36" "LUKE" "There they are!" +"37" "BIGGS" "That's no battle, hot shot... they're just sitting there! Probably a freighter-tanker refueling." +"38" "LUKE" "But there was a lot of firing earlier..." +"39" "LUKE" "Hey, easy with those..." +"40" "CAMIE" "Don't worry about it, Wormie." +"41" "FIXER" "I keep telling you, the Rebellion is a long way from here. I doubt if the Empire would even fight to keep this system. Believe me Luke, this planet is a big hunk of nothing..." +"42" "LEIA" "Lord Vader, I should have known. Only you could be so bold. The Imperial Senate will not sit stillfor this, when they hear you've attacked a diplomatic..." +"43" "VADER" "Don't play games with me, Your Highness. You weren't on any mercy mission this time. You passed directly through a restricted system. Several transmissions were beamed to this ship by Rebel spies. I want to know what happened to the plans they sent you." +"44" "LEIA" "I don't know what you're talking about. I'm a member of the Imperial Senate on a diplomatic mission to Alderaan..." +"45" "VADER" "You're a part of the Rebel Alliance... and a traitor. Take her away!" +"46" "COMMANDER" "Holding her is dangerous. If word of this gets out, it could generate sympathy for the Rebellion in the senate." +"47" "VADER" "I have traced the Rebel spies to her. Now she is my only link to find their secret base!" +"48" "COMMANDER" "you anything." +"49" "VADER" "Leave that to me. Send a distress signal and then inform the senate that all aboard were killed!" +"50" "SECOND OFFICER" "Lord Vader, the battle station plans are not aboard this ship! And no transmissions were made. An escape pod was jettisoned during the fighting, but no life forms were aboard." +"51" "VADER" "She must have hidden the plans in the escape pod. Send a detachment down to retrieve them. See to it personally, Commander. There'll be no one to stop us this time." +"52" "COMMANDER" "Yes, sir." +"53" "THREEPIO" "How did I get into this mess? I really don't know how. We seem to be made to suffer. It's our lot in life." +"54" "THREEPIO" "I've got to rest before I fall apart. My joints are almost frozen. " +"55" "THREEPIO" "What a desolate place this is." +"56" "THREEPIO" "Where are you going?" +"57" "THREEPIO" "Well, I'm not going that way. It's much too rocky. This way is much easier." +"58" "THREEPIO" "What makes you think there are settlements over there?" +"59" "THREEPIO" "Don't get technical with me." +"60" "THREEPIO" "What mission? What are you talking about? I've had just about enough of you! Go that way! You'll be malfunctioning within a day, you nearsighted scrap pile!" +"61" "THREEPIO" "And don't let me catch you following me begging for help, because you won't get it." +"62" "THREEPIO" "No more adventures. I'm not going that way." +"63" "THREEPIO" "That malfunctioning little twerp. This is all his fault! He tricked me into going this way, but he'll do no better." +"64" "THREEPIO" "Wait, what's that? A transport! I'm saved!" +"65" "THREEPIO" "Over here! Help! Please, help!" +"66" "LUKE" "... so I cut off my power, shut down the afterburners and came in low on Deak's trail. I was so close I thought I was going to fry my instruments. As it was I busted up the Skyhopper pretty bad. Uncle Owen was pretty upset. He grounded me for the rest of the season. You should have been there... it was fantastic." +"67" "BIGGS" "You ought to take it a little easy Luke. You may be the hottest bushpilot this side of Mos Eisley, but those little Skyhoppers are dangerous. Keep it up, and one day, whammo, you're going to be nothing more than a dark spot on the down side of a canyon wall." +"68" "LUKE" "Look who's talking. Now that you've been around those giant starships you're beginning to sound like my uncle. You've gotten soft in the city..." +"69" "BIGGS" "I've missed you kid." +"70" "LUKE" "Well, things haven't been the same since you left, Biggs. It's been so...quiet." +"71" "BIGGS" "Luke, I didn't come back just to say goodbye... I shouldn't tell you this, but you're the only one I can trust... and if I don't come back, I want somebody to know." +"72" "LUKE" "What are you talking about?" +"73" "BIGGS" "I made some friends at the Academy. ... when our frigate goes to one of the central systems, we're going to jump ship and join the Alliance..." +"74" "LUKE" "Join the Rebellion?! Are you kidding! How?" +"75" "BIGGS" "Quiet down will ya! You got a mouth bigger than a meteor crater!" +"76" "LUKE" "I'm sorry. I'm quiet. Listen how quiet I am. You can barely hear me..." +"77" "BIGGS" "My friend has a friend on Bestine who might help us make contact." +"78" "LUKE" "around forever trying to find them." +"79" "BIGGS" "I know it's a long shot, but if I don't find them I'll do what I can on my own... It's what we always talked about. Luke, I'm not going to wait for the Empire to draft me into service. The Rebellion is spreading and I want to be on the right side - the side I believe in. " +"80" "LUKE" "And I'm stuck here..." +"81" "BIGGS" "I thought you were going to the Academy next term. You'll get your chance to get off this rock." +"82" "LUKE" "Not likely! I had to cancel my application. There has been a lot of unrest among the Sand People since you left... they've even raided the outskirts of Anchorhead." +"83" "BIGGS" "Your uncle could hold off a whole colony of Sand People with one blaster." +"84" "LUKE" "I know, but he's got enough vaporators going to make the place pay off. He needs me for just one more season. I can't leave him now." +"85" "BIGGS" "I feel for you, Luke, you're going to have to learn what seems to be important or what really is important. What good is all your uncle's work if it's taken over by the Empire?... You know they're starting to nationalize commerce in the central systems...it won't be long before your uncle is merely a tenant, slaving for the greater glory of the Empire." +"86" "LUKE" "It couldn't happen here. You said it yourself. The Empire won't bother with this rock." +"87" "BIGGS" "Things always change." +"88" "LUKE" "I wish I was going... Are you going to be around long? " +"89" "BIGGS" "No, I'm leaving in the morning..." +"90" "LUKE" "Then I guess I won't see you." +"91" "BIGGS" "Maybe someday... I'll keep a lookout." +"92" "LUKE" "Well, I'll be at the Academy next season... after that who knows. I won't be drafted into the Imperial Starfleet that's for sure... Take care of yourself, you'll always be the best friend I've got." +"93" "BIGGS" "So long, Luke." +"94" "THREEPIO" "Artoo-Detoo! It's you! It's you!" +"95" "FIRST TROOPER" "Someone was in the pod. The tracks go off in this direction. " +"96" "SECOND TROOPER" "Look, sir - droids." +"97" "THREEPIO" "Wake up! Wake up!" +"98" "THREEPIO" "We're doomed." +"99" "THREEPIO" "Do you think they'll melt us down?" +"100" "THREEPIO" "Don't shoot! Don't shoot! Will this never end?" +"101" "BERU" "Luke, tell Owen that if he gets a translator to be sure it speaks Bocce." +"102" "LUKE" "It looks like we don't have much of a choice but I'll remind him." +"103" "OWEN" "I have no need for a protocol droid." +"104" "THREEPIO" "Sir - not in an environment such as this - that's why I've also been programmed for over thirty secondary functions that..." +"105" "OWEN" "What I really need is a droid that understands the binary languages of moisture vaporators." +"106" "THREEPIO" "Vaporators! Sir - My first job was programming binary load lifters... very similar to your vaporators. You could say..." +"107" "OWEN" "Do you speak Bocce?" +"108" "THREEPIO" "Of course I can, sir. It's like a second language for me... I'm as fluent in Bocce..." +"109" "OWEN" "All right; shut up! I'll take this one." +"110" "THREEPIO" "Shutting up, sir." +"111" "OWEN" "Luke, take these two over to the garage, will you? I want you to have both of them cleaned up before dinner." +"112" "LUKE" "But I was going into Toshi Station to pick up some power converters..." +"113" "OWEN" "You can waste time with your friends when your chores are done. Now, come on, get to it!" +"114" "LUKE" "All right, come on! And the red one, come on. Well, come on, Red, let's go." +"115" "LUKE" "Uncle Owen..." +"116" "OWEN" "Yeah?" +"117" "LUKE" "This R2 unit has a bad motivator. Look!" +"118" "OWEN" "Hey, what're you trying to push on us?" +"119" "THREEPIO" "Excuse me, sir, but that R2 unit is in prime condition. A real bargain." +"120" "LUKE" "Uncle Owen..." +"121" "OWEN" "Yeah?" +"122" "LUKE" "What about that one?" +"123" "OWEN" "What about that blue one? We'll take that one." +"124" "LUKE" "Yeah, take it away." +"125" "THREEPIO" "Uh, I'm quite sure you'll be very pleased with that one, sir. He really is in first-class condition. I've worked with him before. Here he comes." +"126" "LUKE" "Okay, let's go." +"127" "THREEPIO" "Now, don't forget this! Why I should stick my neck out for you is quite beyond my capacity!" +"128" "THREEPIO" "Thank the maker! This oil bath is going to feel so good. I've got such a bad case of dust contamination, I can barely move!" +"129" "LUKE" "It just isn't fair. Oh, Biggs is right. I'm never gonna get out of here!" +"130" "THREEPIO" "Is there anything I might do to help? " +"131" "LUKE" "Well, not unless you can alter time, speed up the harvest, or teleport me off this rock!" +"132" "THREEPIO" "I don't think so, sir. I'm only a droid and not very knowledgeable about such things. Not on this planet, anyways. As a matter of fact, I'm not even sure which planet I'm on." +"133" "LUKE" "Well, if there's a bright center to the universe, you're on the planet that it's farthest from." +"134" "THREEPIO" "I see, sir." +"135" "LUKE" "Uh, you can call me Luke." +"136" "THREEPIO" "I see, sir Luke." +"137" "LUKE" "Just Luke." +"138" "THREEPIO" "And I am See-Threepio, human-cyborg relations, and this is my counterpart, Artoo-Detoo." +"139" "LUKE" "Hello." +"140" "LUKE" "You got a lot of carbon scoring here. It looks like you boys have seen a lot of action." +"141" "THREEPIO" "With all we've been through, sometimes I'm amazed we're in as good condition as we are, what with the Rebellion and all." +"142" "LUKE" "You know of the Rebellion against the Empire?" +"143" "THREEPIO" "That's how we came to be in your service, if you take my meaning, sir." +"144" "LUKE" "Have you been in many battles?" +"145" "THREEPIO" "Several, I think. Actually, there's not much to tell. I'm not much more than an interpreter, and not very good at telling stories. Well, not at making them interesting, anyways." +"146" "LUKE" "Well, my little friend, you've got something jammed in here real good. Were you on a starcruiser or..." +"147" "LEIA" "Help me, Obi-Wan Kenobi. You'remy only hope." +"148" "LUKE" "What's this?" +"149" "THREEPIO" "What is what?!? He asked you a question...What is that?" +"150" "LEIA" "Help me, Obi-Wan Kenobi. You're my only hope. Help me, Obi-Wan Kenobi. You're my only hope." +"151" "THREEPIO" "Oh, he says it's nothing, sir. Merely a malfunction. Old data. Pay it no mind." +"152" "LUKE" "Who is she? She's beautiful." +"153" "THREEPIO" "I'm afraid I'm not quite sure, sir." +"154" "LEIA" "Help me, Obi-Wan Kenobi..." +"155" "THREEPIO" "I think she was a passenger on our last voyage. A person of some importance, sir - I believe. Our captain was attached to..." +"156" "LUKE" "Is there more to this recording?" +"157" "THREEPIO" "Behave yourself, Artoo. You're going to get us in trouble. It's all right, you can trust him. He's our new master." +"158" "THREEPIO" "He says he's the property of Obi-Wan Kenobi, a resident of these parts. And it's a private message for him. Quite frankly, sir, I don't know what he's talking about. Our last master was Captain Antilles, but with what we've been through, this little R2 unit has become a bit eccentric." +"159" "LUKE" "Obi-Wan Kenobi? I wonder if he means old Ben Kenobi?" +"160" "THREEPIO" "I beg your pardon, sir, but do you know what he's talking about?" +"161" "LUKE" "Well, I don't know anyone named Obi-Wan, but old Ben lives out beyond the dune sea. He's kind of a strange old hermit." +"162" "LUKE" "I wonder who she is. It sounds like she's in trouble. I'd better play back the whole thing." +"163" "THREEPIO" "He says the restraining bolt has short circuited his recording system. He suggests that if you remove the bolt, he might be able to play back the entire recording." +"164" "LUKE" "H'm? Oh, yeah, well, I guess you're too small to run away on me if I take this off! Okay." +"165" "LUKE" "There you go." +"166" "LUKE" "Well, wait a minute. Where'd she go? Bring her back! Play back the entire message." +"167" "THREEPIO" "been playing. The one you're carrying inside your rusty innards! " +"168" "AUNT BERU" "Luke? Luke! Come to dinner!" +"169" "LUKE" "All right, I'll be right there, Aunt Beru." +"170" "THREEPIO" "I'm sorry, sir, but he appears to have picked up a slight flutter." +"171" "LUKE" "Well, see what you can do with him. I'll be right back." +"172" "THREEPIO" "Just you reconsider playing that message for him." +"173" "THREEPIO" "No, I don't think he likes you at all." +"174" "THREEPIO" "No, I don't like you either." +"175" "LUKE" "You know, I think that R2 unit we bought might have been stolen." +"176" "OWEN" "What makes you think that?" +"177" "LUKE" "Well, I stumbled across a recording while I was cleaning him. He says he belongs to someone called Obi-Wan Kenobi." +"178" "LUKE" "I thought he might have meant Ben. Do you know what he's talking about? Well, I wonder if he's related to Ben." +"179" "OWEN" "That old man's just a crazy wizard. Tomorrow I want you to take that R2 unit into Anchorhead and have its memory flushed. That'll be the end of it. It belongs to us now." +"180" "LUKE" "But what if this Obi-Wan comes looking for him?" +"181" "OWEN" "He won't, I don't think he exists any more. He died about the same time as your father." +"182" "LUKE" "He knew my father?" +"183" "OWEN" "I told you to forget it. Your only concern is to prepare the new droids for tomorrow. In the morning I want them on the south ridge working out those condensers." +"184" "LUKE" "Yes, sir. I think those new droids are going to work out fine. In fact, I, uh, was also thinking about our agreement about my staying on another season. And if these new droids do work out, I want to transmit my application to the Academy this year." +"185" "OWEN" "You mean the next semester before harvest?" +"186" "LUKE" "Sure, there're more than enough droids." +"187" "OWEN" "Harvest is when I need you the most. Only one more season. This year we'll make enough on the harvest so I'll be able to hire some more hands. And then you can go to the Academy next year." +"188" "OWEN" "You must understand I need you here, Luke." +"189" "LUKE" "But it's a whole 'nother year." +"190" "OWEN" "Look, it's only one more season." +"191" "LUKE" "Yeah, that's what you said last year when Biggs and Tank left." +"192" "AUNT BERU" "Where are you going?" +"193" "LUKE" "It looks like I'm going nowhere. I have to finish cleaning those droids." +"194" "AUNT BERU" "Owen, he can't stay here forever. Most of his friends have gone. It means so much to him." +"195" "OWEN" "I'll make it up to him next year. I promise." +"196" "AUNT BERU" "Luke's just not a farmer, Owen. He has too much of his father in him." +"197" "OWEN" "That's what I'm afraid of." +"198" "LUKE" "What are you doing hiding there?" +"199" "THREEPIO" "It wasn't my fault, sir. Please don't deactivate me. I told him not to go, but he's faulty, malfunctioning; kept babbling on about his mission." +"200" "LUKE" "Oh, no!" +"201" "THREEPIO" "That R2 unit has always been a problem. These astro-droids are getting quite out of hand. Even I can't understand their logic at times. " +"202" "LUKE" "How could I be so stupid? He's nowhere in sight. Blast it!" +"203" "THREEPIO" "Pardon me, sir, but couldn't we go after him?" +"204" "LUKE" "It's too dangerous with all the Sand People around. We'll have to wait until morning." +"205" "OWEN" "Luke, I'm shutting the power down for the night." +"206" "LUKE" "All right, I'll be there in a few minutes. Boy, am I gonna get it." +"207" "LUKE" "You know that little droid is going to cause me a lot of trouble." +"208" "THREEPIO" "Oh, he excels at that, sir." +"209" "OWEN" "Luke? Luke? Luke? Where could he be loafing now!" +"210" "OWEN" "Have you seen Luke this morning?" +"211" "AUNT BERU" "He said he had some things to do before he started today, so he left early." +"212" "OWEN" "Uh? Did he take those two new droids with him?" +"213" "AUNT BERU" "I think so." +"214" "OWEN" "Well, he'd better have those units in the south range repaired bemidday or there'll be hell to pay!" +"215" "LUKE" "How's that." +"216" "LUKE" "Old Ben Kenobi lives out in this direction somewhere, but I don't see how that R2 unit could have come this far. We must have missed him. Uncle Owen isn't going to take this very well." +"217" "THREEPIO" "Sir, would it help if you told him it was my fault." +"218" "LUKE" "Sure. He needs you. He'd probably only deactivate you for a day or so..." +"219" "THREEPIO" "Deactivate! Well, on the other hand if you hadn't removed his restraining bolt..." +"220" "LUKE" "Wait, there's something dead ahead on the scanner. It looks like our droid... hit the accelerator." +"221" "LUKE" "Hey, whoa, just where do you think you're going?" +"222" "THREEPIO" "Master Luke here is your rightful owner. We'll have no more of this Obi-Wan Kenobi jibberish... and don't talk to me of your mission, either. You're fortunate he doesn't blast you into a million pieces right here." +"223" "LUKE" "Well, come on. It's getting late. I only hope we can get back before Uncle Owen really blows up." +"224" "THREEPIO" "If you don't mind my saying so, sir, I think you should deactivate the little fugitive until you've gotten him back to your workshop." +"225" "LUKE" "No, he's not going to try anything." +"226" "LUKE" "What's wrong with him now?" +"227" "THREEPIO" "Oh my... sir, he says there are several creatures approaching from the southeast." +"228" "LUKE" "Sand People! Or worse! Come on, let's have a look. Come on." +"229" "LUKE" "There are two Banthas down there but I don't see any... wait a second, they're Sand People all right. I can see one of them now." +"230" "BEN" "Hello there! Come here my little friend. Don't be afraid." +"231" "BEN" "Don't worry, he'll be all right." +"232" "LUKE" "What happened?" +"233" "BEN" "Rest easy, son, you've had a busy day. You're fortunate you're still in one piece." +"234" "LUKE" "Ben? Ben Kenobi! Boy, am I glad to see you! " +"235" "BEN" "The Jundland Wastes are not to be traveled lightly. Tell me, young Luke, what brings you out this far?" +"236" "LUKE" "Oh, this little droid! I think he's searching for his former master... I've never seen such devotion in a droid before... there seems tobe no stopping him. He claims to be the property of an Obi-Wan Kenobi. Is he a relative of yours? Do you know who he's talking about?" +"237" "BEN" "Obi-Wan Kenobi... Obi-Wan? Now thats a name I haven't heard in a long time... a long time." +"238" "LUKE" "I think my uncle knew him. He said he was dead." +"239" "BEN" "Oh, he's not dead, no... not yet." +"240" "LUKE" "You know him!" +"241" "BEN" "Well of course, of course I know him. He's me! I haven't gone by the name Obi-Wan since oh, before you were born." +"242" "LUKE" "Then the droid does belong to you." +"243" "BEN" "Don't seem to remember ever owning a droid. Very interesting... " +"244" "BEN" "I think we better get indoors. The Sand People are easily startled but they will soon be back and in greater numbers." +"245" "LUKE" "... Threepio!" +"246" "THREEPIO" "Where am I? I must have taken a bad step..." +"247" "LUKE" "Can you stand? We've got to get out of here before the Sand People return." +"248" "THREEPIO" "I don't think I can make it. You go on, Master Luke. There's no sense in you risking yourself on my account. I'm done for." +"249" "LUKE" "No, you're not. What kind of talk is that?" +"250" "BEN" "Quickly, son... they're on the move." +"251" "LUKE" "No, my father didn't fight in the wars. He was a navigator on a spice freighter." +"252" "BEN" "That's what your uncle told you. He didn't hold with your father's ideals. Thought he should have stayed here and not gotten involved." +"253" "LUKE" "You fought in the Clone Wars?" +"254" "BEN" "Yes, I was once a Jedi Knight the same as your father." +"255" "LUKE" "I wish I'd known him." +"256" "BEN" "He was the best star-pilot in the galaxy, and a cunning warrior. I understand you've become quite a good pilot yourself. And he was a good friend. Which reminds me..." +"257" "BEN" "I have something here for you. Your father wanted you to have this when you were old enough, but your uncle wouldn't allow it. He feared you might follow old Obi-Wan on some damned-fool idealistic crusade like your father did. " +"258" "THREEPIO" "Sir, if you'll not be needing me, I'll close down for awhile." +"259" "LUKE" "Sure, go ahead." +"260" "LUKE" "What is it?" +"261" "BEN" "Your fathers lightsaber. This is the weapon of a Jedi Knight. Not as clumsy or as random as a blaster." +"262" "BEN" "An elegant weapon for a morecivilized time. For over a thousand generations the Jedi Knights were the guardians of peace and justice in the Old Republic. Before the dark times, before the Empire." +"263" "LUKE" "How did my father die?" +"264" "BEN" "A young Jedi named Darth Vader, who was a pupil of mine until he turned to evil, helped the Empire hunt down and destroy the Jedi Knights. He betrayed and murdered your father. Now the Jedi are all but extinct. Vader was seduced by the dark side of the Force." +"265" "LUKE" "The Force?" +"266" "BEN" "Well, the Force is what gives the Jedi his power. It's an energy field created by all living things. It surrounds us and penetrates us. It binds the galaxy together." +"267" "BEN" "Now, let's see if we can't figure out what you are, my little friend. And where you come from." +"268" "LUKE" "I saw part of the message he was..." +"269" "BEN" "I seem to have found it." +"270" "LEIA" "General Kenobi, years ago you served my father in the Clone Wars. Now he begs you to help him in his struggle against the Empire. I regret that I am unable to present my father's request to you in person, but my ship has fallen under attack and I'm afraid my mission to bring you to Alderaan has failed. I have placed information vital to the survival of the Rebellion into the memory systems of this R2 unit. My father will know how to retrieve it. You must see this droid safely delivered to him on Alderaan. This is our most desperate hour. Help me, Obi-Wan Kenobi, you're my only hope." +"271" "BEN" "You must learn the ways of the Force if you're to come with me to Alderaan." +"272" "LUKE" "Alderaan? I'm not going to Alderaan. I've got to go home. It's late, I'm in for it as it is." +"273" "BEN" "I need your help, Luke. I'm getting too old for this sort of thing.She needs your help." +"274" "LUKE" "I can't get involved! I've got work to do! It's not that I like the Empire. I hate it! But there's nothing I can do about it right now. It's such a long way from here." +"275" "BEN" "That's your uncle talking." +"276" "LUKE" "Oh, God, my uncle. How am I ever going to explain this?" +"277" "BEN" "Learn about the Force, Luke." +"278" "LUKE" "Look, I can take you as far as Anchorhead. You can get a transport there to Mos Eisley or wherever you're going." +"279" "BEN" "You must do what you feel is right, of course." +"280" "TAGGE" "Until this battle station is fully operational we are vulnerable. The Rebel Alliance is too well equipped. They're more dangerous than you realize." +"281" "MOTTI" "Dangerous to your starfleet, Commander; not to this battle station!" +"282" "TAGGE" "The Rebellion will continue to gain support in the Imperial Senate as long as...." +"283" "TARKIN" "The Imperial Senate will no longer be of any concern to us. I've just received word that the Emperor has dissolved the council permanently. The last remnants of the Old Republic have been swept away." +"284" "TAGGE" "That's impossible! How will the Emperor maintain control without the bureaucracy?" +"285" "TARKIN" "The regional governors now have direct control over territories. Fear will keep the local systems in line. Fear of this battle station." +"286" "TAGGE" "And what of the Rebellion? If the Rebels have obtained a complete technical readout of this station, it is possible, however unlikely, that they might find a weakness and exploit it." +"287" "VADER" "The plans you refer to will soon be back in our hands." +"288" "MOTTI" "Any attack made by the Rebels against this station would be a useless gesture, no matter what technical data they've obtained. This station is now the ultimate power in the universe. I suggest we use it!" +"289" "VADER" "Don't be too proud of this technological terror you've constructed. The ability to destroy a planet is insignificant next to the power of the Force." +"290" "MOTTI" "Don't try to frighten us with your sorcerer's ways, Lord Vader. Your sad devotion to that ancient religion has not helped you conjure up the stolen data tapes, or given you clairvoyance enough to find the Rebel's hidden fort..." +"291" "VADER" "I find your lack of faith disturbing." +"292" "TARKIN" "Enough of this! Vader, release him!" +"293" "VADER" "As you wish." +"294" "TARKIN" "This bickering is pointless. Lord Vader will provide us with the location of the Rebel fortress by the time this station is operational. We will then crush the Rebellion with one swift stroke." +"295" "LUKE" "It looks like Sand People did this, all right. Look, here are gaffi sticks, bantha tracks. It's just... I never heard of them hitting anything this big before." +"296" "BEN" "They didn't. But we are meant to think they did. These tracks are side by side. Sand People always ride single file to hide there numbers." +"297" "LUKE" "These are the same Jawas that sold us Artoo and Threepio." +"298" "BEN" "And these blast points, too accurate for Sand People. Only Imperial stormtroopers are so precise." +"299" "LUKE" "Why would Imperial troops want to slaughter Jawas?" +"300" "LUKE" "If they traced the robots here, they may have learned who they sold them to. And that would lead them back home!" +"301" "BEN" "Wait, Luke! It's too dangerous." +"302" "LUKE" "Uncle Owen! Aunt Beru! Uncle Owen!" +"303" "VADER" "And, now Your Highness, we will discuss the location of your hidden Rebel base." +"304" "BEN" "There's nothing you could have done, Luke, had you been there. You'd have been killed, too, and the droids would now be in the hands of the Empire." +"305" "LUKE" "I want to come with you to Alderaan. There's nothing here for me now. I want to learn the ways of the Force and become a Jedi like my father." +"306" "BEN" "Mos Eisley Spaceport. You will never find a more wretched hive of scum and villainy. We must be cautious." +"307" "TROOPER" "How long have you had these droids?" +"308" "LUKE" "About three or four seasons." +"309" "BEN" "They're for sale if you want them." +"310" "TROOPER" "Let me see your identification." +"311" "BEN" "You don't need to see his identification." +"312" "TROOPER" "We don't need to see his identification." +"313" "BEN" "looking for." +"314" "TROOPER" "These are not the droids we're looking for." +"315" "BEN" "He can go about his business." +"316" "TROOPER" "You can go about your business." +"317" "BEN" "Move along." +"318" "TROOPER" "Move along. Move along." +"319" "THREEPIO" "I can't abide these Jawas. Disgusting creatures." +"320" "LUKE" "Go on, go on. I can't understand how we got by those troopers. I thought we were dead." +"321" "BEN" "The Force can have a strong influence on the weak-minded. You will find it a powerful ally." +"322" "LUKE" "Do you really think we're going to find a pilot here that'll take us to Alderaan?" +"323" "BEN" "Well, most of the best freighter pilots can be found here. Only watch your step. This place can be a little rough." +"324" "LUKE" "I'm ready for anything." +"325" "THREEPIO" "Come along, Artoo." +"326" "BARTENDER" "We don't serve their kind here!" +"327" "LUKE" "What?" +"328" "BARTENDER" "Your droids. They'll have to wait outside. We don't want them here." +"329" "LUKE" "Listen, why don't you wait out by the speeder. We don't want any trouble." +"330" "THREEPIO" "I heartily agree with you sir." +"331" "CREATURE" "Negola dewaghi wooldugger?!?" +"332" "HUMAN" "He doesn't like you." +"333" "LUKE" "I'm sorry." +"334" "HUMAN" "I don't like you either" +"335" "HUMAN" "Don't insult us. You just watch yourself. We're wanted men. I have the death sentence on twelve systems." +"336" "LUKE" "I'll be careful than." +"337" "HUMAN" "You'll be dead." +"338" "BEN" "This little one isn't worth the effort. Come let me buy you something..." +"339" "BARTENDER" "No blasters! No blaster!" +"340" "BEN" "This is Chewbacca. He's first-mate on a ship that might suit our needs." +"341" "THREEPIO" "I don't like the look of this." +"342" "HAN" "Han Solo. I'm captain of the Millennium Falcon. Chewie here tells me you're looking for passage to the Alderaan system." +"343" "BEN" "Yes, indeed. If it's a fast ship." +"344" "HAN" "Fast ship? You've never heard of the Millennium Falcon?" +"345" "BEN" "Should I have?" +"346" "HAN" "It's the ship that made the Kessel run in less than twelve parsecs!" +"347" "HAN" "I've outrun Imperial starships, not the local bulk-cruisers, mind you. I'm talking about the big Corellian ships now. She's fast enough for you, old man. What's the cargo?" +"348" "BEN" "Only passengers. Myself, the boy, two droids, and no questions asked." +"349" "HAN" "What is it? Some kind of local trouble?" +"350" "BEN" "Let's just say we'd like to avoid any Imperial entanglements." +"351" "HAN" "Well, that's the real trick, isn't it? And it's going to cost you something extra. Ten thousand in advance." +"352" "LUKE" "Ten thousand? We could almost buy our own ship for that!" +"353" "HAN" "But who's going to fly it, kid! You?" +"354" "LUKE" "You bet I could. I'm not such a bad pilot myself! We don't have to sit here and listen..." +"355" "BEN" "We haven't that much with us. But we could pay you two thousand now, plus fifteen when we reach Alderaan." +"356" "HAN" "Seventeen, huh!" +"357" "HAN" "Okay. You guys got yourself a ship. We'll leave as soon as you're ready. Docking bay Ninety-four." +"358" "BEN" "Ninety-four." +"359" "HAN" "Looks like somebody's beginning to take an interest in your handiwork." +"360" "TROOPER" "All right, we'll check it out." +"361" "HAN" "Seventeen thousand! Those guys must really be desperate. This could really save my neck. Get back to the ship and get her ready." +"362" "BEN" "You'll have to sell your speeder." +"363" "LUKE" "That's okay. I'm never coming back to this planet again." +"364" "GREEDO" "Going somewhere, Solo?" +"365" "HAN" "Yes, Greedo. As a matter of fact, I was just going to see your boss. Tell Jabba that I've got his money." +"366" "GREEDO" "It's too late. You should have paid him when you had the chance. Jabba's put a price on your head, so large that every bounty hunter in the galaxy will be looking for you. I'm lucky I found you first." +"367" "HAN" "Yeah, but this time I got the money." +"368" "GREEDO" "If you give it to me, I might forget I found you." +"369" "HAN" "I don't have it with me. Tell Jabba..." +"370" "GREEDO" "Jabba's through with you. He has no time for smugglers who drop their shipments at the first sign of an Imperial cruiser." +"371" "HAN" "Even I get boarded sometimes. Do you think I had a choice?" +"372" "GREEDO" "You can tell that to Jabba. He may only take your ship." +"373" "HAN" "Over my dead body." +"374" "GREEDO" "That's the idea I've been looking forward to killing you for a long time." +"375" "HAN" "Yes, I'll bet you have." +"376" "HAN" "Sorry about the mess." +"377" "VADER" "Her resistance to the mind probe is considerable. It will be some time before we can extract any information from her." +"378" "IMPERIAL OFFICER" "The final check-out is complete. All systems are operational. What course shall we set?" +"379" "TARKIN" "Perhaps she would respond to an alternative form of persuasion." +"380" "VADER" "What do you mean?" +"381" "TARKIN" "I think it is time we demonstrate the full power of this station.Set your course for Princess Leia's home planet of Alderaan." +"382" "TROOPER" "With pleasure." +"383" "THREEPIO" "Lock the door, Artoo." +"384" "TROOPER" "All right, check that side of the street. It's secure. Move on to the next door." +"385" "THREEPIO" "I would much rather have gone with Master Luke than stay here with you. I don't know what all this trouble is about, but I'm sure it must be your fault." +"386" "THREEPIO" "You watch your language!" +"387" "LUKE" "He says it's the best he can do. Since the XP-38 came out, they " +"388" "BEN" "It will be enough." +"389" "BEN" "If the ship's as fast as he's boasting, we ought to do well." +"390" "JABBA" "Come on out, Solo!" +"391" "HAN" "I've been waiting for you, Jabba." +"392" "JABBA" "I expected you would be." +"393" "HAN" "I'm not the type to run." +"394" "JABBA" "Han, my boy, there are times when you disappoint me... why haven't you paid me? And why did you have to fry poor Greedo like that... after all we've been through together." +"395" "HAN" "You sent Greedo to blast me." +"396" "JABBA" "Han, why you're the best smuggler in the business. You're too valuable to fry. He was only relaying my concern at your delays. He wasn't going to blast you." +"397" "HAN" "I think he thought he was. Next time don't send one of those twerps. If you've got something to say to me, come see me yourself." +"398" "JABBA" "Han, Han! If only you hadn't had to dump that shipment of spice... you understand I just can't make an exception. Where would I be if every pilot who smuggled for me dumped their shipment at the first sign of an Imperial starship? It's not good business." +"399" "HAN" "You know, even I get boarded sometimes, Jabba. I had no choice, but I've gota charter now and I can pay you back, plus a little extra. I just need some more time." +"400" "JABBA" "Put your blasters away. Han, my boy, I'm only doing this because you're the best and I need you. So, for an extra, say... twenty percent I'll give you a little more time... but this is it. If you disappoint me again, I'll put a price on your head so large you won't be able to go near a civilized system for the rest of your short life." +"401" "HAN" "Jabba, I'll pay you because it's my pleasure." +"402" "LUKE" "What a piece of junk." +"403" "HAN" "She'll make point five beyond the speed of light. She may not look like much, but she's got it where it counts, kid. I've added some special modifications myself." +"404" "HAN" "We're a little rushed, so if you'll hurry aboard we'll get out of here." +"405" "THREEPIO" "Hello, sir." +"406" "TROOPER" "Which way?" +"407" "TROOPER" "All right, men. Load your weapons!" +"408" "TROOPER" "Stop that ship!" +"409" "TROOPER" "Blast 'em!" +"410" "HAN" "Chewie, get us out of here!" +"411" "THREEPIO" "Oh, my. I'd forgotten how much I hate space travel." +"412" "HAN" "It looks like an Imperial cruiser. Our passengers must be hotter than I thought. Try and hold them off. Angle the deflector shield while I make the calculations for the jump to light speed." +"413" "HAN" "Stay sharp! There are two more coming in; they're going to try to cut us off." +"414" "LUKE" "Why don't you outrun them? I thought you said this thing was fast." +"415" "HAN" "Watch your mouth, kid, or you're going to find yourself floating home. We'll be safe enough once we make the jump to hyperspace. Besides, I know a few maneuvers. We'll lose them!" +"416" "HAN" "Here's where the fun begins!" +"417" "BEN" "How long before you can make the jump to light speed?" +"418" "HAN" "It'll take a few moments to get the coordinates from the navi-computer." +"419" "LUKE" "Are you kidding? At the rate they're gaining..." +"420" "HAN" "Traveling through hyperspace isn't like dusting crops, boy! Without precise calculations we could fly right through a star or bounce too close to a supernova and that'd end your trip real quick, wouldn't it?" +"421" "LUKE" "What's that flashing?" +"422" "HAN" "We're losing our deflector shield. Go strap yourself in, I'm going to make the jump to light speed." +"423" "MOTTI" "We've entered the Alderaan system." +"424" "LEIA" "Governor Tarkin, I should have expected to find you holding Vader's leash. I recognized your foul stench when I was brought on board." +"425" "TARKIN" "Charming to the last. You don't know how hard I found it signing the order to terminate your life!" +"426" "LEIA" "to take the responsibility yourself!" +"427" "TARKIN" "Princess Leia, before your execution I would like you to be my guest at a ceremony that will make this battle station operational. No star system will dare oppose the Emperor now." +"428" "LEIA" "The more you tighten your grip, Tarkin, the more star systems will slip through your fingers." +"429" "TARKIN" "Not after we demonstrate the power of this station. In a way, you have determined the choice of the planet that'll be destroyed first. Since you are reluctant to provide us with the location of the Rebel base, I have chosen to test this station's destructive power... on your home planet of Alderaan." +"430" "LEIA" "No! Alderaan is peaceful. We have no weapons. You can't possibly..." +"431" "TARKIN" "You would prefer another target? A military target? Then name the system!" +"432" "TARKIN" "I grow tired of asking this. So it'll be the last time. Where is the Rebel base?" +"433" "LEIA" "Dantooine." +"434" "LEIA" "They're on Dantooine." +"435" "TARKIN" "There. You see Lord Vader, she can be reasonable. Continue with the operation. You may fire when ready." +"436" "LEIA" "What?" +"437" "TARKIN" "You're far too trusting. Dantooine is too remote to make an effective demonstration. But don't worry. We will deal with your Rebel friends soon enough. " +"438" "LEIA" "No!" +"439" "VADER" "Commence primary ignition." +"440" "LUKE" "Are you all right? What's wrong?" +"441" "BEN" "I felt a great disturbance in the Force... as if millions of voices suddenly cried out in terror and were suddenly silenced. I fear something terrible has happened." +"442" "BEN" "You'd better get on with your exercises." +"443" "HAN" "Well, you can forget your troubles with those Imperial slugs. I told you I'd outrun 'em." +"444" "HAN" "Don't everyone thank me at once." +"445" "HAN" "Anyway, we should be at Alderaan about oh-two-hundred hours." +"446" "THREEPIO" "Now be careful, Artoo." +"447" "THREEPIO" "He made a fair move. Screaming about it won't help you." +"448" "HAN" "Let him have it. It's not wise to upset a Wookiee." +"449" "THREEPIO" "But sir, nobody worries about upsetting a droid." +"450" "HAN" "That's 'cause droids don't pull people's arms out of their socket when they lose. Wookiees are known to do that." +"451" "THREEPIO" "I see your point, sir. I suggest a new strategy, Artoo. Let the Wookiee win." +"452" "BEN" "Remember, a Jedi can feel the Force flowing through him." +"453" "LUKE" "You mean it controls your actions?" +"454" "BEN" "Partially. But it also obeys your commands." +"455" "HAN" "Hokey religions and ancient weapons are no match for a good blaster at your side, kid." +"456" "LUKE" "You don't believe in the Force, do you?" +"457" "HAN" "Kid, I've flown from one side of this galaxy to the other. I've seen a lot of strange stuff, but I've never seen anything to make me believe there's one all-powerful force controlling everything. There's no mystical energy field that controls my destiny." +"458" "HAN" "It's all a lot of simple tricks and nonsense." +"459" "BEN" "I suggest you try it again, Luke." +"460" "BEN" "This time, let go your conscious self and act on instinct." +"461" "LUKE" "With the blast shield down, I can't even see. How am I supposed to fight?" +"462" "BEN" "Your eyes can deceive you. Don't trust them." +"463" "BEN" "Stretch out with your feelings." +"464" "BEN" "You see, you can do it." +"465" "HAN" "I call it luck. " +"466" "BEN" "In my experience, there's no such thing as luck." +"467" "HAN" "Look, going good against remotes is one thing. Going good against the living? That's something else." +"468" "HAN" "Looks like we're coming up on Alderaan." +"469" "LUKE" "You know, I did feel something. I could almost see the remote." +"470" "BEN" "That's good. You have taken your first step into a larger world." +"471" "TARKIN" "Yes." +"472" "OFFICER CASS" "Our scout ships have reached Dantooine. They found the remains of a Rebel base, but they estimate that it has been deserted for some time. They are now conducting an extensive search of the surrounding systems." +"473" "TARKIN" "She lied! She lied to us!" +"474" "VADER" "I told you she would never consciously betray the Rebellion." +"475" "TARKIN" "Terminate her... immediately!" +"476" "HAN" "Stand by, Chewie, here we go. Cut in the sublight engines." +"477" "HAN" "What the...? Aw, we've come out of hyperspace into a meteor shower. Some kind of asteroid collision. It's not on any of the charts." +"478" "LUKE" "What's going on?" +"479" "HAN" "Our position is correct, except... no, Alderaan!" +"480" "LUKE" "What do you mean? Where is it?" +"481" "HAN" "Thats what I'm trying to tell you, kid. It ain't there. It's been totally blown away." +"482" "LUKE" "What? How?" +"483" "BEN" "Destroyed... by the Empire!" +"484" "HAN" "The entire starfleet couldn't destroy the whole planet. It'd take a thousand ships with more fire power than I've..." +"485" "HAN" "There's another ship coming in." +"486" "LUKE" "Maybe they know what happened." +"487" "BEN" "It's an Imperial fighter." +"488" "LUKE" "It followed us!" +"489" "BEN" "No. It's a short range fighter." +"490" "HAN" "There aren't any bases around here. Where did it come from?" +"491" "LUKE" "It sure is leaving in a big hurry. If they identify us, we're in big trouble." +"492" "HAN" "Not if I can help it. Chewie... jam it's transmissions." +"493" "BEN" "It'd be as well to let it go. It's too far out of range." +"494" "HAN" "Not for long..." +"495" "BEN" "A fighter that size couldn't get this deep into space on its own." +"496" "LUKE" "Then he must have gotten lost, been part of a convoy or something..." +"497" "HAN" "Well, he ain't going to be around long enough to tell anyone about us." +"498" "LUKE" "Look at him. He's heading for that small moon." +"499" "HAN" "I think I can get him before he gets there... he's almost in range." +"500" "BEN" "That's no moon! It's a space station." +"501" "HAN" "It's too big to be a space station." +"502" "LUKE" "I have a very bad feeling about this." +"503" "BEN" "Turn the ship around!" +"504" "HAN" "Yeah, I think your right. Full reverse! Chewie, lock in the auxiliary power." +"505" "LUKE" "Why are we still moving towards it?" +"506" "HAN" "We're caught in a tractor beam! It's pulling us in!" +"507" "LUKE" "But there's gotta be something you can do!" +"508" "HAN" "There's nothin' I can do about it, kid. I'm in full power. I'm going to have to shut down. But they're not going to get me without a fight!" +"509" "BEN" "You can't win. But there are alternatives to fighting." +"510" "VOICE OVER DEATH STAR INTERCOM" "Clear Bay twenty-three-seven. We are opening the magnetic field." +"511" "OFFICER" "To your stations!" +"512" "OFFICER" "Come with me." +"513" "OFFICER" "Close all outboard shields! Close all outboard shields!" +"514" "TARKIN" "Yes." +"515" "VOICE" "We've captured a freighter entering the remains of the Alderaan system. It's markings match those of a ship that blasted its way out of Mos Eisley." +"516" "VADER" "They must be trying to return the stolen plans to the princess. She may yet be of some use to us." +"517" "VOICE" "Unlock one-five-seven and nine. Release charges." +"518" "OFFICER" "There's no one on board, sir. According to the log, the crew abandoned ship right after takeoff. It must be a decoy, sir. Several of the escape pods have been jettisoned." +"519" "VADER" "Did you find any droids?" +"520" "OFFICER" "No, sir. If there were any on board, they must also have jettisoned." +"521" "VADER" "Send a scanning crew on board. I want every part of this ship checked." +"522" "OFFICER" "Yes, sir." +"523" "VADER" "I sense something... a presence I haven't felt since..." +"524" "OFFICER" "Get me a scanning crew in here on the double. I want every part of this ship checked!" +"525" "LUKE" "Boy, it's lucky you had these compartments." +"526" "HAN" "I use them for smuggling. I never thought I'd be smuggling myself in them. This is ridiculous. Even if I could take off, I'd never get past the tractor beam." +"527" "BEN" "Leave that to me!" +"528" "HAN" "Damn fool. I knew that you were going to say that!" +"529" "BEN" "Who's the more foolish... the fool or the fool who follows him?" +"530" "TROOPER" "The ship's all yours. If the scanners pick up anything, report it immediately. All right, let's go." +"531" "HAN" "Hey down there, could you give us a hand with this?" +"532" "GANTRY OFFICER" "TX-four-one-two. Why aren't you at your post? TX-four-one-two, do you copy? " +"533" "GANTRY OFFICER" "Take over. We've got a bad transmitter. I'll see what I can do." +"534" "LUKE" "You know, between his howling and your blasting everything in sight, it's a wonder the whole station doesn't know we're here." +"535" "HAN" "Bring them on! I prefer a straight fight to all this sneaking around." +"536" "THREEPIO" "We found the computer outlet, sir." +"537" "BEN" "Plug in. He should be able to interpret the entire Imperial computer network." +"538" "THREEPIO" "He says he's found the main control to the power beam that's holding the ship here. He'll try to make the precise location appear on the monitor." +"539" "THREEPIO" "The tractor beam is coupled to the main reactor in seven locations. A power loss at one of the terminals will allow the ship to leave." +"540" "BEN" "I don't think you boys can help. I must go alone." +"541" "HAN" "Whatever you say. I've done more than I bargained for on this trip already." +"542" "LUKE" "I want to go with you." +"543" "BEN" "Be patient, Luke. Stay and watch over the droids." +"544" "LUKE" "But he can..." +"545" "BEN" "They must be delivered safely or other star systems will suffer the same fate as Alderaan. Your destiny lies along a different path from mine. The Force will be with you... always!" +"546" "HAN" "Boy you said it, Chewie." +"547" "HAN" "Where did you dig up that old fossil?" +"548" "LUKE" "Ben is a great man." +"549" "HAN" "Yeah, great at getting us into trouble." +"550" "LUKE" "I didn't hear you give any ideas..." +"551" "HAN" "Well, anything would be better than just hanging around waiting for them to pick us up..." +"552" "LUKE" "Who do you think..." +"553" "LUKE" "What is it?" +"554" "THREEPIO" "I'm afraid I'm not quite sure, sir. He says \"I found her,\" and keepsrepeating, \"She's here.\"" +"555" "LUKE" "Well, who... who has he found?" +"556" "THREEPIO" "Princess Leia." +"557" "LUKE" "The princess? She's here?" +"558" "HAN" "Princess?" +"559" "LUKE" "Where... where is she?" +"560" "HAN" "Princess? What's going on?" +"561" "THREEPIO" "Level five. Detention block AA-twenty-three. I'm afraid she's scheduled to be terminated." +"562" "LUKE" "Oh, no! We've got to do something." +"563" "HAN" "What are you talking about?" +"564" "LUKE" "The droid belongs to her. She's the one in the message. We've got to help her." +"565" "HAN" "Now, look, don't get any funny ideas. The old man wants us to wait right here." +"566" "LUKE" "But he didn't know she was here. Look, will you just find a way back into the detention block?" +"567" "HAN" "I'm not going anywhere." +"568" "LUKE" "They're going to execute her. Look, a few minutes ago you said you didn't want to just wait here to be captured. Now all you want to do is stay. " +"569" "HAN" "Marching into the detention area is not what I had in mind." +"570" "LUKE" "But they're going to kill her!" +"571" "HAN" "Better her than me..." +"572" "LUKE" "She's rich." +"573" "HAN" "Rich?" +"574" "LUKE" "Yes. Rich, powerful! Listen, if you were to rescue her, the reward would be..." +"575" "HAN" "What?" +"576" "LUKE" "Well more wealth that you can imagine." +"577" "HAN" "I don't know, I can imagine quite a bit!" +"578" "LUKE" "You'll get it!" +"579" "HAN" "I better!" +"580" "LUKE" "You will..." +"581" "HAN" "All right, kid. But you'd better be right about this!" +"582" "LUKE" "All right." +"583" "HAN" "What's your plan?" +"584" "LUKE" "Uh... Threepio, hand me those binders there will you?" +"585" "LUKE" "Okay. Now, I'm going to put these on you." +"586" "LUKE" "Okay. Han, you put these on." +"587" "HAN" "Don't worry, Chewie. I think I know what he has in mind." +"588" "THREEPIO" "Master Luke, sir! Pardon me for asking... but, ah... what should Artoo and I do if we're discovered here?" +"589" "LUKE" "Lock the door!" +"590" "HAN" "And hope they don't have blasters." +"591" "THREEPIO" "That isn't very reassuring." +"592" "LUKE" "I can't see a thing in this helmet." +"593" "HAN" "This is not going to work." +"594" "LUKE" "Why didn't you say so before?" +"595" "HAN" "I did say so before!" +"596" "OFFICER" "Where are you taking this... thing?" +"597" "LUKE" "Prisoner transfer from Block one-one-three-eight." +"598" "OFFICER" "I wasn't notified. I'll have to clear it." +"599" "HAN" "Look out! He's loose!" +"600" "LUKE" "He's going to pull us all apart." +"601" "HAN" "Go get him!" +"602" "HAN" "We've got to find out which cell this princess of yours is in. Here it is... cell twenty-one-eight-seven. You go get her. I'll hold them here." +"603" "HAN" "Everything is under control. Situation normal." +"604" "INTERCOM VOICE" "What happened?" +"605" "HAN" "Uh... had a slight weapons malfunction. But, uh, everything's perfectly all right now. We're fine. We're all fine here, now, thank you. How are you?" +"606" "INTERCOM VOICE" "We're sending a squad up." +"607" "HAN" "Uh, uh, negative, negative. We had a reactor leak here now. Give us a few minutes to lock it down. Large leak... very dangerous." +"608" "INTERCOM VOICE" "Who is this? What's your operating number?" +"609" "HAN" "Boring conversation anyway.Luke! We're going to have company!" +"610" "LEIA" "Aren't you a little short for a stormtrooper?" +"611" "LUKE" "What? Oh... the uniform. I'm Luke Skywalker. I'm here to rescue you. " +"612" "LEIA" "You're who?" +"613" "LUKE" "I'm here to rescue you. I've got your R2 unit. I'm here with Ben Kenobi." +"614" "LEIA" "Ben Kenobi is here! Where is he?" +"615" "LUKE" "Come on!" +"616" "VADER" "He is here..." +"617" "TARKIN" "Obi-Wan Kenobi! What makes you think so?" +"618" "VADER" "A tremor in the Force. The last time I felt it was in the presence of my old master." +"619" "TARKIN" "Surely he must be dead by now." +"620" "VADER" "Don't underestimate the Force." +"621" "TARKIN" "The Jedi are extinct, their fire has gone out of the universe. You, my friend, are all that's left of their religion." +"622" "TARKIN" "Yes." +"623" "INTERCOM VOICE" "Governor Tarkin, we have an emergency alert in detention block AA-twenty-three." +"624" "TARKIN" "The princess! Put all sections on alert!" +"625" "VADER" "Obi-Wan is here. The Force is with him." +"626" "TARKIN" "If you're right, he must not be allowed to escape." +"627" "VADER" "Escape may not his plan. I must face him alone." +"628" "HAN" "Chewie!" +"629" "HAN" "Get behind me! Get behind me!" +"630" "HAN" "Can't get out that way." +"631" "LEIA" "Looks like you managed to cut off our only escape route." +"632" "HAN" "Maybe you'd like it back in your cell, Your Highness." +"633" "LUKE" "See-Threepio! See-Threepio!" +"634" "THREEPIO" "Yes sir?" +"635" "LUKE" "We've been cut off! Are there any other ways out of the cell bay?...What was that? I didn't copy!" +"636" "THREEPIO" "I said, all systems have been alerted to your presence, sir. The main entrance seems to be the only way out; all other information on your level is restricted." +"637" "TROOPER VOICE" "Open up in there!" +"638" "THREEPIO" "Oh, no!" +"639" "LUKE" "There isn't any other way out." +"640" "HAN" "I can't hold them off forever! Now what?" +"641" "LEIA" "This is some rescue. When you came in here, didn't you have a plan for getting out?" +"642" "HAN" "He's the brains, sweetheart." +"643" "LUKE" "Well, I didn't..." +"644" "HAN" "What the hell are you doing?" +"645" "LEIA" "Somebody has to save our skins. Into the garbage chute, wise guy." +"646" "HAN" "Get in there you big furry oaf! I don't care what you smell! Get in there and don't worry about it." +"647" "HAN" "Wonderful girl! Either I'm going to kill her or I'm beginning to like her. Get in there!" +"648" "HAN" "Oh! The garbage chute was a really wonderful idea. What an incredible smell you've discovered! Let's get out of here! Get away from there..." +"649" "LUKE" "No! wait!" +"650" "LUKE" "Will you forget it? I already tried it. It's magnetically sealed!" +"651" "LEIA" "Put that thing away! You're going to get us all killed." +"652" "HAN" "Absolutely, Your Worship. Look, I had everything under control until you led us down here. You know, it's not going to take them long to figure out what happened to us." +"653" "LEIA" "It could be worse..." +"654" "HAN" "It's worse." +"655" "LUKE" "There's something alive in here!" +"656" "HAN" "That's your imagination." +"657" "LUKE" "Something just moves past my leg! Look! Did you see that?" +"658" "HAN" "What?" +"659" "LUKE" "Help!" +"660" "HAN" "Luke! Luke! Luke!" +"661" "LEIA" "Luke!" +"662" "LEIA" "Luke, Luke, grab a hold of this." +"663" "LUKE" "Blast it, will you! My gun's jammed." +"664" "HAN" "Where?" +"665" "LUKE" "Anywhere! Oh!!" +"666" "HAN" "Luke! Luke!" +"667" "LEIA" "Grab him!" +"668" "LEIA" "What happened?" +"669" "LUKE" "I don't know, it just let go of me and disappeared..." +"670" "HAN" "I've got a very bad feeling about this." +"671" "LUKE" "The walls are moving!" +"672" "LEIA" "Don't just stand there. Try and brace it with something." +"673" "LUKE" "Wait a minute!" +"674" "LUKE" "Threepio! Come in Threepio! Threepio! Where could he be?" +"675" "FIRST TROOPER" "Take over!See to him! Look there!" +"676" "THREEPIO" "They're madmen! They're heading for the prison level. If you hurry, you might catch them." +"677" "FIRST OFFICER" "Follow me! You stand guard." +"678" "THREEPIO" "Come on!" +"679" "THREEPIO" "Oh! All this excitement has overrun the circuits of my counterpart here. If you don't mind, I'd like to take him down to maintenance." +"680" "TROOPER" "All right." +"681" "LUKE" "Threepio! Come in, Threepio! Threepio!" +"682" "HAN" "Get to the top!" +"683" "LEIA" "I can't " +"684" "LUKE" "Where could he be? Threepio! Threepio, will you come in?" +"685" "THREEPIO" "They aren't here! Something must have happened to them. See if they've been captured." +"686" "THREEPIO" "Hurry!" +"687" "HAN" "One thing's for sure. We're all going to be a lot thinner!Get on top of it!" +"688" "LEIA" "I'm trying!" +"689" "THREEPIO" "Thank goodness, they haven't found them! Where could they be?" +"690" "THREEPIO" "Use the comlink? Oh, my! I forgot I turned it off!" +"691" "THREEPIO" "Are you there, sir?" +"692" "LUKE" "Threepio!" +"693" "THREEPIO" "We've had some problems..." +"694" "LUKE" "Shut down all the garbage mashers on the detention level, will you? Do you copy?" +"695" "LUKE" "Shut down all the garbage mashers on the detention level." +"696" "LUKE" "Shut down all the garbage mashers on the detention level." +"697" "THREEPIO" "No. Shut them all down! Hurry!" +"698" "THREEPIO" "Listen to them! They're dying, Artoo! Curse my metal body! I wasn't fast enough. It's all my fault! My poor master!" +"699" "LUKE" "Threepio, we're all right!" +"700" "LUKE" "We're all right. You did great." +"701" "LUKE" "Hey... hey, open the pressure maintenance hatch on unit number... where are we?" +"702" "HAN" "Three-two-six-eight-two-seven." +"703" "HAN" "If we can just avoid any more female advice, we ought to be able to get out of here." +"704" "LUKE" "Well, let's get moving!" +"705" "HAN" "Where are you going?" +"706" "LEIA" "No, wait. They'll hear!" +"707" "HAN" "Come here, you big coward!" +"708" "HAN" "Chewie! Come here!" +"709" "LEIA" "Listen. I don't know who you are, or where you came from, but from now on, you do as I tell you. Okay?" +"710" "HAN" "Look, Your Worshipfulness, let's get one thing straight! I takeorders from one person! Me!" +"711" "LEIA" "It's a wonder you're still alive.Will somebody get this big walking carpet out of my way?" +"712" "HAN" "No reward is worth this." +"713" "OFFICER" "Secure this area until the alert is canceled." +"714" "FIRST TROOPER" "Give me regular reports." +"715" "FIRST TROOPER" "Do you know what's going on?" +"716" "SECOND TROOPER" "Maybe it's another drill." +"717" "SECOND TROOPER" "What was that?" +"718" "FIRST TROOPER" "Oh, it's nothing. Don't worry about it." +"719" "HAN" "There she is." +"720" "LUKE" "See-Threepio, do you copy?" +"721" "THREEPIO" "For the moment. Uh, we're in the main hangar across from the ship." +"722" "LUKE" "We're right above you. Stand by." +"723" "LEIA" "You came in that thing? You're braver that I thought." +"724" "HAN" "Nice! Come on!" +"725" "FIRST TROOPER" "It's them! Blast them!" +"726" "HAN" "Get back to the ship!" +"727" "LUKE" "Where are you going? Come back!" +"728" "LEIA" "He certainly has courage." +"729" "LUKE" "What good will it do us if he gets himself killed? Come on!" +"730" "LUKE" "I think we took a wrong turn." +"731" "LEIA" "There's no lock!" +"732" "LUKE" "That oughta hold it for a while." +"733" "LEIA" "Quick, we've got to get across. Find the control that extends the bridge." +"734" "LUKE" "Oh, I think I just blasted it." +"735" "LEIA" "They're coming through!" +"736" "LUKE" "Here, hold this." +"737" "LEIA" "Here they come!" +"738" "LEIA" "For luck!" +"739" "THREEPIO" "Where could they be?" +"740" "TROOPER" "Close the blast doors!" +"741" "TROOPER" "Open the blast doors! Open the blast doors!" +"742" "VADER" "I've been waiting for you, Obi-Wan. We meet again, at last. The circle is now complete." +"743" "VADER" "When I left you, I was but the learner; now I am the master." +"744" "BEN" "Only a master of evil, Darth." +"745" "VADER" "Your powers are weak, old man." +"746" "BEN" "You can't win, Darth. If you strike me down, I shall become more powerful than you can possibly imagine." +"747" "HAN" "Didn't we just leave this party?" +"748" "HAN" "What kept you?" +"749" "LEIA" "We ran into some old friends." +"750" "LUKE" "Is the ship all right?" +"751" "HAN" "Seems okay, if we can get to it.Just hope the old man got the tractor beam out of commission." +"752" "LUKE" "Look!" +"753" "THREEPIO" "Come on, Artoo, we're going!" +"754" "HAN" "Now's our chance! Go!" +"755" "LUKE" "No!" +"756" "HAN" "Come on!" +"757" "LEIA" "Come on! Luke, its too late!" +"758" "HAN" "Blast the door! Kid!" +"759" "BEN" "Run, Luke! Run!" +"760" "HAN" "I hope the old man got that tractor beam out if commission, or this is going to be a real short trip. Okay, hit it!" +"761" "HAN" "We're coming up on the sentry ships. Hold 'em off! Angle the deflector shields while I charge up the main guns!" +"762" "LUKE" "I can't believe he's gone." +"763" "LEIA" "There wasn't anything you could have done." +"764" "HAN" "Come on, buddy, we're not out of this yet!" +"765" "HAN" "You in, kid? Okay, stay sharp!" +"766" "LEIA" "Here they come!" +"767" "LUKE" "They're coming in too fast!" +"768" "THREEPIO" "Oooh!" +"769" "LEIA" "We've lost lateral controls." +"770" "HAN" "Don't worry, she'll hold together." +"771" "HAN" "You hear me, baby? Hold together!" +"772" "LUKE" "Got him! I got him!" +"773" "HAN" "Great kid! Don't get cocky." +"774" "LEIA" "There are still two more of them out there!" +"775" "LUKE" "That's it! We did it!" +"776" "LEIA" "We did it!" +"777" "THREEPIO" "Help! I think I'm melting!This is all your fault." +"778" "TARKIN" "Are they away?" +"779" "VADER" "They have just made the jump into hyperspace." +"780" "TARKIN" "You're sure the homing beacon is secure aboard their ship? I'm taking an awful risk, Vader. This had better work." +"781" "HAN" "Not a bad bit of rescuing, huh? You know, sometimes I even amaze myself." +"782" "LEIA" "That doesn't sound too hard. Besides, they let us go. It's the only explanation for the ease of our escape." +"783" "HAN" "Easy... you call that easy?" +"784" "LEIA" "Their tracking us!" +"785" "HAN" "Not this ship, sister." +"786" "LEIA" "At least the information in Artoo is still intact." +"787" "HAN" "What's so important? What's he carrying?" +"788" "LEIA" "The technical readouts of that battle station. I only hope that when the data is analyzed, a weakness can be found. It's not over yet!" +"789" "HAN" "It is for me, sister! Look, I ain't in this for your revolution, and I'm not in it for you, Princess. I expect to be well paid. I'm in it for the money!" +"790" "LEIA" "You needn't worry about your reward. If money is all that you love, then that's what you'll receive!" +"791" "LEIA" "Your friend is quite a mercenary. I wonder if he really cares about anything... or anyone." +"792" "LUKE" "I care!" +"793" "LUKE" "So... what do you think of her, Han?" +"794" "HAN" "I'm trying not to, kid!" +"795" "LUKE" "Good..." +"796" "HAN" "Still, she's got a lot of spirit. I don't know, what do you think? Do you think a princess and a guy like me..." +"797" "LUKE" "No!" +"798" "WILLARD" "You're safe! We had feared the worst." +"799" "WILLARD" "When we heard about Alderaan, we were afraid that you were... lost along with your father." +"800" "LEIA" "We don't have time for our sorrows, commander. The battle station has surely tracked us here.It's the only explanation for the ease of our escape. You must use the information in this R2 unit to plan the attack. It is our only hope." +"801" "TARKIN" "Yes." +"802" "DEATH STAR INTERCOM VOICE" "We are approaching the planet Yavin. The Rebel base is on a moon on the far side. We are preparing to orbit the planet." +"803" "DODONNA" "The battle station is heavily shielded and carries a firepower greater than half the star fleet.Its defenses are designed around a direct large-scale assault. A small one-man fighter should be able to penetrate the outer defense." +"804" "GOLD LEADER" "Pardon me for asking, sir, but what good are snub fighters going to be against that?" +"805" "DODONNA" "Well, the Empire doesn't consider a small one-man fighter to be any threat, or they'd have a tighter defense. An analysis of the plans provided by Princess Leia has demonstrated a weakness in the battle station." +"806" "DODONNA" "The approach will not be easy. You are required to maneuver straight down this trench and skim the surface to this point. The target area is only two meters wide. It's a small thermal exhaust port, right below the main port. The shaft leads directly to the reactor system. A precise hit will start a chain reaction which should destroy the station." +"807" "DODONNA" "Only a precise hit will set up a chain reaction. The shaft is ray-shielded, so you'll have to use proton torpedoes." +"808" "WEDGE" "That's impossible, even for a computer." +"809" "LUKE" "It's not impossible. I used to bullseye womp rats in my T-sixteen back home. They're not much bigger than two meters." +"810" "DODONNA" "Man your ships! And may the Force be with you!" +"811" "DEATH STAR INTERCOM VOICE" "Orbiting the planet at maximum velocity. The moon with the Rebel base will be in range in thirty minutes." +"812" "VADER" "This will be a day long remembered. It has seen the end of Kenobi and it will soon see the end of the Rebellion." +"813" "MAN" "All flight troops, man your stations. All flight troops, man your stations." +"814" "LUKE" "So... you got your reward and you're just leaving then?" +"815" "HAN" "That's right, yeah! I got some old debts I've got to pay off with this stuff. Even if I didn't, you don't think I'd be fool enough to stick around here, do you? Why don't you come with us? You're pretty good in a fight. I could use you." +"816" "LUKE" "Come on! Why don't you take a look around? You know what's about to happen, what they're up against. They could use a good pilot like you. You're turning your back on them." +"817" "HAN" "What good's a reward if you ain't around to use it? Besides, attacking that battle station ain'tmy idea of courage. It's more like suicide." +"818" "LUKE" "All right. Well, take care of yourself, Han... guess that's what you're best at, isn't it?" +"819" "HAN" "Hey, Luke... may the Force be with you!" +"820" "HAN" "What're you lookin' at? I know what I'm doing." +"821" "LEIA" "What's wrong?" +"822" "LUKE" "Oh, it's Han! I don't know, I really thought he'd change his mind. " +"823" "LEIA" "He's got to follow his own path. No one can choose it for him." +"824" "LUKE" "I only wish Ben were here." +"825" "BIGGS" "Luke! I don't believe it! How'd you get here... are you going out with us?!" +"826" "LUKE" "Biggs! Of course, I'll be up there with you! Listen, have I got some stories to tell..." +"827" "RED LEADER" "Are you... Luke Skywalker? Have you been checked out on the Incom T-sixty-five?" +"828" "BIGGS" "Sir, Luke is the best bushpilot in the outer rim territories." +"829" "RED LEADER" "I met your father once when I was just a boy. He was a great pilot. You'll do all right. If you've got half of your father's skill, you'll do better than all right." +"830" "LUKE" "Thank you, sir. I'll try." +"831" "BIGGS" "I've got to get aboard. Listen, you'll tell me your stories when we come back. All right?" +"832" "LUKE" "I told you I'd make it someday, Biggs." +"833" "BIGGS" "You did, all right. It's going to be like old times Luke. We're a couple of shooting stars that'll never be stopped!" +"834" "CHIEF" "This R2 unit of your seems a bit beat up. Do you want a new one?" +"835" "LUKE" "Not on your life! That little droid and I have been through a lot together.You okay, Artoo?" +"836" "CHIEF" "Okay, easy she goes!" +"837" "THREEPIO" "Hang on tight, Artoo, you've got to come back." +"838" "THREEPIO" "You wouldn't want my life to get boring, would you?" +"839" "BEN" "Luke, the Force will be with you." +"840" "MASSASSI INTERCOM VOICE" "Stand-by alert. Death Star approaching. Estimated time to firing range, fifteen minutes." +"841" "RED LEADER" "All wings report in." +"842" "RED TEN" "Red Ten standing by." +"843" "RED SEVEN" "Red Seven standing by." +"844" "BIGGS" "Red Three standing by." +"845" "PORKINS" "Red Six standing by." +"846" "RED NINE" "Red Nine standing by." +"847" "WEDGE" "Red Two standing by." +"848" "RED ELEVEN" "Red Eleven standing by." +"849" "LUKE" "Red Five standing by." +"850" "RED LEADER" "Lock S-foils in attack position." +"851" "RED LEADER" "We're passing through their magnetic field." +"852" "RED LEADER" "Hold tight!" +"853" "RED LEADER" "Switch your deflectors on." +"854" "RED LEADER" "Double front!" +"855" "WEDGE" "Look at the size of that thing!" +"856" "RED LEADER" "Cut the chatter, Red Two." +"857" "RED LEADER" "Accelerate to attack speed. This is it, boys!" +"858" "GOLD LEADER" "Red Leader, this is Gold Leader." +"859" "RED LEADER" "I copy, Gold Leader." +"860" "GOLD LEADER" "We're starting for the target shaft now." +"861" "RED LEADER" "We're in position. I'm going to cut across the axis and try and draw their fire." +"862" "WEDGE" "Heavy fire, boss! Twenty-threedegrees." +"863" "RED LEADER" "I see it. Stay low. " +"864" "LUKE" "This is Red Five! I'm going in!" +"865" "BIGGS" "Luke, pull up!" +"866" "BIGGS" "Are you all right?" +"867" "LUKE" "I got a little cooked, but I'm okay." +"868" "ASTRO-OFFICER" "We count thirty Rebel ships, Lord Vader. But they're so small they're evading our turbo-lasers!" +"869" "VADER" "We'll have to destroy them ship to ship. Get the crews to their fighters." +"870" "RED LEADER" "Luke, let me know when you're going in." +"871" "LUKE" "I'm on my way in now..." +"872" "RED LEADER" "Watch yourself! There's a lot of fire coming from the right side of that deflection tower." +"873" "LUKE" "I'm on it." +"874" "CONTROL OFFICER" "Squad leaders, we've picked up a new group of signals. Enemy fighters coming your way." +"875" "LUKE" "My scope's negative. I don't see anything." +"876" "RED LEADER" "Keep up your visual scanning. With all this jamming, they'll be on top of you before your scope can pick them up." +"877" "RED LEADER" "Biggs! You've picked one up... watch it!" +"878" "BIGGS" "I can't see it! Where is he?!" +"879" "BIGGS" "He's on me tight, I can't shake him... I can't shake him." +"880" "LUKE" "Hang on, Biggs, I'm coming in." +"881" "LUKE" "Got him!" +"882" "VADER" "Several fighters have broken off from the main group. Come with me!" +"883" "BIGGS" "Pull in! Luke... pull in!" +"884" "WEDGE" "Watch your back, Luke!" +"885" "WEDGE" "Watch your back! Fighter's above you, coming in!" +"886" "LUKE" "I'm hit, but not bad." +"887" "LUKE" "Artoo, see what you can do with it. Hang on back there." +"888" "RED LEADER" "Red Six..." +"889" "RED LEADER" "Can you see Red Five?" +"890" "RED TEN" "There's a heavy fire zone on this side. Red Five, where are you?" +"891" "LUKE" "I can't shake him!" +"892" "WEDGE" "I'm on him, Luke!" +"893" "WEDGE" "Hold on!" +"894" "LUKE" "Blast it! Wedge where are you?" +"895" "LUKE" "Thanks, Wedge." +"896" "BIGGS" "Good shooting, Wedge!" +"897" "GOLD LEADER" "Red Leader..." +"898" "GOLD LEADER" "... This is Gold Leader. We're starting out attack run." +"899" "RED LEADER" "I copy, Gold Leader. Move into position." +"900" "VADER" "Stay in attack formation!" +"901" "GOLD LEADER" "The exhaust post is..." +"902" "GOLD LEADER" "... marked and locked in!" +"903" "GOLD LEADER" "Switch power to front deflection screens." +"904" "GOLD LEADER" "How many guns do you think, Gold Five?" +"905" "GOLD FIVE" "I'd say about twenty guns. Some on the surface, some on the towers." +"906" "MASSASSI INTERCOM VOICE" "Death Star will be in range in five minutes. " +"907" "GOLD LEADER" "Switch to targeting computer." +"908" "GOLD TWO" "Computer's locked. Getting a signal." +"909" "GOLD TWO" "The guns... they've stopped!" +"910" "GOLD FIVE" "Stabilize your rear deflectors. Watch for enemy fighters." +"911" "GOLD LEADER" "They've coming in! Three marks at two ten." +"912" "VADER" "I'll take them myself! Cover me!" +"913" "WINGMAN" "Yes, sir." +"914" "GOLD LEADER" "I can't maneuver!" +"915" "GOLD FIVE" "Stay on target." +"916" "GOLD LEADER" "We're too close." +"917" "GOLD FIVE" "Stay on target!" +"918" "GOLD LEADER" "Loosen up!" +"919" "GOLD FIVE" "Gold Five to Red Leader..." +"920" "GOLD FIVE" "Lost Tiree, lost Dutch." +"921" "RED LEADER" "I copy, Gold Five." +"922" "GOLD FIVE" "They came from behind...." +"923" "OFFICER" "We've analyzed their attack, sir, and there is a danger. Should I have your ship standing by?" +"924" "TARKIN" "Evacuate? In out moment of triumph? I think you overestimate their chances!" +"925" "VOICE" "Rebel base, three minutes and closing." +"926" "RED LEADER" "Red Group, this is Red Leader." +"927" "RED LEADER" "Rendezvous at mark six point one." +"928" "WEDGE" "This is Red Two. Flying towards you." +"929" "BIGGS" "Red Three, standing by." +"930" "DODONNA" "Red Leader, this is Base One. Keep half your group out of range for the next run." +"931" "RED LEADER" "Copy, Base One. Luke, take Red Two and Three. Hold up here and wait for my signal... to start your run." +"932" "RED LEADER" "This is it!" +"933" "RED TEN" "We should be able to see it by now." +"934" "RED LEADER" "Keep your eyes open for those fighters!" +"935" "RED TEN" "There's too much interference!" +"936" "RED TEN" "Red Five, can you see them from where you are?" +"937" "LUKE" "No sign of any... wait!" +"938" "LUKE" "Coming in point three five." +"939" "RED TEN" "I see them." +"940" "RED LEADER" "I'm in range." +"941" "RED LEADER" "Target's coming up!" +"942" "RED LEADER" "Just hold them off for a few seconds." +"943" "VADER" "Close up formation." +"944" "RED LEADER" "Almost there!" +"945" "RED TEN" "You'd better let her loose." +"946" "RED LEADER" "Almost there!" +"947" "RED TEN" "I can't hold them!" +"948" "RED LEADER" "It's away!" +"949" "RED NINE" "It's a hit!" +"950" "RED LEADER" "Negative." +"951" "RED LEADER" "Negative! It didn't go in, it just impacted on the surface." +"952" "LUKE" "Red Leader, we're right above you. Turn to point..." +"953" "LUKE" "... oh-five; we'll cover for you." +"954" "RED LEADER" "Stay there..." +"955" "RED LEADER" "... I just lost my starboard engine." +"956" "RED LEADER" "Get set up for your attack run." +"957" "DEATH STAR INTERCOM VOICE" "Rebel base, one minute and closing." +"958" "LUKE" "Biggs, Wedge, let's close it up. We're going in. We're going in full throttle." +"959" "WEDGE" "Right with you, boss." +"960" "BIGGS" "Luke, at that speed will you be able to pull out in time?" +"961" "LUKE" "It'll be just like Beggar's Canyon back home." +"962" "BIGGS" "We'll stay back far enough to cover you." +"963" "WEDGE" "My scope shows the tower, but I can't see the exhaust port! Are you sure the computer can hit it?" +"964" "LUKE" "Watch yourself! Increase speed full throttle!" +"965" "WEDGE" "What about that tower?" +"966" "LUKE" "You worry about those fighters! I'll worry about the tower!" +"967" "LUKE" "Artoo... that, that stabilizer's broken loose again! See if you can't lock it down!" +"968" "WEDGE" "I'm hit! I can't stay with you." +"969" "LUKE" "Get clear, Wedge." +"970" "LUKE" "You can't do any more good back there!" +"971" "WEDGE" "Sorry!" +"972" "VADER" "Let him go! Stay on the leader!" +"973" "BIGGS" "Hurry, Luke, they're coming in much faster this time. I can't hold them!" +"974" "LUKE" "Artoo, try and increase the power!" +"975" "BIGGS" "Hurry up, Luke!" +"976" "BIGGS" "Wait!" +"977" "DEATH STAR INTERCOM VOICE" "Rebel base, thirty seconds and closing." +"978" "VADER" "I'm on the leader." +"979" "THREEPIO" "Hang on, Artoo!" +"980" "BEN" "Use the Force, Luke." +"981" "BEN" "Let go, Luke." +"982" "VADER" "The Force is strong with this one!" +"983" "BEN" "Luke, trust me." +"984" "BASE VOICE" "His computer's off. Luke, you switched off your targeting computer. What's wrong?" +"985" "LUKE" "Nothing. I'm all right." +"986" "LUKE" "I've lost Artoo!" +"987" "MASSASSI INTERCOM VOICE" "The Death Star has cleared the planet. The Death Star has cleared the planet." +"988" "DEATH STAR INTERCOM VOICE" "Rebel base, in range." +"989" "TARKIN" "You may fire when ready." +"990" "DEATH STAR INTERCOM VOICE" "Commence primary ignition." +"991" "VADER" "I have you now." +"992" "VADER" "What?" +"993" "HAN" "Yahoo!" +"994" "WINGMAN" "Look out!" +"995" "HAN" "You're all clear, kid." +"996" "HAN" "Now let's blow this thing and go home!" +"997" "INTERCOM VOICE" "Stand by to fire at Rebel base." +"998" "INTERCOM VOICE" "Standing by." +"999" "HAN" "Great shot, kid. That was one in a million." +"1000" "BEN" "Remember, the Force will be with you... always." +"1001" "LEIA" "Luke! Luke! Luke!" +"1002" "HAN" "Hey! Hey!" +"1003" "LUKE" "I knew you'd come back! I just knew it!" +"1004" "HAN" "Well, I wasn't gonna let you get all the credit and take all the reward." +"1005" "LEIA" "Hey, I knew there was more to you than money." +"1006" "LUKE" "Oh, no!" +"1007" "THREEPIO" "Oh, my! Artoo! Can you hear me? Say something!You can repair him, can't you?" +"1008" "TECHNICIAN" "We'll get to work on him right away." +"1009" "THREEPIO" "You must repair him! Sir, if any of my circuits or gears will help, I'll gladly donate them." +"1010" "LUKE" "He'll be all right." diff --git a/Text_files/SW_EpisodeV.txt b/Text_files/SW_EpisodeV.txt new file mode 100644 index 0000000..aa496f2 --- /dev/null +++ b/Text_files/SW_EpisodeV.txt @@ -0,0 +1,840 @@ +"character" "dialogue" +"1" "LUKE" "Echo Three to Echo Seven. Han, old buddy, do you read me?" +"2" "HAN" "Loud and clear, kid. What's up?" +"3" "LUKE" "Well, I finished my circle. I don't pick up any life readings." +"4" "HAN" "There isn't enough life on this ice cube to fill a space cruiser. The sensors are placed. I'm going back." +"5" "LUKE" "Right. I'll see you shortly. There's a meteorite that hit the ground near here. I want to check it out. It won't take long." +"6" "LUKE" "Hey, steady girl. What's the matter? You smell something?" +"7" "LUKE" "Aaargh!" +"8" "HAN" "Chewie!" +"9" "HAN" "All right, don't lose your temper. I'll come right back and give you a hand." +"10" "RIEEKAN" "Solo?" +"11" "HAN" "No sign of life out there, General. The sensors are in place. You'll know if anything comes around." +"12" "RIEEKAN" "Commander Skywalker reported in yet?" +"13" "HAN" "No. He's checking out a meteorite that hit near him." +"14" "RIEEKAN" "With all the meteor activity in this system, it's going to be difficult to spot approaching ships." +"15" "HAN" "General, I've got to leave. I can't stay anymore." +"16" "RIEEKAN" "I'm sorry to hear that." +"17" "HAN" "Well, there's a price on my head. If I don't pay off Jabba the Hut, I'm a dead man." +"18" "RIEEKAN" "A death mark's not an easy thing to live with. You're a good fighter, Solo. I hate to lose you." +"19" "HAN" "Thank you, General." +"20" "HAN" "Well, Your Highness, I guess this is it." +"21" "LEIA" "That's right." +"22" "HAN" "Well, don't get all mushy on me. So long, Princess." +"23" "LEIA" "Han!" +"24" "HAN" "Yes, Your Highnessness?" +"25" "LEIA" "I thought you decided to stay." +"26" "HAN" "Well, the bounty hunter we ran into on Ord Mantell changed my mind." +"27" "LEIA" "Han, we need you!" +"28" "HAN" "We?" +"29" "LEIA" "Yes." +"30" "HAN" "Oh, what about you need?" +"31" "LEIA" "I need? I don't know what you're talking about." +"32" "HAN" "You probably don't." +"33" "LEIA" "And what precisely am I supposed to know?" +"34" "HAN" "Come on! You want me to stay because of the way you feel about me." +"35" "LEIA" "Yes. You're a great help to us. You're a natural leader..." +"36" "HAN" "No! That's not it. Come on. Aahhh -- uh huh! Come on." +"37" "LEIA" "You're imagining things." +"38" "HAN" "Am I? Then why are you following me? Afraid I was going to leave without giving you a goodbye kiss?" +"39" "LEIA" "I'd just as soon kiss a Wookiee." +"40" "HAN" "I can arrange that. You could use a good kiss!" +"41" "THREEPIO" "Don't try to blame me. I didn't ask you to turn on the thermal heater. I merely commented that it was freezing in the princess's chamber. But it's supposed to be freezing. How are we going to dry out all her clothes? I really don't know." +"42" "THREEPIO" "Oh, switch off." +"43" "HAN" "Why do you take this apart now? I'm trying to get us out of here and you pull both of these." +"44" "THREEPIO" "Excuse me, sir." +"45" "HAN" "Put them back together right now." +"46" "THREEPIO" "Might I have a word with you, please?" +"47" "HAN" "What do you want?" +"48" "THREEPIO" "Well, it's Princess Leia, sir. She's been trying to get you on the communicator." +"49" "HAN" "I turned it off. I don't want to talk to her." +"50" "THREEPIO" "Oh. Well, Princess Leia is wondering about Master Luke. He hasn't come back yet. She doesn't know where he is." +"51" "HAN" "I don't know where he is." +"52" "THREEPIO" "Nobody knows where he is." +"53" "HAN" "What do you mean, \"nobody knows\"?" +"54" "THREEPIO" "Well, uh, you see..." +"55" "HAN" "Deck Officer. Deck Officer!" +"56" "THREEPIO" "Excuse me, sir. Might I inqu-..." +"57" "DECK OFFICER" "Yes, sir?" +"58" "HAN" "Do you know where Commander Skywalker is?" +"59" "DECK OFFICER" "I haven't seen him. It's possible he came in through the south entrance." +"60" "HAN" "It's possible? Why don't you go find out? It's getting dark out there." +"61" "DECK OFFICER" "Yes, sir." +"62" "THREEPIO" "Excuse me, sir. Might I inquire what's going on?" +"63" "HAN" "Why not?" +"64" "THREEPIO" "Impossible man. Come along, Artoo, lets find Princess Leia. Between ourselves, I think Master Luke is in considerable danger." +"65" "DECK OFFICER" "Sir, Commander Skywalker hasn't come in through the south entrance. He might have forgotten to check in." +"66" "HAN" "Not likely. Are the speeders ready?" +"67" "DECK OFFICER" "Not yet. We're having some trouble adapting them to the cold." +"68" "HAN" "Then we'll have to go out on Tauntauns." +"69" "DECK OFFICER" "Sir, the temperature's dropping too rapidly." +"70" "HAN" "That's right. And my friends out in it." +"71" "ASSISTANT OFFICER" "I'll cover sector twelve. Have com-control set screen alpha." +"72" "DECK OFFICER" "Your Tauntaun'll freeze before you reach the first marker." +"73" "HAN" "Then I'll see you in hell!" +"74" "THREEPIO" "You must come along now, Artoo. There's really nothing more we can do. And my joints are freezing up." +"75" "THREEPIO" "Don't say thing like that! Of course we'll see Master Luke again. He'll be quite all right, you'll see. Stupid little short-circuit. He'll be quite all right." +"76" "LIEUTENANT" "Sir, all the patrols are in. There's still no contact from Skywalker or Solo." +"77" "THREEPIO" "Mistress Leia, Artoo says he's been quite unable to pick up any signals, although he does admit that his own range is far too weak to abandon all hope." +"78" "DERLIN" "Your Highness, there's nothing more we can do tonight. The shield doors must be closed." +"79" "DERLIN" "Close the doors." +"80" "LIEUTENANT" "Yes, sir." +"81" "THREEPIO" "Artoo says the chances of survival are seven hundred seventy-five...to one." +"82" "THREEPIO" "Actually, Artoo has been known to make mistakes...from time to time. Oh, dear, oh, dear. Don't worry about Master Luke. I'm sure he'll be all right. He's quite clever, you know...for a human being." +"83" "BEN" "Luke...Luke." +"84" "LUKE" "Ben?" +"85" "BEN" "You will go to the Dagobah system." +"86" "LUKE" "Dagobah system?" +"87" "BEN" "There you will learn from Yoda, the Jedi Master who instructed me." +"88" "LUKE" "Ben...Ben." +"89" "HAN" "Luke! Luke! Don't do this, Luke. Come on, give me a sign here." +"90" "HAN" "Not much time." +"91" "LUKE" "Ben...Ben..." +"92" "HAN" "Hang on, kid." +"93" "LUKE" "Dagobah system..." +"94" "HAN" "Whew..." +"95" "LUKE" "Dagobah..." +"96" "HAN" "This may smell bad, kid..." +"97" "LUKE" "Yoda..." +"98" "HAN" "...but it will keep you warm...til I get the shelter built. Ooh...I thought they smelled bad on the outside!" +"99" "ZEV" "Echo Base...I've got something! Not much, but it could be a life form." +"100" "ZEV" "This is Rouge Two. this is Rouge Two. Captain Solo, so you copy? Commander Skywalker, do you copy? This is Rouge Two." +"101" "HAN" "Good morning. Nice of you guys to drop by." +"102" "ZEV" "Echo Base...this is Rouge Two. I found them. Repeat, I found them." +"103" "THREEPIO" "Master Luke, sir, it's good to see you fully functional again." +"104" "THREEPIO" "Artoo expresses his relief, also." +"105" "HAN" "How are you feeling, kid? You don't look so bad to me. In fact, you look strong enough to pull the ears off a Gundark." +"106" "LUKE" "Thanks to you." +"107" "HAN" "That's two you owe me, junior." +"108" "HAN" "Well your Worship, looks like you managed to keep me around for a little while longer." +"109" "LEIA" "I had nothing to do with it. General Rieekan thinks it's dangerous for any ships to leave the system until we've activated the energy shield." +"110" "HAN" "That's a good story. I think you just can't bear to let a gorgeous guy like me out of your sight." +"111" "LEIA" "I don't know where you get you delusions, laser brain." +"112" "HAN" "Laugh it up, fuzz ball. But you didn't see us alone in the south passage." +"113" "HAN" "She expressed her true feelings for me." +"114" "LEIA" "My...! Why, you stuck up,...half-witted,...scruffy-looking... nerf-herder!" +"115" "HAN" "Who's scruffy-looking? I must have hit her pretty close to the mark to get her all riled up like that, huh, kid?" +"116" "LEIA" "Why, I guess you don't know everything about women yet?" +"117" "ANNOUNCER" "Headquarters personnel, report to command center." +"118" "HAN" "Take it easy." +"119" "THREEPIO" "Excuse us, please." +"120" "RIEEKAN" "Princess...we have a visitor." +"121" "RIEEKAN" "We've picked up something outside the base in zone twelve, moving east." +"122" "SENIOR CONTROLLER" "It's metal." +"123" "LEIA" "Then it couldn't be one of those creatures that attacked Luke." +"124" "HAN" "It could be a speeder, one of ours." +"125" "SENIOR CONTROLLER" "No. Wait -- there's something very weak coming through." +"126" "THREEPIO" "Sir, I am fluent in six million forms of communication. This signal is not used by the Alliance. It could be an Imperial code." +"127" "HAN" "It isn't friendly, whatever it is. Come on, Chewie, let's check it out." +"128" "RIEEKAN" "Send Rouges Ten and Eleven to station three-eight." +"129" "HAN" "Afraid there's not much left." +"130" "LEIA" "What was it?" +"131" "HAN" "Droid of some kind. I didn't hit it that hard. It must have had a self-destruct." +"132" "LEIA" "An Imperial probe droid." +"133" "HAN" "It's a good bet the Empire knows we're here." +"134" "RIEEKAN" "We'd better start the evacuation." +"135" "PIETT" "Admiral." +"136" "OZZEL" "Yes, Captain" +"137" "PIETT" "I think we've got something, sir. The report is only a fragment had." +"138" "OZZEL" "We have thousands of probe droids searching the galaxy. I want proof, not leads!" +"139" "PIETT" "The visuals indicate life readings." +"140" "OZZEL" "It could mean anything. If we followed every lead..." +"141" "PIETT" "But, sir, the Hoth system is supposed to be devoid of human forms." +"142" "VADER" "You found something?" +"143" "PIETT" "Yes, my lord." +"144" "VADER" "That's it. The Rebels are there." +"145" "OZZEL" "My lord, there are so many uncharted settlements. It could be smugglers, it could be..." +"146" "VADER" "That is the system. And I'm sure Skywalker is with them. Set your course for the Hoth system. General Veers, prepare you men." +"147" "REBEL CAPTAIN" "Groups seven and ten will stay behind to fly the speeders. As soon as each transport is loaded, evacuation control will give clearance for immediate launch." +"148" "REBEL FIGHTER" "Right, sir." +"149" "HAN" "Okay, that's it. Try it...Off! Turn it off! Turn it off! Off!" +"150" "MEDICAL DROID" "Sir, it will take quite awhile to evacuate the T-forty- sevens." +"151" "LUKE" "Well, forget the heavy equipment. There's plenty of time to get the smaller modules on the transports." +"152" "MEDICAL DROID" "Take care, sir." +"153" "LUKE" "Thanks." +"154" "LUKE" "Chewie, take care of yourself, okay?" +"155" "HAN" "Hi, kid. There's got to be a reason for it. Check it at the other end. Wait a second. You all right?" +"156" "LUKE" "Yeah." +"157" "HAN" "Be careful." +"158" "LUKE" "You, too." +"159" "CONTROLLER" "General, there's a fleet of Star Destroyers coming out of hyperspace in sector four." +"160" "RIEEKAN" "Reroute all power to the energy shield. We've got to hold them till all transports are away. Prepare for ground assault." +"161" "VADER" "What is it, General?" +"162" "VEERS" "My lord, the fleet has moves out of light-speed. Com-Scan has detected an energy field protecting an area around the sixth planet of the Hoth system. The field is strong enough to deflect any bombardment." +"163" "VADER" "The Rebels are alerted to our presence. Admiral Ozzel came out of light-speed too close to the system." +"164" "VEERS" "He felt surprise was wiser..." +"165" "VADER" "He is as clumsy as he is stupid. General, prepare your troops for a surface attack." +"166" "VEERS" "Yes, my lord." +"167" "OZZEL" "Lord Vader, the fleet has moved out of light-speed, and we're preparing to...Aaagh!" +"168" "VADER" "You have failed me for the last time, Admiral. Captain Piett." +"169" "PIETT" "Yes, my lord." +"170" "VADER" "Make ready to land out troops beyond the energy shield and deploy the fleet so that nothing gets off that system. You are in command now, Admiral Piett." +"171" "PIETT" "Thank you, Lord Vader." +"172" "LEIA" "All troop carriers will assemble at the north entrance. The heavy transport ships will leave as soon as they're loaded. Only two fighter escorts per ship. The energy shield can only be opened for a short time, so you'll have to stay very close to your transports." +"173" "HOBBIE" "Two fighters against a Star Destroyer?" +"174" "LEIA" "The ion cannon will fire several shots to make sure that any enemy ships will be out of your flight path. When you've gotten past the energy shield, proceed directly to the rendezvous point. Understood?" +"175" "PILOTS" "Right. Okay." +"176" "LEIA" "Good luck." +"177" "DERLIN" "Okay. Everyone to your stations. Let's go!" +"178" "RIEEKAN" "Their primary target will be the power generators. Prepare to open the shield." +"179" "CONTROLLER" "Sir, Rebel ships are coming into our sector." +"180" "CAPTAIN" "Good. Our first catch of the day." +"181" "WOMAN CONTROLLER" "Stand by, ion control....Fire!" +"182" "ANNOUNCER" "The first transport is away." +"183" "DACK" "Feeling all right, sir?" +"184" "LUKE" "Just like new, Dack. How about you?" +"185" "DACK" "Right now I feel I could take on the whole Empire myself." +"186" "LUKE" "I know what you mean." +"187" "TRENCH OFFICER" "Echo Station Three-T-Eight." +"188" "TRENCH OFFICER" "We have spotted Imperial walkers!" +"189" "CONTROLLER" "Imperial walkers on the north ridge." +"190" "LUKE" "Echo station Five-Seven. We're on our way." +"191" "LUKE" "All right, boys, keep tight now." +"192" "DACK" "Luke, I have no approach vector. I'm not set." +"193" "LUKE" "Steady, Dack. Attack pattern delta. Go now!" +"194" "LUKE" "All right, I'm coming in." +"195" "LUKE" "Hobbie, you still with me?" +"196" "LUKE" "That armor's too strong for blasters." +"197" "LUKE" "Rouge Group, use your harpoons and tow cables. Go for the legs. It might be our only chance of stopping them. All right, stand by, Dack." +"198" "DACK" "Luke, we've got a malfunction in fire control. I'll have to cut in the auxiliary." +"199" "LUKE" "Just hang on. Hang on, Dack. Get ready to fire that tow cable." +"200" "LUKE" "Dack? Dack!" +"201" "VEERS" "Yes, Lord Vader. I've reached the main power generator. The shield will be down in moments. You may start your landing." +"202" "LUKE" "Rouge Three." +"203" "WEDGE" "Copy, Rouge Leader" +"204" "LUKE" "Wedge, I've lost my gunner. You'll have to make this shot. I'll cover for you. Set your harpoon. Follow me on the next pass." +"205" "WEDGE" "Coming around, Rouge Leader." +"206" "LUKE" "Steady, Rouge Two" +"207" "WEDGE" "Activate harpoon." +"208" "WEDGE" "Good shot, Janson." +"209" "WEDGE" "One more pass." +"210" "JANSON" "Coming around. Once more." +"211" "JANSON" "One more." +"212" "JANSON" "Cable out! Let her go!" +"213" "WEDGE" "Detach cable." +"214" "JANSON" "Cable detached." +"215" "TRENCH OFFICER" "Come on!" +"216" "WEDGE" "Whooha!! That got him!" +"217" "LUKE" "I see it, Wedge. Good work." +"218" "RIEEKAN" "I don't think we can protect two transports at a time." +"219" "LEIA" "It's risky, but we can't hold out much longer. We have no choice." +"220" "RIEEKAN" "Launch patrols." +"221" "LEIA" "Evacuate remaining ground staff." +"222" "HAN" "No, no! No! This one goes there, that one goes there. right?" +"223" "THREEPIO" "Artoo, you take good care of Master Luke now, understand? And...do take care of yourself. Oh, dear, oh, dear." +"224" "VEERS" "All troops will debark for ground assault. Prepare to target the main generator." +"225" "LUKE" "Rouge Two, are you all right?" +"226" "ZEV" "Yeah. I'm with you, Rouge Leader." +"227" "LUKE" "We'll set harpoon. I'll cover for you." +"228" "ZEV" "Coming around." +"229" "LUKE" "Watch that cross fire, boys." +"230" "ZEV" "Set for position three. Steady." +"231" "LUKE" "Stay tight and low." +"232" "LUKE" "Hobbie, I've been hit!" +"233" "HAN" "You all right?" +"234" "LEIA" "Why are you still here?" +"235" "HAN" "I heard the command center had been hit." +"236" "LEIA" "You got your clearance to leave." +"237" "HAN" "Don't worry. I'll leave. First I'm going to get you to your ship." +"238" "THREEPIO" "Your Highness, we must take this last transport. It's our only hope." +"239" "LEIA" "Send all troops in sector twelve to the south slope to protect the fighters." +"240" "ANNOUNCER" "Imperial troops have entered the base." +"241" "HAN" "Come on...that's it." +"242" "LEIA" "Give the evacuation code signal. And get to your transports!" +"243" "HEAD CONTROLLER" "K-one-zero...all troops disengage." +"244" "THREEPIO" "Oh! Wait for me!" +"245" "OFFICER" "Begin retreat!" +"246" "SECOND OFFICER" "Fall back!" +"247" "VEERS" "Distance to power generators?" +"248" "PILOT" "One-seven, decimal two-eight." +"249" "VEERS" "Target. Maximum fire power." +"250" "HAN" "Transport, this is Solo. Better take off -- I can't get to you. I'll get the princess out on the Falcon." +"251" "THREEPIO" "But...but...but...where are you going? Uh...come back!!" +"252" "THREEPIO" "Wait! Wait for me! Wait! Stop!" +"253" "THREEPIO" "How typical." +"254" "HAN" "Come on." +"255" "HAN" "Hurry up, goldenrod, or you're going to be a permanent resident!" +"256" "THREEPIO" "Wait! Wait!" +"257" "HAN" "How's this?" +"258" "LEIA" "Would it helped if I got out and pushed?" +"259" "HAN" "It might." +"260" "THREEPIO" "Captain Solo, Captain Solo...sir, might I suggest that you..." +"261" "THREEPIO" "It can wait." +"262" "LEIA" "The bucket of bolts is never going to get us past that blockade." +"263" "HAN" "This baby's got a few surprises left in her, sweetheart." +"264" "HAN" "Come on! Come on! Switch over. Let's hope we don't have a burnout." +"265" "HAN" "See?" +"266" "LEIA" "Someday you're going to be wrong, and I hope I'm there to see it." +"267" "HAN" "Punch it!" +"268" "LUKE" "Artoo! Get her ready for takeoff." +"269" "WEDGE" "Good luck, Luke. See you at the rendezvous." +"270" "LUKE" "Don't worry, Artoo. We're going, we're going." +"271" "LUKE" "There's nothing wrong, Artoo. I'm just setting a new course." +"272" "LUKE" "We're not going to regroup with the others." +"273" "LUKE" "We're going to the Dagobah system." +"274" "LUKE" "Yes, Artoo?" +"275" "LUKE" "That's all right. I'd like to keep it on manual control for a while." +"276" "HAN" "I saw them! I saw them!" +"277" "LEIA" "Saw what?" +"278" "HAN" "Star Destroyers, two of them, coming right at us." +"279" "THREEPIO" "Sir, sir! Might I suggest..." +"280" "HAN" "Shut him up or shut him down! Check the deflector shield!" +"281" "HAN" "Oh, great. Well, we can still outmaneuver them." +"282" "IMPERIAL OFFICER" "Take evasive action!" +"283" "HAN" "Prepare to make the jump to light-speed." +"284" "THREEPIO" "But, sir!" +"285" "LEIA" "They're getting closer!" +"286" "HAN" "Oh yeah? Watch this." +"287" "LEIA" "Watch what?" +"288" "HAN" "I think we're in trouble." +"289" "THREEPIO" "If I may say so, sir, I noticed earlier the hyperdrive motivator has been damaged. It's impossible to go to light-speed!" +"290" "HAN" "We're in trouble!" +"291" "HAN" "Horizontal boosters...!" +"292" "HAN" "Alluvial dampers...! Well that's not it." +"293" "HAN" "Bring me the hydrospanners!" +"294" "HAN" "I don't know how we're going to get out of this one." +"295" "HAN" "Oww! Chewie!" +"296" "HAN" "That was no laser blast! Something hit us." +"297" "LEIA" "Han, get up here!" +"298" "HAN" "Come on, Chewie!" +"299" "LEIA" "Asteroids!" +"300" "HAN" "Oh, no! Chewie, set two-seven-one." +"301" "LEIA" "What are you doing? You're not actually going into an asteroid field?" +"302" "HAN" "They'd be crazy to follow us, wouldn't they?" +"303" "LEIA" "You don't have to do this to impress me." +"304" "THREEPIO" "Sir, the possibility of successfully navigating an asteroid field is approximately three thousand, seven hundred and twenty to one." +"305" "HAN" "Never tell me the odds!" +"306" "HAN" "You said you wanted to be around when I made a mistake; well, this could be it, sweetheart." +"307" "LEIA" "I take it back. We're going to get pulverized if we stay out here much longer." +"308" "HAN" "I'm not going to argue with that." +"309" "THREEPIO" "Pulverized?" +"310" "HAN" "I'm going in closer to one of the big ones." +"311" "LEIA" "Closer?" +"312" "THREEPIO" "Closer?!" +"313" "THREEPIO" "Oh, this is suicide!" +"314" "HAN" "There. That looks pretty good." +"315" "LEIA" "What looks pretty good?" +"316" "HAN" "Yeah. That'll do nicely." +"317" "THREEPIO" "Excuse me, ma'am, but where are we going?" +"318" "LEIA" "I hope you know what you're doing." +"319" "HAN" "Yeah, me too." +"320" "LUKE" "Yes, that's it. Dagobah." +"321" "LUKE" "No, I'm not going to change my mind about this. I'm not picking up any cities or technology. Massive life-form readings, though. There's something alive down there..." +"322" "LUKE" "Yes, I'm sure it's perfectly safe for droids." +"323" "LUKE" "I know, I know! All the scopes are dead. I can't see a thing! Just hang on, I'm going to start the landing cycle..." +"324" "LUKE" "No, Artoo, you stay put. I'll have a look around." +"325" "LUKE" "Artoo?" +"326" "LUKE" "Artoo! Where are you?" +"327" "LUKE" "Artoo! You be more careful." +"328" "LUKE" "Artoo -- that way!" +"329" "LUKE" "Artoo!" +"330" "LUKE" "Oh, no! Are you all right? Come on. You're lucky you don't taste very good. Anything broken?" +"331" "LUKE" "If you're saying coming here was a bad idea, I'm beginning to agree with you. Oh, Artoo, what are we doing here? It's like... something out of a dream, or, I don't know. Maybe I'm just going crazy." +"332" "VADER" "Yes, Admiral?" +"333" "PIETT" "Our ships have sighted the Millennium Falcon, lord. But...it has entered an asteroid field and we cannot risk..." +"334" "VADER" "Asteroids do not concern me, Admiral. I want that ship and not excuses." +"335" "PIETT" "Yes, lord." +"336" "HAN" "I'm going to shut down everything but the emergency power systems." +"337" "THREEPIO" "Sir, I'm almost afraid to ask, but...does that include shutting me down, too?" +"338" "HAN" "No, I need you to talk to the Falcon, find out what's wrong with the hyperdrive." +"339" "THREEPIO" "Sir, it's quite possible this asteroid is not entirely stable." +"340" "HAN" "Not entirely stable? I'm glad you're here to tell us these things. Chewie, take the professor in the back and plug him into the hyperdrive." +"341" "THREEPIO" "Oh! Sometimes I just don't understand human behavior. After all, I'm only trying to do my job in the most..." +"342" "LEIA" "Let go." +"343" "HAN" "Sshh!" +"344" "LEIA" "Let go, please." +"345" "HAN" "Don't get excited." +"346" "LEIA" "Captain, being held by you isn't quite enough to get me excited." +"347" "HAN" "Sorry, sweetheart. We haven't got time for anything else." +"348" "LUKE" "Ready for some power? Okay. Let's see now. Put that in there. There you go." +"349" "LUKE" "Now all I have to do is find this Yoda...if he even exists." +"350" "LUKE" "Still...there's something familiar about this place. I feel like...I don't know..." +"351" "STRANGE VOICE" "Feel like what?" +"352" "LUKE" "Like we're being watched!" +"353" "CREATURE" "Away with your weapon! I mean you no harm." +"354" "CREATURE" "I am wondering, why are you here?" +"355" "LUKE" "I'm looking for someone." +"356" "CREATURE" "Looking? Found someone, you have, I would say, hmmm?" +"357" "LUKE" "Right." +"358" "CREATURE" "Help you I can. Yes, mmmm." +"359" "LUKE" "I don't think so. I'm looking for a great warrior." +"360" "CREATURE" "Ahhh! A great warrior. Wars not make one great." +"361" "LUKE" "Put that down. Hey! That's my dinner." +"362" "CREATURE" "How you get so big, eating food of this kind?" +"363" "LUKE" "Listen, friend, we didn't mean to land in that puddle, and if we could get our ship out, we would, but we can't, so why don't you just..." +"364" "CREATURE" "Aww, cannot get your ship out?" +"365" "LUKE" "Hey, you could have broken this. Don't do that. Ohhh...you're making a mess. Hey, give me that!" +"366" "CREATURE" "Mine! Or I will help you not." +"367" "LUKE" "I don't want your help. I want my lamp back. I'll need it to get out of this slimy mudhole." +"368" "CREATURE" "Mudhole? Slimy? My home this is." +"369" "CREATURE" "Ah, ah, ah!" +"370" "LUKE" "Oh, Artoo, let him have it." +"371" "CREATURE" "Mine! Mine!" +"372" "LUKE" "Artoo!" +"373" "CREATURE" "Mine!" +"374" "CREATURE" "Mine!" +"375" "LUKE" "Now will you move along, little fella? We're got a lot of work to do." +"376" "CREATURE" "No! No, no! Stay and help you, I will. Find your friend, hmm?" +"377" "LUKE" "I'm not looking for a friend, I'm looking for a Jedi Master." +"378" "CREATURE" "Oohhh. Jedi Master. Yoda. You seek Yoda." +"379" "LUKE" "You know him?" +"380" "CREATURE" "Mmm. Take you to him, I will. Yes, yes. But now, we must eat. Come. Good food. Come." +"381" "CREATURE" "Come, come." +"382" "LUKE" "Stay here and watch after the camp, Artoo." +"383" "THREEPIO" "Oh, where is Artoo when I need him?" +"384" "THREEPIO" "Sir, I don't know where your ship learned to communicate, but it has the most peculiar dialect. I believe, sir, it says that the power coupling on the negative axis has been polarized. I'm afraid you'll have to replace it." +"385" "HAN" "Well, of course I'll have to replace it." +"386" "HAN" "Here! And Chewie..." +"387" "HAN" "...I think we'd better replace the negative power coupling." +"388" "HAN" "Hey, Your Worship, I'm only trying to help." +"389" "LEIA" "Would you please stop calling me that?" +"390" "HAN" "Sure, Leia." +"391" "LEIA" "Oh, you make it so difficult sometimes." +"392" "HAN" "I do, I really do. You could be a little nicer, though. Come on, admit it. Sometimes you think I'm all right." +"393" "LEIA" "Occasionally maybe...when you aren't acting like a scoundrel." +"394" "HAN" "Scoundrel? Scoundrel? I like the sound of that." +"395" "LEIA" "Stop that." +"396" "HAN" "Stop what?" +"397" "LEIA" "Stop that! My hands are dirty." +"398" "HAN" "My hands are dirty, too. What are you afraid of?" +"399" "LEIA" "Afraid?" +"400" "HAN" "You're trembling." +"401" "LEIA" "I'm not trembling." +"402" "HAN" "You like me because I'm a scoundrel. There aren't enough scoundrels in your life." +"403" "LEIA" "I happen to like nice men." +"404" "HAN" "I'm a nice man." +"405" "LEIA" "No, you're not. You're..." +"406" "THREEPIO" "Sir, sir! I've isolated the reverse power flux coupling." +"407" "HAN" "Thank you. Thank you very much." +"408" "THREEPIO" "Oh, you're perfectly welcome, sir." +"409" "NEEDA" "...and that, Lord Vader, was the last time they appeared in any of our scopes. Considering the amount of damage we've sustained, they must have been destroyed." +"410" "VADER" "No, Captain, they're alive. I want every ship available to sweep the asteroid field until they are found." +"411" "PIETT" "Lord Vader." +"412" "VADER" "Yes, Admiral, what is it?" +"413" "PIETT" "The Emperor commands you make contact with him." +"414" "VADER" "Move the ship out of the asteroid field so that we can send a clear transmission." +"415" "PIETT" "Yes, my lord." +"416" "VADER" "What is thy bidding, my master?" +"417" "EMPEROR" "There is a great disturbance in the Force." +"418" "VADER" "I have felt it." +"419" "EMPEROR" "We have a new enemy -- Luke Skywalker." +"420" "VADER" "Yes, my master." +"421" "EMPEROR" "He could destroy us." +"422" "VADER" "He's just a boy. Obi-Wan can no longer help him." +"423" "EMPEROR" "The Force is strong with him. The son of Skywalker must not become a Jedi." +"424" "VADER" "If he could be turned, he would become a powerful ally." +"425" "EMPEROR" "Yes. Yes. He would be a great asset. Can it be done?" +"426" "VADER" "He will join us or die, my master." +"427" "LUKE" "Look, I'm sure it's delicious. I just don't understand why we can't see Yoda now." +"428" "CREATURE" "Patience! For the Jedi it is time to eat as well. Eat, eat. Hot. Good food, hm? Good, hmm?" +"429" "LUKE" "How far away is Yoda? Will it take us long to get there?" +"430" "CREATURE" "Not far. Yoda not far. Patience. Soon you will be with him. Rootleaf, I cook. Why wish you become Jedi? Hm?" +"431" "LUKE" "Mostly because of my father, I guess." +"432" "CREATURE" "Ah, your father. Powerful Jedi was he, powerful Jedi, mmm." +"433" "LUKE" "Oh, come on. How could you know my father? You don't even know who I am. Oh, I don't even know what I'm doing here. We're wasting our time." +"434" "CREATURE" "I cannot teach him. The boy has no patience." +"435" "BEN" "He will learn patience." +"436" "YODA" "Hmmm. Much anger in him, like his father." +"437" "BEN" "Was I any different when you taught me?" +"438" "YODA" "Hah. He is not ready." +"439" "LUKE" "Yoda! I am ready. I...Ben! I can be a Jedi. Ben, tell him I'm ready." +"440" "YODA" "Ready, are you? What know you of ready? For eight hundred years have I trained Jedi. My own counsel will I keep on who is to be trained! A Jedi must have the deepest commitment, the most serious mind. This one a long time have I watched. Never his mind on where he was. Hmm? What he was doing. Hmph. Adventure. Heh! Excitement. Heh! A Jedi craves not these things. You are reckless!" +"441" "BEN" "So was I, if you'll remember." +"442" "YODA" "He is too old. Yes, too old to begin the training." +"443" "LUKE" "But I've learned so much." +"444" "YODA" "Will he finished what he begins?" +"445" "LUKE" "I won't fail you -- I'm not afraid." +"446" "YODA" "Oh, you will be. You will be." +"447" "THREEPIO" "Sir, if I may venture an opinion..." +"448" "HAN" "I'm not really interested in your opinion, Threepio." +"449" "LEIA" "There's something out there." +"450" "HAN" "Where?" +"451" "LEIA" "Outside, in the cave." +"452" "THREEPIO" "There it is. Listen! Listen!" +"453" "HAN" "I'm going out there." +"454" "LEIA" "Are you crazy?!" +"455" "HAN" "I just got this bucket back together. I'm not going to let something tear it apart." +"456" "LEIA" "Then I'm going with you." +"457" "THREEPIO" "I think it might be better if I stay here and guard the ship. Oh, no." +"458" "LEIA" "This ground sure feels strange. It doesn't feel like rock at all." +"459" "HAN" "There's an awful lot of moisture in here." +"460" "LEIA" "I don't know. I have a bad feeling about this." +"461" "HAN" "Yeah." +"462" "HAN" "Watch out!" +"463" "HAN" "Yeah, that's what I thought. Mynock. Chewie, check the rest of the ship, make sure there aren't any more attached. They're chewing on the power cables." +"464" "LEIA" "Mynocks?" +"465" "HAN" "Go on inside. We'll clean them off if there are any more." +"466" "THREEPIO" "Ohhh! Go away! Go away! Beastly thing. Shoo! Shoo!" +"467" "HAN" "Wait a minute..." +"468" "HAN" "All right, Chewie, let's get out of here!" +"469" "LEIA" "The Empire is still out there. I don't think it's wise to..." +"470" "HAN" "No time to discuss this as a committee." +"471" "LEIA" "I am not a committee!" +"472" "LEIA" "You can't make the jump to light-speed in this asteroid field..." +"473" "HAN" "Sit down, sweetheart. We're taking off!" +"474" "THREEPIO" "Look!" +"475" "HAN" "I see it, I see it." +"476" "THREEPIO" "We're doomed!" +"477" "LEIA" "The cave is collapsing." +"478" "HAN" "This is no cave." +"479" "LEIA" "What?" +"480" "YODA" "Run! Yes. A Jedi's strength flows from the Force. But beware of the dark side. Anger...fear...aggression. The dark side of the Force are they. Easily they flow, quick to join you in a fight. If once you start down the dark path, forever will it dominate your destiny, consume you it will, as it did Obi-Wan's apprentice." +"481" "LUKE" "Vader. Is the dark side stronger?" +"482" "YODA" "No...no...no. Quicker, easier, more seductive." +"483" "LUKE" "But how am I to know the good side from the bad?" +"484" "YODA" "You will know. When you are calm, at peace. Passive. A Jedi uses the Force for knowledge and defense, never for attack." +"485" "LUKE" "But tell me why I can't..." +"486" "YODA" "No, no, there is no why. Nothing more will I teach you today. Clear your mind of questions. Mmm. Mmmmmm." +"487" "LUKE" "There's something not right here." +"488" "LUKE" "I feel cold, death." +"489" "YODA" "That place...is strong with the dark side of the Force. A domain of evil it is. In you must go." +"490" "LUKE" "What's in there?" +"491" "YODA" "Only what you take with you." +"492" "YODA" "Your weapons...you will not need them." +"493" "PIETT" "Bounty hunters. We don't need that scum." +"494" "FIRST CONTROLLER" "Yes, sir." +"495" "PIETT" "Those Rebels won't escape us." +"496" "SECOND CONTROLLER" "Sir, we have a priority signal from the Star Destroyer Avenger." +"497" "PIETT" "Right." +"498" "VADER" "...there will be a substantial reward for the one who finds the Millennium Falcon. You are free to use any methods necessary, but I want them alive. No disintegrations." +"499" "BOBA FETT" "As you wish." +"500" "PIETT" "Lord Vader! My lord, we have them." +"501" "THREEPIO" "Oh, thank goodness we're coming out of the asteroid field." +"502" "HAN" "Let's get out of here. Ready for light-speed? One...two...three!" +"503" "HAN" "It's not fair!" +"504" "HAN" "The transfer circuits are working. It's not my fault!" +"505" "LEIA" "No light-speed?" +"506" "HAN" "It's not my fault." +"507" "THREEPIO" "Sir, we just lost the main rear deflector shield. One more direct hit on the back quarter and we're done for." +"508" "HAN" "Turn her around." +"509" "HAN" "I said turn her around! I'm going to put all power in the front shield." +"510" "LEIA" "You're going to attack them?!" +"511" "THREEPIO" "Sir, the odds of surviving a direct assault on an Imperial Star Destroyer..." +"512" "LEIA" "Shut up!" +"513" "NEEDA" "They're moving to attack position. Shields up!" +"514" "NEEDA" "Track them,. They may come around for another pass." +"515" "TRACKING OFFICER" "Captain Needa, the ship no longer appears on our scopes." +"516" "NEEDA" "They can't have disappeared. No ship that small has a cloaking device." +"517" "TRACKING OFFICER" "Well, there's no trace of them, sir." +"518" "COMMUNICATIONS OFFICER" "Captain, Lord Vader demands an update on the pursuit." +"519" "NEEDA" "Get a shuttle ready. I shall assume full responsibility for losing them, and apologize to Lord Vader. Meanwhile, continue to scan the area." +"520" "COMMUNICATIONS OFFICER" "Yes, Captain Needa." +"521" "YODA" "Use the Force. Yes..." +"522" "YODA" "Now...the stone. Feel it." +"523" "YODA" "Concentrate!" +"524" "LUKE" "Oh, no. We'll never get it out now." +"525" "YODA" "So certain are you. Always with you it cannot be done. Hear you nothing that I say?" +"526" "LUKE" "Master, moving stones around is one thing. This is totally different." +"527" "YODA" "No! No different! Only different in your mind. You must unlearn what you have learned." +"528" "LUKE" "All right, I'll give it a try." +"529" "YODA" "No! Try not. Do. Or do not. There is no try." +"530" "LUKE" "I can't. It's too big." +"531" "YODA" "Size matters not. Look at me. Judge me by my size, do you? Hm? Mmmm." +"532" "YODA" "And well you should not. For my ally in the Force. And a powerful ally it is. Life creates it, makes it grow. It's energy surrounds us and binds us. Luminous beings are we......not this crude matter. You must feel the Force around you. Here, between you...me...the tree...the rock...everywhere! Yes, even between this land and that ship!" +"533" "LUKE" "You want the impossible." +"534" "LUKE" "I don't...I don't believe it." +"535" "YODA" "That is why you fail." +"536" "VADER" "Apology accepted, Captain Needa." +"537" "PIETT" "Lord Vader, our ships have completed their scan of the area and found nothing. If the Millennium Falcon went into light-speed, it'll be on the other side of the galaxy by now." +"538" "VADER" "Alert all commands. Calculate every possible destination along their last know trajectory." +"539" "PIETT" "Yes, my lord. We'll find them." +"540" "VADER" "Don't fail me again, Admiral." +"541" "PIETT" "Alert all commands. Deploy the fleet." +"542" "THREEPIO" "Captain Solo, this time you have gone too far. No, I will not be quiet, Chewbacca. Why doesn't anyone listen to me?" +"543" "HAN" "The fleet is beginning to break up. Go back and stand by the manual release for the landing claw." +"544" "THREEPIO" "I really don't see how thats going to help. Surrender is a perfectly acceptable alternative in extreme circumstances. The Empire may be gracious enough..." +"545" "HAN" "Thank you." +"546" "LEIA" "What did you have in mind for your next move?" +"547" "HAN" "Well, if they follow standard Imperial procedure, they'll dump their garbage before they go to light-speed, then we just float away." +"548" "LEIA" "With the rest of the garbage. Then what?" +"549" "HAN" "Then we've got to find a safe port somewhere around here. Got any ideas?" +"550" "LEIA" "No. Where are we?" +"551" "HAN" "The Anoat system." +"552" "LEIA" "Anoat system. There's not much there." +"553" "HAN" "No. Well, wait. This is interesting. Lando." +"554" "LEIA" "Lando system?" +"555" "HAN" "Lando's not a system, he's a man. Lando Calrissian. He's a card player, gambler, scoundrel. You'd like him." +"556" "LEIA" "Thanks." +"557" "HAN" "Bespin. It's pretty far, but I think we can make it." +"558" "LEIA" "A mining colony?" +"559" "HAN" "Yeah, a Tibanna gas mine. Lando conned somebody out of it. We go back a long way, Lando and me." +"560" "LEIA" "Can you trust him?" +"561" "HAN" "No. But he has no love for the Empire, I can tell you that." +"562" "HAN" "Here we go, Chewie. Stand by. Detach!" +"563" "LEIA" "You do have your moments. Not many, but you have them." +"564" "YODA" "Concentrate...feel the Force flow. Yes. Good. Calm, yes. Through the Force, things you will see. Other places. The future...the past. Old friends long gone." +"565" "LUKE" "Han! Leia!" +"566" "YODA" "Hmm. Control, control. You must learn control." +"567" "LUKE" "I saw...I saw a city in the clouds." +"568" "YODA" "Mmm. Friends you have there." +"569" "LUKE" "They were in pain." +"570" "YODA" "It is the future you see." +"571" "LUKE" "Future? Will they die?" +"572" "YODA" "Difficult to see. Always in motion is the future." +"573" "LUKE" "I've got to go to them." +"574" "YODA" "Decide you must how to serve them best. If you leave now, help them you could. But you would destroy all for which they have fought and suffered." +"575" "HAN" "No, I don't have a landing permit. I'm trying to reach Lando Calrissian." +"576" "HAN" "Whoa! Wait a minute! Let me explain." +"577" "INTERCOM VOICE" "You will not deviate from your present course." +"578" "THREEPIO" "Rather touchy, aren't they?" +"579" "LEIA" "I thought you knew this person." +"580" "HAN" "Well, that was a long time ago. I'm sure he's forgotten about that." +"581" "INTERCOM VOICE" "Permission granted to land on Platform Three-two-seven." +"582" "HAN" "Thank you." +"583" "HAN" "There's nothing to worry about. We go way back, Lando and me." +"584" "LEIA" "Who's worried?" +"585" "THREEPIO" "Oh. No one to meet us." +"586" "LEIA" "I don't like this." +"587" "HAN" "Well, what would you like?" +"588" "THREEPIO" "Well, they did let us land." +"589" "HAN" "Look, don't worry. Everything's going to be fine. Trust me." +"590" "HAN" "See? My friend. Keep your eyes open, okay?" +"591" "LANDO" "Why, you slimy, double-crossing, no-good swindler! You've got a lot of guts coming here, after what you pulled." +"592" "LANDO" "How you doing, you old pirate? So good to see you! I never thought I'd catch up with you again. Where you been?" +"593" "THREEPIO" "Well, he seems very friendly." +"594" "LEIA" "Yes...very friendly." +"595" "LANDO" "What are you doing here?" +"596" "HAN" "Ahh...repairs. I thought you could help me out." +"597" "LANDO" "What have you done to my ship?" +"598" "HAN" "Your ship? Hey, remember, you lost her to me fair and square." +"599" "LANDO" "Hello. What have we here? Welcome. I'm Lando Calrissian. I'm the administrator of this facility. and who might you be?" +"600" "LEIA" "Leia." +"601" "LANDO" "Welcome, Leia." +"602" "HAN" "All right, all right, you old smoothie." +"603" "THREEPIO" "Hello, sir. I am See-Threepio, human-cyborg relations. My facilities are at your..." +"604" "THREEPIO" "Well, really!" +"605" "LANDO" "What's wrong with the Falcon?" +"606" "HAN" "Hyperdrive." +"607" "LANDO" "I'll get my people to work on it." +"608" "HAN" "Good." +"609" "LANDO" "You know, that ship saved my life quite a few times. She's the fastest hunk of junk in the galaxy." +"610" "HAN" "How's the gas mine? Is it paying off for you?" +"611" "LANDO" "Oh, not as well as I'd like. We're a small outpost and not very self-sufficient. And I've had supply problems of every kind. I've had labor difficulties... What's so funny?" +"612" "HAN" "You. Listen to you -- you sound like a businessman, a responsible leader. Who'd have thought that, huh?" +"613" "LANDO" "You know, seeing you sure brings back a few things." +"614" "HAN" "Yeah." +"615" "LANDO" "Yeah, I'm responsible these days. It's the price you pay for being successful." +"616" "THREEPIO" "Oh! Nice to see a familiar face." +"617" "SECOND THREEPIO" "E chu ta!" +"618" "THREEPIO" "How rude!" +"619" "THREEPIO" "That sounds like an R2 unit in there. I wonder if..." +"620" "THREEPIO" "Hello? How interesting. Oh, my." +"621" "MAN" "Who are you?" +"622" "THREEPIO" "Oh, I'm terribly sorry. I...I didn't mean to intrude. No, no, please don't get up. No!" +"623" "YODA" "Luke! You must complete the training." +"624" "LUKE" "I can't keep the vision out of my head. They're my friends. I've got to help them." +"625" "YODA" "You must not go!" +"626" "LUKE" "But Han and Leia will die if I don't." +"627" "BEN" "You don't know that." +"628" "BEN" "Even Yoda cannot see their fate." +"629" "LUKE" "But I can help them! I feel the Force!" +"630" "BEN" "But you cannot control it. This is a dangerous time for you, when you will be tempted by the dark side of the Force." +"631" "YODA" "Yes, yes. To Obi-Wan you listen. The cave. Remember your failure at the cave!" +"632" "LUKE" "But I've learned so much since then. Master Yoda, I promise to return and finish what I've begun. You have my word." +"633" "BEN" "It is you and your abilities the Emperor wants. that is why your friends are made to suffer." +"634" "LUKE" "And that is why I have to go." +"635" "BEN" "Luke, I don't want to lose you to the Emperor the way I lost Vader." +"636" "LUKE" "You won't." +"637" "YODA" "Stopped they must be. On this depends. Only a fully trained Jedi Knight with the Force as his ally will conquer Vader and his Emperor. If you end your training now, if you choose the quick and easy path, as Vader did, you will become an agent of evil." +"638" "BEN" "Patience." +"639" "LUKE" "And sacrifice Han and Leia?" +"640" "YODA" "If you honor what they fight for...yes!" +"641" "BEN" "If you choose to face Vader, you will do it alone. I cannot interfere." +"642" "LUKE" "I understand. Artoo, fire up the converters." +"643" "BEN" "Luke, don't give in to hate -- that leads to the dark side." +"644" "YODA" "Strong is Vader. Mind what you have learned. Save you it can." +"645" "LUKE" "I will. And I'll return. I promise." +"646" "YODA" "Told you, I did. Reckless is he. Now matters are worse." +"647" "BEN" "That boy is our last hope." +"648" "YODA" "No. There is another." +"649" "HAN" "The ship is almost finished. Two or Three more things and we're in great shape." +"650" "LEIA" "The sooner the better. Something's wrong here. No one has seen or knows anything about Threepio. He's been gone too long to have gotten lost." +"651" "HAN" "Relax. I'll talk to Lando and see what I can find out." +"652" "LEIA" "I don't trust Lando." +"653" "HAN" "Well, I don't trust him, either. But he is my friend. Besides, we'll soon be gone." +"654" "LEIA" "And then you're as good as gone, aren't you?" +"655" "LEIA" "What happened?" +"656" "HAN" "Where? Found him in a junk pile?" +"657" "LEIA" "Oh, what a mess. Chewie, do you think you can repair him?" +"658" "HAN" "Lando's got people who can fix him." +"659" "LEIA" "No, thanks." +"660" "LANDO" "I'm sorry. Am I interrupting anything?" +"661" "LEIA" "Not really." +"662" "LANDO" "You look absolutely beautiful. You truly belong here with us among the clouds." +"663" "LEIA" "Thank you." +"664" "LANDO" "Will you join me for a little refreshment?" +"665" "LANDO" "Everyone's invited, of course." +"666" "LANDO" "Having trouble with you droid?" +"667" "HAN" "No. No problem. Why?" +"668" "LANDO" "So you see, since we're a small operation, we don't fall into the...uh...jurisdiction of the Empire." +"669" "LEIA" "So you're part of the mining guild then?" +"670" "LANDO" "No, not actually. Our operation is small enough not to be noticed...which is advantageous for everybody since our customers are anxious to avoid attracting attention to themselves." +"671" "HAN" "Aren't you afraid the Empire's going to find out about this little operation and shut you down?" +"672" "LANDO" "That's always been a danger looming like a shadow over everything we've built here. But things have developed that will insure security. I've just made a deal that will keep the Empire out of here forever." +"673" "VADER" "We would be honored if you would join us." +"674" "LANDO" "I had no choice. They arrived right before you did. I'm sorry." +"675" "HAN" "I'm sorry, too." +"676" "LUKE" "No, Threepio's with them." +"677" "LUKE" "Just hang on. We're almost there." +"678" "THREEPIO" "Mmmm. Oh, my. Uh, I, uh -- Take this off! I, uh, don't mean to intrude here. I, don't, no, no, no...Please don't get up. No!" +"679" "THREEPIO" "Stormtroopers? Here? We're in danger. I must tell the others. Oh, no! I've been shot!" +"680" "LANDO" "Lord Vader." +"681" "VADER" "You may take Captain Solo to Jabba the Hut after I have Skywalker." +"682" "BOBA FETT" "He's no good to me dead." +"683" "VADER" "He will not be permanently damaged." +"684" "LANDO" "Lord Vader, what about Leia and the Wookiee?" +"685" "VADER" "They must never again leave this city." +"686" "LANDO" "That was never a condition of our agreement, nor was giving Han to this bounty hunter!" +"687" "VADER" "Perhaps you think you're being treated unfairly." +"688" "LANDO" "No." +"689" "VADER" "Good. It would be unfortunate if I had to leave a garrison here." +"690" "LANDO" "This deal's getting worse all the time." +"691" "THREEPIO" "Oh, yes, that's very good. I like that. Oh! Something's not right because now I can't see. Wait. Wait! Oh, my! what have you done? I'm backwards, you stupid furball. Only an overgrown mophead like you would be stupid enough..." +"692" "HAN" "I feel terrible." +"693" "LEIA" "Why are they doing this?" +"694" "HAN" "They never even asked me any questions." +"695" "LEIA" "Lando." +"696" "HAN" "Get out of here, Lando!" +"697" "LANDO" "Shut up and listen! Vader has agreed to turn Leia and Chewie over to me." +"698" "HAN" "Over to you?" +"699" "LANDO" "They'll have to stay here, but at least they'll be safe." +"700" "LEIA" "What about Han?" +"701" "LANDO" "Vader's giving him to the bounty hunter." +"702" "LEIA" "Vader wants us all dead." +"703" "LANDO" "He doesn't want you at all. He's after somebody called Skywalker." +"704" "HAN" "Luke?" +"705" "LANDO" "Lord Vader has set a trap for him." +"706" "LEIA" "And we're the bait." +"707" "LANDO" "Well, he's on his way." +"708" "HAN" "Perfect. You fixed us all pretty good, didn't you? My friend!" +"709" "LANDO" "Stop! I've done all I can do. I'm sorry I couldn't do better, but I have my own problems." +"710" "HAN" "Yeah, you're a real hero." +"711" "LEIA" "You certainly have a way with people." +"712" "VADER" "This facility is crude, but it should be adequate to freeze Skywalker for his journey to the Emperor." +"713" "IMPERIAL SOLDIER" "Lord Vader, ship approaching. X-wing class." +"714" "VADER" "Good. Monitor Skywalker and allow him to land." +"715" "LANDO" "Lord Vader, we only use this facility for carbon freezing. If you put him in there, it might kill him." +"716" "VADER" "I do not want the Emperor's prize damaged. We will test it...on Captain Solo." +"717" "THREEPIO" "If only you had attached my legs, I wouldn't be in this ridiculous position. Now, remember, Chewbacca, you have a responsibility to me, so don't do anything foolish." +"718" "HAN" "What's going on...buddy?" +"719" "LANDO" "You're being put into carbon freeze." +"720" "BOBA FETT" "What if he doesn't survive? He's worth a lot to me." +"721" "VADER" "The Empire will compensate you if he dies. Put him in!" +"722" "THREEPIO" "Oh, no! No, no, no! Stop, Chewbacca, stop...!" +"723" "HAN" "Stop, Chewie, stop! Do you hear me? Stop!" +"724" "THREEPIO" "Yes, stop, please! I'm not ready to die." +"725" "HAN" "Chewie! Chewie, this won't help me. Hey!" +"726" "HAN" "Save your strength. There'll be another time. The princess -- you have to take care of her. You hear me?" +"727" "LEIA" "I love you!" +"728" "HAN" "I know." +"729" "THREEPIO" "What...what's going on? Turn around, Chewbacca, I can't see. Oh...they've encased him in carbonite. He should be quite well-protected -- if he survives the freezing process, that is." +"730" "VADER" "Well, Calrissian, did he survive?" +"731" "LANDO" "Yes, he's alive. And in perfect hibernation." +"732" "VADER" "He's all yours bounty hunter. Reset the chamber for Skywalker." +"733" "IMPERIAL OFFICER" "Skywalker has just landed, my lord." +"734" "VADER" "Good. See to it that he finds his way here. Calrissian, take the princess and the Wookiee to my ship." +"735" "LANDO" "You said they'd be left in the city under my supervision." +"736" "VADER" "I am altering the deal. Pray I don't alter it any further." +"737" "LEIA" "Luke! Luke, don't -- it's a trap! It's a trap!" +"738" "VADER" "The Force is with you, young Skywalker. But you are not a Jedi yet." +"739" "LANDO" "Well done. Hold them in the security tower -- and keep it quiet. Move." +"740" "LEIA" "What do you think you're doing?" +"741" "LANDO" "We're getting out of here." +"742" "THREEPIO" "I knew all along it had to be a mistake." +"743" "LEIA" "Do you think that after what you did to Han we're going to trust you?" +"744" "LANDO" "I had no choice..." +"745" "THREEPIO" "What are you doing? Trust him, trust him!" +"746" "LEIA" "Oh, so we understand, don't we, Chewie? He had no choice." +"747" "LANDO" "I'm just trying to help..." +"748" "LEIA" "We don't need any of your help." +"749" "LANDO" "H-a-a-a..." +"750" "LEIA" "What?" +"751" "THREEPIO" "It sounds like Han." +"752" "LANDO" "There's still a chance to save Han...I mean, at the East Platform..." +"753" "LEIA" "Chewie." +"754" "THREEPIO" "I'm terribly sorry about all this. After all, he's only a Wookiee." +"755" "BOBA FETT" "Put Captain Solo in the cargo hold." +"756" "THREEPIO" "Artoo! Artoo! Where have you been?" +"757" "THREEPIO" "Turn around, you wooly...! Hurry, hurry! We're trying to save Han from the bounty hunter!" +"758" "THREEPIO" "Well, at least your still in one piece! Look what happened to me!" +"759" "THREEPIO" "Oh, no! Chewie, they're behind you!" +"760" "VADER" "You have learned much, young one." +"761" "LUKE" "You'll find I'm full of surprises." +"762" "VADER" "Your destiny lies with me, Skywalker. Obi-Wan knew this to be true." +"763" "LUKE" "No!" +"764" "VADER" "All to easy. Perhaps you are not as strong as the Emperor thought." +"765" "VADER" "Impressive...most impressive." +"766" "VADER" "Obi-Wan has taught you well. You have controlled your fear... now release your anger." +"767" "VADER" "Only your hatred can destroy me." +"768" "LANDO" "The security codes has been changed!" +"769" "THREEPIO" "Artoo, you can tell the computer to override the security system." +"770" "LANDO" "Attention! This is Lando Calrissian. The Empire has takes control of the city. I advise everyone to leave before more Imperial troops arrive." +"771" "LANDO" "This way." +"772" "THREEPIO" "Don't blame me. I'm an interpreter. I'm not supposed to know a power socket from a computer terminal." +"773" "THREEPIO" "What are you talking about? We're not interested in the hyperdrive on the Millennium Falcon. It's fixed! Just open the door, you stupid lump." +"774" "THREEPIO" "I never doubted you for a second. Wonderful!" +"775" "THREEPIO" "Ouch! Oh! Ah! That hurt, Bend down, you thoughtless...Ow!" +"776" "LANDO" "Leia! Go!" +"777" "THREEPIO" "I thought that hairy beast would be the end of me. Of course, I've looked better." +"778" "VADER" "You are beaten. It is useless to resist. Don't let yourself be destroyed as Obi-Wan did." +"779" "VADER" "There is no escape. Don't make me destroy you. You do not yet realize your importance. You have only begun to discover you power. Join me and I will complete your training. With our combined strength, we can end this destructive conflict and bring order to the galaxy." +"780" "LUKE" "I'll never join you!" +"781" "VADER" "If you only knew the power of the dark side. Obi-Wan never told you what happened to your father." +"782" "LUKE" "He told me enough! He told me you killed him." +"783" "VADER" "No. I am your father." +"784" "LUKE" "No. No. That's not true! That's impossible!" +"785" "VADER" "Search your feelings. You know it to be true." +"786" "LUKE" "No! No! No!" +"787" "VADER" "Luke. You can destroy the Emperor. He has foreseen this. It is your destiny. Join me, and we can rule the galaxy as father and son. Come with me. It's the only way." +"788" "LUKE" "Ben...Ben, please!" +"789" "LUKE" "Ben. Leia!" +"790" "LUKE" "Hear me! Leia!" +"791" "LEIA" "Luke...We've got to go back." +"792" "LANDO" "What?" +"793" "LEIA" "I know where Luke is." +"794" "LANDO" "But what about those fighter?" +"795" "LEIA" "Chewie, just do it." +"796" "LANDO" "But what about Vader?" +"797" "LANDO" "All right, all right, all right." +"798" "VADER" "Bring my shuttle." +"799" "LANDO" "Look, someone's up there." +"800" "LEIA" "It's Luke. Chewie, slow down. Slow down and we'll get under him. Lando, open the top hatch." +"801" "LEIA" "Okay. Easy, Chewie." +"802" "LEIA" "Lando?" +"803" "LANDO" "Okay, let's go." +"804" "LUKE" "Oh, Leia." +"805" "LANDO" "All right, Chewie. Let's go." +"806" "LEIA" "I'll be back." +"807" "LEIA" "Star Destroyer." +"808" "LANDO" "All right, Chewie. Ready for light-speed." +"809" "LEIA" "If your people fixed the hyperdrive." +"810" "LEIA" "All the coordinates are set. It's now or never." +"811" "LANDO" "Punch it!" +"812" "LANDO" "They told me they fixed it. I trusted them to fix it. It's not my fault!" +"813" "PIETT" "They'll be in range of our tractor beam in moments, lord." +"814" "VADER" "Did your men deactivate the hyperdrive on the Millennium Falcon?" +"815" "PIETT" "Yes, my lord." +"816" "VADER" "Good. Prepare the boarding party and set for your weapons for stun." +"817" "PIETT" "Yes, my lord." +"818" "THREEPIO" "Noisy brute. Why don't we just go into light-speed?" +"819" "THREEPIO" "We can't? How would you know the hyperdrive is deactivated?" +"820" "THREEPIO" "The city's central computer told you? Artoo-Detoo, you know better than to trust a strange computer. Ouch! Pay attention to what you're doing!" +"821" "VADER" "Luke." +"822" "LUKE" "Father." +"823" "VADER" "Son, come with me." +"824" "LUKE" "Ben, why didn't you tell me?" +"825" "LANDO" "Chewie!" +"826" "LUKE" "It's Vader." +"827" "VADER" "Luke...it is your destiny." +"828" "LUKE" "Ben, why didn't you tell me?" +"829" "PIETT" "Alert all commands. Ready for the tractor beam." +"830" "THREEPIO" "Artoo, come back at once! You haven't finished with me yet! You don't know how to fix the hyperdrive. Chewbacca can do it. I'm standing here in pieces, and you're having delusions of grandeur!" +"831" "THREEPIO" "Oh, you did it!" +"832" "LANDO" "Luke, we're ready for takeoff." +"833" "LUKE" "Good luck, Lando" +"834" "LANDO" "When we find Jabba the Hut and that bounty hunter, we'll contact you." +"835" "LUKE" "I'll meet you at the rendezvous point on Tatooine." +"836" "LANDO" "Princess, we'll find Han. I promise." +"837" "LUKE" "Chewie, I'll be waiting for your signal." +"838" "LUKE" "Take care, you two. May the Force be with you." +"839" "LUKE" "Ow!" diff --git a/Text_files/SW_EpisodeVI.txt b/Text_files/SW_EpisodeVI.txt new file mode 100644 index 0000000..e4339a5 --- /dev/null +++ b/Text_files/SW_EpisodeVI.txt @@ -0,0 +1,675 @@ +"character" "dialogue" +"1" "SHUTTLE CAPTAIN" "Command station, this is ST 321. Code Clearance Blue. We're starting our approach. Deactivate the security shield." +"2" "DEATH STAR CONTROLLER" "The security deflector shield will be deactivated when we have confirmation of your code transmission. Stand by... You are clear to proceed." +"3" "SHUTTLE CAPTAIN" "We're starting our approach." +"4" "OFFICER" "Inform the commander that Lord Vader's shuttle has arrived." +"5" "OPERATOR" "Yes, sir." +"6" "JERJERROD" "Lord Vader, this is an unexpected pleasure. We're honored by your presence." +"7" "VADER" "You may dispense with the pleasantries, Commander. I'm here to put you back on schedule." +"8" "JERJERROD" "I assure you, Lord Vader, my men are working as fast as they can." +"9" "VADER" "Perhaps I can find new ways to motivate them." +"10" "JERJERROD" "I tell you, this station will be operational as planned." +"11" "VADER" "The Emperor does not share your optimistic appraisal of the situation." +"12" "JERJERROD" "But he asks the impossible. I need more men." +"13" "VADER" "Then perhaps you can tell him when he arrives." +"14" "JERJERROD" "The Emperor's coming here?" +"15" "VADER" "That is correct, Commander. And he is most displeased with your apparent lack of progress." +"16" "JERJERROD" "We shall double our efforts." +"17" "VADER" "I hope so, Commander, for your sake. The Emperor is not as forgiving as I am." +"18" "THREEPIO" "Of course I'm worried. And you should be, too. Lando Calrissian and poor Chewbacca never returned from this awful place." +"19" "THREEPIO" "Don't be so sure. If I told you half the things I've heard about this Jabba the Hutt, You'd probably short-circuit." +"20" "THREEPIO" "Artoo, are you sure this is the right place? I better knock, I suppose." +"21" "THREEPIO" "There doesn't seem to be anyone there. Let's go back and tell Master Luke." +"22" "STRANGE VOICE" "Tee chuta hhat yudd!" +"23" "THREEPIO" "Goodness gracious me!" +"24" "THREEPIO" "Artoo Detoowha bo Seethreepiowha ey toota odd mischka Jabba du Hutt." +"25" "THREEPIO" "I don't think they're going to let us in, Artoo. We'd better go." +"26" "THREEPIO" "Artoo, wait. Oh, dear! Artoo. Artoo, I really don't think we should rush into all this." +"27" "THREEPIO" "Oh, Artoo! Artoo, wait for me!" +"28" "THREEPIO" "Just you deliver Master Luke's message and get us out of here. Oh my! Oh! Oh, no." +"29" "BIB" "Die Wanna Wanga!" +"30" "THREEPIO" "Oh, my! Die Wanna Wauaga. We -- we bring a message to your master, Jabba the Hutt." +"31" "THREEPIO" "... and a gift. Gift, what gift?" +"32" "BIB" "Nee Jabba no badda. Me chaade su goodie." +"33" "THREEPIO" "He says that our instructions are to give it only to Jabba himself." +"34" "THREEPIO" "I'm terribly sorry. I'm afraid he's ever so stubborn about these sort of things." +"35" "BIB" "Nudd Chaa." +"36" "THREEPIO" "Artoo, I have a bad feeling about this." +"37" "THREEPIO" "Good morning." +"38" "JABBA" "Bo Shuda!" +"39" "THREEPIO" "The message, Artoo, the message." +"40" "LUKE" "Greetings, Exalted One. Allow me to introduce myself. I am Luke Skywalker, Jedi Knight and friend to Captain Solo. I know that you are powerful, mighty Jabba, and that your anger with Solo must be equally powerful. I seek an audience with Your Greatness to bargain for Solo's life. With your wisdom, I'm sure that we can work out an arrangement which will be mutually beneficial and enable us to avoid any unpleasant confrontation. As a token of my goodwill, I present to you a gift: these two droids." +"41" "THREEPIO" "What did he say?" +"42" "LUKE" "... Both are hardworking and will serve you well." +"43" "THREEPIO" "This can't be! Artoo, you're playing the wrong message." +"44" "JABBA" "There will be no bargain." +"45" "THREEPIO" "We're doomed." +"46" "JABBA" "I will not give up my favorite decoration. I like Captain Solo where he is." +"47" "THREEPIO" "Artoo, look! Captain Solo. And he's still frozen in carbonite." +"48" "THREEPIO" "What could possibly have come over Master Luke. Is it something I did? He never expressed any unhappiness with my work. Oh! Oh! Hold it! Ohh!" +"49" "NINEDENINE" "Ah, good. New acquisitions. You are a protocol droid, are you not?" +"50" "THREEPIO" "I am See-Threepio, human-cy..." +"51" "NINEDENINE" "Yes or no will do." +"52" "THREEPIO" "Oh. Well, yes." +"53" "NINEDENINE" "How many languages do you speak?" +"54" "THREEPIO" "I am fluent in over six million forms of communication, and can readily..." +"55" "NINEDENINE" "Splendid! We have been without an interpreter since our master got angry with our last protocol droid and disintegrated him." +"56" "THREEPIO" "Disintegrated?" +"57" "NINEDENINE" "Guard! This protocol droid might be useful. Fit him with a restraining bolt and take him back to His Excellency's main audience chamber." +"58" "THREEPIO" "Artoo, don't leave me! Ohhh!" +"59" "NINEDENINE" "You're a feisty little one, but you'll soon learn some respect. I have need for you on the master's Sail Barge. And I think you'll fit in nicely." +"60" "JABBA" "Da Eitha!" +"61" "OOLA" "Na Chuba negatorie Na! Na! Natoota..." +"62" "JABBA" "Boscka!" +"63" "BOUSHH" "I have come for the bounty on this Wookiee." +"64" "THREEPIO" "Oh, no! Chewbacca!" +"65" "JABBA" "At last we have the mighty Chewbacca." +"66" "THREEPIO" "Oh, uh, yes, uh, I am here, Your Worshipfulness. Uh... yes!" +"67" "THREEPIO" "Oh. The illustrious Jabba bids you welcome and will gladly pay you the reward of twenty- five thousand." +"68" "BOUSHH" "I want fifty thousand. No less." +"69" "THREEPIO" "Uh, oh... but what, what did I say? Uh, the mighty Jabba asks why he must pay fifty thousand." +"70" "THREEPIO" "Because he's holding a thermal detonator." +"71" "JABBA" "This bounty hunter is my kind of scum. Fearless and inventive." +"72" "THREEPIO" "Jabba offers the sum of thirty-five. And I suggest you take it." +"73" "BOUSHH" "Zeebuss." +"74" "THREEPIO" "He agrees!" +"75" "BOUSHH" "Just relax for a moment. You're free of the carbonite." +"76" "BOUSHH" "Shhh. You have hibernation sickness." +"77" "HAN" "I can't see." +"78" "BOUSHH" "You eyesight will return in time." +"79" "HAN" "Where am I?" +"80" "BOUSHH" "Jabba's palace." +"81" "HAN" "Who are you?" +"82" "LEIA" "Someone who loves you." +"83" "HAN" "Leia!" +"84" "LEIA" "I gotta get you out of here." +"85" "HAN" "What's that? I know that laugh." +"86" "HAN" "Hey, Jabba. Look, Jabba, I was just on my way to pay you back, but I got a little sidetracked. It's not my fault." +"87" "JABBA" "It's too late for that, Solo. You may have been a good smuggler, but now you're Bantha fodder." +"88" "HAN" "Look..." +"89" "JABBA" "Take him away!" +"90" "HAN" "Jabba... I'll pay you triple! You're throwing away a fortune here. Don't be a fool!" +"91" "JABBA" "Bring her to me." +"92" "LEIA" "We have powerful friends. You're gonna regret this..." +"93" "JABBA" "I'm sure." +"94" "LEIA" "Ugh!" +"95" "THREEPIO" "Ohhh, I can't bear to watch." +"96" "HAN" "Chewie? Chewie, is that you?" +"97" "HAN" "Ah! Chew--Chewie!" +"98" "HAN" "Wait. I can't see, pal. What's goin' on?" +"99" "HAN" "Luke? Luke's crazy. He can't even take care of himself, much less rescue anybody." +"100" "HAN" "A...Jedi Knight? I--I'm out of it for a little while, everybody gets delusions of grandeur." +"101" "HAN" "I'm all right, pal. I'm all right." +"102" "LUKE" "I must speak with Jabba." +"103" "LUKE" "You will take me to Jabba now!" +"104" "LUKE" "You serve your master well." +"105" "LUKE" "And you will be rewarded." +"106" "THREEPIO" "At last! Master Luke's come to rescue me." +"107" "BIB" "Master." +"108" "BIB" "...Luke Skywalker, Jedi Knight." +"109" "JABBA" "I told you not to admit him." +"110" "LUKE" "I must be allowed to speak." +"111" "BIB" "He must be allowed to speak." +"112" "JABBA" "You weak-minded fool! He's using an old Jedi mind trick." +"113" "LUKE" "You will bring Captain Solo and the Wookiee to me." +"114" "JABBA" "Your mind powers will not work on me, boy." +"115" "LUKE" "Nevertheless, I'm taking Captain Solo and his friends. You can either profit by this... or be destroyed! It's your choice. But I warn you not to underestimate my powers." +"116" "THREEPIO" "Master Luke, you're standing on..." +"117" "JABBA" "There will be no bargain, young Jedi. I shall enjoy watching you die." +"118" "JABBA" "Bascka!" +"119" "THREEPIO" "Oh, no! The Rancor!" +"120" "JABBA" "Bring me Solo and the Wookiee. They will all suffer for this outrage." +"121" "LUKE" "Han!" +"122" "HAN" "Luke!" +"123" "LUKE" "Are you all right?" +"124" "HAN" "Fine. Together again, huh?" +"125" "LUKE" "Wouldn't miss it." +"126" "HAN" "How are we doing?" +"127" "LUKE" "The same as always." +"128" "HAN" "That bad, huh? Where's Leia?" +"129" "LEIA" "I'm here." +"130" "THREEPIO" "Oh, dear. His High Exaltedness, the great Jabba the Hutt, has decreed that you are to be terminated immediately." +"131" "HAN" "Good, I hate long waits." +"132" "THREEPIO" "You will therefore be taken to the Dune Sea and cast into the pit of Carkoon, the nesting place of the all-powerful Sarlacc." +"133" "HAN" "Doesn't sound so bad." +"134" "THREEPIO" "In his belly, you will find a new definition of pain and suffering, as you are slowly digested over a thousand years." +"135" "HAN" "On second thought, let's pass on that, huh?" +"136" "LUKE" "You should have bargained, Jabba. That's the last mistake you'll ever make." +"137" "HAN" "I think my eyes are getting better. Instead of a big dark blur, I see a big light blur." +"138" "LUKE" "There's nothing to see. I used to live here, you know." +"139" "HAN" "You're gonna die here, you know. Convenient." +"140" "LUKE" "Just stick close to Chewie and Lando. I've taken care of everything." +"141" "HAN" "Oh... great!" +"142" "JABBA" "Soon you will learn to appreciate me." +"143" "THREEPIO" "Oh, I'm terribly sor... Artoo! What are you doing here?" +"144" "THREEPIO" "Well, I can see you're serving drinks, but this place is dangerous. They're going to execute Master Luke and, if we're not careful, us too!" +"145" "THREEPIO" "Hmm. I wish I had your confidence." +"146" "THREEPIO" "Victims of the almighty Sarlacc: His Excellency hopes that you will die honorably. But should any of you wish to beg for mercy, the great Jabba the Hutt will now listen to your pleas." +"147" "HAN" "Threepio, you tell that slimy piece of... worm-ridden filth he'll get no such pleasure from us. Right?" +"148" "LUKE" "Jabba! This is your last chance. Free us or die." +"149" "JABBA" "Move him into position." +"150" "JABBA" "Put him in." +"151" "LUKE" "Easy, Chewie." +"152" "LANDO" "Whoa! Whoa! Help!" +"153" "HAN" "Chewie, you okay? Where is he?" +"154" "HAN" "I'm okay, pal." +"155" "LANDO" "Han! Chewie?" +"156" "HAN" "Lando!" +"157" "HAN" "Boba Fett?! Boba Fett?! Where?" +"158" "HAN" "Lando, grab it!" +"159" "LANDO" "Lower it!" +"160" "HAN" "I'm trying!" +"161" "HAN" "Whoa! Whoa! Grab me, Chewie! I'm slipping." +"162" "HAN" "Grab it! L--Lando. Grab!" +"163" "HAN" "Grab it! Almost... You almost got it!" +"164" "LANDO" "Hold it! Whoa!" +"165" "HAN" "Gently now. All... all right. Now easy, easy. Hold me, Chewie." +"166" "HAN" "Chewie! Chewie, give me the gun. Don't move, Lando." +"167" "LANDO" "No, wait! I thought you were blind!" +"168" "HAN" "It's all right. Trust me. Don't move." +"169" "LANDO" "All right! A little higher! Just a little higher!" +"170" "HAN" "Chewie, Pull us up! Come on! Okay... up, Chewie, up!" +"171" "LEIA" "Come on. We gotta get out of here quick." +"172" "THREEPIO" "Not my eyes! Artoo, help! Quickly, Artoo. Oh! Ohhh! You beast!" +"173" "LUKE" "Get the gun! Point it at the deck!" +"174" "LUKE" "Point it at the deck!" +"175" "THREEPIO" "Artoo, where are we going? I couldn't possibly jump." +"176" "LUKE" "Come on!" +"177" "LUKE" "Let's go! And don't forget the droids." +"178" "LANDO" "We're on our way." +"179" "HAN" "I don't know. All I can see is a lot of blowing sand!" +"180" "LEIA" "That's all any of us can see." +"181" "HAN" "Then I guess I'm getting better." +"182" "HAN" "I've got to hand it to you, kid, you were pretty good out there." +"183" "LUKE" "I had a lot of help. Think nothing of it." +"184" "HAN" "No, I'm thinking a lot about it. That carbon freeze was the closest thing to dead there is. And it wasn't just sleepin'. It was a big wide awake nothing!" +"185" "LUKE" "I'll see you back at the fleet." +"186" "HAN" "Why don't you leave that crate and come with us?" +"187" "LUKE" "I have a promise I have to keep first... to an old friend." +"188" "HAN" "Guess I owe you some thanks, too, Lando." +"189" "LANDO" "Figured if I left you frozen like that you'd just give me bad luck the rest of my life, so I might as well get you unfrozen sooner or later." +"190" "LEIA" "He means \"You're welcome.\"" +"191" "LANDO" "Come on, let's get off this miserable dust ball." +"192" "LUKE" "I'll meet you back at the fleet." +"193" "LEIA" "Hurry. The Alliance should be assembled by now." +"194" "LUKE" "I will." +"195" "HAN" "Hey, Luke, thanks. Thanks for comin' after me. Now I owe you one." +"196" "LUKE" "That's right, Artoo. We're going to the Dagobah system. I have a promise to keep... to an old friend." +"197" "EMPEROR" "Rise, my friend." +"198" "VADER" "The Death Star will be completed on schedule." +"199" "EMPEROR" "You have done well, Lord Vader. And now I sense you wish to continue your search for young Skywalker." +"200" "VADER" "Yes, my Master." +"201" "EMPEROR" "Patience, my friend. In time he will seek you out. And when he does, you must bring him before me. He has grown strong. Only together can we turn him to the dark side of the Force." +"202" "VADER" "As you wish." +"203" "EMPEROR" "Everything is proceeding as I have foreseen." +"204" "YODA" "Hmm. That face you make. Look I so old to young eyes?" +"205" "LUKE" "No... of course not." +"206" "YODA" "I do, yes, I do! Sick have I become. Old and weak. When nine hundred years old you reach, look as good you will not. Hmm?" +"207" "YODA" "Soon will I rest. Yes, forever sleep. Earned it, I have." +"208" "LUKE" "Master Yoda, you can't die." +"209" "YODA" "Strong am I with the Force... but not that strong! Twilight is upon me and soon night must fall. That is the way of things ... the way of the Force." +"210" "LUKE" "But I need your help. I've come back to complete the training." +"211" "YODA" "No more training do you require. Already know you that which you need." +"212" "LUKE" "Then I am a Jedi?" +"213" "YODA" "Ohhh. Not yet. One thing remains: Vader. You must confront Vader. Then, only then, a Jedi will you be. And confront him you will." +"214" "LUKE" "Master Yoda... is Darth Vader my father?" +"215" "YODA" "Mmm... rest I need. Yes... rest." +"216" "LUKE" "Yoda, I must know." +"217" "YODA" "Your father he is." +"218" "YODA" "Told you, did he?" +"219" "LUKE" "Yes." +"220" "YODA" "Unexpected this is, and unfortunate.." +"221" "LUKE" "Unfortunate that I know the truth?" +"222" "YODA" "No. Unfortunate that you rushed to face him... that incomplete was your training. Not ready for the burden were you." +"223" "LUKE" "Well, I'm sorry." +"224" "YODA" "Remember, a Jedi's strength flows from the Force. But beware. Anger, fear, aggression. The dark side are they. Once you start down the dark path, forever will it dominate your destiny." +"225" "YODA" "Luke...Luke...Do not...Do not underestimate the powers of the Emperor, or suffer your father's fate, you will. Luke, when gone am I , the last of the Jedi will you be. Luke, the Force runs strong in your family. Pass on what you have learned, Luke... There is... another...Sky...Sky...walker." +"226" "LUKE" "I can't do it, Artoo. I can't go on alone." +"227" "BEN" "Yoda will always be with you." +"228" "LUKE" "Obi-Wan! Why didn't you tell me?" +"229" "LUKE" "You told me Vader betrayed and murdered my father." +"230" "BEN" "You father was seduced by the dark side of the Force. He ceased to be Anakin Skywalker and became Darth Vader. When that happened, the good man who was your father was destroyed. So what I have told you was true... from a certain point of view." +"231" "LUKE" "A certain point of view!" +"232" "BEN" "Luke, you're going to find that many of the truths we cling to depend greatly on our own point of view." +"233" "BEN" "I don't blame you for being angry. If I was wrong in what I did, it certainly wouldn't have been for the first time. You see, what happened to your father was my fault." +"234" "BEN" "Anakin was a good friend." +"235" "BEN" "When I first knew him, your father was already a great pilot. But I was amazed how strongly the Force was with him. I took it upon myself to train him as a Jedi. I thought that I could instruct him just as well as Yoda. I was wrong. My pride has had terrible consequences for the galaxy." +"236" "LUKE" "There's still good in him." +"237" "BEN" "I also thought he could be turned back to the good side. It couldn't be done. He is more machine now than man. Twisted and evil." +"238" "LUKE" "I can't do it, Ben." +"239" "BEN" "You cannot escape your destiny." +"240" "LUKE" "I tried to stop him once. I couldn't do it." +"241" "BEN" "Vader humbled you when first you met him, Luke...but that experience was part of your training. It taught you, among other things, the value of patience. Had you not been so impatient to defeat Vader then, you could have finished your training here with Yoda. You would have been prepared." +"242" "LUKE" "But I had to help my friends." +"243" "BEN" "And did you help them? It was they who had to save you. You achieved little by rushing back prematurely, I fear." +"244" "LUKE" "I found out Darth Vader was my father." +"245" "BEN" "To be a Jedi, Luke, you must confront and then go beyond the dark side - the side your father couldn't get past. Impatience is the easiest door - for you, like your father. Only, your father was seduced by what he found on the other side of the door, and you have held firm. You're no longer so reckless now, Luke. You are strong and patient. And now, you must face Darth Vader again!" +"246" "LUKE" "I can't kill my own father." +"247" "BEN" "Then the Emperor has already won. You were our only hope." +"248" "LUKE" "Yoda spoke of another." +"249" "BEN" "The other he spoke of is your twin sister." +"250" "LUKE" "But I have no sister." +"251" "BEN" "Hmm. To protect you both from the Emperor, you were hidden from your father when you were born. The Emperor knew, as I did, if Anakin were to have any offspring, they would be a threat to him. That is the reason why your sister remains safely anonymous." +"252" "LUKE" "Leia! Leia's my sister." +"253" "BEN" "Your insight serves you well. Bury your feelings deep down, Luke. They do you credit. But they could be made to serve the Emperor." +"254" "BEN" "When your father left, he didn't know your mother was pregnant. Your mother and I knew he would find out eventually, but we wanted to keep you both as safe as possible, for as long as possible. So I took you to live with my brother Owen on Tatooine... and your mother took Leia to live as the daughter of Senator Organa, on Alderaan." +"255" "BEN" "The Organa household was high-born and politically quite powerful in that system. Leia became a princess by virtue of lineage... no one knew she'd been adopted, of course. But it was a title without real power, since Alderaan had long been a democracy. Even so, the family continued to be politically powerful, and Leia, following in her foster father's path, became a senator as well. That's not all she became, of course... she became the leader of her cell in the Alliance against the corrupt Empire. And because she had diplomatic immunity, she was a vital link for getting information to the Rebel cause. That's what she was doing when her path crossed yours... for her foster parents had always told her to contact me on Tatooine, if her troubles became desperate." +"256" "LUKE" "But you can't let her get involved now, Ben. Vader will destroy her." +"257" "BEN" "She hasn't been trained in the ways of the Jedi the way you have, Luke ... but the Force is strong with her, as it is with all of your family. There is no avoiding the battle. You must face and destroy Vader!" +"258" "HAN" "Well, look at you, a general, huh?" +"259" "LANDO" "Oh, well, someone must have told them about my little maneuver at the battle of Taanab." +"260" "HAN" "Well, don't look at me, pal. I just said you were a fair pilot. I didn't know they were lookin' for somebody to lead this crazy attack." +"261" "LANDO" "I'm surprised they didn't ask you to do it." +"262" "HAN" "Well, who says they didn't. But I ain't crazy. You're the respectable one, remember?" +"263" "MON MOTHMA" "The Emperor has made a critical error and the time for our attack has come." +"264" "MON MOTHMA" "The data brought to us by the Bothan spies pinpoints the exact location of the Emperor's new battle station. We also know that the weapon systems of this Death Star are not yet operational. With the Imperial Fleet spread throughout the galaxy in a vain effort to engage us, it is relatively unprotected. But most important of all, we've learned that the Emperor himself is personally overseeing the final stages of the construction of this Death Star." +"265" "MON MOTHMA" "Many Bothans died to bring us this information. Admiral Ackbar, please." +"266" "ACKBAR" "You can see here the Death Star orbiting the forest Moon of Endor. Although the weapon systems on this Death Star are not yet operational, the Death Star does have a strong defense mechanism. It is protected by an energy shield, which is generated from the nearby forest Moon of Endor. The shield must be deactivated if any attack is to be attempted. Once the shield is down, our cruisers will create a perimeter, while the fighters fly into the superstructure and attempt to knock out the main reactor." +"267" "ACKBAR" "General Calrissian has volunteered to lead the fighter attack" +"268" "HAN" "Good luck." +"269" "HAN" "You're gonna need it." +"270" "ACKBAR" "General Madine." +"271" "GENERAL MADINE" "We have stolen a small Imperial shuttle. Disguised as a cargo ship, and using a secret Imperial code, a strike team will land on the moon and deactivate the shield generator." +"272" "THREEPIO" "Sounds dangerous." +"273" "LEIA" "I wonder who they found to pull that off." +"274" "GENERAL MADINE" "General Solo, is your strike team assembled?" +"275" "HAN" "Uh, my team's ready. I don't have a command crew for the shuttle." +"276" "HAN" "Well, it's gonna be rough, pal. I didn't want to speak for you." +"277" "HAN" "That's one." +"278" "LEIA" "Uh, General... count me in." +"279" "VOICE" "I'm with you, too!" +"280" "LEIA" "What is it?" +"281" "LUKE" "Ask me again sometime." +"282" "HAN" "Luke." +"283" "LUKE" "Hi, Han... Chewie." +"284" "THREEPIO" "\"Exciting\" is hardly the word I would use." +"285" "HAN" "Look. I want you to take her. I mean it. Take her. You need all the help you can get. She's the fastest ship in the fleet." +"286" "LANDO" "All right, old buddy. You know, I know what she means to you. I'll take good care of her. She-she won't get a scratch. All right?" +"287" "HAN" "Right. I got your promise now. Not a scratch." +"288" "LANDO" "Look, would you get going, you pirate." +"289" "LANDO" "Good luck." +"290" "HAN" "You, too." +"291" "HAN" "You got her warmed?" +"292" "LUKE" "Yeah, she's comin' up." +"293" "HAN" "No. I don't think the Empire had Wookiees in mind when they designed her, Chewie." +"294" "LEIA" "Hey, are you awake?" +"295" "HAN" "Yeah, I just got a funny feeling. Like I'm not gonna see her again." +"296" "LEIA" "Come on, General, let's move." +"297" "HAN" "Right. Chewie, let's see what this piece of junk can do. Ready, everybody?" +"298" "LUKE" "All set." +"299" "THREEPIO" "Here we go again." +"300" "HAN" "All right, hang on." +"301" "VADER" "What is thy bidding, my Master?" +"302" "EMPEROR" "Send the fleet to the far side of Endor. There it will stay until called for." +"303" "VADER" "What of the reports of the Rebel fleet massing near Sullust?" +"304" "EMPEROR" "It is of no concern. Soon the Rebellion will be crushed and young Skywalker will be one of us! Your work here is finished, my friend. Go out to the command ship and await my orders." +"305" "VADER" "Yes, my Master." +"306" "HAN" "If they don't go for this, we're gonna have to get outta here pretty quick, Chewie." +"307" "CONTROLLER" "We have you on our screen now. Please identify." +"308" "HAN" "Shuttle Tydirium requesting deactivation of the deflector shield." +"309" "CONTROLLER" "Shuttle Tydirium, transmit the clearance code for shield passage." +"310" "HAN" "Transmission commencing." +"311" "LEIA" "Now we find out if that code is worth the price we paid." +"312" "HAN" "It'll work. It'll work." +"313" "LUKE" "Vader's on that ship." +"314" "HAN" "Now don't get jittery, Luke. There are a lot of command ships. Keep your distance though, Chewie, but don't look like you're trying to keep your distance." +"315" "HAN" "I don't know. Fly casual." +"316" "LUKE" "I'm endangering the mission. I shouldn't have come." +"317" "HAN" "It's your imagination, kid. Come on. Let's keep a little optimism here." +"318" "VADER" "Where is that shuttle going?" +"319" "PIETT" "Shuttle Tydirium, what is your cargo and destination?" +"320" "PILOT VOICE" "Parts and technical crew for the forest moon." +"321" "VADER" "Do they have a code clearance?" +"322" "PIETT" "It's an older code, sir, but it checks out. I was about to clear them." +"323" "PIETT" "Shall I hold them?" +"324" "VADER" "No. Leave them to me. I will deal with them myself." +"325" "PIETT" "As you wish, my lord. Carry on." +"326" "HAN" "They're not goin' for it, Chewie." +"327" "CONTROLLER" "Shuttle Tydirium, deactivation of the shield will commence immediately. Follow your present course." +"328" "HAN" "Okay! I told you it was gonna work. No problem." +"329" "THREEPIO" "Oh, I told you it was dangerous here." +"330" "LEIA" "Shall we try and go around?" +"331" "HAN" "It'll take time. This whole party'll be for nothing if they see us." +"332" "HAN" "Chewie and I will take care of this. You stay here." +"333" "LUKE" "Quietly, there might be more of them out there." +"334" "HAN" "Hey... it's me." +"335" "SCOUT #1" "Go for help! Go!" +"336" "LUKE" "Great. Come on." +"337" "LEIA" "Over there! Two more of them!" +"338" "LUKE" "I see them. Wait, Leia!" +"339" "LUKE" "Quick! Jam their comlink. Center switch!" +"340" "HAN" "Hey, wait! Ahhh!" +"341" "LUKE" "Move closer!" +"342" "LUKE" "Get alongside that one!" +"343" "LUKE" "Get him!" +"344" "LUKE" "Keep on that one! I'll take these two!" +"345" "THREEPIO" "Oh, General Solo, somebody's coming. Oh!" +"346" "HAN" "Luke! Where's Leia?" +"347" "LUKE" "What? She didn't come back?" +"348" "HAN" "I thought she was with you." +"349" "LUKE" "We got separated." +"350" "LUKE" "Hey, we better go look for her." +"351" "HAN" "Take the squad ahead. We'll meet at the shield generator at 0300." +"352" "LUKE" "Come on, Artoo. We'll need your scanners." +"353" "THREEPIO" "Don't worry, Master Luke. We know what to do." +"354" "THREEPIO" "And you said it was pretty here. Ugh!" +"355" "LEIA" "Cut it out!" +"356" "LEIA" "I'm not gonna hurt you." +"357" "LEIA" "Well, looks like I'm stuck here. Trouble is, I don't know where here is." +"358" "LEIA" "Well, maybe you can help me. Come on, sit down." +"359" "LEIA" "I promise I won't hurt you. Now come here." +"360" "LEIA" "All right. You want something to eat?" +"361" "LEIA" "That's right. Come on. Hmmm?" +"362" "LEIA" "Look, it's a hat. It's not gonna hurt you. Look. You're a jittery little thing, aren't you?" +"363" "LEIA" "What is it?" +"364" "SCOUT #l" "Freeze! Come on, get up!" +"365" "SCOUT #1" "Go get your ride and take her back to base." +"366" "SCOUT #2" "Yes, sir." +"367" "LEIA" "Come on, let's get outta here." +"368" "GUARD" "Halt! The Emperor does not wish to be disturbed at the moment." +"369" "VADER" "The Emperor will see me, now!" +"370" "GUARD" "The Emperor will see you, now." +"371" "EMPEROR" "I told you to remain on the command ship." +"372" "VADER" "A small Rebel force has penetrated the shield and landed on Endor." +"373" "EMPEROR" "Yes, I know." +"374" "VADER" "My son is with them." +"375" "EMPEROR" "Are you sure?" +"376" "VADER" "I have felt him, my Master." +"377" "EMPEROR" "Strange, that I have not. I wonder if your feelings on this matter are clear, Lord Vader." +"378" "VADER" "They are clear, my Master." +"379" "EMPEROR" "Then you must go to the Sanctuary Moon and wait for them." +"380" "VADER" "He will come to me?" +"381" "EMPEROR" "I have foreseen it. His compassion for you will be his undoing. He will come to you and then you will bring him before me." +"382" "VADER" "As you wish." +"383" "HAN" "Luke! Luke!" +"384" "THREEPIO" "Oh, Master Luke." +"385" "LUKE" "There's two more wrecked speeders back there. And I found this." +"386" "THREEPIO" "I'm afraid that Artoo's sensors can find no trace of Princess Leia." +"387" "HAN" "I hope she's alright." +"388" "HAN" "What, Chewie? What? Chewie!" +"389" "HAN" "Hey, I don't get it." +"390" "HAN" "Nah, it's just a dead animal, Chewie." +"391" "LUKE" "Chewie, wa-wait! Don't!" +"392" "HAN" "Nice work. Great, Chewie! Great! Always thinking with your stomach." +"393" "LUKE" "Will you take it easy? Let's just figure out a way to get out of this thing. Han, can you reach my lightsaber?" +"394" "HAN" "Yeah, sure." +"395" "THREEPIO" "Artoo, I'm not sure that's such a good idea. It's a very long dro-o-op!!" +"396" "HAN" "Wha--? Hey! Point that thing someplace else." +"397" "HAN" "Hey!" +"398" "LUKE" "Han, don't. It'll be all right." +"399" "LUKE" "Chewie, give 'em your crossbow." +"400" "THREEPIO" "Oh, my head. Oh, my goodness!" +"401" "LUKE" "Do you understand anything they're saying?" +"402" "THREEPIO" "Oh, yes, Master Luke! Remember that I am fluent in over six million forms of communication." +"403" "HAN" "What are you telling them?" +"404" "THREEPIO" "Hello, I think... I could be mistaken. They're using a very primitive dialect. But I do believe they think I am some sort of god." +"405" "HAN" "Well, why don't you use your divine influence and get us out of this?" +"406" "THREEPIO" "I beg your pardon, General Solo, but that just wouldn't be proper." +"407" "HAN" "Proper?!" +"408" "THREEPIO" "It's against my programming to impersonate a deity." +"409" "HAN" "Why, you--" +"410" "HAN" "My mistake. He's an old friend of mine." +"411" "HAN" "I have a really bad feeling about this." +"412" "HAN" "What did he say?" +"413" "THREEPIO" "I'm rather embarrassed, General Solo, but it appears you are to be the main course at a banquet in my honor." +"414" "HAN and LUKE" "Leia!" +"415" "LEIA" "Oh!" +"416" "THREEPIO" "Your Royal Highness." +"417" "LEIA" "But these are my friends. Threepio, tell them they must be set free." +"418" "HAN" "Somehow, I got the feeling that didn't help us very much." +"419" "LUKE" "Threepio, tell them if they don't do as you wish, you'll become angry and use your magic." +"420" "THREEPIO" "But Master Luke, what magic? couldn't possibly --" +"421" "LUKE" "Just tell them." +"422" "THREEPIO" "You see, Master Luke; they didn't believe me. Just..." +"423" "THREEPIO" "... as I said they wouldn't. Wha-wha-what's happening! Oh! Oh, dear! Oh!" +"424" "THREEPIO" "Put me down! He-e-elp! Master Luke! Artoo! Somebody, somebody, help! Master Luke, Artoo! Artoo, quickly! Do something, somebody! Oh! Ohhh!" +"425" "THREEPIO" "Oh, oh, oh, oh! Thank goodness." +"426" "LUKE" "Thanks, Threepio." +"427" "THREEPIO" "I...I never knew I had it in me." +"428" "THREEPIO" "Yes, Artoo. I was just coming to that." +"429" "HAN" "What's going on?" +"430" "LEIA" "I don't know." +"431" "THREEPIO" "Wonderful! We are now a part of the tribe." +"432" "HAN" "Just what I always wanted." +"433" "HAN" "Well, short help is better than no help at all, Chewie. Thank you. Okay." +"434" "THREEPIO" "He says the scouts are going to show us the quickest way to the shield generator." +"435" "HAN" "Good. How far is it? Ask him. We need some fresh supplies, too. And try and get our weapons back." +"436" "HAN" "And hurry up, will ya? I haven't got all day." +"437" "LUKE" "Luke, what's wrong?" +"438" "LUKE" "Leia... do you remember your mother? Your real mother?" +"439" "LEIA" "Just a little bit. She died when I was very young." +"440" "LUKE" "What do you remember?" +"441" "LEIA" "Just...images, really. Feelings." +"442" "LUKE" "Tell me." +"443" "LEIA" "She was very beautiful. Kind, but...sad. Why are you asking me all this?" +"444" "LUKE" "I have no memory of my mother. I never knew her." +"445" "LEIA" "Luke, tell me. What's troubling you?" +"446" "LUKE" "Vader is here...now, on this moon." +"447" "LEIA" "How do you know?" +"448" "LUKE" "I felt his presence. He's come for me. He can feel when I'm near. That's why I have to go. As long as I stay, I'm endangering the group and our mission here. I have to face him." +"449" "LEIA" "Why?" +"450" "LUKE" "He's my father." +"451" "LEIA" "Your father?" +"452" "LUKE" "There's more. It won't be easy for you to hear it, but you must. If I don't make it back, you're the only hope for the Alliance." +"453" "LEIA" "Luke, don't talk that way. You have a power I--I don't understand and could never have." +"454" "LUKE" "You're wrong, Leia. You have that power too. In time you'll learn to use it as I have. The Force is strong in my family. My father has it...I have it...and...my sister has it." +"455" "LUKE" "Yes. It's you Leia." +"456" "LEIA" "I know. Somehow...I've always known." +"457" "LUKE" "Then you know why I have to face him." +"458" "LEIA" "No! Luke, run away, far away. If he can feel your presence, then leave this place. I wish I could go with you." +"459" "LUKE" "No, you don't. You've always been strong." +"460" "LEIA" "But, why must you confront him?" +"461" "LUKE" "Because...there is good in him. I've felt it. He won't turn me over to the Emperor. I can save him. I can turn him back to the good side. I have to try." +"462" "HAN" "Hey, what's goin' on?" +"463" "LEIA" "Nothing. I - just want to be alone for a little while." +"464" "HAN" "Nothing? Come on, tell me. What's goin' on?" +"465" "LEIA" "I...I can't tell you." +"466" "HAN" "Did you tell Luke? Is that who you could tell?" +"467" "LEIA" "I..." +"468" "HAN" "Ahhh..." +"469" "HAN" "I'm sorry." +"470" "LEIA" "Hold me." +"471" "COMMANDER" "This is a Rebel that surrendered to us. Although he denies it, I believe there may be more of them, and I request permission to conduct a further search of the area." +"472" "COMMANDER" "He was armed only with this." +"473" "VADER" "Good work, Commander. Leave us. Conduct your search and bring his companions to me." +"474" "COMMANDER" "Yes, my Lord." +"475" "VADER" "The Emperor has been expecting you." +"476" "LUKE" "I know, father." +"477" "VADER" "So, you have accepted the truth." +"478" "LUKE" "I've accepted the truth that you were once Anakin Skywalker, my father." +"479" "VADER" "That name no longer has any meaning for me." +"480" "LUKE" "It is the name of your true self. You've only forgotten. I know there is good in you. The Emperor hasn't driven it from you fully. That is why you couldn't destroy me. That's why you won't bring me to your Emperor now." +"481" "VADER" "I see you have constructed a new lightsaber." +"482" "VADER" "Your skills are complete. Indeed, you are powerful, as the Emperor has foreseen." +"483" "LUKE" "Come with me." +"484" "VADER" "Obi-Wan once thought as you do." +"485" "VADER" "You don't know the power of the dark side. I must obey my master." +"486" "LUKE" "I will not turn...and you'll be forced to kill me." +"487" "VADER" "If that is your destiny." +"488" "LUKE" "Search your feelings, father. You can't do this. I feel the conflict within you. Let go of your hate." +"489" "VADER" "It is too late for me, son. The Emperor will show you the true nature of the Force. He is your master now." +"490" "LUKE" "Then my father is truly dead." +"491" "LEIA" "The main entrance to the control bunker's on the far side of that landing platform. This isn't gonna be easy." +"492" "HAN" "Hey, don't worry. Chewie and me got into a lot of places more heavily guarded than this." +"493" "LEIA" "What's he saying?" +"494" "THREEPIO" "He says there's a secret entrance on the other side of the ridge." +"495" "LANDO" "Admiral, we're in position. All fighters accounted for." +"496" "ACKBAR" "Proceed with the countdown. All groups assume attack coordinates." +"497" "LANDO" "Don't worry, my friends are down there. They'll have that shield down on time... or this'll be the shortest offensive of all time." +"498" "ACKBAR" "All craft, prepare to jump to hyperspace on my mark." +"499" "LANDO" "All right. Stand by." +"500" "HAN" "Back door, huh? Good idea." +"501" "HAN" "It's only a few guards. This shouldn't be too much trouble." +"502" "LEIA" "Well, it only takes one to sound the alarm." +"503" "HAN" "Then we'll do it real quiet-like." +"504" "THREEPIO" "Oh! Oh, my. Uh, Princess Leia!" +"505" "LEIA" "Quiet." +"506" "THREEPIO" "I'm afraid our furry companion has gone and done something rather rash." +"507" "LEIA" "Oh, no." +"508" "HAN" "There goes our surprise attack." +"509" "SCOUT" "Look! Over there! Stop him!" +"510" "HAN" "Not bad for a little furball. There's only one left. You stay here. We'll take care of this." +"511" "THREEPIO" "I have decided that we shall stay here." +"512" "EMPEROR" "Welcome, young Skywalker. I have been expecting you." +"513" "EMPEROR" "You no longer need those." +"514" "EMPEROR" "Guards, leave us." +"515" "EMPEROR" "I'm looking forward to completing your training. In time you will call me Master." +"516" "LUKE" "You're gravely mistaken. You won't convert me as you did my father." +"517" "EMPEROR" "Oh, no, my young Jedi. You will find that it is you who are mistaken...about a great many things." +"518" "VADER" "His lightsaber." +"519" "EMPEROR" "Ah, yes, a Jedi's weapon. Much like your father's. By now you must know your father can never be turned from the dark side. So will it be with you." +"520" "LUKE" "You're wrong. Soon I'll be dead...and you with me." +"521" "EMPEROR" "Perhaps you refer to the imminent attack of your Rebel fleet." +"522" "EMPEROR" "Yes...I assure you we are quite safe from your friends here." +"523" "LUKE" "Your overconfidence is your weakness." +"524" "EMPEROR" "Your faith in your friends is yours." +"525" "VADER" "It is pointless to resist, my son." +"526" "EMPEROR" "Everything that has transpired has done so according to my design. Your friends up there on the Sanctuary Moon..." +"527" "EMPEROR" "...are walking into a trap. As is your Rebel fleet! It was I who allowed the Alliance to know the location of the shield generator. It is quite safe from your pitiful little band. An entire legion of my best troops awaits them." +"528" "EMPEROR" "Oh...I'm afraid the deflector shield will be quite operational when your friends arrive." +"529" "HAN" "All right! Up! Move! Come on! Quickly! Quickly, Chewie." +"530" "LEIA" "Han! Hurry! The fleet will be here any moment." +"531" "HAN" "Charges! Come on, come on!" +"532" "THREEPIO" "Oh, my! They'll be captured!" +"533" "THREEPIO" "Wa-wait! Wait, come back! Artoo, stay with me." +"534" "COMMANDER" "Freeze! You Rebel scum." +"535" "LANDO" "All wings report in." +"536" "WEDGE" "Red Leader standing by." +"537" "GRAY LEADER" "Gray Leader standing by." +"538" "GREEN LEADER" "Green Leader standing by." +"539" "WEDGE" "Lock S-foils in attack positions." +"540" "ACKBAR" "May the Force be with us." +"541" "LANDO" "We've got to be able to get some kind of a reading on that shield, up or down. Well, how could they be jamming us if they don't know if we're coming." +"542" "LANDO" "Break off the attack! The shield is still up." +"543" "RED LEADER" "I get no reading. Are you sure?" +"544" "LANDO" "Pull up! All craft pull up!" +"545" "ACKBAR" "Take evasive action! Green Group, stick close to holding sector MV-7." +"546" "CONTROLLER" "Admiral, we have enemy ships in sector 47." +"547" "ACKBAR" "It's a trap!" +"548" "LANDO" "Fighters coming in." +"549" "REBEL PILOT" "There's too many of them!" +"550" "LANDO" "Accelerate to attack speed! Draw their fire away from the cruisers." +"551" "WEDGE" "Copy, Gold Leader." +"552" "EMPEROR" "Come, boy. See for yourself." +"553" "EMPEROR" "From here you will witness the final destruction of the Alliance, and the end of your insignificant Rebellion." +"554" "EMPEROR" "You want this, don't you? The hate is swelling in you now. Take your Jedi weapon. Use it. I am unarmed. Strike me down with it. Give in to your anger. With each passing moment, you make yourself more my servant." +"555" "LUKE" "No!" +"556" "EMPEROR" "It is unavoidable. It is your destiny. You, like your father, are now mine!" +"557" "STORMTROOPER" "All right, move it! I said move it! Go on!" +"558" "THREEPIO" "Hello! I say, over there! Were you looking for me?" +"559" "BUNKER COMMANDER" "Bring those two down here!" +"560" "STORMTROOPER" "Let's go!" +"561" "THREEPIO" "Well, they're on their way. Artoo, are you sure this was a good idea?" +"562" "STORMTROOPER" "Freeze! Don't move!" +"563" "THREEPIO" "We surrender." +"564" "THREEPIO" "Ohhh! Stand back, Artoo." +"565" "LEIA" "The code's changed. We need Artoo!" +"566" "HAN" "Here's the terminal." +"567" "LEIA" "Artoo, where are you? We need you at the bunker right away." +"568" "THREEPIO" "Going? What do you mean, you're going. But-- but going where, Artoo? No, what! Artoo! Oh, this is no time for heroics. Come back!" +"569" "LANDO" "Watch yourself, Wedge! Three from above!" +"570" "WEDGE" "Red Three, Red Two, pull in!" +"571" "RED TWO" "Got it!" +"572" "RED THREE" "Three of them coming in, twenty degrees!" +"573" "WEDGE" "Cut to the left! I'll take the leader! They're heading for the medical frigate." +"574" "NAVIGATOR" "Pressure's steady." +"575" "LANDO" "Only the fighters are attacking. I wonder what those Star Destroyers are waiting for." +"576" "COMMANDER" "We're in attack position now, sir." +"577" "PIETT" "Hold here." +"578" "COMMANDER" "We're not going to attack?" +"579" "PIETT" "I have my orders from the Emperor himself. He has something special planned for them. We only need to keep them from escaping." +"580" "EMPEROR" "As you can see, my young apprentice, your friends have failed. Now witness the firepower of this fully armed and operational battle station. Fire at will, Commander." +"581" "JERJERROD" "Fire!" +"582" "LANDO" "That blast came from the Death Star! That thing's operational! Home One, this is Gold Leader." +"583" "ACKBAR" "We saw it. All craft prepare to retreat." +"584" "LANDO" "You won't get another chance at this, Admiral." +"585" "ACKBAR" "We have no choice, General Calrissian. Our cruisers can't repel firepower of that magnitude." +"586" "LANDO" "Han will have that shield down. We've got to give him more time." +"587" "THREEPIO" "We're coming!" +"588" "HAN" "Come on! Come on!" +"589" "THREEPIO" "Oh, Artoo, hurry!" +"590" "THREEPIO" "My goodness! Artoo, why did you have to be so brave?" +"591" "HAN" "Well, I suppose I could hotwire this thing." +"592" "LEIA" "I'll cover you." +"593" "LANDO" "Yes! I said closer! Move as close as you can and engage those Star Destroyers at point- blank range." +"594" "ACKBAR" "At that close range, we won't last long against those Star Destroyers." +"595" "LANDO" "We'll last longer then we will against that Death Star...and we might just take a few of them with us." +"596" "REBEL PILOT" "She's gonna blow!" +"597" "Y-WING PILOT" "I'm hit!" +"598" "EMPEROR" "Your fleet has lost. And your friends on the Endor moon will not survive. There is no escape, my young apprentice. The Alliance will die...as will your friends." +"599" "EMPEROR" "Good. I can feel your anger. I am defenseless. Take your weapon! Strike me down with all your hatred, and your journey towards the dark side will be complete." +"600" "WALKER PILOT #1" "Look!" +"601" "PILOT #2" "Get him off of there!" +"602" "HAN" "I think I got it. I got it!" +"603" "THREEPIO" "Oh, Princess Leia, are you all right?" +"604" "HAN" "Let's see." +"605" "LEIA" "It's not bad." +"606" "STORMTROOPER" "Freeze!" +"607" "THREEPIO" "Oh, dear." +"608" "STORMTROOPER" "Don't move!" +"609" "HAN" "I love you." +"610" "LEIA" "I know." +"611" "STORMTROOPER" "Hands up! Stand up!" +"612" "HAN" "Stay back." +"613" "HAN" "Chewie! Get down here! She's wounded! No, wait.... I got an idea." +"614" "EMPEROR" "Good. Use your aggressive feelings, boy! Let the hate flow through you." +"615" "VADER" "Obi-Wan has taught you well." +"616" "LUKE" "I will not fight you, father." +"617" "VADER" "You are unwise to lower your defenses." +"618" "LUKE" "Your thoughts betray you, father. I feel the good in you...the conflict." +"619" "VADER" "There is no conflict." +"620" "LUKE" "You couldn't bring yourself to kill me before, and I don't believe you'll destroy me now." +"621" "VADER" "You underestimate the power of the dark side. If you will not fight, then you will meet your destiny." +"622" "EMPEROR" "Good. Good." +"623" "LANDO" "Watch out. Squad at .06." +"624" "REBEL PILOT" "I'm on it, Gold Leader." +"625" "WEDGE" "Good shot, Red Two." +"626" "LANDO" "Now...come on, Han, old buddy. Don't let me down." +"627" "HAN/PILOT" "It's over, Commander. The Rebels have been routed. They're fleeing into the woods. We need reinforcements to continue the pursuit." +"628" "CONTROL ROOM COMMANDER" "Send three squads to help. Open the back door." +"629" "SECOND COMMANDER" "Yes, sir." +"630" "HAN" "Throw me another charge." +"631" "VADER" "You cannot hide forever, Luke." +"632" "LUKE" "I will not fight you." +"633" "VADER" "Give yourself to the dark side. It is the only way you can save your friends. Yes, your thoughts betray you. Your feelings for them are strong. Especially for..." +"634" "VADER" "Sister! So...you have a twin sister. Your feelings have now betrayed her, too. Obi-Wan was wise to hide her from me. Now his failure is complete. If you will not turn to the dark side, then perhaps she will." +"635" "LUKE" "Never-r-r!" +"636" "EMPEROR" "Good! Your hate has made you powerful. Now, fulfill your destiny and take your father's place at my side!" +"637" "LUKE" "Never! I'll never turn to the dark side. You've failed, Your Highness. I am a Jedi, like my father before me." +"638" "EMPEROR" "So be it...Jedi." +"639" "HAN" "Move! Move!" +"640" "ACKBAR" "The shield is down! Commence attack on the Death Star's main reactor." +"641" "LANDO" "We're on our way. Red Group, Gold Group, all fighters follow me. Told you they'd do it!" +"642" "EMPEROR" "If you will not be turned, you will be destroyed." +"643" "EMPEROR" "Young fool...only now, at the end, do you understand." +"644" "EMPEROR" "Your feeble skills are no match for the power of the dark side. You have paid the price for your lack of vision." +"645" "LUKE" "Father, please. Help me." +"646" "EMPEROR" "Now, young Skywalker...you will die." +"647" "WEDGE" "I'm going in." +"648" "LANDO" "Here goes nothing." +"649" "LANDO" "Now lock onto the strongest power source. It should be the power generator." +"650" "WEDGE" "Form up. And stay alert. We could run out of space real fast." +"651" "LANDO" "Split up and head back to the surface. See if you can get a few of those TIE fighters to follow you." +"652" "PILOT" "Copy, Gold Leader." +"653" "LANDO" "That was too close." +"654" "ACKBAR" "We've got to give those fighters more time. Concentrate all fire on that Super Star Destroyer." +"655" "CONTROLLER" "Sir, we've lost our bridge deflector shield." +"656" "PIETT" "Intensify the forward batteries. I don't want anything to get through." +"657" "PIETT" "Intensify forward firepower!" +"658" "COMMANDER" "It's too late!" +"659" "VADER" "Luke, help me take this mask off." +"660" "LURE" "But you'll die." +"661" "VADER" "Nothing can stop that now. Just for once... let me look on you with my own eyes." +"662" "ANAKIN" "Now...go, my son. Leave me." +"663" "LUKE" "No. You're coming with me. I can't leave you here. I've got to save you." +"664" "ANAKIN" "You already have, Luke. You were right about me. Tell your sister...you were right." +"665" "LUKE" "Father... I won't leave you." +"666" "WEDGE" "There it is!" +"667" "LANDO" "All right, Wedge. Go for the power regulator on the north tower." +"668" "WEDGE" "Copy, Gold Leader. I'm already on my way out." +"669" "ACKBAR" "Move the fleet away from the Death Star." +"670" "LANDO" "Wedge, I don't think we're going to make it." +"671" "WEDGE" "You'll make it. Just follow me Gold Leader." +"672" "LANDO" "I promised to return his ship without a scratch...I sure hope that old pirate forgives me." +"673" "HAN" "Lando..." +"674" "THREEPIO" "They did it!" diff --git a/Text_files/StarWars_EpisodeIV_script.txt b/Text_files/StarWars_EpisodeIV_script.txt new file mode 100644 index 0000000..2fe4a8f --- /dev/null +++ b/Text_files/StarWars_EpisodeIV_script.txt @@ -0,0 +1,7518 @@ +

+                          STAR WARS
+                    !! PUBLIC  VERSION !!
+  
+          ÒA long time ago, in a galaxy far, far 
+          away...Ó
+
+A vast sea of stars serves as the backdrop for the main
+title.  War drums echo through the heavens as a rollup 
+slowly crawls into infinity.
+
+          ÒIt is a period of civil war.  Rebel 
+          spaceships, striking from a hidden 
+          base, have won their first victory 
+          against the evil Galactic Empire.
+
+          During the battle, Rebel spies managed 
+          to steal secret plans to the Empire's 
+          ultimate weapon, the Death Star, an 
+          armored space station with enough 
+          power to destroy an entire planet.
+
+          Pursued by the Empire's sinister agents, 
+          Princess Leia races home aboard her 
+          starship, custodian of the stolen plans 
+          that can save her people and restore 
+          freedom to the galaxy...Ó
+
+The awesome yellow planet of Tatooine emerges from a total
+eclipse, her two moons glowing against the darkness.  A 
+tiny silver spacecraft, a Rebel Blockade Runner firing 
+lasers from the back of the ship, races through space.  It 
+is pursed by a giant Imperial Star Destroyer.  Hundreds of 
+deadly laserbolts streak from the Imperial Star Destroyer, 
+causing the main solar fin of the Rebel craft to 
+disintegrate.
+
+
+INT. REBEL BLOCKADE RUNNER - MAIN PASSAGEWAY
+
+An explosion rocks the ship as two robots, Artoo-Detoo 
+(R2-D2) and See-Threepio (C-3PO) struggle to make their way 
+through the shaking, bouncing passageway.  Both robots are 
+old and battered.  Artoo is a short, claw-armed tripod. 
+His face is a mass of computer lights surrounding a radar 
+eye.  Threepio, on the other hand, is a tall, slender robot 
+of human proportions.  He has a gleaming bronze-like 
+metallic surface of an Art Deco design. 
+
+Another blast shakes them as they struggle along their way.
+
+                    THREEPIO
+          Did you hear that?  They've shut 
+          down the main reactor.  We'll be 
+          destroyed for sure.  This is 
+          madness!
+
+Rebel troopers rush past the robots and take up positions in the main passageway.  They aim their weapons toward the door.
+
+                    THREEPIO
+          We're doomed!
+
+The little R2 unit makes a series of electronic sounds that only another robot could understand.
+
+                    THREEPIO
+          There'll be no escape for the 
+          Princess this time.
+
+Artoo continues making beeping sounds.  Tension mounts as loud metallic latches clank and the scream of heavy equipment are heard moving around the outside hull of the ship.
+
+                    THREEPIO
+          What's that?
+
+
+EXT. SPACECRAFT IN SPACE
+
+The Imperial craft has easily overtaken the Rebel Blockade Runner.  The smaller Rebel ship is being drawn into the underside dock of the giant Imperial starship.
+
+
+INT. REBEL BLOCKADE RUNNER
+
+The nervous Rebel troopers aim their weapons.  Suddenly a tremendous blast opens up a hole in the main passageway and a score of fearsome armored spacesuited stormtroopers make their way into the smoke-filled corridor.  
+
+In a few minutes the entire passageway is ablaze with laserfire.  The deadly bolts ricochet in wild random patterns creating huge explosions.  Stormtroopers scatter and duck behind storage lockers.  Laserbolts hit several Rebel soldiers who scream and stagger through the smoke, holding shattered arms and faces.  
+
+An explosion hits near the robots.
+
+                    THREEPIO
+          I should have known better than to 
+          trust the logic of a half-sized 
+          thermocapsulary dehousing assister...
+
+Artoo counters with an angry rebuttal as the battle rages around the two hapless robots.
+
+
+EXT. TATOOINE - DESERT WASTELAND - DAY
+
+A death-white wasteland stretches from horizon to horizon. The tremendous heat of two huge twin suns settle on a lone figure, Luke Skywalker, a farm boy with heroic aspirations who looks much younger than his eighteen years.  His shaggy hair and baggy tunic give him the air of a simple but lovable lad with a prize-winning smile.
+
+A light wind whips at him as he adjusts several valves on a
+large battered moisture vaporator which sticks out of the desert floor much like an oil pipe with valves.  He is aided by a beatup tread-robot with six claw arms. The little robot appears to be barely functioning and moves with jerky motions.  A bright sparkle in the morning sky catches Luke's eye and he instinctively grabs a pair of electrobinoculars from his utility belt.  He stands transfixed for a few moments studying the heavens, then dashed toward his dented, crudely repaired Landspeeder (an auto-like transport that travels a few feet above the ground on a magnetic-field). He motions for the tiny robot to follow him.
+
+                    LUKE
+          Hurry up!  Come with me!  What 
+          are you waiting for?!  Get in gear!
+
+The robot scoots around in a tight circle, stops short, and
+smoke begins to pour out of every joint.  Luke throws his arms up in disgust.  Exasperated, the young farm boy jumps into his Landspeeder leaving the smoldering robot to hum madly.
+
+
+INT. REBEL BLOCKADE RUNNER - MAIN HALLWAY
+
+The awesome, seven-foot-tall Dark Lord of the Sith makes his way into the blinding light of the main passageway. This is Darth Vader, right hand of the Emperor. His face is obscured by his flowing black robes and grotesque breath mask, which stands out next to the fascist white armored suits of the Imperial stormtroopers.  
+
+Everyone instinctively backs away from the imposing warrior and a deathly quiet sweeps through the Rebel troops. Several of the Rebel troops break and run in a frenzied panic.
+
+
+INT. REBEL BLOCKADE RUNNER
+
+A woman's hand puts a card into an opening in Artoo's dome.
+Artoo makes beeping sounds.
+
+
+INT. REBEL BLOCKADE RUNNER
+
+Threepio stands in a hallway, somewhat bewildered.  Artoo is nowhere in sight.  The pitiful screams of the doomed Rebel soldiers can be heard in the distance.
+
+                    THREEPIO
+          Artoo! Artoo-Detoo, where are 
+          you?
+
+A familiar clanking sound attacks Threepio's attention and
+he spots little Artoo at the end of the hallway in a smoke-filled alcove.  A beautiful young girl (about sixteen years old) stands in front of Artoo.  Surreal and out of place, dreamlike and half hidden in the smoke, she finishes adjusting something on Artoo's computer face, then watches as the little robot joins his companion.
+
+                    THREEPIO
+          At last!  Where have you been?
+
+Stormtroopers can be heard battling in the distance.
+
+                    THREEPIO
+          They're heading in this direction. 
+          What are we going to do?  We'll be 
+          sent to the spice mines of Kessel 
+          or smashed into who knows what!
+
+Artoo scoots past his bronze friend and races down the
+subhallway.  Threepio chases after him.
+
+                    THREEPIO
+          Wait a minute, where are you 
+          going?
+
+Artoo responds with electronic beeps.
+
+
+INT. REBEL BLOCKADE RUNNER - CORRIDOR
+
+The evil Darth Vader stands amid the broken and twisted bodies of his foes.  He grabs a wounded Rebel Officer by the neck as an Imperial Officer rushes up to the Dark Lord.
+
+                    IMPERIAL OFFICER
+          The Death Star plans are not in 
+          the main computer.
+
+Vader squeezes the neck of the Rebel Officer, who struggles
+in vain.
+
+                    VADER
+          Where are those transmissions you 
+          intercepted?
+
+Vader lifts the Rebel off his feet by his throat.
+
+                    REBEL OFFICER
+          We intercepted no transmissions. 
+          Aaah...  This is a consular ship. 
+          Were on a diplomatic mission.
+
+                    VADER
+          If this is a consular ship... where 
+          is the Ambassador?
+
+The Rebel refuses to speak but eventually cries out as the
+Dark Lord begins to squeeze the officer's throat, creating a gruesome snapping and choking, until the soldier goes limp.  Vader tosses the dead soldier against the wall and turns to his troops.
+
+                    VADER
+          Commander, tear this ship apart 
+          until you've found those plans 
+          and bring me the Ambassador.  I 
+          want her alive!
+
+The stormtroopers scurry into the subhallways.
+
+
+INT. REBEL BLOCKADE RUNNER - SUBHALLWAY
+
+The lovely young girl huddles in a small alcove as the
+stormtroopers search through the ship.  She is Princess Leia Organa, a member of the Alderaan Senate.  The fear in her eyes slowly gives way to anger as the muted crushing sounds of the approaching stormtroopers grow louder.  One of the troopers spots her.
+
+                    TROOPER
+          There she is! Set for stun!
+
+Leia steps from her hiding place and blasts a trooper with
+her laser pistol.  She starts to run but is felled by a
+paralyzing ray.  The troopers inspect her inert body.
+
+                    TROOPER
+          She'll be all right. Inform Lord 
+          Vader we have a prisoner.
+
+
+INT. REBEL BLOCKADE RUNNER - SUBHALLWAY
+
+Artoo stops before the small hatch of an emergency lifepod. He snaps the seal on the main latch and a red warning light
+begins to flash.  The stubby astro-robot works his way into the cramped four-man pod.
+
+                    THREEPIO
+          Hey, you're not permitted in there.  
+          It's restricted. You'll be 
+          deactivated for sure..
+
+Artoo beeps something to him.
+
+                    THREEPIO
+          Don't call me a mindless philosopher, 
+          you overweight glob of grease!  Now 
+          come out before somebody sees you.
+
+Artoo whistles something at his reluctant friend regarding
+the mission he is about to perform.
+
+                    THREEPIO
+          Secret mission?  What plans?  What 
+          are you talking about?  I'm not 
+          getting in there!
+
+Artoo isn't happy with Threepio's stubbornness, and he beeps and twangs angrily.  
+
+A new explosion, this time very close, sends dust and debris through the narrow subhallway. Flames lick at Threepio and, after a flurry of electronic swearing from Artoo, the lanky robot jumps into the lifepod.
+
+                    THREEPIO
+          I'm going to regret this.
+
+
+INT. REBEL BLOCKADE RUNNER
+
+The safety door snaps shut, and with the thunder of exploding latches the tiny lifepod ejects from the disabled ship.
+
+
+INT. IMPERIAL STAR DESTROYER
+
+On the main viewscreen, the lifepod carrying the two terrified robots speeds away from the stricken Rebel spacecraft.
+
+                    CHIEF PILOT
+          There goes another one.
+
+                    CAPTAIN
+          Hold your fire.  There are no 
+          life forms.  It must have been 
+          short-circuited.
+
+
+INT. LIFEPOD
+
+Artoo and Threepio look out at the receding Imperial starship.  Stars circle as the pod rotates through the galaxy.
+
+                    THREEPIO
+          That's funny, the damage doesn't 
+          look as bad from out here.
+
+Artoo beeps an assuring response.
+
+                    THREEPIO
+          Are you sure this things safe?
+
+
+EXT. TATOOINE - ANCHORHEAD SETTLEMENT - POWER STATION - DAY
+
+Heat waves radiate from the dozen or so bleached white
+buildings.  Luke pilots his Landspeeder through the dusty empty street of the tiny settlement.  An old woman runs to get out of the way of the speeding vehicle, shaking her fist at Luke as he flies past.
+
+                    WOMAN
+          I've told you kids to slow down!
+
+Luke pulls up behind a low concrete service station that is all but covered by the shifting desert sands.
+
+
+INT. POWER STATION - DAY
+
+Luke bursts into the power station, waking The Fixer, a rugged mechanic and Camie, a sexy, disheveled girl who has been asleep in his lap.  They grumbled as he races through the office, yelling wildly.
+
+                    FIXER
+          Did I hear a young noise blast 
+          through here?
+
+                    CAMIE
+          It was just Wormie on another 
+          rampage.
+
+Luke bounces into a small room behind the office where Deak
+and Windy, two tough boys about the same age as Luke, are
+playing a computer pool-like game with Biggs, a burly,
+handsome boy a few years older than the rest.  His flashy city attire is a sharp contrast to the loose-fitting tunics of the farm boys.  A robot repairs some equipment in the background.
+
+                    LUKE
+          Shape it up you guys!...  Biggs?
+
+Luke's surprise at the appearance of Biggs gives way to
+great joy and emotion.  They give each other a great bear hug.
+
+                    LUKE
+          I didn't know you were back!  
+          When did you get in?
+
+                    BIGGS
+          Just now.  I wanted to surprise 
+          you, hot shot.  I thought you'd be 
+          here... certainly didn't expect 
+          you to be out working. 
+               (laughs)
+
+                    LUKE
+          The Academy didn't change you 
+          much... but you're back so soon?  
+          Hey, what happened, didn't you get 
+          your commission?
+
+Biggs has an air of cool that seems slightly phony.
+
+                    BIGGS
+          Of course I got it.  Signed 
+          aboard The Rand Ecliptic last week.  
+          First mate Biggs Darklighter at 
+          your service...
+               (he salutes)
+          ... I just came back to say goodbye 
+          to all you unfortunate landlocked 
+          simpletons.
+
+Everyone laughs.  The dazzling spectacle of his dashing
+friend is almost too much for Luke, but suddenly he snaps out of it.
+
+                    LUKE
+          I almost forgot.  There's a battle 
+          going on!  Right here in our system.  
+          Come and look!
+
+                    DEAK
+          Not again!  Forget it.
+
+
+EXT. TATOOINE - ANCHORHEAD - SETTLEMENT - POWER STATION - DAY
+
+The group stumbles out into the stifling desert sun.  Camie and The Fixer complain and are forced to shade their eyes. Luke has his binoculars out scanning the heavens.
+
+                    LUKE
+          There they are!
+
+Biggs takes the electrobinoculars from Luke as the others strain to see something with the naked eye.  Through the electrobinoculars Biggs sees two small silver specks.
+
+                    BIGGS
+          That's no battle, hot shot... they're 
+          just sitting there!  Probably a 
+          freighter-tanker refueling.
+
+                    LUKE
+          But there was a lot of firing 
+          earlier...
+
+Camie grabs the electrobinoculars away banging them against the building in the process.  Luke grabs them.
+
+                    LUKE
+          Hey, easy with those...
+
+                    CAMIE
+          Don't worry about it, Wormie.
+
+The Fixer gives Luke a hard look and the young farm boy
+shrugs his shoulders in resignation.
+
+                    FIXER
+          I keep telling you, the Rebellion 
+          is a long way from here.  I doubt 
+          if the Empire would even fight to 
+          keep this system.  Believe me Luke, 
+          this planet is a big hunk of nothing...
+
+Luke agrees, although it's obvious he isn't sure why.  The
+group stumbles back into the power station, grumbling about
+Luke's ineptitude.
+ 
+
+INT. REBEL BLOCKADE RUNNER - HALLWAY
+
+Princess Leia is led down a low-ceilinged hallway by a squad of armored stormtroopers.  Her hands are bound and she is brutally shoved when she is unable to keep up with the briskly marching troops.  They stop in a smoky hallway as Darth Vader emerges from the shadows.  The sinister Dark Lord stares hard at the frail young senator, but she doesn't move.
+
+                    LEIA
+          Lord Vader, I should have known.  
+          Only you could be so bold.  The 
+          Imperial Senate will not sit still
+          for this, when they hear you've 
+          attacked a diplomatic...
+
+                    VADER
+          Don't play games with me, Your 
+          Highness.  You weren't on any mercy 
+          mission this time.  You passed 
+          directly through a restricted 
+          system.  Several transmissions were 
+          beamed to this ship by Rebel spies.  
+          I want to know what happened to the 
+          plans they sent you.
+
+                    LEIA
+          I don't know what you're talking 
+          about.  I'm a member of the Imperial 
+          Senate on a diplomatic mission to 
+          Alderaan...
+
+                    VADER
+          You're a part of the Rebel Alliance
+          ... and a traitor.  Take her away!
+
+Leia is marched away down the hallway and into the smoldering hole blasted in the side of the ship. An Imperial Commander turns to Vader.
+
+                    COMMANDER
+          Holding her is dangerous.  If word 
+          of this gets out, it could generate 
+          sympathy for the Rebellion in the 
+          senate.
+
+                    VADER
+          I have traced the Rebel spies 
+          to her.  Now she is my only link 
+          to find their secret base!
+
+                    COMMANDER
+          She'll die before sheÕll tell 
+          you anything.
+
+                    VADER
+          Leave that to me.  Send a distress 
+          signal and then inform the senate 
+          that all aboard were killed!
+
+Another Imperial Officer approaches Vader and the Commander.  They stop and snap to attention.
+
+                    SECOND OFFICER
+          Lord Vader, the battle station 
+          plans are not aboard this ship!  
+          And no transmissions were made.  
+          An escape pod was jettisoned during 
+          the fighting, but no life forms 
+          were aboard.
+
+Vader turns to the Commander.
+
+                    VADER
+          She must have hidden the plans in 
+          the escape pod.  Send a detachment 
+          down to retrieve them.  See to it 
+          personally, Commander.  There'll be 
+          no one to stop us this time.
+
+                    COMMANDER
+          Yes, sir.
+
+
+EXT. SPACE
+
+The Imperial Star Destroyer comes over the surface of the
+planet Tatooine.
+
+
+EXT. TATOOINE - DESERT
+
+Jundland, or "No Man's Land", where the rugged desert mesas
+meet the foreboding dune sea.  The two helpless astro-robots kick up clouds of sand as they leave the lifepod and clumsily work their way across the desert wasteland.  The lifepod in the distance rests half buried in the sand.
+
+                    THREEPIO
+          How did I get into this mess?  
+          I really don't know how.  We seem 
+          to be made to suffer.  It's our 
+          lot in life.
+
+Artoo answers with beeping sounds.
+
+                    THREEPIO
+          I've got to rest before I fall 
+          apart.  My joints are almost frozen. 
+
+Artoo continues to respond with beeping sounds.
+
+                    THREEPIO
+          What a desolate place this is.
+
+Suddenly Artoo whistles, makes a sharp right turn and starts off in the direction of the rocky desert mesas. Threepio stops and yells at him.
+
+                    THREEPIO
+          Where are you going?
+
+A stream of electronic noises pours forth from the small robot.
+
+                    THREEPIO
+          Well, I'm not going that way.  It's 
+          much too rocky.  This way is much 
+          easier.
+
+Artoo counters with a long whistle.
+
+                    THREEPIO
+          What makes you think there are 
+          settlements over there?
+
+Artoo continues to make beeping sounds.
+
+                    THREEPIO
+          Don't get technical with me.
+
+Artoo continues to make beeping sounds.
+
+                    THREEPIO
+          What mission?  What are you talking 
+          about?  I've had just about enough 
+          of you!  Go that way!  You'll be 
+          malfunctioning within a day, you 
+          nearsighted scrap pile!
+
+Threepio gives the little robot a kick and starts off in the direction of the vast dune sea.
+
+                    THREEPIO
+          And don't let me catch you following 
+          me begging for help, because you 
+          won't get it.
+
+Artoo's reply is a rather rude sound.  He turns and trudges
+off in the direction of the towering mesas.
+
+                    THREEPIO
+          No more adventures.  I'm not 
+          going that way.
+
+Artoo beeps to himself as he makes his way toward the distant mountains.
+
+
+EXT. TATOOINE - DUNE SEA
+
+Threepio, hot and tired, struggles up over the ridge of a dune:  only to find more dunes, which seem to go on for endless miles.  He looks back in the direction of the now distant rock mesas. 
+
+                    THREEPIO
+          That malfunctioning little twerp.  
+          This is all his fault!  He tricked 
+          me into going this way, but he'll 
+          do no better.
+
+In a huff of anger and frustration, Threepio knocks the sand from his joints.  His plight seems hopeless, when a glint of reflected light in the distance reveals an object moving towards him.
+
+                    THREEPIO
+          Wait, what's that?  A transport!  
+          I'm saved!
+
+The bronze android waves frantically and yells at the approaching transport.
+
+                    THREEPIO
+          Over here!  Help!  Please, help!
+
+EXT. TATOOINE - ANCHORHEAD SETTLEMENT - POWER STATION - DAY
+
+Luke and Biggs are walking and drinking a malt brew.  Fixer and the others can be heard working inside.
+
+                    LUKE
+               (Very animated)
+          ... so I cut off my power, shut down 
+          the afterburners and came in low on 
+          Deak's trail.  I was so close I 
+          thought I was going to fry my 
+          instruments. As it was I busted up 
+          the Skyhopper pretty bad.  Uncle 
+          Owen was pretty upset.  He grounded 
+          me for the rest of the season.  You 
+          should have been there... it was 
+          fantastic.
+
+                    BIGGS
+          You ought to take it a little easy 
+          Luke.  You may be the hottest 
+          bushpilot this side of Mos Eisley, 
+          but those little Skyhoppers are 
+          dangerous.  Keep it up, and one day, 
+          whammo, you're going to be nothing 
+          more than a dark spot on the down 
+          side of a canyon wall.
+
+                    LUKE
+          Look who's talking.  Now that 
+          you've been around those giant 
+          starships you're beginning to sound 
+          like my uncle. You've gotten soft 
+          in the city...
+
+                    BIGGS
+          I've missed you kid.
+
+                    LUKE
+          Well, things haven't been the same 
+          since you left, Biggs.  It's been 
+          so...quiet.
+
+Biggs looks around then leans close to Luke.
+
+                    BIGGS
+          Luke, I didn't come back just to 
+          say goodbye...  I shouldn't tell 
+          you this, but you're the only one 
+          I can trust... and if I don't come 
+          back, I want somebody to know.
+
+Luke's eyes are wide with Biggs' seriousness and loyalty.
+
+                    LUKE
+          What are you talking about?
+
+                    BIGGS
+          I made some friends at the Academy. 
+               (he whispers)
+          ... when our frigate goes to one 
+          of the central systems, we're going 
+          to jump ship and join the Alliance...
+
+Luke, amazed and stunned, is almost speechless.
+
+                    LUKE
+          Join the Rebellion?!  Are you 
+          kidding!  How?
+
+                    BIGGS
+          Quiet down will ya!  You got a 
+          mouth bigger than a meteor crater!
+
+                    LUKE
+          I'm sorry.  I'm quiet. 
+               (he whispers) 
+          Listen how quiet I am.  You can 
+          barely hear me...
+
+Biggs shakes his head angrily and then continues.
+
+                    BIGGS
+          My friend has a friend on Bestine 
+          who might help us make contact.
+
+                    LUKE
+          YouÕre crazy!  You could wander 
+          around forever trying to find them.
+
+                    BIGGS
+          I know it's a long shot, but if 
+          I don't find them I'll do what I 
+          can on my own...  It's what we 
+          always talked about.  Luke, I'm 
+          not going to wait for the Empire to 
+          draft me into service.  The Rebellion 
+          is spreading and I want to be on the 
+          right side - the side I believe in. 
+
+                    LUKE
+          And I'm stuck here...
+
+                    BIGGS
+          I thought you were going to the 
+          Academy next term.  You'll get your 
+          chance to get off this rock.
+
+                    LUKE
+          Not likely!  I had to cancel my 
+          application.  There has been a lot 
+          of unrest among the Sand People since 
+          you left... they've even raided 
+          the outskirts of Anchorhead.
+
+                    BIGGS
+          Your uncle could hold off a whole 
+          colony of Sand People with one blaster.
+
+                    LUKE
+          I know, but he's got enough vaporators 
+          going to make the place pay off.  He 
+          needs me for just one more season.  
+          I can't leave him now.
+
+                    BIGGS
+          I feel for you, Luke, you're going 
+          to have to learn what seems to be 
+          important or what really is important.  
+          What good is all your uncle's work if 
+          it's taken over by the Empire?...  You 
+          know they're starting to nationalize 
+          commerce in the central systems...
+          it won't be long before your uncle 
+          is merely a tenant, slaving for the 
+          greater glory of the Empire.
+
+                    LUKE
+          It couldn't happen here.  You said 
+          it yourself.  The Empire won't bother 
+          with this rock.
+
+                    BIGGS
+          Things always change.
+
+                    LUKE
+          I wish I was going...  Are you 
+          going to be around long? 
+
+                    BIGGS
+          No, I'm leaving in the morning...
+
+                    LUKE
+          Then I guess I won't see you.
+
+                    BIGGS
+          Maybe someday...  I'll keep a 
+          lookout.
+
+                    LUKE
+          Well, I'll be at the Academy next 
+          season... after that who knows.  I 
+          won't be drafted into the Imperial 
+          Starfleet that's for sure...  Take 
+          care of yourself, you'll always be 
+          the best friend I've got.
+
+                    BIGGS
+          So long, Luke.
+
+Biggs turns away from his old friend and heads back towards the power station.
+
+
+EXT. TATOOINE - ROCK CANYON - SUNSET
+
+The gargantuan rock formations are shrouded in a strange
+foreboding mist and the ominous sounds of unearthly creatures fill the air.  Artoo moves cautiously through the creepy rock canyon, inadvertently making a loud clicking noise as he goes.  He hears a distant, hard, metallic sound and stops for a moment.  Convinced he is alone, he continues on his way.  
+
+In the distance, a pebble tumbles down the steep canyon wall and a small dark figure darts into the shadows.  A little further up the canyon a slight flicker of light reveals a pair of eyes in the dark recesses only a few feet from the narrow path.  
+
+The unsuspecting robot waddles along the rugged trail until suddenly, out of nowhere, a powerful magnetic ray shoots out of the rocks and engulfs him in an eerie glow.  
+
+He manages one short electronic squeak before he topples over onto his back.  His bright computer lights flicker off, then on, then off again.  Out of the rocks scurry three Jawas, no taller than Artoo.  They holster strange and complex weapons as they cautiously approach the robot.  They wear grubby cloaks and their faces are shrouded so that only their glowing yellow eyes can be seen.  They hiss and make odd guttural sounds as they heave the heavy robot onto their shoulders and carry him off down the trail. 
+
+
+EXT. TATOOINE - ROCK CANYON - SANDCRAWLER - SUNSET
+
+The eight Jawas carry Artoo out of the canyon to a huge tank-like vehicle the size of a four-story house.  They weld a small disk on the side of Artoo and then put him under a large tube on the side of the vehicle and the little robot is sucked into the giant machine.  
+
+The filthy little Jawas scurry like rats up small ladders and enter the main cabin of the behemoth transport.
+
+
+INT. SANDCRAWLER - HOLD AREA
+
+It is dim inside the hold area of the Sandcrawler.  Artoo switches on a small floodlight on his forehead and stumbles around the scrap heap.  The narrow beam swings across rusty metal rocket parts and an array of grotesquely twisted and maimed astro-robots.  He lets out a pathetic electronic whimper and stumbles off toward what appears to be a door at the end of the chamber.
+
+
+INT. SANDCRAWLER - PRISON AREA
+   
+Artoo enters a wide room with a four-foot ceiling.  In the middle of the scrap heap sit a dozen or so robots of various shapes and sizes.  Some are engaged in electronic conversation, while others simply mill about.  A voice of recognition calls out from the gloom.
+
+                    THREEPIO
+          Artoo-Detoo!  It's you!  It's you!
+
+A battered Threepio scrambles up to Artoo and embraces him.
+
+
+EXT. TATOOINE - ROCK CANYON - SANDCRAWLER - SUNSET
+
+The enormous Sandcrawler lumbers off toward the magnificent twin suns, which are slowly setting over a distant mountain ridge.
+
+
+EXT. TATOOINE - DESERT - DAY
+
+Four Imperial stormtroopers mill about in front of the half buried lifepod that brought Artoo and Threepio to Tatooine.  A trooper yells to an officer some distance away.
+
+                    FIRST TROOPER
+          Someone was in the pod.  The 
+          tracks go off in this direction. 
+
+A second trooper picks up a small bit of metal out of the sand and gives it to the first trooper.
+
+                    SECOND TROOPER
+          Look, sir - droids.
+
+
+EXT. TATOOINE - DUNES
+
+The Sandcrawler moves slowly down a great sand dune.
+
+
+INT. SANDCRAWLER
+
+Threepio and Artoo noisily bounce along inside the cramped prison chamber.  Artoo appears to be shut off.
+
+                    THREEPIO
+          Wake up!  Wake up!
+
+Suddenly the shaking and bouncing of the Sandcrawler stops, creating quite a commotion among the mechanical men. Threepio's fist bangs the head of Artoo whose computer lights pop on as he begins beeping.  At the far end of the long chamber a hatch opens, filling the chamber with blinding white light. a dozen or so Jawas make their way through the odd assortment of robots.
+
+                    THREEPIO
+          We're doomed.
+
+A Jawa starts moving toward them.
+
+                    THREEPIO
+          Do you think they'll melt us down?
+
+Artoo responds, making beeping sounds.
+
+                    THREEPIO
+          Don't shoot!  Don't shoot!  Will 
+          this never end?
+
+
+EXT. TATOOINE - DESERT - LARS HOMESTEAD - AFTERNOON
+
+The Jawas mutter gibberish as they busily line up their battered captives, including Artoo and Threepio, in front of the enormous Sandcrawler, which is parked beside a small homestead consisting of three large holes in the ground surrounded by several tall moisture vaporators and one small adobe block house.
+
+The Jawas scurry around fussing over the robots, straightening them up or brushing some dust from a dented metallic elbow.  The shrouded little creatures smell horribly, attracting small insects to the dark areas when their mouths and nostrils should be.
+
+Out of the shadows of a dingy side-building limps Owen Lars, a large burly man in his mid-fifties.  His reddish eyes are sunken in a dust-covered face.  As the farmer carefully inspects each of the robots, he is closely followed by his slump-shouldered nephew, Luke Skywalker.  One of the vile little Jawas walks ahead of the farmer spouting an animated sales pitch in a queer, unintelligible language.
+
+A voice calls out from one of the huge holes that form the homestead.  Luke goes over to the edge and sees his Aunt Beru standing in the main courtyard.
+
+                    BERU
+          Luke, tell Owen that if he gets 
+          a translator to be sure it speaks 
+          Bocce.
+
+                    LUKE
+          It looks like we don't have much 
+          of a choice but I'll remind him.
+
+Luke returns to his uncle as they look over the equipment for sale with the Jawa leader.
+
+                    OWEN
+          I have no need for a protocol droid.
+
+                    THREEPIO
+               (quickly)
+          Sir - not in an environment such 
+          as this - that's why I've also 
+          been programmed for over thirty 
+          secondary functions that...
+
+                    OWEN
+          What I really need is a droid 
+          that understands the binary 
+          languages of moisture vaporators.
+
+                    THREEPIO
+          Vaporators!  Sir - My first job 
+          was programming binary load lifters
+          ... very similar to your vaporators.  
+          You could say...
+
+                    OWEN
+          Do you speak Bocce?
+
+                    THREEPIO
+          Of course I can, sir.  It's like 
+          a second language for me...  I'm 
+          as fluent in Bocce...
+
+                    OWEN
+          All right; shut up! 
+               (turning to Jawa) 
+          I'll take this one.
+
+                    THREEPIO
+          Shutting up, sir.
+
+                    OWEN
+          Luke, take these two over to 
+          the garage, will you?  I want 
+          you to have both of them cleaned 
+          up before dinner.
+
+                    LUKE
+          But I was going into Toshi Station 
+          to pick up some power converters...
+
+                    OWEN
+          You can waste time with your 
+          friends when your chores are 
+          done.  Now, come on, get to it!
+
+                    LUKE
+          All right, come on!  And the 
+          red one, come on.  Well, come on, 
+          Red, let's go.
+
+As the Jawas start to lead the three remaining robots back into the Sandcrawler, Artoo lets out a pathetic little beep and starts after his old friend Threepio. He is restrained by a slimy Jawa, who zaps him with a control box.
+
+Owen is negotiating with the head Jawa.  Luke and the two robots start for the garage when a plate pops off the head of the red astro-droid, throwing parts all over the ground.  He adjusts the astro-droid's head plate and it sparks wildly.
+
+                    LUKE
+          Uncle Owen...
+
+                    OWEN
+          Yeah?
+
+                    LUKE
+          This R2 unit has a bad motivator.  
+          Look!
+
+                    OWEN
+               (to the head Jawa)
+          Hey, what're you trying to push 
+          on us?
+
+The Jawa goes into a loud spiel.  Meanwhile, Artoo has sneaked out of line and is moving up and down trying to attract attention. He lets out with a low whistle.  Threepio taps Luke on the shoulder.
+
+                    THREEPIO
+               (pointing to Artoo)
+          Excuse me, sir, but that R2 unit 
+          is in prime condition.  A real 
+          bargain.
+
+                    LUKE
+          Uncle Owen...
+
+                    OWEN
+          Yeah?
+
+                    LUKE
+          What about that one?
+
+                    OWEN
+               (to Jawa)
+          What about that blue one?  We'll 
+          take that one.
+
+With a little reluctance the scruffy dwarf trades the damaged astro-droid for Artoo.
+
+                    LUKE
+          Yeah, take it away.
+
+                    THREEPIO
+          Uh, I'm quite sure you'll be very 
+          pleased with that one, sir.  He 
+          really is in first-class condition.  
+          I've worked with him before.  Here 
+          he comes.
+
+Owen pays off the whining Jawa and the two robots trudge off toward a grimy homestead entry.
+
+                    LUKE
+          Okay, let's go.
+
+                    THREEPIO
+               (to Artoo)
+          Now, don't forget this!  Why I 
+          should stick my neck out for you 
+          is quite beyond my capacity!
+
+
+INT. LARS HOMESTEAD - GARAGE AREA - LATE AFTERNOON
+
+The garage is cluttered and worn, but a friendly peaceful atmosphere permeates the low gray chamber.  Threepio lowers himself into a large tub filled with warm oil.  Near the battered Landspeeder little Artoo rests on a large battery with a cord to his face.
+
+                    THREEPIO
+          Thank the maker!  This oil bath 
+          is going to feel so good.  I've 
+          got such a bad case of dust 
+          contamination, I can barely move!
+
+Artoo beeps a muffled reply.  Luke seems to be lost in thought as he runs his hand over the damaged fin of a small two-man skyhopper spaceship resting in a low hangar off the garage.  Finally Luke's frustrations get the better of him and he slams a wrench across the workbench.
+
+                    LUKE
+          It just isn't fair.  Oh, Biggs is 
+          right.  I'm never gonna get out 
+          of here!
+
+                    THREEPIO
+          Is there anything I might do to 
+          help? 
+
+Luke glances at the battered robot.  A bit of his anger drains and a tiny smile creeps across his face.
+
+                    LUKE
+          Well, not unless you can alter 
+          time, speed up the harvest, or 
+          teleport me off this rock!
+
+                    THREEPIO
+          I don't think so, sir.  I'm only 
+          a droid and not very knowledgeable 
+          about such things.  Not on this 
+          planet, anyways.  As a matter of 
+          fact, I'm not even sure which 
+          planet I'm on.
+
+                    LUKE
+          Well, if there's a bright center 
+          to the universe, you're on the 
+          planet that it's farthest from.
+
+                    THREEPIO
+          I see, sir.
+
+                    LUKE
+          Uh, you can call me Luke.
+
+                    THREEPIO
+          I see, sir Luke.
+
+                    LUKE
+               (laughing)
+          Just Luke.
+
+                    THREEPIO
+          And I am See-Threepio, human-cyborg 
+          relations, and this is my counterpart, 
+          Artoo-Detoo.
+
+                    LUKE
+          Hello.
+
+Artoo beeps in response.  Luke unplugs Artoo and begins to scrape several connectors on the robot's head with a chrome pick.  Threepio climbs out of the oil tub and begins wiping oil from his bronze body.
+
+                    LUKE
+          You got a lot of carbon scoring 
+          here.  It looks like you boys have 
+          seen a lot of action.
+
+                    THREEPIO
+          With all we've been through, 
+          sometimes I'm amazed we're in as 
+          good condition as we are, what 
+          with the Rebellion and all.
+
+                    LUKE
+          You know of the Rebellion against 
+          the Empire?
+
+                    THREEPIO
+          That's how we came to be in your 
+          service, if you take my meaning, 
+          sir.
+
+                    LUKE
+          Have you been in many battles?
+
+                    THREEPIO
+          Several, I think.  Actually, 
+          there's not much to tell.  I'm 
+          not much more than an interpreter, 
+          and not very good at telling stories.  
+          Well, not at making them interesting, 
+          anyways.
+
+Luke struggles to remove a small metal fragment from Artoo's neck joint.  He uses a larger pick.
+
+                    LUKE
+          Well, my little friend, you've 
+          got something jammed in here real 
+          good.  Were you on a starcruiser or...
+
+The fragment breaks loose with a snap, sending Luke tumbling head over heels.  He sits up and sees a twelve-inch three-dimensional hologram of Leia Organa, the Rebel senator, being projected from the face of little Artoo.  The image is a rainbow of colors as it flickers and jiggles in the dimly lit garage.  Luke's mouth hangs open in awe.
+
+                    LEIA
+          Help me, Obi-Wan Kenobi.  You're
+          my only hope.
+
+                    LUKE
+          What's this?
+
+Artoo looks around and sheepishly beeps an answer for Threepio to translate.  
+
+Leia continues to repeat the sentence fragment over and over.
+
+                    THREEPIO
+          What is what?!?  He asked you a 
+          question...
+               (pointing to Leia)
+          What is that?
+
+Artoo whistles his surprise as he pretends to just notice the hologram.  He looks around and sheepishly beeps an answer for Threepio to translate.  Leia continues to repeat the sentence fragment over and over.
+
+                    LEIA
+          Help me, Obi-Wan Kenobi.  You're 
+          my only hope.  Help me, Obi-Wan 
+          Kenobi.  You're my only hope.
+
+                    THREEPIO
+          Oh, he says it's nothing, sir.  
+          Merely a malfunction.  Old data.  
+          Pay it no mind.
+
+Luke becomes intrigued by the beautiful girl.
+
+                    LUKE
+          Who is she?  She's beautiful.
+
+                    THREEPIO
+          I'm afraid I'm not quite sure, sir.
+
+                    LEIA
+          Help me, Obi-Wan Kenobi...
+
+                    THREEPIO
+          I think she was a passenger on our 
+          last voyage.  A person of some 
+          importance, sir - I believe.  Our 
+          captain was attached to...
+
+                    LUKE
+          Is there more to this recording?
+
+Luke reaches out for Artoo but he lets out several frantic squeaks and a whistle.
+
+                    THREEPIO
+          Behave yourself, Artoo.  You're 
+          going to get us in trouble.  
+          It's all right, you can trust 
+          him.  He's our new master.
+
+Artoo whistles and beeps a long message to Threepio.
+
+                    THREEPIO
+          He says he's the property of Obi-
+          Wan Kenobi, a resident of these 
+          parts.  And it's a private message 
+          for him.  Quite frankly, sir, I 
+          don't know what he's talking 
+          about.  Our last master was Captain 
+          Antilles, but with what we've been 
+          through, this little R2 unit has 
+          become a bit eccentric.
+
+                    LUKE
+          Obi-Wan Kenobi?  I wonder if he 
+          means old Ben Kenobi?
+
+                    THREEPIO
+          I beg your pardon, sir, but do you 
+          know what he's talking about?
+
+                    LUKE
+          Well, I don't know anyone named 
+          Obi-Wan, but old Ben lives out 
+          beyond the dune sea.  He's kind 
+          of a strange old hermit.
+
+Luke's gazes at the beautiful young princess for a few moments. 
+
+                    LUKE
+          I wonder who she is.  It sounds 
+          like she's in trouble.  I'd better 
+          play back the whole thing.
+
+Artoo beeps something to Threepio.
+
+                    THREEPIO
+          He says the restraining bolt has 
+          short circuited his recording 
+          system.  He suggests that if you 
+          remove the bolt, he might be able 
+          to play back the entire recording.
+
+Luke looks longingly at the lovely, little princess and hasn't really heard what Threepio has been saying.
+
+                    LUKE
+          H'm?  Oh, yeah, well, I guess 
+          you're too small to run away on me 
+          if I take this off!  Okay.
+
+Luke takes a wedged bar and pops the restraining bolt off Artoo's side.
+
+                    LUKE
+          There you go.
+
+The princess immediately disappears.
+
+                    LUKE
+          Well, wait a minute.  Where'd she 
+          go?  Bring her back!  Play back the 
+          entire message.
+
+Artoo beeps an innocent reply as Threepio sits up in embarrassment.
+
+                    THREEPIO
+          What message?  The one youÕve just
+          been playing.  The one you're 
+          carrying inside your rusty innards! 
+
+A women's voice calls out from another room.
+
+                    AUNT BERU
+          Luke?  Luke!  Come to dinner!
+
+Luke stands up and shakes his head at the malfunctioning robot.
+
+                    LUKE
+          All right, I'll be right there, 
+          Aunt Beru.
+
+                    THREEPIO
+          I'm sorry, sir, but he appears to 
+          have picked up a slight flutter.
+
+Luke tosses Artoo's restraining bolt on the workbench and hurries out of the room.
+
+                    LUKE
+          Well, see what you can do with 
+          him.  I'll be right back.
+
+                    THREEPIO
+               (to Artoo)
+          Just you reconsider playing that 
+          message for him.
+
+Artoo beeps in response.
+
+                    THREEPIO
+          No, I don't think he likes you 
+          at all.
+
+Artoo beeps.
+
+                    THREEPIO
+          No, I don't like you either.
+
+
+INT. LARS HOMESTEAD - DINING AREA
+
+Luke's Aunt Beru, a warm, motherly woman, fills a pitcher with blue fluid from a refrigerated container in the well-used kitchen.  She puts the pitcher on a tray with some bowls of food and starts for the dining area.
+
+Luke sits with his Uncle Owen before a table covered with steaming bowls of food as Aunt Beru carries in a bowl of red grain.
+
+                    LUKE
+          You know, I think that R2 unit 
+          we bought might have been stolen.
+
+                    OWEN
+          What makes you think that?
+
+                    LUKE
+          Well, I stumbled across a recording 
+          while I was cleaning him.  He says 
+          he belongs to someone called Obi-
+          Wan Kenobi.
+
+Owen is greatly alarmed at the mention of his name, but manages to control himself.
+
+                    LUKE
+          I thought he might have meant Ben.  
+          Do you know what he's talking 
+          about?  Well, I wonder if he's 
+          related to Ben.
+
+Owen breaks loose with a fit of uncontrolled anger.
+
+                    OWEN
+          That old man's just a crazy 
+          wizard.  Tomorrow I want you to 
+          take that R2 unit into Anchorhead 
+          and have its memory flushed.  
+          That'll be the end of it.  It 
+          belongs to us now.
+
+                    LUKE
+          But what if this Obi-Wan comes 
+          looking for him?
+
+                    OWEN
+          He won't, I don't think he exists 
+          any more.  He died about the same 
+          time as your father.
+
+                    LUKE
+          He knew my father?
+
+                    OWEN
+          I told you to forget it.  Your 
+          only concern is to prepare the new 
+          droids for tomorrow.  In the morning 
+          I want them on the south ridge 
+          working out those condensers.
+
+                    LUKE
+          Yes, sir.  I think those new droids 
+          are going to work out fine.  In fact, 
+          I, uh, was also thinking about our 
+          agreement about my staying on another 
+          season.  And if these new droids do 
+          work out, I want to transmit my 
+          application to the Academy this year.
+
+Owen's face becomes a scowl, although he tries to suppress it.
+
+                    OWEN
+          You mean the next semester before 
+          harvest?
+
+                    LUKE
+          Sure, there're more than enough 
+          droids.
+
+                    OWEN
+          Harvest is when I need you the 
+          most.  Only one more season.  
+          This year we'll make enough on 
+          the harvest so I'll be able to 
+          hire some more hands.  And then 
+          you can go to the Academy next 
+          year.
+
+Luke continues to toy with his food, not looking at his uncle.
+
+                    OWEN
+          You must understand I need you 
+          here, Luke.
+
+                    LUKE
+          But it's a whole 'nother year.
+
+                    OWEN
+          Look, it's only one more season.
+
+Luke pushes his half-eaten plate of food aside and stands.
+
+                    LUKE
+          Yeah, that's what you said last 
+          year when Biggs and Tank left.
+
+                    AUNT BERU
+          Where are you going?
+
+                    LUKE
+          It looks like I'm going nowhere.  
+          I have to finish cleaning those 
+          droids.
+
+Resigned to his fate, Luke paddles out of the room.  Owen mechanically finishes his dinner.
+
+                    AUNT BERU
+          Owen, he can't stay here forever.  
+          Most of his friends have gone.  
+          It means so much to him.
+
+                    OWEN
+          I'll make it up to him next year.  
+          I promise.
+
+                    AUNT BERU
+          Luke's just not a farmer, Owen.  
+          He has too much of his father in 
+          him.
+
+                    OWEN
+          That's what I'm afraid of.
+
+
+EXT. TATOOINE - LARS HOMESTEAD
+
+The giant twin suns of Tatooine slowly disappear behind a distant dune range.  Luke stands watching them for a few moments, then reluctantly enters the doomed entrance to the homestead.
+
+
+INT. LARS HOMESTEAD - GARAGE
+
+Luke enters the garage to discover the robots nowhere in sight.  He takes a small control box from his utility belt similar to the one the Jawas were carrying.  He activates the box, which creates a low hum, and Threepio, letting out a short yell, pops up from behind the Skyhopper spaceship.
+
+                    LUKE
+          What are you doing hiding there?
+
+Threepio stumbles forward, but Artoo is still nowhere in sight. 
+
+                    THREEPIO
+          It wasn't my fault, sir.  Please 
+          don't deactivate me.  I told him 
+          not to go, but he's faulty, 
+          malfunctioning; kept babbling on 
+          about his mission.
+
+                    LUKE
+          Oh, no!
+
+Luke races out of the garage followed by Threepio.
+
+
+EXT. TATOOINE - LARS HOMESTEAD
+
+Luke rushes out of the small doomed entry to the homestead and searches the darkening horizon for the small triped astro-robot.  Threepio struggles out of the homestead and on the salt flat as Luke scans the landscape with his electrobinoculars.
+
+                    THREEPIO
+          That R2 unit has always been a 
+          problem.  These astro-droids are 
+          getting quite out of hand.  Even 
+          I can't understand their logic at 
+          times. 
+
+                    LUKE
+          How could I be so stupid?  He's 
+          nowhere in sight.  Blast it!
+
+                    THREEPIO
+          Pardon me, sir, but couldn't we 
+          go after him?
+
+                    LUKE
+          It's too dangerous with all the 
+          Sand People around.  We'll have 
+          to wait until morning.
+
+Owen yells up from the homestead plaza.
+
+                    OWEN
+          Luke, I'm shutting the power down 
+          for the night.
+
+                    LUKE
+          All right, I'll be there in a few 
+          minutes.  Boy, am I gonna get it.
+
+He takes one final look across the dim horizon.
+
+                    LUKE
+          You know that little droid is 
+          going to cause me a lot of trouble.
+
+                    THREEPIO
+          Oh, he excels at that, sir.
+
+
+INT. LARS HOMESTEAD - PLAZA
+
+Morning slowly creeps into the sparse but sparkling oasis of the open courtyard. The idyll is broken be the yelling of Uncle Owen, his voice echoing throughout the homestead.
+
+                    OWEN
+          Luke?  Luke?  Luke?  Where could 
+          he be loafing now!
+
+
+INT. LARS HOMESTEAD - KITCHEN
+
+The interior of the kitchen is a worm glow as Aunt Beru prepares the morning breakfast. Owen enters in a huff.
+
+                    OWEN
+          Have you seen Luke this morning?
+
+                    AUNT BERU
+          He said he had some things to 
+          do before he started today, so 
+          he left early.
+
+                    OWEN
+          Uh?  Did he take those two new 
+          droids with him?
+
+                    AUNT BERU
+          I think so.
+
+                    OWEN
+          Well, he'd better have those units 
+          in the south range repaired be
+          midday or there'll be hell to pay!
+
+
+EXT. TATOOINE - DESERT WASTELAND - LUKE'S SPEEDER - DAY
+
+The rock and sand of the desert floor are a blur as Threepio pilots the sleek Landspeeder gracefully across the vast wasteland. 
+
+
+INT./EXT. LUKE'S SPEEDER - DESERT WASTELAND - TRAVELING - DAY
+
+Luke leans over the back of the speeder and adjusts something in the motor compartment.
+
+                    LUKE
+               (yelling) 
+          How's that.
+
+Threepio signals that is fine and Luke turns back into the wind-whipped cockpit and pops the canopy shut.
+
+                    LUKE
+          Old Ben Kenobi lives out in this 
+          direction somewhere, but I don't 
+          see how that R2 unit could have 
+          come this far.  We must have 
+          missed him.  Uncle Owen isn't 
+          going to take this very well.
+
+                    THREEPIO
+          Sir, would it help if you told 
+          him it was my fault.
+
+                    LUKE
+               (brightening) 
+          Sure.  He needs you.  He'd 
+          probably only deactivate you for 
+          a day or so...
+
+                    THREEPIO
+          Deactivate!  Well, on the other 
+          hand if you hadn't removed his 
+          restraining bolt...
+
+                    LUKE
+          Wait, there's something dead ahead 
+          on the scanner.  It looks like our 
+          droid... hit the accelerator.
+
+
+EXT. TATOOINE - ROCK MESA - DUNE SEA - COASTLINE - DAY
+
+From high on a rock mesa, the tiny Landspeeder can be seen gliding across the desert floor.  Suddenly in the foreground two weather-beaten Sand People shrouded in their grimy desert cloaks peer over the edge of the rock mesa.  One of the marginally human creatures raises a long ominous laser rifle and points it at the speeder but the second creature grabs the gun before it can be fired.
+
+The Sand People, or Tusken Raiders as they're sometimes called, speak in a coarse barbaric language as they get into an animated argument.  The second Tusken Raider seems to get in the final word and the nomads scurry over the rocky terrain.
+
+
+EXT. TATOOINE - ROCK MESA - CANYON
+
+The Tusken Raiders approaches two large Banthas standing tied to a rock.  The monstrous, bear-like creatures are as large as elephants, with huge red eyes, tremendous looped horns, and long, furry, dinosaur-like tails.  The Tusken Raiders mount saddles strapped to the huge creatures' shaggy backs and ride off down the rugged bluff.
+
+
+EXT. TATOOINE - ROCK CANYON - FLOOR
+
+The speeder is parked on the floor of a massive canyon.  Luke, with his long laser rifle slung over his shoulder, stands before little Artoo.
+
+                    LUKE
+          Hey, whoa, just where do you 
+          think you're going?
+
+The little droid whistles a feeble reply, as Threepio poses menacingly behind the little runaway.
+
+                    THREEPIO
+          Master Luke here is your rightful 
+          owner.  We'll have no more of this 
+          Obi-Wan Kenobi jibberish... and don't 
+          talk to me of your mission, either.  
+          You're fortunate he doesn't blast 
+          you into a million pieces right here.
+
+                    LUKE
+          Well, come on. It's getting late.  
+          I only hope we can get back before 
+          Uncle Owen really blows up.
+
+                    THREEPIO
+          If you don't mind my saying so, 
+          sir, I think you should deactivate 
+          the little fugitive until you've 
+          gotten him back to your workshop.
+
+                    LUKE
+          No, he's not going to try anything.
+
+Suddenly the little robot jumps to life with a mass of frantic whistles and screams.
+
+                    LUKE
+          What's wrong with him now?
+
+                    THREEPIO
+          Oh my... sir, he says there are 
+          several creatures approaching from 
+          the southeast.
+
+Luke swings his rifle into position and looks to the south.
+
+                    LUKE
+          Sand People!  Or worse!  Come on, 
+          let's have a look.  Come on.
+
+
+EXT. TATOOINE - ROCK CANYON - RIDGE - DAY
+
+Luke carefully makes his way to the top of a rock ridge and scans the canyon with his electrobinoculars.  
+
+He spots the two riderless Banthas.  Threepio struggles up behind the young adventurer.
+
+                    LUKE
+          There are two Banthas down there 
+          but I don't see any... wait a 
+          second, they're Sand People all 
+          right.  I can see one of them now.
+
+Luke watches the distant Tusken Raider through his electrobinoculars.  Suddenly something huge moves in front of his field of view.  Before Luke or Threepio can react, a large, gruesome Tusken Raider looms over them.  Threepio is startled and backs away, right off the side if the cliff.  He can be heard for several moments as he clangs, bangs and rattles down the side of the mountain.
+
+The towering creature brings down his curved, double-pointed gaderffii - the dreaded axe blade that has struck terror in the heart of the local settlers.  But Luke manages to block the blow with his laser rifle, which is smashed to pieces.  The terrified farm boy scrambles backward until he is forced to the edge of a deep crevice.  The sinister Raider stands over him with his weapon raised and lets out a horrible shrieking laugh.
+
+
+EXT. TATOOINE - ROCK CANYON - FLOOR - DAY
+
+Artoo forces himself into the shadows of a small alcove in the rocks as the vicious Sand People walk past carrying the inert Luke Skywalker, who is dropped in a heap before the speeder.  The Sand People ransack the speeder, throwing parts and supplies in all directions.  Suddenly they stop.  Then everything is quiet for a few moments.   A great howling moan is heard echoing throughout the canyon which sends the Sand People fleeing in terror.
+
+Artoo moves even tighter into the shadows as the slight swishing sound that frightened off the Sand People grows even closer, until a shabby old desert-rat-of-a-man appears and leans over Luke.  His ancient leathery face, cracked and weathered by exotic climates is set off by dark, penetrating eyes and a scraggly white beard.  Ben Kenobi squints his eyes as he scrutinizes the unconscious farm boy.  Artoo makes a slight sound and Ben turns and looks right at him.
+
+                    BEN
+          Hello there!  Come here my 
+          little friend.  Don't be afraid.
+
+Artoo waddles over to where Luke lies crumpled in a heap and begins to whistle and beep his concern.  Ben puts his hand on Luke's forehead and he begins to come around.
+
+                    BEN
+          Don't worry, he'll be all right.
+
+                    LUKE
+          What happened?
+
+                    BEN
+          Rest easy, son, you've had a busy 
+          day.  You're fortunate you're 
+          still in one piece.
+
+                    LUKE
+          Ben?  Ben Kenobi!  Boy, am I 
+          glad to see you! 
+
+                    BEN
+          The Jundland Wastes are not to be 
+          traveled lightly.  Tell me, young 
+          Luke, what brings you out this far?
+
+                    LUKE
+          Oh, this little droid!  I think 
+          he's searching for his former master
+          ...  I've never seen such devotion 
+          in a droid before... there seems to
+          be no stopping him.  He claims to 
+          be the property of an Obi-Wan 
+          Kenobi.  Is he a relative of yours?  
+          Do you know who he's talking about?
+
+Ben ponders this for a moment, scratching his scruffy beard.
+
+                    BEN
+          Obi-Wan Kenobi... Obi-Wan?  Now 
+          thats a name I haven't heard in 
+          a long time... a long time.
+
+                    LUKE
+          I think my uncle knew him.  He 
+          said he was dead.
+
+                    BEN
+          Oh, he's not dead, no... not yet.
+
+                    LUKE
+          You know him!
+
+                    BEN
+          Well of course, of course I know 
+          him.  He's me!  I haven't gone 
+          by the name Obi-Wan since oh, 
+          before you were born.
+
+                    LUKE
+          Then the droid does belong to you.
+
+                    BEN
+          Don't seem to remember ever owning 
+          a droid.  Very interesting... 
+
+He suddenly looks up at the overhanging cliffs.
+
+                    BEN
+          I think we better get indoors.  
+          The Sand People are easily startled 
+          but they will soon be back and in 
+          greater numbers.
+
+Luke sits up and rubs his head.  Artoo lets out a pathetic beep causing Luke to remember something.  He looks around.
+
+                    LUKE
+          ... Threepio!
+
+
+EXT. TATOOINE - SAND PIT - ROCK MESA - DAY
+
+Little Artoo stands at the edge of a large sand pit and begins to chatter away in electronic whistles and beeps.  Luke and Ben stand over a very dented and tangled Threepio lying half buried in the sand.  One of his arms has broken off.
+
+Luke tries to revive the inert robot by shaking him and then flips a hidden switch on his back several times until finally the mechanical man's systems turn on.
+
+                    THREEPIO
+          Where am I?  I must have taken 
+          a bad step...
+
+                    LUKE
+          Can you stand?  We've got to get 
+          out of here before the Sand People 
+          return.
+
+                    THREEPIO
+          I don't think I can make it.  You 
+          go on, Master Luke.  There's no 
+          sense in you risking yourself on 
+          my account.  I'm done for.
+        
+Artoo makes a beeping sound.
+
+                    LUKE
+          No, you're not.  What kind of talk 
+          is that?
+
+Luke and Ben help the battered robot to his feet.  Little Artoo watches from the top of the pit.  Ben glances around suspiciously.  Sensing something, he stands up and sniffs the air.
+
+                    BEN
+          Quickly, son... they're on the 
+          move.
+
+
+INT. KENOBI'S DWELLING
+
+The small, spartan hovel is cluttered with desert junk but still manages to radiate an air of time-worn comfort and security.  Luke is in one corner repairing Threepio's arm, as old Ben sits thinking.
+
+                    LUKE
+          No, my father didn't fight in the 
+          wars.  He was a navigator on a 
+          spice freighter.
+
+                    BEN
+          That's what your uncle told you.  
+          He didn't hold with your father's 
+          ideals.  Thought he should have 
+          stayed here and not gotten involved.
+
+                    LUKE
+          You fought in the Clone Wars?
+
+                    BEN
+          Yes, I was once a Jedi Knight 
+          the same as your father.
+
+                    LUKE
+          I wish I'd known him.
+
+                    BEN
+          He was the best star-pilot in 
+          the galaxy, and a cunning warrior.  
+          I understand you've become quite 
+          a good pilot yourself.  And he was 
+          a good friend.  Which reminds me...
+
+Ben gets up and goes to a chest where he rummages around.  As Luke finishes repairing Threepio and starts to fit the restraining bolt back on, Threepio looks at him nervously.  Luke thinks about the bolt for a moment then puts it on the table.  Ben shuffles up and presents Luke with a short handle with several electronic gadgets attached to it.
+
+                    BEN
+          I have something here for you.  
+          Your father wanted you to have 
+          this when you were old enough, 
+          but your uncle wouldn't allow it.  
+          He feared you might follow old 
+          Obi-Wan on some damned-fool 
+          idealistic crusade like your 
+          father did. 
+
+                    THREEPIO
+          Sir, if you'll not be needing me, 
+          I'll close down for awhile.
+
+                    LUKE
+          Sure, go ahead.
+
+Ben hands Luke the saber.
+
+                    LUKE
+          What is it?
+
+                    BEN
+          Your fathers lightsaber.  This 
+          is the weapon of a Jedi Knight.  
+          Not as clumsy or as random as a 
+          blaster.
+                
+Luke pushes a button on the handle.  A long beam shoots out about four feet and flickers there.  The light plays across the ceiling.
+
+                    BEN
+          An elegant weapon for a more
+          civilized time.  For over a 
+          thousand generations the Jedi 
+          Knights were the guardians of 
+          peace and justice in the Old 
+          Republic.  Before the dark times, 
+          before the Empire.
+
+Luke hasn't really been listening.
+
+                    LUKE
+          How did my father die?
+
+                    BEN
+          A young Jedi named Darth Vader, 
+          who was a pupil of mine until he 
+          turned to evil, helped the Empire 
+          hunt down and destroy the Jedi 
+          Knights.  He betrayed and murdered 
+          your father.  Now the Jedi are all 
+          but extinct.  Vader was seduced 
+          by the dark side of the Force.
+
+                    LUKE
+          The Force?
+
+                    BEN
+          Well, the Force is what gives the 
+          Jedi his power.  It's an energy 
+          field created by all living things.  
+          It surrounds us and penetrates us.  
+          It binds the galaxy together.
+
+Artoo makes beeping sounds.
+
+                    BEN
+          Now, let's see if we can't figure 
+          out what you are, my little 
+          friend.  And where you come from.
+
+                    LUKE
+          I saw part of the message he was...
+
+Luke is cut short as the recorded image of the beautiful young Rebel princess is projected from Artoo's face.
+
+                    BEN
+          I seem to have found it.
+
+Luke stops his work as the lovely girl's image flickers before his eyes.
+
+                    LEIA
+          General Kenobi, years ago you 
+          served my father in the Clone 
+          Wars.  Now he begs you to help 
+          him in his struggle against the 
+          Empire.  I regret that I am unable 
+          to present my father's request to 
+          you in person, but my ship has 
+          fallen under attack and I'm afraid 
+          my mission to bring you to 
+          Alderaan has failed.  I have 
+          placed information vital to the 
+          survival of the Rebellion into 
+          the memory systems of this R2 
+          unit.  My father will know how 
+          to retrieve it.  You must see this 
+          droid safely delivered to him on 
+          Alderaan.  This is our most 
+          desperate hour.  Help me, Obi-Wan 
+          Kenobi, you're my only hope.
+
+There is a little static and the transmission is cut short.  Old Ben leans back and scratches his head.  He silently puffs on a tarnished chrome water pipe.  Luke has stars in his eyes.
+
+                    BEN
+          You must learn the ways of the 
+          Force if you're to come with me 
+          to Alderaan.
+
+                    LUKE
+               (laughing) 
+          Alderaan?  I'm not going to 
+          Alderaan.  I've got to go home.  
+          It's late, I'm in for it as it is.
+
+                    BEN
+          I need your help, Luke.  I'm getting 
+          too old for this sort of thing.
+          She needs your help.
+
+                    LUKE
+          I can't get involved!  I've got 
+          work to do!  It's not that I like 
+          the Empire.  I hate it!  But 
+          there's nothing I can do about it 
+          right now.  It's such a long way 
+          from here.
+
+                    BEN
+          That's your uncle talking.
+
+                    LUKE
+               (sighing) 
+          Oh, God, my uncle.  How am I ever 
+          going to explain this?
+
+                    BEN
+          Learn about the Force, Luke.
+
+                    LUKE
+          Look, I can take you as far as 
+          Anchorhead.  You can get a 
+          transport there to Mos Eisley 
+          or wherever you're going.
+
+                    BEN
+          You must do what you feel is 
+          right, of course.
+
+
+EXT. SPACE
+
+An Imperial Star Destroyer heads toward the evil planet-like battle station: the Death Star!
+
+
+INT. DEATH STAR - CONFERENCE ROOM
+
+Eight Imperial senators and generals sit around a black conference table.  Imperial stormtroopers stand guard around the room.  Commander Tagge, a young, slimy-looking general, is speaking.
+
+                    TAGGE
+          Until this battle station is 
+          fully operational we are vulnerable.  
+          The Rebel Alliance is too well 
+          equipped.  They're more dangerous 
+          than you realize.
+
+The bitter Admiral Motti twists nervously in his chair.
+
+                    MOTTI
+          Dangerous to your starfleet, 
+          Commander; not to this battle 
+          station!
+
+                    TAGGE
+          The Rebellion will continue to 
+          gain support in the Imperial 
+          Senate as long as....
+
+Suddenly all heads turn as Commander Tagge's speech is cut short and the Grand Moff Tarkin, governor of the Imperial outland regions, enters.  He is followed by his powerful ally, The Sith Lord, Darth Vader.  All of the generals stand and bow before the thin, evil-looking governor as he takes his place at the head of the table.  The Dark Lord stands behind him.
+
+                    TARKIN
+          The Imperial Senate will no longer 
+          be of any concern to us.  I've 
+          just received word that the Emperor 
+          has dissolved the council permanently.  
+          The last remnants of the Old Republic 
+          have been swept away.
+
+                    TAGGE
+          That's impossible!  How will the 
+          Emperor maintain control without 
+          the bureaucracy?
+
+                    TARKIN
+          The regional governors now have 
+          direct control over territories.  
+          Fear will keep the local systems 
+          in line.  Fear of this battle station.
+
+                    TAGGE
+          And what of the Rebellion?  If the 
+          Rebels have obtained a complete 
+          technical readout of this station, 
+          it is possible, however unlikely, 
+          that they might find a weakness and 
+          exploit it.
+
+                    VADER
+          The plans you refer to will soon 
+          be back in our hands.
+
+                    MOTTI
+          Any attack made by the Rebels 
+          against this station would be a 
+          useless gesture, no matter what 
+          technical data they've obtained.  
+          This station is now the ultimate 
+          power in the universe.  I suggest 
+          we use it!
+
+                    VADER
+          Don't be too proud of this 
+          technological terror you've 
+          constructed.  The ability to 
+          destroy a planet is insignificant 
+          next to the power of the Force.
+
+                    MOTTI
+          Don't try to frighten us with your 
+          sorcerer's ways, Lord Vader.  Your 
+          sad devotion to that ancient 
+          religion has not helped you conjure 
+          up the stolen data tapes, or given 
+          you clairvoyance enough to find the 
+          Rebel's hidden fort...
+
+Suddenly Motti chokes and starts to turn blue under Vader's spell.
+
+                    VADER
+          I find your lack of faith disturbing.
+
+                    TARKIN
+          Enough of this!  Vader, release 
+          him!
+
+                    VADER
+          As you wish.
+
+                    TARKIN
+          This bickering is pointless.  
+          Lord Vader will provide us with 
+          the location of the Rebel fortress 
+          by the time this station is 
+          operational.  We will then crush 
+          the Rebellion with one swift stroke.
+
+
+EXT. TATOOINE - WASTELAND
+
+The speeder stops before what remains of the huge Jawas Sandcrawler.  Luke and Ben walk among the smoldering rubble and scattered bodies.
+
+                    LUKE
+          It looks like Sand People did this, 
+          all right.  Look, here are gaffi 
+          sticks, bantha tracks.  It's 
+          just... I never heard of them 
+          hitting anything this big before.
+
+Ben is crouching in the sand studying the tracks.
+
+                    BEN
+          They didn't.  But we are meant to 
+          think they did.  These tracks are 
+          side by side.  Sand People always 
+          ride single file to hide there 
+          numbers.
+
+                    LUKE
+          These are the same Jawas that sold 
+          us Artoo and Threepio.
+
+                    BEN
+          And these blast points, too 
+          accurate for Sand People.  Only 
+          Imperial stormtroopers are so 
+          precise.
+
+                    LUKE
+          Why would Imperial troops want to 
+          slaughter Jawas?
+
+Luke looks back at the speeder where Artoo and Threepio are inspecting the dead Jawas, and put two and two together.
+
+                    LUKE
+          If they traced the robots here, 
+          they may have learned who they 
+          sold them to.  And that would 
+          lead them back home!
+
+Luke reaches a sudden horrible realization, then races for the speeder and jumps in.
+
+                    BEN
+          Wait, Luke!  It's too dangerous.
+ 
+Luke races off leaving Ben and the two robots alone with the burning Sandcrawler.
+
+
+EXT. TATOOINE - WASTELAND
+
+Luke races across the wasteland in his battered Landspeeder.
+
+
+EXT. TATOOINE - LARS HOMESTEAD
+
+The speeder roars up to the homestead.  Luke jumps out and runs to the smoking holes that were once his home.  Debris is scattered everywhere and it looks as if a great battle has taken place.
+
+                    LUKE
+          Uncle Owen!  Aunt Beru!  Uncle 
+          Owen!
+
+Luke stumbles around in a daze looking for his aunt and uncle.  Suddenly he comes upon their smoldering remains.  He is stunned, and cannot speak.  Hate replaces fear and a new resolve comes over him.
+
+
+EXT. SPACE
+
+Imperial TIE fighter races toward the Death Star.
+
+
+INT. DEATH STAR - DETENTION CORRIDOR
+
+Two stormtroopers open an electronic cell door and allow several Imperial guards to enter.  Princess Leia's face is filled with defiance, which slowly gives way to fear as a giant black torture robot enters, followed by Darth Vader.
+
+                    VADER
+          And, now Your Highness, we will 
+          discuss the location of your 
+          hidden Rebel base.
+
+The torture robot gives off a steady beeping sound as it approaches Princess Leia and extends one of its mechanical arms bearing a large hypodermic needle.  The door slides shut and the long cell block hallway appears peaceful.  The muffled screams of the Rebel princess are barely heard.
+
+
+EXT. TATOOINE - WASTELAND
+
+There is a large bonfire of Jawa bodies blazing in front of the sandcrawler as Ben and the robots finish burning the dead.  Luke drives up in the speeder and Ben walks over to him.
+
+                    BEN
+          There's nothing you could have 
+          done, Luke, had you been there.  
+          You'd have been killed, too, and 
+          the droids would now be in the 
+          hands of the Empire.
+
+                    LUKE
+          I want to come with you to Alderaan.  
+          There's nothing here for me now.  I 
+          want to learn the ways of the Force 
+          and become a Jedi like my father.
+
+
+EXT. TATOOINE - WASTELAND
+
+The Landspeeder with Luke, Artoo, Threepio, and Ben in it zooms across the desert. The speeder stops on a bluff overlooking the spaceport at Mos Eisley. It is a haphazard array of low, gray, concrete structures and semi-domes.  A harsh gale blows across the stark canyon floor.  Luke adjusts his goggles and walks to the edge of the craggy bluff where Ben is standing.
+
+                    BEN
+          Mos Eisley Spaceport.  You will 
+          never find a more wretched hive 
+          of scum and villainy.  We must be 
+          cautious.
+
+Ben looks over at Luke, who gives the old Jedi a determined smile.
+
+
+EXT. TATOOINE - MOS EISLEY - STREET
+
+The speeder is stopped on a crowded street by several combat-hardened stormtroopers who look over the two robots.  A Trooper questions Luke.
+
+                    TROOPER
+          How long have you had these droids?
+
+                    LUKE
+          About three or four seasons.
+
+                    BEN
+          They're for sale if you want them.
+
+                    TROOPER
+          Let me see your identification.
+
+Luke becomes very nervous as he fumbles to find his ID while Ben speaks to the Trooper in a very controlled voice.
+
+                    BEN
+          You don't need to see his 
+          identification.
+
+                    TROOPER
+          We don't need to see his 
+          identification.
+
+                    BEN
+          These are not the droids youÕre 
+          looking for.
+
+                    TROOPER
+          These are not the droids we're 
+          looking for.
+
+                    BEN
+          He can go about his business.
+
+                    TROOPER
+          You can go about your business.
+
+                    BEN
+               (to Luke) 
+          Move along.
+
+                    TROOPER
+          Move along.  Move along.
+
+
+EXT. TATOOINE - MOS EISLEY - STREET
+
+The speeder pulls up in front of a rundown blockhouse cantina on the outskirts of the spaceport.  Various strange forms of transport, including several unusual beasts of burden, are parked outside the bar.  A Jawa runs up and begins to fondle the speeder.
+
+                    THREEPIO
+          I can't abide these Jawas.  
+          Disgusting creatures.
+
+As Luke gets out of the speeder he tries to shoo the Jawa away.
+      
+                    LUKE
+          Go on, go on.  I can't understand 
+          how we got by those troopers.  I 
+          thought we were dead.
+
+                    BEN
+          The Force can have a strong 
+          influence on the weak-minded.  You 
+          will find it a powerful ally.
+
+                    LUKE
+          Do you really think we're going 
+          to find a pilot here that'll 
+          take us to Alderaan?
+
+                    BEN
+          Well, most of the best freighter 
+          pilots can be found here.  Only 
+          watch your step.  This place can 
+          be a little rough.
+
+                    LUKE
+          I'm ready for anything.
+
+                    THREEPIO
+          Come along, Artoo.
+
+
+INT. TATOOINE - MOS EISLEY - CANTINA
+
+The young adventurer and his two mechanical servants follow Ben Kenobi into the smoke-filled cantina.  The murky, moldy den is filled with a startling array of weird and exotic alien creatures and monsters at the long metallic bar.  At first the sight is horrifying.  One-eyed, thousand-eyed, slimy, furry, scaly, tentacled, and clawed creatures huddle over drinks.  Ben moves to an empty spot at the bar near a group of repulsive but human scum.  A huge, rough-looking Bartender stops Luke and the robots.
+
+                    BARTENDER
+          We don't serve their kind here!
+
+Luke still recovering from the shock of seeing so many outlandish creatures, doesn't quite catch the bartender's drift.
+
+                    LUKE
+          What?
+
+                    BARTENDER
+          Your droids. They'll have to wait 
+          outside.  We don't want them here.
+
+Luke looks at old Ben, who is busy talking to one of the Galactic pirates.  He notices several of the gruesome creatures along the bar are giving him a very unfriendly glare.
+
+Luke pats Threepio on the shoulder.
+
+                    LUKE
+          Listen, why don't you wait out 
+          by the speeder.  We don't want any 
+          trouble.
+
+                    THREEPIO
+          I heartily agree with you sir.
+
+Threepio and his stubby partner go outside and most of the creatures at the bar go back to their drinks.
+
+Ben is standing next to Chewbacca, an eight-foot-tall-savage-looking creature resembling a huge gray bushbaby monkey with fierce baboon-like fangs.  His large blue eyes dominate a fur-covered face and soften his otherwise awesome appearance.  Over his matted, furry body he wears two chrome bandoliers, and little else.  He is a two-hundred-year-old Wookiee and a sight to behold.
+
+Ben speaks to the Wookiee, pointing to Luke several times during his conversation and the huge creature suddenly lets out a horrifying laugh.  Luke is more than a little bit disconcerted and pretends not to hear the conversation between Ben and the giant Wookiee.
+
+Luke is terrified but tries not to show it.  He quietly sips his drink, looking over the crowd for a more sympathetic ear or whatever. 
+
+A large, multiple-eyed Creature gives Luke a rough shove.
+
+                    CREATURE
+          Negola dewaghi wooldugger?!?
+
+The hideous freak is obviously drunk.  Luke tries to ignore the creature and turns back on his drink.  A short, grubby Human and an even smaller rodent-like beast join the belligerent monstrosity.
+
+                    HUMAN
+          He doesn't like you.
+
+                    LUKE
+          I'm sorry.
+
+                    HUMAN
+          I don't like you either
+
+The big creature is getting agitated and yells out some unintelligible gibberish at the now rather nervous, young adventurer.
+
+                    HUMAN
+               (continuing)
+          Don't insult us.  You just watch 
+          yourself.  We're wanted men.  I 
+          have the death sentence on twelve 
+          systems.
+
+                    LUKE
+          I'll be careful than.
+
+                    HUMAN
+          You'll be dead.
+
+The rodent lets out a loud grunt and everything at the bar moves away.  Luke tries to remain cool but it isn't easy.  His three adversaries ready their weapons.  Old Ben moves in behind Luke.
+
+                    BEN
+          This little one isn't worth the 
+          effort.  Come let me buy you 
+          something...
+
+A powerful blow from the unpleasant creature sends the young would-be Jedi sailing across the room, crashing through tables and breaking a large jug filled with a foul-looking liquid.  With a blood-curdling shriek, the monster draws a wicked chrome laser pistol from his belt and levels it at old Ben.  The bartender panics.
+
+                    BARTENDER
+          No blasters!  No blaster!
+
+With astounding agility old Ben's laser sword sparks to life and in a flash an arm lies on the floor.  The rodent is cut in two and the giant multiple-eyed creature lies doubled, cut from chin to groin.  Ben carefully and precisely turns off his laser sword and replaces it on his utility belt.  Luke, shaking and totally amazed at the old man's abilities, attempts to stand.  The entire fight has lasted only a matter of seconds.  The cantina goes back to normal, although Ben is given a respectable amount of room at the bar.  Luke, rubbing his bruised head, approaches the old man with new awe.  Ben points the the Wookiee.
+
+                    BEN
+          This is Chewbacca.  He's first-
+          mate on a ship that might suit 
+          our needs.
+
+
+EXT. TATOOINE - MOS EISLEY - STREET
+
+Threepio paces in front of the cantina as Artoo carries on an electronic conversation with another little red astro-droid.  A creature comes out of the cantina and approaches two stormtroopers in the street.
+
+                    THREEPIO
+          I don't like the look of this.
+
+
+INT. TATOOINE - MOS EISLEY - CANTINA
+
+Strange creatures play exotic big band music on odd-looking instruments as Luke, still giddy, downs a fresh drink and follows Ben and Chewbacca to a booth where Han Solo is sitting.  Han is a tough, roguish starpilot about thirty years old.  A mercenary on a starship, he is simple, sentimental, and cocksure.
+
+                    HAN
+          Han Solo.  I'm captain of the 
+          Millennium Falcon.  Chewie here 
+          tells me you're looking for 
+          passage to the Alderaan system.
+
+                    BEN
+          Yes, indeed.  If it's a fast ship.
+
+                    HAN
+          Fast ship?  You've never heard 
+          of the Millennium Falcon?
+
+                    BEN
+          Should I have?
+
+                    HAN
+          It's the ship that made the Kessel 
+          run in less than twelve parsecs!
+
+Ben reacts to Solo's stupid attempt to impress them with obvious misinformation.
+
+                    HAN
+               (continuing)
+          I've outrun Imperial starships, 
+          not the local bulk-cruisers, mind 
+          you.  I'm talking about the big 
+          Corellian ships now.  She's fast 
+          enough for you, old man.  What's 
+          the cargo?
+
+                    BEN
+          Only passengers.  Myself, the boy, 
+          two droids, and no questions asked.
+
+                    HAN
+          What is it?  Some kind of local 
+          trouble?
+
+                    BEN
+          Let's just say we'd like to avoid 
+          any Imperial entanglements.
+
+                    HAN
+          Well, that's the real trick, 
+          isn't it?  And it's going to cost 
+          you something extra.  Ten thousand 
+          in advance.
+
+                    LUKE
+          Ten thousand?  We could almost 
+          buy our own ship for that!
+
+                    HAN
+          But who's going to fly it, kid!  
+          You?
+
+                    LUKE
+          You bet I could.  I'm not such a 
+          bad pilot myself!  We don't have 
+          to sit here and listen...
+
+                    BEN
+          We haven't that much with us.  
+          But we could pay you two thousand 
+          now, plus fifteen when we reach 
+          Alderaan.
+
+                    HAN
+          Seventeen, huh!
+
+Han ponders this for a few moments.
+
+                    HAN
+          Okay.  You guys got yourself a 
+          ship.  We'll leave as soon as you're 
+          ready.  Docking bay Ninety-four.
+
+                    BEN
+          Ninety-four.
+
+                    HAN
+          Looks like somebody's beginning to 
+          take an interest in your handiwork.
+
+Ben and Luke turn around to see four Imperial stormtroopers looking at the dead bodies and asking the bartenders some questions.  The bartender points to the booth.
+
+                    TROOPER
+          All right, we'll check it out.
+
+The stormtroopers look over at the booth but Luke and Ben are gone.  The bartender shrugs his shoulders in puzzlement.
+
+                    HAN
+          Seventeen thousand!  Those guys 
+          must really be desperate.  This 
+          could really save my neck.  Get 
+          back to the ship and get her ready.
+
+
+EXT. TATOOINE - MOS EISLEY - STREET
+
+                    BEN
+          You'll have to sell your speeder.
+
+                    LUKE
+          That's okay.  I'm never coming 
+          back to this planet again.
+
+
+INT. MOS EISLEY - CANTINA
+
+As Han is about to leave, Greedo, a slimy green-faced alien with a short trunk-nose, pokes a gun in his side.  The creature speaks in a foreign tongue translated into English subtitles.
+
+                    GREEDO
+          Going somewhere, Solo?
+
+                    HAN
+          Yes, Greedo.  As a matter of fact, 
+          I was just going to see your boss.  
+          Tell Jabba that I've got his money.
+
+Han sits down and the alien sits across from him holding the gun on him.
+
+                    GREEDO
+          It's too late.  You should have 
+          paid him when you had the chance.  
+          Jabba's put a price on your head, 
+          so large that every bounty hunter 
+          in the galaxy will be looking for 
+          you.  I'm lucky I found you first.
+
+                    HAN
+          Yeah, but this time I got the money.
+
+                    GREEDO
+          If you give it to me, I might forget 
+          I found you.
+
+                    HAN
+          I don't have it with me.  Tell 
+          Jabba...
+
+                    GREEDO
+          Jabba's through with you.  He has 
+          no time for smugglers who drop 
+          their shipments at the first sign 
+          of an Imperial cruiser.
+
+                    HAN
+          Even I get boarded sometimes.  Do 
+          you think I had a choice?
+        
+Han Solo slowly reaches for his gun under the table.
+
+                    GREEDO
+          You can tell that to Jabba.  He 
+          may only take your ship.
+
+                    HAN
+          Over my dead body.
+
+                    GREEDO
+          That's the idea I've been looking 
+          forward to killing you for a long 
+          time.
+
+                    HAN
+          Yes, I'll bet you have.
+
+Suddenly the slimy alien disappears in a blinding flash of light.  Han pulls his smoking gun from beneath the table as the other patrons look on in bemused amazement.  Han gets up and starts out of the cantina, flipping the bartender some coins as he leaves.
+
+                    HAN
+          Sorry about the mess.
+
+
+EXT. SPACE
+
+Several TIE fighters approach the Death Star.
+
+
+INT. DEATH STAR - CONTROL ROOM
+
+                    VADER
+          Her resistance to the mind probe 
+          is considerable.  It will be some 
+          time before we can extract any 
+          information from her.
+
+An Imperial Officer interrupts the meeting.
+
+                    IMPERIAL OFFICER
+          The final check-out is complete.  
+          All systems are operational.  
+          What course shall we set?
+
+                    TARKIN
+          Perhaps she would respond to an 
+          alternative form of persuasion.
+
+                    VADER
+          What do you mean?
+
+                    TARKIN
+          I think it is time we demonstrate 
+          the full power of this station.
+               (to soldier)
+          Set your course for Princess Leia's 
+          home planet of Alderaan.
+
+                    TROOPER
+          With pleasure.
+
+
+EXT. TATOOINE - MOS EISLEY - STREET
+
+Four heavily-armed stormtroopers move menacingly along a narrow slum alleyway crowed with darkly clad creatures hawking exotic goods in the dingy little stalls.  Men, monsters, and robots crouch in the waste-filled doorways, whispering and hiding from the hot winds.
+
+                    THREEPIO
+          Lock the door, Artoo.
+
+One of the troopers checks a tightly locked door and moves on down the alleyway.  The door slides open a crack and Threepio peeks out.  Artoo is barely visible in the background.
+
+                    TROOPER
+          All right, check that side of the 
+          street.  It's secure.  Move on to 
+          the next door.
+
+The door opens, Threepio moves into the doorway.
+
+                    THREEPIO
+          I would much rather have gone 
+          with Master Luke than stay here 
+          with you.  I don't know what all 
+          this trouble is about, but I'm 
+          sure it must be your fault.
+
+Artoo makes beeping sounds.
+
+                    THREEPIO
+          You watch your language!
+
+
+EXT. TATOOINE - MOS EISLEY - STREET - ALLEYWAY - USED SPEEDER LOT
+
+Ben and Luke are standing in a sleazy used speeder lot, talking with a tall, grotesque, insect-like used speeder dealer.  Strange exotic bodies and spindly-legged beasts pass by as the insect concludes the sale by giving Luke some coins.
+
+                    LUKE
+          He says it's the best he can do.  
+          Since the XP-38 came out, they 
+          just arenÕt in demand.
+
+                    BEN
+          It will be enough.
+
+Ben and Luke leave the speeder lot and walk down the dusty alleyway past a small robot herding a bunch of anteater-like creatures.  Luke turns and gives one last forlorn look at his faithful speeder as he rounds a corner.  A darkly clad creature moves out of the shadows as they pass and watches them as they disappear down another alley.
+
+                    BEN
+          If the ship's as fast as he's 
+          boasting, we ought to do well.
+
+
+INT. DOCKING BAY 94 - DAY
+
+Jabba the Hut and a half-dozen grisly alien pirates and purple creatures stand in the middle of the docking bay.  Jabba is the grossest of the slavering hulks and his scarred face is a grim testimonial to his prowess as a vicious killer. He is a fat, slug-like creature with eyes on extended feelers and a huge ugly mouth.
+
+                    JABBA
+          Come on out, Solo!
+
+A voice from directly behind the pirates startles them and they turn around to see Han Solo and the giant Wookiee, Chewbacca, standing behind them with no weapons in sight.
+
+                    HAN
+          I've been waiting for you, Jabba.
+
+                    JABBA
+          I expected you would be.
+
+                    HAN
+          I'm not the type to run.
+
+                    JABBA
+               (fatherly-smooth)
+          Han, my boy, there are times when 
+          you disappoint me... why haven't 
+          you paid me?  And why did you have 
+          to fry poor Greedo like that... 
+          after all we've been through together.
+
+                    HAN
+          You sent Greedo to blast me.
+
+                    JABBA
+               (mock surprise)
+          Han, why you're the best smuggler 
+          in the business.  You're too valuable 
+          to fry.  He was only relaying my 
+          concern at your delays.  He wasn't 
+          going to blast you.
+
+                    HAN
+          I think he thought he was.  Next 
+          time don't send one of those twerps.  
+          If you've got something to say to 
+          me, come see me yourself.
+
+                    JABBA
+          Han, Han!  If only you hadn't had 
+          to dump that shipment of spice... 
+          you understand I just can't make an 
+          exception.  Where would I be if every 
+          pilot who smuggled for me dumped 
+          their shipment at the first sign of 
+          an Imperial starship?  It's not good 
+          business.
+
+                    HAN
+          You know, even I get boarded sometimes, 
+          Jabba.  I had no choice, but I've got
+          a charter now and I can pay you back, 
+          plus a little extra.  I just need 
+          some more time.
+
+                    JABBA
+               (to his men)
+          Put your blasters away.  Han, my 
+          boy, I'm only doing this because 
+          you're the best and I need you.  So, 
+          for an extra, say... twenty percent 
+          I'll give you a little more time... 
+          but this is it.  If you disappoint 
+          me again, I'll put a price on your 
+          head so large you won't be able to 
+          go near a civilized system for the 
+          rest of your short life.
+
+                    HAN
+          Jabba, I'll pay you because it's my 
+          pleasure.
+
+
+EXT. DOCKING PORT ENTRY - ALLEYWAY
+
+Chewbacca waits restlessly at the entrance to Docking Bay 94.  Ben, Luke, and the robots make their way up the street.  Chewbacca jabbers excitedly and signals for them to hurry.  The darkly clad creature has followed them from the speeder lot.  He stops in a nearby doorway and speaks into a small transmitter.
+
+
+INT MOS EISLEY SPACEPORT - DOCKING BAY 94
+
+Chewbacca leads the group into a giant dirt pit that is Docking Bay 94.  Resting in the middle of the huge hole is a large, round, beat-up, pieced-together hunk of junk that could only loosely be called a starship.
+
+                    LUKE
+          What a piece of junk.
+
+The tall figure of Han Solo comes down the boarding ramp.
+
+                    HAN
+          She'll make point five beyond the 
+          speed of light.  She may not look 
+          like much, but she's got it where 
+          it counts, kid.  I've added some 
+          special modifications myself.
+
+Luke scratches his head.  It's obvious he isn't sure about all this.  Chewbacca rushes up the ramp and urges the others to follow.
+
+                    HAN
+          We're a little rushed, so if you'll 
+          hurry aboard we'll get out of here.
+
+The group rushes up the gang plank, passing a grinning Han Solo.
+
+
+INT. MILLENNIUM FALCON
+
+Chewbacca settles into the pilot's chair and starts the mighty engines of the starship.
+
+
+INT. MOS EISLEY SPACEPORT - DOCKING BAY 94
+
+Luke, Ben, Threepio, and Artoo move toward the Millennium Falcon passing Solo.
+
+                    THREEPIO
+          Hello, sir.
+
+
+EXT. TATOOINE - MOS EISLEY - STREET
+
+Eight Imperial stormtroopers rush up to the darkly clad creature.
+
+                    TROOPER
+          Which way?
+
+The darkly clad creature points to the door of the docking bay.
+
+                    TROOPER
+          All right, men.  Load your weapons!
+
+
+INT. MOS EISLEY SPACEPORT - DOCKING BAY 94
+
+The troops hold their guns at the ready and charge down the docking bay entrance.
+
+                    TROOPER
+          Stop that ship!
+
+Han Solo looks up and sees the Imperial stormtroopers rushing into the docking bay.  Several of the troopers fire at Han as he ducks into the spaceship.
+
+                    TROOPER
+          Blast 'em!
+
+Han draws his laser pistol and pops off a couple of shots which force the stormtroopers to dive for safety.  The pirateship engines whine as Han hits the release button that slams the overhead entry shut.
+
+
+INT. MILLENNIUM FALCON
+
+                    HAN
+          Chewie, get us out of here!
+
+The group straps in for take off.
+
+                    THREEPIO
+          Oh, my.  I'd forgotten how much I 
+          hate space travel.
+
+
+EXT. TATOOINE - MOS EISLEY - STREETS
+
+The half-dozen stormtroopers at a check point hear the general alarm and look to the sky as the huge starship rises above the dingy slum dwellings and quickly disappears into the morning sky.
+
+
+INT. MILLENNIUM FALCON - COCKPIT
+
+Han climbs into the pilot's chair next to Chewbacca, who chatters away as he points to something on the radar scope.
+
+
+EXT. SPACE - PLANET TATOOINE
+
+The Corellian pirateship zooms from Tatooine into space.
+
+
+INT. MILLENNIUM FALCON - COCKPIT
+
+Han frantically types information into the ship's computer.  Little Artoo appears momentarily at the cockpit doorway, makes a few beeping remarks, then scurries away.
+
+                    HAN
+          It looks like an Imperial cruiser.  
+          Our passengers must be hotter than 
+          I thought.  Try and hold them off.  
+          Angle the deflector shield while 
+          I make the calculations for the 
+          jump to light speed.
+
+
+EXT. SPACE - PLANET TATOOINE
+
+The Millennium Falcon pirateship races away from the yellow planet.  It is followed by two huge Imperial Star Destroyers.
+
+
+INT. MILLENNIUM FALCON - COCKPIT
+
+Over the shoulders of Chewbacca and Han, we can see the galaxy spread before them. Luke and Ben make their way 
+into the cramped cockpit where Han continues his calculation.
+
+                    HAN
+          Stay sharp!  There are two more 
+          coming in; they're going to try 
+          to cut us off.
+
+                    LUKE
+          Why don't you outrun them?  I 
+          thought you said this thing was 
+          fast.
+
+                    HAN
+          Watch your mouth, kid, or you're 
+          going to find yourself floating 
+          home.  We'll be safe enough once 
+          we make the jump to hyperspace.  
+          Besides, I know a few maneuvers. 
+          We'll lose them!
+
+
+EXT. SPACE - PLANET TATOOINE
+
+Imperial cruisers fire at the pirateship.
+
+
+INT. MILLENNIUM FALCON - COCKPIT
+
+The ship shudders as an explosion flashes outside the window.
+
+                    HAN
+          Here's where the fun begins!
+
+                    BEN
+          How long before you can make the 
+          jump to light speed?
+
+                    HAN
+          It'll take a few moments to get 
+          the coordinates from the navi-
+          computer.
+
+The ship begins to rock violently as lasers hit it.
+
+                    LUKE
+          Are you kidding?  At the rate 
+          they're gaining...
+
+                    HAN
+          Traveling through hyperspace isn't 
+          like dusting crops, boy!  Without 
+          precise calculations we could fly 
+          right through a star or bounce too 
+          close to a supernova and that'd end 
+          your trip real quick, wouldn't it?
+
+The ship is now constantly battered with laserfire as a red warning light begins to flash.
+
+                    LUKE
+          What's that flashing?
+
+                    HAN
+          We're losing our deflector shield.  
+          Go strap yourself in, I'm going to 
+          make the jump to light speed.
+
+The galaxy brightens and they move faster, almost as if crashing a barrier.  Stars become streaks as the pirateship makes the jump to hyperspace.
+
+
+EXT. SPACE
+
+The Millennium Falcon zooms into infinity in less than a second.
+
+
+EXT. DEATH STAR
+
+Alderaan looms behind the Death Star battlestation.
+
+
+INT. DEATH STAR - CONTROL ROOM
+
+Admiral Motti enters the quiet control room and bows before Governor Tarkin, who stands before the huge wall screen displaying a small green planet.
+
+                    MOTTI
+          We've entered the Alderaan system.
+
+Vader and two stormtroopers enter with Princess Leia.  Her hands are bound.
+
+                    LEIA
+          Governor Tarkin, I should have 
+          expected to find you holding 
+          Vader's leash.  I recognized your 
+          foul stench when I was brought on 
+          board.
+
+                    TARKIN
+          Charming to the last.  You don't 
+          know how hard I found it signing 
+          the order to terminate your life!
+
+                    LEIA
+          IÕm surprised you had the courage 
+          to take the responsibility yourself!
+
+                    TARKIN
+          Princess Leia, before your execution 
+          I would like you to be my guest at 
+          a ceremony that will make this 
+          battle station operational.  No star 
+          system will dare oppose the Emperor 
+          now.
+
+                    LEIA
+          The more you tighten your grip, 
+          Tarkin, the more star systems will 
+          slip through your fingers.
+
+                    TARKIN
+          Not after we demonstrate the power 
+          of this station.  In a way, you 
+          have determined the choice of the 
+          planet that'll be destroyed first.  
+          Since you are reluctant to provide 
+          us with the location of the Rebel 
+          base, I have chosen to test this 
+          station's destructive power... 
+          on your home planet of Alderaan.
+
+                    LEIA
+          No!  Alderaan is peaceful.  We 
+          have no weapons.  You can't possibly...
+
+                    TARKIN
+          You would prefer another target?  
+          A military target?  Then name the 
+          system!
+
+Tarkin waves menacingly toward Leia.
+
+                    TARKIN
+          I grow tired of asking this.  So 
+          it'll be the last time.  Where is 
+          the Rebel base?
+
+Leia overhears an intercom voice announcing the approach to Alderaan.
+
+                    LEIA
+               (softly)
+          Dantooine.
+
+Leia lowers her head.
+
+                    LEIA
+          They're on Dantooine.
+
+                    TARKIN
+          There.  You see Lord Vader, she 
+          can be reasonable. 
+               (addressing Motti) 
+          Continue with the operation.  You 
+          may fire when ready.
+
+                    LEIA
+          What?
+
+                    TARKIN
+          You're far too trusting.  Dantooine 
+          is too remote to make an effective 
+          demonstration.  But don't worry.  
+          We will deal with your Rebel 
+          friends soon enough. 
+
+                    LEIA
+          No!
+
+
+INT. DEATH STAR - BLAST CHAMBER
+
+                    VADER
+          Commence primary ignition.
+
+A button is pressed which switches on a panel of lights.  A hooded Imperial soldier reaches overhead and pulls a lever.  Another lever is pulled.  Vader reaches for still another lever and a bank of lights on a panel and wall light up.  
+A huge beam of light emanates from within a cone-shaped area and converges into a single laser beam out toward Alderaan.  The small green planet of Alderaan is blown into space dust.
+
+
+INT. MILLENNIUM FALCON-- CENTRAL HOLD AREA
+
+Ben watches Luke practice the lightsaber with a small "seeker" robot.  Ben suddenly turns away and sits down.  He falters, seems almost faint.
+
+                    LUKE
+          Are you all right?  What's wrong?
+
+                    BEN
+          I felt a great disturbance in 
+          the Force... as if millions of 
+          voices suddenly cried out in terror 
+          and were suddenly silenced.  I fear 
+          something terrible has happened.
+
+Ben rubs his forehead.  He seems to drift into a trance.  Then he fixes his gaze on Luke.
+
+                    BEN
+          You'd better get on with your 
+          exercises.
+
+Han Solo enters the room.
+
+                    HAN
+          Well, you can forget your troubles 
+          with those Imperial slugs.  I told 
+          you I'd outrun 'em.
+
+Luke is once again practicing with the lightsaber.
+
+                    HAN
+          Don't everyone thank me at once.
+
+Threepio watches Chewbacca and Artoo who are engrossed in a game in which three-dimensional holographic figures move along a chess-type board.
+
+                    HAN
+          Anyway, we should be at Alderaan 
+          about oh-two-hundred hours.
+
+Chewbacca and the two robots sit around the lighted table covered with small holographic monsters.  Each side of the table has a small computer monitor embedded in it.  Chewbacca seems very pleased with himself as he rests his lanky fur-covered arms over his head.
+
+                    THREEPIO
+          Now be careful, Artoo.
+
+Artoo immediately reaches up and taps the computer with his stubby claw hand, causing one of the holographic creatures to walk to the new square.  A sudden frown crosses Chewbacca's face and he begins yelling gibberish at the tiny robot.  Threepio intercedes on behalf of his small companion and begins to argue with the huge Wookiee.
+
+                    THREEPIO
+          He made a fair move.  Screaming 
+          about it won't help you.
+
+                    HAN
+               (interrupting)
+          Let him have it. It's not wise 
+          to upset a Wookiee.
+
+                    THREEPIO
+          But sir, nobody worries about upsetting a droid.
+
+                    HAN
+          That's 'cause droids don't pull 
+          people's arms out of their socket 
+          when they lose.  Wookiees are known 
+          to do that.
+
+                    THREEPIO
+          I see your point, sir.  I suggest 
+          a new strategy, Artoo.  Let the 
+          Wookiee win.
+
+Luke stands in the middle of the small hold area; he seems frozen in place.  A humming lightsaber is held high over his head.  Ben watches him from the corner, studying his movements.  Han watches with a bit of smugness.
+
+                    BEN
+          Remember, a Jedi can feel the 
+          Force flowing through him.
+
+                    LUKE
+          You mean it controls your actions?
+
+                    BEN
+          Partially. But it also obeys your 
+          commands.
+
+Suspended at eye level, about ten feet in front of Luke, a "seeker", a chrome baseball-like robot covered with antennae, hovers slowly in a wide arc.  The ball floats to one side of the youth then to the other.  Suddenly it makes a lightning-swift lunge and stops within a few feet of Luke's face.  Luke doesn't move and the ball backs off.  It slowly moves behind the boy, then makes another quick lunge, this time emitting a blood red laser beam as it attacks. It hits Luke in the leg causing him to tumble over. Han lets loose with a burst of laughter.
+
+                    HAN
+          Hokey religions and ancient 
+          weapons are no match for a good 
+          blaster at your side, kid.
+
+                    LUKE
+          You don't believe in the Force, 
+          do you?
+
+                    HAN
+          Kid, I've flown from one side of 
+          this galaxy to the other.  I've 
+          seen a lot of strange stuff, but 
+          I've never seen anything to make 
+          me believe there's one all-powerful 
+          force controlling everything.  
+          There's no mystical energy field 
+          that controls my destiny.
+
+Ben smiles quietly
+
+                    HAN
+          It's all a lot of simple tricks 
+          and nonsense.
+
+                    BEN
+          I suggest you try it again, Luke.
+
+Ben places a large helmet on Luke's head which covers his eyes.
+
+                    BEN
+          This time, let go your conscious 
+          self and act on instinct.
+
+                    LUKE
+               (laughing)
+          With the blast shield down, I can't 
+          even see.  How am I supposed to 
+          fight?
+
+                    BEN
+          Your eyes can deceive you.  Don't 
+          trust them.
+
+Han skeptically shakes his head as Ben throws the seeker into the air.  The ball shoots straight up in the air, then drops like a rock.  Luke swings the lightsaber around blindly missing the seeker, which fires off a laserbolt which hits Luke square on the seat of the pants.  He lets out a painful yell and attempts to hit the seeker.
+
+                    BEN
+          Stretch out with your feelings.
+
+Luke stands in one place, seemingly frozen.  The seeker makes a dive at Luke and, incredibly, he managed to deflect the bolt.  The ball ceases fire and moves back to its original position.
+
+                    BEN
+          You see, you can do it.
+
+                    HAN
+          I call it luck. 
+
+                    BEN
+          In my experience, there's no 
+          such thing as luck.
+
+                    HAN
+          Look, going good against remotes 
+          is one thing.  Going good against 
+          the living?  That's something else.
+
+Solo notices a small light flashing on the far side of the control panel.
+
+                    HAN
+          Looks like we're coming up on 
+          Alderaan.
+
+Han and Chewbacca head back to the cockpit.
+
+                    LUKE
+          You know, I did feel something.  
+          I could almost see the remote.
+
+                    BEN
+          That's good.  You have taken your 
+          first step into a larger world.
+
+
+INT. DEATH STAR - CONFERENCE ROOM
+
+Imperial Officer Cass stands before Governor Tarkin and the evil Dark Lord Darth Vader.
+
+                    TARKIN
+          Yes.
+
+                    OFFICER CASS
+          Our scout ships have reached 
+          Dantooine.  They found the remains 
+          of a Rebel base, but they estimate 
+          that it has been deserted for some 
+          time.  They are now conducting an 
+          extensive search of the surrounding 
+          systems.
+
+                    TARKIN
+          She lied!  She lied to us!
+
+                    VADER
+          I told you she would never 
+          consciously betray the Rebellion.
+
+                    TARKIN
+          Terminate her... immediately!
+
+
+EXT. HYPERSPACE
+
+The pirateship is just coming out of hyperspace; a strange surreal light show surrounds the ship.
+
+
+INT. MILLENNIUM FALCON - COCKPIT
+
+                    HAN
+          Stand by, Chewie, here we go.  
+          Cut in the sublight engines.
+
+Han pulls back on a control lever.  Outside the cockpit window stars begin streaking past, seem to decrease in speed, then stop.  Suddenly the starship begins to shudder and violently shake about.  Asteroids begin to race toward them, battering the sides of the ship.
+
+                    HAN
+          What the...?  Aw, we've come out 
+          of hyperspace into a meteor shower.  
+          Some kind of asteroid collision.  
+          It's not on any of the charts.
+
+The Wookiee flips off several controls and seems very 
+cool in the emergency.  Luke makes his way into the bouncing cockpit.
+
+                    LUKE
+          What's going on?
+
+                    HAN
+          Our position is correct, except... 
+          no, Alderaan!
+
+                    LUKE
+          What do you mean?  Where is it?
+
+                    HAN
+          Thats what I'm trying to tell 
+          you, kid.  It ain't there.  It's 
+          been totally blown away.
+
+                    LUKE
+          What?  How?
+
+Ben moves into the cockpit behind Luke as the ship begins to settle down.
+
+                    BEN
+          Destroyed... by the Empire!
+
+                    HAN
+          The entire starfleet couldn't 
+          destroy the whole planet.  It'd 
+          take a thousand ships with more 
+          fire power than I've...
+
+A signal light starts flashing on the control panel and a muffled alarm starts humming.
+
+                    HAN
+          There's another ship coming in.
+
+                    LUKE
+          Maybe they know what happened.
+
+                    BEN
+          It's an Imperial fighter.
+
+Chewbacca barks his concern.  A huge explosion bursts outside the cockpit window, shaking the ship violently.  A tiny, finned Imperial TIE fighter races past the cockpit window.
+
+                    LUKE
+          It followed us!
+
+                    BEN
+          No.  It's a short range fighter.
+
+                    HAN
+          There aren't any bases around 
+          here.  Where did it come from?
+
+
+EXT. SPACE
+
+The fighter races past the Corellian pirateship.
+
+
+INT. MILLENNIUM FALCON - COCKPIT
+
+                    LUKE
+          It sure is leaving in a big hurry.  
+          If they identify us, we're in big 
+          trouble.
+
+                    HAN
+          Not if I can help it.  Chewie... 
+          jam it's transmissions.
+
+                    BEN
+          It'd be as well to let it go.  
+          It's too far out of range.
+
+                    HAN
+          Not for long...
+
+
+EXT. SPACE
+
+The pirateship zooms over the camera and away into the vastness of space after the Imperial TIE fighter.
+
+
+INT. MILLENNIUM FALCON - COCKPIT
+
+The tension mounts as the pirateship gains on the tiny fighter.  In the distance, one of the stars becomes brighter until it is obvious that the TIE ship is heading for it.  Ben stands behind Chewbacca.
+
+                    BEN
+          A fighter that size couldn't get 
+          this deep into space on its own.
+
+                    LUKE
+          Then he must have gotten lost, 
+          been part of a convoy or something...
+
+                    HAN
+          Well, he ain't going to be around 
+          long enough to tell anyone about us.
+
+
+EXT. SPACE
+
+The TIE fighter is losing ground to the larger pirateship as they race toward camera and disappear over head.
+
+
+INT. MILLENNIUM FALCON - COCKPIT
+
+The distant star can be distinguished as a small moon or planet.
+
+                    LUKE
+          Look at him.  He's heading for 
+          that small moon.
+
+                    HAN
+          I think I can get him before he 
+          gets there... he's almost in range.
+
+The small moon begins to take on the appearance of a monstrous spherical battle station.
+
+                    BEN
+          That's no moon!  It's a space 
+          station.
+
+                    HAN
+          It's too big to be a space station.
+
+                    LUKE
+          I have a very bad feeling about 
+          this.
+
+                    BEN
+          Turn the ship around!
+
+                    HAN
+          Yeah, I think your right.  Full 
+          reverse!  Chewie, lock in the 
+          auxiliary power.
+   
+The pirateship shudders and the TIE fighter accelerates away toward the gargantuan battle station.
+
+                    LUKE
+          Why are we still moving towards 
+          it?
+
+                    HAN
+          We're caught in a tractor beam!  
+          It's pulling us in!
+
+                    LUKE
+          But there's gotta be something you 
+          can do!
+
+                    HAN
+          There's nothin' I can do about it, 
+          kid.  I'm in full power.  I'm going 
+          to have to shut down.  But they're 
+          not going to get me without a fight!
+
+Ben Kenobi puts a hand on his shoulder.
+
+                    BEN
+          You can't win.  But there are 
+          alternatives to fighting.
+
+
+INT. MILLENNIUM FALCON - DEATH STAR
+
+As the battered pirate starship is towed closer to the awesome metal moon, the immense size of the massive battle station becomes staggering.  Running along the equator of the gigantic sphere is a mile-high band of huge docking ports into which the helpless pirateship is dragged.
+
+
+EXT. DEATH STAR - HUGE PORT DOORS
+
+The helpless Millennium Falcon is pulled past a docking port control room and huge laser turret cannons.
+
+                    VOICE OVER DEATH STAR INTERCOM
+          Clear Bay twenty-three-seven.  
+          We are opening the magnetic field.
+
+
+INT. DEATH STAR - DOCKING BAY 2037
+
+The pirateship is pulled in through port doors of the Death Star, coming to rest in a huge hangar.  Thirty stormtroopers stand at attention in a central assembly area.
+
+                    OFFICER
+          To your stations!
+
+                    OFFICER
+               (to another officer)
+          Come with me.
+
+
+INT. DEATH STAR - HALLWAY
+
+Stormtroopers run to their posts.
+
+
+INT. DEATH STAR - HANGAR 2037
+
+A line of stormtroopers march toward the pirateship in readiness to board it, while other troopers stand with weapons ready to fire.
+
+                    OFFICER
+          Close all outboard shields!  
+          Close all outboard shields!
+
+
+INT. DEATH STAR - CONFERENCE ROOM
+ 
+Tarkin pushes a button and responds to the intercom buzz.
+
+                    TARKIN
+          Yes.
+
+                    VOICE
+               (over intercom)
+          We've captured a freighter entering 
+          the remains of the Alderaan system.  
+          It's markings match those of a ship 
+          that blasted its way out of Mos Eisley.
+
+                    VADER
+          They must be trying to return the 
+          stolen plans to the princess.  She 
+          may yet be of some use to us.
+
+
+INT. DEATH STAR - DOCKING BAY 2037
+
+Vader and a commander approach the troops as an Officer and several heavily armed troops exit the spacecraft.
+
+                    VOICE
+               (over intercom)
+          Unlock one-five-seven and nine. 
+          Release charges.
+
+                    OFFICER
+               (to Vader)
+          There's no one on board, sir.  
+          According to the log, the crew 
+          abandoned ship right after takeoff.  
+          It must be a decoy, sir.  Several 
+          of the escape pods have been 
+          jettisoned.
+
+                    VADER
+          Did you find any droids?
+
+                    OFFICER
+          No, sir.  If there were any on 
+          board, they must also have 
+          jettisoned.
+
+                    VADER
+          Send a scanning crew on board.  
+          I want every part of this ship 
+          checked.
+
+                    OFFICER
+          Yes, sir.
+
+                    VADER
+          I sense something... a presence I 
+          haven't felt since...
+
+Vader turns quickly and exits the hangar.
+
+                    OFFICER
+          Get me a scanning crew in here 
+          on the double.  I want every part 
+          of this ship checked!
+
+
+INT. MILLENNIUM FALCON - HALLWAY
+
+A trooper runs through the hallway heading for the exit.  In a few moments all is quiet.  The muffled sounds of a distant officer giving orders finally fade.  Two floor panels suddenly pop up revealing Han Solo and Luke.  Ben Kenobi sticks his head out of a third locker.
+
+                    LUKE
+          Boy, it's lucky you had these 
+          compartments.
+
+                    HAN
+          I use them for smuggling.  I never 
+          thought I'd be smuggling myself in 
+          them.  This is ridiculous.  Even 
+          if I could take off, I'd never get 
+          past the tractor beam.
+
+                    BEN
+          Leave that to me!
+
+                    HAN
+          Damn fool. I knew that you were 
+          going to say that!
+
+                    BEN
+          Who's the more foolish... the 
+          fool or the fool who follows him?
+
+Han shakes his head, muttering to himself. Chewbacca agrees.
+
+
+INT. DEATH STAR - MAIN FORWARD BAY
+
+The crewmen carry a heavy box on board the ship, past the two stormtroopers guarding either side of the ramp.
+
+                    TROOPER
+          The ship's all yours.  If the 
+          scanners pick up anything, report 
+          it immediately.  All right, let's 
+          go.
+
+The crewmen enter the pirateship and a loud crashing sound is followed by a voice calling to the guard below.
+
+                    HAN'S VOICE
+          Hey down there, could you give 
+          us a hand with this?
+
+The stormtroopers enter the ship and a quick round of gunfire is heard.
+
+
+INT. DEATH STAR - FORWARD BAY - COMMAND OFFICE
+
+In a very small command office near the entrance to the pirateship, a Gantry Officer looks out his window and notices the guards are missing.  He speaks into the comlink.
+
+                    GANTRY OFFICER
+          TX-four-one-two.  Why aren't you 
+          at your post?  TX-four-one-two, 
+          do you copy? 
+
+A stormtrooper comes down the ramp of the pirateship and waves to the gantry officer, pointing to his ear, indicating his comlink is not working.  The gantry officer shakes his head in disgust and heads for the door, giving his aide an annoyed look.
+
+                    GANTRY OFFICER
+          Take over.  We've got a bad 
+          transmitter.  I'll see what I 
+          can do.
+
+As the officer approaches the door, it slides open revealing the towering Chewbacca.  The gantry officer, in a momentary state of shock, stumbles backward.  With a bone-chilling howl, the giant Wookiee flattens the officer with one blow.  The aide immediately reaches for his pistol, but is blasted by Han, dressed as an Imperial stormtrooper.  
+
+Ben and the robots enter the room quickly followed by Luke, also dressed as a stormtrooper.  Luke quickly removes his helmet.
+
+                    LUKE
+          You know, between his howling 
+          and your blasting everything in 
+          sight, it's a wonder the whole 
+          station doesn't know we're here.
+
+                    HAN
+          Bring them on!  I prefer a straight 
+          fight to all this sneaking around.
+
+                    THREEPIO
+          We found the computer outlet, sir.
+
+Ben feeds some information into the computer and a map of the city appears on the monitor.  He begins to inspect it carefully.  Threepio and Artoo look over the control panel.  Artoo finds something that makes him whistle wildly.
+
+                    BEN
+          Plug in.  He should be able to 
+          interpret the entire Imperial 
+          computer network.
+
+Artoo punches his claw arm into the computer socket and the vast Imperial brain network comes to life, feeding information to the little robot.  After a few moments, he beeps something.
+
+                    THREEPIO
+          He says he's found the main 
+          control to the power beam that's 
+          holding the ship here.  He'll 
+          try to make the precise location 
+          appear on the monitor.
+
+The computer monitor flashes readouts.
+
+                    THREEPIO
+          The tractor beam is coupled to the 
+          main reactor in seven locations.  
+          A power loss at one of the terminals 
+          will allow the ship to leave.
+
+Ben studies the data on the monitor readout.
+
+                    BEN
+          I don't think you boys can help.  
+          I must go alone.
+
+                    HAN
+          Whatever you say.  I've done more 
+          than I bargained for on this trip 
+          already.
+
+                    LUKE
+          I want to go with you.
+
+                    BEN
+          Be patient, Luke.  Stay and watch 
+          over the droids.
+
+                    LUKE
+          But he can...
+
+                    BEN
+          They must be delivered safely or 
+          other star systems will suffer the 
+          same fate as Alderaan.  Your destiny 
+          lies along a different path from 
+          mine.  The Force will be with you
+          ... always!
+
+Ben adjusts the lightsaber on his belt and silently steps out of the command office, then disappears down a long gray hallway.  Chewbacca barks a comment and Han shakes his head in agreement.
+
+                    HAN
+          Boy you said it, Chewie.
+
+Han looks at Luke.
+
+                    HAN
+          Where did you dig up that old 
+          fossil?
+
+                    LUKE
+          Ben is a great man.
+
+                    HAN
+          Yeah, great at getting us into 
+          trouble.
+
+                    LUKE
+          I didn't hear you give any ideas...
+
+                    HAN
+          Well, anything would be better 
+          than just hanging around waiting 
+          for them to pick us up...
+
+                    LUKE
+          Who do you think...
+
+Suddenly Artoo begins to whistle and beep a blue streak.  Luke goes over to him.
+
+                    LUKE
+          What is it?
+
+                    THREEPIO
+          I'm afraid I'm not quite sure, sir. 
+          He says "I found her," and keeps
+          repeating, "She's here."
+
+                    LUKE
+          Well, who... who has he found?
+
+Artoo whistles a frantic reply.
+
+                    THREEPIO
+          Princess Leia.
+
+                    LUKE
+          The princess?  She's here?
+
+                    HAN
+          Princess?
+
+                    LUKE
+          Where... where is she?
+
+                    HAN
+          Princess?  What's going on?
+
+                    THREEPIO
+          Level five. Detention block AA-
+          twenty-three.  I'm afraid she's 
+          scheduled to be terminated.
+
+                    LUKE
+          Oh, no!  We've got to do something.
+
+                    HAN
+          What are you talking about?
+
+                    LUKE
+          The droid belongs to her.  She's 
+          the one in the message.  We've 
+          got to help her.
+
+                    HAN
+          Now, look, don't get any funny 
+          ideas.  The old man wants us to 
+          wait right here.
+
+                    LUKE
+          But he didn't know she was here.  
+          Look, will you just find a way 
+          back into the detention block?
+
+                    HAN
+          I'm not going anywhere.
+
+                    LUKE
+          They're going to execute her.  
+          Look, a few minutes ago you said 
+          you didn't want to just wait here 
+          to be captured.  Now all you want 
+          to do is stay. 
+
+                    HAN
+          Marching into the detention area 
+          is not what I had in mind.
+
+                    LUKE
+          But they're going to kill her!
+
+                    HAN
+          Better her than me...
+
+                    LUKE
+          She's rich.
+
+Chewbacca growls.
+
+                    HAN
+          Rich?
+
+                    LUKE
+          Yes.  Rich, powerful!  Listen, if 
+          you were to rescue her, the reward 
+          would be...
+
+                    HAN
+          What?
+
+                    LUKE
+          Well more wealth that you can 
+          imagine.
+
+                    HAN
+          I don't know, I can imagine quite 
+          a bit!
+
+                    LUKE
+          You'll get it!
+
+                    HAN
+          I better!
+
+                    LUKE
+          You will...
+
+                    HAN
+          All right, kid.  But you'd 
+          better be right about this!
+
+Han looks at Chewie, who grunts a short grunt.
+
+                    LUKE
+          All right.
+
+                    HAN
+          What's your plan?
+
+                    LUKE
+          Uh... Threepio, hand me those 
+          binders there will you?
+
+Luke moves toward Chewbacca with electronic cuffs.
+
+                    LUKE
+          Okay.  Now, I'm going to put these 
+          on you.
+
+Chewie lets out a hideous growl.
+
+                    LUKE
+          Okay.  Han, you put these on.
+
+Luke sheepishly hands the binders to Han.
+
+                    HAN
+          Don't worry, Chewie.  I think 
+          I know what he has in mind.
+
+The Wookiee has a worried and frightened look on his face as Han binds him with the electronic cuffs.
+
+                    THREEPIO
+          Master Luke, sir!  Pardon me for 
+          asking... but, ah... what should 
+          Artoo and I do if we're discovered 
+          here?
+
+                    LUKE
+          Lock the door!
+
+                    HAN
+          And hope they don't have blasters.
+
+                    THREEPIO
+          That isn't very reassuring.
+
+Luke and Han put on their armored stormtrooper helmets and start off into the giant Imperial Death Star.
+
+
+INT. DEATH STAR - DETENTION AREA - ELEVATOR TUBE
+
+Han and Luke try to look inconspicuous in their armored suits as they wait for a vacuum elevator to arrive.  Troops, bureaucrats, and robots bustle about, ignoring the trio completely.  Only a few give the giant Wookiee a curious glance.
+
+Finally a small elevator arrives and the trio enters.
+
+                    LUKE
+          I can't see a thing in this helmet.
+
+A bureaucrat races to get aboard also, but is signaled away by Han.  The door to the pod-like vehicle slides closed and the elevator car takes off through a vacuum tube.
+
+
+INT. DEATH STAR - MAIN HALLWAY
+
+Several Imperial officers walk through the wide main passageway.  They pass several stormtroopers and a robot similar to Threepio but with an insect face.  At the far end of the hallway, a passing flash of Ben Kenobi appears, then disappears down a small hallway.  His appearance is so fleeting that it is hard to tell if he is real or just an illusion.  No one in the hallway seems to notice him.
+
+
+INT. DEATH STAR - INT. ELEVATOR - DETENTION SECURITY AREA
+
+Luke and Han step forward to exit the elevator, but the door slides open behind them.  The giant Wookiee and his two guards enter the old gray security station.  Guards and laser gates are everywhere.  Han whispers to Luke under his breath.
+
+                    HAN
+          This is not going to work.
+
+                    LUKE
+          Why didn't you say so before?
+
+                    HAN
+          I did say so before!
+
+
+INT. DETENTION AREA
+
+Elevator doors open.  A tall, grim looking Officer approaches the trio.
+
+                    OFFICER
+          Where are you taking this... thing?
+
+Chewie growls a bit at the remark but Han nudges him to shut up.
+
+                    LUKE
+          Prisoner transfer from Block one-
+          one-three-eight.
+
+                    OFFICER
+          I wasn't notified.  I'll have to 
+          clear it.
+
+The officer goes back to his console and begins to punch in the information.  There are only three other troopers in the area.  Luke and Han survey the situation, checking all of the alarms, laser gates, and camera eyes.  Han unfastens one of Chewbacca's electronic cuffs and shrugs to Luke.
+
+Suddenly Chewbacca throws up his hands and lets out with one of his ear-piercing howls.  He grabs Han's laser rifle.
+
+                    HAN
+          Look out!  He's loose!
+
+                    LUKE
+          He's going to pull us all apart.
+
+                    HAN
+          Go get him!
+
+The startled guards are momentarily dumbfounded.  Luke and Han have already pulled out their laser pistols and are blasting away at the terrifying Wookiee.  Their barrage of laserfire misses Chewbacca, but hits the camera eyes, laser gate controls, and the Imperial guards.  The officer is the last of the guards to fall under the laserfire just as he is about to push the alarm system.  Han rushes to the comlink system, which is screeching questions about what is going on.  He quickly checks the computer readout.
+
+                    HAN
+          We've got to find out which cell 
+          this princess of yours is in.  
+          Here it is... cell twenty-one-
+          eight-seven.  You go get her.  I'll 
+          hold them here.
+
+Luke races down one of the cell corridors.  Han speaks into the buzzing comlink.
+
+                    HAN
+               (sounding official)
+          Everything is under control.  
+          Situation normal.
+
+                    INTERCOM VOICE
+          What happened?
+
+                    HAN
+               (getting nervous)
+          Uh... had a slight weapons 
+          malfunction.  But, uh, everything's 
+          perfectly all right now.  We're 
+          fine.  We're all fine here, now, 
+          thank you.  How are you?
+
+                    INTERCOM VOICE
+          We're sending a squad up.
+
+                    HAN
+          Uh, uh, negative, negative.  We 
+          had a reactor leak here now.  Give 
+          us a few minutes to lock it down.  
+          Large leak... very dangerous.
+
+                    INTERCOM VOICE
+          Who is this?  What's your 
+          operating number?
+
+Han blasts the comlink and it explodes.
+
+                    HAN
+          Boring conversation anyway.
+               (yelling down the hall)
+          Luke!  We're going to have company!
+
+
+INT. DEATH STAR - CELL ROW
+
+Luke stops in front of one of the cells and blasts the door away with his laser pistol.  When the smoke clears, Luke sees the dazzling young princess-senator.  She had been sleeping and is now looking at him with an uncomprehending look on her face.  Luke is stunned by her incredible beauty and stands staring at her with his mouth hanging open.
+
+                    LEIA
+               (finally)
+          Aren't you a little short for a 
+          stormtrooper?
+
+Luke takes off his helmet, coming out of it.
+
+                    LUKE
+          What?  Oh... the uniform.  I'm 
+          Luke Skywalker.  I'm here to 
+          rescue you. 
+
+                    LEIA
+          You're who?
+
+                    LUKE
+          I'm here to rescue you.  I've got 
+          your R2 unit.  I'm here with Ben 
+          Kenobi.
+
+                    LEIA
+          Ben Kenobi is here!  Where is he?
+
+                    LUKE
+          Come on!
+
+
+INT. DEATH STAR - CONFERENCE ROOM
+
+Darth Vader paces the room as Governor Tarkin sits at the far end of the conference table.
+
+                    VADER
+          He is here...
+
+                    TARKIN
+          Obi-Wan Kenobi!  What makes you 
+          think so?
+
+                    VADER
+          A tremor in the Force.  The last 
+          time I felt it was in the presence 
+          of my old master.
+
+                    TARKIN
+          Surely he must be dead by now.
+
+                    VADER
+          Don't underestimate the Force.
+
+                    TARKIN
+          The Jedi are extinct, their fire 
+          has gone out of the universe.  
+          You, my friend, are all that's 
+          left of their religion.
+
+There is a quiet buzz on the comlink.
+
+                    TARKIN
+          Yes.
+
+                    INTERCOM VOICE
+          Governor Tarkin, we have an 
+          emergency alert in detention block 
+          AA-twenty-three.
+
+                    TARKIN
+          The princess!  Put all sections 
+          on alert!
+
+                    VADER
+          Obi-Wan is here.  The Force is 
+          with him.
+
+                    TARKIN
+          If you're right, he must not be 
+          allowed to escape.
+
+                    VADER
+          Escape may not his plan.  I 
+          must face him alone.
+
+
+INT. DEATH STAR - DETENTION AREA - HALLWAY
+
+An ominous buzzing sound is heard on the other side of the elevator door.
+
+                    HAN
+          Chewie!
+
+Chewbacca responds with a growling noise.
+
+                    HAN
+          Get behind me!  Get behind me!
+
+A series of explosions knock a hole in the elevator door through which several Imperial troops begin to emerge.
+
+Han and Chewie fire their laser pistols at them through the smoke and flames.  They turn and run down the cell hallway, meeting up with Luke and Leia rushing toward them.
+
+                    HAN
+          Can't get out that way.
+
+                    LEIA
+          Looks like you managed to cut off 
+          our only escape route.
+
+                    HAN
+               (sarcastically)
+          Maybe you'd like it back in your 
+          cell, Your Highness.
+
+Luke takes a small comlink transmitter from his belt as they continue to exchange fire with stormtroopers making their way down the corridor.
+
+                    LUKE
+          See-Threepio!  See-Threepio!
+
+                    THREEPIO
+               (over comlink)
+          Yes sir?
+
+                    LUKE
+          We've been cut off!  Are there any 
+          other ways out of the cell bay?...
+          What was that?  I didn't copy!
+
+
+INT. DEATH STAR - MAIN BAY GANTRY - CONTROL TOWER
+
+Threepio paces the control center as little Artoo beeps and whistles a blue streak.  Threepio yells into the small comlink transmitter.
+
+                    THREEPIO
+          I said, all systems have been 
+          alerted to your presence, sir.  
+          The main entrance seems to be the 
+          only way out; all other information 
+          on your level is restricted.
+
+Someone begins banging on the door.
+
+                    TROOPER VOICE
+          Open up in there!
+
+                    THREEPIO
+          Oh, no!
+
+
+INT. DEATH STAR - DETENTION CORRIDOR
+
+Luke and Leia crouch together in an alcove for protection as they continue to exchange fire with troops.  Han and Chewbacca are barely able to keep the stormtroopers at bay at the far and of the hallway.  The laserfire is very intense, and smoke fills the narrow cell corridor.
+
+                    LUKE
+          There isn't any other way out.
+
+                    HAN
+          I can't hold them off forever!  
+          Now what?
+
+                    LEIA
+          This is some rescue.  When you 
+          came in here, didn't you have a 
+          plan for getting out?
+
+                    HAN
+               (pointing to Luke)
+          He's the brains, sweetheart.
+
+Luke manages a sheepish grin and shrugs his shoulders.
+
+                    LUKE
+          Well, I didn't...
+
+The princess grabs Luke's gun and fires at a small grate in the wall next to Han, almost frying him.
+
+                    HAN
+          What the hell are you doing?
+
+                    LEIA
+          Somebody has to save our skins.  
+          Into the garbage chute, wise guy.
+
+She jumps through the narrow opening as Han and Chewbacca look on in amazement.  Chewbacca sniffs the garbage chute and says something.
+
+                    HAN
+          Get in there you big furry oaf!  
+          I don't care what you smell!  Get 
+          in there and don't worry about it.
+
+Han gives him a big kick and the Wookiee disappears into the tiny opening.  Luke and Han continue firing as they work their way toward the opening.
+
+                    HAN
+          Wonderful girl!  Either I'm going 
+          to kill her or I'm beginning to 
+          like her.  Get in there!
+
+Luke ducks laserfire as he jumps into the darkness.  Han fires off a couple of quick blasts creating a smoky cover, then slides into the chute himself and is gone.
+
+
+INT. DEATH STAR - GARBAGE ROOM
+
+Han tumbles into a large room filled with garbage and muck.  Luke is already stumbling around looking for an exit.  He finds a small hatchway and struggles to get it open.  It won't budge.
+
+                    HAN
+               (sarcastically)
+          Oh!  The garbage chute was a really 
+          wonderful idea.  What an incredible 
+          smell you've discovered!  Let's 
+          get out of here!  Get away from 
+          there...
+
+                    LUKE
+          No!  wait!
+
+Han draws his laser pistol and fires at the hatch.  The laserbolt ricochets wildly around the small metal room.  Everyone dives for cover in the garbage as the bolt explodes almost on top of them.  Leia climbs out of the garbage with a rather grim look on her face.
+
+                    LUKE
+          Will you forget it?  I already 
+          tried it.  It's magnetically sealed!
+
+                    LEIA
+          Put that thing away!  You're going 
+          to get us all killed.
+
+                    HAN
+          Absolutely, Your Worship.  Look, 
+          I had everything under control 
+          until you led us down here.  You 
+          know, it's not going to take them 
+          long to figure out what happened 
+          to us.
+
+                    LEIA
+          It could be worse...
+
+A loud, horrible, inhuman moan works its way up from the murky depths.  Chewbacca lets out a terrified howl and begins to back away.  Han and Luke stand fast with their laser pistols drawn.  The Wookiee is cowering near one of the walls.
+
+                    HAN
+          It's worse.
+
+                    LUKE
+          There's something alive in here!
+
+                    HAN
+          That's your imagination.
+
+                    LUKE
+          Something just moves past my leg!  
+          Look!  Did you see that?
+
+                    HAN
+          What?
+
+                    LUKE
+          Help!
+
+Suddenly Luke is yanked under the garbage.
+
+                    HAN
+          Luke!  Luke!  Luke!
+
+Solo tries to get to Luke.  Luke surfaces with a gasp of air and thrashing of limbs.  A membrane tentacle is wrapped around his throat.
+
+                    LEIA
+          Luke!
+
+Leia extends a long pipe toward him.
+
+                    LEIA
+          Luke, Luke, grab a hold of this.
+
+                    LUKE
+          Blast it, will you!  My gun's 
+          jammed.
+
+                    HAN
+          Where?
+
+                    LUKE
+          Anywhere!  Oh!!
+
+Solo fires his gun downward.  Luke is pulled back into the muck by the slimy tentacle.
+
+                    HAN
+          Luke!  Luke!
+
+Suddenly the walls of the garbage receptacle shudder and move in a couple of inches.  Then everything is deathly quiet.  Han and Leia give each other a worried look as Chewbacca howls in the corner.  With a rush of bubbles and muck Luke suddenly bobs to the surface.
+
+                    LEIA
+          Grab him!
+
+Luke seems to be released by the thing.
+
+                    LEIA
+          What happened?
+
+                    LUKE
+          I don't know, it just let go of 
+          me and disappeared...
+
+                    HAN
+          I've got a very bad feeling about 
+          this.
+
+Before anyone can say anything the walls begin to rumble and edge toward the Rebels.
+
+                    LUKE
+          The walls are moving!
+
+                    LEIA
+          Don't just stand there.  Try and 
+          brace it with something.
+
+They place poles and long metal beams between the closing walls, but they are simply snapped and bent as the giant trashmasher rumbles on.  The situation doesn't look too good.
+
+                    LUKE
+          Wait a minute!
+
+Luke pulls out his comlink.
+
+                    LUKE
+          Threepio!  Come in Threepio!  
+          Threepio!  Where could he be?
+
+
+INT. DEATH STAR - MAIN GANTRY - COMMAND OFFICE
+
+A soft buzzer and the muted voice of Luke calling out for See-Threepio can be heard on Threepio's hand comlink, which is sitting on the deserted computer console.  Artoo and Threepio are nowhere in sight.  Suddenly there is a great explosion and the door of the control tower flies across the floor.  Four armed stormtroopers enter the chamber.
+
+                    FIRST TROOPER
+          Take over!
+               (pointing to the dead 
+                officer)
+          See to him!  Look there!
+
+A trooper pushes a button and the supply cabinet door slides open.  See-Threepio and Artoo-Detoo are inside.  Artoo follows his bronze companion out into the office.
+
+                    THREEPIO
+          They're madmen!  They're heading 
+          for the prison level.  If you 
+          hurry, you might catch them.
+
+                    FIRST OFFICER
+               (to his troops)
+          Follow me!  You stand guard.
+
+The troops hustle off down the hallway, leaving a guard to watch over the command office.
+
+                    THREEPIO
+               (to Artoo)
+          Come on!
+
+The guard aims a blaster at them.
+
+                    THREEPIO
+          Oh!  All this excitement has 
+          overrun the circuits of my 
+          counterpart here.  If you don't 
+          mind, I'd like to take him down 
+          to maintenance.
+
+                    TROOPER
+          All right.
+
+The guard nods and Threepio, with little Artoo in tow, hurries out the door.
+
+
+INT. DEATH STAR - GARBAGE ROOM
+
+As the walls rumble closed, the room gets smaller and smaller.  Chewie is whining and trying to hold a wall back with his giant paws.  Han is leaning back against the other wall.  Garbage is snapping and popping.  Luke is trying to reach Threepio.
+
+                    LUKE
+          Threepio!  Come in, Threepio!  
+          Threepio!
+
+Han and Leia try to brace the contracting walls with a pole.  Leia begins to sink into the trash.
+
+                    HAN
+          Get to the top!
+
+                    LEIA
+          I can't 
+
+                    LUKE
+          Where could he be?  Threepio!  
+          Threepio, will you come in?
+
+
+INT. DEATH STAR - MAIN FORWARD BAY - SERVICE PANEL
+
+                    THREEPIO
+          They aren't here!  Something 
+          must have happened to them.  See 
+          if they've been captured.
+
+Little Artoo carefully plugs his claw arm into a new wall socket and a complex array of electronic sounds spew from the tiny robot.
+
+                    THREEPIO
+          Hurry!
+
+
+INT. DEATH STAR - GARBAGE ROOM
+
+The walls are only feet apart.  Leia and Han are braced against the walls.  The princess is frightened.  They look at each other.  Leia reaches out and takes Han's hand and holds it tightly.  She's terrified and suddenly groans as she feels the first crushing pressure against her body.
+
+                    HAN
+          One thing's for sure.  We're all 
+          going to be a lot thinner!
+               (to Leia)
+          Get on top of it!
+
+                    LEIA
+          I'm trying!
+
+
+INT. DEATH STAR - MAIN FORWARD BAY - SERVICE PANEL
+
+                    THREEPIO
+               (to Artoo)
+          Thank goodness, they haven't found 
+          them!  Where could they be?
+        
+Artoo frantically beeps something to See-Threepio.
+
+                    THREEPIO
+          Use the comlink?  Oh, my!  I 
+          forgot I turned it off!
+
+
+INT. DEATH STAR - GARBAGE ROOM
+
+Meanwhile, Luke is lying on his side, trying to keep his head above the rising ooze.  Luke's comlink begins to buzz and he rips it off his belt.
+
+
+INT. DEATH STAR - MAIN FORWARD BAY - SERVICE PANEL
+
+Muffled sounds of Luke's voice over the comlink can be heard, but not distinctly.
+
+                    THREEPIO
+          Are you there, sir?
+
+
+INT. DEATH STAR - GARBAGE ROOM
+
+                    LUKE
+          Threepio!
+
+
+INT. DEATH STAR - MAIN FORWARD BAY - SERVICE PANEL
+
+                    THREEPIO
+          We've had some problems...
+
+                    LUKE
+               (over comlink)
+          Shut down all the garbage mashers 
+          on the detention level, will you?  
+          Do you copy?
+
+
+INT. DEATH STAR -- GARBAGE ROOM.
+
+                    LUKE
+          Shut down all the garbage mashers 
+          on the detention level.
+
+
+INT. DEATH STAR - MAIN FORWARD BAY - SERVICE PANEL
+
+                    LUKE
+               (over comlink)
+          Shut down all the garbage mashers 
+          on the detention level.
+
+                    THREEPIO
+               (to Artoo)
+          No.  Shut them all down!  Hurry!
+
+Threepio holds his head in agony as he hears the incredible screaming and hollering from Luke's comlink.
+
+                    THREEPIO
+          Listen to them!  They're dying, 
+          Artoo!  Curse my metal body!  I 
+          wasn't fast enough.  It's all my 
+          fault!  My poor master!
+
+                    LUKE
+               (over comlink)
+          Threepio, we're all right!
+
+
+INT. DEATH STAR - GARBAGE ROOM
+
+The screaming and hollering is the sound of joyous relief.  The walls have stopped moving.  Han, Chewie and Leia embrace in the background.
+
+                    LUKE
+          We're all right.  You did great.
+
+Luke moves to the pressure sensitive hatch, looking for a number.
+
+                    LUKE
+          Hey... hey, open the pressure 
+          maintenance hatch on unit number
+          ... where are we?
+
+
+INT. DEATH STAR - MAIN FORWARD BAY - SERVICE PANEL
+
+Threepio looks at the computer panel as Han reads the number.
+
+                    HAN
+               (over comlink)
+          Three-two-six-eight-two-seven.
+
+
+INT. DEATH STAR - TRACTOR BEAM - POWER GENERATOR TRENCH
+
+Ben enters a humming service trench that powers the huge tractor beam.  The trench seems to be a hundred miles deep.  The clacking sound of a huge switching devices can be heard.  The old Jedi edges his his way along a narrow ledge leading to a control panel that connects two large cables.  He carefully makes several adjustments in the computer terminal, and several lights on the board go from red to blue.
+
+
+INT. DEATH STAR - UNUSED HALLWAY
+
+The group exits the garbage room into a dusty, unused hallway.  Han and Luke remove the trooper suits and strap on the blaster belts.
+
+                    HAN
+          If we can just avoid any more 
+          female advice, we ought to be 
+          able to get out of here.
+
+Luke smiles and scratches his head as he takes a blaster from Solo.
+
+                    LUKE
+          Well, let's get moving!
+
+Chewie begins growling and points to the hatch to the garbage room, as he runs away and then stops howling.
+
+                    HAN
+               (to Chewie)
+          Where are you going?
+
+The dianoga bangs against the hatch and a long, slimy tentacle works its way out of the doorway searching for a victim.  Han aims his pistol.
+
+                    LEIA
+          No, wait.  They'll hear!
+
+Han fires at the doorway.  The noise of the blast echoes relentlessly throughout the empty passageway. Luke simply shakes his head in disgust.
+
+                    HAN
+               (to Chewie)
+          Come here, you big coward!
+
+Chewie shakes his head "no."
+
+                    HAN
+          Chewie!  Come here!
+
+                    LEIA
+          Listen. I don't know who you are, 
+          or where you came from, but from 
+          now on, you do as I tell you.  Okay?
+
+Han is stunned at the command of the petite young girl.
+
+                    HAN
+          Look, Your Worshipfulness, let's 
+          get one thing straight!  I take
+          orders from one person!  Me!
+
+                    LEIA
+          It's a wonder you're still alive.
+               (looking at Chewie)
+          Will somebody get this big walking 
+          carpet out of my way?
+
+Han watches her start away.  He looks at Luke.
+
+                    HAN
+          No reward is worth this.
+
+They follow her, moving swiftly down the deserted corridor.
+
+
+INT. DEATH STAR - POWER TRENCH
+
+Suddenly a door behind Ben slides open and a detachment of stormtroopers marches to the power trench.  Ben instantly slips into the shadows as an Officer moves to within a few feet of him.
+
+                    OFFICER
+          Secure this area until 
+          the alert is canceled.
+
+                    FIRST TROOPER
+          Give me regular reports.
+
+All but two of the stormtroopers leave.
+
+                    FIRST TROOPER
+          Do you know what's going on?
+
+                    SECOND TROOPER
+          Maybe it's another drill.
+
+Ben moves around the tractor beam, watching the stormtroopers as they turn their backs to him.  Ben gestures with his hand toward them, as the troops think they hear something in the other hallway.  With the help of the Force, Ben deftly slips past the troopers and into the main hallway.
+
+                    SECOND TROOPER
+          What was that?
+
+                    FIRST TROOPER
+          Oh, it's nothing.  Don't worry about it.
+
+
+INT. DEATH STAR - HALLWAY
+
+Luke, Han, Chewbacca, and Leia run down an empty hallway and stop before a bay window overlooking the pirateship.  Troopers are milling about the ship.  Luke takes out his pocket comlink.
+
+                    HAN
+               (looking at his ship) 
+          There she is.
+
+                    LUKE
+          See-Threepio, do you copy?
+
+                    THREEPIO
+               (voice) 
+          For the moment.  Uh, we're in the 
+          main hangar across from the ship.
+
+                    LUKE
+          We're right above you.  Stand by.
+
+Han is watching the dozen or so troops moving in and out of the pirateship.  Leia moves towards Han, touches his arm and points out the window to the ship.
+
+                    LEIA
+          You came in that thing?  You're 
+          braver that I thought.
+
+                    HAN
+          Nice!  Come on!
+
+Han gives her a dirty look, and they start off down the hallway.  They round a corner and run right into twenty Imperial stormtroopers heading toward them.  Both groups are taken by surprise and stop in their tracks.
+
+                    FIRST TROOPER
+          It's them!  Blast them!
+
+Before even thinking, Han draws his laser pistol and charges the troops, firing.  His blaster knocks one of the stormtroopers into the air.  Chewie follows his captain down the corridor, stepping over the fallen trooper on the floor.
+
+                    HAN
+               (to Luke and Leia)
+          Get back to the ship!
+
+                    LUKE
+          Where are you going?  Come back!
+
+Han has already rounded a corner and does not hear.
+
+                    LEIA
+          He certainly has courage.
+
+                    LUKE
+          What good will it do us if he 
+          gets himself killed?  Come on!
+
+Luke is furious but doesn't have time to think about it for muted alarms begin to go off down on the hangar deck.  Luke and Leia start off toward the starship hangar.
+
+
+INT. DEATH STAR - SUBHALLWAY
+
+Han chases the stormtroopers down a long subhallway.  He is yelling and brandishing his laser pistol.  The troops reach a dead end and are forced to turn and fight.  Han stops a few feet from them and assumes a defensive position.  The troops begin to raise their laser guns.  Soon all ten troopers are moving into an attack position in front of the lone starpirate.  Han's determined look begins to fade as the troops begin to advance.  Solo jumps backward as they fire at him.
+
+
+INT. DEATH STAR - SUBHALLWAY
+
+Chewbacca runs down the subhallway in a last-ditch attempt to save his bold captain.  Suddenly he hears the firing of laser guns and yelling.  Around the corner shoots Han, pirate extraordinaire, running for his life, followed by a host of furious stormtroopers.  Chewbacca turns and starts running the other way also.
+
+
+INT. DEATH STAR - SUBHALLWAY
+
+Luke fires his laser pistol wildly as he and Leia rush down a narrow subhallway, chased by several stormtroopers.  They quickly reach the end of the subhallway and race through an open hatchway.
+
+
+INT. DEATH STAR - CENTRAL CORE SHAFT
+
+Luke and Leia race through the hatch onto a narrow bridge that spans a huge, deep shaft that seems to go into infinity.  The bridge has been retracted into the wall of the shaft, and Luke almost rushes into the abyss.  He loses his balance off the end of the bridge as Leia, behind him, takes hold of his arm and pulls him back.
+
+                    LUKE
+               (gasping)
+          I think we took a wrong turn.
+
+Blasts from the stormtroopers' laser guns explode nearby reminding them of the oncoming danger.  Luke fires back at the advancing troops.  Leia reaches over and hits a switch that pops the hatch door shut with a resounding boom, leaving them precariously perched on a short piece of bridge overhang.  Laserfire from the troopers continues to hit the steel door.
+
+                    LEIA
+          There's no lock!
+
+Luke blasts the controls with his laser pistol.
+
+                    LUKE
+          That oughta hold it for a while.
+
+                    LEIA
+          Quick, we've got to get across.  
+          Find the control that extends the 
+          bridge.
+
+                    LUKE
+          Oh, I think I just blasted it.
+
+Luke looks at the blasted bridge control while the stormtroopers on the opposite side of the door begin making ominous drilling and pounding sounds.
+
+                    LEIA
+          They're coming through!
+
+Luke notices something on his stormtrooper belt, when laserfire hits the wall behind him.  Luke aims his laser pistol at a stormtrooper perched on a higher bridge overhang across the abyss from them.  They exchange fire.  Two more troopers appear on another overhang, also firing.  A trooper is hit, and grabs at his chest.
+
+Another trooper standing on the bridge overhang is hit by Luke's laserfire, and plummets down the shaft.  Troopers move back off the bridge; Luke hands the gun to Leia.
+
+                    LUKE
+          Here, hold this.
+
+Luke pulls a thin nylon cable from his trooper utility belt.  It has a grappler hook on it.  
+
+A trooper appears on a bridge overhang and fires at Luke and Leia.  As Luke works with the rope, Leia returns the laser volley.  Another trooper appears and fires at them, as Leia returns his fire as well.  Suddenly, the hatch door begins to open, revealing the feet of more troops.
+
+                    LEIA
+          Here they come!
+
+Leia hits one of the stormtroopers on the bridge above, and he falls into the abyss.  Luke tosses the rope across the gorge and it wraps itself around an outcropping of pipes.  He tugs on the rope to make sure it is secure, then grabs the princess in his arms.  Leia looks at Luke, then kisses him quickly on the lips.  Luke is very surprised.
+
+                    LEIA
+          For luck!
+
+Luke pushes off and they swing across the treacherous abyss to the corresponding hatchway on the opposite side.  Just as Luke and Leia reach the far side of the canyon, the stormtroopers break through the hatch and begin to fire at the escaping duo.  Luke returns the fire before ducking into the tiny subhallway.
+
+
+INT. DEATH STAR - NARROW PASSAGEWAY
+
+Ben hides in the shadows of a narrow passageway as several stormtroopers rush past him in the main hallway.  He checks to make sure they're gone, then runs down the hallway in the opposite direction.  Darth Vader appears at the far end of the hallway and starts after the old Jedi.
+
+
+INT. DEATH STAR - MAIN FORWARD BAY
+
+Threepio looks around at the troops milling about the pirateship entry ramp.
+
+                    THREEPIO
+          Where could they be?
+
+Artoo, plugged into the computer socket, turns his dome left and right, beeping a response.
+
+
+INT. DEATH STAR - CORRIDOR - BLAST SHIELDS DOOR
+
+Han and Chewbacca run down a long corridor with several troopers hot on their trail.
+
+                    TROOPER
+          Close the blast doors!
+
+At the end of the hallway, blast doors begin to close in front of them.  The young starpilot and his furry companion race past the huge doors just as they are closing, and manage to get off a couple off laserblasts at the pursuing troops before the doors slam shut.
+
+                    TROOPER
+          Open the blast doors!  Open the blast doors!
+
+
+INT. DEATH STAR - HALLWAY LEADING TO MAIN FORWARD BAY
+
+Ben hurries along one of the tunnels leading to the hangar where the pirateship waits.  Just before he reaches the hangar, Darth Vader steps into view at the end of the tunnel, not ten feet away.  Vader lights his saber.  Ben also ignites his and steps slowly forward.
+
+                    VADER
+          I've been waiting for you, Obi-Wan.  
+          We meet again, at last.  The circle 
+          is now complete.
+
+Ben Kenobi moves with elegant ease into a classical offensive position.  The fearsome Dark Knight takes a defensive stance.
+
+                    VADER
+          When I left you, I was but the 
+          learner; now I am the master.
+
+                    BEN
+          Only a master of evil, Darth.
+
+The two Galactic warriors stand perfectly still for a few moments, sizing each other up and waiting for the right moment.  Ben seems to be under increasing pressure and strain, as if an invisible weight were being placed upon him.  He shakes his head and, blinking, tries to clear his head. 
+
+Ben makes a sudden lunge at the huge warrior but is checked by a lightning movement of The Sith.  A masterful slash stroke by Vader is blocked by the old Jedi.  Another of the Jedi's blows is blocked, then countered.  Ben moves around the Dark Lord and starts backing into the massive starship hangar.  The two powerful warriors stand motionless for a few moments with laser swords locked in mid-air, creating a low buzzing sound.
+
+                    VADER
+          Your powers are weak, old man.
+
+                    BEN
+          You can't win, Darth.  If you 
+          strike me down, I shall become more 
+          powerful than you can possibly 
+          imagine.
+
+Their lightsabers continue to meet in combat.
+
+
+INT. DEATH STAR - MAIN FORWARD BAY
+
+Han Solo and Chewbacca, their weapons in hand, lean back against the wall surveying the forward bay, watching the Imperial stormtroopers make their rounds of the hangar.
+
+                    HAN
+          Didn't we just leave this party?
+
+Chewbacca growls a reply, as Luke and the princess join them.
+
+                    HAN
+          What kept you?
+
+                    LEIA
+          We ran into some old friends.
+
+                    LUKE
+          Is the ship all right?
+
+                    HAN
+          Seems okay, if we can get to it.
+          Just hope the old man got the 
+          tractor beam out of commission.
+
+
+INT. DEATH STAR - HALLWAY
+
+Vader and Ben Kenobi continue their powerful duel.  As they hit their lightsabers together, lightning flashes on impact.  Troopers look on in interest as the old Jedi and Dark Lord of The Sith fight.  Suddenly Luke spots the battle from his group's vantage point.
+
+                    LUKE
+          Look!
+
+Luke, Leia, Han, and Chewie look up and see Ben and Vader emerging from the hallways on the far side of the docking bay.
+
+
+INT. DEATH STAR - DOCKING BAY
+
+Threepio and Artoo-Detoo are in the center of the Death Star's Imperial docking bay.
+
+                    THREEPIO
+          Come on, Artoo, we're going!
+
+Threepio ducks out of sight as the seven stormtroopers who were guarding the starship rush past them heading towards Ben and the Sith Knight.  He pulls on Artoo.
+
+
+INT. DEATH STAR - HALLWAY
+
+Solo, Chewie, Luke, and Leia tensely watch the duel.  The troops rush toward the battling knights.
+
+                    HAN
+          Now's our chance!  Go!
+
+They start for the Millennium Falcon.  
+
+Ben sees the troops charging toward him and realizes that he is trapped.  Vader takes advantage of Ben's momentary distraction and brings his mighty lightsaber down on the old man.  Ben manages to deflect the blow and swiftly turns around.
+
+The old Jedi Knight looks over his shoulder at Luke, lifts his sword from Vader's then watches his opponent with a serene look on his face.
+
+Vader brings his sword down, cutting old Ben in half.  Ben's cloak falls to the floor in two parts, but Ben is not in it.  Vader is puzzled at Ben's disappearance and pokes at the empty cloak.  As the guards are distracted, the adventurers and the robots reach the starship.  
+
+Luke sees Ben cut in two and starts for him.  Aghast, he yells out.
+
+                    LUKE
+          No!
+
+The stormtroopers turn toward Luke and begin firing at him.  The robots are already moving up the ramp into the Millennium Falcon, while Luke, transfixed by anger and awe, returns their fire.  Solo joins in the laserfire.  Vader looks up and advances toward them, as one of his troopers is struck down.
+
+                    HAN
+               (to Luke)
+          Come on!
+
+                    LEIA
+          Come on!  Luke, its too late!
+
+                    HAN
+          Blast the door!  Kid!
+
+Luke fires his laser pistol at the door control panel, and it explodes.  The door begins to slide shut.  Three troopers charge forward firing laser bolts, as the door slides to a close behind them... shutting Vader and the other troops out of the docking bay.  A stormtrooper lies dead at the feet of his onrushing compatriots.  Luke starts for the advancing troops, as Solo and Leia move up the ramp into the pirateship.  He fires, hitting a stormtrooper, who crumples to the floor.
+
+                    BEN'S VOICE
+          Run, Luke!  Run!
+
+Luke looks around to see where the voice came from.  He turns toward the pirateship, ducking Imperial gunfire from the troopers and races into the ship.
+
+
+INT. MILLENNIUM FALCON - COCKPIT
+
+Han pulls back on the controls and the ship begins to move.  The dull thud of laserbolts can be heard bouncing off the outside of the ship as Chewie adjusts his controls.
+
+                    HAN
+          I hope the old man got that tractor 
+          beam out if commission, or this is 
+          going to be a real short trip.  
+          Okay, hit it!
+
+Chewbacca growls in agreement.
+
+
+EXT. MILLENNIUM FALCON
+
+The Millennium Falcon powers away from the Death Star docking bay, makes a spectacular turn and disappears into the vastness of space.
+
+
+INT. MILLENNIUM FALCON - CENTRAL HOLD AREA
+
+Luke, saddened by the loss of Obi-Wan Kenobi, stares off blankly as the robots look on.  Leia puts a blanket around him protectively, and Luke turns and looks up at her.  She sits down beside him.
+
+
+INT. MILLENNIUM FALCON - COCKPIT
+
+Solo spots approaching enemy ships.
+
+                    HAN
+               (to Chewie)
+          We're coming up on the sentry 
+          ships.  Hold 'em off!  Angle the 
+          deflector shields while I charge 
+          up the main guns!
+
+
+INT. MILLENNIUM FALCON - CENTRAL HOLD AREA
+
+Luke looks downward sadly, shaking his head back and forth, as the princess smiles comfortingly at him.
+
+                    LUKE
+          I can't believe he's gone.
+
+Artoo-Detoo beeps a reply.
+
+                    LEIA
+          There wasn't anything you could 
+          have done.
+
+Han rushes into the hold area where Luke is sitting with the princess.
+
+                    HAN
+               (to Luke)
+          Come on, buddy, we're not out 
+          of this yet!
+
+
+INT. MILLENNIUM FALCON - GUNPORTS - COCKPIT
+
+Solo climbs into his attack position in the topside gunport.
+
+
+INT. MILLENNIUM FALCON - HOLD AREA
+
+Luke gets up and moves out toward the gunports as Leia heads for the cockpit.
+
+
+INT. MILLENNIUM FALCON - GUNPORTS - COCKPIT
+
+Luke climbs down the ladder into the gunport cockpit, settling into one of the two main laser cannons mounted in large rotating turrets on either side of the ship.
+
+
+INT. MILLENNIUM FALCON - SOLO'S GUNPORT
+
+Han adjusts his headset as he sits before the controls of his laser cannon, then speaks into the attached microphone.
+
+                    HAN
+               (to Luke)
+          You in, kid?  Okay, stay sharp!
+
+
+INT. MILLENNIUM FALCON - GUNPORTS - COCKPIT
+
+Chewbacca and Princess Leia search the heavens for attacking TIE fighters.  The Wookiee pulls back on the speed controls as the ship bounces slightly.
+
+
+INT. MILLENNIUM FALCON - SOLO'S GUNPORT - COCKPIT
+
+Computer graphic readouts form on Solo's target screen, as Han reaches for controls.
+
+
+INT. MILLENNIUM FALCON - GUNPORT - COCKPIT
+
+Luke sits in readiness for the attack, his hand on the laser cannon's control button.
+
+
+INT. MILLENNIUM FALCON - COCKPIT
+
+Chewbacca spots the enemy ships and barks.
+
+                    LEIA
+               (into intercom)
+          Here they come!
+
+
+INT. COCKPIT - POV SPACE
+
+The Imperial TIE fighters move towards the Millennium Falcon, one each veering off to the left and right of the pirateship.
+
+
+INT. TIE FIGHTER - COCKPIT
+
+The stars whip past behind the Imperial pilot as he adjusts his maneuvering joy stick.
+
+
+EXT. MILLENNIUM FALCON - IN SPACE
+
+The TIE fighter races past the Falcon, firing laser beams as it passes.
+
+
+INT. MILLENNIUM FALCON - HOLD AREA
+
+Threepio is seated in the hold area, next to Artoo-Detoo.  The pirateship bounces and vibrates as the power goes out in the room and then comes back on.
+
+
+INT. MILLENNIUM FALCON - COCKPIT - GUNPORTS
+
+A TIE fighter maneuvers in front of Han, who follows it and fires at it with the laser cannon.  Luke does likewise, as the fighter streaks into view.  The ship has suffered a minor hit, and bounces slightly. 
+
+
+EXT. SPACE
+
+Two TIE fighters dive down toward the pirateship.
+
+
+INT. MILLENNIUM FALCON - GUNPORTS
+
+Luke fires at an unseen fighter.
+
+                    LUKE
+          They're coming in too fast!
+
+
+EXT. SPACE - MILLENNIUM FALCON, TIE FIGHTERS
+
+Pan with pirateship as two TIE fighters charge through the background.  Laserbolts streak from all the craft.
+
+
+INT. MILLENNIUM FALCON - CHEWBACCA
+
+The ship shudders as a laserbolt hits very close to the cockpit.  The Wookiee chatters something to Leia.
+
+
+EXT. TIE FIGHTER - SPACE
+
+Full shot of a TIE fighter as it moves fast through the frame, firing on the pirate starship.
+
+
+EXT. SPACE - TIE FIGHTERS
+
+The two TIE fighters fire a barrage of laserbeams at the pirateship.
+
+
+INT. MILLENNIUM FALCON - MAIN PASSAGEWAY
+
+A laserbolt streaks into the side of the pirateship.  The ship lurches violently, throwing poor Threepio into a cabinet fill of small computer chips.
+
+                    THREEPIO
+          Oooh!
+
+
+INT. MILLENNIUM FALCON - COCKPIT - GUNPORTS
+
+Leia watches the computer readout as Chewbacca manipulates the ship's controls.
+
+                    LEIA
+          We've lost lateral controls.
+
+                    HAN
+          Don't worry, she'll hold together.
+
+An enemy laserbolt hits the pirateship's control panel, causing it to blow out in a shower of sparks.
+
+                    HAN
+               (to ship)
+          You hear me, baby?  Hold together!
+
+Artoo-Detoo advances toward the smoking sparking control panel, dousing the inferno by spraying it with fire retardant beeping all the while.
+
+
+INT. MILLENNIUM FALCON - GUNPORT
+
+Luke swivels in his gun mount, following the TIE fighter with his laser cannon.
+
+
+INT. MILLENNIUM FALCON - GUNPORT
+
+Solo aims his laser cannon at the enemy fighters.
+
+
+EXT. SPACE
+
+A TIE fighter streaks in front of the starship.
+
+
+INT. MILLENNIUM FALCON - COCKPIT
+
+Leia watches the TIE fighter ship fly over.
+
+
+EXT. SPACE
+
+A TIE fighter heads right for the pirateship, then zooms overhead.
+
+
+INT. MILLENNIUM FALCON - GUNPORTS
+
+Luke follows the TIE fighter across his field of view, firing laser beams from his cannon.
+
+
+EXT. TIE FIGHTER
+
+A TIE fighter dives past the pirateship.
+
+
+INT. MILLENNIUM FALCON - GUNPORTS
+
+Luke fires at a TIE fighter.  At his port, Han follows a fighter in his sights, releasing a blast of laserfire.  He connects, and the fighter explodes into fiery dust.  Han laughs victoriously.
+
+
+EXT. SPACE
+
+Two TIE fighters move toward and over the Millennium Falcon, unleashing a barrage of laserbolts at the ship.
+
+
+INT. MILLENNIUM FALCON - GUNPORTS
+
+Another TIE fighter moves in on the pirateship and Luke, smiling, fires the laser cannon at it, scoring a spectacular direct hit.
+
+                    LUKE
+          Got him!  I got him!
+
+Han turns and gives Luke a victory wave which Luke gleefully returns.
+
+                    HAN
+          Great kid!  Don't get cocky.
+
+Han turns back to his laser cannon.
+
+
+EXT. SPACE
+
+Two more TIE fighters cross in front of the pirateship.
+
+
+INT. MILLENNIUM FALCON - COCKPIT
+  
+While Chewbacca manipulates the controls, Leia turns, looking over her shoulder out the ports.
+
+                    LEIA
+          There are still two more of 
+          them out there!
+
+
+EXT. SPACE
+A TIE fighter moves up over the pirateship, firing laserblasts at it.
+
+
+INT. MILLENNIUM FALCON - GUNPORTS
+
+Luke and Han look into their respective projected target screens.  An Imperial fighter crosses Solo's port, and Han swivels in his chair, following it with blasts from his laser cannon.  Another fighter crosses Luke's port, and he reacts in a like manner, the glow of his target screen lighting his face.
+
+
+EXT. SPACE
+
+The TIE fighter zooms toward the pirateship, firing destructive blasts at it.
+
+
+INT. MILLENNIUM FALCON - GUNPORTS
+
+Luke fires a laserblast at the approaching enemy fighter, and it bursts into a spectacular explosion.  Luke's projected screen gives a readout of the hit.  The pirateship bounces slightly as it is struck by enemy fire.
+
+
+EXT. SPACE - TIE FIGHTER
+
+The last of the attacking Imperial TIE fighters looms in, firing upon the Falcon.
+
+
+INT. MILLENNIUM FALCON - GUNPORT
+
+Solo swivels behind his laser cannon, his aim describing the arc of the TIE fighter.  The fighter comes closer, firing at the pirateship, but a well-aimed blast from Solo's laser cannon hits the attacker, which blows up in a small atomic shower of burning fragments.
+
+                    LUKE
+               (laughing)
+          That's it!  We did it!
+
+The princess jumps up and gives Chewie a congratulatory hug.
+
+                    LEIA
+          We did it!
+
+
+INT. MILLENNIUM FALCON - PASSAGEWAY
+
+Threepio lies on the floor of the ship, completely tangled in the smoking, sparking wires.
+
+                    THREEPIO
+          Help!  I think I'm melting!
+               (to Artoo)
+          This is all your fault.
+
+Artoo turns his dome from side to side, beeping in response.
+
+
+EXT. SPACE - MILLENNIUM FALCON
+
+The victorious Millennium Falcon moves off majestically through space.
+
+
+INT. DEATH STAR - CONTROL ROOM
+
+Darth Vader strides into the control room, where Tarkin is watching the huge view screen.  A sea of stars is before him.
+
+                    TARKIN
+          Are they away?
+
+                    VADER
+          They have just made the jump into 
+          hyperspace.
+
+                    TARKIN
+          You're sure the homing beacon is 
+          secure aboard their ship?  I'm 
+          taking an awful risk, Vader.  This 
+          had better work.
+
+
+INT. MILLENNIUM FALCON - COCKPIT
+
+Han, removes his gloves and smiling, is at the controls of the ship.  Chewie moves into the aft section to check the damage.  Leia is seated near Han.
+
+                    HAN
+          Not a bad bit of rescuing, huh?  
+          You know, sometimes I even amaze 
+          myself.
+
+                    LEIA
+          That doesn't sound too hard.  
+          Besides, they let us go.  It's 
+          the only explanation for the ease 
+          of our escape.
+
+                    HAN
+          Easy... you call that easy?
+
+                    LEIA
+          Their tracking us!
+
+                    HAN
+          Not this ship, sister.
+
+Frustrated, Leia shakes her head.
+
+                    LEIA
+          At least the information in Artoo 
+          is still intact.
+
+                    HAN
+          What's so important?  What's he 
+          carrying?
+
+                    LEIA
+          The technical readouts of that 
+          battle station.  I only hope that 
+          when the data is analyzed, a 
+          weakness can be found.  It's not 
+          over yet!
+
+                    HAN
+          It is for me, sister!  Look, I ain't 
+          in this for your revolution, and 
+          I'm not in it for you, Princess.  I 
+          expect to be well paid.  I'm in it 
+          for the money!
+
+                    LEIA
+          You needn't worry about your reward.  
+          If money is all that you love, then 
+          that's what you'll receive!
+
+She angrily turns, and as she starts out of the cockpit, passes Luke coming in.
+
+                    LEIA
+          Your friend is quite a mercenary.  
+          I wonder if he really cares about 
+          anything... or anyone.
+
+                    LUKE
+          I care!
+
+Luke, shaking his head, sits in the copilot seat.  He and Han stare out at the vast blackness of space.
+
+                    LUKE
+          So... what do you think of her, 
+          Han?
+
+                    HAN
+          I'm trying not to, kid!
+
+                    LUKE
+               (under his breath)
+          Good...
+
+                    HAN
+          Still, she's got a lot of spirit.  
+          I don't know, what do you think?  
+          Do you think a princess and a 
+          guy like me...
+
+                    LUKE
+          No!
+     
+Luke says it with finality and looks away.  Han smiles at young Luke's jealousy.
+
+
+EXT. SPACE AROUND FOURTH MOON OF YAVIN
+
+The battered pirateship drifts into orbit around the planet Yavin and proceeds to one of its tiny green moons.
+
+
+EXT. FOURTH MOON OF YAVIN
+
+The pirateship soars over the dense jungle.
+
+
+EXT. MASSASSI OUTPOST
+
+An alert guard, his laser gun in hand, scans the countryside.  He sets the gun down and looks toward the temple, barely visible in the foliage.
+
+
+EXT. MASSASSI OUTPOST - JUNGLE TEMPLE
+
+Rotting in a forest of gargantuan trees, an ancient temple lies shrouded in an eerie mist.  The air is heavy with the fantastic cries of unimaginable creatures.  Han, Luke and the others are greeted by the Rebel troops.
+
+Luke and the group ride into the massive temple on an armored military speeder.
+
+
+INT. MASSASSI - MAIN HANGAR DECK
+
+The military speeder stops in a huge spaceship hangar, set up in the interior of the crumbling temple.  Willard, the commander of the Rebel forces, rushes up to the group and gives Leia a big hug.  Every one is pleased to see her.
+
+
+                    WILLARD
+               (holding Leia)
+          You're safe!  We had feared the 
+          worst.
+
+Willard composes himself, steps back and bows formally.
+
+                    WILLARD
+          When we heard about Alderaan, 
+          we were afraid that you were... 
+          lost along with your father.
+
+                    LEIA
+          We don't have time for our sorrows, 
+          commander.  The battle station has 
+          surely tracked us here.
+               (looking pointedly 
+                at Han)
+          It's the only explanation for the 
+          ease of our escape.  You must use 
+          the information in this R2 unit to 
+          plan the attack.  It is our only 
+          hope.
+
+
+EXT. SPACE
+
+The surface of the Death Star ominously approaches the red planet Yavin.
+
+
+INT. DEATH STAR - CONTROL ROOM
+
+Grand Moff Tarkin and Lord Darth Vader are interrupted in their discussion by the buzz of the comlink.  Tarkin moves to answer the call.
+
+                    TARKIN
+          Yes.
+
+                    DEATH STAR INTERCOM VOICE
+          We are approaching the planet 
+          Yavin.  The Rebel base is on a 
+          moon on the far side.  We are 
+          preparing to orbit the planet.
+
+
+EXT. YAVIN - JUNGLE
+
+A lone guard stands in a tower high above the Yavin landscape, surveying the countryside.  A mist hangs over the jungle of twisted green.
+
+
+INT. MASSASSI - WAR ROOM BRIEFING AREA
+
+Dodonna stands before a large electronic wall display.  Leia and several other senators are to one side of the giant readout.  The low-ceilinged room is filled with starpilots, navigators, and a sprinkling of R2-type robots.  Everyone is listening intently to what Dodonna is saying.  Han and Chewbacca are standing near the back.
+
+                    DODONNA
+          The battle station is heavily 
+          shielded and carries a firepower 
+          greater than half the star fleet.
+          Its defenses are designed around 
+          a direct large-scale assault.  A 
+          small one-man fighter should be 
+          able to penetrate the outer defense.
+
+Gold Leader, a rough looking man in his early thirties, stands and addresses Dodonna.
+
+                    GOLD LEADER
+          Pardon me for asking, sir, but 
+          what good are snub fighters going 
+          to be against that?
+
+                    DODONNA
+          Well, the Empire doesn't consider 
+          a small one-man fighter to be any 
+          threat, or they'd have a tighter 
+          defense.  An analysis of the plans 
+          provided by Princess Leia has 
+          demonstrated a weakness in the 
+          battle station.
+
+Artoo-Detoo stands next to a similar robot, makes beeping sounds, and turns his head from right to left.
+
+                    DODONNA
+          The approach will not be easy.  
+          You are required to maneuver 
+          straight down this trench and skim 
+          the surface to this point.  The 
+          target area is only two meters 
+          wide.  It's a small thermal 
+          exhaust port, right below the main 
+          port.  The shaft leads directly to 
+          the reactor system.  A precise hit 
+          will start a chain reaction which 
+          should destroy the station.
+
+A murmur of disbelief runs through the room.
+
+                    DODONNA
+          Only a precise hit will set up a 
+          chain reaction.  The shaft is ray-
+          shielded, so you'll have to use 
+          proton torpedoes.
+
+Luke is sitting next to Wedge Antilles, a hotshot pilot about sixteen years old.
+
+                    WEDGE
+          That's impossible, even for a 
+          computer.
+
+                    LUKE
+          It's not impossible.  I used to 
+          bullseye womp rats in my T-sixteen 
+          back home.  They're not much bigger 
+          than two meters.
+
+                    DODONNA
+          Man your ships!  And may the Force 
+          be with you!
+
+The group rises and begins to leave.
+
+
+EXT. SPACE.
+
+The Death Star begins to move around the planet toward the tiny green moon.
+
+
+INT. DEATH STAR
+
+Tarkin and Vader watch the computer projected screen with interest, as a circle of lights intertwines around one another on the screen showing it's position in relation to Yavin and the forth moon.
+
+                    DEATH STAR INTERCOM VOICE
+          Orbiting the planet at maximum 
+          velocity.  The moon with the 
+          Rebel base will be in range in 
+          thirty minutes.
+
+                    VADER
+          This will be a day long remembered.  
+          It has seen the end of Kenobi and 
+          it will soon see the end of the Rebellion.
+
+
+INT. MASSASSI OUTPOST - MAIN HANGAR DECK
+
+Luke, Threepio and little Artoo enter the huge spaceship hangar and hurry along a long line of gleaming spacefighters.  Flight crews rush around loading last-minute armaments and unlocking power couplings.  In an area isolated from this activity Luke finds Han and Chewbacca loading small boxes onto an armored speeder.
+
+                    MAN'S VOICE
+               (over loudspeaker)
+          All flight troops, man your stations.  
+          All flight troops, man your stations.
+
+Han is deliberately ignoring the activity of the fighter pilots' preparation.  Luke is quite saddened at the sight of his friend's departure.
+
+                    LUKE
+          So... you got your reward and 
+          you're just leaving then?
+
+                    HAN
+          That's right, yeah!  I got some 
+          old debts I've got to pay off 
+          with this stuff.  Even if I didn't, 
+          you don't think I'd be fool enough 
+          to stick around here, do you?  Why 
+          don't you come with us?  You're 
+          pretty good in a fight.  I could 
+          use you.
+
+                    LUKE
+               (getting angry)
+          Come on!  Why don't you take a look 
+          around?  You know what's about to 
+          happen, what they're up against.  
+          They could use a good pilot like you.  
+          You're turning your back on them.
+
+                    HAN
+          What good's a reward if you ain't 
+          around to use it?  Besides, 
+          attacking that battle station ain't
+          my idea of courage.  It's more like 
+          suicide.
+
+                    LUKE
+          All right.  Well, take care of 
+          yourself, Han... guess that's what 
+          you're best at, isn't it?
+
+Luke goes off and Han hesitates, then calls to him.
+
+                    HAN
+          Hey, Luke... may the Force be with 
+          you!
+
+Luke turns and sees Han wink at him.  Luke lifts his hand in a small wave and then goes off. 
+
+Han turns to Chewie who growls at his captain,
+
+                    HAN
+          What're you lookin' at?  I know 
+          what I'm doing.
+
+
+INT. MAIN HANGAR DECK - LUKE'S SHIP
+
+Luke, Leia, and Dodonna meet under a huge space fighter.
+
+                    LEIA
+          What's wrong?
+
+                    LUKE
+          Oh, it's Han!  I don't know, I 
+          really thought he'd change his 
+          mind. 
+
+                    LEIA
+          He's got to follow his own path.  
+          No one can choose it for him.
+
+                    LUKE
+          I only wish Ben were here.
+
+Leia gives Luke a little kiss, turns, and goes off.  
+
+As Luke heads for his ship, another pilot rushes up to him and grabs his arm.
+
+                    BIGGS
+          Luke!  I don't believe it!  How'd 
+          you get here... are you going out 
+          with us?!
+
+                    LUKE
+          Biggs!  Of course, I'll be up there 
+          with you!  Listen, have I got some 
+          stories to tell...
+
+Red Leader, a rugged handsome man in his forties, comes up behind Luke and Biggs.  He has the confident smile of a born leader.
+
+                    RED LEADER
+          Are you... Luke Skywalker?  Have 
+          you been checked out on the Incom 
+          T-sixty-five?
+
+                    BIGGS
+          Sir, Luke is the best bushpilot in 
+          the outer rim territories.
+
+Red Leader pats Luke on the back as they stop in front of his fighter.
+
+                    RED LEADER
+          I met your father once when I was 
+          just a boy.  He was a great pilot.  
+          You'll do all right.  If you've 
+          got half of your father's skill, 
+          you'll do better than all right.
+
+                    LUKE
+          Thank you, sir.  I'll try.
+
+Red Leader hurries to his own ship.
+
+                    BIGGS
+          I've got to get aboard.  Listen, 
+          you'll tell me your stories when we 
+          come back.  All right?
+
+                    LUKE
+          I told you I'd make it someday, Biggs.
+
+                    BIGGS
+               (going off)
+          You did, all right.  It's going 
+          to be like old times Luke. 
+          We're a couple of shooting stars 
+          that'll never be stopped!
+
+Luke laughs and shakes his head in agreement.  He heads for his ship.
+
+As Luke begins to climb up the ladder into his sleek, deadly spaceship, the crew chief, who is working on the craft, points to little Artoo, who is being hoisted into a socket on the back of the fighter.
+
+                    CHIEF
+          This R2 unit of your seems a bit 
+          beat up.  Do you want a new one?
+
+                    LUKE
+          Not on your life!  That little 
+          droid and I have been through a 
+          lot together.
+               (to Artoo)
+          You okay, Artoo?
+
+The crewmen lower Artoo-Detoo into the craft.  Now a part of the exterior shell of the starship, the little droid beeps that he is fine.
+
+Luke climbs up into the cockpit of his fighter and puts an his helmet.  Threepio looks on from the floor of the massive hangar as the crewmen secure his little electronic partner into Luke's X-wing.  It's an emotion-filled moment as Artoo beeps good-bye.
+
+                    CHIEF
+          Okay, easy she goes!
+
+                    THREEPIO
+          Hang on tight, Artoo, you've 
+          got to come back.
+
+Artoo beeps in agreement.
+
+                    THREEPIO
+          You wouldn't want my life to get 
+          boring, would you?
+
+Artoo whistles his reply.
+
+All final preparations are made for the approaching battle.  The hangar is buzzing with the last minute activity as the pilots and crewmen alike make their final adjustments.  
+
+The hum of activity is occasionally trespassed by the distorted voice of the loudspeaker issuing commands.  Coupling hoses are disconnected from the ships as they are fueled.  Cockpit shields roll smoothly into place over each pilot.  A signalman, holding red guiding lights, directs the ships.  Luke, a trace of a smile gracing his lips, peers about through his goggles.
+
+                    BEN'S VOICE
+          Luke, the Force will be with you.
+
+Luke is confused at the voice and taps his headphones.
+
+
+EXT. MASSASSI OUTPOST - JUNGLE
+
+All that can be seen of the fortress is a lone guard standing on a small pedestal jutting out above the dense jungle.  The muted gruesome crying sounds that naturally permeate this eerie purgatory are overwhelmed by the thundering din of ion rockets as four silver starships catapult from the foliage in a tight formation and disappear into the morning cloud cover.
+
+
+INT. MASSASSI OUTPOST - WAR ROOM
+
+The princess, Threepio, and a field commander sit quietly before the giant display showing the planet Yavin and its four moons.  The red dot that represents the Death Star moves ever closer to the system.  A series of green dots appears around the fourth moon.  A din of indistinct chatter fills the war room.
+
+                    MASSASSI INTERCOM VOICE
+          Stand-by alert.  Death Star 
+          approaching.  Estimated time to 
+          firing range, fifteen minutes.
+
+
+EXT. SPACE
+
+The Death Star slowly moves behind the massive yellow surface of Yavin in the foreground, as many X-wing fighters flying in formation zoom toward us and out of the frame.
+
+
+EXT. SPACE - ANOTHER ANGLE
+
+Light from a distant sun creates an eerie atmospheric glow around a huge planet, Yavin.  Rebel fighters flying in formation settle ominously in the foreground and very slowly pull away.
+
+
+INT. RED LEADER STARSHIP - COCKPIT
+
+Red Leader lowers his visor and adjusts his gun sights, looking to each side at his wing men.
+
+                    RED LEADER
+          All wings report in.
+
+
+INT. ANOTHER COCKPIT
+
+One of the Rebel fighters checks in through his mike.
+
+                    RED TEN
+          Red Ten standing by.
+
+
+INT. BIGGS' COCKPIT
+
+Biggs checks his fighter's controls, alert and ready for combat.
+
+                    RED SEVEN
+               (over Biggs' headset)
+          Red Seven standing by.
+
+                    BIGGS
+          Red Three standing by.
+
+
+INT. PORKINS' COCKPIT
+
+                    PORKINS
+          Red Six standing by.
+
+                    RED NINE
+               (over headset)
+          Red Nine standing by.
+
+
+INT. WEDGE'S FIGHTER - COCKPIT
+
+                    WEDGE
+          Red Two standing by.
+
+
+INT. LUKE'S X-WING FIGHTER - COCKPIT
+
+                    RED ELEVEN
+               (over headset)
+          Red Eleven standing by.
+
+                    LUKE
+          Red Five standing by.
+
+
+EXT. LUKE'S X-WING FIGHTER
+
+Artoo-Detoo, in position outside of the fighter, turns his head from side to side and makes beeping sounds.
+
+
+INT. RED LEADER'S FIGHTER - COCKPIT
+
+                    RED LEADER
+          Lock S-foils in attack position.
+
+
+EXT. SPACE
+
+The group of X-wing fighters move in formation toward the Death Star, unfolding the wings and locking them into the "X" position.
+
+
+INT. BIGGS' COCKPIT
+
+                    RED LEADER
+               (over headset)
+          We're passing through their 
+          magnetic field.
+
+
+INT. RED LEADER'S COCKPIT
+
+                    RED LEADER
+          Hold tight!
+
+
+INT. LUKE'S X-WING FIGHTER - COCKPIT
+
+Luke adjusts his controls as he concentrates on the approaching Death Star.  The ship begins to be buffeted slightly.
+
+                    RED LEADER
+               (over headset)
+          Switch your deflectors on.
+
+
+INT. ANOTHER COCKPIT
+
+                    RED LEADER
+               (over headset)
+          Double front!
+
+
+EXT. SPACE
+
+The fighters, now X-shaped darts, move in formation.  The Death Star now appears to be a small moon growing rapidly in size as the Rebel fighters approach.  Complex patterns on the metallic surface begin to become visible.  A large dish antenna is built into the surface on one side.
+
+
+INT. WEDGE'S COCKPIT
+
+Wedge is amazed and slightly frightened at the awesome spectacle.
+
+                    WEDGE
+          Look at the size of that thing!
+
+                    RED LEADER
+               (over headset)
+          Cut the chatter, Red Two.
+
+
+INT. RED LEADER'S COCKPIT
+
+                    RED LEADER
+          Accelerate to attack speed.  This 
+          is it, boys!
+
+
+EXT. SPACE
+
+As the fighters move closer to the Death Star, the awesome size of the gargantuan Imperial fortress is revealed.  Half of the deadly space station is in shadow and this area sparkles with thousands of small lights running in thin lines and occasionally grouped in large clusters; somewhat like a city at night as seen from a weather satellite.
+
+
+INT. GOLD LEADER'S COCKPIT
+
+                    GOLD LEADER
+          Red Leader, this is Gold Leader.
+
+                    RED LEADER
+               (over headset)
+          I copy, Gold Leader.
+
+                    GOLD LEADER
+          We're starting for the target 
+          shaft now.
+
+
+INT. RED LEADER'S COCKPIT
+
+Red Leader looks around at his wingmen; the Death Star looming in from behind.  Two Y-wing fighters bob back and forth in the background.  He moves his computer targeting device into position.
+
+                    RED LEADER
+          We're in position.  I'm going to 
+          cut across the axis and try and 
+          draw their fire.
+
+
+EXT. SPACE
+
+Two squads of Rebel fighters peel off.  The X-wings dive towards the Death Star surface.  A thousand lights glow across the dark gray expanse of the huge station.
+
+
+INT. DEATH STAR
+
+Alarm sirens scream as soldiers scramble to large turbo- powered laser gun emplacements.  Electronic drivers rotate the huge guns into position as the crew adjust their targeting devices.
+
+EXT. SPACE AROUND THE DEATH STAR
+
+Laserbolts streak through the star-filled night.  The Rebel X-wing fighters move in toward the Imperial base, as the Death Star aims its massive laser guns at the Rebel forces and fires.
+
+
+INT. MASSASSI OUTPOST - WAR ROOM
+
+Princess Leia listens to the battle over the intercom.  Threepio is at her side.
+
+                    WEDGE
+               (over war room speaker system)
+          Heavy fire, boss!  Twenty-three
+          degrees.
+
+                    RED LEADER
+               (over speaker)
+          I see it.  Stay low. 
+
+
+EXT. SPACE
+
+An X-wing zooms across the surface of the Death Star.
+
+
+INT. DEATH STAR
+
+Technical crews scurry here and there loading last-minute armaments and unlocking power cables.
+
+
+INT. WEDGE'S COCKPIT
+
+Wedge maneuvers his fighter toward the menacing Death Star.
+
+
+EXT. SPACE
+
+X-wings continue in their attack course on the Death Star.
+
+
+INT. LUKE'S X-WING FIGHTER - COCKPIT
+
+Luke nosedives radically, starting his attack on the monstrous fortress.  The Death Star surface streaks past the cockpit window.
+
+                    LUKE
+          This is Red Five!  I'm going in!
+
+
+EXT. SPACE
+
+Luke's X-wing races toward the Death Star.  Laserbolts streak from Luke's weapons, creating a huge fireball explosion on the dim surface.
+
+
+INT. LUKE'S X-WING FIGHTER - COCKPIT
+
+Terror crosses Luke's face as he realizes he won't be able to pull out in time to avoid the fireball.
+
+                    BIGGS
+               (over headset)
+          Luke, pull up!
+
+
+EXT. SURFACE OF DEATH STAR
+
+Luke's ship emerges from the fireball, with the leading edges of his wings slightly scorched.
+
+
+INT. BIGGS' COCKPIT
+
+                    BIGGS
+          Are you all right?
+
+
+INT. LUKE'S X-WING FIGHTER - COCKPIT
+
+Luke adjusts his controls and breathes a sigh of relief.  Flak bursts outside the cockpit window.
+
+                    LUKE
+          I got a little cooked, but I'm 
+          okay.
+
+
+EXT. SURFACE OF THE DEATH STAR
+
+Rebel fighters continue to strafe the Death Star's surface with laserbolts.
+
+
+INT. DEATH STAR
+
+Walls buckle and cave in.  Troops and equipment are blown in all directions.  Stormtroopers stagger out of the rubble. Standing in the middle of the chaos, a vision of calm and foreboding, is Darth Vader.  One of his Astro-Officers rushes up to him.
+
+                    ASTRO-OFFICER
+          We count thirty Rebel ships, Lord 
+          Vader.  But they're so small 
+          they're evading our turbo-lasers!
+
+                    VADER
+          We'll have to destroy them ship 
+          to ship.  Get the crews to their 
+          fighters.
+
+
+INT. DEATH STAR
+
+Smoke belches from the giant laser guns as they wind up their turbine generators to create sufficient power.  The crew rushes about preparing for another blast.  Even the troopersÕ head gear is not adequate to protect them from the overwhelming noise of the monstrous weapon.  One trooper bangs his helmet with his hand in an attempt to stop the ringing.
+
+
+INT. READ LEADER'S X-WING FIGHTER - COCKPIT - TRAVELING
+
+Red Leader flies through a heavy hail of flak.
+
+                    RED LEADER
+          Luke, let me know when you're 
+          going in.
+
+
+INT. LUKE'S X-WING - COCKPIT - TRAVELING
+
+The Red Leader's X-wing flies past Luke as he puts his nose down and starts his attack dive.
+
+                    LUKE
+          I'm on my way in now...
+
+                    RED LEADER
+          Watch yourself!  There's a lot of 
+          fire coming from the right side of 
+          that deflection tower.
+
+                    LUKE
+          I'm on it.
+
+
+EXT. SURFACE OF THE DEATH STAR
+
+Luke flings his X-wing into a twisting dive across the horizon and down onto the dim gray surface.
+
+
+EXT. LUKE'S X-WING TRAVELING
+
+A shot hurls from Luke's guns.  Laserbolts streak toward the onrushing Death Star surface.  Several small radar emplacements erupt in flame.  Laserfire erupts from a protruding tower on the surface.
+
+
+INT. LUKE'S X-WING - COCKPIT - TRAVELING
+
+The blurry Death Star surface races past the cockpit windows as a big smile sweeps across Luke's face at the success of his run.  Flak thunders on all sides of him.
+
+
+EXT. SURFACE OF THE DEATH STAR
+
+The Death Star superstructure races past Luke as he maneuvers his craft through a wall of laserfire and peels away from the surface towards the heavens.
+
+
+INT. DEATH STAR
+
+The thunder and smoke of the big guns reverberate throughout the massive structure.  Many soldiers rush about in the smoke and chaos, silhouetted by the almost continual flash of explosions.
+
+
+INT. BIGGS' COCKPIT - TRAVELING
+
+Biggs dives through a forest of radar domes, antennae, and gun towers as he shoots low across the Death Star surface.  A dense barrage of laserfire streaks by on all sides.
+
+
+INT. DEATH STAR
+
+Imperial star pilots dash in unison to a line of small auxiliary hatches that lead to Imperial TIE fighters.
+
+
+INT. MASSASSI OUTPOST - WAR ROOM
+
+Princess Leia, surrounded by her generals and aides, paces nervously before a lighted computer table.  On all sides technicians work in front of many lighted glass walls.  Dodonna watches quietly from one corner.  One of the officers working over a screen speaks into his headset.
+
+                    CONTROL OFFICER
+          Squad leaders, we've picked up a 
+          new group of signals.  Enemy 
+          fighters coming your way.
+
+
+INT. LUKE'S X-WING - COCKPIT - TRAVELING
+
+Luke looks around to see if he can spot the approaching Imperial fighters.
+
+                    LUKE
+          My scope's negative.  I don't see 
+          anything.
+
+
+INT. RED LEADER'S X-WING - COCKPIT - TRAVELING
+
+The Death Star's surface sweeps past as Red Leader searches the sky for the Imperial fighter.  Flak pounds at his ship.
+
+                    RED LEADER
+          Keep up your visual scanning.  
+          With all this jamming, they'll 
+          be on top of you before your 
+          scope can pick them up.
+
+
+EXT. SURFACE OF THE DEATH STAR
+
+Silhouetted against the rim lights of the Death Star horizon, four ferocious Imperial TIE ships dive on the Rebel fighters.  Two of the TIE fighters peel off and drop out of frame. Pan with the remaining two TIE ships.
+
+
+INT. BIGGS' COCKPIT - TRAVELING
+
+Biggs panics when he discovers a TIE ship on his tail.  The horizon in the background twists around as he peels off, hoping to lose the Imperial fighter.
+
+
+INT. RED LEADER'S COCKPIT
+
+                    RED LEADER
+          Biggs!  You've picked one up... 
+          watch it!
+
+                    BIGGS
+          I can't see it!  Where is he?!
+
+
+EXT. SPACE AROUND THE DEATH STAR
+
+Biggs zooms off the surface and into space, closely followed by an Imperial TIE fighter.  The TIE ship fires several laserbolts at Biggs, but misses.
+
+
+INT. BIGGS' COCKPIT - TRAVELING
+
+Biggs see the TIE ship behind him and swings around, trying to avoid him.
+
+                    BIGGS
+          He's on me tight, I can't shake 
+          him... I can't shake him.
+
+
+EXT. SPACE AROUND THE DEATH STAR
+
+Biggs, flying at high altitude, peels off and dives toward the Death Star surface, but he is unable to lose the TIE fighter, who sticks close to his tail.
+
+
+INT. X-WING FIGHTER - COCKPIT - TRAVELING
+
+Luke is flying upside down.  He rotates his ship around to normal attitude as he comes out of his dive.
+
+                    LUKE
+          Hang on, Biggs, I'm coming in.
+
+
+EXT. SPACE AROUND THE DEATH STAR
+
+Biggs and the tailing TIE ship dive for the surface, now followed by a fast-gaining Luke.  After Biggs dives out of sight, Luke chases the Imperial fighter.
+
+
+EXT. SURFACE AROUND THE DEATH STAR
+
+In the foreground, the Imperial fighter races across the Death Star's surface, closely followed by Luke in the background.
+
+
+INT. LUKE'S X-WING FIGHTER - COCKPIT - TRAVELING
+
+There is a shot from Luke's X-wing of the TIE ship exploding in a mass of flames.
+
+                    LUKE
+          Got him!
+
+
+INT. DEATH STAR
+
+Darth Vader strides purposefully down a Death Star corridor, flanked by Imperial stormtroopers.
+
+                    VADER
+          Several fighters have broken 
+          off from the main group.  Come 
+          with me!
+
+
+INT. MASSASSI OUTPOST - WAR ROOM
+
+A concerned Princess Leia, Threepio, Dodonna, and other officers of the Rebellion stand around the huge round readout screen, listening to the ship-to-ship communication on the room's loudspeaker.
+
+                    BIGGS
+               (over speaker)
+          Pull in!  Luke... pull in!
+
+                    WEDGE
+               (over speaker)
+          Watch your back, Luke!
+
+
+INT. LUKE'S X-WING FIGHTER - COCKPIT
+
+                    WEDGE
+               (over headset)
+          Watch your back!  Fighter's above 
+          you, coming in!
+
+
+EXT. SPACE
+
+Luke's ship soars away from the Death Star's surface as he spots the tailing TIE fighter.
+
+
+INT. TIE FIGHTER'S COCKPIT
+
+The TIE pilot takes aim at Luke's X-wing.
+
+
+EXT. SPACE
+
+The Imperial TIE fighter pilot scores a hit on Luke's ship.  Fire breaks out on the right side of the X-wing.
+
+
+INT. LUKE'S X-WING FIGHTER - COCKPIT
+
+Luke looks out of his cockpit at the flames on his ship.
+
+                    LUKE
+          I'm hit, but not bad.
+
+
+EXT. LUKE'S X-WING FIGHTER
+
+Smoke pours out from behind Artoo-Detoo.
+
+                    LUKE'S VOICE
+          Artoo, see what you can do with 
+          it.  Hang on back there.
+
+Green laserfire moves past the beeping little robot as his head turns.
+
+
+INT. LUKE'S X-WING - COCKPIT
+
+Luke nervously works his controls.
+
+                    RED LEADER
+               (over headset)
+          Red Six...
+
+
+INT. MASSASSI OUTPOST - WAR ROOM
+
+In the war room, Leia stands frozen as she listens and worries about Luke.
+
+                    RED LEADER
+               (over speaker)
+          Can you see Red Five?
+
+                    RED TEN
+               (over speaker)
+          There's a heavy fire zone on this 
+          side. Red Five, where are you?
+
+
+INT. LUKE'S X-WING - COCKPIT
+
+Luke spots the TIE fighter behind him and soars away from the Death Star surface.
+
+                    LUKE
+          I can't shake him!
+
+
+EXT. SURFACE OF THE DEATH STAR
+
+Luke's ship soars closer to the surface of the Death Star, an Imperial TIE fighter closing in on him in hot pursuit.
+
+
+INT. WEDGE'S COCKPIT
+
+The Death Star whips below Wedge.
+
+                    WEDGE
+          I'm on him, Luke!
+
+
+INT. LUKE'S X-WING - COCKPIT
+
+                    WEDGE
+               (over headset)
+          Hold on!
+
+
+EXT. SURFACE OF THE DEATH STAR
+
+Wedge dives across the horizon toward Luke and the TIE fighter.
+
+
+INT. WEDGE'S COCKPIT
+
+Wedge moves his X-wing in rapidly.
+
+
+INT. LUKE'S X-WING - COCKPIT
+
+Luke reacts frantically.
+
+                    LUKE
+          Blast it!  Wedge where are you?
+
+
+INT. TIE FIGHTER - COCKPIT
+
+The fighter pilot watches Wedge's X-wing approach.  Another X-wing joins him, and both unleash a volley of laserfire on the Imperial fighter.
+
+
+EXT. SPACE
+
+The TIE fighter explodes, filling the screen with white light.  Luke's ship can be seen far in the distance.
+
+
+INT. LUKE'S X-WING - COCKPIT
+
+Luke looks about in relief.
+
+                    LUKE
+          Thanks, Wedge.
+
+
+INT. MASSASSI OUTPOST - WAR ROOM
+
+Leia, Threepio, Dodonna and other Rebel officers are listening to the Rebel Fighter's radio transmissions over the war room intercom.
+
+                    BIGGS
+               (over speaker)
+          Good shooting, Wedge!
+
+                    GOLD LEADER
+               (over speaker)
+          Red Leader...
+
+
+INT. GOLD LEADER'S Y-WING - COCKPIT
+
+Gold Leader peels off and starts toward the long trenches at the Death Star surface pole.
+
+                    GOLD LEADER
+          ... This is Gold Leader.  We're 
+          starting out attack run.
+
+
+EXT. SPACE AROUND THE DEATH STAR
+
+Three Y-wing fighters of the Gold group dive out of the stars toward the Death Star surface.
+
+
+INT. MASSASSI OUTPOST - WAR ROOM
+
+Leia and the others are grouped around the screen, as technicians move about attending to their duties.
+
+                    RED LEADER
+               (over speaker)
+          I copy, Gold Leader.  Move into 
+          position.
+
+
+EXT. SPACE AROUND THE DEATH STAR
+
+Three Imperial TIE ships in precise formation dive toward the Death Star surface.
+
+
+INT. DARTH VADER'S COCKPIT
+
+Darth Vader calmly adjusts his control stick as the stars whip past in the window above his head.
+
+                    VADER
+          Stay in attack formation!
+
+
+INT. MASSASSI OUTPOST - WAR ROOM
+
+Technicians are seated at the computer readout table.
+
+                    GOLD LEADER
+               (over speaker)
+          The exhaust post is...
+
+
+INT. GOLD LEADER'S Y-WING - COCKPIT
+
+                    GOLD LEADER
+          ... marked and locked in!
+
+
+EXT. SPACE AROUND THE DEATH STAR
+
+Gold Leader approaches the surface and pulls out to skim the surface of the huge station.  The ship moves into a deep trench, firing laserbolts.  The surface streaks past as laserfire is returned by the Death Star.
+
+
+INT. GOLD FIVE'S Y-WING - COCKPIT - TRAVELING
+
+Gold Five is a pilot in his early fifties with a very battered helmet that looks like it's been through many battles.  He looks around to see if enemy ships are near.  His fighter is buffeted by Imperial flak.
+
+
+INT. GOLD LEADER'S Y-WING - COCKPIT
+
+Gold Leader races down the enormous trench that leads to the exhaust port.  Laserbolts blast toward him in increasing numbers, occasionally exploding near the ship causing it to bounce about.
+
+                    GOLD LEADER
+          Switch power to front deflection 
+          screens.
+
+
+EXT. SURFACE OF THE DEATH STAR
+
+Three Y-wing skim the Death Star surface deep in the trench, as laserbolts streak past on all sides.
+
+
+EXT. DEATH STAR SURFACE - GUN EMPLACEMENTS
+
+An exterior surface gun blazes away at the oncoming Rebel fighters.
+
+
+INT. GOLD LEADER'S Y-WING - COCKPIT
+
+                    GOLD LEADER
+          How many guns do you think, Gold 
+          Five?
+
+
+INT. MASSASSI OUTPOST - WAR ROOM
+
+                    GOLD FIVE
+               (over speaker)
+          I'd say about twenty guns.  Some 
+          on the surface, some on the towers.
+
+Leia, Threepio, and the technicians view the projected target screen, as red and blue target lights glow.  The red target near the center blinks on and off.
+
+                    MASSASSI INTERCOM VOICE
+               (over speaker)
+          Death Star will be in range in 
+          five minutes. 
+
+
+EXT. SURFACE OF THE DEATH STAR
+
+The three Y-wing fighters race toward camera and zoom overhead through a hail of laserfire.
+
+
+INT. GOLD LEADER'S Y-WING - COCKPIT
+
+Gold Leader pulls his computer targeting device down in front of his eye.  Laserbolts continue to batter the Rebel craft.
+
+                    GOLD LEADER
+          Switch to targeting computer.
+
+
+INT. GOLD TWO'S Y-WING - COCKPIT
+
+Gold Two, a younger pilot about Luke's age, pulls down his targeting eye viewer and adjusts it.  His ship shudders under intense laser barrage.
+
+                    GOLD TWO
+          Computer's locked.  Getting a 
+          signal.
+
+As the fighters begin to approach the target area, suddenly all the laserfire stops.  An eerie clam clings over the trench as the surface whips past in a blur.
+
+                    GOLD TWO
+          The guns... they've stopped!
+
+
+EXT. SURFACE OF THE DEATH STAR
+
+Two Y-wings zoom down the Death Star trench.
+
+
+EXT. GOLD FIVE'S COCKPIT
+
+Gold Five looks behind him.
+
+                    GOLD FIVE
+          Stabilize your rear deflectors.  
+          Watch for enemy fighters.
+
+
+INT. GOLD LEADER'S Y-WING - COCKPIT
+
+                    GOLD LEADER
+          They've coming in!  Three marks at 
+          two ten.
+
+
+EXT. SPACE AROUND THE DEATH STAR
+
+Three Imperial TIE ships, Darth Vader in the center flanked by two wingmen, dive in precise formation almost vertically toward the Death Star surface.
+
+
+INT. DARTH VADER'S COCKPIT
+
+Darth Vader calmly adjusts his control stick as the stars zoom by.
+
+                    VADER
+          I'll take them myself!  Cover me!
+
+                    WINGMAN'S VOICE
+               (over speaker)
+          Yes, sir.
+
+
+EXT. SPACE AROUND THE DEATH STAR SURFACE
+
+Three TIE fighters zoom across the surface of the Death Star.
+
+
+INT. DARTH VADER'S COCKPIT
+
+Vader lines up Gold Two in his targeting computer.  Vader's hands grip the control stick as he presses the button.
+
+
+INT. GOLD LEADER'S Y-WING - COCKPIT
+
+The cockpit explodes around Gold Two.  His head falls forward.
+
+
+EXT. SPACE AROUND THE DEATH STAR
+
+As Gold Two's ship explodes, debris is flung out into space.
+
+
+INT. GOLD LEADER'S Y-WING - COCKPIT
+
+Gold Leader looks over his shoulder at the scene.
+
+
+INT. DEATH STAR TRENCH
+
+The three TIE fighters race along in the trench in a tight formation.
+
+
+INT. GOLD LEADER'S Y-WING - COCKPIT
+
+Gold Leader panics.
+
+                    GOLD LEADER
+               (into mike)
+          I can't maneuver!
+
+
+INT. GOLD FIVE'S Y-WING - COCKPIT
+
+Gold Five, the old veteran, tries to calm Gold Leader.
+
+                    GOLD FIVE
+          Stay on target.
+
+
+INT. GOLD LEADER'S Y-WING - COCKPIT
+
+The Death Star races by outside the cockpit window as he adjusts his targeting device.
+
+                    GOLD LEADER
+          We're too close.
+
+
+INT. GOLD FIVE'S Y-WING - COCKPIT
+
+The older pilot remains calm.
+
+                    GOLD FIVE
+          Stay on target!
+
+
+INT. GOLD LEADER'S Y-WING - COCKPIT
+
+Now he's really panicked.
+
+                    GOLD LEADER
+          Loosen up!
+
+
+INT. DARTH VADER'S COCKPIT
+
+Vader calmly adjusts his targeting computer and pushes the fire button.
+
+
+INT. GOLD LEADER'S Y-WING - COCKPIT
+
+Gold Leader's ship is hit by Vader's lasers.
+
+
+EXT. SURFACE OF THE DEATH STAR
+
+Gold Leader explodes in a ball of flames, throwing debris in all directions.
+
+
+INT. GOLD FIVE'S Y-WING - COCKPIT
+
+Gold Five moves in on the exhaust port.
+
+                    GOLD FIVE
+          Gold Five to Red Leader...
+
+
+INT. LUKE'S X-WING FIGHTER - COCKPIT
+
+Luke looks over his shoulder at the action outside of his cockpit.
+
+                    GOLD FIVE
+               (over headset)
+          Lost Tiree, lost Dutch.
+
+
+INT. RED LEADER'S COCKPIT
+
+                    RED LEADER
+          I copy, Gold Five.
+
+
+INT. GOLD FIVE'S Y-WING - COCKPIT
+
+                    GOLD FIVE
+          They came from behind....
+
+
+EXT. SURFACE OF THE DEATH STAR
+
+One of the engines explodes on Gold Five's Y-wing fighter, blazing out of control.  He dives past the horizon toward the Death Star's surface, passing a TIE fighter during his descent.  Gold Five, a veteran of countless campaigns, spins toward his death.
+
+
+INT. LUKE'S X-WING FIGHTER - COCKPIT
+
+Luke looks nervously about him at the explosive battle.
+
+
+INT. DEATH STAR - CONTROL ROOM
+
+Grant Moff Tarkin and a Chief Officer stand in the Death Star's control room.
+
+                    OFFICER
+          We've analyzed their attack, sir, 
+          and there is a danger.  Should I 
+          have your ship standing by?
+
+                    TARKIN
+          Evacuate?  In out moment of 
+          triumph?  I think you overestimate 
+          their chances!
+
+Tarkin turns to the computer readout screen.  Flames move around the green disk at the center of the screen, as numbers read across the bottom.
+
+                    VOICE
+               (over speaker)
+          Rebel base, three minutes and 
+          closing.
+
+
+INT. RED LEADER'S COCKPIT
+
+Red Leader looks over at his wingmen.
+
+                    RED LEADER
+          Red Group, this is Red Leader.
+
+
+INT. MASSASSI OUTPOST - WAR ROOM
+
+Dodonna moves to the intercom as he fiddles with the computer keys.
+
+                    RED LEADER
+               (over speaker)
+          Rendezvous at mark six point one.
+
+                    WEDGE
+               (over speaker)
+          This is Red Two.  Flying towards you.
+
+                    BIGGS
+               (over speaker)
+          Red Three, standing by.
+
+
+INT. RED LEADER'S COCKPIT
+
+                    DODONNA
+               (over headset)
+          Red Leader, this is Base One.  
+          Keep half your group out of range 
+          for the next run.
+
+
+INT. LUKE'S X-WING FIGHTER - COCKPIT
+
+                    RED LEADER'S VOICE
+               (over headset)
+          Copy, Base One.  Luke, take Red 
+          Two and Three.  Hold up here and 
+          wait for my signal... to start 
+          your run.
+
+Luke nods his head.
+
+
+EXT. SPACE AROUND THE DEATH STAR
+
+The X-wing fighters of Luke, Biggs, and Wedge fly in formation high above the Death Star's surface.
+
+
+INT. LUKE'S X-WING FIGHTER - COCKPIT
+
+Luke peers out from his cockpit.
+
+
+EXT. SURFACE OF THE DEATH STAR
+
+Two X-wings move across the surface of the Death Star.  Red Leader's X-wing drops down to the surface leading to the exhaust port.
+
+
+INT. RED LEADER'S COCKPIT
+
+Red Leader looks around to watch for the TIE fighters.  He begins to perspire.
+
+                    RED LEADER
+          This is it!
+
+
+EXT. SPACE
+
+Red Leader roams down the trench of the Death Star as lasers streak across the black heavens.
+
+
+EXT. DEATH STAR SURFACE - GUN EMPLACEMENTS
+
+A huge remote-control laser cannon fires at the approaching Rebel fighters.
+
+
+EXT. DEATH STAR TRENCH
+
+The Rebel fighters evade the Imperial laser blasts.
+
+
+INT. RED TEN'S COCKPIT
+  
+Red Ten looks around for the Imperial fighters.
+
+                    RED TEN
+          We should be able to see it by 
+          now.
+
+EXT. DEATH STAR TRENCH
+
+From the cockpits of the Rebel pilots, the surface of the Death Star streaks by, with Imperial laserfire shooting toward them.
+
+
+INT. RED LEADER'S COCKPIT
+
+                    RED LEADER
+          Keep your eyes open for those 
+          fighters!
+
+
+INT. RED TEN'S COCKPIT
+
+                    RED TEN
+          There's too much interference!
+
+
+EXT. SPACE - DEATH STAR TRENCH
+
+Three X-wing fighters move in formation down the Death Star trench.
+
+                    RED TEN'S VOICE
+          Red Five, can you see them from 
+          where you are?
+
+
+INT. LUKE'S X-WING FIGHTER - COCKPIT
+
+Luke looks down at the Death Star surface below.
+
+                    LUKE
+          No sign of any... wait!
+
+
+INT. RED TEN'S COCKPIT
+
+Red Ten looks up and sees the Imperial fighters.
+
+                    LUKE
+               (over headset)
+          Coming in point three five.
+
+                    RED TEN
+          I see them.
+
+
+EXT. SURFACE OF THE DEATH STAR
+
+Three TIE fighters, Vader flanked by two wingmen, dive in a tight formation.  The sun reflects off their dominate solar fins as they loop toward the Death Star's surface.
+
+
+INT. RED LEADER'S COCKPIT
+
+Red Leader pulls his targeting device in front of his eyes and makes several adjustments.
+
+                    RED LEADER
+          I'm in range.
+
+
+EXT. SURFACE OF THE DEATH STAR
+
+Red Leader's X-wing moves up the Death Star trench.
+
+
+INT. RED LEADER'S COCKPIT
+
+                    RED LEADER
+          Target's coming up!
+
+Red Leader looks at his computer target readout screen.  He then looks into his targeting device.
+
+                    RED LEADER
+          Just hold them off for a few 
+          seconds.
+
+
+INT. DARTH VADER'S COCKPIT
+
+Vader adjusts his control lever and dives on the X-wing fighters.
+
+                    VADER
+          Close up formation.
+
+
+EXT. DEATH STAR TRENCH
+
+The three TIE fighters move in formation across the Death Star surface.
+
+
+INT. RED LEADER'S COCKPIT
+
+                    RED LEADER
+          Almost there!
+
+Red Leader lines up his target on the targeting device cross hairs.
+
+
+EXT. SURFACE OF THE DEATH STAR
+
+Vader and his wingmen zoom down the trench.
+
+
+INT. DARTH VADER'S COCKPIT
+
+Vader rapidly approaches the two X-wings of Red Ten and Red Twelve.  Vader's laser cannon flashes below the view of the front porthole.  The X-wings show in the center of Vader's computer screen.
+
+
+EXT. SPACE
+
+Red Twelve's X-wing fighter is hit by Vader's laserfire, and it explodes into flames against the trench.
+
+
+INT. RED TEN'S COCKPIT
+
+Red Ten works at his controls furiously, trying to avoid Vader's fighter behind him.
+
+                    RED TEN
+          You'd better let her loose.
+
+
+INT. RED LEADER'S COCKPIT
+
+Red Leader is concentrating on his targeting device.
+
+                    RED LEADER
+          Almost there!
+
+
+INT. RED TEN'S COCKPIT
+
+Red Ten panics.
+
+                    RED TEN
+          I can't hold them!
+
+
+EXT. SURFACE OF THE DEATH STAR
+
+Vader and his wingmen whip through the trench in pursuit of the Rebel fighters.
+
+
+INT. DARTH VADER'S COCKPIT
+
+Vader coolly pushes the fire button on his control stick.
+
+
+INT. RED TEN'S COCKPIT
+
+Darth Vader's well-aimed laserfire proves to be unavoidable, and strikes Red Ten's ship.  Red Ten screams in anguish and pain.
+
+
+EXT. SPACE AROUND THE DEATH STAR
+  
+Red Ten's ship explodes and bursts into flames.
+
+
+INT. RED LEADER'S COCKPIT
+
+Grimly, Red Leader takes careful aim and watches his computer targeting device, which shows the target lined up in the cross hairs, and fires.
+
+
+INT. RED LEADER'S COCKPIT
+
+                    RED LEADER
+          It's away!
+
+
+EXT. DEATH STAR SURFACE
+
+Red LeaderÕs X-wing pulls up just before a huge explosion billows out of the trench.
+
+
+INT. DEATH STAR
+   
+An armed Imperial stormtrooper is knocked to the floor from the attack explosion.  Other troopers scurrying about the corridors are knocked against the wall and lose their balance.
+
+
+INT. MASSASSI OUTPOST - WAR ROOM
+
+Leia and the others stare at the computer screen.
+
+                    RED NINE'S VOICE
+               (over speaker)
+          It's a hit!
+
+                    RED LEADER
+               (over speaker)
+          Negative.
+
+
+INT. RED LEADER'S COCKPIT
+
+Red Leader looks back at the receding Death Star.  Tiny explosions are visible in the distance.
+
+                    RED LEADER
+          Negative!  It didn't go in, it 
+          just impacted on the surface.
+
+
+EXT. SPACE AROUND THE DEATH STAR - TIE FIGHTER
+
+Darth Vader peels off in pursuit as Red Leader's X-wing passes the Death Star horizon.
+
+
+INT. DARTH VADER'S COCKPIT
+
+Vader swings his ship around for the next kill.
+
+
+INT. RED LEADER'S COCKPIT
+
+                    LUKE
+               (over headset)
+          Red Leader, we're right above 
+          you.  Turn to point...
+
+
+INT. LUKE'S X-WING FIGHTER - COCKPIT
+
+Luke tries to spot Red Leader.  He looks down at the Death Star surface.
+
+                    LUKE
+          ... oh-five; we'll cover for you.
+
+                    RED LEADER
+               (over headset)
+          Stay there...
+
+
+INT. RED LEADER'S COCKPIT
+
+A wary Red Leader looks about nervously.
+
+                    RED LEADER
+          ... I just lost my starboard engine.
+
+
+INT. LUKE'S X-WING FIGHTER - COCKPIT
+
+Luke looks excitedly toward Red Leader's X-wing.
+
+                    RED LEADER
+               (over headset)
+          Get set up for your attack run.
+
+
+INT. DARTH VADER'S COCKPIT
+
+Vader's gloved hands make contact with the control sticks, and he presses their firing buttons.
+
+
+INT. RED LEADER'S COCKPIT
+
+Red Leader fights to gain control of his ship.
+
+
+EXT. SPACE AROUND THE DEATH STAR
+
+Laserbolts are flung from Vader's TIE fighter, connecting with Red Leader's Rebel X-wing fighter.  Red Leader buys it, creating a tremendous explosion far below.  He screams and is destroyed.
+
+
+INT. LUKE'S X-WING FIGHTER - COCKPIT
+
+Luke looks out the window of his X-wing at the explosion far below.  For the first time, he feels the helplessness of his situation.
+
+
+INT. DEATH STAR
+
+Grand Moff Tarkin casts a sinister eye at the computer screen.
+
+                    DEATH STAR INTERCOM VOICE
+          Rebel base, one minute and 
+          closing.
+
+
+INT. MASSASSI OUTPOST - WAR ROOM
+
+Dodonna and Princess Leia, with Threepio beside them, listen intently to the talk between the pilots.  The room is grim after Red Leader's death.  Princess Leia nervously paces the room.
+
+                    LUKE
+               (over speaker)
+          Biggs, Wedge, let's close it up.  
+          We're going in.  We're going in 
+          full throttle.
+
+
+INT. WEDGE'S COCKPIT
+
+The horizon twists as Wedge begins to pull out.
+
+                    WEDGE
+          Right with you, boss.
+
+
+EXT. SPACE AROUND THE DEATH STAR
+  
+The two X-wings peel off against a background of stars and dive toward the Death Star.
+
+
+INT. BIGGS' COCKPIT
+
+                    BIGGS
+          Luke, at that speed will you be 
+          able to pull out in time?
+
+
+INT. LUKE'S X-WING FIGHTER - COCKPIT
+
+                    LUKE
+          It'll be just like Beggar's Canyon 
+          back home.
+
+
+EXT. SPACE AROUND THE DEATH STAR
+
+The three X-wings move in, unleashing a barrage of laserfire.  Laserbolts are returned from the Death Star.
+
+
+INT. BIGGS' COCKPIT
+
+Luke's lifelong friend struggles with his controls.
+
+                    BIGGS
+          We'll stay back far enough to 
+          cover you.
+
+
+INT. LUKE'S COCKPIT
+
+Flak and laserbolts flash outside Luke's cockpit window.
+
+                    WEDGE
+               (over headset)
+          My scope shows the tower, but I 
+          can't see the exhaust port!  Are 
+          you sure the computer can hit it?
+
+
+EXT. DEATH STAR - GUN EMPLACEMENT
+
+The Death Star laser cannon slowly rotates as it shoots laserbolts.
+
+
+INT. LUKE'S X-WING FIGHTER - COCKPIT
+
+Luke looks around for the Imperial TIE fighters.  He thinks for a moment and then moves his targeting device into position.
+
+                    LUKE
+          Watch yourself!  Increase speed 
+          full throttle!
+
+
+INT. WEDGE'S COCKPIT
+
+Wedge looks excitedly about for any sign of the TIE fighters.
+
+                    WEDGE
+          What about that tower?
+
+
+INT. LUKE'S X-WING FIGHTER - COCKPIT
+
+                    LUKE
+          You worry about those fighters!  
+          I'll worry about the tower!
+
+
+EXT. DEATH STAR SURFACE
+
+Luke's X-wing streaks through the trench, firing lasers.
+
+
+INT. LUKE'S X-WING FIGHTER - COCKPIT
+
+Luke breaks into a nervous sweat as the laserfire is returned, nicking one of his wings close to the engine.
+
+                    LUKE
+               (to Artoo)
+          Artoo... that, that stabilizer's 
+          broken loose again!  See if you 
+          can't lock it down!
+
+
+EXT. LUKE'S X-WING FIGHTER
+
+Artoo works to repair the damages.  The canyon wall rushes by in the background, making his delicate task seem even more precarious.
+
+
+EXT. DEATH STAR
+
+Two laser cannons are firing on the Rebel fighters.
+
+
+INT. WEDGE'S COCKPIT
+
+Wedge looks up and sees the TIE ships.
+
+
+INT. LUKE'S X-WING FIGHTER - COCKPIT
+
+Luke's targeting device marks off the distance to the target.
+
+
+EXT. SPACE AROUND THE DEATH STAR
+
+Vader and his wingmen zoom closer.
+
+
+INT. DARTH VADER'S COCKPIT
+
+Vader adjusts his controls and fires laserbolts at two X-wings flying down the trench.  He scores a direct hit on Wedge.
+
+
+INT. MASSASSI OUTPOST - WAR ROOM
+
+Leia and the others are grouped around the computer board.
+
+                    WEDGE
+               (over speaker)
+          I'm hit!  I can't stay with you.
+
+                    LUKE
+               (over speaker)
+          Get clear, Wedge.
+
+
+INT. LUKE'S X-WING FIGHTER - COCKPIT
+
+                    LUKE
+          You can't do any more good back 
+          there!
+
+
+INT. WEDGE'S COCKPIT
+
+                    WEDGE
+          Sorry!
+
+
+EXT. SPACE AROUND THE DEATH STAR
+
+Wedge pulls his crippled X-wing back away from the battle.
+
+
+INT. DARTH VADER'S COCKPIT
+
+Vader watches the escape but issues a command to his wingmen.
+
+                    VADER
+          Let him go!  Stay on the leader!
+
+
+EXT. SPACE AROUND THE DEATH STAR
+
+Luke's X-wing speeds down the trench; the three TIE fighters, still in perfect unbroken formation, tail close behind.
+
+
+INT. BIGGS' COCKPIT
+
+Biggs looks around at the TIE fighters.  He is worried.
+
+                    BIGGS
+          Hurry, Luke, they're coming in 
+          much faster this time. I can't 
+          hold them!
+
+
+EXT. SPACE AROUND THE DEATH STAR
+
+The three TIE fighters move ever closer, closing in on Luke and Biggs.
+
+
+INT. LUKE'S X-WING FIGHTER - COCKPIT
+
+Luke looks back anxiously at little Artoo.
+
+                    LUKE
+          Artoo, try and increase the power!
+
+
+EXT. LUKE'S X-WING FIGHTER
+
+Ignoring the bumpy ride, flak, and lasers, a beeping Artoo-Detoo struggles to increase the power, his dome turning from side to side.
+
+
+EXT. SPACE AROUND THE DEATH STAR
+
+Stealthily, the TIE formation creeps closer.
+
+
+INT. DARTH VADER'S COCKPIT
+
+Vader adjusts his control stick.
+
+
+INT. BIGGS' COCKPIT
+
+Biggs looks around at the TIE fighters.
+
+
+INT. LUKE'S X-WING FIGHTER
+
+Luke looks into his targeting device.  He moves it away for a moment and ponders its use.  He looks back into the computer targeter.
+
+                    BIGGS
+               (over headset)
+          Hurry up, Luke!
+
+
+EXT. SPACE AROUND THE DEATH STAR
+
+Vader and his wingmen race through the Death Star trench.  Biggs moves in to cover for Luke, but Vader gains on him.
+
+
+INT. BIGGS' COCKPIT
+
+Biggs sees the TIE fighter aiming at him.
+
+                    BIGGS
+          Wait!
+
+
+INT. DARTH VADER'S COCKPIT
+
+Vader squeezes the fire button on his controls.
+
+
+INT. BIGGS' COCKPIT
+
+Biggs' cockpit explodes around him, lighting him in red.
+
+
+EXT. SURFACE OF THE DEATH STAR
+
+Biggs' ship bursts into a million flaming bits and scatters across the surface.
+
+
+INT. MASSASSI OUTPOST - WAR ROOM
+
+Leia and the others stare at the computer board.
+
+
+INT. LUKE'S X-WING - COCKPIT
+
+Luke is stunned by Biggs' death.  His eyes are watering, but his anger is also growing.
+
+
+INT. DEATH STAR - CONTROL ROOM
+
+Grand Moff Tarkin watches the projected target screen with satisfaction.
+
+                    DEATH STAR INTERCOM VOICE
+          Rebel base, thirty seconds and 
+          closing.
+
+
+INT. DARTH VADER'S COCKPIT
+
+Vader takes aim on Luke and talks to the wingmen.
+
+                    VADER
+          I'm on the leader.
+
+
+EXT. SURFACE OF THE DEATH STAR - LUKE'S SHIP
+
+Luke's ship streaks through the trench of the Death Star.
+
+
+INT. MASSASSI OUTPOST - WAR ROOM
+
+Princess Leia returns her general's worried and doubtful glances with solid, grim determination.  Threepio seems nervous.
+
+                    THREEPIO
+          Hang on, Artoo!
+
+
+INT. LUKE'S X-WING - COCKPIT
+
+Luke concentrates on his targeting device.
+
+
+EXT. SURFACE OF THE DEATH STAR
+
+Three TIE fighters charge away down the trench toward Luke.
+
+
+INT. DARTH VADER'S COCKPIT
+
+Vader's finger's curls around the control stick.
+
+
+INT. LUKE'S X-WING - COCKPIT
+
+Luke adjusts the lens of his targeting device.
+
+
+EXT. SURFACE OF THE DEATH STAR
+
+Luke's ship charges down the trench.
+
+
+INT. LUKE'S X-WING - COCKPIT
+
+Luke lines up the yellow cross-hair lines of the targeting device's screen.  He looks into the targeting device, then starts at a voice he hears.
+
+                    BEN'S VOICE
+          Use the Force, Luke.
+
+
+EXT. SURFACE OF THE DEATH STAR
+
+The Death Star trench zooms by.
+
+
+INT. LUKE'S X-WING - COCKPIT
+
+Luke looks up, then starts to look back into the targeting device.  He has second thoughts.
+
+                    BEN'S VOICE
+          Let go, Luke.
+
+A grim determination sweeps across Luke's face as he closes his eyes and starts to mumble Ben's training to himself.
+
+
+EXT. SURFACE OF THE DEATH STAR
+
+Luke's fighter streaks through the trench.
+
+
+INT. DARTH VADER'S COCKPIT
+
+                    VADER
+          The Force is strong with this one!
+
+
+EXT. SURFACE OF THE DEATH STAR
+
+Vader follows Luke's X-wing down the trench.
+
+
+INT. LUKE'S X-WING - COCKPIT
+
+Luke looks to the targeting device, then away as he hears Ben's voice.
+
+                    BEN'S VOICE
+          Luke, trust me.
+
+Luke's hand reaches for the control panel and presses the button.  The targeting device moves away.
+
+
+INT. MASSASSI OUTPOST - WAR ROOM
+
+Leia and the others stand watching the projected screen.
+
+                    BASE VOICE
+               (over speaker)
+          His computer's off.  Luke, you 
+          switched off your targeting 
+          computer.  What's wrong?
+
+                    LUKE
+               (over speaker)
+          Nothing.  I'm all right.
+
+
+EXT. SURFACE OF THE DEATH STAR
+
+Luke's ship streaks ever close to the exhaust port.
+
+
+INT. LUKE'S X-WING - COCKPIT
+
+Luke looks at the Death Star surface streaking by.
+
+
+EXT. LUKE'S X-WING FIGHTER
+
+Artoo-Detoo turns his head from side to side, beeping in anticipation.
+
+
+EXT. SURFACE OF THE DEATH STAR
+
+The three TIE fighters, manned by Vader and his two wingmen, follow Luke's X-wing down the trench.
+
+
+INT. DARTH VADER'S COCKPIT
+
+Vader maneuvers his controls as he looks at his doomed target.  He presses the fire buttons on his control sticks.  Laserfire shoots toward Luke's X-wing fighter.
+
+
+EXT. LUKE'S X-WING FIGHTER
+
+A large burst of Vader's laserfire engulfs Artoo.  The arms go limp on the smoking little droid as he makes a high-pitched sound.
+
+
+INT. LUKE'S X-WING FIGHTER - COCKPIT
+
+Luke looks frantically back over his shoulder at Artoo.
+
+
+EXT. LUKE'S X-WING FIGHTER
+
+Smoke billows out around little Artoo and sparks begin to fly.
+
+                    LUKE
+          I've lost Artoo!
+
+Artoo's beeping sounds die out.
+
+
+INT. MASSASSI OUTPOST - WAR ROOM
+
+Leia and the others stare intently at the projected screen, while Threepio watches the Princess.  Lights representing the Death Star and targets glow brightly.
+
+                    MASSASSI INTERCOM VOICE
+          The Death Star has cleared the 
+          planet.  The Death Star has 
+          cleared the planet.
+
+
+INT. DEATH STAR - CONTROL ROOM
+
+Tarkin glares at the projected target screen.
+
+                    DEATH STAR INTERCOM VOICE
+          Rebel base, in range.
+
+                    TARKIN
+          You may fire when ready.
+
+                    DEATH STAR INTERCOM VOICE
+          Commence primary ignition.
+
+An officer reaches up and pushes buttons on the control panel, as green lighted buttons turn to red.
+
+
+EXT. SURFACE OF THE DEATH STAR
+
+The three TIE fighters zoom down the Death Star trench in pursuit of Luke, never breaking formation.
+
+
+INT. LUKE'S COCKPIT
+
+Luke looks anxiously at the exhaust port.
+
+
+INT. DARTH VADER'S COCKPIT
+
+Vader adjusts his control sticks, checking his projected targeting screen.
+
+
+EXT. SURFACE OF THE DEATH STAR
+
+Luke's ship barrels down the trench.
+
+
+INT. DARTH VADER'S COCKPIT
+
+Vader's targeting computer swings around into position.  Vader takes careful aim on Luke's X-wing fighter.
+
+                    VADER
+          I have you now.
+
+He pushes the fire buttons.
+
+
+EXT. SURFACE OF THE DEATH STAR
+
+The three TIE fighters move in on Luke.  As Vader's center fighter unleashes a volley of laserfire, one of the TIE ships at his side is hit and explodes into flame.   The two remaining ships continue to move in.
+
+
+INT. LUKE'S X-WING FIGHTER - COCKPIT
+
+Luke looks about, wondering whose laserfire destroyed Vader's wingman.
+
+
+INT. DARTH VADER'S COCKPIT
+
+Vader is taken by surprise, and looks out from his cockpit.
+
+                    VADER
+          What?
+
+
+INT. DARTH VADER'S WINGMAN - COCKPIT
+
+Vader's wingman searches around him trying to locate the unknown attacker.
+
+
+INT. MILLENNIUM FALCON - COCKPIT
+
+Han and Chewbacca grin from ear to ear.
+
+                    HAN
+               (yelling)
+          Yahoo!
+
+
+EXT. SPACE AROUND THE DEATH STAR
+
+The Millennium Falcon heads right at the two TIE fighters.  It's a collision course.
+
+
+INT. WINGMAN'S COCKPIT
+
+The wingman spots the pirateship coming at him and warns the Dark Lord.
+
+                    WINGMAN
+          Look out!
+
+
+EXT. DEATH STAR TRENCH
+
+Vader's wingman panics at the sight of the oncoming pirate starship and veers radically to one side, colliding with Vader's TIE fighter in the process.  Vader's wingman crashes into the side wall of the trench and explodes.  Vader's damaged ship spins out of the trench with a damaged wing.
+
+
+EXT. SPACE AROUND THE DEATH STAR
+
+Vader's ship spins out of control with a bent solar fin, heading for deep space.
+
+
+INT. DARTH VADER'S COCKPIT
+
+Vader turns round and round in circles as his ship spins into space.
+
+
+EXT. SURFACE OF THE DEATH STAR
+
+Solo's ship moves in toward the Death Star trench.
+
+
+INT. MILLENNIUM FALCON - COCKPIT
+
+Solo, smiling, speaks to Luke over his headset mike.
+
+                    HAN
+               (into mike)
+          You're all clear, kid.
+
+
+INT. MASSASSI OUTPOST - WAR ROOM
+
+Leia and the others listen to Solo's transmission.
+
+                    HAN
+               (over speaker)
+          Now let's blow this thing and 
+          go home!
+
+
+INT. LUKE'S X-WING FIGHTER - COCKPIT
+
+Luke looks up and smiles.  He concentrates on the exhaust port, then fires his laser torpedoes.
+
+
+EXT. SURFACE OF THE DEATH STAR
+
+Luke's torpedoes shoot toward the port and seems to simply disappear into the surface and not explode.  But the shots do find their mark and have gone into the exhaust port and are heading for the main reactor.
+
+
+INT. LUKE'S X-WING FIGHTER - COCKPIT
+
+Luke throws his head back in relief.
+
+
+INT. DEATH STAR
+
+An Imperial soldier runs to the control panel board and pulls the attack lever as the board behind him lights up.
+
+                    INTERCOM VOICE
+          Stand by to fire at Rebel base.
+
+
+EXT. SPACE AROUND THE DEATH STAR
+
+Two X-wings, a Y-wing, and the pirateship race toward Yavin in the distance.
+
+
+INT. DEATH STAR
+
+Several Imperial soldiers, flanking a pensive Grand Moff Tarkin, busily push control levers and buttons.
+
+                    INTERCOM VOICE
+          Standing by.
+
+The rumble of a distant explosion begins.
+
+
+EXT. SPACE AROUND THE DEATH STAR
+
+The Rebel ships race out of sight, leaving the moon-like Death Star alone against a blanket of stars.  Several small flashes appear on the surface.  The Death Star bursts into a supernova, creating a spectacular heavenly display.
+
+
+INT. MILLENNIUM FALCON - COCKPIT
+
+                    HAN
+          Great shot, kid.  That was one 
+          in a million.
+
+
+INT. LUKE'S X-WING FIGHTER - COCKPIT
+
+Luke is at ease, and his eyes are closed.
+
+                    BEN'S VOICE
+          Remember, the Force will be with 
+          you... always.
+
+The ship rocks back and forth.
+
+
+EXT. DARTH VADER'S TIE FIGHTER
+
+Vader's ship spins off into space.
+
+
+EXT. SPACE
+
+The Rebel ships race toward the fourth moon of Yavin.
+
+
+INT. MASSASSI OUTPOST - MAIN HANGAR
+
+Luke climbs out of his starship fighter and is cheered by a throng of ground crew and pilots.  Luke climbs down the ladder as they all welcome him with laughter, cheers, and shouting.
+
+Princess Leia rushes toward him.
+
+                    LEIA
+          Luke!  Luke!  Luke!
+
+She throws her arms around Luke and hugs him as they dance around a circle.  Solo runs in toward Luke and they embrace one another, slapping each other on the back.
+
+                    HAN
+               (laughing)
+          Hey!  Hey!
+
+                    LUKE
+               (laughing)
+          I knew you'd come back!  I just 
+          knew it!
+
+                    HAN
+          Well, I wasn't gonna let you get 
+          all the credit and take all the 
+          reward.
+    
+Luke and Han look at one another, as Solo playfully shoves at Luke's face.  Leia moves in between them.
+
+                    LEIA
+               (laughing)
+          Hey, I knew there was more to 
+          you than money.
+
+Luke looks toward the ship.
+
+                    LUKE
+          Oh, no!
+
+The fried little Artoo-Detoo is lifted off the back of the fighter and carried off under the worried eyes of Threepio.
+
+                    THREEPIO
+          Oh, my!  Artoo!  Can you hear me?  
+          Say something!
+               (to mechanic)
+          You can repair him, can't you?
+
+                    TECHNICIAN
+          We'll get to work on him right 
+          away.
+
+                    THREEPIO
+          You must repair him!  Sir, if any 
+          of my circuits or gears will help, 
+          I'll gladly donate them.
+
+                    LUKE
+          He'll be all right.
+
+
+INT. MASSASSI OUTPOST - MAIN THRONE ROOM
+
+Luke, Han, and Chewbacca enter the huge ruins of the main temple.  Hundreds of troops are lined up in neat rows.  Banners are flying and at the far end stands a vision in white, the beautiful young Senator Leia.  Luke and the others solemnly march up the long aisle and kneel before Senator Leia.  From one side of the temple marches a shined-up and fully repaired Artoo-Detoo.  He waddles up to the group and stands next to an equally pristine Threepio, who is rather awestruck by the whole event.  Chewbacca is confused.  Dodonna and several other dignitaries sit on the left of the Princess Leia.  Leia is dressed in a long white dress and is staggeringly beautiful.  She rises and places a gold medallion around Han's neck.  He winks at her.  She then repeats the ceremony with Luke, who is moved by the event.  They turn and face the assembled troops, who all bow before them.  Chewbacca growls and Artoo beeps with happiness.
+
+                                                   FADE OUT.
+
+END CREDITS OVER STARS.
+   
+                                     
+                            THE END
diff --git a/Text_files/StarWars_EpisodeVI_script.txt b/Text_files/StarWars_EpisodeVI_script.txt
new file mode 100644
index 0000000..c33cc04
--- /dev/null
+++ b/Text_files/StarWars_EpisodeVI_script.txt
@@ -0,0 +1,5022 @@
+
+
+
+Star Wars VI : Return Of The Jedi
+
+
+
+
+

+
+
+
+                          S T A R   W A R S
+
+                              EPISODE VI
+
+                         REVENGE OF THE JEDI
+
+                                  BY
+
+                           LAWRENCE KASDAN
+
+                                 AND
+
+                             GEORGE LUCAS
+
+                            FROM THE NOVEL
+
+                                  BY
+
+                             GEORGE LUCAS
+
+                   SECOND DRAFT - DECEMBER 19, 1982
+
+
+
+
+
+
+1    SPACE                                                           1
+
+     The boundless heavens serve as a back-drop for the MAIN TITLE,
+     followed by a ROLL-UP, which crawls into infinity.
+
+               Episode VI:
+               REVENGE OF THE JEDI...
+               Luke Skywalker has returned to his home
+               planet of Tatooine in an attempt to rescue
+               his friend Han Solo from the clutches of the
+               vile gangster Jabba the Hutt.
+
+               Little does Luke know that the GALACTIC
+               EMPIRE has secretly begun construction on a
+               new armored space station even more powerful
+               than the first dreaded Death Star.
+
+               When completed, this ultimate weapon will
+               spell certain doom for the small band of
+               Rebels struggling to restore freedom to the
+               galaxy...
+
+     PAN DOWN to reveal a monstrous half-completed Death Star, its
+     massive superstructure curling away from the completed section
+     like the arms of a giant octopus. Beyond, in benevolent contrast,
+     floats the small, green moon of ENDOR.
+
+     An Imperial Star Destroyer moves overhead toward the massive
+     armored space station, followed by two zipping TIE fighters. A
+     small Imperial shuttle rockets from the main bay of the ship and
+     hustles toward the Death Star.
+
+2    INT IMPERIAL SHUTTLE - COCKPIT                                  2
+
+     The shuttle captain makes contact with the Death Star.
+
+                              SHUTTLE CAPTAIN
+               Command station, this is ST 321. Code
+               Clearance Blue. We're starting our approach.
+               Deactivate the security shield.
+
+                              DEATH STAR CONTROLLER
+                              (filtered VO)
+               The security deflector shield will be
+               deactivated when we have confirmation of your
+               code transmission. Stand by... You are clear
+               to proceed.
+
+                              SHUTTLE CAPTAIN
+               We're starting our approach.
+
+3    INT DEATH STAR - CONTROL ROOM                                   3
+
+     Operators move about among the control panels. A SHIELD OPERATOR
+     hits switches beside a large screen, on which is a display of the
+     Death Star, the moon Endor, and a bright web delineating the
+     invisible deflector shield.
+     A control officer rushes over to the shield operator.
+
+                              OFFICER
+               Inform the commander that Lord Vader's
+               shuttle has arrived.
+
+                              OPERATOR
+               Yes, sir.
+
+     The control officer moves to a view port and watches as the
+     Imperial shuttle lands in the massive docking bay. A squad of
+     Imperial stormtroopers moves into formation before the craft.
+
+4    INT DEATH STAR - MAIN DOCKING BAY                               4
+
+     The DEATH STAR COMMANDER, MOFF JERJERROD, a tall, confident
+     technocrat, strides through the assembled troops to the base of
+     the shuttle ramp. The troops snap to attention; many are uneasy
+     about the new arrival. But the Death Star commander stands
+     arrogantly tall.
+
+     The exit hatch of the shuttle opens with a WHOOSH, revealing only
+     darkness. Then, heavy FOOTSTEPS AND MECHANICAL BREATHING. From
+     this black void appears DARTH VADER, LORD OF THE SITH. Vader
+     looks over the assemblage as he walks down the ramp.
+
+                              JERJERROD
+               Lord Vader, this is an unexpected pleasure. 
+               We're honored by your presence.
+
+                              VADER
+               You may dispense with the pleasantries,
+               Commander. I'm here to put you back on
+               schedule.
+
+     The commander turns ashen and begins to shake.
+
+                              JERJERROD
+               I assure you, Lord Vader, my men are working
+               as fast as they can.
+
+                              VADER
+               Perhaps I can find new ways to
+               motivate them.
+
+                              JERJERROD
+               I tell you, this station will be operational
+               as planned.
+                              VADER
+               The Emperor does not share your
+               optimistic appraisal of the situation.
+
+                              JERJERROD
+               But he asks the impossible. I need more men.
+
+                              VADER
+               Then perhaps you can tell him when he
+               arrives.
+                              JERJERROD (aghast)
+               The Emperor's coming here?
+
+                              VADER
+               That is correct, Commander. And he is most
+               displeased with your apparent lack of
+               progress.
+
+                              JERJERROD
+               We shall double our efforts.
+
+                              VADER
+               I hope so, Commander, for your sake. The
+               Emperor is not as forgiving as I am.
+
+5    EXT ROAD TO JABBA'S PALACE - TATOOINE                           5
+
+     A lonely, windswept road meanders through the desolate Tatooine
+     terrain. We HEAR a familiar BEEPING and a distinctive reply
+     before catching sight of ARTOO-DETOO and SEE-THREEPIO, making
+     their way along the road toward the ominous palace of Jabba the
+     Hutt.
+
+                              THREEPIO
+               Of course I'm worried. And you should be,
+               too. Lando Calrissian and poor Chewbacca
+               never returned from this awful place.
+
+     Artoo whistles timidly.
+
+                              THREEPIO
+               Don't be so sure. If I told you half the
+               things I've heard about this Jabba the Hutt,
+               You'd probably short-circuit.
+
+     The two droids fearfully approach the massive gate to the palace.
+
+                              THREEPIO
+               Artoo, are you sure this is the right place?
+               I better knock, I suppose.
+
+6    EXT JABBA'S PALACE - GATE                                       6
+
+     Threepio looks around for some kind of signaling device, then
+     timidly knocks on the iron door.
+
+                              THREEPIO (instantly)
+               There doesn't seem to be anyone there. Let's
+               go back and tell Master Luke.
+
+     A small hatch in the middle of the door opens and a spidery
+     mechanical arm, with a large electronic eyeball on the end, pops
+     out and inspects the two droids.
+
+                              STRANGE VOICE
+               Tee chuta hhat yudd!
+
+                              THREEPIO
+               Goodness gracious me!
+
+     Threepio points to Artoo, then to himself.
+
+                              THREEPIO
+               Artoo Detoowha bo Seethreepiowha ey toota odd
+               mischka Jabba du Hutt.
+
+     The eye looks from one robot to the other, there is a laugh then
+     the eye zips back into the door. The hatch slams shut. Artoo
+     beeps his concern.
+
+                              THREEPIO
+               I don't think they're going to let us in,
+               Artoo. We'd better go.
+
+     Artoo beeps his reluctance as Threepio turns to leave. Suddenly
+     the massive door starts to rise with a horrific metallic SCREECH.
+     The robots turn back and face an endless black cavity. The droids
+     look at one another, afraid to enter.
+
+     Artoo starts forward into the gloom. Threepio rushes after his
+     stubby companion. The door lowers noisily behind them.
+
+                              THREEPIO
+               Artoo, wait. Oh, dear! Artoo. Artoo, I really
+               don't think we should rush into all this.
+
+     Artoo continues down the corridor, with Threepio following.
+
+                              THREEPIO
+               Oh, Artoo!  Artoo, wait for me!
+
+7    INT JABBA'S PALACE - HALLWAY                                    7
+
+     The door slams shut with a loud crash that echoes throughout the
+     dark passageway. The frightened robots are met by two giant,
+     green GAMORREAN GUARDS, who fall in behind them. Threepio glances
+     quickly back at the two lumbering brutes, then back to Artoo. One
+     guard grunts an order. Artoo beeps nervously.
+
+                              THREEPIO
+               Just you deliver Master Luke's message and
+               get us out of here. Oh my! Oh! Oh, no.
+
+     Walking toward them out of the darkness is BIB FORTUNA, a
+     humanlike alien with long tentacles protruding from his skull.
+
+                              BIB
+               Die Wanna Wanga!
+
+                              THREEPIO
+               Oh, my! Die Wanna Wauaga. We -- we bring a
+               message to your master, Jabba the Hutt.
+
+     Artoo lets out a series of quick beeps.
+
+                              THREEPIO (cont)
+               ... and a gift.
+               (thinks a moment, then to Artoo)
+               Gift, what gift?
+
+     Bib shakes his head negatively.
+
+                              BIB
+               Nee Jabba no badda. Me chaade su goodie.
+
+     Bib holds out his hand toward Artoo and the tiny droid backs up a
+     bit, letting out a protesting array of squeaks. Threepio turns to
+     the strange-looking alien.
+
+                              THREEPIO
+               He says that our instructions are to give it
+               only to Jabba himself.
+
+     Bib thinks about this for a moment.
+
+                              THREEPIO
+               I'm terribly sorry. I'm afraid he's ever so
+               stubborn about these sort of things.
+
+     Bib gestures for the droids to follow.
+
+                              BIB
+               Nudd Chaa.
+
+     The droids follow the tall, tentacled alien into the darkness,
+     trailed by the two guards.
+
+                              THREEPIO
+               Artoo, I have a bad feeling about this.
+
+8    INT JABBA'S THRONE ROOM                                         8
+
+     The throne room is filled with the vilest, most grotesque
+     CREATURES ever conceived in the universe. Artoo and Threepio seem
+     very small as they pause in the doorway to the dimly lit chamber.
+     Light shafts partially illuminate the drunken courtiers as Bib
+     Fortuna crosses the room to the platform upon which rests the
+     leader of this nauseating crowd: JABBA THE HUTT. The monarch of
+     the galactic underworld is a repulsive blob of bloated fat with a
+     maniacal grin. Chained to the horrible creature is the beautiful
+     alien female dancer named OOLA. At the foot of the dais sits an
+     obnoxious birdlike creature, SALACIOUS CRUMB. Bib whispers
+     something in the slobbering degenerate's ear. Jabba laughs
+     horribly, at the two terrified droids before him. Threepio bows
+     politely.
+
+                              THREEPIO
+               Good morning.
+
+                              JABBA
+               Bo Shuda!
+
+     The robots jump forward to stand before the repulsive, loose-
+     skinned villain.
+
+                              THREEPIO
+               The message, Artoo, the message.
+
+     Artoo whistles, and a beam of light projects from his domed head,
+     creating a HOLOGRAM of LUKE on the floor. The image grows to over
+     ten feet tall, and the young Jedi towers over the space
+     gangsters.
+
+                              LUKE
+               Greetings, Exalted One. Allow me to introduce
+               myself. I am Luke Skywalker, Jedi Knight and
+               friend to Captain Solo. I know that you are
+               powerful, mighty Jabba, and that your anger
+               with Solo must be equally powerful. I seek an
+               audience with Your Greatness to bargain for
+               Solo's life. (Jabba's crowd laughs) With your
+               wisdom, I'm sure that we can work out an
+               arrangement which will be mutually beneficial
+               and enable us to avoid any unpleasant
+               confrontation. As a token of my goodwill, I
+               present to you a gift: these two droids.
+
+     Threepio is startled by this announcement.
+
+                              THREEPIO
+               What did he say?
+
+                              LUKE (cont)
+               ... Both are hardworking and will serve you
+               well.
+
+                              THREEPIO
+               This can't be! Artoo, you're playing the
+               wrong message.
+
+     Luke's hologram disappears.
+
+     Jabba laughs while Bib speaks to him in Huttese.
+
+                              JABBA (in Huttese subtitled)
+               There will be no bargain.
+
+                              THREEPIO
+               We're doomed.
+
+                              JABBA (in Huttese subtitled)
+               I will not give up my favorite decoration. I
+               like Captain Solo where he is.
+
+     Jabba laughs hideously and looks toward an alcove beside the
+     throne. Hanging high, flat against the wall, exactly as we saw
+     him last, is a carbonized HAN SOLO.
+
+                              THREEPIO
+               Artoo, look! Captain Solo. And he's still
+               frozen in carbonite.
+
+9    INT DUNGEON CORRIDOR                                            9
+
+     One of Jabba's Gamorrean guards marches Artoo and Threepio down a
+     dank, shadowy passageway lined with holding cells. The cries of
+     unspeakable creatures bounce off the cold stone walls.
+     Occasionally a repulsive arm or tentacle grabs through the bars
+     at the hapless droids. Artoo beeps pitifully.
+
+                              THREEPIO
+               What could possibly have come over Master
+               Luke. Is it something I did? He never
+               expressed any unhappiness with my work. Oh!
+               Oh! Hold it! Ohh!
+
+     A large tentacle wraps around Threepio's neck. He manages to
+     break free, and they move on to a door at the end of the
+     corridor.
+
+10   INT BOILER ROOM                                                10
+
+     The door slides open, revealing a room filled with steam and
+     noisy machinery. The guard motions them into the boiler room,
+     where they are met by a tall, thin humanlike robot named EV-9D9
+     (EVE-NINEDENINE). Behind the robot can be seen a torture rack
+     pulling the legs off a screaming baby work droid. A second
+     power droid is upside down.  As smoking branding irons are
+     pressed into his feet, the stubby robot lets out an agonized
+     electronic scream. Artoo and Threepio cringe as the guard grunts
+     to EV-9D9.
+
+                              NINEDENINE
+               Ah, good. New acquisitions. You are a
+               protocol droid, are you not?
+
+                              THREEPIO
+               I am See-Threepio, human-cy...
+
+                              NINEDENINE
+               Yes or no will do.
+
+                              THREEPIO
+               Oh. Well, yes.
+
+                              NINEDENINE
+               How many languages do you speak?
+
+                              THREEPIO
+               I am fluent in over six million forms of
+               communication, and can readily...
+
+                              NINEDENINE
+               Splendid! We have been without an interpreter
+               since our master got angry with our last
+               protocol droid and disintegrated him.
+
+                              THREEPIO
+               Disintegrated?
+
+                              NINEDENINE (to a Gamorrean guard)
+               Guard! This protocol droid might be useful.
+               Fit him with a restraining bolt and take him
+               back to His Excellency's main audience
+               chamber.
+
+     The guard shoves Threepio toward the door.
+
+                              THREEPIO (disappearing)
+               Artoo, don't leave me! Ohhh!
+
+     Artoo lets out a plaintive cry as the door closes. Then he beeps
+     angrily.
+
+                              NINEDENINE
+               You're a feisty little one, but you'll soon
+               learn some respect. I have need for you on
+               the master's Sail Barge. And I think you'll
+               fit in nicely.
+
+     The poor work droid in the background lets out another tortured
+     electronic scream.
+
+11   INT JABBA'S THRONE ROOM                                        11
+
+     The court of Jabba the Hutt is in the midst of a drunken, raucous
+     party. Sloppy, smelly monsters cheer and make rude noises as Oola
+     and a fat female dancer perform in front of Jabba's throne.
+     Jabba leers at the dancers and with a lustful gleam in his eye
+     beckons Oola to come and sit with him. She stops dancing and
+     backs away, shaking her head. Jabba gets angry and points to a
+     spot next to him.
+
+                              JABBA
+               Da Eitha!
+
+     The lovely alien shakes her head again and screams.
+
+                              OOLA
+               Na Chuba negatorie Na! Na! Natoota...
+
+     Jabba is furious and pulls her toward him, tugging on the chain.
+
+                              JABBA
+               Boscka!
+
+     He pushes a button and, before the dancer can flee, a trap door
+     in the floor springs open and swallows her up. As the door snaps
+     shut, a muffled growl is followed by a hideous scream. Jabba and
+     his monstrous friends laugh hysterically and several revelers
+     hurry over to watch her fate through a grate.
+
+     Threepio cringes and glances wistfully at the carbonite form of
+     Han Solo, but is immediately distracted by a gunshot offscreen.
+     An unnatural quiet sweeps the boisterous gathering. On the far
+     side of the room, the crush of debauchers moves aside to allow
+     the approach of two guards followed by BOUSHH, an oddly cloaked
+     bounty hunter, leading his captive, Han Solo's copilot, CHEWBACCA
+     THE WOOKIEE.
+
+     Bib takes his place next to his disgusting master, and whispers
+     into his ear, pointing at Chewbacca and the bounty hunter. Jabba
+     listens intently, then the bounty hunter bows before the gangster
+     and speaks a greeting in a strange, electronically processed
+     tongue (Ubese).
+
+                              BOUSHH (in Ubese subtitled)
+               I have come for the bounty on this Wookiee.
+
+                              THREEPIO
+               Oh, no! Chewbacca!
+
+                              JABBA (in Huttese subtitled)
+               At last we have the mighty Chewbacca.
+
+     Jabba lets out a loud, long, blood-curdling laugh and turns to
+     Threepio, waving him closer. The reluctant droid obeys.
+
+                              THREEPIO
+               Oh, uh, yes, uh, I am here, Your
+               Worshipfulness. Uh... yes!
+
+     Jabba continues speaking, as Threepio nervously translates.
+     Boushh listens, studying the dangerous creatures around the room.
+     He notices BOBA FETT standing near the door.
+
+                              THREEPIO
+               Oh. The illustrious Jabba bids you welcome
+               and will gladly pay you the reward of twenty-
+               five thousand.
+
+                              BOUSHH (in Ubese subtitled)
+               I want fifty thousand. No less.
+
+     Jabba immediately flies into a rage, knocking the golden droid
+     off the raised throne into a clattering heap on the floor. Boushh
+     adjusts his weapon as Jabba raves in Huttese and Threepio
+     struggles back onto the throne. The disheveled droid tries to
+     compose himself.
+
+                              THREEPIO
+               Uh, oh... but what, what did I say?
+               (to Boushh)
+               Uh, the mighty Jabba asks why he must pay
+               fifty thousand.
+
+     The bounty hunter holds up a small silver ball in his hand.
+     Threepio looks at it, then looks at Jabba, then back to the
+     bounty hunter. The droid is very nervous and Jabba is getting
+     very impatient.
+
+                              THREEPIO
+               Because he's holding a thermal detonator.
+
+     The guards instantly back away, as do most of the other monsters
+     in the room. Jabba stares at the silver ball, which begins to
+     glow in the bounty hunter's hand. The room has fallen into a
+     tense hush. Jabba stares at the bounty hunter malevolently until
+     a sly grin creeps across his vast mouth and he begins to laugh.
+
+                              JABBA (in Huttese subtitled)
+               This bounty hunter is my kind of scum.
+               Fearless and inventive.
+
+     Jabba continues.
+
+                              THREEPIO
+               Jabba offers the sum of thirty-five. And I
+               suggest you take it.
+
+     Bib and the other monsters study the bounty hunter and wait for
+     his reaction. Boushh releases a switch on the thermal detonator
+     and it goes dead.
+
+                              BOUSHH
+               Zeebuss.
+
+                              THREEPIO
+               He agrees!
+
+     The raucous crowd of monsters erupts in a symphony of cheers and
+     applause as the party returns to its full noisy pitch. Chewbacca
+     growls. As he is led away we spot LANDO CALRISSIAN, disguised as
+     a skiff guard in a partial face mask. The band starts up and
+     dancing girls take the center of the floor, to the hoots of the
+     loudly appreciative creatures.
+
+     Boushh leans against a column with gunfighter cool and surveys
+     the scene, his gaze stopping only when it connects with a glare
+     from across the room. Boba Fett is watching him. Boushh shifts
+     slightly, cradling his weapon lovingly. Boba Fett shifts with
+     equally ominous arrogance.
+
+12   INT DUNGEON CORRIDOR AND CELL                                  12
+
+     Gamorrean guards lead Chewie down the same hallway we saw before.
+     When a tentacle reaches out at the Wookiee, Chewie's ferocious
+     ROAR echoes against the walls and the tentacle snaps back into
+     its cell in terror. It takes all the guards to hurl Chewie
+     roughly into a cell, slamming the door behind him. Chewie lets
+     out a pathetic howl and bangs on the iron door.
+
+13   EXT JABBA'S PALACE                                             13
+
+     The palace is sitting in the light of the double sunset. On the
+     road in front, a large toadlike creature flicks its tongue out
+     for a desert rodent and burps in satisfaction.
+
+14   INT JABBA'S THRONE ROOM - NIGHT                                14
+
+     Silence. The room is deserted, only the awful debris of the alien
+     celebration giving mute witness to the activity here before.
+     Several drunk creatures lie unconscious around the room, snoring
+     loudly.
+
+     A shadowy figure moves stealthily among the columns at the
+     perimeter of the room and is revealed to be Boushh, the bounty
+     hunter. He picks his way carefully through the snoring, drunken
+     monsters.
+
+     Han Solo, the frozen space pirate, hangs spotlighted on the wall,
+     his coffin-like case suspended by a force field. The bounty
+     hunter deactivates the force field by flipping a control switch
+     to one side of the coffin. The heavy case slowly lowers to the
+     floor of the alcove.
+
+     Boushh steps up to the case, studying Han, then turns to the
+     controls on the side of the coffin. He activates a series of
+     switches and, after one last, hesitant look at Han, slides the
+     decarbonization lever. The case begins to emit a sound as the
+     hard shell covering the contours of Han's face begins to melt
+     away. The bounty hunter watches as Han's body is freed of its
+     metallic coat and his forearms and hands, previously raised in
+     reflexive protest, drop slackly to his side. His face muscles
+     relax from their mask of horror. He appears quite dead.
+
+     Boushh's ugly helmet leans close to Han's face listening for the
+     breath of life. Nothing. He waits. Han's eyes pop open with a
+     start and he begins coughing. The bounty hunter steadies the
+     staggering newborn.
+
+                              BOUSHH
+               Just relax for a moment. You're free of the
+               carbonite.
+
+     Han touches his face with his hand and moans.
+
+                              BOUSHH
+               Shhh. You have hibernation sickness.
+
+                              HAN
+               I can't see.
+
+                              BOUSHH
+               You eyesight will return in time.
+
+                              HAN
+               Where am I?
+
+                              BOUSHH
+               Jabba's palace.
+
+                              HAN
+               Who are you?
+
+     The bounty hunter reaches up and lifts the helmet from his head,
+     revealing the beautiful face of PRINCESS LEIA.
+
+                              LEIA
+               Someone who loves you.
+
+                              HAN
+               Leia!
+
+                              LEIA
+               I gotta get you out of here.
+
+     As Leia helps her weakened lover to stand up, the relative quiet
+     is pierced by an obscene HUTTESE CACKLE from the other side of
+     the alcove.
+
+                              HAN
+               What's that? I know that laugh.
+
+     The curtain on the far side of the alcove opens, revealing Jabba
+     the Hutt, surrounded by Bib and other aliens. He laughs again,
+     and his gross cronies join in a cacophony of alien glee.
+
+                              HAN
+               Hey, Jabba. Look, Jabba, I was just on my way
+               to pay you back, but I got a little
+               sidetracked. It's not my fault.
+
+     Jabba laughs.
+
+                              JABBA (in Huttese subtitled)
+               It's too late for that, Solo. You may have
+               been a good smuggler, but now you're Bantha
+               fodder.
+
+                              HAN
+               Look...
+
+                              JABBA (cont Huttese subtitled)
+               Take him away!
+
+     The guards grab Han and start to lead him away.
+
+                              HAN
+               Jabba... I'll pay you triple! You're throwing
+               away a fortune here. Don't be a fool!
+
+     Han is dragged off, as Lando quickly moves forward and attempts
+     to lead Leia away.
+
+                              JABBA (in Huttese subtitled)
+               Bring her to me.
+
+     Jabba chuckles as Lando and a second guard drag the beautiful
+     young princess toward him. Threepio peeks from behind a monster
+     and quickly turns away in disgust.
+
+                              LEIA
+               We have powerful friends. You're gonna regret
+               this...
+
+                              JABBA (in Huttese subtitled)
+               I'm sure.
+
+     Inexorably her lovely face moves to within a few inches of
+     Jabba's ugly blob of a head, and Leia turns away in disgust.
+
+                              LEIA
+               Ugh!
+
+                              THREEPIO
+               Ohhh, I can't bear to watch.
+
+15   INT DUNGEON CELL                                               15
+
+     The heavy metal door of the dungeon whines and slowly creaks
+     open. A guard throws the blinded star captain into the dark cell
+     and the door slams shut behind him, leaving only a thin sliver of
+     light from a crack in the door. Han is trying to collect himself
+     when suddenly a growl is heard from the far side of the cell. He
+     jumps back against the cell door and listens.
+
+                              HAN
+               Chewie? Chewie, is that you?
+
+     The shadowy figure lets out a crazy yell and races toward Han,
+     lifting him off the ground with a big hug that carries them into
+     the light, revealing Chewie.
+
+                              HAN
+               Ah! Chew--Chewie!
+
+     The giant Wookiee barks with glee.
+
+                              HAN
+               Wait. I can't see, pal. What's goin' on?
+
+     Chewie barks an excited blue streak.
+
+                              HAN
+               Luke? Luke's crazy. He can't even take care
+               of himself, much less rescue anybody.
+
+     Chewie barks a reply.
+
+                              HAN
+               A...Jedi Knight? I--I'm out of it for a
+               little while, everybody gets delusions of
+               grandeur.
+
+     Chewie growls insistently. He holds Han to his chest and pets his
+     head.
+
+                              HAN
+               I'm all right, pal. I'm all right.
+
+16   INT MAIN GATE AND HALL - JABBA'S PALACE                        16
+
+     Noisily, the main gate lifts to flood the blackness with blinding
+     LIGHT and reveal the silhouetted figure of LUKE SKYWALKER. He is
+     clad in a robe similar to Ben's and wears neither pistol nor
+     laser sword. Luke strides purposefully into the hallway. Two
+     giant guards move to block Luke's path. Luke halts.
+
+     Luke raises his hand and points at the puzzled guards, who
+     immediately lower their spears and fall back. The young Jedi
+     lowers his hand and moves on down the hallway.
+
+     Bib Fortuna appears out of the gloom. He speaks to Luke as they
+     approach each other, but Luke doesn't stop and Bib must reverse
+     his direction and hurry alongside the young Jedi in order to carry
+     on the conversation. Several other guards fall in behind them in
+     the darkness.
+
+                              LUKE
+               I must speak with Jabba.
+
+     Bib answers in Huttese, shaking his head in denial. Luke stops
+     and stares at Bib; he raises his hand slightly.
+
+                              LUKE
+               You will take me to Jabba now!
+
+     Bib turns in hypnotic response to Luke's command, and Luke
+     follows him into the gloom.
+
+                              LUKE
+               You serve your master well.
+
+     Bib responds.
+
+                              LUKE
+               And you will be rewarded.
+
+17   INT JABBA'S THRONE ROOM                                        17
+
+     Jabba is asleep on his throne, with Leia lying in front of him.
+     Salacious sits by Jabba's tail, watching it wriggle. Leia is now
+     dressed in the skimpy costume of a dancing girl; a chain runs
+     from a manacle/necklace at her throat to her new master, Jabba
+     the Hutt. Threepio stands behind Jabba as Bib comes up to the
+     gangster slug.
+
+                              THREEPIO
+               At last! Master Luke's come to rescue me.
+
+                              BIB
+               Master.
+
+     Jabba awakens with a start and Bib continues, in Huttese.
+
+                              BIB
+               ...Luke Skywalker, Jedi Knight.
+
+                              JABBA (in Huttese subtitled)
+               I told you not to admit him.
+
+                              LUKE
+               I must be allowed to speak.
+
+                              BIB (in Huttese subtitled)
+               He must be allowed to speak.
+
+     Jabba, furious, clobbers Bib and shoves him away.
+
+                              JABBA (in Huttese subtitled)
+               You weak-minded fool! He's using an old Jedi
+               mind trick.
+
+     Luke stares hard at Jabba.
+
+                              LUKE
+               You will bring Captain Solo and the Wookiee
+               to me.
+
+                              JABBA (in Huttese subtitled)
+               Your mind powers will not work on me, boy.
+
+                              LUKE
+               Nevertheless, I'm taking Captain Solo and his
+               friends. You can either profit by this... or
+               be destroyed! It's your choice. But I warn
+               you not to underestimate my powers.
+
+     Jabba's laugh is mean and loud. Threepio attempts to warn Luke
+     about the pit.
+
+                              THREEPIO
+               Master Luke, you're standing on...
+
+                              JABBA (in Huttese subtitled)
+               There will be no bargain, young Jedi. I shall
+               enjoy watching you die.
+
+     Luke reaches out, and a pistol jumps out of a guard's holster and
+     flies into Luke's hand. The bewildered guard grabs for it as
+     Jabba raises his hand.
+
+                              JABBA
+               Bascka!
+
+     The floor suddenly drops away, sending Luke and the hapless guard
+     into the pit. The pistol goes off, blasting a hole in the
+     ceiling. Jabba laughs and his courtiers join in. Leia starts
+     forward but is restrained by a human guard-- Lando, recognizable
+     behind his mask. She looks at him and he shakes his head "no."
+
+18   INT RANCOR PIT                                                 18
+
+     Luke and the guard have dropped twenty-five feet from a chute
+     into the dungeonlike cage. Luke gets to his feet as the guard
+     yells hysterically for help. A crowd gathers up around the edge
+     of the pit as the door in the side of the pit starts to RUMBLE
+     open. The guard screams in panic. Luke looks calmly around for a
+     means of escape.
+
+                              THREEPIO
+               Oh, no! The Rancor!
+
+     At the side of the pit, an iron door rumbles upward and a giant,
+     fanged RANCOR emerges. The guard runs to the side of the pit and
+     tries futilely to scramble to the top. The hideous beast closes
+     in on him.
+
+     The Rancor moves past Luke, and as the guard continues to
+     scramble, the Rancor picks him up and pops him into its slavering
+     jaws. A few screams, and the guard is swallowed with a gulp. The
+     audience cheers and laughs at the guard's fate.
+
+     The monster turns and starts for Luke. The young Jedi dashes away
+     just ahead of the monster's swipe at him, and picks up the long
+     arm bone of an earlier victim. The monster grabs Luke and brings
+     him up to his salivating mouth. At the last moment, Luke wedges
+     the bone in the monster's mouth and is dropped to the floor. The
+     monster bellows in rage and flails about, hitting the side of the
+     pit, causing an avalanche.
+
+     The monster crushes the bone in its jaws and sees Luke, who
+     squeezes into a crevice in the pit wall. Luke looks past the
+     monster to the holding cave beyond. On the far side of the
+     holding cave is a utility door--if only he can get to it. The
+     Rancor spots Luke and reaches into the crevice for him. Luke
+     grabs a large rock and raises it, smashing it down on the
+     Rancor's finger.
+
+19   HOLDING TUNNEL - RANCOR PIT                                    19
+
+     The Rancor lets out a loud howl as Luke makes a run for the
+     holding cave. He reaches the door and pushes a button to open it.
+     When he succeeds, he sees a heavy barred gate between him and
+     safety. Beyond the gate two guards look up from their dinner.
+     Luke turns to see the monster heading for him, and pulls with all
+     his might on the gate. The guards move to the gate and start
+     poking at the young Jedi with spears, laughing.
+
+     Luke crouches (against the wall) as the monster starts to reach
+     for him. Suddenly he notices a main door control panel halfway up
+     the wall. As the Rancor moves in for the kill, Luke picks up a
+     skull from the cave floor and hurls it at the panel. The giant
+     overhead door comes crashing down on the beast's head, squashing
+     it like a sledgehammer on an egg.
+
+     A startled gasp is heard from the stunned court. There's
+     consternation at this turn of events. Heads look to Jabba, who is
+     actually turning red with anger. Leia cannot suppress her joy.
+     Jabba utters harsh commands to his guards and they hurry off.
+
+                              JABBA (in Huttese subtitled)
+               Bring me Solo and the Wookiee. They will all
+               suffer for this outrage.
+
+21   INT RANCOR PIT                                                 21
+
+     The Rancor KEEPERS have come into the cage and are examining
+     their dead beast. One of them breaks down and weeps. The other
+     glares menacingly at Luke, who is unworried. Several guards rush
+     into the holding tunnel and take Luke away.
+
+22   INT THRONE ROOM                                                22
+
+     The crowd of creepy courtiers parts as Han and Chewie are brought
+     into the throne room, and other guards drag Luke up the steps.
+
+                              LUKE
+               Han!
+
+                              HAN
+               Luke!
+
+                              LUKE
+               Are you all right?
+
+                              HAN
+               Fine. Together again, huh?
+
+                              LUKE
+               Wouldn't miss it.
+
+                              HAN
+               How are we doing?
+
+                              LUKE
+               The same as always.
+
+                              HAN
+               That bad, huh? Where's Leia?
+
+     Luke looks to Leia.
+
+                              LEIA
+               I'm here.
+
+     Threepio is standing behind the grotesque gangster as he strokes
+     Leia like a pet cat. Several of the guards, including Lando,
+     bring Luke from the other side of the room. Boba is standing
+     behind Jabba.
+
+     Threepio steps forward and translates for the captives.
+
+                              THREEPIO
+               Oh, dear. His High Exaltedness, the great
+               Jabba the Hutt, has decreed that you are to
+               be terminated immediately.
+
+                              HAN
+               Good, I hate long waits.
+
+                              THREEPIO
+               You will therefore be taken to the Dune Sea
+               and cast into the pit of Carkoon, the nesting
+               place of the all-powerful Sarlacc.
+
+                              HAN (to Luke)
+               Doesn't sound so bad.
+
+                              THREEPIO
+               In his belly, you will find a new definition
+               of pain and suffering, as you are slowly
+               digested over a thousand years.
+
+                              HAN
+               On second thought, let's pass on that, huh?
+
+     Chewie barks his agreement.
+
+                              LUKE
+               You should have bargained, Jabba. That's the
+               last mistake you'll ever make.
+
+     Jabba cackles evilly at this.
+
+     As the guards drag the prisoners from the throne room, a loud
+     cheer rises from the crowd. Leia and Chewie exchange concerned
+     looks, but Luke Skywalker, Jedi warrior, cannot suppress a smile.
+
+23   EXT TATOOINE SEA - SKIFF                                       23
+
+     Jabba's huge SAIL BARGE moves above the desert surface
+     accompanied by two smaller SKIFFS. One of the skiffs glides
+     close, revealing Luke, Han, and Chewie -- all in bonds --
+     surrounded by guards, one of whom is Lando in disguise.
+
+                              HAN
+               I think my eyes are getting better. Instead
+               of a big dark blur, I see a big light blur.
+
+                              LUKE
+               There's nothing to see. I used to live here,
+               you know.
+
+                              HAN
+               You're gonna die here, you know. Convenient.
+
+                              LUKE
+               Just stick close to Chewie and Lando. I've
+               taken care of everything.
+
+                              HAN
+               Oh... great!
+
+24   INT BARGE OBSERVATION DECK                                     24
+
+     Jabba the Hutt rides like a sultan in the massive antigravity
+     ship. His entire retinue is with him, drinking, eating, and
+     having a good time. Leia is watching her friends in the skiff
+     when the chain attached to her neck is pulled tight and Jabba
+     tugs the scantily clad princess to him.
+
+                              JABBA (in Huttese subtitled)
+               Soon you will learn to appreciate me.
+
+     Threepio wanders among the Sail Barge aliens, bumping into a
+     smaller droid serving drinks, spilling them all over the place.
+     The stubby droid lets out an angry series of beeps and whistles.
+
+                              THREEPIO
+               Oh, I'm terribly sor... Artoo! What are you
+               doing here?
+
+     Artoo beeps a quick reply.
+
+                              THREEPIO
+               Well, I can see you're serving drinks, but
+               this place is dangerous. They're going to
+               execute Master Luke and, if we're not
+               careful, us too!
+
+     Artoo whistles a singsong response.
+
+                              THREEPIO
+               Hmm.  I wish I had your confidence.
+
+25   EXT SARLACC PIT                                                25
+
+     The convoy moves up over a huge sand pit. The Sail Barge stops to
+     one side of the depression, as does the escort skiff. But the
+     prisoner's skiff moves out directly over the center and hovers.
+     At the bottom of the deep cone of sand is a repulsive, mucous-
+     lined hole, surrounded by thousands of needle-sharp teeth. This
+     is the SARLACC. A plank is extended from the edge of the
+     prisoner's skiff. Guards release Luke's bonds and shove him out
+     onto the plank above the Sarlacc's mouth.
+
+26   EXT SAIL BARGE OBSERVATION DECK                                26
+
+     Jabba and Leia are now by the rail, watching. Threepio leans
+     forward and the slobbering villain mumbles something to him. As
+     Threepio steps up to a comlink, Jabba raises his arm and the
+     motley array of intergalactic pirates fall silent. Threepio's
+     voice is amplified across loudspeakers.
+
+                              THREEPIO
+               Victims of the almighty Sarlacc: His
+               Excellency hopes that you will die honorably.
+               But should any of you wish to beg for mercy,
+               the great Jabba the Hutt will now listen to
+               your pleas.
+
+27   EXT SKIFF                                                      27
+
+     Han steps forward arrogantly and begins to speak.
+
+                              HAN
+               Threepio, you tell that slimy piece of...
+               worm-ridden filth he'll get no such pleasure
+               from us. Right?
+
+     Chewie growls his agreement.
+
+                              LUKE
+               Jabba! This is your last chance. Free us or
+               die.
+
+     Lando moves unobtrusively along the skiff as Luke shoots a quick
+     look of conspiracy to him.
+
+28   INT SAIL BARGE OBSERVATION DECK                                28
+
+     The assembled monsters rock with mocking laughter as Artoo zips
+     unnoticed up the ramp to the upper deck. Jabba's laughter
+     subsides as he speaks into the comlink.
+
+                              JABBA (in Huttese subtitled)
+               Move him into position.
+
+     Jabba makes a thumbs-down gesture. Leia looks worried.
+
+29   EXT BARGE - UPPER DECK                                         29
+
+     Artoo appears from below and zips over to the rail facing the
+     pit. Below, in the skiff, Luke is prodded by a guard to the edge
+     of the plank over the gaping Sarlacc. Luke looks up at Artoo,
+     then gives a jaunty salute: the signal the little droid has been
+     waiting for. A flap opens in Artoo's domed head.
+
+                              JABBA (in Huttese subtitled)
+               Put him in.
+
+30   EXT SKIFF - PLANK                                              30
+
+     Luke is prodded and jumps off the plank to the cheers of the
+     bloodthirsty spectators. But, before anyone can even perceive
+     what is happening, he spins around and grabs the end of the plank
+     by his fingertips. The plank bends wildly from his weight and
+     catapults him skyward. In midair he does a complete flip and
+     drops down on the end of the plank in the same spot he just
+     vacated, but facing the skiff. He casually extends an open palm
+     and -- his lightsaber, which Artoo has sent arcing toward him,
+     drops into his hand.
+
+     With samurai speed, Luke ignites it and attacks the guard who
+     prodded him off the plank, sending the hapless monster screaming
+     overboard. The other guards swarm toward Luke. He wades into
+     them, lightsaber flashing. Lando struggles with another guard at
+     the back of the skiff.
+
+31   EXT SARLACC PIT                                                31
+
+     A bewildered guard lands in the soft, sandy slope of the pit, and
+     begins sliding. He claws desperately as a Sarlacc tentacle grabs
+     him and pulls him screaming into the viscous mouth.
+
+32   INT SAIL BARGE                                                 32
+
+     Jabba watches this and explodes in rage. He barks commands, and
+     the guards around him rush off to do his bidding. The scuzzy
+     creatures watching the action from the window are in an uproar.
+
+33   EXT SKIFF                                                      33
+
+     Luke knocks another guard off the skiff and into the waiting
+     mouth of the Sarlacc. He starts to untie Chewie's bonds.
+
+                              LUKE
+               Easy, Chewie.
+
+     At that moment, the deck gunmen on the barge unleash a series of
+     blasts from a big cannon on the upper deck. Lando is tossed from
+     the deck of the rocking skiff. He manages to grab a rope, and
+     dangles desperately above the Sarlacc pit.
+
+                              LANDO
+               Whoa! Whoa! Help!
+
+34   EXT UPPER DECK - SAIL BARGE                                    34
+
+     With two swift strides, the dangerous Boba Fett ignites his
+     rocket pack, leaps into the air, and flies from the barge down to
+     the skiff.
+
+35   EXT SKIFF                                                      35
+
+     Boba lands on the skiff and starts to aim his laser gun at Luke,
+     who has freed Han and Chewie from their bonds. But before Boba
+     can fire, the young Jedi spins on him, lightsaber sweeping, and
+     hacks the bounty hunter's gun in half.
+
+     Immediately, the skiff takes another direct hit from the barge's
+     deck gun. Shards of skiff deck fly. Chewie and Han are thrown
+     against the rail.
+
+                              HAN
+               Chewie, you okay? Where is he?
+
+     The Wookiee is wounded and he howls in pain.
+
+                              HAN
+               I'm okay, pal.
+
+     For a moment, Luke is distracted, and in that moment, Boba fires
+     a cable out of his armored sleeve. Instantly, Luke is wrapped in
+     a strong cable, his arms pinned against his side, his sword arm
+     free only from the wrist down.  Luke bends his wrist so the lightsaber
+     points straight up to reach the wire lasso and cuts through. Luke
+     shrugs away the cable and stands free.
+
+     Another blast from the Barge's deck gun hits near Boba and he is
+     knocked unconscious to the deck, next to where Lando is hanging.
+
+                              LANDO
+               Han! Chewie?
+
+                              HAN
+               Lando!
+
+     Luke is a little shaken but remains standing as a fusillade
+     brackets him. The second skiff, loaded with guards firing their
+     weapons, moves in on Luke fast. Luke leaps toward the incoming
+     second skiff. The young Jedi leaps into the middle of the second
+     skiff and begins decimating the guards from their midst.
+
+     Chewie, wounded, tries to lift himself as he barks directions to
+     Han, guiding him toward a spear which has been dropped by one of
+     the guards. Han searches the deck as Chewie barks directions;
+     finally he grabs hold of the spear.
+
+     Boba Fett, badly shaken, rises from the deck. He looks over at
+     the other skiff, where Luke is whipping a mass of guards. Boba
+     raises his arm, and aims his lethal appendage.
+
+     Chewie barks desperately at Han.
+
+                              HAN
+               Boba Fett?! Boba Fett?! Where?
+
+     The space pirate turns around blindly, and the long spear in his
+     hand whacks squarely in the middle of Boba's rocket pack.
+
+     The impact of the swing causes the rocket pack to ignite. Boba
+     blasts off, flying over the second skiff like a missile, smashing
+     against the side of the huge Sail Barge and sliding away into the
+     pit. He screams as his armored body makes its last flight past
+     Lando and directly into the mucous mouth of the Sarlacc. The
+     Sarlacc burps. Chewie growls a weak congratulations to Han.
+
+36   INT SAIL BARGE                                                 36
+
+     Leia turns from the spectacle outside, leaps onto Jabba's throne,
+     and throws the chain that enslaves her over his head around his
+     bulbous neck. Then she dives off the other side of the throne,
+     pulling the chain violently in her grasp. Jabba's flaccid neck
+     contracts beneath the tightening chain. His huge eyes bulge from
+     their sockets and his scum-coated tongue flops out. The Exalted
+     Hutt's huge tail spasms through its death throes and then slams
+     down into final stillness. Leia struggles to free herself of her
+     bondage.
+
+37   EXT SKIFF                                                      37
+
+     Luke continues to destroy the aliens on the guards' skiff, as Han
+     extends his spear downward to Lando, who is still dangling
+     precariously from a rope on the prisoner's skiff.
+
+                              HAN
+               Lando, grab it!
+
+                              LANDO
+               Lower it!
+
+                              HAN
+               I'm trying!
+
+     A major hit from the barge deck gun knocks the skiff on its side.
+     Han and almost everything else on board slides overboard. The
+     rope breaks, and Lando falls to the side of the Sarlacc pit.
+     Luckily, Han's foot catches on the skiff railing and he dangles
+     above Lando and the pit. The wounded Wookiee holds onto the skiff
+     for dear life as another hit from the deck gun rocks the skiff
+     violently.
+
+                              HAN
+               Whoa! Whoa! Grab me, Chewie! I'm slipping.
+
+     Chewie grabs hold of Han's feet, holding him upside down, as Han
+     extends the spear toward Lando, who is clutching to the side of
+     the pit.
+
+                              HAN
+               Grab it! L--Lando. Grab!
+
+     Luke finishes off the last guard on the second skiff. He sees the
+     deck gun blasting away at his helpless companions. Luke leaps
+     from the skiff, across a chasm of air, to the sheer metallic side
+     of the Sail Barge. Barely able to get a fingerhold, he begins a
+     painful climb up the hull, when suddenly an ax smashes through a
+     window an inch from his head. With Jedi agility, Luke grasps the
+     wrist holding the ax and yanks the helpless guard through the broken
+     window and into the deadly pit.
+
+     The injured Chewie is reaching over the rail for the dangling
+     Han, who is in turn blindly reaching down toward the desperate
+     Lando. The Baron has stopped his slippage down the sandy slope of
+     the Sarlacc pit by lying very still. Every time he tries to reach
+     for Han, the loose sand moves him closer to his final reward.
+
+                              HAN
+               Grab it! Almost... You almost got it!
+
+     Another blast hits the front of the tilted skiff, causing Lando
+     to let go of the spear.
+
+                              LANDO
+               Hold it! Whoa!
+
+     Again Han extends the spear toward Lando.
+
+                              HAN
+               Gently now. All... all right. Now easy, easy.
+               Hold me, Chewie.
+
+     Lando screams. One of the Sarlacc's tentacles has wrapped tightly
+     around his ankle, dragging him down the side of the pit.
+
+                              HAN
+               Chewie! Chewie, give me the gun. Don't move,
+               Lando.
+
+                              LANDO
+               No, wait! I thought you were blind!
+
+                              HAN
+               It's all right. Trust me. Don't move.
+
+                              LANDO
+               All right! A little higher! Just a little
+               higher!
+
+     Han adjusts his aim as Lando lowers his head, and the fuzzy-eyed
+     pirate fires at the tentacle. Direct hit. The tentacle releases
+     Lando, and Chewie starts to pull them on board the skiff.
+
+                              HAN
+               Chewie, Pull us up! Come on! Okay... up,
+               Chewie, up!
+
+38   EXT UPPER DECK                                                 38
+
+     The deck gunners have Chewie and the desperate dangling human
+     chain in their gun sights when something up on deck commands
+     their attention: Luke, standing before them like a pirate king,
+     ignites his lightsaber. The deck gunners have barely reached for
+     their pistols before the young Jedi has demolished them.
+     Immediately, Luke turns to see two more gunners (who have been
+     uncovering a giant gun at the end of the barge) racing for him,
+     firing their laser pistols.
+
+39   INT SAIL BARGE - OBSERVATION DECK                              39
+
+     Leia is struggling against her chains in desperation as Artoo
+     zips through the tumult of confused monsters to the rescue; the
+     stubby little droid extends a small laser gun and blasts the
+     chain apart.
+
+                              LEIA
+               Come on. We gotta get out of here quick.
+
+     Artoo and Leia race for the exit, passing Threepio, who is
+     kicking and screaming as Salacious Crumb, the reptilian monkey-
+     monster picks out one of the golden droid's eyes.
+
+                              THREEPIO
+               Not my eyes! Artoo, help! Quickly, Artoo. Oh!
+               Ohhh! You beast!
+
+     Artoo zips over and zaps Salacious, sending him skyward with a
+     scream, crashing into the rafters as Artoo, Leia, and Threepio
+     (with his eye dangling from a wire) hurry off.
+
+40   EXT UPPER DECK - SAIL BARGE                                    40
+
+     Luke is warding off laser blasts with his lightsaber, surrounded
+     by guards and fighting like a demon. Leia emerges onto the deck
+     as Luke turns to face another guard.
+
+                              LUKE (to Leia)
+               Get the gun! Point it at the deck!
+
+     Leia turns toward the barge cannon, climbs on the platform, and
+     swivels the gun around.
+
+                              LUKE
+               Point it at the deck!
+
+     A laser blast hits Luke's mechanical hand and he bends over in
+     pain, but manages to swing his lightsaber upward and take out the
+     last of the guards. He looks at the wounded hand, which reveals
+     the mechanism. He flexes the hand; it still works.
+
+     Near the rail of the upper deck, Artoo and Threepio steady
+     themselves as Threepio gets ready to jump. Artoo beeps wildly.
+
+                              THREEPIO
+               Artoo, where are we going? I couldn't
+               possibly jump.
+
+     Artoo butts the golden droid over the edge and steps off himself,
+     tumbling toward the sand.
+
+     Luke runs along the empty deck toward Leia and the barge gun,
+     which she has brought around to point down at the deck.
+
+                              LUKE
+               Come on!
+
+     Luke has hold on one of the rigging ropes from the mast. He
+     gathers Leia in his other arm and kicks the trigger of the deck
+     gun. The gun explodes into the deck as Luke and Leia swing out
+     toward the skiff.
+
+41   EXT SKIFF                                                      41
+
+     Han leans panting against the rail as Chewie helps Lando onto the
+     deck. Luke and Leia land on the skiff with flair.
+
+                              LUKE
+               Let's go! And don't forget the droids.
+
+                              LANDO
+               We're on our way.
+
+     The Sail Barge is exploding in stages in the distance. Half of
+     the huge craft is on fire.
+
+42   EXT SAND DUNE                                                  42
+
+     Threepio's legs stick straight up from the dune where he landed.
+     Next to it, Artoo's periscope is the only thing above the sand.
+     The skiff floats above them and two large electromagnets dangle
+     down on a wire. With a loud CLANG, both droids are pulled from
+     the sand.
+
+43   EXT DUNE SEA                                                   43
+
+     The little skiff skips around the burning Sail Barge, which
+     continues its chain of explosions. As the skiff sails off across
+     the desert, the barge settles to the sand and disappears in one
+     final conflagration.
+
+44   EXT DUNE SEA - LANDING AREA                                    44
+
+     A ferocious sandstorm blocks our view. Then, through the ROAR, we
+     HEAR THE VOICES of our heroes. They emerge slowly from the veil
+     of sand, pressing on against the wind. First come Artoo and
+     Threepio, followed by Leia guiding Han, then Luke and Lando come
+     into view, each supporting one side of the towering Chewbacca,
+     who hobbles from his wound.
+
+     Soon, they can make out some large vague shapes in the blowing
+     sand. It is the Millennium Falcon and, parked beside it, Luke's
+     trusty X-wing and a two-seated Y-wing. They must shout to be
+     heard.
+
+                              HAN
+               I don't know. All I can see is a lot of
+               blowing sand!
+
+                              LEIA
+               That's all any of us can see.
+
+                              HAN (blinking)
+               Then I guess I'm getting better.
+
+     As soon as the group huddles under the bulk of the Falcon, the
+     wind dies down to something more describable as a severe weather
+     condition. Threepio hits a switch, and the gang-plank lowers with
+     a HUM.
+
+                              HAN (turning to Luke)
+               I've got to hand it to you, kid, you were
+               pretty good out there.
+
+                              LUKE (shrugging it off)
+               I had a lot of help. Think nothing of it.
+
+                              HAN
+               No, I'm thinking a lot about it. That carbon
+               freeze was the closest thing to dead there
+               is. And it wasn't just sleepin'. It was a big
+               wide awake nothing!
+
+     Luke nods, as Chewie growls affectionately at the young Jedi
+     warrior, mussing his hair like a proud uncle. And Leia warmly
+     hugs him.
+
+                              LUKE (moving to his ship)
+               I'll see you back at the fleet.
+
+                              HAN
+               Why don't you leave that crate and come with
+               us?
+
+                              LUKE
+               I have a promise I have to keep first... to
+               an old friend.
+
+     Luke and Artoo take off in their spacecraft.
+
+                              HAN
+               (looking dubiously at Lando, obviously
+               remembering his friend's betrayal and
+               subsequent aide)
+               Guess I owe you some thanks, too, Lando.
+
+                              LANDO
+               Figured if I left you frozen like that you'd
+               just give me bad luck the rest of my life, so
+               I might as well get you unfrozen sooner or
+               later.
+
+                              LEIA
+               He means "You're welcome."
+
+                              LANDO
+               Come on, let's get off this miserable dust
+               ball.
+
+44A  EXT SPACE ABOVE TATOOINE                                      44A
+
+     The desolate yellow planet fills the screen, Luke's X-wing
+     appears and peels off to the left. A moment later, the FALCON
+     appears as a dot and grows huge, to roar directly over the
+     CAMERA.
+
+45   INT X-WING - COCKPIT                                           45
+
+     Luke is at the controls, with Artoo attached behind him outside
+     the canopy. Luke speaks into his comlink to the others, in the
+     MILLENNIUM FALCON.
+
+                              LUKE
+               I'll meet you back at the fleet.
+
+                              LEIA (over comlink)
+               Hurry. The Alliance should be assembled by
+               now.
+
+                              LUKE
+               I will.
+
+                              HAN (over comlink)
+               Hey, Luke, thanks. Thanks for comin' after
+               me. Now I owe you one.
+
+     A message from Artoo appears on the small monitor screen in front
+     of Luke. He smiles at the monitor and speaks to Artoo, as he
+     pulls a black glove on to cover his wounded mechanical hand.
+
+                              LUKE
+               That's right, Artoo. We're going to the 
+               Dagobah system. I have a promise to keep... 
+               to an old friend.
+
+46   EXT SPACE - DEATH STAR AND ENDOR                               46
+
+     A Super Star Destroyer and several ships of the Imperial Fleet
+     rest in space above the half-completed Death Star and its green
+     neighbor, Endor. Four squads of TIE fighters escort an Imperial
+     shuttle toward the Death Star.
+
+47   INT DEATH STAR - CORRIDOR TO DOCKING BAY                       47
+
+     Lord Vader strides down the hallway, accompanied by a very
+     nervous Death Star commander.
+
+48   INT DOCKING BAY - DEATH STAR                                   48
+
+     Thousands of Imperial troops in tight formation fill the mammoth
+     docking bay. Vader and the officer walk to the landing platform,
+     where the shuttle is coming to rest.
+
+     The shuttle's ramp lowers and the Emperor's Royal Guards come out
+     and create a lethal perimeter. The assembled troops move to rigid
+     attention with a momentous SNAP.
+
+     Then, in the huge SILENCE which follows, the EMPEROR appears. He
+     is a rather small, shriveled old man. His bent frame slowly makes
+     its way down the ramp with the aid of a gnarled cane. He wears a
+     hooded cloak similar to the one Ben wears, except that it is
+     black. The Emperor's face is shrouded and difficult to see,
+     except for his piercing yellow eyes. Commander Jerjerrod and
+     Darth Vader kneel to him. The Supreme Ruler of the galaxy beckons
+     to the Dark Lord.
+
+                              EMPEROR (to Vader)
+               Rise, my friend.
+
+     Vader rises and falls in next to the Emperor as he slowly makes
+     his way along the rows of troops. Jerjerrod and the other
+     commanders stay kneeling until the Supreme Ruler and Vader,
+     followed by several Imperial dignitaries, pass by; only then do
+     they join in the procession.
+
+                              VADER
+               The Death Star will be completed on schedule.
+
+                              EMPEROR
+               You have done well, Lord Vader. And now I
+               sense you wish to continue your search for
+               young Skywalker.
+
+                              VADER
+               Yes, my Master.
+
+                              EMPEROR
+               Patience, my friend. In time he will seek you
+               out. And when he does, you must bring him
+               before me. He has grown strong. Only together
+               can we turn him to the dark side of the
+               Force.
+
+                              VADER
+               As you wish.
+
+                              EMPEROR
+               Everything is proceeding as I have foreseen.
+
+     He laughs to himself as they pass along the vast line of Imperial
+     troops.
+
+49   EXT YODA'S HOUSE - DAGOBAH                                     49
+
+     Once again, Artoo finds himself waiting around in the damp
+     environs of the swamp planet, and he's none too happy about it.
+     He beeps disconsolately to himself and turns to look at Yoda's
+     cottage. Warm yellow light escapes the oddly shaped windows to
+     fight the gloom.
+
+50   INT YODA'S HOUSE                                               50
+
+     The tip of a walking stick taps hesitantly across the earthen
+     floor of the cottage. Our view travels up the stick to the small
+     green hand that clutches it, and then to the familiar face of
+     YODA, THE JEDI MASTER. His manner is frail, and his voice, though
+     cheerful, seems weaker.
+
+                              YODA
+               Hmm. That face you make. Look I so old to
+               young eyes?
+
+     Luke is sitting in a corner of the cramped space and, indeed, his
+     look has been woeful. Caught, he tries to hide it.
+
+                              LUKE
+               No... of course not.
+
+                              YODA (tickled, chuckles)
+               I do, yes, I do!  Sick have I become. Old and
+               weak. (Points a crooked finger) When nine
+               hundred years old you reach, look as good you
+               will not. Hmm?
+
+     Yoda chuckles at this, coughs, and hobbles over toward his bed.
+
+                              YODA
+               Soon will I rest. Yes, forever sleep. Earned
+               it, I have.
+
+     Yoda sits himself on his bed, with great effort.
+
+                              LUKE
+               Master Yoda, you can't die.
+
+                              YODA
+               Strong am I with the Force... but not that
+               strong! Twilight is upon me and soon night
+               must fall. That is the way of things ... the
+               way of the Force.
+
+                              LUKE
+               But I need your help. I've come back to
+               complete the training.
+
+                              YODA
+               No more training do you require. Already know
+               you that which you need.
+
+     Yoda sighs, and lies back on his bed.
+
+                              LUKE
+               Then I am a Jedi?
+
+                              YODA (shakes his head)
+               Ohhh. Not yet. One thing remains: Vader. You
+               must confront Vader. Then, only then, a Jedi
+               will you be. And confront him you will.
+
+     Luke is in agony. He is silent for a long moment, screwing up his
+     courage. Finally he is able to ask.
+
+                              LUKE
+               Master Yoda... is Darth Vader my father?
+
+     Yoda's eyes are full of weariness and compassion. An odd, sad
+     smile creases his face. He turns painfully on his side, away from
+     Luke.
+
+                              YODA
+               Mmm... rest I need. Yes... rest.
+
+     Luke watches him, each moment an eternity.
+
+                              LUKE
+               Yoda, I must know.
+
+                              YODA
+               Your father he is.
+
+     Luke reacts as if cut.
+
+                              YODA
+               Told you, did he?
+
+                              LUKE
+               Yes.
+
+     A new look of concern crosses Yoda's face.  He closes his eyes.
+
+                              YODA
+               Unexpected this is, and unfortunate..
+.
+                              LUKE
+               Unfortunate that I know the truth?
+
+     Yoda opens his eyes again and studies the youth.
+
+                              YODA (gathering all his strength)
+               No. Unfortunate that you rushed to face
+               him... that incomplete was your training. Not
+               ready for the burden were you.
+
+                              LUKE
+               Well, I'm sorry.
+
+                              YODA
+               Remember, a Jedi's strength flows from the
+               Force.  But beware.  Anger, fear, aggression.
+               The dark side are they.  Once you start down
+               the dark path, forever will it dominate your
+               destiny.
+
+     He beckons the young Jedi closer to him.
+
+                              YODA
+               Luke...Luke...Do not...Do not underestimate
+               the powers of the Emperor, or suffer your
+               father's fate, you will. Luke, when gone am I
+               (cough), the last of the Jedi will you be.
+               Luke, the Force runs strong in your family.
+               Pass on what you have learned, Luke... (with
+               great effort) There is...
+               another...Sky...Sky...walker.
+
+     He catches his breath. A shiver runs through the ancient green
+     creature, and he dies. Luke stares at his dead master as he
+     disappears in front of his eyes.
+
+51   EXT DAGOBAH SWAMP - X-WING                                     51
+
+     Luke wanders back to where his ship is sitting. Artoo beeps a
+     greeting, but is ignored by his depressed master. Luke kneels
+     down, begins to help Artoo with the ship, then stops and shakes
+     his head dejectedly.
+
+                              LUKE
+               I can't do it, Artoo. I can't go on alone.
+
+                              BEN (OS)
+               Yoda will always be with you.
+
+     Luke looks up to see the shimmering image of BEN KENOBI.
+
+                              LUKE
+               Obi-Wan! Why didn't you tell me?
+
+     The ghost of Ben Kenobi approaches him through the swamp.
+
+                              LUKE
+               You told me Vader betrayed and murdered my
+               father.
+
+                              BEN
+               You father was seduced by the dark side of
+               the Force. He ceased to be Anakin Skywalker
+               and became Darth Vader. When that happened,
+               the good man who was your father was
+               destroyed. So what I have told you was
+               true... from a certain point of view.
+
+                              LUKE (turning away, derisive)
+               A certain point of view!
+
+                              BEN
+               Luke, you're going to find that many of the
+               truths we cling to depend greatly on our own
+               point of view.
+
+     Luke is unresponsive. Ben studies him in silence for a moment.
+
+                              BEN
+               I don't blame you for being angry. If I was
+               wrong in what I did, it certainly wouldn't
+               have been for the first time. You see, what
+               happened to your father was my fault.
+
+     Ben pauses sadly.
+
+                              BEN
+               Anakin was a good friend.
+
+     Luke turns with interest at this. As Ben speaks, Luke settles on
+     a stump, mesmerized. Artoo comes over to offer his comforting
+     presence.
+
+                              BEN
+               When I first knew him, your father was
+               already a great pilot. But I was amazed how
+               strongly the Force was with him.  I took it
+               upon myself to train him as a Jedi.  I
+               thought that I could instruct him just as
+               well as Yoda.  I was wrong.  My pride has
+               had terrible consequences for the galaxy.
+
+     Luke is entranced.
+
+                              LUKE
+               There's still good in him.
+
+                              BEN
+               I also thought he could be turned back to the
+               good side. It couldn't be done. He is more
+               machine now than man. Twisted and evil.
+
+                              LUKE
+               I can't do it, Ben.
+
+                              BEN
+               You cannot escape your destiny.
+
+                              LUKE
+               I tried to stop him once. I couldn't do it.
+
+                              BEN
+               Vader humbled you when first you met him,
+               Luke...but that experience was part of your
+               training. It taught you, among other things,
+               the value of patience.  Had you not been so
+               impatient to defeat Vader then, you could
+               have finished your training here with Yoda.
+               You would have been prepared.
+
+                              LUKE
+               But I had to help my friends.
+
+                              BEN (grinning at Luke's indignation)
+               And did you help them? It was they who had to
+               save you. You achieved little by rushing back
+               prematurely, I fear.
+
+                              LUKE (with sadness)
+               I found out Darth Vader was my father.
+
+                              BEN
+               To be a Jedi, Luke, you must confront and
+               then go beyond the dark side - the side your
+               father couldn't get past. Impatience is
+               the easiest door - for you, like your father.
+               Only, your father was seduced by what he
+               found on the other side of the door, and you
+               have held firm. You're no longer so reckless
+               now, Luke. You are strong and patient. And
+               now, you must face Darth Vader again!
+
+                              LUKE
+               I can't kill my own father.
+
+                              BEN
+               Then the Emperor has already won. You were
+               our only hope.
+
+                              LUKE
+               Yoda spoke of another.
+
+                              BEN
+               The other he spoke of is your twin sister.
+
+                              LUKE
+               But I have no sister.
+
+                              BEN
+               Hmm. To protect you both from the Emperor,
+               you were hidden from your father when you
+               were born. The Emperor knew, as I did, if
+               Anakin were to have any offspring, they would
+               be a threat to him. That is the reason why
+               your sister remains safely anonymous.
+
+                              LUKE
+               Leia! Leia's my sister.
+
+                              BEN
+               Your insight serves you well. Bury your
+               feelings deep down, Luke. They do you credit.
+               But they could be made to serve the Emperor.
+
+     Luke looks into the distance, trying to comprehend all this.
+
+                              BEN (continuing his narrative)
+               When your father left, he didn't know your
+               mother was pregnant. Your mother and I knew
+               he would find out eventually, but we wanted
+               to keep you both as safe as possible, for as
+               long as possible.  So I took you to live with
+               my brother Owen on Tatooine... and your mother
+               took Leia to live as the daughter of Senator
+               Organa, on Alderaan.
+
+     Luke turns, and settles near Ben to hear the tale.
+
+                              BEN (attempting to give solace with his words)
+               The Organa household was high-born and
+               politically quite powerful in that system.
+               Leia became a princess by virtue of
+               lineage... no one knew she'd been adopted, of
+               course. But it was a title without real
+               power, since Alderaan had long been a
+               democracy.  Even so, the family continued to
+               be politically powerful, and Leia, following
+               in her foster father's path, became a senator
+               as well.  That's not all she became, of
+               course... she became the leader of her cell
+               in the Alliance against the corrupt Empire.
+               And because she had diplomatic immunity, she
+               was a vital link for getting information to
+               the Rebel cause.  That's what she was doing
+               when her path crossed yours... for her foster
+               parents had always told her to contact me on
+               Tatooine, if her troubles became desperate.
+
+     Luke is overwhelmed by the truth, and is suddenly protective of
+     his sister.
+
+                              LUKE
+               But you can't let her get involved now, Ben.
+               Vader will destroy her.
+
+                              BEN
+               She hasn't been trained in the ways of the
+               Jedi the way you have, Luke ... but the Force
+               is strong with her, as it is with all of your
+               family. There is no avoiding the battle. You
+               must face and destroy Vader!
+
+52   EXT SPACE - REBEL FLEET                                        52
+
+     The vast Rebel Fleet stretches as far as the eye can see.
+     Overhead a dozen small Corellian battleships fly in formation.
+     Fighters and battlecruisers surround the largest of the Rebel
+     Star Cruisers, the HEADQUARTERS FRIGATE.
+
+53   INT HEADQUARTERS FRIGATE - MAIN BRIEFING ROOM                  53
+
+     Hundreds of Rebel commanders of all races and forms are assembled
+     in the WAR ROOM. WEDGE is among them. In the center of the room
+     is a holographic model depicting the half-completed Imperial
+     Death Star, the nearby Moon of Endor, and the protecting
+     deflector shield.
+
+     MON MOTHMA, the leader of the Alliance, enters the room. She is a
+     stern but beautiful woman in her fifties. Conferring with her are
+     several military leaders, including GENERAL MADINE and ADMIRAL
+     ACKBAR (a salmon-colored Mon Calamari). Lando moves through the
+     crowd until he finds Han and Chewie, standing next to Leia and
+     the two droids.
+
+     Han peers at Lando's new insignia on his chest, and is amused.
+
+                              HAN
+               Well, look at you, a general, huh?
+
+                              LANDO
+               Oh, well, someone must have told them about
+               my little maneuver at the battle of Taanab.
+
+                              HAN (sarcastic)
+               Well, don't look at me, pal. I just said you
+               were a fair pilot. I didn't know they were
+               lookin' for somebody to lead this crazy
+               attack.
+
+                              LANDO (smiling)
+               I'm surprised they didn't ask you to do it.
+
+                              HAN
+               Well, who says they didn't.  But I
+               ain't crazy. You're the respectable
+               one, remember?
+
+     Mon Mothma signals for attention, and the room falls
+     silent.
+
+                              MON MOTHMA
+               The Emperor has made a critical error and the
+               time for our attack has come.
+
+     This causes a stir. Mon Mothma turns to a holographic model of
+     the Death Star, the Endor moon and the protecting deflector
+     shield in the center of the room.
+
+                              MON MOTHMA
+               The data brought to us by the Bothan spies
+               pinpoints the exact location of the Emperor's
+               new battle station. We also know that the
+               weapon systems of this Death Star are not yet
+               operational. With the Imperial Fleet spread
+               throughout the galaxy in a vain effort to
+               engage us, it is relatively unprotected. But
+               most important of all, we've learned that the
+               Emperor himself is personally overseeing the
+               final stages of the construction of this
+               Death Star.
+
+     A volley of spirited chatter erupts from the crowd. Han turns to
+     Leia as Chewie barks his amazement.
+
+                              MON MOTHMA (cont)
+               Many Bothans died to bring us this
+               information. Admiral Ackbar, please.
+
+     Admiral Ackbar steps forward and points to the Death Star's force
+     field and the Moon of Endor.
+
+                              ACKBAR
+               You can see here the Death Star orbiting the
+               forest Moon of Endor. Although the weapon
+               systems on this Death Star are not yet
+               operational, the Death Star does have a
+               strong defense mechanism. It is protected by
+               an energy shield, which is generated from the
+               nearby forest Moon of Endor. The shield must
+               be deactivated if any attack is to be
+               attempted. Once the shield is down, our
+               cruisers will create a perimeter, while the
+               fighters fly into the superstructure and
+               attempt to knock out the main reactor.
+
+     There's a concerned murmur.
+
+                              ACKBAR (cont)
+               General Calrissian has volunteered to lead
+               the fighter attack
+
+     Han turns to Lando with a look of respect.
+
+                              HAN
+               Good luck.
+
+     Lando nods his thanks.
+
+                              HAN
+               You're gonna need it.
+
+                              ACKBAR
+               General Madine.
+
+     Madine moves center stage.
+
+                              GENERAL MADINE
+               We have stolen a small Imperial shuttle.
+               Disguised as a cargo ship, and using a secret
+               Imperial code, a strike team will land on the
+               moon and deactivate the shield generator.
+
+     The assembly begins to mumble among themselves.
+
+                              THREEPIO
+               Sounds dangerous.
+
+                              LEIA (to Han)
+               I wonder who they found to pull that off.
+
+                              GENERAL MADINE
+               General Solo, is your strike team assembled?
+
+     Leia, startled, looks up at Han, surprise changing to admiration.
+
+                              HAN
+               Uh, my team's ready. I don't have a command
+               crew for the shuttle.
+
+     Chewbacca raises his hairy paw and volunteers.  Han looks up at
+     him.
+
+                              HAN
+               Well, it's gonna be rough, pal. I didn't want
+               to speak for you.
+
+     Chewie waves that off with a huge GROWL.
+
+                              HAN (smiles)
+               That's one.
+
+                              LEIA
+               Uh, General... count me in.
+
+                              VOICE (OS)
+               I'm with you, too!
+
+     They turn in that direction and peer into the crowd as there are
+     more cheers. The commanders part, and there at the back stands
+     Luke. Han and Leia are surprised and delighted.
+
+     Leia moves to Luke and embraces him warmly. She senses a change
+     in him and looks into his eyes questioningly.
+
+                              LEIA
+               What is it?
+
+                              LUKE (hesitant)
+               Ask me again sometime.
+
+     Han, Chewie, and Lando crowd around Luke as the assembly breaks
+     up.
+
+                              HAN
+               Luke.
+
+                              LUKE
+               Hi, Han... Chewie.
+
+     Artoo beeps a singsong observation to a worried Threepio.
+
+                              THREEPIO
+               "Exciting" is hardly the word I would use.
+
+54   INT HEADQUARTERS FRIGATE - MAIN DOCKING BAY                    54
+
+     The Millennium Falcon rests beyond the stolen IMPERIAL SHUTTLE,
+     which looks anomalous among all the Rebel ships in the vast
+     docking bay. Chewie barks a final farewell to Lando and leads
+     Artoo and Threepio up the shuttle, crowded now with the Rebel
+     strike team loading weapons and supplies. Lando turns to face
+     Han. Luke and Leia have said their good-byes and start up the
+     ramp.
+
+                              HAN
+               Look. I want you to take her. I mean it. Take
+               her. You need all the help you can get. She's
+               the fastest ship in the fleet.
+
+                              LANDO
+               All right, old buddy. You know, I know what
+               she means to you. I'll take good care of her.
+               She-she won't get a scratch. All right?
+
+                              HAN (looks at him warmly)
+               Right. I got your promise now. Not a scratch.
+
+                              LANDO
+               Look, would you get going, you pirate.
+
+     Han and Lando pause, then exchange salutes.
+
+                              LANDO
+               Good luck.
+
+                              HAN
+               You, too.
+
+     Han goes up the ramp. Lando watches him go and then slowly turns
+     away.
+
+55   INT IMPERIAL SHUTTLE - COCKPIT                                 55
+
+     Luke is working on a back control panel as Han comes in and takes
+     the pilot's seat. Chewie, in the seat next to him, is trying to
+     figure out all the Imperial controls.
+
+                              HAN
+               You got her warmed?
+
+                              LUKE
+               Yeah, she's comin' up.
+
+     Chewie growls a complaint.
+
+                              HAN
+               No. I don't think the Empire had Wookiees in
+               mind when they designed her, Chewie.
+
+     Leia comes in from the hold and takes her seat near Luke.
+     Chewie barks and hits some switches. Han's glance has stuck on
+     something out the window: the Millennium Falcon. Leia nudges him
+     gently.
+
+                              LEIA
+               Hey, are you awake?
+
+                              HAN
+               Yeah, I just got a funny feeling. Like I'm
+               not gonna see her again.
+
+     Chewie, hearing this, stops his activity and looks longingly out
+     at the Falcon, too. Leia puts a hand on Han's shoulder.
+
+                              LEIA (softly)
+               Come on, General, let's move.
+
+     Han snaps back to life.
+
+                              HAN
+               Right. Chewie, let's see what this piece of
+               junk can do. Ready, everybody?
+
+                              LUKE
+               All set.
+
+                              THREEPIO
+               Here we go again.
+
+                              HAN
+               All right, hang on.
+
+56   EXT SPACE - THE REBEL FLEET                                    56
+
+     The stolen Imperial shuttle leaves the main docking bay of the
+     Headquarters Frigate, lowers its wings into flight position, and
+     zooms off into space.
+
+57   INT EMPEROR'S THRONE ROOM                                      57
+
+     The converted control room is dimly lit, except for a pool of
+     light at the far end. There the Emperor sits in an elaborate
+     control chair before a large window which looks out across the
+     half-completed Death Star to the giant green moon of Endor.
+     Darth Vader, standing with other members of the Imperial council,
+     cautiously approaches his master. The ruler's back is to Vader.
+     After several tense moments, the Emperor's chair rotates around
+     to face him.
+
+                              VADER
+               What is thy bidding, my Master?
+
+                              EMPEROR
+               Send the fleet to the far side of Endor.
+               There it will stay until called for.
+
+                              VADER
+               What of the reports of the Rebel fleet
+               massing near Sullust?
+
+                              EMPEROR
+               It is of no concern. Soon the Rebellion will
+               be crushed and young Skywalker will be one of
+               us! Your work here is finished, my friend. Go
+               out to the command ship and await my orders.
+
+                              VADER
+               Yes, my Master.
+
+     Vader bows, then turns and exits the throne room as the Emperor
+     walks toward the waiting council members.
+
+58   EXT SPACE - DEATH STAR - MOON                                  58
+
+     There is a great deal of Imperial traffic in the area as
+     construction proceeds on the Death Star. Transports, TIE
+     fighters, and a few Star Destroyers move about. Now the huge
+     Super Star Destroyer announces itself with a low roar and soon
+     fills the frame.
+
+59   INT STOLEN IMPERIAL SHUTTLE - COCKPIT                          59
+
+     Han looks back at Luke and Leia as Chewie flips several switches.
+     Through the viewscreen, the Death Star and the huge Super Star
+     Destroyer can be seen.
+
+                              HAN
+               If they don't go for this, we're gonna have
+               to get outta here pretty quick, Chewie.
+
+     Chewie growls his agreement.
+
+                              CONTROLLER (over radio)
+               We have you on our screen now. Please
+               identify.
+
+                              HAN
+               Shuttle Tydirium requesting deactivation of
+               the deflector shield.
+
+                              CONTROLLER (over radio)
+               Shuttle Tydirium, transmit the clearance code
+               for shield passage.
+
+                              HAN
+               Transmission commencing.
+
+     Leia and Chewbacca listen tensely as the sound of a high speed
+     transmission begins.
+
+                              LEIA
+               Now we find out if that code is worth the
+               price we paid.
+
+                              HAN
+               It'll work. It'll work.
+
+     Chewie whines nervously. Luke stares at the Huge Super Star
+     Destroyer that looms ever larger before them.
+
+                              LUKE
+               Vader's on that ship.
+
+                              HAN
+               Now don't get jittery, Luke. There are a lot
+               of command ships. Keep your distance though,
+               Chewie, but don't look like you're trying to
+               keep your distance.
+
+     Chewie barks a question.
+
+                              HAN
+               I don't know.  Fly casual.
+
+                              LUKE
+               I'm endangering the mission. I shouldn't have
+               come.
+
+                              HAN
+               It's your imagination, kid. Come on. Let's
+               keep a little optimism here.
+
+     Chewie barks his worries as the Super Star Destroyer grows larger
+     out the window.
+
+60   INT VADER'S STAR DESTROYER - BRIDGE                            60
+
+     Lord Vader stands, back to us, staring out a window at the Death
+     Star. Now, some vibration felt only by him causes him to turn.
+     After a moment of stillness, he walks down the row of controllers
+     to where ADMIRAL PIETT is leaning over the tracking screen of the
+     controller we've seen earlier. Piett straightens at Vader's
+     approach.
+
+                              VADER
+               Where is that shuttle going?
+
+                              PIETT (into comlink)
+               Shuttle Tydirium, what is your cargo and
+               destination?
+
+                              PILOT VOICE (HAN)(filtered)
+               Parts and technical crew for the forest moon.
+
+     The Bridge Commander looks to Vader for a reaction.
+
+                              VADER
+               Do they have a code clearance?
+
+                              PIETT
+               It's an older code, sir, but it checks out. I
+               was about to clear them.
+
+     Vader looks upward, as he senses Luke's presence.
+
+                              PIETT
+               Shall I hold them?
+
+                              VADER
+               No. Leave them to me. I will deal with them
+               myself.
+
+                              PIETT (surprised)
+               As you wish, my lord.
+               (to controller) Carry on.
+
+     Piett nods at controller, who switches on his comlink.
+
+61   INT STOLEN IMPERIAL SHUTTLE - COCKPIT                          61
+
+     The group waits tensely.
+
+                              HAN
+               They're not goin' for it, Chewie.
+
+                              CONTROLLER (filtered)
+               Shuttle Tydirium, deactivation of the shield
+               will commence immediately. Follow your
+               present course.
+
+     Everyone breaths a sigh of relief. Everyone but Luke, who looks
+     worried. Chewie barks.
+
+                              HAN
+               Okay! I told you it was gonna work. No
+               problem.
+
+62   EXT SPACE - STOLEN IMPERIAL SHUTTLE - ENDOR                    62
+
+     The stolen Imperial shuttle moves off toward the green Sanctuary
+     Moon.
+
+63   EXT FOREST LANDING SITE - ENDOR                                63
+
+     The stolen Imperial shuttle sits in a clearing of the moon's
+     dark, primeval forest, dwarfed by the ancient towering trees.
+     On an adjacent hill, the helmeted Rebel contingent makes its way
+     up a steep trail. Leia and Han are slightly ahead of Chewie and
+     Luke. The troops of the strike-team squad follow, with Artoo and
+     Threepio bringing up the rear. Artoo beeps.
+
+     Up ahead, Chewie and Leia reach a crest in the hill and drop
+     suddenly to the ground, signaling the rest of the group to stop.
+     Han and Luke crawl up to take a look.
+
+                              THREEPIO
+               Oh, I told you it was dangerous here.
+
+     THEIR POV. Not far below them, two IMPERIAL SCOUTS are wandering
+     through bushes in the valley below. Their two ROCKET BIKES are
+     parked nearby.
+
+                              LEIA
+               Shall we try and go around?
+
+                              HAN
+               It'll take time. This whole party'll be for
+               nothing if they see us.
+
+     Leia motions for the squad to stay put, then she, Han, Luke and
+     Chewie start quietly down.
+
+64   EXT FOREST CLEARING - CAMPSITE                                 64
+
+     The four friends make their way to the edge of the clearing not
+     far from the two Imperial scouts.
+
+                              HAN
+               Chewie and I will take care of this. You stay
+               here.
+
+                              LUKE
+               Quietly, there might be more of them out
+               there.
+
+                              HAN (grins)
+               Hey... it's me.
+
+     Han and Chewie turn and start through the bushes toward the
+     scouts. Luke and Leia exchange smiles.
+
+     Han sneaks up behind one of the scouts, steps on a twig and the
+     scout whirls, knocking Han into a tree. The scout shouts for his
+     companion.
+
+                              SCOUT #1
+               Go for help! Go!
+
+     The second scout jumps on his speeder bike and takes off, but
+     Chewie gets off a shot on his crossbow laser weapon, causing the
+     scout to crash into a tree. Han and Scout #1 are in a rousing
+     fistfight.
+
+                              LUKE (sarcastic)
+               Great. Come on.
+
+     Luke starts for the scuffle, followed by Leia with her laser
+     pistol drawn. As they run through the bushes, Leia stops and
+     points to where two more scouts are sitting on their speeder
+     bikes, with an unoccupied bike parked nearby.
+
+                              LEIA
+               Over there! Two more of them!
+
+                              LUKE
+               I see them. Wait, Leia!
+
+     But Leia doesn't hear him and races for the remaining speeder
+     bike. She starts it up and takes off as Luke jumps on the bike
+     behind her.
+
+                              LUKE (pointing to the controls)
+               Quick! Jam their comlink. Center switch!
+
+     Luke and Leia speed into the dense foliage in hot pursuit, barely
+     avoiding two huge trees.
+
+                              HAN
+               Hey, wait! Ahhh!
+
+     He flips the remaining scout to the ground.
+
+65   EXT FOREST - THE BIKE CHASE                                    65
+
+     The two fleeing Imperial scouts have a good lead as Luke and Leia
+     pursue through the giant trees at 200 miles an hour, the fire
+     from their bike's laser cannon hitting harmlessly near the moving
+     targets.
+
+                              LUKE
+               Move closer!
+
+     Leia guns it, closing the gap, as the two scouts recklessly veer
+     through a narrow gap in the trees. One of the bikes SCRAPES a
+     tree, slowing the scout.
+
+                              LUKE
+               Get alongside that one!
+
+     Leia pulls her speeder bike up so close to the scout's bike that
+     their steering vanes SCRAPE noisily. Luke leaps from his bike to
+     the back of the scout's, grabs the Imperial warrior around the
+     neck, and flips him off the bike, into a thick tree trunk. Luke
+     gains control of the bike and follows Leia, who has pulled ahead.
+     They tear off after the remaining scout.
+
+                              LUKE
+               Get him!
+
+     The speeding chase passes TWO MORE IMPERIAL SCOUTS. These two
+     swing into pursuit, chasing Luke and Leia, firing away with their
+     laser cannon. The two Rebels look behind them just as Luke's bike
+     takes a glancing hit.
+
+                              LUKE (indicating the one ahead)
+               Keep on that one! I'll take these two!
+
+     With Leia shooting ahead, Luke suddenly slams his steering vanes
+     into the braking mode. Luke's bike is a blur to the two pursuing
+     scouts as they zip by him on either side. Luke slams his bike
+     into forward and starts firing away, having switched places with
+     his pursuers in a manner of seconds. Luke's aim is good and one
+     scout's bike is blasted out of control. It explodes against a
+     tree trunk.
+
+     The scout's cohort takes one glance back at the flash and shifts
+     into turbo drive, going even faster. Luke keeps on his tail.
+     FAR AHEAD, Leia and the first scout are doing a highspeed slalom
+     through the death-dealing trunks. Now Leia aims her bike skyward
+     and rises out of sight.
+
+     The scout turns in confusion, unable to see his pursuer.
+     Suddenly, Leia dives down upon him from above, cannon blasting.
+     The scout's bike takes a glancing hit.
+
+     Leia moves in alongside him. The scout eyes her beside him,
+     reaches down, and pulls out a handgun. Before Leia can react, the
+     scout has blasted her bike, sending it out of control. Leia dives
+     off as her bike explodes against a tree. The happy scout looks
+     back at the explosion. But when he turns forward again, he is on
+     a collision course with a giant fallen tree. He hits his brakes
+     to no avail and disappears in a conflagration.
+
+     ANOTHER PART OF THE FOREST: Luke and the last remaining scout
+     continue their weaving chase through the trees. Now Luke moves up
+     close. The scout responds by slamming his bike into Luke's. A
+     fallen tree forms a bridge across their path. The scout zips
+     under. Luke goes over the top and crashes his bike down on the
+     scout's. Both riders look ahead - a wide trunk looms directly in
+     Luke's path, but the scout's bike beside him makes it almost
+     impossible for him to avoid it. Luke banks with all his might,
+     leaning almost horizontal over the scout's bike, and is able to
+     make it by, just clipping the tree. When he straightens, he and
+     the scout discover that their two bikes have locked front vanes
+     and are moving as one.
+
+     Another big tree looms in Luke's path. He reacts instinctively
+     and dives off his bike. The two bikes come apart a second before
+     Luke's explodes against a tree. The scout sweeps out and circles
+     back to find Luke.
+
+     Luke rises from the undergrowth as the scout bears down on him
+     and opens fire with his laser cannon. Luke ignites his laser
+     sword and begins deflecting the bolts. The scout's bike keeps
+     coming and it appears that in a second it will cut Luke in half.
+     At the last instant, Luke steps aside and chops off the bike's
+     control vanes with one mighty slash. The scout's bike begins to
+     shudder, then, pitching and rolling, it rises up to slam directly
+     into a tree in a giant ball of fire.
+
+66   EXT SCOUT CAMPSITE - FOREST                                    66
+
+     Han, Chewie, and the droids, along with the rest of the squad,
+     wait anxiously in the clearing. Artoo's radar screen sticks out
+     of his domed head and revolves, scanning the forest. He beeps.
+
+                              THREEPIO
+               Oh, General Solo, somebody's coming. Oh!
+
+     Han, Chewie, and the rest of the squad raise their weapons.
+     Luke steps out of the foliage to find the weapons trained on him.
+     He's too tired to care. He plops himself down on a boulder and
+     looks around.
+
+                              HAN
+               Luke! Where's Leia?
+
+                              LUKE (concerned)
+               What? She didn't come back?
+
+                              HAN
+               I thought she was with you.
+
+                              LUKE
+               We got separated.
+
+     Luke and Han exchange a silent, grim look. Luke gets up wearily.
+
+                              LUKE
+               Hey, we better go look for her.
+
+     Han nods, and signals to a Rebel officer.
+
+                              HAN
+               Take the squad ahead.  We'll meet at the
+               shield generator at 0300.
+
+                              LUKE
+               Come on, Artoo.  We'll need your scanners.
+
+     Luke, Chewie, Han, and the droids move off in one direction as
+     the squad proceeds in another.
+
+                              THREEPIO
+               Don't worry, Master Luke.  We know what to
+               do.
+
+     They move off into the woods.
+
+                              THREEPIO (to Artoo)
+               And you said it was pretty here. Ugh!
+
+67   EXT FOREST CLEARING - LEIA'S CRASH SITE                        67
+
+     A strange little furry face with huge black eyes comes slowly
+     into view. The creature is an EWOK, by the name of WICKET. He
+     seems somewhat puzzled, and prods Leia with a spear. The princess
+     groans; this frightens the stubby ball of fuzz and he prods her
+     again. Leia sits up and stares at the three-foot-high Ewok. She
+     tries to figure out where she is and what has happened. Her
+     clothes are torn; she's bruised and disheveled.
+     The Ewok jumps up and grabs a four-foot-long spear, which he
+     holds in a defensive position. Leia watches him as he circles
+     warily and begins poking her with the sharp point of the spear.
+
+                              LEIA
+               Cut it out!
+
+     She stands up, and the Ewok quickly backs away.
+
+                              LEIA
+               I'm not gonna hurt you.
+
+     Leia looks around at the dense forest, and at the charred remains
+     of her speeder bike, then sits down, with a sigh, on a fallen
+     log.
+
+                              LEIA
+               Well, looks like I'm stuck here. Trouble is,
+               I don't know where here is.
+
+     She puts her head in her hands to rub away some of the soreness
+     from her fall. She looks over at the watchful little Ewok and
+     pats the log beside her.
+
+                              LEIA
+               Well, maybe you can help me. Come on, sit
+               down.
+
+     Wicket holds his spear up warily and growls at her like a puppy.
+     Leia pats the log again.
+
+                              LEIA
+               I promise I won't hurt you. Now come here.
+
+     More growls and squeaks from the little bear creature.
+
+                              LEIA
+               All right. You want something to eat?
+
+     She takes a scrap of food out of her pocket and offers it to him.
+     Wicket takes a step backward, then cocks his head and moves
+     cautiously toward Leia, chattering in his squeaky Ewok language.
+
+                              LEIA
+               That's right. Come on. Hmmm?
+
+     Sniffing the food curiously, the Ewok comes toward Leia and sits
+     on the log beside her. She takes off her helmet, and the little
+     creature jumps back, startled again. He runs along the log,
+     pointing his spear at her and chattering a blue streak. Leia
+     holds out the helmet to him.
+
+                              LEIA
+               Look, it's a hat. It's not gonna hurt you.
+               Look. You're a jittery little thing, aren't
+               you?
+
+     Reassured, Wicket lowers his spear and climbs back on the log,
+     coming to investigate the helmet. Suddenly his ears perk up and
+     he begins to sniff the air. He looks around warily, whispering
+     some Ewokese warning to Leia.
+
+                              LEIA
+               What is it?
+
+     Suddenly a laser bolt comes out of the foliage and explodes on
+     the log next to Leia. Leia and Wicket both roll backwards off the
+     log, hiding behind it. Leia holds her own laser gun ready, while
+     Wicket disappears underneath the log. Another shot, and still no
+     sight of anyone in the forest. Then Leia senses something and
+     turns to find a large IMPERIAL SCOUT standing over her with his
+     weapon pointed at her head. He reaches out his hand for her
+     weapon.
+
+                              SCOUT #l
+               Freeze!  Come on, get up!
+
+     She hands the weapon over, as a second scout emerges from the
+     foliage in front of the log.
+
+                              SCOUT #1
+               Go get your ride and take her back to base.
+
+                              SCOUT #2
+               Yes, sir.
+
+     The second scout starts toward his bike, as Wicket, crouched
+     under the log, extends his spear and hits the first scout on the
+     leg. The scout jumps and lets out an exclamation, and looks down
+     at Wicket, puzzled. Leia grabs a branch and knocks him out. She
+     dives for his laser pistol, and the second scout, now on his
+     bike, takes off. Leia fires away and hits the escaping bike,
+     causing it to crash into the first scout's bike, which flies end
+     over end and explodes. The forest is quiet once more. Wicket
+     pokes his fuzzy head up from behind the log and regards Leia with
+     new respect. He mumbles his awe. Leia hurries over, looking
+     around all the time, and motions the chubby little creature into
+     the dense foliage.
+
+                              LEIA
+               Come on, let's get outta here.
+
+     As they move into the foliage, Wicket takes the lead. He shrieks
+     and tugs at Leia to follow him.
+
+68   INT DEATH STAR - CORRIDOR TO EMPEROR'S TOWER                   68
+
+     Darth Vader walks down the corridor to the Emperor's Tower and
+     private elevator. The Emperor's private guard steps in Vader's
+     path.
+
+                              GUARD
+               Halt! The Emperor does not wish to be
+               disturbed at the moment.
+
+                              VADER
+               (raising his gloved hand to the two guards
+               and choking them with the Force)
+               The Emperor will see me, now!
+
+                              GUARD
+               (repeating Vader's command)
+               The Emperor will see you, now.
+
+69   INT EMPEROR'S TOWER - THRONE ROOM                              69
+
+     Two red Imperial Guards stand watch at the elevator as the door
+     opens to reveal Vader. Vader enters the eerie, foreboding throne
+     room. It appears to be empty. His footsteps echo as he approaches
+     the throne. He waits, absolutely still. The Emperor sits with his
+     back to the Dark Lord.
+
+                              EMPEROR
+               I told you to remain on the command ship.
+
+                              VADER
+               A small Rebel force has penetrated the shield
+               and landed on Endor.
+
+                              EMPEROR (no surprise)
+               Yes, I know.
+
+                              VADER (after a beat)
+               My son is with them.
+
+                              EMPEROR (very cool)
+               Are you sure?
+
+                              VADER
+               I have felt him, my Master.
+
+                              EMPEROR
+               Strange, that I have not. I wonder if your
+               feelings on this matter are clear, Lord
+               Vader.
+
+     Vader knows what is being asked.
+
+                              VADER
+               They are clear, my Master.
+
+                              EMPEROR
+               Then you must go to the Sanctuary Moon and
+               wait for them.
+
+                              VADER (skeptical)
+               He will come to me?
+
+                              EMPEROR
+               I have foreseen it. His compassion for you
+               will be his undoing. He will come to you and
+               then you will bring him before me.
+
+                              VADER (bows)
+               As you wish.
+
+     The Dark Lord strides out of the throne room.
+
+70   EXT FOREST CLEARING - LEIA'S CRASH SITE                        70
+
+     Han, Luke, Chewie, and the two droids are spread out as they move
+     through the heavy foliage near the clearing where we last saw
+     Leia. Luke finds Leia's helmet, picks it up with an expression of
+     concern.
+
+                              HAN (OS)
+               Luke! Luke!
+
+     Luke runs with the helmet to where Han has found the charred
+     wreckage of a speeder bike in the grass.
+
+                              THREEPIO
+               Oh, Master Luke.
+
+                              LUKE
+               There's two more wrecked speeders back there.
+               And I found this.
+
+     He tosses the helmet to Han.
+
+                              THREEPIO
+               I'm afraid that Artoo's sensors can find no
+               trace of Princess Leia.
+
+                              HAN (gravely)
+               I hope she's alright.
+
+     Chewbacca growls, sniffing the air, then, with a bark, pushes off
+     through the foliage.
+
+                              HAN
+               What, Chewie? What? Chewie!
+
+     The others rush to keep up with the giant Wookiee. As he scoots
+     along, Artoo whistles nervously.
+
+71   EXT FOREST - DENSE FOLIAGE                                     71
+
+     The group has reached a break in the undergrowth. Chewie walks up
+     to a tall stake planted in the ground. There is a dead animal
+     hanging from it.
+
+                              HAN
+               Hey, I don't get it.
+
+     The rest of the group joins the Wookiee around the stake.
+
+                              HAN (cont)
+               Nah, it's just a dead animal, Chewie.
+
+     Chewie can't resist. He reaches toward the meat.
+
+                              LUKE
+               Chewie, wa-wait!  Don't!
+
+     Too late. The Wookiee has already pulled the animal from the
+     stake. SPROOING! The group finds itself hanging upside down in an
+     Ewok net, suspended high above the clearing. Artoo lets out a
+     wild series of beeps and whistles, and Chewie howls his regret.
+     Their bodies are a jumble in the net. Han removes a Wookiee paw
+     from his mouth.
+
+                              HAN
+               Nice work. Great, Chewie! Great! Always
+               thinking with your stomach.
+
+                              LUKE
+               Will you take it easy? Let's just figure out
+               a way to get out of this thing. (trying to
+               free an arm) Han, can you reach my
+               lightsaber?
+
+                              HAN
+               Yeah, sure.
+
+     Artoo is at the bottommost point in the net. He extends his
+     cutting appendage and begins slicing at the net. Han is trying to
+     squeeze an arm past Threepio to get at Luke's lightsaber. The net
+     continues to spin.
+
+                              THREEPIO
+               Artoo, I'm not sure that's such a good idea.
+               It's a very long dro-o-op!!
+
+     Artoo has cut through and the entire group tumbles out of the
+     net, crashing to the ground. As they regain their senses and
+     sit up, they realize they are surrounded by dozens of Ewoks,
+     each brandishing a long spear.
+
+                              HAN
+               Wha--?  Hey!  Point that thing someplace
+               else.
+
+     Han pushes the spear wielded by TEEBO out of his face and a
+     second Ewok warrior comes up to argue with Teebo. The spear
+     returns to Han's face. He grabs it angrily and starts to go for
+     his laser pistol.
+
+                              HAN
+               Hey!
+
+                              LUKE
+               Han, don't. It'll be all right.
+
+     The Ewoks swarm through them and confiscate their weapons. Luke
+     lets them take his lightsaber. Chewie growls at the furry
+     critters.
+
+                              LUKE
+               Chewie, give 'em your crossbow.
+
+     Artoo and Threepio are just untangling themselves. Threepio gets
+     free of the net and sits up, rattled.
+
+                              THREEPIO
+               Oh, my head. Oh, my goodness!
+
+     When the Ewoks see Threepio, they let out a gasp and chatter
+     among themselves. Threepio speaks to them in their native tongue.
+     The Ewok nearest him drops his spear and prostrates himself
+     before the droid. In a moment, all the Ewoks have followed suit.
+     Chewie lets out a puzzled bark. Han and Luke regard the bowed
+     creatures in wonder. The Ewoks begin to chant at Threepio.
+
+                              LUKE
+               Do you understand anything they're saying?
+
+                              THREEPIO
+               Oh, yes, Master Luke!  Remember that I am
+               fluent in over six million forms of
+               communication.
+
+                              HAN
+               What are you telling them?
+
+                              THREEPIO
+               Hello, I think... I could be mistaken.
+               They're using a very primitive dialect.  But
+               I do believe they think I am some sort of god.
+
+     Chewbacca and Artoo think that's very funny. Han and Luke
+     exchange "what next?" looks.
+
+                              HAN
+               Well, why don't you use your divine influence
+               and get us out of this?
+
+                              THREEPIO
+               I beg your pardon, General Solo, but that
+               just wouldn't be proper.
+
+                              HAN
+               Proper?!
+
+                              THREEPIO
+               It's against my programming to impersonate a
+               deity.
+
+     Han moves toward Threepio threateningly.
+
+                              HAN
+               Why, you--
+
+     Several Ewoks' spears are thrust in Han's face at the affront to
+     their god. The Ewoks move in to protect their god and Han is
+     surrounded by a menacing circle of spears, all aimed at him. He
+     holds up his hands placatingly.
+
+                              HAN
+               My mistake. He's an old friend of mine.
+
+72   EXT FOREST - SERIES OF SHOTS                                   72
+
+     A procession of Ewoks winds through the ever-darkening forest.
+     Their prisoners - Han, Luke, Chewie, and Artoo - are tied to long
+     poles and wrapped in vines, cocoonlike.
+     Each pole is carried on the shoulders of several Ewoks. Behind
+     the captives, Threepio is carried on a litter, like a king, by
+     the remaining creatures.
+
+73   EXT FOREST WALKWAY - MOON FOREST                               73
+
+     The procession moves along a shaky, narrow, wooden walkway, high
+     in the giant trees. It stops at the end of the walkway, which
+     drops off into nothingness. On the other side of the abyss is a
+     village of mud huts and rickety walkways, attached to the giant
+     trees. The lead Ewok takes hold of a long vine and swings across
+     to the village square; the other Ewoks follow suit.
+
+74   EXT EWOK VILLAGE SQUARE                                        74
+
+     The procession winds its way into the village square. Mother
+     Ewoks gather their babies up and scurry into their huts at the
+     sight of the newcomers. The group stops before the largest hut.
+     Han, Luke, Chewie, and Artoo are still bound to their poles. Han
+     is placed on a spit above what looks like a barbecue pit and the
+     others are leaned against a tree nearby. Threepio's litter/throne
+     is gently placed near the pit. He watches with rapt fascination.
+     Han, Luke, and Chewie are less than fascinated.
+
+                              HAN
+               I have a really bad feeling about this.
+
+     Chewie growls his concern.
+
+     Suddenly all activity stops as LOGRAY, the tribal Medicine Man,
+     comes out of the big hut. He examines the captives carefully,
+     goes to join Threepio, whose throne has been placed on an
+     elevated platform. A larger, gray-haired Ewok, CHIEF CHIRPA, is
+     examining Luke's lightsaber with great curiosity.
+
+     Logray speaks to Threepio and the assemblage of fuzzy Ewoks,
+     pointing to the prisoners tied to the stakes. The Ewoks begin
+     filling the pit under Han with firewood.
+
+                              HAN
+               What did he say?
+
+                              THREEPIO
+               I'm rather embarrassed, General Solo, but it
+               appears you are to be the main course at a
+               banquet in my honor.
+
+     The drums start beating, and all the furry heads turn to the
+     large hut. Leia emerges, wearing an animal-skin dress. She sees
+     what's happening at the same moment the prisoners see her.
+
+                              HAN and LUKE
+               Leia!
+
+     As she moves toward them, the Ewoks block her way with raised
+     spears.
+
+                              LEIA
+               Oh!
+
+                              THREEPIO
+               Your Royal Highness.
+
+     Artoo and Chewie chime in with their welcome. Leia looks at the
+     assembled Ewoks and sighs.
+
+                              LEIA
+               But these are my friends. Threepio, tell them
+               they must be set free.
+
+     Threepio talks to Chirpa and Logray, who listen and shake their
+     heads negatively. The Medicine Man gestures toward the prisoners
+     and barks some orders. Several Ewoks jump up and pile more wood
+     on the barbecue with vigor. Leia trades frantic looks with Luke
+     and Han.
+
+                              HAN
+               Somehow, I got the feeling that didn't help
+               us very much.
+
+                              LUKE
+               Threepio, tell them if they don't do as you
+               wish, you'll become angry and use your magic.
+
+                              THREEPIO
+               But Master Luke, what magic? couldn't
+               possibly --
+
+                              LUKE
+               Just tell them.
+
+     Threepio speaks to the Ewoks. The Ewoks are disturbed. Logray
+     steps forward and challenges Threepio. Luke closes his eyes and
+     begins to concentrate.
+
+                              THREEPIO
+               You see, Master Luke; they didn't believe me.
+               Just...
+
+     Now the litter/throne, with Threepio sitting upon it, rises from
+     the ground. At first Threepio doesn't notice and keeps talking.
+
+                              THREEPIO
+               ... as I said they wouldn't. Wha-wha-what's
+               happening! Oh! Oh, dear! Oh!
+
+     The Ewoks fall back in terror from the floating throne. Now
+     Threepio begins to spin as though he were on a revolving stool,
+     with Threepio calling out in total panic at his situation.
+
+                              THREEPIO
+               Put me down! He-e-elp! Master Luke! Artoo!
+               Somebody, somebody, help! Master Luke, Artoo!
+               Artoo, quickly! Do something, somebody! Oh!
+               Ohhh!
+
+     Chief Chirpa yells orders to the cowering Ewoks. They rush up and
+     release the bound prisoners. Luke and Han enfold Leia in a group
+     embrace. Luke notices the spinning Threepio, with Artoo beeping
+     up at him, and slowly lowers the golden droid and the throne to
+     the ground. Logray orders the little droid cut down. Artoo
+     crashes to the ground. When the Ewoks set him upright, the little
+     droid is fighting mad. Artoo beeps a blue streak at the nearest
+     Ewok, and begins pursuing him, finally getting close enough to
+     zap him with an electric charge. The Ewok jumps two feet in the
+     air and runs away, screaming. A small group of Ewoks surround the
+     giant Wookiee, scratching their heads and marveling at his
+     height.
+
+                              THREEPIO
+               Oh, oh, oh, oh! Thank goodness.
+
+                              LUKE
+               Thanks, Threepio.
+
+                              THREEPIO (still shaken)
+               I...I never knew I had it in me.
+
+75   INT CHIEF'S HUT - COUNCIL OF ELDERS                            75
+
+     A glowing fire dances in the center of the spartan, low-ceilinged
+     room, creating a kaleidoscope of shadows on the walls. Along one
+     side, a group of ten Ewok elders flank Chief Chirpa, who sits on
+     his throne. The Rebels sit along the walls of the hut, with
+     Threepio between the two groups and Wicket and Teebo off to one
+     side.
+
+     Threepio is in the midst of a long, animated speech in the Ewok's
+     squeaky native tongue. The Ewoks listen carefully and
+     occasionally murmur comments to each other. Threepio points
+     several times at the Rebel group and pantomimes a short history
+     of the Galactic Civil War, mimicking the explosion and rocket
+     sounds, imitating Imperial walkers. Throughout the long account,
+     certain familiar names are distinguishable in English: Princess
+     Leia, Artoo, Darth Vader, Death Star, Jedi, Obi-Wan Kenobi. Artoo
+     begins beeping excitedly at Threepio.
+
+                              THREEPIO
+               Yes, Artoo. I was just coming to that.
+
+     Threepio continues with: Millennium Falcon, Cloud City, Vader,
+     Han Solo, carbonite, Sarlacc, bringing the history up to the
+     present time.
+
+     At the end of it, the Chief, Logray, and the elders confer, then
+     nod in agreement. The Chief stands and makes a pronouncement.
+     The drums begin to sound, and all the Ewoks stand with a great
+     cheer and screeches.
+
+                              HAN
+               What's going on?
+
+                              LEIA
+               I don't know.
+
+     Luke has been sharing the joy with smiling visage, but now
+     something passes like a dark cloud through his consciousness. The
+     others do not notice.
+
+                              THREEPIO
+               Wonderful! We are now a part of the tribe.
+
+     Several of the little teddy bears run up and hug the Rebels.
+
+                              HAN
+               Just what I always wanted.
+
+     Chewbacca is being enthusiastically embraced by an Ewok, while
+     Wicket clings to Han's leg.
+
+                              HAN (chuckles)
+               Well, short help is better than no help at
+               all, Chewie. (to Wicket) Thank you. Okay.
+
+                              THREEPIO
+               He says the scouts are going to show us the
+               quickest way to the shield generator.
+
+     Chewie barks. Luke has drifted to the back of the hut. Now he
+     wanders outside into the moonlight. Leia notices and follows.
+
+                              HAN
+               Good. How far is it? Ask him. We need some
+               fresh supplies, too. And try and get our
+               weapons back.
+
+     Han pulls Threepio back as he keeps trying to translate.
+
+                              HAN (cont)
+               And hurry up, will ya? I haven't got all day.
+
+76   EXT EWOK VILLAGE - NIGHT                                       76
+
+     The walkway is deserted now. The windows of the little huts glow
+     and flicker from the fires inside. The sounds of the forest fill
+     the soft night air. Luke has wandered away from the Chief's hut
+     and stands staring up at the Death Star. Leia finds him like
+     that.
+
+                              LUKE
+               Luke, what's wrong?
+
+     Luke turns and looks at her a long moment.
+
+                              LUKE
+               Leia... do you remember your mother? Your
+               real mother?
+
+                              LEIA
+               Just a little bit. She died when I was very
+               young.
+
+                              LUKE
+               What do you remember?
+
+                              LEIA
+               Just...images, really. Feelings.
+
+                              LUKE
+               Tell me.
+
+                              LEIA
+               (a little surprised at his insistence)
+               She was very beautiful. Kind, but...sad.
+               (looks up) Why are you asking me all this?
+
+     He looks away.
+
+                              LUKE
+               I have no memory of my mother. I never knew
+               her.
+
+                              LEIA
+               Luke, tell me. What's troubling you?
+
+                              LUKE
+               Vader is here...now, on this moon.
+
+                              LEIA (alarmed)
+               How do you know?
+
+                              LUKE
+               I felt his presence. He's come for me. He can
+               feel when I'm near. That's why I have to go.
+               (facing her) As long as I stay, I'm
+               endangering the group and our mission here.
+               (beat) I have to face him.
+
+     Leia is distraught, confused.
+
+                              LEIA
+               Why?
+
+     Luke moves close and his manner is gentle. And very calm.
+
+                              LUKE
+               He's my father.
+
+                              LEIA
+               Your father?
+
+                              LUKE
+               There's more. It won't be easy for you to
+               hear it, but you must. If I don't make it
+               back, you're the only hope for the Alliance.
+
+     Leia is very disturbed by this. She moves away, as if to deny it.
+
+                              LEIA
+               Luke, don't talk that way. You have a power
+               I--I don't understand and could never have.
+
+                              LUKE
+               You're wrong, Leia. You have that power too.
+               In time you'll learn to use it as I have. The
+               Force is strong in my family. My father has
+               it...I have it...and...my sister has it.
+
+     Leia stares into his eyes. What she sees there frightens her. But
+     she doesn't draw away. She begins to understand.
+
+                              LUKE
+               Yes. It's you Leia.
+
+                              LEIA
+               I know. Somehow...I've always known.
+
+                              LUKE
+               Then you know why I have to face him.
+
+                              LEIA
+               No! Luke, run away, far away. If he can feel
+               your presence, then leave this place. I wish
+               I could go with you.
+
+                              LUKE
+               No, you don't. You've always been strong.
+
+                              LEIA
+               But, why must you confront him?
+
+                              LUKE
+               Because...there is good in him. I've felt
+               it. He won't turn me over to the Emperor. I
+               can save him. I can turn him back to the good
+               side. I have to try.
+
+     They hold each other close and look at each other, brother and
+     sister.
+
+     Leia holds back her tears as Luke slowly lets her go and moves
+     away. He disappears onto the walkway that leads out of the
+     village. Leia, bathed in moonlight, watches him go as Han comes
+     out of the Chief's hut and comes over to her.
+
+     Leia is crying, her body trembling. He realizes only now that she
+     is crying.
+
+                              HAN
+               Hey, what's goin' on?
+
+     Leia attempts to stifle her sobs and wipes her eyes.
+
+                              LEIA
+               Nothing. I - just want to be alone for a
+               little while.
+
+                              HAN (angry)
+               Nothing?  Come on, tell me.  What's goin' on?
+
+     She looks up at him, struggling to control herself.
+
+                              LEIA
+               I...I can't tell you.
+
+                              HAN (loses his temper)
+               Did you tell Luke? Is that who you could tell?
+
+                              LEIA
+               I...
+
+                              HAN
+               Ahhh...
+
+     He starts to walk away, exasperated, then stops and walks back to
+     her.
+
+                              HAN
+               I'm sorry.
+
+                              LEIA
+               Hold me.
+
+     Han gathers her tightly in his protective embrace.
+
+77   EXT FOREST - IMPERIAL LANDING PLATFORM                         77
+
+     An Imperial shuttle floats down from the Death Star and lands
+     gracefully on the huge platform.
+
+     Now, an Imperial walker approaches the platform from the darkness
+     of the forest. The whole outpost - platform, walkers, military -
+     looks particularly offensive in the midst of this verdant beauty.
+
+78   EXT IMPERIAL LANDING PLATFORM - LOWER DECK                     78
+
+     Darth Vader walks down the ramp of the shuttle onto the platform,
+     into an elevator, and appears on a ramp on a lower level. He
+     walks toward another ramp exit and is met by two troopers and a
+     commander with Luke, in binders, at their center. The young Jedi
+     gazes at Vader with complete calm.
+
+                              COMMANDER
+               This is a Rebel that surrendered to us.
+               Although he denies it, I believe there may be
+               more of them, and I request permission to
+               conduct a further search of the area.
+
+     The commander extends his hand, revealing Luke's lightsaber.
+
+                              COMMANDER
+               He was armed only with this.
+
+     Vader looks at Luke, turns away and faces the commander, taking
+     the lightsaber from the commander's hand.
+
+                              VADER
+               Good work, Commander. Leave us. Conduct your
+               search and bring his companions to me.
+
+                              COMMANDER
+               Yes, my Lord.
+
+     The officer and troops withdraw. Vader and Luke are left standing
+     alone in the oddly tranquil beauty of the place. The sounds of
+     the forest filter in upon them.
+
+                              VADER
+               The Emperor has been expecting you.
+
+                              LUKE
+               I know, father.
+
+                              VADER
+               So, you have accepted the truth.
+
+                              LUKE
+               I've accepted the truth that you were once
+               Anakin Skywalker, my father.
+
+                              VADER (turning to face him)
+               That name no longer has any meaning for me.
+
+                              LUKE
+               It is the name of your true self. You've only
+               forgotten. I know there is good in you. The
+               Emperor hasn't driven it from you fully. That
+               is why you couldn't destroy me. That's why
+               you won't bring me to your Emperor now.
+
+     Vader looks down from Luke to the lightsaber in his own black-
+     gloved hand. He seems to ponder Luke's words.
+
+                              VADER (indicating lightsaber)
+               I see you have constructed a new lightsaber.
+
+     Vader ignites the lightsaber and holds it to examine its humming,
+     brilliant blade.
+
+                              VADER
+               Your skills are complete. Indeed, you are
+               powerful, as the Emperor has foreseen.
+
+     They stand for a moment, the Vader extinguishes the lightsaber.
+
+                              LUKE
+               Come with me.
+
+                              VADER
+               Obi-Wan once thought as you do.
+
+     Luke steps close to Vader, then stops. Vader is still.
+
+                              VADER
+               You don't know the power of the dark side. I
+               must obey my master.
+
+                              LUKE
+               I will not turn...and you'll be forced to
+               kill me.
+
+                              VADER
+               If that is your destiny.
+
+                              LUKE
+               Search your feelings, father. You can't do
+               this. I feel the conflict within you. Let go
+               of your hate.
+
+                              VADER
+               It is too late for me, son. The Emperor will
+               show you the true nature of the Force. He is
+               your master now.
+
+     Vader signals to some distant stormtroopers. He and Luke stand
+     staring at one another for a long moment.
+
+                              LUKE
+               Then my father is truly dead.
+
+79   EXT ENDOR - RIDGE OVERLOOKING SHIELD GENERATOR                 79
+
+     Han, Leia, Chewbacca, the droids, Wicket, and another Ewok scout,
+     PAPLOO, hide on a ridge overlooking the massive Imperial shield
+     generator. At the base of the generator is an Imperial landing
+     platform. Leia studies the installation.
+
+                              LEIA
+               The main entrance to the control bunker's on
+               the far side of that landing platform. This
+               isn't gonna be easy.
+
+                              HAN
+               Hey, don't worry. Chewie and me got into a
+               lot of places more heavily guarded than this.
+
+     Wicket and Paploo are chattering away in Ewok language. They
+     speak to Threepio.
+
+                              LEIA
+               What's he saying?
+
+                              THREEPIO
+               He says there's a secret entrance on the
+               other side of the ridge.
+
+80   EXT SPACE - REBEL FLEET                                        80
+
+     The vast fleet hangs in space near a blue planet. A giant Rebel
+     Star Cruiser is up at the front, but now the Millennium Flacon
+     roars up to a spot ahead of it, tiny in comparison.
+
+81   INT MILLENNIUM FALCON - COCKPIT                                81
+
+     Lando is in the pilot seat. His alien copilot, NIEN NUNB, takes
+     some getting used to in the familiar environs of the Falcon's
+     cockpit. Lando speaks into his comlink.
+
+                              LANDO
+               Admiral, we're in position. All fighters
+               accounted for.
+
+                              ACKBAR (VO)
+               Proceed with the countdown. All groups assume
+               attack coordinates.
+
+     Lando turns to his weird copilot.
+
+                              LANDO
+               Don't worry, my friends are down there.
+               They'll have that shield down on time...(to
+               himself) or this'll be the shortest offensive
+               of all time.
+
+     The copilot flips some switches and grunts an alien comment.
+
+                              ACKBAR (VO)
+               All craft, prepare to jump to hyperspace on
+               my mark.
+
+                              LANDO
+               All right. Stand by.
+
+     He pulls a lever, and the stars outside begin to streak.
+
+82   EXT SPACE - REBEL FLEET                                        82
+
+     We are treated to an awesome sight: first the Millennium Falcon,
+     then Ackbar's Star Cruiser, then, in large segments, the huge
+     fleet ROARS INTO HYPERSPACE. And disappears.
+
+83   EXT ENDOR - RIDGE OVERLOOKING CONTROL BUNKER                   83
+
+     Han, Leia, Chewie, the droids, and their two Ewok guides, Wicket
+     and Paploo, have reunited with the Rebel strike squad. The entire
+     group is spread through the thick undergrowth. Below them is the
+     BUNKER that leads into the generator. Four Imperial scouts, their
+     speeder bikes parked nearby, keep watch over the bunker entrance.
+     Chewie growls an observation, and Paploo chatters away to Han in
+     Ewok language.
+
+                              HAN
+               Back door, huh? Good idea.
+
+     Wicket and Paploo continue their Ewok conversation.
+
+                              HAN (cont)
+               It's only a few guards. This shouldn't be too
+               much trouble.
+
+                              LEIA
+               Well, it only takes one to sound the alarm.
+
+                              HAN (with self-confident grin)
+               Then we'll do it real quiet-like.
+
+     Threepio explains what is going on to Wicket and Paploo. The
+     Ewoks chatter a moment between themselves. Then Paploo jumps up
+     and scampers into the underbrush.
+
+     Threepio asks Wicket where Paploo went and is given a short
+     reply.
+
+                              THREEPIO
+               Oh! Oh, my. Uh, Princess Leia!
+
+                              LEIA
+               Quiet.
+
+                              THREEPIO
+               I'm afraid our furry companion has gone and
+               done something rather rash.
+
+                              LEIA
+               Oh, no.
+
+84   EXT BUNKER - ENTRANCE                                          84
+
+     Paploo has slipped out of the undergrowth near where the Imperial
+     scouts are lounging. He silently swings his furry ball of a body
+     onto one of the scout's speeder bikes and begins flipping
+     switches at random. Suddenly, the bike's engine fires up with a
+     tremendous ROAR. Paploo grins and continues flipping switches.
+     The scouts leap up in surprise.
+
+85   EXT RIDGE                                                      85
+
+     Han, Leia and company watch in distress. Chewie barks.
+
+                              HAN (sighs)
+               There goes our surprise attack.
+
+86   EXT BUNKER                                                     86
+
+     The Imperial scouts race toward Paploo just as his speeder zooms
+     into motion. Paploo hangs on by his paws and shoots away into the
+     forest.
+
+                              SCOUT
+               Look! Over there! Stop him!
+
+     Three of the Imperial scouts jump on their rocket bikes and speed
+     away in pursuit. The fourth watches them go from his post at the
+     door.
+
+87   EXT RIDGE                                                      87
+
+     Han, Leia, and Chewie exchange delighted looks.
+
+                              HAN
+               Not bad for a little furball. There's only
+               one left. You stay here. We'll take care of
+               this.
+
+     Han and the Wookiee nod at each other and slip down toward the
+     bunker. Threepio moves to stand next to Wicket and Artoo.
+
+                              THREEPIO
+               I have decided that we shall stay here.
+
+88   EXT FOREST                                                     88
+
+     Paploo sails through the trees, more lucky than in control. It's
+     scary, but he loves it. When the Imperial scouts pull within
+     sight behind him and begin firing laser bolts, he decides he's
+     had enough. As he rounds a tree, out of their sight, Paploo grabs
+     a vine and swings up into the trees. A moment later, the scouts
+     tear under him in pursuit of the still-flying, unoccupied bike.
+
+89   EXT BUNKER                                                     89
+
+     Han sneaks up behind the remaining Imperial scout, taps him on
+     the shoulder and lets the scout chase him behind the bunker into
+     the arms of the waiting Rebel strike team. Han returns to the
+     front, and taps out a pattern on the bunker door's control panel.
+     Everyone stands out of sight, police-style, as the door opens.
+     Han and Leia peek inside. No sign of life. The group enters the
+     bunker silently, leaving one lookout behind.
+
+90   INT DEATH STAR - EMPEROR'S THRONE ROOM                         90
+
+     The elevator opens. Vader and Luke enter the room alone. They
+     walk across the dark space to stand before the throne, father and
+     son side by side beneath the gaze of the Emperor. Vader bows to
+     his Master.
+
+                              EMPEROR
+               Welcome, young Skywalker. I have been
+               expecting you.
+
+     Luke peers at the hooded figure defiantly. The Emperor then looks
+     down at Luke's binders.
+
+                              EMPEROR
+               You no longer need those.
+
+     The Emperor motions ever so slightly with his finger and Luke's
+     binders fall away, clattering to the floor. Luke looks down at
+     his own hands, free now to reach out and grab the Emperor's neck.
+     He does nothing.
+
+                              EMPEROR
+               Guards, leave us.
+
+     The red-cloaked guards turn and disappear behind the elevator.
+
+                              EMPEROR (to Luke)
+               I'm looking forward to completing your
+               training. In time you will call me Master.
+
+                              LUKE
+               You're gravely mistaken. You won't convert me
+               as you did my father.
+
+     The Emperor gets down from his throne and walks up very close to
+     Luke. The Emperor looks into his eyes and, for the first time,
+     Luke can perceive the evil visage within the hood.
+
+                              EMPEROR
+               Oh, no, my young Jedi. You will find that it
+               is you who are mistaken...about a great
+               many things.
+
+                              VADER
+               His lightsaber.
+
+     Vader extends a gloved hand toward the Emperor, revealing Luke's
+     lightsaber. The Emperor takes it.
+
+                              EMPEROR
+               Ah, yes, a Jedi's weapon. Much like your
+               father's. By now you must know your father
+               can never be turned from the dark side. So
+               will it be with you.
+
+                              LUKE
+               You're wrong. Soon I'll be dead...and you
+               with me.
+
+     The Emperor laughs.
+
+                              EMPEROR
+               Perhaps you refer to the imminent attack of
+               your Rebel fleet.
+
+     Luke looks up sharply.
+
+                              EMPEROR
+               Yes...I assure you we are quite safe from
+               your friends here.
+
+     Vader looks at Luke.
+
+                              LUKE
+               Your overconfidence is your weakness.
+
+                              EMPEROR
+               Your faith in your friends is yours.
+
+                              VADER
+               It is pointless to resist, my son.
+
+     The Emperor turns to face Luke.
+
+                              EMPEROR (angry)
+               Everything that has transpired has done so
+               according to my design. (indicates Endor)
+               Your friends up there on the Sanctuary
+               Moon...
+
+     Luke reacts. The Emperor notes it.
+
+                              EMPEROR (cont)
+               ...are walking into a trap. As is your Rebel
+               fleet! It was I who allowed the Alliance to
+               know the location of the shield generator. It
+               is quite safe from your pitiful little band.
+               An entire legion of my best troops awaits
+               them.
+
+     Luke's look darts from the Emperor to Vader and, finally, to the
+     sword in the Emperor's hand.
+
+                              EMPEROR
+               Oh...I'm afraid the deflector shield will be
+               quite operational when your friends arrive.
+
+91   INT BUNKER - MAIN CONTROL ROOM                                 91
+
+     Han, Leia, Chewie, and the Rebel strike team storm through a door
+     and enter the main control room, taking all of the personnel
+     prisoner.
+
+                              HAN
+               All right! Up! Move! Come on! Quickly!
+               Quickly, Chewie.
+
+     The Rebel troops herd the generator controllers away from their
+     panels. Leia glances at one of the screens on the control panel.
+
+                              LEIA
+               Han! Hurry! The fleet will be here any
+               moment.
+
+                              HAN
+               Charges!  Come on, come on!
+
+     Outside, Threepio watches nervously in the bushes as several more
+     controllers and stormtroopers run into the bunker, leaving guards
+     at the door.
+
+                              THREEPIO (to Wicket)
+               Oh, my! They'll be captured!
+
+     Wicket chatters in Ewok language, and then takes off full steam
+     into the forest.
+
+                              THREEPIO
+               Wa-wait! Wait, come back! Artoo, stay with
+               me.
+
+     Inside the bunker, Han looks up from setting charges as an
+     Imperial commander enters.
+
+                              COMMANDER
+               Freeze! You Rebel scum.
+
+     Han and Leia spin, to find dozens of Imperial weapons trained on
+     them and their cohorts. A poised force of Imperial troops
+     surround them. Even more pour into the room, roughly disarming
+     the Rebel contingent. Han, Leia, and Chewie exchange looks.
+     They're helpless.
+
+92   EXT SPACE - ENDOR, DEATH STAR, REBEL FLEET                     92
+
+     The Death Star and its Sanctuary Moon hang distant in space as
+     the Rebel fleet comes out of hyperspace with an awesome roar. The
+     Millennium Falcon and several Rebel fighters are at the front as
+     the space armada bears down on its target.
+
+93   INT MILLENNIUM FALCON - COCKPIT                                93
+
+     Lando flips switches, checks his screen, and speaks into the
+     radio.
+
+                              LANDO
+               All wings report in.
+
+                              WEDGE
+               Red Leader standing by.
+
+                              GRAY LEADER
+               Gray Leader standing by.
+
+                              GREEN LEADER
+               Green Leader standing by.
+
+                              WEDGE
+               Lock S-foils in attack positions.
+
+94   INT REBEL STAR CRUISER - BRIDGE                                94
+
+     From the bridge of the Rebel Headquarters Frigate, Admiral Ackbar
+     watches the fighters massing outside his viewscreen.
+
+                              ACKBAR
+               May the Force be with us.
+
+95   INT MILLENNIUM FALCON - COCKPIT                                95
+
+     Lando looks worriedly at his alien copilot, Nien Nunb, who points
+     to the control panel and talks to Lando.
+
+                              LANDO
+               We've got to be able to get some kind of a
+               reading on that shield, up or down. Well, how
+               could they be jamming us if they don't know
+               if we're coming.
+
+     Lando shoots a concerned look out at the approaching Death Star
+     as the implications of what he's just said sink in. He hits a
+     switch on his comlink.
+
+                              LANDO
+               Break off the attack! The shield is still up.
+
+                              RED LEADER (VO)
+               I get no reading. Are you sure?
+
+                              LANDO
+               Pull up! All craft pull up!
+
+     The Falcon turns hard to the left. Out the window the stars and
+     the Death Star move off right.
+
+96   EXT SPACE - DEATH STAR SHIELD                                  96
+
+     The Falcon and the fighters of Red Squad veer off desperately to
+     avoid the unseen wall.
+
+97   INT REBEL STAR CRUISER - BRIDGE                                97
+
+     Alarms are screaming and lights flashing as the huge ship changes
+     course abruptly. Other ships in the fleet shoot by outside as the
+     armada tries to halt its forward momentum.
+
+                              ACKBAR
+               Take evasive action! Green Group, stick close
+               to holding sector MV-7.
+
+     A Mon Calamari controller turns away from his screen and calls
+     out to Ackbar, quite excited. The Admiral rushes over to the
+     controller.
+
+                              CONTROLLER
+               Admiral, we have enemy ships in sector 47.
+
+     On the screen can be seen the moon, Death Star, and the massive
+     Imperial fleet. Ackbar moves to the comlink.
+
+                              ACKBAR
+               It's a trap!
+
+                              LANDO (over comlink)
+               Fighters coming in.
+
+     There is much excitement on the bridge as the attack begins.
+     The Millennium Falcon and several squads of Rebel fighters head
+     into an armada of TIE fighters. The sky explodes as a fierce
+     dogfight ensues in and around the giant Rebel cruisers.
+
+                              REBEL PILOT
+               There's too many of them!
+
+                              LANDO
+               Accelerate to attack speed! Draw their fire
+               away from the cruisers.
+
+                              WEDGE
+               Copy, Gold Leader.
+
+     The battle continues around the giant cruisers.
+
+98   INT DEATH STAR - EMPEROR'S THRONE ROOM                         98
+
+     Through the round window behind the Emperor's throne can be seen
+     the distant flashes of the space battle in progress.
+
+                              EMPEROR
+               Come, boy. See for yourself.
+
+     The Emperor is sitting in his throne, with Vader standing at his
+     side. Luke moves to look through a small section of the window.
+
+                              EMPEROR
+               From here you will witness the final
+               destruction of the Alliance, and the end of
+               your insignificant Rebellion.
+
+     Luke is in torment. He glances at his lightsaber sitting on the
+     armrest of the throne. The Emperor watches him and smiles,
+     touches the lightsaber.
+
+                              EMPEROR
+               You want this, don't you? The hate is
+               swelling in you now. Take your Jedi weapon.
+               Use it. I am unarmed. Strike me down with it.
+               Give in to your anger. With each passing
+               moment, you make yourself more my servant.
+
+     Vader watches Luke in his agony.
+
+                              LUKE
+               No!
+
+                              EMPEROR
+               It is unavoidable. It is your destiny. You,
+               like your father, are now mine!
+
+99   EXT FOREST - GENERATOR BUNKER                                  99
+
+     Han, Leia, Chewie, and the rest of the strike team are led out of
+     the bunker by their captors. The surrounding area, deserted
+     before, is now crowded with two-legged Imperial walkers and
+     hundreds of Imperial troops. The situation looks hopeless.
+
+                              STORMTROOPER
+               All right, move it! I said move it! Go on!
+
+     From the undergrowth beyond the clearing comes a wild series of
+     beeps and whistles. And --
+
+                              THREEPIO
+               Hello! I say, over there! Were you looking
+               for me?
+
+                              BUNKER COMMANDER
+               Bring those two down here!
+
+                              STORMTROOPER
+               Let's go!
+
+     Artoo and Threepio are standing near one of the big trees. As six
+     Imperial stormtroopers rush over to take them captive, the two
+     droids duck out of sight behind the tree.
+
+                              THREEPIO
+               Well, they're on their way. Artoo, are you
+               sure this was a good idea?
+
+                              STORMTROOPER
+               Freeze! Don't move!
+
+                              THREEPIO
+               We surrender.
+
+     The stormtroopers come around the tree and find the two droids
+     waiting quietly to be taken. As the Imperial troops move to do
+     that, however, a band of Ewoks drops down from above and
+     overpowers them.
+
+                              THREEPIO
+               Ohhh! Stand back, Artoo.
+
+     In a nearby tree, an Ewok raises a horn to his lips and sounds
+     the EWOK ATTACK CALL. All hell breaks loose as hundreds of Ewoks
+     throw their fuzzy bodies into the fray against the assembled
+     stormtroopers and their awesome two-legged walkers.
+
+     Biker scouts dart about blasting Ewoks, only to be crushed by a
+     volley of rocks tossed by Ewoks from the trees above.
+
+     In the confusion of the battle, Han and Leia break away and dive
+     for the cover of the bunker door as explosions erupt around them.
+     Han goes to the bunker door control panel.
+
+                              LEIA
+               The code's changed. We need Artoo!
+
+                              HAN
+               Here's the terminal.
+
+                              LEIA (into comlink)
+               Artoo, where are you? We need you at the
+               bunker right away.
+
+     Artoo and Threepio are hiding behind a log as the battle rages
+     around them. Suddenly the stubby little astrodroid lets out a
+     series of whistles and shoots off across the battlefield.
+     Threepio, panicked, runs after him.
+
+                              THREEPIO
+               Going? What do you mean, you're going. But--
+               but going where, Artoo? No, what! Artoo! Oh,
+               this is no time for heroics. Come back!
+
+     Biker scouts race around and over the two droids, blasting away
+     at the little Ewoks as the furries scurry for cover.
+
+     A group of Ewoks have moved a primitive catapult into position.
+     They fire off a large boulder that hits one of the walkers. The
+     walker turns and heads for the catapult, blasting away with both
+     guns. The Ewoks abandon their weapons and flee in all directions.
+     Just as the walker moves in to stomp the catapult, Ewoks drop
+     vines restraining two huge logs that swing down and smash the
+     walker's head flat.
+
+     A line of Ewoks hang desperately to a vine that is hooked to a
+     walker's foot. As the walker moves along, the fuzzy creatures are
+     dragged behind.
+
+     Two speeder bikes chase Ewoks through the underbrush. As the
+     scouts round a tree, they are knocked off their bikes by a vine
+     tied between two trees.
+
+100  EXT SPACE                                                     100
+
+     The Falcon and other Rebel fighters are engaged in a ferocious
+     combat with Imperial TIE fighters, the battle raging around the
+     cruisers of the Rebel armada.
+
+101  INT MILLENNIUM FALCON - COCKPIT                               101
+
+     Lando is in radio communication with the pilots of the other
+     Rebel squads.
+
+                              LANDO
+               Watch yourself, Wedge! Three from above!
+
+                              WEDGE
+               Red Three, Red Two, pull in!
+
+                              RED TWO
+               Got it!
+
+                              RED THREE
+               Three of them coming in, twenty degrees!
+
+                              WEDGE
+               Cut to the left! I'll take the leader!
+               They're heading for the medical frigate.
+
+     Lando steers the Falcon through a complete flip, as his crew
+     fires at the TIEs from the belly guns.
+
+                              NAVIGATOR
+               Pressure's steady.
+
+     The copilot Nien Nunb chatters an observation.
+
+                              LANDO
+               Only the fighters are attacking.  I wonder
+               what those Star Destroyers are waiting for.
+
+102  EXT SPACE - IMPERIAL FLEET                                    102
+
+     The giant Imperial Star Destroyer waits silently some distance
+     from the battle. The Emperor's huge Super Star Destroyer rests in
+     the middle of the fleet.
+
+103  INT SUPER STAR DESTROYER - BRIDGE                             103
+
+     Admiral Piett and two fleet commanders watch the battle at the
+     huge window of the Super Star Destroyer bridge.
+
+                              COMMANDER
+               We're in attack position now, sir.
+
+                              PIETT
+               Hold here.
+
+                              COMMANDER
+               We're not going to attack?
+
+                              PIETT
+               I have my orders from the Emperor himself. He
+               has something special planned for them. We
+               only need to keep them from escaping.
+
+104  INT EMPEROR'S TOWER - THRONE ROOM                             104
+
+     The Emperor, Vader, and a horrified Luke watch the aerial battle
+     fireworks out the window and on the viewscreens. Another Rebel
+     ship explodes against the protective shield.
+
+                              EMPEROR
+               As you can see, my young apprentice, your
+               friends have failed. Now witness the
+               firepower of this fully armed and operational
+               battle station. (into comlink) Fire at will,
+               Commander.
+
+     Luke, in shock, looks out across the surface of the Death Star to
+     the Rebel fleet beyond.
+
+105  INT DEATH STAR - CONTROL ROOM                                 105
+
+     Controllers pull back on several switches. Commander Jerjerrod
+     stands over them.
+
+                              JERJERROD
+               Fire!
+
+106  INT DEATH STAR - BLAST CHAMBER                                106
+
+     A button is pressed, which switches on a panel of lights.
+     A hooded Imperial soldier reaches overhead and pulls a lever. A
+     huge beam of light emanates from a long shaft. Two stormtroopers
+     stand to one side at a control panel.
+
+107  EXT DEATH STAR                                                107
+
+     The giant laser dish on the completed half of the Death Star
+     begins to glow; Then a powerful beams shoots out toward the
+     aerial battle.
+
+108  EXT SPACE - AIR BATTLE                                        108
+
+     The air is thick with giant ships. In among them, Rebel X-wings
+     dogfight with Imperial TIE fighters. Now an enormous Rebel
+     cruiser is hit by the Death Star beam and is blown to dust.
+     The Millennium Falcon roars over CAMERA, followed closely by
+     several TIE fighters.
+
+109  INT MILLENNIUM FALCON - COCKPIT                               109
+
+     The ship is buffeted by the tremendous explosion of the Rebel
+     cruiser. Lando and his copilot are stunned by the sight of the
+     Death Star firepower.
+
+                              LANDO
+               That blast came from the Death Star! That
+               thing's operational! (into comlink) Home One,
+               this is Gold Leader.
+
+110  INT REBEL STAR CRUISER - BRIDGE                               110
+
+     Ackbar stands amid the confusion on the wide bridge and speaks
+     into the comlink.
+
+                              ACKBAR
+               We saw it. All craft prepare to retreat.
+
+                              LANDO
+               You won't get another chance at this,
+               Admiral.
+
+                              ACKBAR
+               We have no choice, General Calrissian. Our
+               cruisers can't repel firepower of that
+               magnitude.
+
+                              LANDO
+               Han will have that shield down. We've got to
+               give him more time.
+
+111  EXT FOREST - GENERATOR BUNKER                                 111
+
+     Artoo and Threepio make it to the door, as Han and Leia provide
+     cover fire.
+
+                              THREEPIO
+               We're coming!
+
+                              HAN
+               Come on! Come on!
+
+                              THREEPIO
+               Oh, Artoo, hurry!
+
+     The little droid moves to the terminal and plugs in his computer
+     arm. A large explosion hits near Artoo, knocking him head over
+     heels, finally landing on his feet. The stubby astrodroid's
+     head is spinning and smoldering. Suddenly there is a loud
+     SPROOING and Han and Leia turn around to see Artoo with all his
+     compartment doors open, and all of his appendages sticking out;
+     water and smoke spurt out of the nozzles in his body. Han rushes
+     to the terminal, as Threepio rushes to his wounded companion.
+
+                              THREEPIO
+               My goodness! Artoo, why did you have to be so
+               brave?
+
+                              HAN
+               Well, I suppose I could hotwire this thing.
+
+                              LEIA
+               I'll cover you.
+
+     Ewoks in handmade, primitive hanggliders drop rocks onto the
+     stormtroopers, dive-bombing their deadly adversaries.  One is hit
+     in the wing with laser fire and crashes.  A walker lumbers
+     forward, shooting laser blasts at frantic Ewoks running in all
+     directions.  Two Ewoks are struck down by laser blasts.  One
+     tries to awaken his friend, then realizes that he is dead.
+
+112  EXT SPACE - DEATH STAR                                        112
+
+     The Rebel fleet continues to be picked off, from one side by the
+     Death Star's deadly beam, from the other by the rampaging
+     Imperial Star Destroyers.
+
+113  INT MILLENNIUM FALCON - COCKPIT                               113
+
+     Lando steers the Falcon wildly through an obstacle course of
+     floating giants. He's been yelling into the comlink.
+
+                              LANDO (desperately)
+               Yes! I said closer! Move as close as you can
+               and engage those Star Destroyers at point-
+               blank range.
+
+                              ACKBAR
+               At that close range, we won't last long
+               against those Star Destroyers.
+
+                              LANDO
+               We'll last longer then we will against that
+               Death Star...and we might just take a few of
+               them with us.
+
+     The Rebel cruisers move very close to the Imperial Star
+     Destroyers and begin to blast away at point-blank range. Tiny
+     fighters race across the giant surfaces, against a backdrop of
+     laser fire.
+
+     The control tower of a Star Destroyer is under attack.
+
+                              REBEL PILOT
+               She's gonna blow!
+
+                              Y-WING PILOT
+               I'm hit!
+
+     The damaged Y-wing plummets toward the Star Destroyer, and
+     crashes into the control tower, exploding.
+
+114  INT EMPEROR'S TOWER - THRONE ROOM                             114
+
+     Out of the window and on the view screens, the Rebel fleet is
+     being decimated in blinding explosions of light and debris. But
+     in here there is no sound of battle. The Emperor turns to Luke.
+
+                              EMPEROR
+               Your fleet has lost. And your friends on the
+               Endor moon will not survive. There is no
+               escape, my young apprentice. The Alliance
+               will die...as will your friends.
+
+     Luke's eyes are full of rage. Vader watches him.
+
+                              EMPEROR
+               Good. I can feel your anger. I am
+               defenseless.  Take your weapon! Strike me
+               down with all your hatred, and your journey
+               towards the dark side will be complete.
+
+     Luke can resist no longer. The lightsaber flies into his hand. He
+     ignites it in an instant and swings at the Emperor. Vader's
+     lightsaber flashes into view, blocking Luke's blow before it can
+     reach the Emperor. The two blades spark at contact. Luke turns to
+     fight his father.
+
+115  EXT FOREST                                                    115
+
+     The battle rages on. Stormtroopers fire on Ewoks with
+     sophisticated weapons while their furry little adversaries sneak
+     up behind the Imperial troopers and bash them over the head with
+     large clubs.
+
+     A walker marches through the undergrowth blasting Ewoks as it
+     goes. An Ewok warrior gives the signal, and a pile of logs is cut
+     loose. The logs tumble under the walker's feet, causing it to
+     slip and slide until it finally topples over with a great crash.
+     A scout bike races past and is lassoed with a heavy vine. The
+     other end of the vine is tied to a tree, and the bike swings
+     around in ever-tightening circles until it runs out of rope and
+     crashes into the trees with a huge explosion.
+
+     Chewie swings on a vine to the roof of one of the walkers. Two
+     Ewoks cling to him. They land with a thud on the top of the
+     lurching machine, then hang on for dear life. One of the Ewoks
+     peeks through the window.
+
+                              WALKER PILOT #1
+               Look!
+
+                              PILOT #2
+               Get him off of there!
+
+     The walker pilot opens the hatch to see what's going on. He is
+     yanked out and tossed overboard before he can scream. The two
+     Ewoks jump into the cockpit and knock the second pilot
+     unconscious. The Ewoks are thrown violently as the mighty machine
+     careens out of control. Outside, Chewie is almost knocked
+     overboard; he sticks his head into the hatch with a series of
+     angry barks. The Ewoks are too busy and frightened to listen to
+     the Wookiee's complaint. Chewie slips inside the walker.
+     Chewbacca's walker moves through the forest, firing laser blasts
+     at unsuspecting stormtroopers, and destroying other Imperial
+     walkers. The Ewoks shout and cheer as the giant machine helps
+     turn the tide of the battle in their favor.
+
+116  EXT FOREST - GENERATOR BUNKER                                 116
+
+     Han works furiously at the control panel; wires spark as he
+     attempts to hotwire the door. He motions to Leia, who is blasting
+     away at some stormtroopers.
+
+                              HAN
+               I think I got it. I got it!
+
+     The three wires spark as the connection is made. With a LOUD
+     WHOOSH, a second blast door crashes down in front of the first.
+     Han frowns and turns back to the wires again. Leia exchanges
+     shots with stormtroopers in the bushes, then suddenly cries out
+     in pain, her shoulder hit by a laser blast.
+
+                              THREEPIO
+               Oh, Princess Leia, are you all right?
+
+                              HAN
+               Let's see.
+
+                              LEIA
+               It's not bad.
+
+                              STORMTROOPER (OS)
+               Freeze!
+
+     They freeze.
+
+                              THREEPIO
+               Oh, dear.
+
+                              STORMTROOPER
+               Don't move!
+
+     Leia holds her laser gun ready, behind Han, out of view of the
+     two stormtroopers moving toward them. Han and Leia's eyes lock;
+     the moment seems suspended in time.
+
+                              HAN
+               I love you.
+
+     Another shared look between them, as she smiles up at Han.
+
+                              LEIA
+               I know.
+
+                              STORMTROOPER
+               Hands up! Stand up!
+
+     Han stands up slowly and turns, revealing the gun in Leia's hand.
+     She disposes of the stormtroopers in a flash. As Han turns back
+     toward Leia, he looks up to see a giant walker approach and stand
+     before him, its deadly weapons aimed right at him.
+
+                              HAN (to Leia)
+               Stay back.
+
+     The hatch on top of the walker opens and Chewie sticks his head
+     out and barks triumphantly.
+
+                              HAN
+               Chewie!  Get down here!  She's wounded!  No,
+               wait....  I got an idea.
+
+117  INT EMPEROR'S TOWER - THRONE ROOM                             117
+
+     Luke and Vader are engaged in a man-to-man duel of lightsabers
+     even more vicious then the battle on Bespin. But the young Jedi
+     has grown stronger in the interim, and now the advantage shifts
+     to him. Vader is forced back, losing his balance, and is knocked
+     down the stairs. Luke stands at the top of the stairs, ready to
+     attack.
+
+                              EMPEROR (laughing)
+               Good.  Use your aggressive feelings, boy!  Let
+               the hate flow through you.
+
+     Luke looks momentarily toward the Emperor, then back to Vader,
+     and realizes he is using the dark side. He steps back, turns off
+     his lightsaber, and relaxes, driving the hate from his being.
+
+                              VADER
+               Obi-Wan has taught you well.
+
+                              LUKE
+               I will not fight you, father.
+
+     Vader walks back up the stairs to Luke.
+
+                              VADER
+               You are unwise to lower your defenses.
+
+     Vader attacks, forcing Luke on the defensive. The young Jedi
+     leaps in an amazing reverse flip up to the safety of the catwalk
+     overhead. Vader stands below him.
+
+                              LUKE
+               Your thoughts betray you, father. I feel the
+               good in you...the conflict.
+
+                              VADER
+               There is no conflict.
+
+                              LUKE
+               You couldn't bring yourself to kill me
+               before, and I don't believe you'll destroy me
+               now.
+
+                              VADER
+               You underestimate the power of the dark side.
+               If you will not fight, then you will meet
+               your destiny.
+
+     Vader throws the laser sword and it cuts through the supports
+     holding the catwalk, then returns to Vader's hand. Luke tumbles
+     to the ground in a shower of sparks and rolls out of sight under
+     the Emperor's platform. Vader moves to find him.
+
+                              EMPEROR (laughs)
+               Good.  Good.
+
+118  EXT SPACE - AIR BATTLE                                        118
+
+     The two armadas, like their sea-bound ancestors, blast away at
+     each other in individual point-blank confrontations. A Star
+     Destroyer explodes. The Rebel victor limps away, its back half
+     alive with a series of minor explosions. The Rebel cruiser
+     manages to move in next to a second Star Destroyer before it
+     explodes completely, taking the Imperial Star Destroyer with it.
+     The Falcon and several fighters attack one of the larger Imperial
+     ships.
+
+                              LANDO
+               Watch out. Squad at .06.
+
+                              REBEL PILOT
+               I'm on it, Gold Leader.
+
+                              WEDGE
+               Good shot, Red Two.
+
+                              LANDO
+               Now...come on, Han, old buddy. Don't let me
+               down.
+
+119  INT BUNKER - CONTROL ROOM                                     119
+
+     Controllers watch the main viewscreen on which a vague figure of
+     an Imperial walker pilot can be seen. There is a great deal of
+     static and interference.
+
+                              HAN/PILOT (VO)
+               It's over, Commander. The Rebels have been
+               routed. They're fleeing into the woods. We
+               need reinforcements to continue the pursuit.
+
+     The controllers cheer.
+
+                              CONTROL ROOM COMMANDER
+               Send three squads to help. Open the back
+               door.
+
+                              SECOND COMMANDER
+               Yes, sir.
+
+120  EXT FOREST - GENERATOR BUNKER                                 120
+
+     As the door to the bunker opens and the Imperial troops rush out,
+     they're surprised to find themselves surrounded by Rebels, their
+     weapons pointed at them. Ewoks holding bows and arrows appear on
+     the roof of the bunker. The Imperial troops throw down their guns
+     as Han and Chewie rush inside the bunker with explosive charges.
+
+121  INT BUNKER - CONTROL ROOM                                     121
+
+     Han, Chewie, and several troops rush into the control room and
+     plant explosive charges on the control panels and rush out.
+
+                              HAN
+               Throw me another charge.
+
+122  INT EMPEROR'S TOWER - THRONE ROOM                             122
+
+     Vader stalks the low-ceilinged area on the level below the
+     throne, searching for Luke in the semi-darkness, his lightsaber
+     held ready.
+
+                              VADER
+               You cannot hide forever, Luke.
+
+                              LUKE
+               I will not fight you.
+
+                              VADER
+               Give yourself to the dark side. It is the
+               only way you can save your friends. Yes, your
+               thoughts betray you. Your feelings for them
+               are strong. Especially for...
+
+     Vader stops and senses something. Luke shuts his eyes tightly, in
+     anguish.
+
+                              VADER
+               Sister! So...you have a twin sister. Your
+               feelings have now betrayed her, too. Obi-Wan
+               was wise to hide her from me. Now his failure
+               is complete. If you will not turn to the dark
+               side, then perhaps she will.
+
+                              LUKE
+               Never-r-r!
+
+     Luke ignites his lightsaber and screams in anger, rushing at his
+     father with a frenzy we have not seen before. Sparks fly as Luke
+     and Vader fight in the cramped area. Luke's hatred forces Vader
+     to retreat out of the low area and across a bridge overlooking a
+     vast elevator shaft. Each stroke of Luke's sword drives his
+     father further toward defeat.
+
+     The Dark Lord is knocked to his knees, and as he raises his sword
+     to block another onslaught, Luke slashes Vader's right hand off
+     at the wrist, causing metal and electronic parts to fly from the
+     mechanical stump. Vader's sword clatters uselessly away, over the
+     edge of the platform and into the bottomless shaft below. Luke
+     moves over Vader and holds the blade of his sword to the Dark
+     Lord's throat. The Emperor watches with uncontrollable, pleased
+     agitation.
+
+                              EMPEROR
+               Good! Your hate has made you powerful. Now,
+               fulfill your destiny and take your father's
+               place at my side!
+
+     Luke looks at his father's mechanical hand, then to his own
+     mechanical, black-gloved hand, and realizes how much he is
+     becoming like his father. He makes the decision for which he
+     has spent a lifetime in preparation. Luke steps back and hurls
+     his lightsaber away.
+
+                              LUKE
+               Never! I'll never turn to the dark side.
+               You've failed, Your Highness. I am a Jedi,
+               like my father before me.
+
+     The Emperor's glee turns to rage.
+
+                              EMPEROR
+               So be it...Jedi.
+
+123  EXT FOREST - GENERATOR BUNKER                                 123
+
+     Han and several of the fighters run out of the bunker and race
+     across the clearing.
+
+                              HAN
+               Move! Move!
+
+     A shock wave knocks them flat as the bunker explodes, followed by
+     a spectacular display as the huge shield-generator radar dish
+     explodes along with the bunker.
+
+124  INT REBEL STAR CRUISER - BRIDGE                               124
+
+     Ackbar, sitting in his control chair, speaks into the radio.
+
+                              ACKBAR
+               The shield is down! Commence attack on the
+               Death Star's main reactor.
+
+                              LANDO
+               We're on our way. Red Group, Gold Group, all
+               fighters follow me. (laughs) Told you they'd
+               do it!
+
+     The Falcon, followed by several smaller Rebel fighters, heads
+     toward the unfinished superstructure of the Death Star.
+
+125  INT EMPEROR'S TOWER - THRONE ROOM                             125
+
+     Luke stands still, as the Emperor reaches the bottom of the
+     stairs. The Emperor's laughter has turned to anger. He raises his
+     arms toward Luke.
+
+                              EMPEROR
+               If you will not be turned, you will be
+               destroyed.
+
+     Blinding bolts of energy, evil lightning, shoot from the
+     Emperor's hands at Luke. Even in his surprise, the young Jedi
+     tries to use the Force to deflect them. At first he is half
+     successful, but after a moment the bolts of energy are coming
+     with such speed and power the young Jedi shrinks before them, his
+     knees buckling. The wounded Vader struggles to his feet, and
+     moves to stand at his master's side.
+
+                              EMPEROR
+               Young fool...only now, at the end, do you
+               understand.
+
+     Luke is almost unconscious beneath the continuing assault of the
+     Emperor's lightning. He clutches a canister to keep from falling
+     into the bottomless shaft as the bolts tear through him.
+
+                              EMPEROR
+               Your feeble skills are no match for the power
+               of the dark side. You have paid the price for
+               your lack of vision.
+
+     Luke writhes on the floor in unbearable pain, reaching weakly up
+     toward where Vader stands watching.
+
+                              LUKE (groans)
+               Father, please. Help me.
+
+     Again Vader stands, watching Luke. He looks at his master, the
+     Emperor, then back to Luke on the floor.
+
+                              EMPEROR
+               Now, young Skywalker...you will die.
+
+     Although it would not have seemed possible, the outpouring of
+     bolts from the Emperor's fingers actually increases in intensity,
+     the sound screaming through the room. Luke's body writhes in
+     pain.
+
+     Vader grabs the Emperor from behind, fighting for control of the
+     robed figure despite the Dark Lord's weakened body and gravely
+     weakened arm. The Emperor struggles in his embrace, his bolt-
+     shooting hands now lifted high, away from Luke. Now the white
+     lightning arcs back to strike at Vader. He stumbles with his load
+     as the sparks rain off his helmet and flow down over his black
+     cape. He holds his evil master high over his head and walks to
+     the edge of the abyss at the central core of the throne room. With
+     one final burst of his once awesome strength, Darth Vader hurls
+     the Emperor's body into the bottomless shaft.
+
+     The Emperor's body spins helplessly into the void, arcing as it
+     falls into the abyss. Finally, when the body is far down the
+     shaft, it explodes, creating a rush of air through the room.
+     Vader's cape is whipped by the wind and he staggers, and
+     collapses toward the bottomless hole. Luke crawls to his father's
+     side and pulls him away from the edge of the abyss to safety.
+     Both the young Jedi and the giant warrior are too weak to move.
+
+126  EXT/INT - SPACE BATTLE - FIGHTER AND DEATH STAR               126
+
+     Rebel fighters follow the Falcon across the surface of the Death
+     Star to the unfinished portion, where they dive into the super-
+     structure of the giant battle station, followed by many TIE
+     fighters.
+
+                              WEDGE
+               I'm going in.
+
+                              LANDO
+               Here goes nothing.
+
+     Three X-wings lead the chase through the ever-narrowing shaft,
+     followed by the Falcon and four other fighters, plus TIE fighters
+     who continually fire at the Rebels. Lights reflect off the
+     pilot's faces as they race through the dark shaft.
+
+                              LANDO
+               Now lock onto the strongest power source. It
+               should be the power generator.
+
+                              WEDGE
+               Form up. And stay alert. We could run out of
+               space real fast.
+
+     The fighters and the Falcon race through the tunnel, still
+     pursued by the TIE fighters. One of the X-wings is hit from
+     behind and explodes.
+
+                              LANDO
+               Split up and head back to the surface. See if
+               you can get a few of those TIE fighters to
+               follow you.
+
+                              PILOT
+               Copy, Gold Leader.
+
+     The Rebel ships peel off pursued by three of the TIE's, while
+     Lando and Wedge continue through the main tunnel. It narrows, and
+     the Falcon scrapes the side dangerously. Two other TIE fighters
+     continue to blast away at them.
+
+                              LANDO
+               That was too close.
+
+     Nien Nunb agrees. The battle between the Rebel and Imperial fleet
+     rages on. Several cruisers fire at the giant Super Star
+     Destroyer.
+
+127  INT REBEL STAR CRUISER - BRIDGE                               127
+
+                              ACKBAR
+               We've got to give those fighters more time.
+               Concentrate all fire on that Super Star
+               Destroyer.
+
+     X-wings pilots head across the surface of the huge battleship.
+
+128  INT VADER'S STAR DESTROYER - BRIDGE                           128
+
+     Admiral Piett and a commander stand at the window, looking out to
+     the battle. They look concerned.
+
+                              CONTROLLER
+               Sir, we've lost our bridge deflector shield.
+
+                              PIETT
+               Intensify the forward batteries. I don't want
+               anything to get through.
+
+     The commander is looking out of the window where a damaged Rebel
+     fighter is out of control and heading directly toward the bridge.
+
+                              PIETT
+               Intensify forward firepower!
+
+                              COMMANDER
+               It's too late!
+
+     The Rebel pilot screams as his ship hits the Star Destroyer,
+     causing a huge explosion. The giant battle ship loses control,
+     crashes into the Death Star, and explodes.
+
+129  INT REBEL STAR CRUISER - BRIDGE                               129
+
+     There is excitement on the bridge as the battle rages on all
+     sides. They cheer as the giant Star Destroyer blows up.
+
+130  INT DEATH STAR - MAIN DOCKING BAY                             130
+
+     Chaos. For the first time, the Death Star is rocked by explosions
+     as the Rebel fleet, no longer backed against a wall, zooms over,
+     unloading a heavy barrage. Imperial troops run in all directions,
+     confused and desperate to escape.
+
+     In the midst of this uproar, Luke is trying to carry the enormous
+     deadweight of his father's weakening body toward an Imperial
+     shuttle. Finally, Luke collapses from the strain. The explosions
+     grow louder as Vader draws him closer.
+
+                              VADER (a whisper)
+               Luke, help me take this mask off.
+
+                              LURE
+               But you'll die.
+
+                              VADER
+               Nothing can stop that now. Just for once...
+               let me look on you with my own eyes.
+
+     Slowly, hesitantly, Luke removes the mask from his father's face.
+     There beneath the scars is an elderly man. His eyes do not focus.
+     But the dying man smiles at the sight before him.
+
+                              ANAKIN (very weak)
+               Now...go, my son. Leave me.
+
+                              LUKE
+               No. You're coming with me. I can't leave you
+               here. I've got to save you.
+
+                              ANAKIN
+               You already have, Luke. You were right about
+               me. Tell your sister...you were right.
+
+                              LUKE
+               Father... I won't leave you.
+
+     Darth Vader, Anakin Skywalker...Luke's father, dies.
+     A huge explosion rocks the docking bay. Slowly, Luke rises and,
+     half carrying, half dragging the body of his father, stumbles
+     toward a shuttle.
+
+131  EXT DEATH STAR                                                131
+
+     The Millennium Falcon leads a swerving bomb run through the
+     immense superstructure of the half-built Death Star. The Rebel
+     Star Cruisers outside continually bombard the huge station. And
+     each direct hit is answered by resonating, chain-reaction
+     explosions within the station itself.
+
+132  INT MILLENNIUM FALCON - COCKPIT AND GUN PORTS                 132
+
+     Lando's crew fires away at the pursuing TIE fighters as the
+     dashing Baron of Bespin and his alien copilot home in on the main
+     reactor shaft. It is awesome. A lone X-wing is just in front of
+     the Falcon.
+
+                              WEDGE
+               There it is!
+
+                              LANDO
+               All right, Wedge. Go for the power regulator
+               on the north tower.
+
+                              WEDGE
+               Copy, Gold Leader. I'm already on my way out.
+
+     The X-wing heads for the top of the huge reactor and fires
+     several proton torpedoes at the power regulator, causing a series
+     of small explosions.
+
+     The Falcon heads for the main reactor, and when it is dangerously
+     close, Lando fires the missiles, which shoot out of the Falcon
+     with a powerful roar, and hit directly at the center of the main
+     reactor.
+
+     He maneuvers the Falcon out of the winding superstructure just
+     ahead of the continuing chain of explosions.
+
+133  INT REBEL STAR CRUISER - BRIDGE                               133
+
+     Ackbar and other Mon Calamari lean on the railing of the bridge,
+     watching the large screen showing the Death Star in the main
+     briefing room.
+
+                              ACKBAR
+               Move the fleet away from the Death Star.
+
+134  EXT DEATH STAR                                                134
+
+     An Imperial shuttle, with Luke alone in the cockpit, rockets out
+     of the main docking bay as that entire section of the Death Star
+     is blown away. But as Luke pilots toward the safety of the
+     Sanctuary moon, his thoughts - enhanced by the Force - turn to
+     his friends aboard the Millennium Falcon.
+
+     The Falcon flies at top speed, with a single X-wing as escort,
+     over the endless surface of the Death Star. A series of
+     explosions within the superstructure follow, then swiftly
+     overtake the small craft as it races for an exit.
+
+135  INT MILLENNIUM FALCON - COCKPIT                               135
+
+     Lando turns to Nien Nunb and shakes his head.
+
+                              LANDO (into comlink)
+               Wedge, I don't think we're going to make it.
+
+                              WEDGE (VO)
+               You'll make it. Just follow me Gold Leader.
+
+                              LANDO (to himself)
+               I promised to return his ship without a
+               scratch...I sure hope that old pirate
+               forgives me.
+
+135A EXT DEATH STAR                                               135A
+
+     An X-wing, piloted by Wedge Antilles, races out of the exploding
+     superstructure and whizzes toward the Sanctuary Moon. But the
+     Millennium Falcon is not fast enough as it explodes with the
+     Death Star in a supernova of glory.
+
+136  EXT ENDOR FOREST                                              136
+
+     Han and Leia, Chewie, the droids, the Rebel troops, and the Ewoks
+     all look to the sky as the Death Star reveals itself in a final
+     flash of self-destruction. All except Han cheer, as the thirty-
+     year-old starship pilot feels a deep personal loss.
+
+                              HAN (whispering to himself)
+               Lando...
+
+                              THREEPIO
+               (misinterpreting Han's reference)
+               They did it!
+
+     Han looks down from the sky to Leia, a look of sorrow and regret
+     on his face. He knows he will never see the Falcon and Lando
+     again. His thoughts turn to Leia, as she continues to look at the
+     sky, watching for Luke.
+
+137  EXT ENDOR FOREST - NIGHT                                      137
+
+     Luke sets a torch to the logs stacked under a funeral pyre where
+     his father's body lies, again dressed in black mask and helmet.
+     He stands, watching sadly, as the flames leap higher to consume
+     Darth Vader -- Anakin Skywalker.
+
+     In the sky above, fireworks explode and Rebel fighters zoom above
+     the forest.
+
+138  EXT EWOK VILLAGE SQUARE - NIGHT                               138
+
+     A huge bonfire is the centerpiece of a wild celebration. Rebels
+     and Ewoks rejoice in the warm glow of firelight, drums beating,
+     singing, dancing, and laughing in the communal language of
+     victory and liberation.
+
+     Lando runs in and is enthusiastically hugged by Han and Chewie.
+     Then, finally, Luke arrives and the friends rush to greet and
+     embrace him. They stand close, this hardy group, taking comfort
+     in each other's touch, together to the end.
+
+     Rebels and Ewoks join together in dancing and celebration. The
+     original group of adventurers watch from the sidelines. Only Luke
+     seems distracted, alone in their midsts, his thoughts elsewhere.
+     He looks off to the side and sees three shimmering, smiling
+     figures at the edge of the shadows: Ben Kenobi, Yoda, and Anakin
+     Skywalker.
+
+                              FADE OUT
+
+                     END CREDITS OVER STAR FIELD
+
+
+
+
+THE END


+
+
+Found on
INFlow Screenplay Repository + + + + diff --git a/Text_files/StarWars_EpisodeV_script.txt b/Text_files/StarWars_EpisodeV_script.txt new file mode 100644 index 0000000..515abfe --- /dev/null +++ b/Text_files/StarWars_EpisodeV_script.txt @@ -0,0 +1,5012 @@ + + STAR WARS + + Episode V + + THE EMPIRE STRIKES BACK + + Script adaptation by + Lawrence Kasdan and Leigh Brackett + from a story by + George Lucas + + LUCASFILM LTD. + + + ---------------------- + + +A long time ago, in a galaxy far, far, away... + + + It is a dark time for the Rebellion. Although the Death Star has +been destroyed, Imperial troops have driven the Rebel forces from +their hidden base and pursued them across the galaxy. + Evading the dreaded Imperial Starfleet, a group of freedom fighters +led by Luke Skywalker has established a new secret base on the remote +ice world of Hoth. + The evil lord Darth Vader, obsessed with finding young Skywalker, +has dispatched thousands of remote probes into the far reaches of +space... + + +EXTERIOR: GALAXY -- PLANET HOTH + + A Star Destroyer moves through space, releasing Imperial probe + robots from its underside. + One of these probes zooms toward the planet Hoth and lands + on its ice-covered surface. An explosion marks the point of + impact. + +EXTERIOR: HOTH -- METEORITE CRATER -- SNOW PLAIN -- DAY + + A weird mechanical sound rises above the whining of the + wind. A strange probe robot, with several extended sensors, + emerges from the smoke-shrouded crater. The ominous mechanical + probe floats across the snow plain and disappears into the + distance. + +EXTERIOR: PLAIN OF HOTH -- DAY + + A small figure gallops across the windswept ice slope. The + bundled rider is mounted on a large gray snow lizard, a + Tauntaun. Curving plumes of snow rise from beneath the + speeding paws of the two-legged beast. + The rider gallops up a slope and reins his lizard to a + stop. Pulling off his protective goggles, Luke Skywalker + notices something in the sky. He takes a pair of + electrobinoculars from his utility belt and through them sees + smoke rising from where the probe robot has crashed. + The wind whips at Luke's fur-lined cap and he activates a + comlink transmitter. His Tauntaun shifts and moans nervously + beneath him. + +LUKE: (into comlink) Echo Three to Echo Seven. Han, old buddy, do you +read me? + After a little static a familiar voice is heard. + +HAN: (over comlink) Loud and clear, kid. What's up? + +LUKE: (into comlink) Well, I finished my circle. I don't pick up any +life readings. + +HAN: (over comlink) There isn't enough life on this ice cube to fill a +space cruiser. The sensors are placed. I'm going back. + +LUKE: (into comlink) Right. I'll see you shortly. There's a meteorite +that hit the ground near here. I want to check it out. It won't take +long. + + Luke clicks off his transmitter and reins back on his + nervous lizard. He pats the beast on the head to calm it. + +LUKE: Hey, steady girl. What's the matter? You smell something? + + Luke takes a small device from his belt and starts to + adjust it when suddenly a large shadow falls over him from + behind. He hears a monstrous howl and turns to see an eleven- + foot-tall shape towering over him. It is a Wampa Ice Creature, + lunging at him ferociously. + +LUKE: Aaargh! + + Luke grabs for his pistol, but is hit flat in the face by a + huge white claw. He falls unconscious into the snow and in a + moment the terrified screams of the Tauntaun are cut short by + the horrible snap of a neck being broken. + The Wampa Ice Creature grabs Luke by one ankle and drags + him away across the frozen plain. + +EXTERIOR: HOTH -- REBEL BASE ENTRANCE -- DAY + + A stalwart figure rides his Tauntaun up to the entrance + of an enormous ice cave. + +INTERIOR: HOTH -- REBEL BASE -- MAIN HANGAR DECK + + Rebel troopers rush about unloading supplies and otherwise + securing their new base. The rider, Han Solo, swings off his + lizard and pulls off his goggles. + He walks into the main hangar deck toward the Millennium + Falcon, which is parked among several fighters. Mechanics, R2 + units, and various other droids hurry about. Han stops at the + Millennium Falcon where his Wookiee copilot, Chewbacca, is + welding on a central lifter. Chewie stops his work and lifts + his face shield, growling an irritated greeting to his boss. + +HAN: Chewie! + + The Wookiee grumbles a reply. + +HAN: All right, don't lose your temper. I'll come right back and give +you a hand. + + Chewbacca puts his mask back on and returns to his welding + as Han leaves. + +INTERIOR: HOTH -- REBEL BASE -- COMMAND CENTER + + A makeshift command center has been set up in a blasted area + of thick ice. The low-ceilinged room is a beehive of activity. + Controllers, troops, and droids move about setting up + electronic equipment and monitoring radar signals. + General Rieekan straightens up from a console at Han's + approach. + +RIEEKAN: Solo? + +HAN: No sign of life out there, General. The sensors are in place. +You'll know if anything comes around. + +RIEEKAN: Commander Skywalker reported in yet? + +HAN: No. He's checking out a meteorite that hit near him. + +RIEEKAN: (indicates radar screen) With all the meteor activity in this +system, it's going to be difficult to spot approaching ships. + + Taking a deep breath, Han blurts out what is on his mind. + +HAN: General, I've got to leave. I can't stay anymore. + + Princess Leia, standing at a console nearby, is dressed in a + short white combat jacket and pants. Her hair is brained and + tied across her head in a Nordic fashion. She overhears their + conversation and seems somewhat distressed. + +RIEEKAN: I'm sorry to hear that. + +HAN: Well, there's a price on my head. If I don't pay off Jabba the +Hut, I'm a dead man. + +RIEEKAN: A death mark's not an easy thing to live with. You're a good +fighter, Solo. I hate to lose you. + +HAN: Thank you, General. + + He turns to Leia as Rieekan moves away. + +HAN: (with feeling) Well, Your Highness, I guess this is it. + +LEIA: That's right. + + Leia is angry. Han sees she has no warmth to offer him. He + shakes his head and adopts a sarcastic tone. + +HAN: (cooly) Well, don't get all mushy on me. So long, Princess. + + Han walks away into the quiet corridor adjoining the + command center. Leia stews a moment, then hurries after him. + +INTERIOR: HOTH -- REBEL BASE -- ICE CORRIDOR + +LEIA: Han! + + Han stops in the corridor and turns to face Leia. + +HAN: Yes, Your Highnessness? + +LEIA: I thought you decided to stay. + +HAN: Well, the bounty hunter we ran into on Ord Mantell changed my +mind. + +LEIA: Han, we need you! + +HAN: We? + +LEIA: Yes. + +HAN: Oh, what about you need? + +LEIA: (mystified) I need? I don't know what you're talking about. + +HAN: (shakes his head, fed up) You probably don't. + +LEIA: And what precisely am I supposed to know? + +HAN: Come on! You want me to stay because of the way you feel about +me. + +LEIA: Yes. You're a great help to us. You're a natural leader... + +HAN: No! That's not it. Come on. Aahhh -- uh huh! Come on. + + Leia stares at him, understanding, then laughs. + +LEIA: You're imagining things. + +HAN: Am I? Then why are you following me? Afraid I was going to leave +without giving you a goodbye kiss? + +LEIA: I'd just as soon kiss a Wookiee. + +HAN: I can arrange that. You could use a good kiss! + + Angrily, Han strides down the corridor as Leia stares after + him. + +INTERIOR: HOTH -- REBEL BASE -- ANOTHER ICE CORRIDOR + + A familiar stream of beeps and whistles herald the approach + of Artoo-Detoo and See-Threepio, who appear around a corner + and move along an ice wall toward the main hangar. + +THREEPIO: Don't try to blame me. I didn't ask you to turn on the +thermal heater. I merely commented that it was freezing in the +princess's chamber. But it's supposed to be freezing. How are we going +to dry out all her clothes? I really don't know. + + Artoo beeps a stream of protesting whistles. + +THREEPIO: Oh, switch off. + +INTERIOR: HOTH -- REBEL BASE -- MAIN HANGAR DECK + + The two robots stop at Han Solo's space freighter. Han and + Chewie are struggling with their central lifters. + +HAN: (to Chewie) Why do you take this apart now? I'm trying to get us +out of here and you pull both of these. + + Chewie grumbles in irritation. + +THREEPIO: Excuse me, sir. + +HAN: (to Chewie) Put them back together right now. + +THREEPIO: Might I have a word with you, please? + +HAN: What do you want? + +THREEPIO: Well, it's Princess Leia, sir. She's been trying to get you +on the communicator. + +HAN: I turned it off. I don't want to talk to her. + +THREEPIO: Oh. Well, Princess Leia is wondering about Master Luke. He +hasn't come back yet. She doesn't know where he is. + +HAN: I don't know where he is. + +THREEPIO: Nobody knows where he is. + +HAN: What do you mean, "nobody knows"? + + Han glances at the fading light at the entrance of the ice + cave as night slowly begins to fall on the planet. + +THREEPIO: Well, uh, you see... + + Han jumps down off the lift, as Threepio follows him. + +HAN: Deck Officer. Deck Officer! + +THREEPIO: Excuse me, sir. Might I inqu-... + + Han abruptly puts his hand over Threepio's mouth as the + deck officer approaches. + +DECK OFFICER: Yes, sir? + +HAN: Do you know where Commander Skywalker is? + +DECK OFFICER: I haven't seen him. It's possible he came in through the +south entrance. + +HAN: It's possible? Why don't you go find out? It's getting dark out +there. + +DECK OFFICER: Yes, sir. + + The deck officer leaves hurriedly, as Han takes his hand + off Threepio's mouth. + +THREEPIO: Excuse me, sir. Might I inquire what's going on? + +HAN: Why not? + +THREEPIO: Impossible man. Come along, Artoo, lets find Princess Leia. +Between ourselves, I think Master Luke is in considerable danger. + +INTERIOR: HOTH -- REBEL BASE -- MAIN ICE TUNNEL + + The deck officer and his assistant hurry toward Han as he + enters the tunnel. + +DECK OFFICER: Sir, Commander Skywalker hasn't come in through the +south entrance. He might have forgotten to check in. + +HAN: Not likely. Are the speeders ready? + +DECK OFFICER: Not yet. We're having some trouble adapting them to the +cold. + +HAN: Then we'll have to go out on Tauntauns. + +DECK OFFICER: Sir, the temperature's dropping too rapidly. + +HAN: That's right. And my friends out in it. + +ASSISTANT OFFICER: I'll cover sector twelve. Have com-control set +screen alpha. + + Han pushes through the troops and mounts a Tauntaun. + +DECK OFFICER: Your Tauntaun'll freeze before you reach the first +marker. + +HAN: Then I'll see you in hell! + + Han maneuvers his mount out of the cave and races into the + dark bitter night. + +EXTERIOR: HOTH -- ICE GORGE -- DUSK + + The jagged face of a huge ice wall sits gloomily in the dim + twilight of a Hoth day. Luke hangs upside down, ankles frozen + into icy stalactites, his extended arms within a foot of the + snow floor. One side of his face is covered in a dried mask of + frozen blood. He opens his eyes as a chilling moan of the + hideous ice creature echoes off the gorge walls. Luke pulls + himself up, grabs hold of his ankles, and futilely tries to + unfasten the throngs. + Exhausted, he drops back into his hanging position. As he + hangs there, he spies his lightsaber lying near a pile of his + discarded gear, about three feet out of reach. + He focuses on the saber and, as his hand strains toward the + weapon, he squeezes his eyes tight in concentration. + Just as the ice creature looms over Luke, the lightsaber + jumps into Luke's hand. + The young warrior instantly ignites his sword, swinging up, + and cuts himself loose from the ice. He flops to the snow in a + heap. The startled creature moves back, his giant yellow eyes + blinking. Luke scrambles to his feet. He swings his lightsaber + and the beast screams in pain. + +EXTERIOR: HOTH -- ENTRANCE TO ICE GORGE -- DUSK + + Luke staggers out of the gorge into the dark and snowy + twilight. Weak and exhausted, he stumbles down a snow bank. + +EXTERIOR: HOTH -- SNOW PLAIN -- DUSK + + A small, lone figure riding a Tauntaun races through the + hostile vastness of snow and cold. As it runs, the Tauntaun's + legs kick up large clouds of snow and ice into the snowy air. + +EXTERIOR: HOTH -- OUTSIDE ICE HANGAR -- DUSK + + Artoo stands in the falling snow, beeping worriedly. + Threepio moves stiffly over to him. + +THREEPIO: You must come along now, Artoo. There's really nothing more +we can do. And my joints are freezing up. + + Artoo beeps, long and low. + +THREEPIO: Don't say thing like that! Of course we'll see Master Luke +again. He'll be quite all right, you'll see. (to himself) Stupid +little short-circuit. He'll be quite all right. + + Threepio turns to go back inside the main hangar as Artoo + mournfully keeps his vigil. + +EXTERIOR: HOTH -- SNOW DRIFT -- DUSK + + The wind is blowing quite strong now. Luke struggles to + stay upright, but a blast of freezing snow knocks him over. He + struggles to get up, but he can't. The young warrior from + Tatooine drags himself a couple of feet and then collapses. + +INTERIOR: REBEL BASE -- MAIN HANGAR DECK -- ENTRANCE -- NIGHT + + Princess Leia stands inside the dark entrance to the Rebel + base, waiting for a sign of the two Rebel heroes. She shivers + in the cold wind as, nearby, Chewie sits with his head in his + hands. In the background, Artoo and Threepio move through the + doors. + A Rebel lieutenant moves to Major Derlin, an officer + keeping watch with the princess. + +LIEUTENANT: Sir, all the patrols are in. There's still no contact from +Skywalker or Solo. + +THREEPIO: Mistress Leia, Artoo says he's been quite unable to pick up +any signals, although he does admit that his own range is far too +weak to abandon all hope. + + Leia nods an acknowledgment, but she is lost in thought. + +DERLIN: Your Highness, there's nothing more we can do tonight. The +shield doors must be closed. + + He turns to the lieutenant. + +DERLIN: Close the doors. + +LIEUTENANT: Yes, sir. + + The lieutenant walks away. Chewie lets out a long, mournful + howl, somewhat like a coyote. At the same moment, Artoo begins + a complex series of efficient beeps. + +THREEPIO: Artoo says the chances of survival are seven hundred +seventy-five...to one. + + Leia stands praying to herself as the huge metal doors slam + across the entrance of the ice cave. The loud booms echo + throughout the huge cavern. Chewie lets out another suffering + howl. + +THREEPIO: Actually, Artoo has been known to make mistakes...from time +to time. Oh, dear, oh, dear. Don't worry about Master Luke. I'm sure +he'll be all right. He's quite clever, you know...for a human being. + +EXTERIOR: HOTH -- SNOW DRIFT -- DUSK + + Luke lies face down in the snow, nearly unconscious. Slowly + he looks up and sees Ben Kenobi, barely visible through the + blowing snow. It is hard to tell if Kenobi is real or a + hallucination. + +BEN: Luke...Luke. + +LUKE: (weakly) Ben? + +BEN: You will go to the Dagobah system. + +LUKE: Dagobah system? + +BEN: There you will learn from Yoda, the Jedi Master who instructed +me. + + The image of Ben fades, revealing a lone Tauntaun rider + approaching from the windswept horizon. + +LUKE: (groaning faintly) Ben...Ben. + + Luke drops into unconsciousness. + Han pulls up and leaps off his mount. He hurries to his + snow-covered friend, cradling him in his arms. Han's Tauntaun + lets out a low, pitiful bellow. But Han's concern is with + Luke, and he shakes him urgently. + +HAN: Luke! Luke! Don't do this, Luke. Come on, give me a sign here. + + Luke doesn't respond. Han begins frantically rubbing and + slapping Luke's unconscious face. As he starts to lift the + youth, Han hears a rasping sound behind him. He turns, just in + time to see his Tauntaun stagger and then fall over into the + snow. + Han carries Luke to the moaning beast. Then, with a final + groan, the Tauntaun expires. + +HAN: Not much time. + + He pushes Luke's inert form against the belly of the dead + beast. + +LUKE: (moaning) Ben...Ben... + +HAN: Hang on, kid. + +LUKE: Dagobah system... + + Han ignites Luke's saber and cuts the beast from head to + toe. He quickly tosses it's steaming innards into the snow, + then lifts Luke's inert form and stuffs him inside the + carcass. + +HAN: (reeling from the odor) Whew... + +LUKE: Dagobah... + +HAN: This may smell bad, kid... + +LUKE: (moaning) Yoda... + +HAN: ...but it will keep you warm...til I get the shelter built. +(struggling to get Luke in the carcass) Ooh...I thought they smelled +bad on the outside! + + The wind has picked up considerably, making it difficult to + move. Han removes a pack from the dead creature's back, taking + out a shelter container. He begins to set up what can only be + a pitiful protection against a bitter Hoth night. + +EXTERIOR: HOTH -- SNOWDRIFT -- DAWN + + Four snub-nosed armored snowspeeders race across the white + landscape. + +INTERIOR: SNOWSPEEDER COCKPIT + + There is only one pilot, Zev, in the enclosed two-man + craft. He concentrates on the scopes which ring his cockpit. + He hears a low beep from one of his monitors. + +ZEV: (into transmitter) Echo Base...I've got something! Not much, but +it could be a life form. + +EXTERIOR: HOTH -- SNOWDRIFT + + The small craft banks and makes a slow arc, then races off + in a new direction. + +INTERIOR: SNOWSPEEDER -- COCKPIT + + The pilot switches over to a new transmitter. + +ZEV: (into transmitter) This is Rouge Two. this is Rouge Two. Captain +Solo, so you copy? Commander Skywalker, do you copy? This is Rouge +Two. + + There is a sharp crackle of static, then a faint voice. + +HAN: (filtered over Zev's receiver) Good morning. Nice of you guys to +drop by. + +ZEV: (switching transmitters) Echo Base...this is Rouge Two. I found +them. Repeat, I found them. + +EXTERIOR: HOTH -- SNOWDRIFT -- DAY + + The small shelter Han set up is covered with snow on the + windward side. A makeshift antenna rests gingerly on top the + snowdrift. Han spots Zev's snowspeeder approaching in the + distance, and begins waving his arms frantically at the tiny + craft. + +INTERIOR: REBEL BASE -- MEDICAL CENTER + + Strange robot surgeons adjust a mass of electronic + equipment. A switch is thrown and a sudden blinding flash + obscures Luke in a bacta tank filled with a thick, gelatinous + slime. He begins to thrash about, raving in delirium. + +INTERIOR: REBEL BASE -- MEDICAL CENTER -- RECOVERY ROOM + + Luke sits up in a recovery-room bed, weak but smiling. His + face shows terrible wounds from the Wampa's attack. Threepio + and Artoo enter the room. + +THREEPIO: Master Luke, sir, it's good to see you fully functional +again. + + Artoo beeps his good wishes. + +THREEPIO: Artoo expresses his relief, also. + + Han and Chewie make their entrance. The Wookiee growls a + greeting. + +HAN: How are you feeling, kid? You don't look so bad to me. In fact, +you look strong enough to pull the ears off a Gundark. + +LUKE: Thanks to you. + +HAN: That's two you owe me, junior. + + Han turns as Leia enters the room. He looks at her with a + big, devilish grin. + +HAN: Well your Worship, looks like you managed to keep me around for a +little while longer. + +LEIA: (haughtily) I had nothing to do with it. General Rieekan thinks +it's dangerous for any ships to leave the system until we've activated +the energy shield. + +HAN: That's a good story. I think you just can't bear to let a +gorgeous guy like me out of your sight. + +LEIA: I don't know where you get you delusions, laser brain. + + Chewie is amused; he laughs in his manner. Han, enjoying + himself, regards Chewie good-humoredly. + +HAN: Laugh it up, fuzz ball. But you didn't see us alone in the south +passage. + + Luke sparks to this; he looks at Leia. + +HAN: She expressed her true feelings for me. + + Leia is flushed, eyes darting between Luke and Han. + +LEIA: My...! Why, you stuck up,...half-witted,...scruffy-looking... +nerf-herder! + +HAN: Who's scruffy-looking? (to Luke) I must have hit her pretty close +to the mark to get her all riled up like that, huh, kid? + + Leia looks vulnerable for a moment, then the mask falls + again, and she focuses on Luke. + +LEIA: Why, I guess you don't know everything about women yet? + + With that she leans over and kisses Luke on the lips. Then + she turns on her heel and walks out, leaving everyone in the + room slightly dumbstruck. With some smugness, Luke puts his + hands behind his head and grins. + Suddenly, in the distance, the muffled sound of an alarm is + heard. + +ANNOUNCER: (over loudspeaker) Headquarters personnel, report to command +center. + + The voice repeats the order and Han, Chewie, Artoo, and + Threepio hurry out of the room, bidding farewell to Luke. + +HAN: Take it easy. + +THREEPIO: Excuse us, please. + +INTERIOR: HOTH -- REBEL BASE -- COMMAND CENTER + + Rieekan looks up grimly from a console screen. He calls + over to Leia and Han. + +RIEEKAN: Princess...we have a visitor. + + The group hurries over to Rieekan. + +RIEEKAN: We've picked up something outside the base in zone twelve, +moving east. + +SENIOR CONTROLLER: It's metal. + +LEIA: Then it couldn't be one of those creatures that attacked Luke. + +HAN: It could be a speeder, one of ours. + +SENIOR CONTROLLER: No. Wait -- there's something very weak coming +through. + + Threepio steps up to the control panel and listens intently + to the strange signal. + +THREEPIO: Sir, I am fluent in six million forms of communication. This +signal is not used by the Alliance. It could be an Imperial code. + + The transmission ends in static. + +HAN: It isn't friendly, whatever it is. Come on, Chewie, let's check +it out. + +RIEEKAN: Send Rouges Ten and Eleven to station three-eight. + +EXTERIOR: HOTH -- SNOW PLAIN -- DAY + + The dark probe robot moves past the smoldering ruins of + station three-eight and down a ridge toward the Rebel base. It + raises a large antenna from the top of its head and begins to + send out a piercing signal. + The probe droid has spotted Chewbacca who, not thirty feet + away, has popped his head over a snow bank. Instantly, the + probe robot swings around, its deadly ray ready to fire. But + before it can get a shot off, it is hit from behind by a laser + bolt, and explodes in a million pieces. + Han Solo replaces his blaster in its holster and peers + intently at the smoldering remains of the Imperial probe. + +INTERIOR: HOTH -- REBEL BASE -- COMMAND CENTER + + Leia and Rieekan listen to Han on the comlink. + +HAN: (over comlink) Afraid there's not much left. + +LEIA: (into comlink) What was it? + +HAN: (over comlink) Droid of some kind. I didn't hit it that hard. It +must have had a self-destruct. + +LEIA: (into comlink) An Imperial probe droid. + +HAN: (over comlink) It's a good bet the Empire knows we're here. + +RIEEKAN: We'd better start the evacuation. + +EXTERIOR: SPACE -- IMPERIAL FLEET + + Darth Vader's Star Destroyer, larger and more awesome than + the five Imperial Star Destroyers that surround it, sits in + the vastness of space. The six huge ships are surrounded by a + convoy of smaller spacecraft. TIE fighters dart to and fro. + +INTERIOR: DARTH VADER'S STAR DESTROYER -- BRIDGE -- MAIN CONTROL DECK + + Controllers working the vast complex of electronic controls + hear ominous approaching footsteps and look up from their + controls. The squat, evil-looking Admiral Ozzel and the young, + powerfully built General Veers, who have been conferring near + the front, also feel the approaching presence and turn toward + it. Darth Vader, Lord of the Sith, enters like a chill wind. + As Vader moves across the wide bridge, Captain Piett hurries + up to Ozzel. + +PIETT: Admiral. + +OZZEL: Yes, Captain + +PIETT: I think we've got something, sir. The report is only a fragment +had. + +OZZEL: (irritated) We have thousands of probe droids searching the +galaxy. I want proof, not leads! + +PIETT: The visuals indicate life readings. + +OZZEL: It could mean anything. If we followed every lead... + +PIETT: But, sir, the Hoth system is supposed to be devoid of human +forms. + + Vader moves to a large screen showing an image of the Rebel + snow base. Rebel speeders can be seen approaching the base in + the distance. + +VADER: You found something? + +PIETT: Yes, my lord. + +VADER: (studying the image on the console screen) That's it. The +Rebels are there. + +OZZEL: My lord, there are so many uncharted settlements. It could be +smugglers, it could be... + +VADER: That is the system. And I'm sure Skywalker is with them. Set +your course for the Hoth system. General Veers, prepare you men. + +INTERIOR: HOTH -- REBEL BASE -- TRANSPORT BAY + + A captain issues instructions to two of his men at the + entrance to the main transport bay. Several Rebel transports + behind them are being loaded by men carrying heavy boxes and + moving quickly, but not in panic. + +REBEL CAPTAIN: Groups seven and ten will stay behind to fly the +speeders. As soon as each transport is loaded, evacuation control will +give clearance for immediate launch. + +REBEL FIGHTER: Right, sir. + +INTERIOR: HOTH -- REBEL BASE -- MAIN HANGAR DECK + + Alarms sound. Troops, ground crews, and droids rush to + their alert stations. Armored snowspeeders are lined up in + attack formation near the main entrance. + In the midst of all this activity, Han does some frantic + welding on the lifters of the Millennium Falcon. + Han finishes his work and hops down to the hangar floor. He + pulls out his comlink, all the while eyeing problematic + lifters. + +HAN: (into comlink, to Chewie) Okay, that's it. Try it...Off! Turn it +off! Turn it off! Off! + + Smoke rises from a minor explosion on the lifter. + Exasperated, Han surveys the new damage. + +INTERIOR: REBEL BASE -- MEDICAL CENTER + + Luke dresses in readiness for the evacuation as his + attending medical droid stands by. + +MEDICAL DROID: Sir, it will take quite awhile to evacuate the T-forty- +sevens. + +LUKE: Well, forget the heavy equipment. There's plenty of time to get +the smaller modules on the transports. + +MEDICAL DROID: Take care, sir. + +LUKE: Thanks. + +INTERIOR: REBEL BASE -- MAIN HANGAR DECK + + Pilots, gunners, and R2 units scurry about. Luke, pulling + on his heavy-weather jacket, is headed toward a row of armored + speeders. He stops at the rear of the Millennium Falcon, where + Han and Chewie are trying to repair the right lifter with even + more haste than before. + +LUKE: Chewie, take care of yourself, okay? + + As Luke pats Chewie on the arm, Chewie puts his arms around + Luke and gives him a tight hug. Han is discussing the lifter + with a repair droid when he sees Luke. + +HAN: Hi, kid. (to droid) There's got to be a reason for it. Check it +at the other end. Wait a second. (to Luke) You all right? + +LUKE: Yeah. + +HAN: Be careful. + +LUKE: You, too. + + Luke smiles, then waves at his friend and walks on. After a + few steps, he stops and looks back. Han glances up and the two + exchange a silent communication, each wishing the other + safety, happiness -- many things, all difficult to verbalize. + +INTERIOR: REBEL BASE -- CONTROL ROOM. + + Alarms sound throughout the hidden Rebel base. In the + control room, a controller urgently gestures for General + Rieekan to check a computer scan. + +CONTROLLER: General, there's a fleet of Star Destroyers coming out of +hyperspace in sector four. + +RIEEKAN: Reroute all power to the energy shield. We've got to hold +them till all transports are away. Prepare for ground assault. + + Rieekan exits hurriedly. + +INTERIOR: VADER'S STAR DESTROYER -- VADER'S CHAMBER -- MEDITATION CUBICLE + + The dark cubicle is illuminated by a single shaft of light + which falls on the brooding Dark Lord as he sits on a raised + meditation cube. General Veers enters the room and approaches + the silent, unmoving Vader. Although seemingly very sure of + himself, Veers is still not bold enough to interrupt the + meditating lord. The younger general stands quietly at + attention until the evil presence speaks. + +VADER: What is it, General? + +VEERS: My lord, the fleet has moves out of light-speed. Com-Scan has +detected an energy field protecting an area around the sixth planet of +the Hoth system. The field is strong enough to deflect any +bombardment. + +VADER: (angrily) The Rebels are alerted to our presence. Admiral Ozzel +came out of light-speed too close to the system. + +VEERS: He felt surprise was wiser... + +VADER: He is as clumsy as he is stupid. General, prepare your troops +for a surface attack. + +VEERS: Yes, my lord. + + Veers turns smartly and leaves as Vader activates a large + viewscreen showing the bridge of his mighty ship. Admiral + Ozzel appears on the viewscreen, standing slightly in front of + Captain Piett. + +OZZEL: Lord Vader, the fleet has moved out of light-speed, and we're +preparing to...Aaagh! + +VADER: You have failed me for the last time, Admiral. Captain Piett. + + Piett steps forward, as the admiral moves away, slightly + confused, touching his throat as it begins to constrict + painfully. + +PIETT: Yes, my lord. + +VADER: Make ready to land out troops beyond the energy shield and +deploy the fleet so that nothing gets off that system. You are in +command now, Admiral Piett. + +PIETT: Thank you, Lord Vader. + + Piett's pleasure about his unexpected promotion is not an + unmixed emotion. He glances warily at the struggling Admiral + Ozzel who, with a final choke, stumbles and falls in a + lifeless heap before him. + +INTERIOR: REBEL BASE -- MAIN HANGAR DECK + + With a sense of urgency, Leia quickly briefs a group of + pilots gathered in the center of the hangar. + +LEIA: All troop carriers will assemble at the north entrance. The +heavy transport ships will leave as soon as they're loaded. Only two +fighter escorts per ship. The energy shield can only be opened for a +short time, so you'll have to stay very close to your transports. + +HOBBIE: Two fighters against a Star Destroyer? + +LEIA: The ion cannon will fire several shots to make sure that any +enemy ships will be out of your flight path. When you've gotten past +the energy shield, proceed directly to the rendezvous point. +Understood? + +PILOTS: (in unison) Right. Okay. + +LEIA: Good luck. + +DERLIN: Okay. Everyone to your stations. Let's go! + + The pilots hurry away. + +EXTERIOR: HOTH -- ICE PLAIN -- SNOW TRENCH -- DAY + + Rebel troops carry heavy bazooka-type weapons and position + them along the snow trench. Men hurriedly respond to their + officers' yelled orders and brace themselves against the + rhythmic gusts of bitter-cold wind. + Other troops load power packs into a gun turret and swing + its guns into position. + +EXTERIOR: HOTH -- ICE PLAIN -- POWER GENERATORS + + Near the base power generators, troops rush to set up their + heavy battle equipment. Buzzing loudly, the generators send + along, sparking fingers of energy into the bitter Hoth wind. + +INTERIOR: REBEL BASE -- COMMAND CENTER + + The long line of Rebel controllers is tense, as are + Princess Leia and General Rieekan, who are trying very hard + not to show any fear. + +RIEEKAN: Their primary target will be the power generators. Prepare to +open the shield. + +EXTERIOR: ICE PLAIN + + The Rebel transport and two escort fighters begin their + departure from the ice planet. + +EXTERIOR: SPACE -- IMPERIAL STAR DESTROYER + + A huge Imperial Star Destroyer rest against a sea of stars, + far above the white surface of the planet Hoth. + +INTERIOR: IMPERIAL STAR DESTROYER -- BRIDGE + + An Imperial controller approaches his commander. + +CONTROLLER: Sir, Rebel ships are coming into our sector. + +CAPTAIN: Good. Our first catch of the day. + +INTERIOR: REBEL BASE -- COMMAND CENTER + +WOMAN CONTROLLER: Stand by, ion control....Fire! + +EXTERIOR: REBEL BASE ICE CAVE -- ION CANNON + + The giant ball-shaped ion cannon rotates into position and + blasts two red energy beams skyward. + +EXTERIOR: SPACE -- HOTH -- REBEL TRANSPORT + + The Rebel transport and its escort race away from the white + planet, closely followed by the two red energy beams. + As the Rebel transport races toward the waiting Imperial + Star Destroyer, it is overtaken by the two scarlet energy + bolts. The Imperial Star Destroyer is hit in the conning tower + by the powerful bolts, which set up fiery explosions on its + metal hull. + The big Star Destroyer veers, then spins wildly out of + control. As the Imperial ship careers into deep space, the + Rebel transport races away to safety. + +INTERIOR: REBEL BASE -- MAIN HANGAR DECK + + Pilots, gunners, and troopers hurry to their stations and + their vehicles. + +ANNOUNCER: (over loudspeaker) The first transport is away. + + Everyone cheers at the announcement, which echoes through + the hangar. Luke turns and walks on, heading toward his + snowspeeder. His gunner, Dack, a fresh-faced, eager kid, is + glad to see him. They climb in. + +DACK: Feeling all right, sir? + +LUKE: Just like new, Dack. How about you? + +DACK: Right now I feel I could take on the whole Empire myself. + +LUKE: (quietly, strapping in) I know what you mean. + +EXTERIOR: HOTH -- ICE PLAIN + + A thin horizon line cuts across the bleak landscape. Small + dot-size objects begin to appear on the horizon, moving in the + direction of the Rebel base. + +EXTERIOR: HOTH -- ICE PLAIN -- SNOW TRENCH + + A Rebel officer lifts a pair of electrobinoculars to his + eyes. Through the lens he sees a very close view of a giant + Imperial snow walker. He adjusts the view which then zooms + back to reveal three more of the ominous battle machines. + Small flashes of yellow fire billow from the guns of the + lumbering snow walkers. + The officer lowers his binoculars as the regular rhythmic + pounding begins to make the ground vibrate. The pounding grows + louder and is accompanied by a high-pitched, metallic + rattling. The officer speaks into his comlink. + +TRENCH OFFICER: Echo Station Three-T-Eight. + +INTERIOR: REBEL BASE -- CORRIDOR + + Pilots and gunners race to their waiting snowspeeders. Ice + and snow begin falling from the walls of the corridor, shaken + by the pounding Imperial snow walker as they draw ever nearer. + +TRENCH OFFICER: (over comlink) We have spotted Imperial walkers! + +CONTROLLER: Imperial walkers on the north ridge. + +EXTERIOR: HOTH -- ICE PLAIN -- SNOW TRENCH + + The Rebel troops aim their weapons at the horizon as + explosions erupt all around them. They are nervous and their + grip on their weapons tightens from the cold and from fear. + Behind the troops a dozen snowspeeders race through the + sky. + +INTERIOR: LUKE'S SNOWSPEEDER, ROUGE LEADER -- COCKPIT + +LUKE: (into comlink) Echo station Five-Seven. We're on our way. + +EXTERIOR: HOTH -- ICE PLAIN -- BATTLEFIELD + + The fleet of snowspeeders races above the ice field at full + throttle. They accelerate away from the base and head toward + the distant walkers. + +INTERIOR: LUKE'S SNOWSPEEDER, ROUGE LEADER -- COCKPIT + +LUKE: (into comlink) All right, boys, keep tight now. + +DACK: Luke, I have no approach vector. I'm not set. + +LUKE: Steady, Dack. Attack pattern delta. Go now! + +EXTERIOR: HOTH -- ICE PLAIN -- BATTLEFIELD + + The cannons mounted on the walker head fire at the + speeders. Other walkers loom in the background. Two speeders + race away past two of the enormous walkers and bank to the + right. + +INTERIOR: LUKE'S SNOWSPEEDER, ROUGE LEADER -- COCKPIT + +LUKE: All right, I'm coming in. + + He turns his speeder and heads directly at one of the + walkers, flying toward its towering legs. The horizon twists + as the speeder banks between the legs. + +LUKE: (into comlink) Hobbie, you still with me? + +EXTERIOR: HOTH -- ICE PLAIN -- BATTLEFIELD + + Two speeders race directly at the head of a walker, then + split and fly past it. + Three other walkers march onward, firing all cannons. + +EXTERIOR: HOTH -- ICE PLAIN -- SNOWTRENCH + + Rebel troops fire on the approaching walkers, as the snow + and ice explode all around them. + +EXTERIOR: HOTH -- ICE PLAIN -- BATTLEFIELD + + A speeder banks through and away from the legs of a walker. + Two other speeders pass the first speeder from the opposite + direction. Other Rebel craft race just above the icy plain. + A giant walker head swivels and fires, striking a + snowspeeder and sending it crashing in a ball of flames. + +INTERIOR: IMPERIAL SNOW WALKER -- COCKPIT + + General Veers and two walker pilots keep a careful eye on + the racing Rebel snowspeeders as they maneuver their lumbering + war machine forward. + Luke's speeder banks in from the side of Veers's walker and + heads straight for its viewport, blasting away. An explosion + hits the walker window, but dissipates, doing no harm. The + speeder roars up and over the impregnable war machine. + +INTERIOR: LUKE'S SNOWSPEEDER, ROUGE LEADER -- COCKPIT + + Luke looks back at the walker as it grows smaller in the + distance. + +LUKE: That armor's too strong for blasters. + + On the horizon, another walker moves up past Luke's cockpit + window, twisting out of sight as Luke banks and starts another + run. + +LUKE: (into comlink) Rouge Group, use your harpoons and tow cables. Go +for the legs. It might be our only chance of stopping them. (to Dack) +All right, stand by, Dack. + + Dack is at the gunner's controls. + +DACK: Luke, we've got a malfunction in fire control. I'll have to cut +in the auxiliary. + +LUKE: Just hang on. Hang on, Dack. Get ready to fire that tow cable. + + Barely keeping his seat in the tumbling ship, Dack struggles + to set up his harpoon gun. + Luke swings his speeder around and heads toward an oncoming + walker. Laser bolts and flak fill the air, creating a deadly + obstacle course for the tiny craft. + +EXTERIOR: HOTH -- ICE PLAIN -- BATTLEFIELD + + Rouge Leader and another snowspeeder fly in tight formation + toward the walker as explosions burst all around them. + +INTERIOR: LUKE'S SNOWSPEEDER, ROUGE LEADER -- COCKPIT + + After sustaining a heavy volley of fire, Luke turns around + to see if Dack is all right. + +LUKE: Dack? Dack! + + Dack is lost. Blood streams down his forehead, which + rests on his smoldering controls. Out the back window, an + Imperial walker recedes in the distance. + +EXTERIOR: HOTH -- ICE PLAIN -- SNOW TRENCH AREA + + Rebel troops fire the dishlike ray gun while explosions + erupt around them. + +EXTERIOR: HOTH -- ICE PLAIN -- BATTLEFIELD + + Two walkers lumber toward the Rebel base as a speeder + between them explodes in a ball of flames. + +EXTERIOR: HOTH -- ICE PLAIN -- SNOW TRENCH + + The dislike ray gun is hit by a laser bolt and instantly + explodes. + +INTERIOR: IMPERIAL SNOW WALKER -- COCKPIT + + Through the cockpit window, Veers and his pilot can see the + Rebel power generators in the distance. + A hologram of Darth Vader appears on a control panel + screen. + +VEERS: Yes, Lord Vader. I've reached the main power generator. The +shield will be down in moments. You may start your landing. + +INTERIOR: LUKE'S SNOWSPEEDER, ROUGE LEADER -- COCKPIT + +LUKE: (into comlink) Rouge Three. + +INTERIOR: WEDGE'S SNOWSPEEDER, ROUGE THREE -- COCKPIT + +WEDGE: (into comlink) Copy, Rouge Leader + +LUKE: (over comlink) Wedge, I've lost my gunner. You'll have to make +this shot. I'll cover for you. Set your harpoon. Follow me on the next +pass. + +WEDGE: (into comlink) Coming around, Rouge Leader. + +INTERIOR: LUKE'S SNOWSPEEDER, ROUGE LEADER -- COCKPIT + +LUKE: (into comlink) Steady, Rouge Two + +EXTERIOR: HOTH -- BATTLEFIELD + + Wedge's speeder races through the legs of one of the + monstrous walkers. + +INTERIOR: WEDGE'S SNOWSPEEDER, ROUGE THREE -- COCKPIT + +WEDGE: (to gunner) Activate harpoon. + + Wedge's gunner reaches for a firing switch to activate the + harpoon. The harpoon flashes out, and speeds toward the + receding legs of the walker. + +EXTERIOR: HOTH -- BATTLEFIELD + + The harpoon hurtles toward the walker, In an instant it is + embedded in one of the walker's legs. + +INTERIOR: WEDGE'S SNOWSPEEDER, ROUGE THREE -- COCKPIT + +WEDGE: (to gunner) Good shot, Janson. + +EXTERIOR: HOTH -- BATTLEFIELD + + The speeder Rouge Three races around one of the giant + walker's feet, trailing the cable behind it. Continuing around + the back foot, Rouge Three then circles the walker around the + tail end. + +INTERIOR: WEDGE'S SNOWSPEEDER, ROUGE THREE -- COCKPIT + + Wedge checks his controls and banks around the front of the + walker. + +WEDGE: One more pass. + +JANSON: Coming around. Once more. + +EXTERIOR: HOTH -- BATTLEFIELD + + The speeder sweeps left to right in front of the giant + legs, towing the cable behind it. + +INTERIOR: WEDGE'S SNOWSPEEDER, ROUGE THREE -- COCKPIT + +JANSON: One more. + + Wedge swings the speeder between the legs of the giant + walker. + +JANSON: Cable out! Let her go! + +WEDGE: Detach cable. + +EXTERIOR: WEDGE'S SNOWSPEEDER, ROUGE THREE + + The cable release on the back of the speeder snaps loose + and the cable drops away. + +INTERIOR: WEDGE'S SNOWSPEEDER, ROUGE THREE -- COCKPIT + +JANSON: Cable detached. + +EXTERIOR: HOTH -- BATTLEFIELD + + The speeder zooms away into the distance. The tangled legs + of the enormous war machine attempt a step, but as they do the + giant Imperial walker begins to topple. It teeters for a + moment, and then crashes onto the icy ground, sending snow and + metal pieces flying. + +EXTERIOR: HOTH -- ICE PLAIN -- SNOW TRENCH + + The troops in the trenches cheer at the sight of the + crashing walker. + An officer gives a signal to his men and Rebel troops + charge the fallen war machine. + +TRENCH OFFICER: Come on! + + The troops run toward the downed walker, followed by two + Rebel speeders flying overhead. Just as they reach the walker, + it explodes, the impact throwing some of the men onto the + frozen ground. + +INTERIOR: WEDGE'S SNOWSPEEDER, ROUGE THREE -- COCKPIT + + Wedge lets out a triumphant yell, banking his speeder away + from the fallen walker. + +WEDGE: (into comlink) Whooha!! That got him! + +INTERIOR: LUKE'S SNOWSPEEDER, ROUGE LEADER -- COCKPIT + +LUKE: (into comlink) I see it, Wedge. Good work. + +INTERIOR: REBEL BASE -- COMMAND CENTER + + Large chunks of ice tumble into the command center as Leia + and General Rieekan monitor computer screens. + +RIEEKAN: I don't think we can protect two transports at a time. + +LEIA: It's risky, but we can't hold out much longer. We have no +choice. + +RIEEKAN: (into comlink) Launch patrols. + +LEIA: (to an aide) Evacuate remaining ground staff. + +INTERIOR: REBEL BASE -- MAIN HANGAR + + Muffled distant explosions create widening cracks in the + ice roof of the hangar. Trying to ignore the noise and falling + bits of snow, Han works on one of the Falcon's lifters while + Chewie works on one of the wings. Noticing Chewie attach a + wrong part, Han grows impatient. + +HAN: No, no! No! This one goes there, that one goes there. right? + + In another area of the hangar, Threepio watches as Artoo is + raised up into Luke's X-wing fighter. + +THREEPIO: Artoo, you take good care of Master Luke now, understand? +And...do take care of yourself. Oh, dear, oh, dear. + +EXTERIOR: HOTH -- BATTLEFIELD + + The fierce battle on the vast snow plains of Hoth rages on. + The Imperial walkers continue their slow, steady assault on + the Rebel base, firing lasers as they lumber ever onward. In + the snow trench, Rebel troops fire large bazookalike guns and + dishlike ray guns as explosions erupt around them. A gun tower + is hit by a laser bolt and instantly explodes. Another blast + destroys a ray gun. + +INTERIOR: IMPERIAL SNOW WALKER -- COCKPIT + + General Veers studies various readouts on his control + panel. + +VEERS: All troops will debark for ground assault. Prepare to target +the main generator. + +EXTERIOR: HOTH -- BATTLEFIELD + + Luke's speeder and Rouge Two fly in formation, banking from + right to left and flying above the erupting battlefield. Flak + bursts all around them. + +INTERIOR: LUKE'S SNOWSPEEDER, ROUGE LEADER -- COCKPIT + + Luke, glancing over, sees Rouge Two on his left. His ship + shudders as flak bursts nearby. + +LUKE: (into comlink) Rouge Two, are you all right? + +INTERIOR: ZEV'S SNOWSPEEDER, ROUGE TWO -- COCKPIT + +ZEV: (into comlink) Yeah. I'm with you, Rouge Leader. + +INTERIOR: LUKE'S SNOWSPEEDER, ROUGE LEADER -- COCKPIT + +LUKE: (into comlink) We'll set harpoon. I'll cover for you. + +EXTERIOR: HOTH -- BATTLEFIELD + + The two speeders race across the horizon toward the giant + walkers. + +INTERIOR: ZEV'S SNOWSPEEDER, ROUGE TWO -- COCKPIT + +ZEV: (into comlink) Coming around. + +INTERIOR: LUKE'S SNOWSPEEDER, ROUGE LEADER -- COCKPIT + +LUKE: (into comlink) Watch that cross fire, boys. + +INTERIOR: ZEV'S SNOWSPEEDER, ROUGE TWO -- COCKPIT + +ZEV: (into comlink) Set for position three. (to gunner) Steady. + +LUKE: (over comlink) Stay tight and low. + +EXTERIOR: ZEV'S SNOWSPEEDER, ROUGE TWO + + Luke's speeder moves in formation with Rouge Two, when + suddenly Zev's speeder is hit by a laser bolt. His ship bucks + violently under the impact and the cockpit explodes in a ball + of flame. + Spewing smoke, the speeder hurtles toward a looming walker. + Before they collide. Rouge Two explodes in a million flaming + pieces. + +INTERIOR: LUKE'S SNOWSPEEDER, ROUGE LEADER -- COCKPIT + + Desperately, Luke works the controls of his flak-buffeted + ship. Suddenly, the speeder is rocked by a huge explosion. + Luke struggles with the controls with a look of terror on his + face. The speeder fills with smoke, and electrical sparks jump + about the cockpit. + +LUKE: (into comlink) Hobbie, I've been hit! + +INTERIOR: REBEL BASE -- COMMAND CENTER + + Apart from the distant thunder of laser blasts, the + corridor is strangely quiet and empty. Running footsteps echo + through the freezing hallway, then Han appears. Cracks have + appeared in some of the walls and some pipes have broken, + sending hot steam billowing into the underground hallways. Han + hurries into the command center. It is a shambles, but some + people are still at their posts. As he enters, a gigantic + cave-in almost obliterates the room. He finds Leia and + Threepio near one of the control boards. + +HAN: You all right? + + Leia nods. She is surprised to see him. + +LEIA: Why are you still here? + +HAN: I heard the command center had been hit. + +LEIA: You got your clearance to leave. + +HAN: Don't worry. I'll leave. First I'm going to get you to your ship. + +THREEPIO: Your Highness, we must take this last transport. It's our +only hope. + +LEIA: (to controller) Send all troops in sector twelve to the south +slope to protect the fighters. + + A blast rocks the command center, throwing Threepio + backward into Han's arms. + +ANNOUNCER: (over loudspeaker) Imperial troops have entered the base. + +HAN: Come on...that's it. + +LEIA: (to head controller) Give the evacuation code signal. And get to +your transports! + + Leia looks exhausted. Han grabs her and starts to lead her + out. + As Han, Leia, and Threepio run out of the command center, + the code signal can be heard echoing off the corridor walls. + +HEAD CONTROLLER: K-one-zero...all troops disengage. + +THREEPIO: (to Han and Leia) Oh! Wait for me! + +EXTERIOR: BATTLEFIELD -- SNOW TRENCH + + Rebel troops retreat under the awesome Imperial onslaught. + +OFFICER: Begin retreat! + +SECOND OFFICER: Fall back! + + Troops flee from the battle, the ground exploding around + them. + +EXTERIOR: HOTH -- BATTLEFIELD + + Three of the giant walkers, firing lasers, advance toward + the Rebel headquarters. + +EXTERIOR: HOTH -- SNOW TRENCH + + Continuing their retreat, the Rebels see the walkers + looming ever nearer. + +EXTERIOR: HOTH -- BATTLEFIELD -- ICE PLAIN + + On the battlefield, Luke watches as a walker foot rises and + moves over him. He looks up at the underbelly of the huge + walker, passing overhead. + Running beneath the monstrous machine, Luke fires his + harpoon gun at the walker's underside. A thin cable follows + the projectile from the gun. The magnetic head and cable + attach firmly to the metal hull. + Still running under the walker, Luke attaches the cable + drum to his belt buckle. Soon he is pulled up the cable and + hangs dangling underneath the walker. + The walker's giant feet continue to pound onward across the + frozen snow. Stray laser bolts whistle by Luke as he climbs up + the cable to the walker's hull, reaching a small hatch. + Hanging precariously, Luke cuts the solid metal hatch with his + laser sword. + He takes a landmine from around his neck and throws it + inside the Imperial machine. Quickly, Luke starts down the + cable and crashes onto the icy ground far below. He lies + unconscious as a giant rear leg passes by -- and just misses + him. + The giant walker stops in mid-step. A muffled explosion + comes from within -- and then the walker's mechanical insides + are spewed out every conceivable opening. The machine sits + dead in its tracks, smoking like a locomotive on stilts. + +EXTERIOR: HOTH -- BATTLEFIELD + + Veers's walker continues to advance toward the Rebel base. + The smoldering walker that Luke exploded stands smoking just + to the right of Veers's path. + +INTERIOR: IMPERIAL SNOW WALKER - COCKPIT + + Inside his walker, General Veers prepares to fire on the + Rebel power generators. + +VEERS: Distance to power generators? + +PILOT: One-seven, decimal two-eight. + + Veers reaches for the electrorangefinder and lines up the + main generator. + +VEERS: Target. Maximum fire power. + +EXTERIOR: HOTH -- BATTLEFIELD + + The Rebel troops continue their desperate retreat, pushed + back by the relentless Imperial assault. + +INTERIOR: HOTH -- REBEL BASE -- ICE CORRIDORS + + With Threepio lagging behind, Han and Leia race through the + crumbling ice corridors. Suddenly, there is an explosion. Han + turns, grabs the princess, and pulls her to the wall as a + tremendous cave-in blacks their path. + He takes the comlink from his pocket. + +HAN: (into comlink) Transport, this is Solo. Better take off -- I +can't get to you. I'll get the princess out on the Falcon. + + Han and Leia turn and race down the corridor. + +THREEPIO: But...but...but...where are you going? Uh...come back!! + +INTERIOR: HOTH -- REBEL BASE -- COMMAND CENTER + + Imperial troops have reached the base. As they push through +the blocked passageway, Darth Vader strides behind them. + +INTERIOR: HOTH -- REBEL BASE -- ICE CORRIDOR + + Han and Leia run toward the entrance of the main hangar + where the Millennium Falcon is docked. Threepio still lags + behind. + +THREEPIO: Wait! Wait for me! Wait! Stop! + + The door to the hangar closes in his face. + +THREEPIO: (exasperated) How typical. + + Quickly, the door reopens as Han reaches out and pulls the + golden droid through. + +HAN: Come on. + +INTERIOR: HOTH -- REBEL BASE -- MAIN HANGAR + + Chewie paces under the shelter of the Millennium Falcon's + landing gear. The giant Wookiee pats the underbelly of his + beloved ship and barks a few reassuring words. As he searches + worriedly for his captain, something at last catches his eye. + Chewie lets out a relieved shriek at seeing Han and Leia + running toward the ship. The Wookiee runs out into the + falling ice, lets out a howl, then runs up the ship's ramp. + Han and Leia run up the ramp after him, closely followed by + Threepio. + +HAN: Hurry up, goldenrod, or you're going to be a permanent resident! + +THREEPIO: Wait! Wait! + +INTERIOR: HOTH -- REBEL BASE -- ICE CORRIDOR + + Imperial troops run through the base corridors. Vader + surveys the place. A huge chunk falls, almost hitting him, but + he calmly, purposefully, continues around it. + +INTERIOR: REBEL BASE -- MAIN HANGER -- MILLENNIUM FALCON + + A distant, huge, explosion rocks the hangar deck. Ice cakes + come crashing down on the Millennium Falcon. + +INTERIOR: MAIN HANGAR -- MILLENNIUM FALCON -- MAIN HOLD + + Han, standing before a control panel, is busy flipping + switches as Chewie watches a troublesome gauge. A worried Leia + observes their efforts. + +HAN: (to Chewie) How's this? + + The Wookiee barks a negative reply. + +LEIA: Would it helped if I got out and pushed? + +HAN: It might. + + Threepio clanks into the hold. + +THREEPIO: Captain Solo, Captain Solo...sir, might I suggest that +you... + + Han gives the gold robot a devastating look. + +THREEPIO: It can wait. + +INTERIOR: MAIN HANGAR -- MILLENNIUM FALCON -- COCKPIT + + They move to the cockpit where Han flips some more + switches. Leia watches him, impatient, disbelieving. + +LEIA: The bucket of bolts is never going to get us past that blockade. + +HAN: This baby's got a few surprises left in her, sweetheart. + + Han and Leia look out the cockpit window and see a squad of + stormtroopers rushing into the far side of the hangar. + Quickly, Han straps himself into the pilot's seat and Leia + into the navigator's chair. + +INTERIOR: HOTH -- REBEL BASE -- MAIN HANGAR + + Stormtroopers hurriedly set up a large bazookalike weapon. + Behind them the giant hangar doors open slowly. + +EXTERIOR: MAIN HANGAR -- MILLENNIUM FALCON + + A laser gun appears on the Falcon and swings around to aim + at the Imperial troops. + The stormtroopers, preparing to fire their bazooka cannon, + are hit by the Falcon's fire and are thrown about in all + directions. + +INTERIOR: MAIN HANGAR -- MILLENNIUM FALCON -- COCKPIT + + Chewie rushes into the cockpit. + +HAN: Come on! Come on! Switch over. Let's hope we don't have a +burnout. + + A laser hits the window near Chewie as he is settling into + his chair. Letting out a loud whelp, Chewie quickly pulls back + on the controls and the first stage of engine fire can be + heard. Han flashes a big grin at Leia. + +HAN: See? + +LEIA: Someday you're going to be wrong, and I hope I'm there to see it. + + Han looks at Chewie. + +HAN: Punch it! + + The roar of the Falcon's main engines blasts out everything + as the ice-cave wall rushes by outside the cockpit window. + +INTERIOR: REBEL BASE -- MAIN HANGAR + + More stormtroopers run into the hangar, closely followed by + Vader. Hearing the loud roar of the Millennium Falcon's + engines, Vader looks toward the main hangar doors just in time + to see the Falcon lift up and disappear outside the cave. + +EXTERIOR: HOTH -- ICE SLOPE -- DAY + + Luke and two other pilots look up as the Millennium Falcon + races above them, flying very close to the ground. + The three pilots turn then, and trudge onward toward their + X-wing fighters, each going to his own ship. Luke waves + farewell, then heads toward his own fighter. + Artoo, seated on his cubbyhole, chirps an excited greeting + as Luke climbs aboard the spacecraft. + +LUKE: Artoo! Get her ready for takeoff. + + From his ship, Luke sees Wedge in his own X-wing, preparing + for takeoff. + +WEDGE: Good luck, Luke. See you at the rendezvous. + + Luke smiles and nods at Wedge, then lowers himself into the + cockpit of his X-wing while Artoo waits in the cubbyhole, + beeping impatiently. + +LUKE: Don't worry, Artoo. We're going, we're going. + + The canopy over the X-wing lowers and snaps shut. + +EXTERIOR: SPACE -- LUKE'S X-WING + + Luke's fighter, its wings closed, speeds away from the icy + planet. Soon it disappears into the stars. + +INTERIOR: LUKE'S X-WING -- COCKPIT + + Luke, looking thoughtful, suddenly makes a decision. He + flips several switches. The stars shift as he takes his + fighter into a steep turn. The X-wing banks sharply and flies + away in a new direction. + The monitor screen on Luke's control panel prints out a + question from the concerned Artoo. + +LUKE: (into comlink) There's nothing wrong, Artoo. I'm just setting a +new course. + + Artoo beeps once again. + +LUKE: (into comlink) We're not going to regroup with the others. + + Artoo begins a protest, whistling an unbelieving, "What?!" + Luke reads Artoo's exclamation on his control panel. + +LUKE: (into comlink) We're going to the Dagobah system. + + Luke checks his readouts and makes a few adjustments. He + rides along with only the soft hum of the instruments to break + the silence. Finally, Artoo chirps up. + +LUKE: (into comlink) Yes, Artoo? + + Artoo utters a soft, carefully phrased steam of whistles. + +LUKE: (into comlink, chuckling) That's all right. I'd like to keep it +on manual control for a while. + + The little droid lets out a defeated whimper. Luke smiles, + and continues on his course. + +EXTERIOR: SPACE -- MILLENNIUM FALCON + + The Millennium Falcon speeds away from Hoth, closely + followed by one huge Star Destroyer and four tiny TIE + fighters. + As it is pursued, the Falcon races toward two very bright + star-sized objects. + +INTERIOR: MILLENNIUM FALCON -- COCKPIT + + Inside the cockpit, Chewie lets out a loud howl. Han checks + as the ship is buffeted by exploding flak. He appears to be + doing six things at once. + +HAN: (harried) I saw them! I saw them! + +LEIA: Saw what? + +HAN: Star Destroyers, two of them, coming right at us. + + Threepio bumps and bangs his way into the cockpit. + +THREEPIO: Sir, sir! Might I suggest... + +HAN: (to Leia) Shut him up or shut him down! (to Chewie) Check the +deflector shield! + + Chewie barks a reply as he readjusts an overhead switch. + +HAN: Oh, great. Well, we can still outmaneuver them. + +EXTERIOR: SPACE -- MILLENNIUM FALCON -- STAR DESTROYERS + + The Millennium Falcon races toward one of the huge oncoming + Star Destroyers. Suddenly, the Falcon starts into a deep dive + straight down, closely followed by four TIE fighters. The + underside of the Star Destroyer continues on a collision + course with two oncoming Star Destroyers. Slowly, it starts + to veer to the left. + +INTERIOR: STAR DESTROYER -- BRIDGE + + Out the front window, the two approaching Star Destroyers + can be seen veering to the left. + +IMPERIAL OFFICER: Take evasive action! + + Alarms sound all over the huge ship. The two other Star + Destroyers get closer, one of them moving over the bridge so + close that it makes brushing contact with it. + +EXTERIOR: SPACE -- MILLENNIUM FALCON -- TIE FIGHTERS + + The Millennium Falcon races away from the colliding Star + Destroyers, still followed by four TIE fighters. Laser bolts + spark the pitch-black skies. + +INTERIOR: MILLENNIUM FALCON -- COCKPIT + + Things have calmed down a bit, but the race isn't over yet. + Chewie barks at Han. Leia is still trying to recover from the + steep dive. The ship is buffeted by laser blasts. + +HAN: Prepare to make the jump to light-speed. + +THREEPIO: But, sir! + + The buffeting of lasers becomes louder and stronger. + +LEIA: They're getting closer! + +HAN: (with a gleam in his eye) Oh yeah? Watch this. + + Expectantly, they look out the cockpit window as stars do + not go into hyperspace, but just sit there. + Han and Chewie look at each other and are thrown into an + acute state of concern. + +LEIA: Watch what? + + Han tries again. Still nothing. + +HAN: I think we're in trouble. + +THREEPIO: If I may say so, sir, I noticed earlier the hyperdrive +motivator has been damaged. It's impossible to go to light-speed! + +HAN: We're in trouble! + + The explosions become heavier. + +EXTERIOR: SPACE -- MILLENNIUM FALCON -- TIE FIGHTERS -- STAR DESTROYER + + The Falcon races into the starry vastness, followed by the + four Imperial TIE fighters and an Imperial Star Destroyer. + +INTERIOR: MILLENNIUM FALCON -- COCKPIT + + Stars race by as flak bursts outside the Falcon's window. + +INTERIOR: MILLENNIUM FALCON -- HOLD + + Han works furiously at some control panels while giving + various orders to Chewie. + +HAN: Horizontal boosters...! + + (Chewie barks) + +HAN: Alluvial dampers...! Well that's not it. + + (Chewie barks) + +HAN: Bring me the hydrospanners! + + Chewie hurries over to the pit and places the tools on the + edge. + +HAN: I don't know how we're going to get out of this one. + + Suddenly, a loud thump hits the side of the Falcon, + causing it to lurch radically. Chewie barks. The tools fall + into the pit on top of Han. + +HAN: Oww! Chewie! + + More turbulence rocks the ship. + +HAN: That was no laser blast! Something hit us. + +LEIA: (over comlink) Han, get up here! + +HAN: Come on, Chewie! + + Han climbs out of the hold like a shot. Both he and Chewie + run out of the hold and toward the cockpit. + +INTERIOR: MILLENNIUM FALCON -- COCKPIT + + Out the front cockpit window, they see hundreds of + asteroids racing by. + +LEIA: Asteroids! + + Han changes places with Leia who has been at the controls, + and Chewie gets into his chair. Han works his controls as a + chunk of rock crosses in front of the ship. + +HAN: Oh, no! Chewie, set two-seven-one. + +LEIA: What are you doing? You're not actually going into an asteroid +field? + +HAN: They'd be crazy to follow us, wouldn't they? + + Another asteroid thumps against the ship and Leia winces at + the jolt. + +LEIA: You don't have to do this to impress me. + +THREEPIO: Sir, the possibility of successfully navigating an asteroid +field is approximately three thousand, seven hundred and twenty to one. + +HAN: Never tell me the odds! + +EXTERIOR: ASTEROID BELT -- MILLENNIUM FALCON + + The Falcon turns into the asteroid storm and as the ship + completes its turn, asteroids start coming straight at the + cockpit windows. + A large asteroid tumbles away from the Falcon's path at top + speed. Several smaller asteroids crash into the big one, + creating small explosions on its surface. Other asteroids of + all sizes pass by in every direction, some colliding and + exploding. The tiny Millennium Falcon veers around the big + asteroid and races past it through the rain of rocks, followed + by four TIE fighters, which bob and weave around the + asteroids. + One of the pursuing TIE fighters connects with an asteroid + and explodes. The other fighters are pelted with a steady + stream of smaller explosions. + Two huge asteroids tumble toward the Millennium Falcon, + which quickly banks around both of them. The three TIE + fighters follow in hot pursuit until one of the fighters + scrapes an asteroid and tumbles out of control into deep + space. + +EXTERIOR: SPACE -- STAR DESTROYER -- ASTEROID BELT + + The massive Star Destroyer blasts oncoming asteroids as it + follows the Falcon. Smaller asteroids explode across its vast + surface. + +EXTERIOR: MILLENNIUM FALCON -- TIE FIGHTERS -- ASTEROID BELT + + The Falcon twists on its side as it races around an + oncoming asteroid. Two TIE fighters follow in the distance, + coming from either side. + +INTERIOR: MILLENNIUM FALCON -- COCKPIT + + Asteroids race by the cockpit window as Han pilots his + trusty craft through the dangerous field. + Looking out the cockpit window, the Falcon crew sees a big + asteroid drop past the window, narrowly missing their ship. + Chewie barks in terror as a slightly smaller asteroid comes + especially close -- to close -- and bounces off the Falcon + with a loud crunch. Threepio's hands cover his eyes. He + manages a short peek at the cockpit window. Princess Leia sits + stone-faced, staring at the action. Han gives her a quick + look. + +HAN: You said you wanted to be around when I made a mistake; well, +this could be it, sweetheart. + +LEIA: I take it back. We're going to get pulverized if we stay out +here much longer. + + The group watches as more asteroids race by outside the + window. + +HAN: I'm not going to argue with that. + +THREEPIO: Pulverized? + +HAN: I'm going in closer to one of the big ones. + +LEIA: Closer? + +THREEPIO: Closer?! + + Chewbacca barks the same word, only louder. + +EXTERIOR: MILLENNIUM FALCON -- ASTEROID BELT + + The Millennium Falcon dives toward the surface of one of + the moon-sized asteroids. There is a continued display of + explosions against the starry void as smaller asteroids + collide with larger chunks of rock. The two remaining TIE + fighters follow the Falcon to the large asteroid. The Falcon + skims the surface of the giant asteroid as, all the while, + small asteroids explode on the surface of the ship. + The TIE fighters approach the Falcon, but a giant asteroid + hurtles directly into their path. As the asteroid continues on + its way, it leaves remains of the two exploded TIE fighters to + tumble into deep space. + +INTERIOR: MILLENNIUM FALCON -- COCKPIT + + Rattled by the violent rocking of the starship, Threepio is + nearly in hysterics. + +THREEPIO: Oh, this is suicide! + + Han notices something on his main scope and nudges his + faithful Wookiee, pointing. + +HAN: There. That looks pretty good. + +LEIA: What looks pretty good? + +HAN: Yeah. That'll do nicely. + +THREEPIO: (to Leia) Excuse me, ma'am, but where are we going? + + Out the cockpit window, they see that they are skimming the + surface of the enormous asteroid and nearing a large crater. + +EXTERIOR: MILLENNIUM FALCON -- GIANT ASTEROID CRATER + + The Millennium Falcon dives into the huge crater and + disappears. + +INTERIOR: MILLENNIUM FALCON -- COCKPIT + +LEIA: I hope you know what you're doing. + +HAN: Yeah, me too. + +INTERIOR: GIANT ASTEROID CRATER + + The Falcon races down into the crater. The walls are barely + visible as the ship speed through the tunnellike opening. A + small cave appears on one side of the crater, and the Falcon + turns, slows, and scoots into it. + +EXTERIOR: SPACE -- LUKE'S X-WING + + The tiny X-wing speeds toward the cloud cover of Dagobah. + Artoo, riding on the back of the fighter, turns his head back + and forth with some anxiety. + +INTERIOR: LUKE'S X-WING -- COCKPIT + + Luke watches Artoo's words as they are translated and + screened on the computer scope. + +LUKE: (into comlink) Yes, that's it. Dagobah. + + Artoo beeps a hopeful inquiry. + +LUKE: (into comlink) No, I'm not going to change my mind about this. +(getting a little nervous) I'm not picking up any cities or +technology. Massive life-form readings, though. There's something +alive down there... + + Artoo beeps, this time a slightly worried question. + +LUKE: (into comlink) Yes, I'm sure it's perfectly safe for droids. + +EXTERIOR: SPACE -- DAGOBAH -- LUKE'S X-WING + + The X-wing continues its flight through the twilight above + the cloud-covered planet. + +INTERIOR: LUKE'S X-WING -- COCKPIT + + Luke sees the cloud race by as he takes his craft closer + to the planet. He must operate his controls carefully since + the cloud cover has completely obscured his vision. An alarm + buzzes in the background, Artoo beeps and whistles + frantically. + +LUKE: (into comlink) I know, I know! All the scopes are dead. I can't +see a thing! Just hang on, I'm going to start the landing cycle... + + The blast of the retrorockets is deafening, drowning out + Artoo's electronic squeals. Suddenly, there is a cracking + sound as if limbs were being broken off trees and then a + tremendous jolt as the spacecraft stops. Luke pulls a switch + and his canopy pops open. + +EXTERIOR: DAGOBAH -- DUSK + + The mist-shrouded X-wing fighter is almost invisible in the + thick fog. Luke climbs out onto the long nose of the + spacecraft as Artoo pops out of his cubbyhole on the back. The + young warrior surveys the fog, which is barely pierced by the + ship's landing lights. About all he can make out are some + giant, twisted trees nearby. Artoo whistles anxiously. + +LUKE: No, Artoo, you stay put. I'll have a look around. + + Artoo lets out a short beep. As Luke moves along the nose, + Artoo loses his balance and disappears with a splash into the + boggy lake. + +LUKE: Artoo? + + Luke kneels and leans over the plane looking for Artoo, but + the water is still and reveals no sign of the little droid. + +LUKE: Artoo! Where are you? + + A small periscope breaks the surface of the water and a + gurgly beep is heard. The periscope starts to move to shore. + Relieved, Luke starts running along the nose of the fighter to + its tip. + +LUKE: Artoo! You be more careful. + + The outline of the shore is now more than ten feet away. + Luke jumps off the plane into the water, scrambles up to the + shore, and turns to look for Artoo. The periscope still + steadily moves toward shore. + +LUKE: Artoo -- that way! + + Suddenly, through the thick fog layer, a dark shape + appears, moving toward the little droid. The dark, sinuous bog + beast dives beneath the swampy water, making a loud clunk + against Artoo's metal hull. The droid disappears from sight, + uttering a pathetic electronic scream. + Holding his ignited lightsaber before him, Luke wades a few + feet into the murky pool, looking for any sign of his little + friend. + +LUKE: Artoo! + + The black surface is still as death itself...until a few + bubbles begin to appear. Then, phheewaat!! The runt-size robot + is spit out of the water, makes a graceful arc, and comes + crashing down into a patch of soft gray moss. + +LUKE: Oh, no! Are you all right? Come on. You're lucky you don't taste +very good. Anything broken? + + Luke helps Artoo to his feet and begins wiping the mud and + roots from his round metal body. Artoo responds with feeble, + soggy beeps. + +LUKE: If you're saying coming here was a bad idea, I'm beginning to +agree with you. Oh, Artoo, what are we doing here? It's like... +something out of a dream, or, I don't know. Maybe I'm just going +crazy. + + As Luke glances around at the spooky swamp jungle that + surrounds him, Artoo ejects a stream of muddy water from one + of his cranial ports. + +EXTERIOR: VADER'S STAR DESTROYER -- VADER'S CHAMBER + + Admiral Piett hesitates in the entryway to Vader's private + cubicle. After a moment, he steps into the room and pauses at + the surprising sight before him. + Darth Vader, his back turned, is silhouetted in the gloom + on the far side of the chamber. A black, insectlike droid + attends him. Among the various apparatuses surrounding them, a + respirator tube now retracts from Vader's uncovered head. The + head is bald with a mass of ugly scar tissue covering it. The + black droid then lowers the mask and helmet onto Vader's head. + When it is in place, the Dark Lord turns to face Piett. + +VADER: Yes, Admiral? + +PIETT: Our ships have sighted the Millennium Falcon, lord. But...it +has entered an asteroid field and we cannot risk... + +VADER: (interrupting) Asteroids do not concern me, Admiral. I want +that ship and not excuses. + +PIETT: Yes, lord. + +EXTERIOR: ASTEROID CAVE -- MILLENNIUM FALCON + + The pirate starship rests in a dark, dripping asteroid + cave. It is so dark that the cave's exact dimensions are + impossible to determine. + +INTERIOR: MILLENNIUM FALCON -- COCKPIT + + Han and Chewie busily shut down the engine and all + electronic systems. Threepio and Leia watch worriedly. + +HAN: I'm going to shut down everything but the emergency power +systems. + +THREEPIO: Sir, I'm almost afraid to ask, but...does that include +shutting me down, too? + + Chewie barks "yes". But Han thinks otherwise. + +HAN: No, I need you to talk to the Falcon, find out what's wrong with +the hyperdrive. + + Suddenly, the ship lurches, causing all the loose items in + the cockpit to go flying. Chewie howls. + +THREEPIO: Sir, it's quite possible this asteroid is not entirely +stable. + +HAN: Not entirely stable? I'm glad you're here to tell us these +things. Chewie, take the professor in the back and plug him into the +hyperdrive. + +THREEPIO: Oh! Sometimes I just don't understand human behavior. After +all, I'm only trying to do my job in the most... + + The sliding door closes behind the indignant Threepio as + Chewie and he move back to the hold. Suddenly, the ship + lurches again, throwing Leia across the cabin into Han's arms. + Then, abruptly, the motion stops as suddenly as it started. + With some surprise, Han and Leia realize they are in each + other's arms. + +LEIA: Let go. + +HAN: Sshh! + +LEIA: Let go, please. + + Leia flushes, averting her eyes. She's not exactly fighting + to get free. But, of course, Han blows it... + +HAN: Don't get excited. + + The anger rises in Leia. + +LEIA: Captain, being held by you isn't quite enough to get me excited. + +HAN: Sorry, sweetheart. We haven't got time for anything else. + + Han grins quickly wickedly at Leia as he turns and exits + through the door. Leia's confused emotions show clearly on her + lovely face. + +EXTERIOR: DAGOBAH -- BOG CLEARING -- DUSK + + The mist has dispersed a bit, but it is still a very + gloomy-looking swamp. + Luke pulls an equipment box from the shore to the clearing. + He ignites a little fusion furnace and warms his hands before + it. Taking a power cable, he plugs it into Artoo's noselike + socket. + +LUKE: Ready for some power? Okay. Let's see now. Put that in there. +There you go. + + The droid whistles his appreciation. Luke then opens a + container of processed food and sits before the thermal + heater. + +LUKE: (sighs) Now all I have to do is find this Yoda...if he even +exists. + + Nervously, he looks around at the foreboding jungle. + +LUKE: Still...there's something familiar about this place. I feel +like...I don't know... + +STRANGE VOICE: Feel like what? + + Luke jumps out of his skin. Artoo screeches in terror. The + young warrior grabs for his lightsaber as he spins around, + looking for the speaker. Mysteriously standing right in front + of Luke is a strange, bluish creature, not more than two feet + tall. The wizened little thing is dressed in rags. It motions + toward Luke's sword. + +LUKE: (looking at the creature) Like we're being watched! + +CREATURE: Away with your weapon! I mean you no harm. + + After some hesitation, Luke puts away his weapon, although + he really doesn't understand why. Artoo watches with interest. + +CREATURE: I am wondering, why are you here? + +LUKE: I'm looking for someone. + +CREATURE: Looking? Found someone, you have, I would say, hmmm? + + The little creature laughs. + +LUKE: (Trying to keep from smiling) Right. + +CREATURE: Help you I can. Yes, mmmm. + +LUKE: I don't think so. I'm looking for a great warrior. + +CREATURE: Ahhh! A great warrior. (laughs and shakes his head) Wars not +make one great. + + With the aid of a walking stick, the tiny stranger moves + over to one of the cases of supplies. He begins to rummage + around. + Artoo moves to the edge of the case -- standing almost eye + level to the creature who is carelessly handling the supplies + -- and squeaks his disapproval. + Their tiny visitor pick up the container of food Luke was + eating from and takes a bite. + +LUKE: Put that down. Hey! That's my dinner. + + The creature spits out the bite he has taken. He makes a + face. + +CREATURE: How you get so big, eating food of this kind? + + He flips the container in Luke's direction and reaches into + one of Luke's supply cases. + +LUKE: Listen, friend, we didn't mean to land in that puddle, and if we +could get our ship out, we would, but we can't, so why don't you +just... + +CREATURE: (teasing) Aww, cannot get your ship out? + + The creature spots something of interest in Luke's case. + Luke loses patience and grabs the case away. The creature + retains his prize -- a tiny power lamp -- and examines it with + delight. + +LUKE: Hey, you could have broken this. Don't do that. Ohhh...you're +making a mess. Hey, give me that! + +CREATURE: (retreating with the lamp) Mine! Or I will help you not. + + Clutching its treasure, the creature backs away from Luke, + drawing closer to Artoo. As Luke and the creature argue, one + of Artoo's little arms slowly moves out toward the power lamp, + completely unnoticed by the creature. + +LUKE: I don't want your help. I want my lamp back. I'll need it to get +out of this slimy mudhole. + +CREATURE: Mudhole? Slimy? My home this is. + + Artoo grabs hold of the lamp and the two little figures are + immediately engaged in a tug-of-war over it. + Artoo beeps a few angry, "Give me thats." + +CREATURE: Ah, ah, ah! + +LUKE: Oh, Artoo, let him have it. + +CREATURE: Mine! Mine! + +LUKE: Artoo! + +CREATURE: Mine! + + The creature lets go with one hand and pokes Artoo lightly + with one finger. Artoo reacts with a startled squeal, and lets + go. + +CREATURE: Mine! + +LUKE: (fed up) Now will you move along, little fella? We're got a lot +of work to do. + +CREATURE: No! No, no! Stay and help you, I will. (laughs) Find your +friend, hmm? + +LUKE: I'm not looking for a friend, I'm looking for a Jedi Master. + +CREATURE: Oohhh. Jedi Master. Yoda. You seek Yoda. + +LUKE: You know him? + +CREATURE: Mmm. Take you to him, I will. (laughs) Yes, yes. But now, we +must eat. Come. Good food. Come. + + With that, the creature scurries out of the clearing, + laughing merrily. Luke stares after him. All he sees is the + faint light from the small power lamp moving through the fog. + Luke makes his decision and starts after the creature. + +CREATURE: (in the distance) Come, come. + + Artoo, very upset, whistles a blue streak of protest. + +LUKE: Stay here and watch after the camp, Artoo. + + Artoo beeps even more frantically. But as Luke disappears + from view, the worried little droid grows quieter, and utters + a soft electronic sigh. + +INTERIOR: MILLENNIUM FALCON -- MAIN HOLD AREA + + Threepio whistles and beeps a strange dialect into the + control panel in front of him. The control panel whistles back + a few mystifying beeps. + +THREEPIO: Oh, where is Artoo when I need him? + + Han enters the hold area and kneels on the floor near the + control box. + +THREEPIO: Sir, I don't know where your ship learned to communicate, +but it has the most peculiar dialect. I believe, sir, it says that the +power coupling on the negative axis has been polarized. I'm afraid +you'll have to replace it. + +HAN: Well, of course I'll have to replace it. + + He hands a wire coil up to Chewie who is working near the + ceiling. + +HAN: Here! And Chewie... + + Chewie brings his head back through the trap door in the + ceiling and whines. Han glances back at Threepio, then speaks + quietly to Chewie so only he can hear. + +HAN: (continued)...I think we'd better replace the negative power +coupling. + + Leia finishes welding the valves she has been working on + and attempts to reengage the system by pulling a lever + attached to the valve. It doesn't budge. Han notices her + struggle, and moves to help her. She rebuffs him. + +HAN: Hey, Your Worship, I'm only trying to help. + +LEIA: (still struggling) Would you please stop calling me that? + + Han hears a new tone in her voice. He watches her pull on + the lever. + +HAN: Sure, Leia. + +LEIA: Oh, you make it so difficult sometimes. + +HAN: I do, I really do. You could be a little nicer, though. (he +watches her reaction) Come on, admit it. Sometimes you think I'm all +right. + + She lets go of the lever and rubs her sore hand. + +LEIA: Occasionally (a little smile, haltingly) maybe...when you aren't +acting like a scoundrel. + +HAN: (laughs) Scoundrel? Scoundrel? I like the sound of that. + + With that, Han takes her hand and starts to massage it. + +LEIA: Stop that. + +HAN: Stop what? + + Leia is flushes, confused. + +LEIA: Stop that! My hands are dirty. + +HAN: My hands are dirty, too. What are you afraid of? + +LEIA: (looking right into his eyes) Afraid? + + Han looks at her with a piercing look. He's never looked + more handsome, more dashing, more confident. He reaches out + slowly and takes Leia's hand again from where it is resting + on a console. He draws it toward him. + +HAN: You're trembling. + +LEIA: I'm not trembling. + + Then with an irresistible combination of physical strength + and emotional power, the space pirate begins to draw Leia + toward him...very slowly. + +HAN: You like me because I'm a scoundrel. There aren't enough +scoundrels in your life. + + Leia is now very close to Han and as she speaks, her voice + becomes an excited whisper, a tone completely in opposition to + her words. + +LEIA: I happen to like nice men. + +HAN: I'm a nice man. + +LEIA: No, you're not. You're... + + He kisses her now, with slow, hot lips. He takes his time, + as though he had forever, bending her body backward. She has + never been kissed like this before, and it almost makes her + faint. When he stops, she regains her breath and tries to work + up some indignation, but finds it hard to talk. + Suddenly, Threepio appears in the doorway, speaking + excitedly. + +THREEPIO: Sir, sir! I've isolated the reverse power flux coupling. + + Han turns slowly, icily, from their embrace. + +HAN: Thank you. Thank you very much. + +THREEPIO: Oh, you're perfectly welcome, sir. + + The moment spoiled, Han marches out after Threepio. + +EXTERIOR: SPACE -- ASTEROID FIELD + + The Imperial fleet moves through the asteroid-filled void, + intently seeking its prey. + +INTERIOR: VADER'S STAR DESTROYER -- BRIDGE + + Asteroids collide, creating a fireworks display outside the + bridge window. Darth Vader stands, staring out the window + above the control deck. Then slowly turns toward the bridge. + Before him are the hologram images of twenty battleship + commanders. One of these images, the commander of a ship that + has just exploded, is fading away quickly. Another image, in + the center and a little apart from the others, is faded and + continually disrupted by static. It is the image of Captain + Needa, commander of the Star Destroyer most hotly on the tail + of the Millennium Falcon. Admiral Piett and an aide stand + behind the Dark Lord. + +NEEDA: (in hologram)...and that, Lord Vader, was the last time they +appeared in any of our scopes. Considering the amount of damage we've +sustained, they must have been destroyed. + +VADER: No, Captain, they're alive. I want every ship available to +sweep the asteroid field until they are found. + + The Imperial star captains fade out one by one as Vader + turns to Admiral Piett. + +PIETT: Lord Vader. + +VADER: Yes, Admiral, what is it? + + The admiral is scared, his face white as a sheet. + +PIETT: The Emperor commands you make contact with him. + +VADER: Move the ship out of the asteroid field so that we can send a +clear transmission. + +PIETT: Yes, my lord. + +EXTERIOR: ASTEROID FIELD -- VADER'S STAR DESTROYER + + Vader's Imperial Star Destroyer moves against the vast sea + of stars away from the rest of the fleet. + +INTERIOR: VADER'S STAR DESTROYER -- VADER'S CHAMBER + + The Dark Lord, Darth Vader, is alone in his chamber. A + strange sound enters the room and a light begins to play + across Vader's black figure. He looks up and bows quickly. + A twelve-foot hologram of the Galactic Emperor materializes + before Vader. The Emperor's dark robes and monk's hood are + reminiscent of the cloak worn by Ben Kenobi. His voice is even + deeper and more frightening than Vader's. + +VADER: What is thy bidding, my master? + +EMPEROR: There is a great disturbance in the Force. + +VADER: I have felt it. + +EMPEROR: We have a new enemy -- Luke Skywalker. + +VADER: Yes, my master. + +EMPEROR: He could destroy us. + +VADER: He's just a boy. Obi-Wan can no longer help him. + +EMPEROR: The Force is strong with him. The son of Skywalker must not +become a Jedi. + +VADER: If he could be turned, he would become a powerful ally. + +EMPEROR: Yes. Yes. He would be a great asset. Can it be done? + +VADER: He will join us or die, my master. + + Vader kneels. The supreme Emperor passes a hand over the + crouched Lord of the Sith and fades away. + +EXTERIOR: DAGOBAH -- CREATURE'S HOUSE -- NIGHT + + A heavy downpour of rain pounds through the gnarled trees. + A strange baroque mud house sits on a moss-covered knoll on + the edge of a small lagoon. The small, gnomish structure + radiates a warm glow from its thick glass windows. As rain + tap-dances a merry tune on Artoo's head, the stubby little + droid rises up on his tip-toes to peek into one of the glowing + portals. + +INTERIOR: CREATURE'S HOUSE + + Artoo, peeking in the window, sees the inside of the house + -- a very plain, but cozy dwelling. Everything is in the same + small scale as the creature. The only thing out of place in + the miniature room is Luke, whose height makes the four-foot + ceiling seem even lower. He sits cross-legged on the floor of + the living room. + The creature is in an adjoining area -- his little kitchen + -- cooking up an incredible meal. The stove is a steaming + hodgepodge of pots and pans. The wizened little host scurries + about chopping this, shredding that, and showering everything + with exotic herbs and spices. He rushes back and forth putting + platters on the table in front of Luke, who watches the + creature impatiently. + +LUKE: Look, I'm sure it's delicious. I just don't understand why we +can't see Yoda now. + +CREATURE: Patience! For the Jedi it is time to eat as well. Eat, eat. +Hot. Good food, hm? Good, hmm? + + Moving with some difficulty in the cramped quarters, Luke + sits down near the fire and serves himself from the pot. + Tasting the unfamiliar concoction, he is pleasantly surprised. + +LUKE: How far away is Yoda? Will it take us long to get there? + +CREATURE: Not far. Yoda not far. Patience. Soon you will be with him. +(tasting food from the pot) Rootleaf, I cook. Why wish you become +Jedi? Hm? + +LUKE: Mostly because of my father, I guess. + +CREATURE: Ah, your father. Powerful Jedi was he, powerful Jedi, mmm. + +LUKE: (a little angry) Oh, come on. How could you know my father? You +don't even know who I am. (fed up) Oh, I don't even know what I'm +doing here. We're wasting our time. + + The creature turns away from Luke and speaks to a third + party. + +CREATURE: (irritated) I cannot teach him. The boy has no patience. + + Luke's head spins in the direction the creature faces. But + there is no one there. The boy is bewildered, but it gradually + dawns on him that the little creature is Yoda, the Jedi + Master, and that he is speaking with Ben. + +BEN'S VOICE: He will learn patience. + +YODA: Hmmm. Much anger in him, like his father. + +BEN'S VOICE: Was I any different when you taught me? + +YODA: Hah. He is not ready. + +LUKE: Yoda! I am ready. I...Ben! I can be a Jedi. Ben, tell him I'm +ready. + + Trying to see Ben, Luke starts to get up but hits his head + on the low ceiling. + +YODA: Ready, are you? What know you of ready? For eight hundred years +have I trained Jedi. My own counsel will I keep on who is to be +trained! A Jedi must have the deepest commitment, the most serious +mind. (to the invisible Ben, indicating Luke) This one a long time +have I watched. Never his mind on where he was. Hmm? What he was +doing. Hmph. Adventure. Heh! Excitement. Heh! A Jedi craves not these +things. (turning to Luke) You are reckless! + + Luke looks down. He knows it is true. + +BEN'S VOICE: So was I, if you'll remember. + +YODA: He is too old. Yes, too old to begin the training. + + Luke thinks he detects a subtle softening in Yoda's voice. + +LUKE: But I've learned so much. + + Yoda turns his piercing gaze on Luke, as though the Jedi + Master's huge eyes could somehow determine how much the boy + had learned. After a long moment, the little Jedi turns toward + where he alone sees Ben. + +YODA: (sighs) Will he finished what he begins? + +LUKE: I won't fail you -- I'm not afraid. + +YODA: (turns slowly toward him) Oh, you will be. You will be. + +EXTERIOR: SPACE -- STAR DESTROYERS -- ASTEROID FIELD + + The Imperial fleet around Vader's ship is surrounded by the + asteroid storm. Asteroids big and small pelt the vast + exteriors of the menacing ships. One of the smaller Imperial + vessels is hit by a huge asteroid and explodes in a brilliant + flash of light. + +INTERIOR: ASTEROID CAVE -- MILLENNIUM FALCON -- COCKPIT + + The cockpit is quiet and lit only by the indicator lights + on the control panel. Princess Leia sits in the pilot's seat. + She runs her hand across the control panel as she thinks of + Han and the confusion he has created within her. Suddenly, + something outside the cockpit window catches her eye. The + reflection of the panel lights obscures her vision until a + soft suctionlike cup attaches itself to the windscreen. Leia + moves closer to see what it might be. Large, yellow eyes flash + open and stare back at her. Startled, she jumps back into her + seat, her heart pounding. There is a scurry of feet and a loud + screech, and in an instant the eyes are gone. The young + princess catches her breath, jumps out of her chair, and races + from the cockpit. + +INTERIOR: ASTEROID CAVE -- MILLENNIUM FALCON -- HOLD AREA + + The lights go bright for a second then out again. Threepio + and Chewbacca watch as Han finishes with some wires. + +THREEPIO: Sir, if I may venture an opinion... + +HAN: I'm not really interested in your opinion, Threepio. + + Leia rushes into the cabin just as Han drops the final + floor panel into place. + +LEIA: (out of breath) There's something out there. + +HAN: Where? + +LEIA: Outside, in the cave. + + As she speaks, there comes a sharp banging on the hull. + Chewie looks up and barks anxiously. + +THREEPIO: There it is. Listen! Listen! + +HAN: I'm going out there. + +LEIA: Are you crazy?! + +HAN: I just got this bucket back together. I'm not going to let +something tear it apart. + + He and Chewie grab their breath masks off a rack and hurry + out. Leia follows. + +LEIA: Then I'm going with you. + +THREEPIO: I think it might be better if I stay here and guard the +ship. (hears another mysterious noise) Oh, no. + +EXTERIOR: ASTEROID CAVE -- MILLENNIUM FALCON + + It is very dark inside the huge asteroid cave, too dark to + see what is attacking the ship. + Leia stamps her foot on the floor of the cave. + +LEIA: This ground sure feels strange. It doesn't feel like rock at +all. + + Han kneels and studies the ground, then attempts to study + the outline of the cave. + +HAN: There's an awful lot of moisture in here. + +LEIA: I don't know. I have a bad feeling about this. + +HAN: Yeah. + + Chewie barks through his face mask, and points toward the + ship's cockpit. A five-foot-long shape can be seen moving + across the top of the Falcon. The leathery creature lets out a + screech as Han blasts it with a laser bolt. + +HAN: (to Leia) Watch out! + + The black shape tumbles off the spaceship and onto the + ground in front of the princess. Han bends down to investigate + the dead creature. + +HAN: Yeah, that's what I thought. Mynock. Chewie, check the rest of +the ship, make sure there aren't any more attached. They're chewing on +the power cables. + +LEIA: Mynocks? + +HAN: Go on inside. We'll clean them off if there are any more. + + Just then, a swarm of the ugly creatures swoops through the + air. Leia puts her arms over her head to protect herself as + she runs toward the ship. Chewie shoos another Mynock away + with his blaster. Several of the batlike creatures flap their + wings loudly against the cockpit window of the Falcon. Inside, + Threepio shudders at their presence. + +THREEPIO: Ohhh! Go away! Go away! Beastly thing. Shoo! Shoo! + + Han looks around the strange, dripping cave. + +HAN: Wait a minute... + + He unholsters his blaster and fires at the far side of the + huge cave. The cavern begins to shake and the ground starts to + buckle. + Chewie barks and moves for the ship, followed closely by + Leia and Han. The large wings of the Mynocks flap past them as + they protect their faces and run up the platform. + +INTERIOR: ASTEROID CAVE -- MILLENNIUM FALCON -- ENTRY AREA + + As soon as Han and Leia are on board, Chewie closes the + main hatch. The ship continues to shake and heave. + +HAN: All right, Chewie, let's get out of here! + + The Wookiee heads for the cockpit as Han, followed by + Threepio, rushes to the hold area and checks the scopes on the + control panel. Leia hurries after. + +LEIA: The Empire is still out there. I don't think it's wise to... + + Han rushes past her and heads for the cockpit. + +HAN: (interrupting) No time to discuss this as a committee. + + And with that he is gone. The main engines of the Falcon + begin to whine. Leia races after him, bouncing around in the + shaking ship. + +LEIA: (angry) I am not a committee! + +INTERIOR: ASTEROID CAVE -- MILLENNIUM FALCON -- COCKPIT + + Han is already in the pilot's seat pulling back on the + throttle. The cave-quake has greatly diminished. + +LEIA: You can't make the jump to light-speed in this asteroid field... + +HAN: Sit down, sweetheart. We're taking off! + + As the ship begins to move forward, Chewie barks. He + notices something out the window ahead. Threepio sees it too. + +THREEPIO: Look! + +HAN: I see it, I see it. + + Suddenly, a row of jagged white stalagmites and stalactites + can be seen surrounding the entrance. And as the Falcon moves + forward, the entrance to the cave grows ever smaller. Han + pulls hard on the throttle, sending his ship surging forward. + +THREEPIO: We're doomed! + +LEIA: The cave is collapsing. + +HAN: This is no cave. + +LEIA: What? + + Leia's mouth drops open . She sees that the rocks of the + cave entrance are not rocks at all, but giant teeth, quickly + closing around the tiny ship. Chewie howls. + +INTERIOR: SPACE SLUG MOUTH + + The Millennium Falcon, zooming through the monster's mouth, + rolls on its side and barely makes it between two of the + gigantic white teeth before the huge jaws slams closed. + +EXTERIOR: CAVE ENTRANCE -- GIANT ASTEROID + + The enormous space slug moves its head out of the cave as + the Falcon flies out of its mouth. The monster tilts its head, + watching the starship fly away. + +EXTERIOR: MILLENNIUM FALCON -- GIANT ASTEROID + + The Falcon races out of the asteroid crater and into the + deadly rain of the asteroid storm. + +EXTERIOR: DAGOBAH -- DAY + + With Yoda strapped to his back, Luke climbs up one of the + many thick vines that grow in the swamp. Panting heavily, he + continues his course -- climbing, flipping through the air, + jumping over roots, and racing in and out of the heavy ground + fog. + +YODA: Run! Yes. A Jedi's strength flows from the Force. But beware of +the dark side. Anger...fear...aggression. The dark side of the Force +are they. Easily they flow, quick to join you in a fight. If once you +start down the dark path, forever will it dominate your destiny, +consume you it will, as it did Obi-Wan's apprentice. + +LUKE: Vader. Is the dark side stronger? + +YODA: No...no...no. Quicker, easier, more seductive. + +LUKE: But how am I to know the good side from the bad? + +YODA: You will know. When you are calm, at peace. Passive. A Jedi uses +the Force for knowledge and defense, never for attack. + +LUKE: But tell me why I can't... + +YODA: (interrupting) No, no, there is no why. Nothing more will I +teach you today. Clear your mind of questions. Mmm. Mmmmmm. + + Artoo beeps in the distance as Luke lets Yoda down to the + ground. Breathing heavily, he takes his shirt from a nearby + tree branch and pulls it on. + He turns to see a huge, dead, black tree, its base + surrounded by a few feet of water. Giant, twisted roots form a + dark and sinister cave on one side. Luke stares at the tree, + trembling. + +LUKE: There's something not right here. + + Yoda sits on a large root, poking his Gimer Stick into the + dirt. + +LUKE: I feel cold, death. + +YODA: That place...is strong with the dark side of the Force. A domain +of evil it is. In you must go. + +LUKE: What's in there? + +YODA: Only what you take with you. + + Luke looks warily between the tree and Yoda. He starts to + strap on his weapon belt. + +YODA: Your weapons...you will not need them. + + Luke gives the tree a long look, than shakes his head "no." + Yoda shrugs. Luke reaches up to brush aside some hanging vines + and enters the tree. + +INTERIOR: DAGOBAH -- TREE CAVE + + Luke moves into the almost total darkness of the wet and + slimy cave. The youth can barely make out the edge of the + passage. Holding his lit saber before him, he sees a lizard + crawling up the side of the cave and a snake wrapped around + the branches of a tree. Luke draws a deep breath, then pushes + deeper into the cave. + The space widens around him, but he feels that rather than + sees it. His sword casts the only light as he peers into the + darkness. It is very quiet here. + Then, a loud hiss! Darth Vader appears across the + blackness, illuminated by his own just-ignited laser sword. + Immediately, he charges Luke, saber held high. He is upon the + youth in seconds, but Luke sidesteps perfectly and slashes at + Vader with his sword. + Vader is decapitated. His helmet-encased head flies from + his shoulders as his body disappears into the darkness. The + metallic banging of the helmet fills the cave as Vader's head + spins and bounces, smashes on the floor, and finally stops. + For an instant it rests on the floor, then it cracks + vertically. The black helmet and breath mask fall away to + reveal...Luke's head. + Across the space, the standing Luke gasps at the sight, + wide-eyed in terror. + The decapitated head fades away, as in a vision. + +EXTERIOR: DAGOBAH -- CAVE -- DUSK + + Meanwhile, Yoda sits on the root, calmly leaning on his + Gimer Stick. + +EXTERIOR: SPACE -- VADER'S STAR DESTROYER + + Vader's Imperial Star Destroyer moves through space, + guarded by its convoy of TIE fighters. + +INTERIOR: VADER'S STAR DESTROYER -- BRIDGE -- CONTROL DECK + + Vader stands in the back control area of his ship's bridge + with a motley group of men and creatures. Admiral Piett and + two controllers stand at the front of the bridge and watch the + group with scorn. + +PIETT: Bounty hunters. We don't need that scum. + +FIRST CONTROLLER: Yes, sir. + +PIETT: Those Rebels won't escape us. + + A second controller interrupts. + +SECOND CONTROLLER: Sir, we have a priority signal from the Star +Destroyer Avenger. + +PIETT: Right. + + The group standing before Vader is a bizarre array of + galactic fortune hunters: There is Bossk, a slimy, tentacled + monster with two huge, bloodshot eyes in a soft baggy face; + Zuckuss and Dengar, two battle-scarred, mangy human types; + IG-88, a battered, tarnished chrome war droid; and Boba Fett, + a man in a weapon-covered armored space suit. + +VADER: ...there will be a substantial reward for the one who finds +the Millennium Falcon. You are free to use any methods necessary, but +I want them alive. No disintegrations. + +BOBA FETT: As you wish. + + At that moment, Admiral Piett approaches Vader in a rush of + excitement. + +PIETT: Lord Vader! My lord, we have them. + +EXTERIOR: IMPERIAL STAR DESTROYER, AVENGER -- ASTEROID BELT + + The Millennium Falcon speeds through deep space, closely + followed by a firing Imperial Star Destroyer. A large asteroid + about the same size as the Falcon tumbles rapidly toward the + starship. The tiny Falcon banks to avoid the giant asteroid as + smaller rocks pelt its surface. Then the small craft roars + under the asteroid which explodes harmlessly on the hull of + the vast Star Destroyer. + +INTERIOR: MILLENNIUM FALCON -- COCKPIT + + The ship shudders as flak explodes near the cockpit window. + Threepio checks a tracking scope an the side control panel + while Leia watches tensely out the window. + +THREEPIO: Oh, thank goodness we're coming out of the asteroid field. + + Chewie barks excitedly as the rain of asteroids begins to + subside. A bolt from the Star Destroyer sets up a fiery + explosion on the back side of the Falcon, causing it to lurch + to one side. + +EXTERIOR: MILLENNIUM FALCON -- STAR DESTROYER, AVENGER -- ASTEROID FIELD + + The Falcon is hit hard by another bolt from the Star + Destroyer which creates a huge explosion near the cockpit of + the smaller ship. The Falcon tilts steeply, then rights + itself. + +INTERIOR: MILLENNIUM FALCON -- COCKPIT + + Han corrects the angle of his ship. + +HAN: Let's get out of here. Ready for light-speed? One...two...three! + + Han pulls back on the hyperspace throttle and -- nothing + happens. Flak bursts continue to rock the ship. + +HAN: (frantic) It's not fair! + + Chewie is very angry and starts to growl and bark at his + friend and captain. Again, Han desperately pulls back on the + throttle. + +HAN: The transfer circuits are working. It's not my fault! + + Chewie puts his head in his hands, whining. + +LEIA: (almost expecting it) No light-speed? + +HAN: It's not my fault. + +THREEPIO: Sir, we just lost the main rear deflector shield. One more +direct hit on the back quarter and we're done for. + + Han pauses for a moment, makes a decision, and pulls back + on a lever. + +HAN: Turn her around. + + Chewie barks in puzzlement. + +HAN: I said turn her around! I'm going to put all power in the front +shield. + +LEIA: You're going to attack them?! + +THREEPIO: Sir, the odds of surviving a direct assault on an Imperial +Star Destroyer... + +LEIA: Shut up! + +EXTERIOR: SPACE -- MILLENNIUM FALCON -- ASTEROID FIELD + + The Falcon banks, makes a steep, twisting turn. In the + next moment it is racing toward the Star Destroyer, looking + very small against the massive surface of the Imperial ship. + As it moves across the surface of the Star Destroyer, the + Falcon bobs and weaves to avoid the numerous flak bursts. + +INTERIOR: STAR DESTROYER, AVENGER -- BRIDGE + + The tiny Falcon heads directly for the Avenger's bridge. + The Imperials stationed there are stunned to see the small + spaceship racing low across the hull, headed directly at the + huge windows of the bridge area. Alarms go off everywhere. The + Destroyer's commander, Captain Needa, can scarcely believe his + eyes. + +NEEDA: They're moving to attack position. Shields up! + + Needa and his men duck as the Falcon nears the bridge + window. At the last minute, the Falcon veers off and out of + sight. All is quiet. + +NEEDA: Track them,. They may come around for another pass. + +TRACKING OFFICER: Captain Needa, the ship no longer appears on our +scopes. + +NEEDA: They can't have disappeared. No ship that small has a cloaking +device. + +TRACKING OFFICER: Well, there's no trace of them, sir. + +COMMUNICATIONS OFFICER: Captain, Lord Vader demands an update on the +pursuit. + +NEEDA: (drawing a breath) Get a shuttle ready. I shall assume full +responsibility for losing them, and apologize to Lord Vader. +Meanwhile, continue to scan the area. + +COMMUNICATIONS OFFICER: Yes, Captain Needa. + +EXTERIOR: DAGOBAH -- BOG -- DAY + + Luke's face is upside-down and showing enormous strain. He + stands on his hands, with Yoda perched on his feet. Opposite + Luke and Yoda are two rocks the size of bowling balls. Luke + stares at the rocks and concentrates. One of the rocks lifts + from the ground and floats up to rest on the other. + +YODA: Use the Force. Yes... + + Yoda taps Luke's leg. Quickly, Luke lifts one hand from the + ground. His body wavers, but he maintains his balance. Artoo, + standing nearby, is whistling and beeping frantically. + +YODA: Now...the stone. Feel it. + + Luke concentrates on trying to lift the top rock. It rises + a few feet, shaking under the strain. But, distracted by + Artoo's frantic beeping, Luke loses his balance and finally + collapses. Yoda jumps clear. + +YODA: Concentrate! + + Annoyed at the disturbance, Luke looks over at Artoo, who + is rocking urgently back and forth in front of him. + Artoo waddles closer to Luke, chirping wildly, then scoots + over the edge of the swamp. Catching on, Luke rushes to the + water's edge. The X-wing fighter has sunk, and only the tip of + its nose shows above the lake's surface. + +LUKE: Oh, no. We'll never get it out now. + + Yoda stamps his foot in irritation. + +YODA: So certain are you. Always with you it cannot be done. Hear you +nothing that I say? + + Luke looks uncertainly out at the ship. + +LUKE: Master, moving stones around is one thing. This is totally +different. + +YODA: No! No different! Only different in your mind. You must unlearn +what you have learned. + +LUKE: (focusing, quietly) All right, I'll give it a try. + +YODA: No! Try not. Do. Or do not. There is no try. + + Luke closes his eyes and concentrates on thinking the ship + out. + Slowly, the X-wing's nose begins to rise above the water. + It hovers for a moment and then slides back, disappearing once + again. + +LUKE: (panting heavily) I can't. It's too big. + +YODA: Size matters not. Look at me. Judge me by my size, do you? Hm? +Mmmm. + + Luke shakes his head. + +YODA: And well you should not. For my ally in the Force. And a +powerful ally it is. Life creates it, makes it grow. It's energy +surrounds us and binds us. Luminous beings are we...(Yoda pinches +Luke's shoulder)...not this crude matter. (a sweeping gesture) You must +feel the Force around you. (gesturing) Here, between you...me...the +tree...the rock...everywhere! Yes, even between this land and that +ship! + +LUKE: (discouraged) You want the impossible. + + Quietly Yoda turns toward the X-wing fighter. With his eyes + closed and his head bowed, he raises his arm and points at the + ship. + Soon, the fighter rises above the water and moves forward + as Artoo beeps in terror and scoots away. + The entire X-wing moves majestically, surely, toward the + shore. Yoda stands on a tree root and guides the fighter + carefully down toward the beach. + Luke stares in astonishment as the fighter settles down + onto the shore. He walks toward Yoda. + +LUKE: I don't...I don't believe it. + +YODA: That is why you fail. + + Luke shakes his head, bewildered. + +EXTERIOR: SPACE -- IMPERIAL FLEET + + The fleet around Vader's Star Destroyer now includes + Needa's Star Destroyer, the Avenger. + +INTERIOR: VADER'S STAR DESTROYER -- BRIDGE + +VADER: Apology accepted, Captain Needa. + + Clutching desperately at his throat, Captain Needa slumps + down, then falls over on his back, at the feet of Darth Vader. + Two stormtroopers pick up the lifeless body and carry it + quickly away as Admiral Piett and two of his captains hurry up + to the Dark Lord. + +PIETT: Lord Vader, our ships have completed their scan of the area and +found nothing. If the Millennium Falcon went into light-speed, it'll +be on the other side of the galaxy by now. + +VADER: Alert all commands. Calculate every possible destination along +their last know trajectory. + +PIETT: Yes, my lord. We'll find them. + +VADER: Don't fail me again, Admiral. + + Vader exits as the admiral turns to an aide, a little more + uneasy than when he arrived. + +PIETT: Alert all commands. Deploy the fleet. + +EXTERIOR: SPACE -- IMPERIAL FLEET + + Vader's ship moves away, flanked by its fleet of smaller + ships. the Avenger glides off into space in the opposite + direction. No one on that ship or on Vader's is aware that, + clinging to the side of the Avenger, is the pirateship, the + Millennium Falcon. + +INTERIOR: MILLENNIUM FALCON -- COCKPIT + +THREEPIO: Captain Solo, this time you have gone too far. (Chewie +growls) No, I will not be quiet, Chewbacca. Why doesn't anyone listen +to me? + +HAN: (to Chewie) The fleet is beginning to break up. Go back and stand +by the manual release for the landing claw. + + Chewie barks, struggles from his seat, and climbs out of + the cabin. + +THREEPIO: I really don't see how thats going to help. Surrender is a +perfectly acceptable alternative in extreme circumstances. The Empire +may be gracious enough... + + Leia reaches over and shuts off Threepio, mid-sentence. + +HAN: Thank you. + +LEIA: What did you have in mind for your next move? + +HAN: Well, if they follow standard Imperial procedure, they'll dump +their garbage before they go to light-speed, then we just float away. + +LEIA: With the rest of the garbage. Then what? + +HAN: Then we've got to find a safe port somewhere around here. Got any +ideas? + +LEIA: No. Where are we? + +HAN: The Anoat system. + +LEIA: Anoat system. There's not much there. + +HAN: No. Well, wait. This is interesting. Lando. + + He points to a computer mapscreen on the control panel. + Leia slips out of her chair and moves next to the handsome + pilot. Small light points representing several systems flash + by on the computer screen. + +LEIA: Lando system? + +HAN: Lando's not a system, he's a man. Lando Calrissian. He's a card +player, gambler, scoundrel. You'd like him. + +LEIA: Thanks. + +HAN: Bespin. It's pretty far, but I think we can make it. + +LEIA: (reading from the computer) A mining colony? + +HAN: Yeah, a Tibanna gas mine. Lando conned somebody out of it. We go +back a long way, Lando and me. + +LEIA: Can you trust him? + +HAN: No. But he has no love for the Empire, I can tell you that. + + Chewie barks over the intercom. Han quickly changes his + readouts and stretches to look out the cockpit window. + +HAN: (into intercom) Here we go, Chewie. Stand by. Detach! + + Han leans back in his chair and gives Leia an invisible + smile. She thinks for a moment, shakes her head; a grin creeps + across her face and she gives him a quick kiss. + +LEIA: You do have your moments. Not many, but you have them. + +EXTERIOR: SPACE -- IMPERIAL STAR DESTROYER + + As the Avenger Star Destroyer moves slowly into space, the + hatch on its underbelly opens, sending a trail of junk behind + it. Hidden among the refuse, the Falcon tumbles away. In the + next moment, the Avenger roars off into hyperspace. The + Falcon's engines are ignited, and it races off into the + distance. Amidst the slowly drifting junk, Boba Fett's ship + appears and moves after the Falcon. + +EXTERIOR: DAGOBAH -- BOG -- CLEARING -- DAY + + In the clearing behind Yoda's house, Luke again stands + upside-down, but his face shows less strain and more + concentration than before. Yoda sits on the ground below the + young warrior. On the other side of the clearing, two + equipment cases slowly rise into the air. Nearby Artoo + watches, humming to himself, when suddenly he, too, rises into + the air. His little legs kick desperately and his head turns + frantically, looking for help. + +YODA: Concentrate...feel the Force flow. Yes. Good. Calm, yes. Through +the Force, things you will see. Other places. The future...the past. +Old friends long gone. + + Luke suddenly becomes distressed. + +LUKE: Han! Leia! + + The two packing boxes and Artoo fall to the ground with a + crash, then Luke himself tumbles over. + +YODA: (shaking his head) Hmm. Control, control. You must learn control. + +LUKE: I saw...I saw a city in the clouds. + +YODA: Mmm. Friends you have there. + +LUKE: They were in pain. + +YODA: It is the future you see. + +LUKE: Future? Will they die? + + Yoda closes his eyes and lowers his head. + +YODA: Difficult to see. Always in motion is the future. + +LUKE: I've got to go to them. + +YODA: Decide you must how to serve them best. If you leave now, help +them you could. But you would destroy all for which they have fought +and suffered. + + Luke is stopped cold by Yoda's words. Gloom shrouds him as + he nods his head sadly. + +EXTERIOR: BESPIN SYSTEM -- MILLENNIUM FALCON -- DAWN + + The powerful pirate starship blasts through space as it + heads toward the soft pink planet of Bespin. + +EXTERIOR: BESPIN SURFACE -- MILLENNIUM FALCON + + It is down on the gaseous planet. Huge billowing clouds + form a canyon as the ship banks around them, heading toward + the system's Cloud City. + Suddenly, two twin-pod cloud cars appear and move toward + the Falcon. The cloud cars draw up alongside the starship. + +INTERIOR: MILLENNIUM FALCON -- COCKPIT + + One of the cloud cars opens fire on the Falcon, its flak + rocking the ship. Chewie barks his concern. + +HAN: (into transmitter) No, I don't have a landing permit. I'm trying +to reach Lando Calrissian. + + More flak bursts outside the cockpit window and rattles the + ship's interior. Leia looks worried. + +HAN: (into transmitter) Whoa! Wait a minute! Let me explain. + +INTERCOM VOICE: You will not deviate from your present course. + +THREEPIO: Rather touchy, aren't they? + +LEIA: I thought you knew this person. + + Chewie barks and growls at his boss. + +HAN: (to Chewie) Well, that was a long time ago. I'm sure he's +forgotten about that. + +INTERCOM VOICE: Permission granted to land on Platform +Three-two-seven. + +HAN: (into transmitter) Thank you. + + Angry, Han snaps off the intercom. Chewie looks at him and + grunts. Han turns to the worried princess and her droid. + +HAN: There's nothing to worry about. We go way back, Lando and me. + + Leia doesn't look convinced. + +LEIA: Who's worried? + +EXTERIOR: CLOUD CITY -- MILLENNIUM FALCON -- CLOUD CARS + + The clouds part to reveal a full view of the city as it + bobs in and out of the cloud surface. The cloud cars and the + Falcon head for the gleaming white metropolis. + +EXTERIOR: CLOUD CITY -- LANDING PLATFORM -- MILLENNIUM FALCON + + With the cloud cars still guarding it, the Falcon lands on + one of the Cloud City's platforms. + +EXTERIOR: LANDING PLATFORM -- DOOR OF MILLENNIUM FALCON + + Han and Leia stand at the open door, armed. Behind them, + Chewie, also armed, surveys the scene warily. + +THREEPIO: Oh. No one to meet us. + +LEIA: I don't like this. + +HAN: Well, what would you like? + +THREEPIO: Well, they did let us land. + +HAN: Look, don't worry. Everything's going to be fine. Trust me. + +INTERIOR: CLOUD CITY -- CORRIDOR -- DAY + + Lando Calrissian, a suave, dashing black man in his + thirties, leads a group of aides and some Cloud City guard + rapidly toward the landing platform. The group, like the other + citizens of the city, is a motley collection of aliens, + droids, and humans of all descriptions. Lando has a grim + expression on his face as he moves onto the landing platform. + +EXTERIOR: LANDING PLATFORM -- DOOR OF MILLENNIUM FALCON + +HAN: See? My friend. (to Chewie) Keep your eyes open, okay? + + Chewie growls as Han walks down the ramp. Lando and his men + head across the bridge to meet the space pirate. + +EXTERIOR: CLOUD CITY -- LANDING PLATFORM + + Lando stops ten feet from Han. The two men eye each other + carefully. Lando shakes his head. + +LANDO: Why, you slimy, double-crossing, no-good swindler! You've got a +lot of guts coming here, after what you pulled. + + Han points to himself innocently, mouthing, "Me?" + Lando moves threateningly toward Han. Suddenly, he throws + his arms around his startled, long-lost friend and embraces + him. + +LANDO: (laughs) How you doing, you old pirate? So good to see you! I +never thought I'd catch up with you again. Where you been? + + The two old friends embrace, laughing and chuckling. + +EXTERIOR: LANDING PLATFORM -- DOOR OF MILLENNIUM FALCON. + +THREEPIO: Well, he seems very friendly. + +LEIA: (wary) Yes...very friendly. + +EXTERIOR: CLOUD CITY -- LANDING PLATFORM + +LANDO: What are you doing here? + +HAN: (gestures toward the Falcon) Ahh...repairs. I thought you could +help me out. + +LANDO: (in mock panic) What have you done to my ship? + +HAN: Your ship? Hey, remember, you lost her to me fair and square. + + Chewie growls a reserved greeting. Lando suddenly notices + the princess and smiles. + +LANDO: Hello. What have we here? Welcome. I'm Lando Calrissian. I'm +the administrator of this facility. and who might you be? + +LEIA: Leia. + +LANDO: Welcome, Leia. + + Lando bows before Leia and kisses her hand. + +HAN: All right, all right, you old smoothie. + + Han takes Leia by the hand and steers her away from Lando. + +THREEPIO: Hello, sir. I am See-Threepio, human-cyborg relations. My +facilities are at your... + + Before Threepio can finish his self-introduction, Lando has + turned to follow Han and Leia, who are walking toward the + city. + +THREEPIO: Well, really! + + Lando, his aide, Lobot, and Han lead the way across the + bridge, followed by Threepio, Chewie and Leia. + +LANDO: What's wrong with the Falcon? + +HAN: Hyperdrive. + +LANDO: I'll get my people to work on it. + +HAN: Good. + + Lando turns to Leia. + +LANDO: You know, that ship saved my life quite a few times. She's the +fastest hunk of junk in the galaxy. + +INTERIOR: CLOUD CITY -- CORRIDOR + + The group has crossed the narrow bridge and entered the + city. They walk down the lovely Art Deco passageway, rounding + several corners and passing many small plazas as they go. + Threepio lags a bit behind. + +HAN: How's the gas mine? Is it paying off for you? + +LANDO: Oh, not as well as I'd like. We're a small outpost and not very +self-sufficient. And I've had supply problems of every kind. I've had +labor difficulties...(catches Han grinning at him) What's so funny? + +HAN: You. Listen to you -- you sound like a businessman, a responsible +leader. Who'd have thought that, huh? + + Lando is reflective. He looks at Han a moment. + +LANDO: You know, seeing you sure brings back a few things. + +HAN: Yeah. + +LANDO: (shakes his head) Yeah, I'm responsible these days. It's the +price you pay for being successful. + + Han and Lando laugh together, and the group moves on + through the corridor. + The lagging Threepio passes a Threepio-type silver droid + who is coming out of a door. + +THREEPIO: Oh! Nice to see a familiar face. + +SECOND THREEPIO: (mumbles) E chu ta! + +THREEPIO: How rude! + + Threepio stops, watching the silver droid move away. Then + he hears the muffled beeping and whistling of an R2 unit + coming from within the room. + +INTERIOR: CLOUD CITY -- ANTEROOM + + Curious, Threepio enters the room. + +THREEPIO: That sounds like an R2 unit in there. I wonder if... + + Threepio walks through the doorway to the main room. He + looks in. + +THREEPIO: Hello? How interesting. Oh, my. + +MAN'S VOICE: (from within) Who are you? + +THREEPIO: Oh, I'm terribly sorry. I...I didn't mean to intrude. No, +no, please don't get up. No! + + A laser bolt to Threepio's chest sends him flying in twenty + directions. Smoldering mechanical arms and legs bounce off the + walls as the door whooshes closed behind him. + +INTERIOR: CLOUD CITY -- CORRIDOR + + Lando, Han, and Leia continue down the corridor unaware of + Threepio's dreadful accident. Chewbacca glances around, sniffs + the air, but shrugs his shoulders and follows the group. + +EXTERIOR: DAGOBAH -- BOG -- DUSK + + In the bright lights of the fighter, Luke loads a heavy + case into the belly of the ship. Artoo sits on top of the + X-wing, settling down into his cubbyhole. Yoda stands nearby + on a log. + +YODA: Luke! You must complete the training. + +LUKE: I can't keep the vision out of my head. They're my friends. I've +got to help them. + +YODA: You must not go! + +LUKE: But Han and Leia will die if I don't. + +BEN'S VOICE: You don't know that. + + Luke looks toward the voice in amazement. Ben has + materialized as a real, slightly shimmering image near Yoda. + The power of his presence stops Luke. + +BEN: Even Yoda cannot see their fate. + +LUKE: But I can help them! I feel the Force! + +BEN: But you cannot control it. This is a dangerous time for you, when +you will be tempted by the dark side of the Force. + +YODA: Yes, yes. To Obi-Wan you listen. The cave. Remember your failure +at the cave! + +LUKE: But I've learned so much since then. Master Yoda, I promise to +return and finish what I've begun. You have my word. + +BEN: It is you and your abilities the Emperor wants. that is why your +friends are made to suffer. + +LUKE: And that is why I have to go. + +BEN: Luke, I don't want to lose you to the Emperor the way I lost +Vader. + +LUKE: You won't. + +YODA: Stopped they must be. On this depends. Only a fully trained Jedi +Knight with the Force as his ally will conquer Vader and his Emperor. +If you end your training now, if you choose the quick and easy path, +as Vader did, you will become an agent of evil. + +BEN: Patience. + +LUKE: And sacrifice Han and Leia? + +YODA: If you honor what they fight for...yes! + + Luke is in great anguish. He struggles with the dilemma, a + battle raging in his mind. + +BEN: If you choose to face Vader, you will do it alone. I cannot +interfere. + +LUKE: I understand. (he moves to his X-wing) Artoo, fire up the +converters. + + Artoo whistles a happy reply. + +BEN: Luke, don't give in to hate -- that leads to the dark side. + + Luke nods and climbs into his ship. + +YODA: Strong is Vader. Mind what you have learned. Save you it can. + +LUKE: I will. And I'll return. I promise. + + Artoo closes the cockpit. Ben and Yoda stand watching as + the roar of the engines and the wind engulf them. + +YODA: (sighs) Told you, I did. Reckless is he. Now matters are worse. + +BEN: That boy is our last hope. + +YODA: (looks up) No. There is another. + +EXTERIOR: SPACE -- PLANET DAGOBAH + + Luke's tiny X-wing rockets away from the green planet of + Dagobah and off into space. + +INTERIOR: CLOUD CITY -- LIVING QUARTERS -- DAY + + Within the quarters assigned her on Cloud City, Leia paces + in agitation. She has changed from her cold-weather pants and + jacket to a lovely dress. Her hair is down, tied back with + ribbons. She moves from a large, open window and turns to see + Han entering through the doorway. + +HAN: The ship is almost finished. Two or Three more things and we're +in great shape. + +LEIA: The sooner the better. Something's wrong here. No one has seen +or knows anything about Threepio. He's been gone too long to have +gotten lost. + + Han takes Leia by the shoulders and gently kisses her + forehead. + +HAN: Relax. I'll talk to Lando and see what I can find out. + +LEIA: I don't trust Lando. + +HAN: Well, I don't trust him, either. But he is my friend. Besides, +we'll soon be gone. + +LEIA: And then you're as good as gone, aren't you? + + Not speaking, Han considers her words and gazes at her + troubled face. + +INTERIOR: CLOUD CITY -- JUNK ROOM + + The room is piled high with broken and discarded machine + parts. Four Ugnaughts, small hoglike creatures, separate the + junk and throw some pieces onto a conveyer belt which moves + briskly toward a pit of molten metal. Pieces of Threepio's + golden body move down the belt. Chewie enters the room and + spots an Ugnaught picking up and inspecting Threepio's head. + The Wookiee barks a command, startling the Ugnaught, then + reaches to grab the head. But the Ugnaught tosses it away from + him to another Ugnaught. This game of keep-away goes on until + Threepio's head falls from their grip and bounces with a clang + onto the ground. + +INTERIOR: CLOUD CITY -- LIVING QUARTERS -- DAY + + The door zaps open. Chewbacca walks in, carrying a packing + case of Threepio, arms and legs hanging over the edge. + +LEIA: What happened? + + Chewie sets the case on a table, grunting and groaning an + explanation. + +HAN: Where? Found him in a junk pile? + +LEIA: Oh, what a mess. Chewie, do you think you can repair him? + + The giant Wookiee studies the array of robot parts. He + looks at the princess and shrugs sadly. + +HAN: Lando's got people who can fix him. + +LEIA: No, thanks. + + There is a buzz and the door slides open, revealing Lando. + +LANDO: I'm sorry. Am I interrupting anything? + +LEIA: Not really. + +LANDO: You look absolutely beautiful. You truly belong here with us +among the clouds. + +LEIA: (coolly) Thank you. + +LANDO: Will you join me for a little refreshment? + + Han looks at Lando suspiciously, but Chewie barks at the + mention of food and licks his lips. + +LANDO: Everyone's invited, of course. + + Leia takes Lando's proffered arm, and the group turns to + go. Lando spots Threepio's remains. + +LANDO: Having trouble with you droid? + + Han and Leia exchange a quick glance. + +HAN: No. No problem. Why? + + Han and Leia move arm-in-arm through the door, followed by + Lando and Chewie. The door slides closed behind them. + +INTERIOR: CLOUD CITY -- CORRIDOR -- DAY + + Leia walks between Han and Lando as Chewie follows a short + distance behind. Long shafts of light pour across the corridor + between tall, pure-white columns. + +LANDO: So you see, since we're a small operation, we don't fall into +the...uh...jurisdiction of the Empire. + +LEIA: So you're part of the mining guild then? + +LANDO: No, not actually. Our operation is small enough not to be +noticed...which is advantageous for everybody since our customers are +anxious to avoid attracting attention to themselves. + + The group walks into another corridor and heads for a huge + doorway at the far end. + +HAN: Aren't you afraid the Empire's going to find out about this +little operation and shut you down? + +LANDO: That's always been a danger looming like a shadow over +everything we've built here. But things have developed that will +insure security. I've just made a deal that will keep the Empire out +of here forever. + +INTERIOR: CLOUD CITY -- DINING ROOM + + The mighty doors to the dining room slide open and the + group enters the dining room. At the far end of a huge banquet + table sits Darth Vader. Standing at his side and slightly + behind him is Boba Fett, the bounty hunter. + Faster than the wink of an eye, Han draws his blaster and + pops off a couple of shots directly at Vader. The Dark Lord + quickly raises his hand, deflecting the bolts into one of the + side walls, where they explode harmlessly. Just as quickly, + Han's weapon zips into Vader's hand. The evil presence calmly + places the gun on the table in front of him. + +VADER: We would be honored if you would join us. + + Han gives Lando a mean look. + +LANDO: I had no choice. They arrived right before you did. I'm sorry. + +HAN: I'm sorry, too. + +EXTERIOR: LUKE'S X-WING -- BESPIN SYSTEM + + Luke's X-wing races through thick clouds toward Cloud City. + +INTERIOR: LUKE'S X-WING -- COCKPIT + + Luke is grim-faced as he pilots his course toward Bespin's + shining city. Artoo's beeps and whistles are transmitted onto + the scope. + +LUKE: (into comlink) No, Threepio's with them. + + Artoo whistles another worried inquiry. + +LUKE: (into comlink) Just hang on. We're almost there. + +INTERIOR: CLOUD CITY -- LARGE CELL + + Chewbacca is in a Cloud City prison cell. The stark room is + flooded with hot light. To add to Chewie's misery, a + high-pitched whistle screeches loudly. Chewie is going mad. He + hits the wall with giant fists as he paces back and forth + across the cell floor. The upper lights go off abruptly. The + prisoner rubs his eyes and moves to a wall, where he listens + for a moment. Then, moaning to himself, he moves to a platform + where the disassembled pieces of Threepio lie. He picks up the + golden droid's head and meditates on it for a moment, barking + a few philosophical remarks. Chewie sticks the robot's head on + its torso and starts adjusting wires and circuits. Suddenly, + the lights in Threepio's eyes spark to life as Chewie touches + two connectors together. Threepio immediately begins to speak, + but his voice is so slow and so low as to be nearly + unintelligible. + +THREEPIO: Mmmm. Oh, my. Uh, I, uh -- Take this off! I, uh, don't mean +to intrude here. I, don't, no, no, no...Please don't get up. No! + + Chewie looks at Threepio in bewilderment, then scratches + his furry head. He gets an idea and adjusts some connections, + whereupon Threepio immediately begins speaking normally. + +THREEPIO: Stormtroopers? Here? We're in danger. I must tell the +others. Oh, no! I've been shot! + +INTERIOR: CLOUD CITY -- PRISON ENTRY AREA + + Darth Vader strides through the room as two stormtroopers + prepare an elaborate torture mechanism. Han is strapped to a + rack which tilts forward onto the torture device. Vader + activates the mechanism, creating two bursts of sparks, one of + which strikes Han's face. + The door opens, and Darth Vader moves to the holding + chamber, where Lando and Boba Fett await him. + +INTERIOR: CLOUD CITY -- HOLDING CHAMBER + +LANDO: Lord Vader. + +VADER: (to Fett) You may take Captain Solo to Jabba the Hut after I +have Skywalker. + + Han's screams filter through the torture room door. + +BOBA FETT: He's no good to me dead. + +VADER: He will not be permanently damaged. + +LANDO: Lord Vader, what about Leia and the Wookiee? + +VADER: They must never again leave this city. + +LANDO: That was never a condition of our agreement, nor was giving Han +to this bounty hunter! + +VADER: Perhaps you think you're being treated unfairly. + +LANDO: No. + +VADER: Good. It would be unfortunate if I had to leave a garrison +here. + + Vader turns and sweeps into the elevator with Boba Fett. + Lando walks swiftly down another corridor, muttering to + himself. + +LANDO: This deal's getting worse all the time. + +INTERIOR: CLOUD CITY -- LARGE CELL + + Chewie now has a little more of Threepio back together. One + arm is connected, but the legs are yet to be attached. There + is one small problem, however. It seems the Wookiee has + managed to put the droid's head on backwards. + +THREEPIO: Oh, yes, that's very good. I like that. Oh! Something's not +right because now I can't see. Wait. Wait! Oh, my! what have you done? +I'm backwards, you stupid furball. Only an overgrown mophead like you +would be stupid enough... + + Threepio is cut off in mid-sentence as Chewie angrily + deactivates a circuit and the droid shuts down. The Wookiee + smells something and sits up. The door to the chamber slides + open and a ragged Han Solo is shoved into the room by two + stormtroopers. Barking his concern, the huge Wookiee gives Han + a big hug. Han is very pale, with dark circles under his eyes. + +HAN: I feel terrible. + + Chewie helps Han to a platform and then turns as the door + slides open revealing Leia. She, too, looks a little worse for + wear. The troopers push her into the cell, and the door slides + closed. She moves to Han, who is lying on the platform, and + kneels next to him, gently stroking his head. + +LEIA: Why are they doing this? + +HAN: They never even asked me any questions. + + The cell door slides open. Lando and two of his guards + enter. + +LEIA: Lando. + +HAN: Get out of here, Lando! + +LANDO: Shut up and listen! Vader has agreed to turn Leia and Chewie +over to me. + +HAN: Over to you? + +LANDO: They'll have to stay here, but at least they'll be safe. + +LEIA: What about Han? + +LANDO Vader's giving him to the bounty hunter. + +LEIA: Vader wants us all dead. + +LANDO: He doesn't want you at all. He's after somebody called +Skywalker. + +HAN: Luke? + +LANDO: Lord Vader has set a trap for him. + + Leia's mind is racing. + +LEIA: And we're the bait. + +LANDO: Well, he's on his way. + + Han's rage peaks. + +HAN: Perfect. You fixed us all pretty good, didn't you? (spits it out) +My friend! + + Han hauls off and punches Lando. The two friends are + instantly engaged in a frantic close-quarters fight. The + guards hit Han with their rifle butts and he flies across the + room. Chewie growls and starts for the guards. They point + their laser weapons at the giant Wookiee, but Lando stops + them. + +LANDO: Stop! I've done all I can do. I'm sorry I couldn't do better, +but I have my own problems. + +HAN: Yeah, you're a real hero. + + Lando and the guards leave. Han wipes the blood from his + chin as Leia and Chewie help him up. + +LEIA: (dabs at his wound) You certainly have a way with people. + +INTERIOR: CLOUD CITY -- CARBON-FREEZING CHAMBER + + Four armor-suited stormtroopers stand at the ready in the + large chamber, which is filled with pipes and chemical tanks. + In the middle of the room is a round pit housing a hydraulic + platform. Darth Vader and Lando stand near the platform. + +VADER: This facility is crude, but it should be adequate to freeze +Skywalker for his journey to the Emperor. + + An Imperial soldier appears. + +IMPERIAL SOLDIER: Lord Vader, ship approaching. X-wing class. + +VADER: Good. Monitor Skywalker and allow him to land. + + The soldier bows and leaves the chamber. + +LANDO: Lord Vader, we only use this facility for carbon freezing. If +you put him in there, it might kill him. + +VADER: I do not want the Emperor's prize damaged. We will test it...on +Captain Solo. + + Lando's face registers dismay. + +EXTERIOR: SPACE -- BESPIN SYSTEM -- LUKE'S X-WING + + Luke's X-wing moves through the clouds as it nears the + city. + +INTERIOR: LUKE'S X-WING -- COCKPIT + + Encountering no city guards, Luke scans the display panel + with concern. + +INTERIOR: CLOUD CITY -- CARBON-FREEZING CHAMBER + + There is a great activity on the carbon-freezing platform. + Six Ugnaughts frantically prepare the chamber for use. A + special coffinlike container is put in place. With Boba Fett + in the lead, a squad of six stormtroopers brings in Han, Leia + and Chewie. Strapped to Chewie's back, with only his head, + torso, and one arm assembled, is Threepio. Threepio's head + faces the opposite direction from Chewie's and the droid is + constantly twisting around in a vain effort to see what is + happening. His one attached arm is animate and expressive, + intermittently pointing, gesturing, and covering his eyes. The + remaining pieces of his body are randomly bundled to the + Wookiee's back so that his legs and other arm stick out at odd + angles from the pack. + +THREEPIO: If only you had attached my legs, I wouldn't be in this +ridiculous position. Now, remember, Chewbacca, you have a +responsibility to me, so don't do anything foolish. + +HAN: (to Lando) What's going on...buddy? + +LANDO: You're being put into carbon freeze. + + Boba Fett moves away from the group to Darth Vader. + +BOBA FETT: What if he doesn't survive? He's worth a lot to me. + +VADER: The Empire will compensate you if he dies. Put him in! + + Realizing what is about to happen, Chewie lets out a wild + howl and attacks the stormtroopers surrounding Han. Within + seconds, other Imperial reinforcements join the scuffle, + clubbing the giant Wookiee with their laser weapons. From the + instant of Chewie's first move, Threepio begins to scream in + panic while he tries to protect himself with his one arm. + +THREEPIO: Oh, no! No, no, no! Stop, Chewbacca, stop...! + + The stormtroopers are about to bash Chewie in the face. + +HAN: Stop, Chewie, stop! Do you hear me? Stop! + +THREEPIO: Yes, stop, please! I'm not ready to die. + + Han breaks away from his captors. Vader nods to the guards + to let him go and the pirate breaks up the fight. + +HAN: Chewie! Chewie, this won't help me. Hey! + + Han gives the Wookiee a stern look. + +HAN: Save your strength. There'll be another time. The princess -- you +have to take care of her. You hear me? + + Han winks at the Wookiee, who wails a doleful farewell. + In a flash the guards have slipped binders on Chewbacca, + who is too distraught to protest. Han turns to Princess Leia. + They look sorrowfully at one another, then Han moves toward + her and gives her a final, passionate kiss. + +LEIA: I love you! + +HAN: I know. + + Tears roll down Leia's face as she watches the dashing + pirate walk to the hydraulic platform. Han looks one final + time at his friends -- and then, suddenly, the platform drops. + Chewie howls. Leia turns away in agony. Lando winces in + sorrow; it makes a life-changing impression on him. + Instantly, fiery liquid begins to pour down in a shower of + sparks and fluid as great as any steel furnace. Holding Leia, + Chewie half-turns away from the sight, giving Threepio a view + of the procedure. + +THREEPIO: What...what's going on? Turn around, Chewbacca, I can't see. +Oh...they've encased him in carbonite. He should be quite +well-protected -- if he survives the freezing process, that is. + + Chewie is in no mood for technical discussion; he gives the + droid an angry glance and barks. + A huge mechanical tong lifts the steaming metal-encased + space pirate out of the vat and stands him on the platform. + Some Ugnaughts rush over and push the block over onto the + platform. They slide the coffinlike structure to the block and + lift the metal block, placing it inside. They then attach an + electronic box onto the structure and step away. + Lando kneels and adjusts some knobs, measuring the heat. He + shakes his head in relief. + +VADER: Well, Calrissian, did he survive? + +LANDO: Yes, he's alive. And in perfect hibernation. + + Vader turns to Boba Fett. + +VADER: He's all yours bounty hunter. Reset the chamber for Skywalker. + +IMPERIAL OFFICER: Skywalker has just landed, my lord. + +VADER: Good. See to it that he finds his way here. Calrissian, take +the princess and the Wookiee to my ship. + +LANDO: You said they'd be left in the city under my supervision. + +VADER: I am altering the deal. Pray I don't alter it any further. + + Lando's hand instinctively goes to his throat as he turns + to Leia, Chewie, and Threepio. + +INTERIOR: CLOUD CITY -- CORRIDOR -- DAY + + As Luke and Artoo move carefully down a deserted corridor, + they hear a group of people coming down a side hallway. Artoo + lets out an excited series of beeps and whistles. Luke glares + at the tiny droid, who stops in his tracks with a feeble + squeak. + Boba Fett enters from a side hallway followed by two guards + pushing the floating, encased body of Han Solo. Two + stormtroopers, who follow, immediately spot Luke and open fire + on him. The youth draws his weapon and blasts the two + troopers before they can get off a second shot. The two guards + whisk Han into another hallway as Fett lowers his arm and + fires a deadly laser at Luke, which explodes to one side and + tears up a huge chunk of wall. + Luke rushes to a side hallway, but by the time he reaches + it, Fett, Han, and the guards are gone. A think metal door + blocks the passage. Luke turns to see Leia, Chewie, Threepio, + and Lando being herded down a second hallway by several other + stormtroopers. Leia turns just in time to see Luke. + +LEIA: Luke! Luke, don't -- it's a trap! It's a trap! + + Before she can finish, she is pulled through a doorway and + disappears from sight. Luke races after the group, leaving + little Artoo trailing behind. + +INTERIOR: CLOUD CITY -- ANTEROOM + + Luke runs into an anteroom and stops to get his bearings. + Leia and the others are nowhere to be seen. Behind Luke, Artoo + scoots down the corridor toward the anteroom when suddenly a + giant metal door comes slamming down, cutting off Luke's exit. + Several more doors clang shut, echoing through the chamber. + +INTERIOR: CLOUD CITY -- HALLWAY LEADING TO ANTEROOM + + Artoo stands with his nose pressed against the giant metal + door. He whistles a long sigh of relief and, a little dazed, + wanders off in the other direction. + +INTERIOR: CLOUD CITY -- CARBON-FREEZING CHAMBER -- ANTEROOM + + Luke cautiously walks forward among hissing pipes and + steam. Seeing an opening above him, he stops to look up. As he + does, the platform he stands on begins to move. + +INTERIOR: CLOUD CITY -- CARBON-FREEZING CHAMBER + + Luke rises into the chamber, borne by the platform. The + room is deathly quiet. Very little steam escapes the pipes and + no one else seems to be in the large room. Warily, Luke walks + toward the stairway. + Steam begins to build up in the chamber. Looking up through + the steam, Luke sees a dark figure standing on a walkway above + him. Luke holsters his gun and moves up the stairs to face + Vader. He feels confident, eager to engage his enemy. + +VADER: The Force is with you, young Skywalker. But you are not a Jedi +yet. + + Luke ignites his sword in answer. In an instant, Vader's + own sword is lit. Luke lunges, but Vader repels the blow. + Again Luke attacks, and the swords of the two combatants clash + in battle. + +INTERIOR: CLOUD CITY -- CORRIDOR + + Leia, Lando, and Chewie, with Threepio on his back, march + along, guarded by six stormtroopers. The group reaches an + intersection where Lobot and a dozen of Lando's guards stand + at attention. + The guards immediately aim their weapons at the startled + stormtroopers. Taking the stormtroopers' weapons from them, + Lobot hands one to Leia and one to Lando. + +LANDO: Well done. Hold them in the security tower -- and keep it +quiet. Move. + + As Lando's guards quickly march the stormtroopers away, + Lando begins to undo Chewie's binding. + +LEIA: What do you think you're doing? + +LANDO: We're getting out of here. + +THREEPIO: I knew all along it had to be a mistake. + + Chewie turns on Lando and starts to choke him. + +LEIA: Do you think that after what you did to Han we're going to trust +you? + + Lando tries to free himself from Chewie. + +LANDO: (choking) I had no choice... + + Chewie barks ferociously. + +THREEPIO: (to Chewie) What are you doing? Trust him, trust him! + +LEIA: Oh, so we understand, don't we, Chewie? He had no choice. + +LANDO: I'm just trying to help... + +LEIA: We don't need any of your help. + +LANDO: (choking) H-a-a-a... + +LEIA: What? + +THREEPIO: It sounds like Han. + +LANDO: There's still a chance to save Han...I mean, at the East +Platform... + +LEIA: Chewie. + + Chewie finally releases Lando, who fights to get his breath + back. + +THREEPIO: (to Lando) I'm terribly sorry about all this. After all, +he's only a Wookiee. + +EXTERIOR: CLOUD CITY -- EAST LANDING PLATFORM -- BOBA FETT'S SHIP + + The two guards slide Han's encased body into an opening in + the side of the bounty hunter's ship. Boba Fett climb aboard + on a ladder next to the cargo hold. + +BOBA FETT: Put Captain Solo in the cargo hold. + + And with that, the door slams shut. + +INTERIOR: CLOUD CITY -- CORRIDOR + + Lando, Leia, and Chewie run down a Cloud City corridor when + suddenly they spot Artoo who rushes toward them, beeping + wildly. + +THREEPIO: Artoo! Artoo! Where have you been? + + Chewie turns around to see the stubby droid, causing + Threepio to be spun out of sight of his friend. + +THREEPIO: Turn around, you wooly...! (to Artoo) Hurry, hurry! We're +trying to save Han from the bounty hunter! + + Whistling frantically to Threepio, Artoo scoots along with + the racing group. + +THREEPIO: Well, at least your still in one piece! Look what happened +to me! + +EXTERIOR: EAST LANDING PLATFORM -- SIDE BAY + + An elevator door slides open and Lando, Leia, and Chewbacca + race for a large bay overlooking the East Landing Platform. + Just as they arrive, Boba Fett's ship takes off against a + cloudy sunset sky. + In wild anguish, Chewie howls and starts firing at the + ship. + +THREEPIO: Oh, no! Chewie, they're behind you! + + A laser bolt explodes near the princess. Everyone turns to + see what Threepio has already spotted coming from the other + direction; a squad of stormtroopers running toward them. Artoo + peeks out from the elevator. + Leia and Chewbacca start firing at the troopers as Lando + makes a break for the elevator. Laser bolts continue to + explode around the princess and the Wookiee, but they refuse + to budge. Lando sticks his head out of the elevator and + motions for the pair to run, but they barely notice. They seem + possessed, transported, as all the frustration of captivity + and anger of loss pour through their death-dealing weapons. + But after a few moments, they begin to move through the + rain of laser fire toward the elevator. Once they are inside, + the door slams shut and the stormtroopers race forward. + +INTERIOR: CLOUD CITY -- CARBON-FREEZING CHAMBER + + Luke and Vader are locked in combat on the platform + overlooking the chamber. Their swords clash, the platform + sways. Luke aggressively drives Vader back, forcing Vader to + use defensive tactics. + +VADER: You have learned much, young one. + +LUKE: You'll find I'm full of surprises. + + Vader makes two quick moves, hooking Luke's sword out of + his hand and sending it flying. Another lightning move at + Luke's feet forces the youth to jump back to protect himself. + Losing his balance, Luke rolls down the stairs to the circular + carbon-freezing platform. There he sprawls on the floor, + surprised and shaken. Just in time he looks up to see Vader, + like a giant black bird, flying right at him. Luke rolls away + as Vader lands. Crouching, Luke keeps his gaze steadily on his + enemy. + +VADER: Your destiny lies with me, Skywalker. Obi-Wan knew this to be +true. + +LUKE: No! + + Behind Luke the hydraulic elevator cover has opened + noiselessly. All the while, Luke slowly, cautiously moves + back, away from the Dark Lord. + Suddenly, Vader attacks so forcefully that Luke loses his + balance and falls back into the opening. There is a rumble, + and in an instant freezing steam rises to obscure Vader's + vision. Vader turns aside and deactivates his sword. + +VADER: All to easy. Perhaps you are not as strong as the Emperor +thought. + + Through the steam behind Vader something blurs upward. + Liquid metal begins to pour into the pit. + Vader turns around -- and then looks up. He sees Luke, who + has leaped fifteen feet straight up and who now hangs from + some hoses on the carbonite outlet. + +VADER: Impressive...most impressive. + + Luke jumps down to the platform where he is separated from + Vader by the steaming carbonite pit. He raises his hand. His + sword, which had fallen on another part of the platform, + swiftly jumps into his outstretched hand and is instantly + ignited. Vader immediately lights his sword as well. + +VADER: Obi-Wan has taught you well. You have controlled your fear... +now release your anger. + + Luke is more cautious, controlling his anger. He begins to + retreat as Vader goads him on. As Luke takes a defensive + position, he realizes he has been foolhardy. A quick sword + exchange and Luke forces Vader back. Another exchange and + Vader retreats. Luke presses forward. + +VADER: Only your hatred can destroy me. + + Breathing hard, Luke jumps in the air, turning a somersault + over Vader. He lands on the floor and slashes at Vader as the + room continues to fill up with steam. + Vader retreats before Luke's skillful sword. Vader blocks + the sword, but looses his balance and falls into the outer rim + of pipes. The energy Luke has used to stop Vader has brought + him to the point of collapse. Luke moves to the edge and looks + down, but sees no sign of Vader. He then deactivates his + sword, hooks it on his belt, and lowers himself into the pit. + +INTERIOR: CLOUD CITY -- TUNNEL AND REACTOR CONTROL ROOM + + Moving through a tunnellike entrance, Luke cautiously + approaches the reactor room. He ignites his sword and moves + into the room and toward a large window as Vader enters. + Luke raises his sword and moves forward to attack. + Behind Luke a large piece of machinery detaches itself from + the wall and comes smashing forward toward his back. Luke + turns and cuts it in half just as another machine comes + hurtling at him. Using the Force, Luke manages to deflect it + and send it flying as if it had hit an invisible shield. A + large pipe detaches and comes flying at Luke. He deflects it. + Sparking wires pull out of the wall and begin to whip at the + youth. Small tools and equipment come flying at him. + Bombardment from all sides, Luke does his best to deflect + everything, but soon he is bloodied and bruised. Finally, one + machine glances off his and goes flying out the large window. + A fierce wind blows into the room, unmoving, stands the dark, + rocklike figure of Vader. + A piece of machinery hits Luke and he is knocked out of the + window. + +INTERIOR: GANTRY -- OUTSIDE CONTROL ROOM -- REACTOR SHAFT + + Luke falls onto the gantry, rolls, and hangs over the edge, + holding his deactivated sword in hand. He puts the sword on + his belt and begins to scramble up. + +INTERIOR: CLOUD CITY -- CORRIDOR LEADING TO LANDING PLATFORM + + Leia, Lando, Chewie and the droids come round a corner and + head for the door to the landing platform. They glimpse the + Millennium Falcon for a moment before the door slams shut. The + group ducks into an alcove as stormtroopers arrive at the end + of the corridor. The troopers send a rain of laser bolts at + the group. Chewie returns their fire as Lando punches + desperately at the door's control panel. + +LANDO: The security codes has been changed! + +THREEPIO: Artoo, you can tell the computer to override the security +system. + + Threepio points to a computer socket on the control panel. + Artoo beeps and scoots toward it. Lando meanwhile has + connected up to the panel's intercom. + +LANDO: Attention! This is Lando Calrissian. The Empire has takes +control of the city. I advise everyone to leave before more Imperial +troops arrive. + + Artoo takes off a computer cover and sticks his computer + arm into the socket. Suddenly, a short beep turns into a wild + scream. Artoo's circuits light up, his head spins wildly, and + smoke begins to seep out underneath him. Quickly, Chewie pulls + him away. + +LANDO: This way. + + Lando, Leia, Artoo, and Chewie flee down the corridor. As + he scoots along with them, Artoo sends some angry beeps + Threepio's way. + +THREEPIO: Don't blame me. I'm an interpreter. I'm not supposed to know +a power socket from a computer terminal. + +INTERIOR: CLOUD CITY -- CORRIDOR + + In a panic, Cloud City residents are trying to get out of + the city. Some carry boxes, others packages. They run, then + change direction. Some are shooting at stormtroopers, others + simply try to hide. + Other stormtroopers pursue Lando, Leia, and Chewie who are + firing back at them. Artoo works on another door to the + landing platform while Threepio berates him for his seeming + ineptitude. + +THREEPIO: What are you talking about? We're not interested in the +hyperdrive on the Millennium Falcon. It's fixed! Just open the door, +you stupid lump. + + Chewie, Leia, and Lando retreat along the corridor. A + triumphant beep from Artoo -- and the door snaps open. + +THREEPIO: (to Artoo) I never doubted you for a second. Wonderful! + + Artoo lays a cloud fog, obscuring everything, as the group + dashes outside. + +EXTERIOR: LANDING PLATFORM -- CLOUD CITY -- DUSK + + They race for the Millennium Falcon as a battalion of + stormtroopers reaches the main door. Lando and Leia hold off + the troops as the droids get on board with Chewie. As Chewie + bounds to the ship the Threepio on his back, Threepio hits his + head on the top of the ramp. + +THREEPIO: Ouch! Oh! Ah! That hurt, Bend down, you thoughtless...Ow! + + Chewie starts up the ship. The giant engines begin to whine + as Lando and Leia race up the ramp under a hail of laser fire. + +LANDO: Leia! Go! + +INTERIOR: MILLENNIUM FALCON -- CORRIDOR + + Artoo drags the partially assembled Threepio down the + corridor of the Falcon. + +THREEPIO: I thought that hairy beast would be the end of me. Of +course, I've looked better. + + Artoo beeps understandingly. + +INTERIOR: MILLENNIUM FALCON -- COCKPIT + + Chewie works the controls as Leia sits in Han's seat and + Lando watches over their shoulders. As Chewie pulls back on + the throttle, the ship begins to move. + +EXTERIOR: CLOUD CITY -- LANDING PLATFORM -- DUSK + + The Millennium Falcon lifts gracefully into the twilight + sky and roars away from the city. Troops fire after it and TIE + fighters take off in pursuit. + +INTERIOR: GANTRY -- OUTSIDE CONTROL ROOM -- REACTOR SHAFT + + Luke moves along the railing and up to the control room. + Vader lunges at him and Luke immediately raises his lit sword + to meet Vader's. Sparks fly as they duel, Vader gradually + forcing Luke backward toward the gantry. + +VADER: You are beaten. It is useless to resist. Don't let yourself be +destroyed as Obi-Wan did. + + Luke answers by rolling sideways and thrusting his sword at + Vader so viciously that he nicks Vader on the shoulder. The + black armor sparks and smokes and Vader seems to be hurt, but + immediately recovers. + Luke backs off along the narrow end of the gantry as Vader + comes at him, slashing at the young Jedi with his sword. Luke + makes a quick move around the instrument complex attached to + the end of the gantry. Vader's sword comes slashing down, + cutting the complex loose; it begins to fall, then is caught + by the rising wind and blown upward. + Luke glances at the instrument complex floating away. At + that instant, Vader's sword comes down across Luke's right + forearm, cutting off his hand and sending his sword flying. + In great pain, Luke squeezes his forearm under his left armpit + and moves back along the gantry to its extreme end. Vader + follows. The wind subsides. Luke holds on. There is nowhere + else to go. + +VADER: There is no escape. Don't make me destroy you. You do not yet +realize your importance. You have only begun to discover you power. +Join me and I will complete your training. With our combined strength, +we can end this destructive conflict and bring order to the galaxy. + +LUKE: I'll never join you! + +VADER: If you only knew the power of the dark side. Obi-Wan never told +you what happened to your father. + +LUKE: He told me enough! He told me you killed him. + +VADER: No. I am your father. + + Shocked, Luke looks at Vader in utter disbelief. + +LUKE: No. No. That's not true! That's impossible! + +VADER: Search your feelings. You know it to be true. + +LUKE: No! No! No! + +VADER: Luke. You can destroy the Emperor. He has foreseen this. It is +your destiny. Join me, and we can rule the galaxy as father and son. +Come with me. It's the only way. + + Vader puts away his sword and holds his hand out to Luke. + A calm comes over Luke, and he makes a decision. In the + next instant he steps off the gantry platform into space. The + Dark Lord looks over the platform and sees Luke falling far + below. The wind begins to blow at Vader's cape and the torrent + finally forces him back, away from the edge. The wind soon + fades and the wounded Jedi begins to drop fast, unable to grab + onto anything to break his fall. + +INTERIOR: REACTOR SHAFT + + Suddenly Luke is sucked into an exhaust pipe in the side of + the shaft. When Vader sees this, he turns and hurries off the + platform. + +INTERIOR: EXHAUST PIPE + + Luke tumbles through the exhaust pipe. + He slides to the end of the slickly polished pipe and stops + as his feet hit a circular grill and knock it open. Luke claws + at the surface of the pipe, trying to keep from sliding out + into space. + +EXTERIOR: BOTTOM OF CLOUD CITY -- WEATHER VANE -- DUSK + + Unable to hang onto the pipe, Luke tumbles out, emerging at + the undermost part of Cloud City. Reaching out desperately, he + manages to grab onto on electronic weather vane. + +LUKE: Ben...Ben, please! + + Luke tries to pull himself up on the weather vane but slips + back down. He hooks one of his legs around the fragile + instruments. All the while, a powerful current of air rushes + out at him from the exhaust pipe. + +LUKE: Ben. Leia! + + There is an ominous cracking sound from the base of the + weather vane and a piece breaks off, falling into the clouds + far below. + +LUKE: Hear me! Leia! + +INTERIOR: MILLENNIUM FALCON -- COCKPIT + + Leia seems to be lost in a fog, her expression troubled. + Chewie is busy operating the ship. Lando stands next to the + Wookiee, watching a readout on the control panel. + +LEIA: Luke...We've got to go back. + + Chewie growls in surprise. + +LANDO: What? + +LEIA: I know where Luke is. + +LANDO: But what about those fighter? + + Chewie barks in agreement with Lando. + +LEIA: Chewie, just do it. + +LANDO: But what about Vader? + + Chewie turns on Lando, the newcomer, with an ominous growl. + +LANDO: All right, all right, all right. + +EXTERIOR: CLOUD CITY -- MILLENNIUM FALCON -- DUSK + + The Falcon makes a graceful banking turn back toward Cloud + City. + +EXTERIOR: CLOUD CITY -- LANDING PLATFORM + + Vader enters the landing platform and watches as the speck + that is the Falcon disappears. The wind blows at his cape. + He turns to two aides who are standing near the entrance to + the landing platform. + +VADER: Bring my shuttle. + +EXTERIOR: BOTTOM OF CLOUD CITY -- WEATHER VANE + + Nearly unconscious, Luke hangs upside-down on the weather + vane as his body shifts in the wind. + +EXTERIOR: MILLENNIUM FALCON -- BOTTOM OF CLOUD CITY + + The Falcon dives to the underside of the floating city. + Three TIE fighter close in on the starship. + +INTERIOR: MILLENNIUM FALCON + + Leia tries to remain calm. + +LANDO: (pointing out the cockpit window) Look, someone's up there. + +LEIA: It's Luke. Chewie, slow down. Slow down and we'll get under him. +Lando, open the top hatch. + + Lando rushes out of the cockpit. + +EXTERIOR: BOTTOM OF CLOUD CITY -- WEATHER VANE + + Luke hangs by one arm from the crossbar of the weather + vane. He slips from the bar and grabs onto the pole of the + vane as the Falcon banks toward him. The Falcon positions + itself under Luke as Lando moves up through the opening of the + hatch. Luke begins to slide and finally falls from the vane + into space. + +INTERIOR: MILLENNIUM FALCON -- COCKPIT + + Out the cockpit window, Leia sees Luke falling from the + bottom of the city. The ship gains on him. + +LEIA: Okay. Easy, Chewie. + + The Falcon closes in on Luke. + +EXTERIOR: BOTTOM OF CLOUD CITY + + Three TIE fighters race toward the Falcon, firing away. + +INTERIOR: MILLENNIUM FALCON -- HATCH + + The hatch pops open with a hiss of pressure. Lando reaches + out to help the battered warrior inside the ship. + +INTERIOR: MILLENNIUM FALCON -- COCKPIT + + Flak bursts all around it as the Falcon banks away from the + city. Leia and Chewie struggle with the controls. + +LEIA: (into intercom) Lando? + +LANDO: (over intercom) Okay, let's go. + +EXTERIOR: BOTTOM OF CLOUD CITY + + The Falcon races away. It is closely followed by three TIE + fighters, all of which keep up a heavy laser assault on the + fleeing starship. + +INTERIOR: MILLENNIUM FALCON -- COCKPIT + + Explosions erupt all around the cockpit, buffeting the ship + wildly. Chewie howls as he frantically tries to control the + ship. + Leia and Chewie turns to see Luke, bloody and battered, + enter the cockpit supported by Lando. Leia jumps up and hugs + him while Chewie barks in joyous relief. + +LUKE: Oh, Leia. + +LANDO: All right, Chewie. Let's go. + + Leia helps Luke from the cockpit as another huge blast + rocks the ship. + +EXTERIOR: SPACE -- CLOUD CITY -- DAY + + The Falcon, still followed by the three TIE fighters, races + away from the cloud-covered city. + +INTERIOR: MILLENNIUM FALCON -- SLEEPING QUARTERS + + Luke rests on a cot, his injured arm wrapped in a + protective cuff. Leia gently wipes his face. The ship lurches + again. + +LEIA: I'll be back. + + She kisses him, then leaves the quarters. + +INTERIOR: MILLENNIUM FALCON -- COCKPIT + + All over the ship muted alarm buzzers sound. Lando + anxiously watches the flashing lights on the control panel and + hurriedly adjusts some switches. Seated next to him, Chewie + points out a new blip appearing on the panel. Leia, watching + over their shoulders, recognizes the shape. + +LEIA: Star Destroyer. + +LANDO: All right, Chewie. Ready for light-speed. + +LEIA: If your people fixed the hyperdrive. + + Another explosion rocks the ship. Leia notices as a green + light on the panel next to her flashes on. + +LEIA: All the coordinates are set. It's now or never. + + Chewie barks in agreement. + +LANDO: Punch it! + + The Wookiee shrugs and pulls back on the light-speed + throttle. The sound of the ion engine changes...it is winding + up. Faces are tense, expectant. But nothing happens, and the + engine goes off. Chewie lets out a frustrated howl. The flak + still violently rocks the ship. + +LANDO: They told me they fixed it. I trusted them to fix it. It's not +my fault! + + Chewie gets up from his chair and starts out of the + cockpit. He gives Lando and angry shove as he storms past him. + +EXTERIOR: SPACE + + In the distance the TIE fighters continue their chase, + still shooting lasers. Vader's Star Destroyer moves behind + them, determinedly following the Falcon. + +INTERIOR: VADER'S STAR DESTROYER -- BRIDGE + + Vader stands on the bridge looking out the window as + Admiral Piett approaches him. + +PIETT: They'll be in range of our tractor beam in moments, lord. + +VADER: Did your men deactivate the hyperdrive on the Millennium +Falcon? + +PIETT: Yes, my lord. + +VADER: Good. Prepare the boarding party and set for your weapons for +stun. + +PIETT: Yes, my lord. + +INTERIOR: MILLENNIUM FALCON + + Beeping while he works, Artoo is busy connecting some wires + to Threepio who now has one leg attached. + Chewie enters through the doorway, grunting to himself. + +THREEPIO: Noisy brute. Why don't we just go into light-speed? + + Artoo beeps in response. + +THREEPIO: We can't? How would you know the hyperdrive is deactivated? + + Artoo whistles knowingly. + +THREEPIO: The city's central computer told you? Artoo-Detoo, you know +better than to trust a strange computer. Ouch! Pay attention to what +you're doing! + + Chewie is in the pit. He is trying to loosen something with + an enormous wrench. Frustrated, he uses the wrench like a club + and hits the panel... + +INTERIOR: MILLENNIUM FALCON -- COCKPIT + + Leia and Lando, seated in front of the control panel, are + suddenly sprayed by a shower of sparks. + +INTERIOR: VADER'S STAR DESTROYER -- BRIDGE + + Vader stands on the bridge, watching as the Millennium + Falcon is chased by the TIE fighters. As his Destroyer draws + nearer, Vader's breathing gets slightly faster. + +VADER: Luke. + +INTERIOR: MILLENNIUM FALCON -- SLEEPING QUARTERS + + Luke realizes that Vader's ship is very near. He feels + resigned to his fate. He senses that he is beaten, more + emotionally than physically. + +LUKE: Father. + +INTERIOR: VADER'S STAR DESTROYER -- BRIDGE + +VADER: Son, come with me. + +INTERIOR: MILLENNIUM FALCON -- SLEEPING QUARTERS + +LUKE: (moaning) Ben, why didn't you tell me? + +INTERIOR: MILLENNIUM FALCON -- COCKPIT + + Lando and Leia are at the controls of the Falcon. + Meanwhile, in the ship's hold, Chewie continues to work + frantically on the hyperdrive mechanism. + +LANDO: (into intercom) Chewie! + +EXTERIOR: SPACE + + The Falcon races through space followed very closely by the + TIE fighters and the huge Imperial Star Destroyer. + +INTERIOR: MILLENNIUM FALCON -- COCKPIT + + Luke enters the cockpit and looks out the window. He is + almost unconscious with pain and depression. + +LUKE: It's Vader. + +INTERIOR: VADER'S STAR DESTROYER -- BRIDGE + +VADER: Luke...it is your destiny. + +INTERIOR: MILLENNIUM FALCON -- COCKPIT + +LUKE: Ben, why didn't you tell me? + +INTERIOR: VADER'S STAR DESTROYER -- BRIDGE + +PIETT: Alert all commands. Ready for the tractor beam. + +INTERIOR: MILLENNIUM FALCON -- HOLD + + Artoo races to a control panel and starts working on a + circuit board. Furious, Threepio stands on one leg, yelling. + +THREEPIO: Artoo, come back at once! You haven't finished with me yet! +You don't know how to fix the hyperdrive. Chewbacca can do it. I'm +standing here in pieces, and you're having delusions of grandeur! + + Artoo moves a circuit on a control panel. Suddenly, the + control panel lights up. + +INTERIOR: MILLENNIUM FALCON -- COCKPIT + + Leia and Lando are thrown into their seats as the + Millennium Falcon unexpectedly shoot into hyperspace. + +INTERIOR: MILLENNIUM FALCON -- HOLD + + The ship tilts up and Artoo topples into the pit on top of + Chewie. + +THREEPIO: Oh, you did it! + +EXTERIOR: SPACE + + The Falcon soars into infinity and away from the huge Star + Destroyer which seems, by contrast, to stand still. + +INTERIOR: VADER'S STAR DESTROYER -- BRIDGE + + Admiral Piett and another captain glance at Vader in + terror. Vader turns slowly and walks off the bridge, his hands + held behind his back in a contemplative gesture. + +EXTERIOR: SPACE -- REBEL CRUISER + + The Millennium Falcon is attached to a huge Rebel cruiser + by a docking tube. Rebel fighters move about the giant + cruiser, and a Rebel transport ship hovers near the fleet. + +INTERIOR: MILLENNIUM FALCON -- COCKPIT + + Lando sits in the pilot's seat as he talks into the + comlink. Chewie busily throws a variety of switches in + preparation for takeoff. + +LANDO: (into comlink) Luke, we're ready for takeoff. + +LUKE: (over comlink) Good luck, Lando + +LANDO: (into comlink) When we find Jabba the Hut and that bounty +hunter, we'll contact you. + +INTERIOR: STAR CRUISER -- MEDICAL CENTER + + Luke speaking into the comlink as a medical droid works on + his hand. Leia stands near him while Threepio and Artoo look + out the window. + +LUKE: (into comlink) I'll meet you at the rendezvous point on +Tatooine. + +INTERIOR: MILLENNIUM FALCON -- COCKPIT + +LANDO: (into comlink) Princess, we'll find Han. I promise. + +INTERIOR: STAR CRUISER -- MEDICAL CENTER + +LUKE: (into comlink) Chewie, I'll be waiting for your signal. + + Chewie's wail comes over the comlink. + +LUKE: (into comlink) Take care, you two. May the Force be with you. + + Luke looks down at his hand. A metalized type of bandage + has been wrapped around his wrist. The medical droid makes + some adjustments in a tiny electronic unit, then pricks each + one of Luke's fingers. + +LUKE: Ow! + + Luke wriggles his fingers, makes a fist, and relaxes it. + His hand is completely functional. + He gets up and walks over to Leia. There is a new bond + between them, a new understanding. Leia is thinking about Han; + Luke is thinking about his uncertain and newly complicated + future. Together they stand at the large window of the medical + center looking out on the Rebel Star Cruiser and a dense, + luminous galaxy swirling in space. Luke puts his arm around + Leia. The droids stand next to them, and Threepio moves closer + to Artoo putting his arm on him. The group watches as the + Millennium Falcon moves into view, makes a turn, and zooms + away into space. + +EXTERIOR: SPACE -- REBEL STAR CRUISER + + While Luke, Leia, and the droids stand, looking out the + window of the star cruiser, two escort fighters join the large + ship. Slowly, the cruiser turns and moves away into space. + +EXTERIOR: GALAXY -- SPACE diff --git a/Text_files/top_char_terms.txt b/Text_files/top_char_terms.txt new file mode 100644 index 0000000..be14e12 --- /dev/null +++ b/Text_files/top_char_terms.txt @@ -0,0 +1,201 @@ +character,term,epIV,epV,epVI +ACKBAR,star,0,0,7 +ACKBAR,death,0,0,5 +ACKBAR,attack,0,0,4 +ACKBAR,shield,0,0,4 +ACKBAR,calrissian,0,0,2 +ACKBAR,close,0,0,2 +ACKBAR,craft,0,0,2 +ACKBAR,cruisers,0,0,2 +ACKBAR,endor,0,0,2 +ACKBAR,fighters,0,0,2 +BEN,luke,12,2,6 +BEN,father,5,0,10 +BEN,force,11,0,3 +BEN,jedi,8,0,3 +BEN,vader,0,2,5 +BEN,emperor,0,2,4 +BEN,yoda,0,2,3 +BEN,empire,4,0,0 +BEN,imperial,4,0,0 +BEN,little,4,0,0 +BIGGS,luke,13,0,0 +BIGGS,pull,4,0,0 +BIGGS,empire,3,0,0 +BIGGS,shot,3,0,0 +BIGGS,uncle,3,0,0 +BIGGS,aboard,2,0,0 +BIGGS,academy,2,0,0 +BIGGS,believe,2,0,0 +BIGGS,bushpilot,2,0,0 +BIGGS,central,2,0,0 +CREATURE,jedi,0,5,0 +CREATURE,mine,0,5,0 +CREATURE,eat,0,4,0 +CREATURE,food,0,3,0 +CREATURE,help,0,3,0 +CREATURE,patience,0,3,0 +CREATURE,yoda,0,3,0 +CREATURE,hmm,0,2,0 +CREATURE,mmm,0,2,0 +CREATURE,powerful,0,2,0 +EMPEROR,friends,0,0,7 +EMPEROR,skywalker,0,2,4 +EMPEROR,jedi,0,1,4 +EMPEROR,dark,0,0,4 +EMPEROR,father,0,0,4 +EMPEROR,fleet,0,0,4 +EMPEROR,alliance,0,0,3 +EMPEROR,friend,0,0,3 +EMPEROR,hate,0,0,3 +EMPEROR,moon,0,0,3 +GOLD LEADER,leader,4,0,0 +GOLD LEADER,gold,3,0,0 +GOLD LEADER,red,2,0,0 +GOLD LEADER,starting,2,0,0 +GOLD LEADER,switch,2,0,0 +GOLD LEADER,attack,1,0,0 +GOLD LEADER,close,1,0,0 +GOLD LEADER,coming,1,0,0 +GOLD LEADER,computer,1,0,0 +GOLD LEADER,deflection,1,0,0 +HAN,chewie,9,13,23 +HAN,kid,14,6,0 +HAN,luke,6,4,10 +HAN,lando,0,10,6 +HAN,look,7,0,6 +HAN,hey,0,0,9 +HAN,yeah,0,8,0 +HAN,ship,7,0,0 +HAN,hold,6,0,0 +HAN,gonna,0,0,6 +JABBA,han,5,0,0 +JABBA,solo,0,0,3 +JABBA,boy,2,0,0 +JABBA,business,2,0,0 +JABBA,disappoint,2,0,0 +JABBA,fry,2,0,0 +JABBA,shipment,2,0,0 +JABBA,bargain,0,0,2 +JABBA,bring,0,0,2 +JABBA,jedi,0,0,2 +LANDO,vader,0,7,0 +LANDO,han,0,3,3 +LANDO,fighters,0,0,5 +LANDO,chewie,0,4,0 +LANDO,leia,0,4,0 +LANDO,lord,0,4,0 +LANDO,shield,0,0,4 +LANDO,star,0,0,4 +LANDO,bounty,0,3,0 +LANDO,empire,0,3,0 +LEIA,luke,7,6,3 +LEIA,kenobi,7,0,0 +LEIA,help,6,0,0 +LEIA,hope,6,0,0 +LEIA,chewie,0,6,0 +LEIA,obiwan,5,0,0 +LEIA,han,0,5,0 +LEIA,lando,0,5,0 +LEIA,alderaan,4,0,0 +LEIA,gonna,0,0,4 +LUKE,threepio,16,0,0 +LUKE,ben,10,6,0 +LUKE,father,0,0,16 +LUKE,artoo,0,15,0 +LUKE,look,12,0,0 +LUKE,leia,0,6,6 +LUKE,uncle,10,0,0 +LUKE,yoda,0,6,4 +LUKE,wait,9,0,0 +LUKE,biggs,8,0,0 +OWEN,luke,7,0,0 +OWEN,harvest,3,0,0 +OWEN,droid,2,0,0 +OWEN,droids,2,0,0 +OWEN,morning,2,0,0 +OWEN,season,2,0,0 +OWEN,south,2,0,0 +OWEN,time,2,0,0 +OWEN,tomorrow,2,0,0 +OWEN,yeah,2,0,0 +PIETT,lord,0,14,0 +PIETT,vader,0,4,0 +PIETT,commands,0,3,0 +PIETT,alert,0,2,0 +PIETT,beam,0,2,0 +PIETT,falcon,0,2,0 +PIETT,millennium,0,2,0 +PIETT,ships,0,2,0 +PIETT,sir,0,2,0 +PIETT,tractor,0,2,0 +RED LEADER,red,6,0,0 +RED LEADER,copy,4,0,0 +RED LEADER,attack,3,0,0 +RED LEADER,gold,3,0,0 +RED LEADER,hold,3,0,0 +RED LEADER,leader,3,0,0 +RED LEADER,luke,3,0,0 +RED LEADER,position,3,0,0 +RED LEADER,coming,2,0,0 +RED LEADER,cut,2,0,0 +TARKIN,station,5,0,0 +TARKIN,rebel,4,0,0 +TARKIN,vader,4,0,0 +TARKIN,fire,3,0,0 +TARKIN,planet,3,0,0 +TARKIN,power,3,0,0 +TARKIN,princess,3,0,0 +TARKIN,time,3,0,0 +TARKIN,alderaan,2,0,0 +TARKIN,base,2,0,0 +THREEPIO,sir,34,22,0 +THREEPIO,artoo,12,12,30 +THREEPIO,master,7,6,14 +THREEPIO,luke,5,6,13 +THREEPIO,wait,0,9,0 +THREEPIO,jabba,0,0,9 +THREEPIO,help,8,0,0 +THREEPIO,dear,0,4,4 +THREEPIO,fault,6,0,0 +THREEPIO,main,5,0,0 +TROOPER,blast,4,0,0 +TROOPER,doors,3,0,0 +TROOPER,move,3,0,0 +TROOPER,check,2,0,0 +TROOPER,droids,2,0,0 +TROOPER,identification,2,0,0 +TROOPER,ship,2,0,0 +TROOPER,business,1,0,0 +TROOPER,close,1,0,0 +TROOPER,door,1,0,0 +VADER,ship,6,4,0 +VADER,emperor,0,4,6 +VADER,obiwan,0,5,3 +VADER,force,5,0,2 +VADER,admiral,0,7,0 +VADER,skywalker,0,7,0 +VADER,master,0,0,7 +VADER,commander,2,0,4 +VADER,plans,5,0,0 +VADER,destroy,2,3,0 +WEDGE,leader,0,2,5 +WEDGE,red,2,0,4 +WEDGE,copy,0,1,2 +WEDGE,gold,0,0,3 +WEDGE,boss,2,0,0 +WEDGE,computer,2,0,0 +WEDGE,hit,2,0,0 +WEDGE,luke,2,0,0 +WEDGE,tower,2,0,0 +WEDGE,watch,2,0,0 +YODA,force,0,10,4 +YODA,jedi,0,6,3 +YODA,dark,0,4,2 +YODA,mind,0,5,0 +YODA,ally,0,3,0 +YODA,control,0,3,0 +YODA,future,0,3,0 +YODA,ready,0,3,0 +YODA,trained,0,3,0 +YODA,training,0,3,0 \ No newline at end of file diff --git a/Text_files/top_chars_by_eps.txt b/Text_files/top_chars_by_eps.txt new file mode 100644 index 0000000..cb16bc7 --- /dev/null +++ b/Text_files/top_chars_by_eps.txt @@ -0,0 +1,21 @@ +"IV" "V" "VI" +"ACKBAR" 0 0 14 +"BEN" 82 15 18 +"BIGGS" 34 0 0 +"CREATURE" 1 21 0 +"EMPEROR" 0 5 39 +"GOLD LEADER" 14 0 0 +"HAN" 153 182 124 +"JABBA" 6 0 20 +"LANDO" 0 61 40 +"LEIA" 57 114 56 +"LUKE" 254 128 112 +"OWEN" 25 0 0 +"PIETT" 0 23 8 +"RED LEADER" 37 0 1 +"TARKIN" 28 0 0 +"THREEPIO" 119 92 90 +"TROOPER" 19 0 0 +"VADER" 41 56 43 +"WEDGE" 14 8 11 +"YODA" 0 36 13 diff --git a/Text_files/top_chars_network.txt b/Text_files/top_chars_network.txt new file mode 100644 index 0000000..44a8eef --- /dev/null +++ b/Text_files/top_chars_network.txt @@ -0,0 +1,187 @@ +"V1" "V2" +"1" "ACKBAR" "BEN" +"2" "ACKBAR" "BIGGS" +"3" "ACKBAR" "CREATURE" +"4" "ACKBAR" "EMPEROR" +"5" "ACKBAR" "GOLD LEADER" +"6" "ACKBAR" "HAN" +"7" "ACKBAR" "JABBA" +"8" "ACKBAR" "LANDO" +"9" "ACKBAR" "LEIA" +"10" "ACKBAR" "LUKE" +"11" "ACKBAR" "OWEN" +"12" "ACKBAR" "PIETT" +"13" "ACKBAR" "RED LEADER" +"14" "ACKBAR" "TARKIN" +"15" "ACKBAR" "THREEPIO" +"16" "ACKBAR" "TROOPER" +"17" "ACKBAR" "VADER" +"18" "ACKBAR" "WEDGE" +"19" "ACKBAR" "YODA" +"20" "BEN" "BIGGS" +"21" "BEN" "CREATURE" +"22" "BEN" "EMPEROR" +"23" "BEN" "GOLD LEADER" +"24" "BEN" "HAN" +"25" "BEN" "JABBA" +"26" "BEN" "LANDO" +"27" "BEN" "LEIA" +"28" "BEN" "LUKE" +"29" "BEN" "OWEN" +"30" "BEN" "PIETT" +"31" "BEN" "RED LEADER" +"32" "BEN" "TARKIN" +"33" "BEN" "THREEPIO" +"34" "BEN" "TROOPER" +"35" "BEN" "VADER" +"36" "BEN" "WEDGE" +"37" "BEN" "YODA" +"38" "BIGGS" "CREATURE" +"39" "BIGGS" "EMPEROR" +"40" "BIGGS" "GOLD LEADER" +"41" "BIGGS" "HAN" +"42" "BIGGS" "JABBA" +"43" "BIGGS" "LANDO" +"44" "BIGGS" "LEIA" +"45" "BIGGS" "LUKE" +"46" "BIGGS" "OWEN" +"47" "BIGGS" "PIETT" +"48" "BIGGS" "RED LEADER" +"49" "BIGGS" "TARKIN" +"50" "BIGGS" "THREEPIO" +"51" "BIGGS" "TROOPER" +"52" "BIGGS" "VADER" +"53" "BIGGS" "WEDGE" +"54" "BIGGS" "YODA" +"55" "CREATURE" "EMPEROR" +"56" "CREATURE" "HAN" +"57" "CREATURE" "JABBA" +"58" "CREATURE" "LANDO" +"59" "CREATURE" "LEIA" +"60" "CREATURE" "LUKE" +"61" "CREATURE" "OWEN" +"62" "CREATURE" "PIETT" +"63" "CREATURE" "RED LEADER" +"64" "CREATURE" "TARKIN" +"65" "CREATURE" "THREEPIO" +"66" "CREATURE" "TROOPER" +"67" "CREATURE" "VADER" +"68" "CREATURE" "WEDGE" +"69" "CREATURE" "YODA" +"70" "EMPEROR" "GOLD LEADER" +"71" "EMPEROR" "HAN" +"72" "EMPEROR" "JABBA" +"73" "EMPEROR" "LANDO" +"74" "EMPEROR" "LEIA" +"75" "EMPEROR" "LUKE" +"76" "EMPEROR" "OWEN" +"77" "EMPEROR" "PIETT" +"78" "EMPEROR" "RED LEADER" +"79" "EMPEROR" "TARKIN" +"80" "EMPEROR" "THREEPIO" +"81" "EMPEROR" "TROOPER" +"82" "EMPEROR" "VADER" +"83" "EMPEROR" "WEDGE" +"84" "EMPEROR" "YODA" +"85" "GOLD LEADER" "HAN" +"86" "GOLD LEADER" "LANDO" +"87" "GOLD LEADER" "LEIA" +"88" "GOLD LEADER" "LUKE" +"89" "GOLD LEADER" "OWEN" +"90" "GOLD LEADER" "PIETT" +"91" "GOLD LEADER" "RED LEADER" +"92" "GOLD LEADER" "TARKIN" +"93" "GOLD LEADER" "THREEPIO" +"94" "GOLD LEADER" "TROOPER" +"95" "GOLD LEADER" "VADER" +"96" "GOLD LEADER" "WEDGE" +"97" "GOLD LEADER" "YODA" +"98" "HAN" "JABBA" +"99" "HAN" "LANDO" +"100" "HAN" "LEIA" +"101" "HAN" "LUKE" +"102" "HAN" "OWEN" +"103" "HAN" "PIETT" +"104" "HAN" "RED LEADER" +"105" "HAN" "TARKIN" +"106" "HAN" "THREEPIO" +"107" "HAN" "TROOPER" +"108" "HAN" "VADER" +"109" "HAN" "WEDGE" +"110" "HAN" "YODA" +"111" "JABBA" "LANDO" +"112" "JABBA" "LEIA" +"113" "JABBA" "LUKE" +"114" "JABBA" "OWEN" +"115" "JABBA" "PIETT" +"116" "JABBA" "RED LEADER" +"117" "JABBA" "TARKIN" +"118" "JABBA" "THREEPIO" +"119" "JABBA" "TROOPER" +"120" "JABBA" "VADER" +"121" "JABBA" "YODA" +"122" "LANDO" "LEIA" +"123" "LANDO" "LUKE" +"124" "LANDO" "OWEN" +"125" "LANDO" "PIETT" +"126" "LANDO" "RED LEADER" +"127" "LANDO" "TARKIN" +"128" "LANDO" "THREEPIO" +"129" "LANDO" "TROOPER" +"130" "LANDO" "VADER" +"131" "LANDO" "WEDGE" +"132" "LANDO" "YODA" +"133" "LEIA" "LUKE" +"134" "LEIA" "OWEN" +"135" "LEIA" "PIETT" +"136" "LEIA" "RED LEADER" +"137" "LEIA" "TARKIN" +"138" "LEIA" "THREEPIO" +"139" "LEIA" "TROOPER" +"140" "LEIA" "VADER" +"141" "LEIA" "WEDGE" +"142" "LEIA" "YODA" +"143" "LUKE" "OWEN" +"144" "LUKE" "PIETT" +"145" "LUKE" "RED LEADER" +"146" "LUKE" "TARKIN" +"147" "LUKE" "THREEPIO" +"148" "LUKE" "TROOPER" +"149" "LUKE" "VADER" +"150" "LUKE" "WEDGE" +"151" "LUKE" "YODA" +"152" "OWEN" "PIETT" +"153" "OWEN" "RED LEADER" +"154" "OWEN" "TARKIN" +"155" "OWEN" "THREEPIO" +"156" "OWEN" "TROOPER" +"157" "OWEN" "VADER" +"158" "OWEN" "WEDGE" +"159" "OWEN" "YODA" +"160" "PIETT" "RED LEADER" +"161" "PIETT" "TARKIN" +"162" "PIETT" "THREEPIO" +"163" "PIETT" "TROOPER" +"164" "PIETT" "VADER" +"165" "PIETT" "WEDGE" +"166" "PIETT" "YODA" +"167" "RED LEADER" "TARKIN" +"168" "RED LEADER" "THREEPIO" +"169" "RED LEADER" "TROOPER" +"170" "RED LEADER" "VADER" +"171" "RED LEADER" "WEDGE" +"172" "RED LEADER" "YODA" +"173" "TARKIN" "THREEPIO" +"174" "TARKIN" "TROOPER" +"175" "TARKIN" "VADER" +"176" "TARKIN" "WEDGE" +"177" "TARKIN" "YODA" +"178" "THREEPIO" "TROOPER" +"179" "THREEPIO" "VADER" +"180" "THREEPIO" "WEDGE" +"181" "THREEPIO" "YODA" +"182" "TROOPER" "VADER" +"183" "TROOPER" "YODA" +"184" "VADER" "WEDGE" +"185" "VADER" "YODA" +"186" "WEDGE" "YODA" diff --git a/Text_files/weight_edges_graph1.txt b/Text_files/weight_edges_graph1.txt new file mode 100644 index 0000000..a010359 --- /dev/null +++ b/Text_files/weight_edges_graph1.txt @@ -0,0 +1,187 @@ +"x" +"1" 45 +"2" 5 +"3" 2 +"4" 41 +"5" 8 +"6" 100 +"7" 2 +"8" 99 +"9" 66 +"10" 50 +"11" 5 +"12" 3 +"13" 19 +"14" 17 +"15" 55 +"16" 5 +"17" 73 +"18" 6 +"19" 27 +"20" 372 +"21" 158 +"22" 358 +"23" 9 +"24" 1068 +"25" 74 +"26" 261 +"27" 735 +"28" 1492 +"29" 188 +"30" 67 +"31" 123 +"32" 163 +"33" 977 +"34" 39 +"35" 710 +"36" 90 +"37" 689 +"38" 11 +"39" 48 +"40" 8 +"41" 497 +"42" 7 +"43" 80 +"44" 297 +"45" 338 +"46" 101 +"47" 8 +"48" 66 +"49" 19 +"50" 516 +"51" 2 +"52" 115 +"53" 72 +"54" 74 +"55" 57 +"56" 91 +"57" 15 +"58" 17 +"59" 52 +"60" 174 +"61" 4 +"62" 2 +"63" 5 +"64" 14 +"65" 90 +"66" 3 +"67" 57 +"68" 2 +"69" 74 +"70" 2 +"71" 236 +"72" 32 +"73" 88 +"74" 143 +"75" 411 +"76" 27 +"77" 47 +"78" 29 +"79" 71 +"80" 160 +"81" 9 +"82" 302 +"83" 8 +"84" 195 +"85" 28 +"86" 28 +"87" 12 +"88" 40 +"89" 1 +"90" 3 +"91" 48 +"92" 5 +"93" 79 +"94" 1 +"95" 19 +"96" 56 +"97" 2 +"98" 103 +"99" 907 +"100" 1627 +"101" 2882 +"102" 276 +"103" 87 +"104" 188 +"105" 188 +"106" 2087 +"107" 77 +"108" 710 +"109" 172 +"110" 358 +"111" 60 +"112" 61 +"113" 179 +"114" 6 +"115" 4 +"116" 8 +"117" 11 +"118" 105 +"119" 9 +"120" 51 +"121" 40 +"122" 329 +"123" 696 +"124" 36 +"125" 108 +"126" 70 +"127" 103 +"128" 409 +"129" 32 +"130" 207 +"131" 59 +"132" 92 +"133" 1308 +"134" 148 +"135" 61 +"136" 111 +"137" 105 +"138" 1158 +"139" 21 +"140" 409 +"141" 85 +"142" 198 +"143" 197 +"144" 75 +"145" 233 +"146" 233 +"147" 3234 +"148" 71 +"149" 858 +"150" 164 +"151" 553 +"152" 1 +"153" 24 +"154" 12 +"155" 238 +"156" 4 +"157" 67 +"158" 22 +"159" 42 +"160" 9 +"161" 60 +"162" 213 +"163" 20 +"164" 74 +"165" 4 +"166" 29 +"167" 10 +"168" 142 +"169" 6 +"170" 59 +"171" 117 +"172" 28 +"173" 130 +"174" 10 +"175" 152 +"176" 6 +"177" 61 +"178" 31 +"179" 870 +"180" 128 +"181" 229 +"182" 34 +"183" 8 +"184" 38 +"185" 343 +"186" 20 diff --git a/Text_files/weight_edges_graph2.txt b/Text_files/weight_edges_graph2.txt new file mode 100644 index 0000000..4ea3445 --- /dev/null +++ b/Text_files/weight_edges_graph2.txt @@ -0,0 +1,187 @@ +"x" +"1" 0.0923076923076923 +"2" 0.0476190476190477 +"3" 0.0476190476190477 +"4" 0.123287671232877 +"5" 0.09375 +"6" 0.0962566844919787 +"7" 0.04 +"8" 0.121495327102804 +"9" 0.107913669064748 +"10" 0.0666666666666667 +"11" 0.0681818181818182 +"12" 0.0434782608695652 +"13" 0.0980392156862745 +"14" 0.0892857142857143 +"15" 0.0645161290322581 +"16" 0.0588235294117647 +"17" 0.150943396226415 +"18" 0.0638297872340425 +"19" 0.0746268656716418 +"20" 0.208955223880597 +"21" 0.147540983606557 +"22" 0.338345864661654 +"23" 0.031496062992126 +"24" 0.433333333333333 +"25" 0.138461538461538 +"26" 0.270588235294118 +"27" 0.351351351351351 +"28" 0.447619047619048 +"29" 0.1 +"30" 0.0666666666666667 +"31" 0.134328358208955 +"32" 0.236220472440945 +"33" 0.359375 +"34" 0.056 +"35" 0.321212121212121 +"36" 0.0977443609022557 +"37" 0.253731343283582 +"38" 0.0847457627118644 +"39" 0.146067415730337 +"40" 0.0576923076923077 +"41" 0.171875 +"42" 0.0588235294117647 +"43" 0.186440677966102 +"44" 0.183673469387755 +"45" 0.2 +"46" 0.0634920634920635 +"47" 0.0303030303030303 +"48" 0.117647058823529 +"49" 0.10958904109589 +"50" 0.170886075949367 +"51" 0.0181818181818182 +"52" 0.118110236220472 +"53" 0.129032258064516 +"54" 0.135802469135803 +"55" 0.230769230769231 +"56" 0.0740740740740741 +"57" 0.0869565217391305 +"58" 0.0535714285714286 +"59" 0.0704225352112676 +"60" 0.08994708994709 +"61" 0.0714285714285714 +"62" 0.0454545454545454 +"63" 0.0588235294117647 +"64" 0.134615384615385 +"65" 0.0723684210526315 +"66" 0.0625 +"67" 0.121495327102804 +"68" 0.0212765957446809 +"69" 0.129032258064516 +"70" 0.0289855072463768 +"71" 0.205 +"72" 0.128205128205128 +"73" 0.138686131386861 +"74" 0.217948717948718 +"75" 0.238578680203046 +"76" 0.106666666666667 +"77" 0.0632911392405063 +"78" 0.108433734939759 +"79" 0.197530864197531 +"80" 0.161849710982659 +"81" 0.0588235294117647 +"82" 0.305785123966942 +"83" 0.0487804878048781 +"84" 0.227272727272727 +"85" 0.0374331550802139 +"86" 0.0792079207920792 +"87" 0.0514705882352942 +"88" 0.053475935828877 +"89" 0.0285714285714286 +"90" 0.0277777777777778 +"91" 0.216216216216216 +"92" 0.0204081632653061 +"93" 0.0405405405405406 +"94" 0.0416666666666666 +"95" 0.0471698113207547 +"96" 0.21875 +"97" 0.0338983050847458 +"98" 0.140540540540541 +"99" 0.430769230769231 +"100" 0.54950495049505 +"101" 0.653153153153153 +"102" 0.113513513513513 +"103" 0.0952380952380952 +"104" 0.143617021276596 +"105" 0.151832460732984 +"106" 0.572815533980582 +"107" 0.0597826086956522 +"108" 0.38423645320197 +"109" 0.111702127659574 +"110" 0.190721649484536 +"111" 0.125 +"112" 0.0958904109589042 +"113" 0.114583333333333 +"114" 0.0816326530612245 +"115" 0.0588235294117647 +"116" 0.0689655172413793 +"117" 0.0983606557377049 +"118" 0.155405405405405 +"119" 0.05 +"120" 0.132743362831858 +"121" 0.114285714285714 +"122" 0.365269461077844 +"123" 0.41 +"124" 0.141509433962264 +"125" 0.0990990990990991 +"126" 0.181818181818182 +"127" 0.173913043478261 +"128" 0.373563218390805 +"129" 0.0784313725490197 +"130" 0.272727272727273 +"131" 0.169811320754717 +"132" 0.140625 +"133" 0.533980582524272 +"134" 0.115107913669065 +"135" 0.0909090909090909 +"136" 0.131034482758621 +"137" 0.190140845070423 +"138" 0.459893048128342 +"139" 0.0588235294117647 +"140" 0.32183908045977 +"141" 0.112676056338028 +"142" 0.184210526315789 +"143" 0.111702127659574 +"144" 0.0552763819095478 +"145" 0.147368421052632 +"146" 0.173684210526316 +"147" 0.52803738317757 +"148" 0.0588235294117647 +"149" 0.358851674641148 +"150" 0.127659574468085 +"151" 0.225130890052356 +"152" 0.0208333333333334 +"153" 0.0555555555555556 +"154" 0.0508474576271186 +"155" 0.106666666666667 +"156" 0.0277777777777778 +"157" 0.108108108108108 +"158" 0.0408163265306123 +"159" 0.0895522388059702 +"160" 0.0545454545454546 +"161" 0.145454545454546 +"162" 0.120805369127517 +"163" 0.0555555555555556 +"164" 0.137614678899083 +"165" 0.0196078431372549 +"166" 0.0571428571428572 +"167" 0.0142857142857142 +"168" 0.107594936708861 +"169" 0.0454545454545454 +"170" 0.1 +"171" 0.304347826086957 +"172" 0.0789473684210527 +"173" 0.139240506329114 +"174" 0.0625 +"175" 0.181034482758621 +"176" 0.0317460317460317 +"177" 0.16 +"178" 0.0472972972972973 +"179" 0.324175824175824 +"180" 0.0903225806451613 +"181" 0.150602409638554 +"182" 0.0666666666666667 +"183" 0.0508474576271186 +"184" 0.05 +"185" 0.28695652173913 +"186" 0.0555555555555556