Combined Code
frame 1 {
NewgroundsAPI.connectMovie(5281);
}
frame 1 {
bobbing_range = 30;
nodding_range = 30;
bobbing_hit = 0.7;
nodding_hit = 1.2;
bobbing_damp = 0.99;
nodding_damp = 0.985;
bobbing_angle = 0;
nodding_angle = 0;
bobbing_force = 0;
nodding_force = 0;
head_origin = head._y;
head.onEnterFrame = function () {
if (bobbing_force) {
this._y = head_origin + Math.sin(bobbing_angle) * bobbing_force * bobbing_range / 2;
bobbing_angle += bobbing_hit * bobbing_force;
bobbing_force *= bobbing_damp;
}
if (nodding_force) {
this._rotation = Math.sin(nodding_angle) * nodding_force * nodding_range / 2;
nodding_angle += nodding_hit * nodding_force;
nodding_force *= nodding_damp;
}
};
head.onPress = function () {
nodding_angle = 0;
bobbing_angle = 0;
nodding_force = 1;
bobbing_force = 1;
};
}
movieClip 12 {
}
movieClip 16 {
}
button 25 {
on (press) {
tellTarget ('_root') {
nextFrame();
}
}
}
button 26 {
on (press) {
gotoAndStop('end');
_root.play();
}
}
movieClip 27 {
instance of movieClip 16 {
onClipEvent (load) {
_root.stop();
PercentLoaded = int((_root.getBytesLoaded() / _root.getBytesTotal()) * 100);
if (PercentLoaded != 100) {
_parent.gotoAndStop(PercentLoaded);
} else {
_parent.gotoAndStop('lastframe');
}
}
onClipEvent (enterFrame) {
PercentLoaded = int((_root.getBytesLoaded() / _root.getBytesTotal()) * 100);
if (PercentLoaded != 100) {
_parent.gotoAndStop(PercentLoaded);
} else {
_parent.gotoAndPlay('loaded');
}
}
}
frame 101 {
play();
}
frame 165 {
stop();
}
}
movieClip 31 {
}
button 34 {
on (release) {
NewgroundsAPI.loadNewgrounds();
}
}
button 40 {
on (release) {
NewgroundsAPI.loadNewgrounds();
}
}
movieClip 41 {
}
movieClip 42 {
frame 1 {
function startAd(ngad_url) {
trace('opening ' + ngad_url);
System.security.allowDomain('70.87.128.99');
System.security.allowInsecureDomain('70.87.128.99');
System.security.allowDomain('ads.shizmoo.com');
System.security.allowInsecureDomain('ads.shizmoo.com');
System.security.allowDomain('www.cpmstar.com');
System.security.allowInsecureDomain('www.cpmstar.com');
System.security.allowDomain('server.cpmstar.com');
System.security.allowInsecureDomain('server.cpmstar.com');
var ngads_redirect = new XML();
ngads_redirect.ignoreWhite = true;
ngads_redirect.onLoad = function (success) {
trace('[NEWGROUNDS FLASH ADS] :: You may get a \'Security Sandbox Violation\' ... this is normal, do not freak out!');
if (success) {
ng_ad.loadMovie(ngads_redirect.toString(), 'GET');
} else {}
};
ngads_redirect.load(ngad_url);
}
if (NewgroundsAPI.getAdURL()) {
startAd(NewgroundsAPI.getAdURL());
}
NewgroundsAPI.onAdsApproved = function (ad_url) {
startAd(ad_url);
};
stop();
}
}
movieClip 46 {
}
movieClip 48 {
}
movieClip 337 __Packages.NewgroundsAPI {
#initclip
if (!_global.NewgroundsAPI) {
var v1 = function () {};
_global.NewgroundsAPI = v1;
var v2 = v1.prototype;
v1.connectMovie = function (id) {
if (!id) {
NewgroundsAPI.SendError('Missing required \'id\' parameter in NewgroundsAPI.connectMovie(id:Number)');
} else {
if (!NewgroundsAPI.tracker_id) {
NewgroundsAPI.SendMessage('Connecting to API gateway...');
NewgroundsAPI.tracker_id = id;
NewgroundsAPI.host = (_url.split('/'))[2].toLowerCase();
if (NewgroundsAPI.host.length < 1) {
NewgroundsAPI.host = 'localhost';
}
var v2 = new Object();
NewgroundsAPI.SendEvent(NewgroundsAPI.MOVIE_VIEWS);
}
}
};
v1.setMovieVersion = function (movie_version) {
if (!movie_version) {
NewgroundsAPI.SendError('Missing required \'version\' in NewgroundsAPI.setMovieVersion(version:String)');
} else {
NewgroundsAPI.version = movie_version;
}
};
v1.debugMode = function () {
NewgroundsAPI.debug = true;
};
v1.addCustomEvent = function (stat_id, stat_name) {
if (!stat_id) {
NewgroundsAPI.SendError('Missing required \'id\' parameter in NewgroundsAPI.AddCustomEvent(id:Number, event_name:String)');
} else {
if (!stat_name) {
NewgroundsAPI.SendError('Missing required \'event_name\' parameter in NewgroundsAPI.AddCustomEvent(id:Number, event_name:String)');
} else {
NewgroundsAPI.custom_events[stat_name] = NewgroundsAPI.CUSTOM_STATS + stat_id;
NewgroundsAPI.SendMessage('Created custom event: ' + stat_name);
}
}
};
v1.addCustomLink = function (stat_id, stat_name) {
if (!stat_id) {
NewgroundsAPI.SendError('Missing required \'id\' parameter in NewgroundsAPI.AddCustomLink(id:Number, link_name:String)');
} else {
if (!stat_name) {
NewgroundsAPI.SendError('Missing required \'link_name\' parameter in NewgroundsAPI.AddCustomLink(id:Number, link_name:String)');
} else {
NewgroundsAPI.custom_links[stat_name] = NewgroundsAPI.CUSTOM_STATS + stat_id;
NewgroundsAPI.SendMessage('Created custom link ' + stat_id + ': ' + stat_name);
}
}
};
v1.loadMySite = function () {
NewgroundsAPI.SendLink(NewgroundsAPI.AUTHOR_SITE);
};
v1.loadNewgrounds = function (special) {
if (special) {
var v1 = {'page': special};
}
NewgroundsAPI.SendLink(NewgroundsAPI.NEWGROUNDS, v1);
};
v1.logCustomEvent = function (event_name) {
if (!event_name) {
NewgroundsAPI.SendError('Missing required \'event_name\' parameter in NewgroundsAPI.logCustomEvent(event_name:String)');
} else {
if (!NewgroundsAPI.custom_events[event_name]) {
NewgroundsAPI.SendError('Attempted to log undefined custom event: ' + event_name);
} else {
NewgroundsAPI.SendEvent(NewgroundsAPI.custom_events[event_name]);
}
}
};
v1.loadCustomLink = function (link_name) {
if (!link_name) {
NewgroundsAPI.SendError('Missing required \'link_name\' parameter in NewgroundsAPI.loadCustomLink(link_name:String)');
} else {
if (!NewgroundsAPI.custom_links[link_name]) {
NewgroundsAPI.SendError('Attempted to open undefined custom link: ' + link_name);
} else {
NewgroundsAPI.SendLink(NewgroundsAPI.custom_links[link_name]);
}
}
};
v1.getAdURL = function () {
return NewgroundsAPI.movie_options.ad_url;
};
v1.getMovieURL = function () {
if (NewgroundsAPI.movie_options.movie_url) {
return NewgroundsAPI.movie_options.movie_url;
} else {
return 'Newgrounds.com';
}
};
v1.getNewVersionURL = function () {
return NewgroundsAPI.GATEWAY_URL + '?&id=' + NewgroundsAPI.tracker_id + '&host=' + escape(NewgroundsAPI.host) + '&stat=' + NewgroundsAPI.NEW_VERSION;
};
v1.SendEvent = function (id) {
NewgroundsAPI.SendStat(id, false);
};
v1.SendLink = function (id, extra) {
NewgroundsAPI.SendStat(id, true, extra);
};
v1.ReadGatewayData = function (params) {
for (var v2 in params) {
params[v2] = unescape(params[v2]);
NewgroundsAPI.movie_options[v2] = params[v2];
}
if (params.settings_loaded) {
NewgroundsAPI.SendMessage('You have successfully connected to the Newgrounds API gateway!');
NewgroundsAPI.SendMessage('Movie Identified as \'' + NewgroundsAPI.movie_options.movie_name + '\'');
if (NewgroundsAPI.movie_options.message) {
NewgroundsAPI.SendMessage(NewgroundsAPI.movie_options.message);
}
if (NewgroundsAPI.movie_options.ad_url) {
NewgroundsAPI.SendMessage('Your movie has been approved to run Flash Ads');
NewgroundsAPI.onAdsApproved(NewgroundsAPI.movie_options.ad_url);
}
if (NewgroundsAPI.movie_options.movie_version and NewgroundsAPI.movie_options.movie_version.toString() != NewgroundsAPI.version.toString()) {
NewgroundsAPI.SendMessage('WARNING: The movie version configured in your API settings does not match this movie\'s version!');
NewgroundsAPI.onNewVersionAvailable(NewgroundsAPI.movie_options.movie_version, NewgroundsAPI.getMovieURL(), NewgroundsAPI.getNewVersionURL());
}
if (NewgroundsAPI.movie_options.deny_host) {
NewgroundsAPI.SendMessage('You have blocked \'localHost\' in your API settings.');
NewgroundsAPI.SendMessage('If you wish to test your movie you will need to remove this block.');
NewgroundsAPI.onDenyHost(NewgroundsAPI.host, NewgroundsAPI.getMovieURL(), NewgroundsAPI.getNewVersionURL());
}
if (NewgroundsAPI.movie_options.request_portal_url == 1) {
var v4 = NewgroundsAPI.GATEWAY_URL + '?&id=' + NewgroundsAPI.tracker_id + '&portal_url=' + escape(_url);
var v3 = new XML();
v3.ignoreWhite = true;
v3.load(v4);
}
} else {
if (!NewgroundsAPI.movie_options.settings_loaded) {
NewgroundsAPI.SendError('Could not establish connection to the API gateway.');
}
}
};
v1.SendStat = function (stat_id, open_in_browser, extra) {
if (!NewgroundsAPI.tracker_id) {
NewgroundsAPI.SendError('API calls cannot be made without a valid movie id.');
NewgroundsAPI.SendError('Did you remember to add the "NewgroundsAPI.connectMovie()" code?');
} else {
var v7 = NewgroundsAPI.GATEWAY_URL + '?&id=' + NewgroundsAPI.tracker_id + '&host=' + escape(NewgroundsAPI.host) + '&stat=' + stat_id;
for (var v9 in extra) {
v7 += '&' + escape(v9) + '=' + escape(extra[v9]);
}
trace(v7);
if (NewgroundsAPI.debug) {
v7 += '&debug=1';
}
if (open_in_browser) {
getURL(v7, '_blank');
} else {
var v10 = new XML();
v10.ignoreWhite = true;
v10.onLoad = function (success) {
var v6 = new Object();
var v3 = 0;
while (v3 < this.firstChild.childNodes.length) {
var v4 = this.firstChild.childNodes[v3];
var v5 = v4.nodeName;
var v2 = v4.attributes.value;
if (v2 == Number(v2)) {
v2 = Number(v2);
}
v6[v5] = v2;
++v3;
}
NewgroundsAPI.ReadGatewayData(v6);
};
v10.load(v7);
}
}
};
v1.SendError = function (msg) {
trace('[NEWGROUNDS API ERROR] :: ' + msg);
};
v1.SendMessage = function (msg) {
trace('[NEWGROUNDS API] :: ' + msg);
};
v1.InitTextFormats = function () {
if (!NewgroundsAPI.error_format) {
NewgroundsAPI.error_format = new TextFormat();
NewgroundsAPI.error_format.font = 'Arial Black';
NewgroundsAPI.error_format.size = 48;
NewgroundsAPI.error_format.color = 16711680;
}
if (!NewgroundsAPI.header_format) {
NewgroundsAPI.header_format = new TextFormat();
NewgroundsAPI.header_format.font = 'Arial Black';
NewgroundsAPI.header_format.size = 24;
NewgroundsAPI.header_format.color = 16777215;
}
if (!NewgroundsAPI.normal_format) {
NewgroundsAPI.normal_format = new TextFormat();
NewgroundsAPI.normal_format.font = 'Arial';
NewgroundsAPI.normal_format.bold = true;
NewgroundsAPI.normal_format.size = 12;
NewgroundsAPI.normal_format.color = 16777215;
}
if (!NewgroundsAPI.link_format) {
NewgroundsAPI.link_format = new TextFormat();
NewgroundsAPI.link_format.color = 16776960;
NewgroundsAPI.link_format.underline = true;
}
};
v1.onNewVersionAvailable = function (version, movie_url, redirect_url) {
NewgroundsAPI.InitTextFormats();
var v2 = new Object();
v2.x = Stage.width / 2;
v2.y = Stage.height / 2;
_root.createEmptyMovieClip('NGAPI_new_version_overlay', _root.getNextHighestDepth());
_root.NGAPI_new_version_overlay.lineStyle(1, 0, 100);
_root.NGAPI_new_version_overlay.beginFill(0, 70);
_root.NGAPI_new_version_overlay.moveTo(-10, -10);
_root.NGAPI_new_version_overlay.lineTo(-10, 1000);
_root.NGAPI_new_version_overlay.lineTo(1000, 1000);
_root.NGAPI_new_version_overlay.lineTo(1000, -10);
_root.NGAPI_new_version_overlay.lineTo(-10, -10);
_root.NGAPI_new_version_overlay.endFill();
_root.NGAPI_new_version_overlay.lineStyle(10, 0, 100);
_root.NGAPI_new_version_overlay.beginFill(51);
_root.NGAPI_new_version_overlay.moveTo(v2.x - 240, v2.y - 120);
_root.NGAPI_new_version_overlay.lineTo(v2.x + 240, v2.y - 120);
_root.NGAPI_new_version_overlay.lineTo(v2.x + 240, v2.y + 80);
_root.NGAPI_new_version_overlay.lineTo(v2.x - 240, v2.y + 80);
_root.NGAPI_new_version_overlay.lineTo(v2.x - 240, v2.y - 120);
_root.NGAPI_new_version_overlay.endFill();
_root.NGAPI_new_version_overlay.createEmptyMovieClip('exit', 1000);
_root.NGAPI_new_version_overlay.exit.lineStyle(2, 39423, 100);
_root.NGAPI_new_version_overlay.exit.beginFill(0, 50);
_root.NGAPI_new_version_overlay.exit.moveTo(v2.x + 210, v2.y - 110);
_root.NGAPI_new_version_overlay.exit.lineTo(v2.x + 230, v2.y - 110);
_root.NGAPI_new_version_overlay.exit.lineTo(v2.x + 230, v2.y - 90);
_root.NGAPI_new_version_overlay.exit.lineTo(v2.x + 210, v2.y - 90);
_root.NGAPI_new_version_overlay.exit.lineTo(v2.x + 210, v2.y - 110);
_root.NGAPI_new_version_overlay.exit.endFill();
_root.NGAPI_new_version_overlay.exit.moveTo(v2.x + 214, v2.y - 106);
_root.NGAPI_new_version_overlay.exit.lineTo(v2.x + 226, v2.y - 94);
_root.NGAPI_new_version_overlay.exit.moveTo(v2.x + 226, v2.y - 106);
_root.NGAPI_new_version_overlay.exit.lineTo(v2.x + 214, v2.y - 94);
_root.NGAPI_new_version_overlay.exit.onMouseUp = function () {
if (_root.NGAPI_new_version_overlay.exit.hitTest(_root._xmouse, _root._ymouse)) {
_root.NGAPI_new_version_overlay.removeMovieClip();
}
};
var v3 = 'Version ' + version + ' is now available at:' + '\n';
var v5 = v3.length;
v3 += movie_url;
var v4 = v3.length;
_root.NGAPI_new_version_overlay.createTextField('mouseblocker', 99, -10, -10, 1000, 1000);
_root.NGAPI_new_version_overlay.createTextField('newversion', 100, v2.x - 210, v2.y - 90, 400, 80);
_root.NGAPI_new_version_overlay.newversion.text = 'New Version Available!';
_root.NGAPI_new_version_overlay.newversion.setTextFormat(NewgroundsAPI.header_format);
_root.NGAPI_new_version_overlay.createTextField('message', 101, (Stage.width - 400) / 2, Stage.height / 2, 400, 40);
_root.NGAPI_new_version_overlay.message.text = v3;
_root.NGAPI_new_version_overlay.message.multiline = true;
_root.NGAPI_new_version_overlay.message.wordWrap = true;
_root.NGAPI_new_version_overlay.message.html = true;
_root.NGAPI_new_version_overlay.message.setTextFormat(NewgroundsAPI.normal_format);
NewgroundsAPI.link_format.url = redirect_url;
_root.NGAPI_new_version_overlay.message.setTextFormat(v5, v4, NewgroundsAPI.link_format);
};
v1.onDenyHost = function (hostname, movie_url, redirect_url) {
NewgroundsAPI.InitTextFormats();
_root.createEmptyMovieClip('NGAPI_deny_host_overlay', _root.getNextHighestDepth());
_root.NGAPI_deny_host_overlay.lineStyle(20, 0, 100);
_root.NGAPI_deny_host_overlay.beginFill(6684672);
_root.NGAPI_deny_host_overlay.moveTo(0, 0);
_root.NGAPI_deny_host_overlay.lineTo(Stage.width, 0);
_root.NGAPI_deny_host_overlay.lineTo(Stage.width, Stage.height);
_root.NGAPI_deny_host_overlay.lineTo(0, Stage.height);
_root.NGAPI_deny_host_overlay.lineTo(0, 0);
_root.NGAPI_deny_host_overlay.endFill();
var v2 = 'This movie has not been approved for use on ' + hostname + '.';
v2 += '\r\rFor an aproved copy, please visit:\r';
var v4 = v2.length;
v2 += movie_url;
var v3 = v2.length;
_root.NGAPI_deny_host_overlay.createTextField('mousekill', 100, 0, 0, Stage.width, Stage.height);
_root.NGAPI_deny_host_overlay.createTextField('error', 101, (Stage.width - 400) / 2, Stage.height / 2 - 100, 400, 200);
_root.NGAPI_deny_host_overlay.error.text = 'ERROR!';
_root.NGAPI_deny_host_overlay.error.setTextFormat(NewgroundsAPI.error_format);
_root.NGAPI_deny_host_overlay.createTextField('message', 102, (Stage.width - 400) / 2, Stage.height / 2, 400, 200);
_root.NGAPI_deny_host_overlay.message.text = v2;
_root.NGAPI_deny_host_overlay.message.multiline = true;
_root.NGAPI_deny_host_overlay.message.wordWrap = true;
_root.NGAPI_deny_host_overlay.message.html = true;
_root.NGAPI_deny_host_overlay.message.setTextFormat(NewgroundsAPI.normal_format);
NewgroundsAPI.link_format.url = redirect_url;
_root.NGAPI_deny_host_overlay.message.setTextFormat(v4, v3, NewgroundsAPI.link_format);
};
v1.isInstalled = function () {
return true;
};
v1.onAdsApproved = function (ad_url) {};
v1.movie_options = new Object();
v1.custom_events = new Object();
v1.custom_links = new Object();
v1.MOVIE_VIEWS = 1;
v1.AUTHOR_SITE = 2;
v1.NEWGROUNDS = 3;
v1.NEW_VERSION = 4;
v1.CUSTOM_STATS = 50;
v1.GATEWAY_URL = 'http://www.ngads.com/gateway.php';
ASSetPropFlags(_global.NewgroundsAPI.prototype, null, 1);
}
#endinitclip
}
movieClip 50 {
}
movieClip 51 {
}
movieClip 53 {
}
// unknown tag 88 length 125
button 58 {
on (release) {
gotoAndPlay('menu');
}
}
movieClip 61 {
}
movieClip 63 {
}
movieClip 65 {
}
movieClip 67 {
}
frame 752 {
stop();
}
frame 753 {
startDrag('arrow', true);
Mouse.hide();
stopAllSounds();
}
button 72 {
on (release) {
gotoAndPlay('music');
}
}
button 75 {
on (release) {
gotoAndPlay('play');
}
}
button 78 {
on (release) {
gotoAndPlay('tips');
}
}
movieClip 81 {
}
movieClip 82 {
}
movieClip 84 {
}
movieClip 85 {
}
movieClip 86 {
}
movieClip 88 {
}
movieClip 89 {
}
movieClip 91 {
}
movieClip 92 {
}
// unknown tag 88 length 105
movieClip 98 {
}
movieClip 99 {
}
movieClip 102 {
}
movieClip 103 {
}
movieClip 185 {
}
movieClip 186 {
}
// unknown tag 88 length 64
movieClip 192 {
}
frame 754 {
startDrag('arrow', true);
Mouse.hide();
stop();
}
button 194 {
on (release) {
gotoAndPlay('music menu');
}
}
button 195 {
on (release) {
gotoAndPlay('retry');
}
}
button 196 {
on (release) {
gotoAndPlay('dummy');
}
}
frame 755 {
startDrag('arrow', true);
Mouse.hide();
stop();
}
button 199 {
on (release) {
gotoAndPlay('menu');
}
}
frame 757 {
startDrag('arrow', true);
Mouse.hide();
stop();
stopAllSounds();
}
movieClip 205 {
}
movieClip 208 {
}
button 209 {
on (release) {
Pac = new Sound(this);
Pac.attachSound('tears');
Pac.start(0, 99);
}
on (release) {
gotoAndStop('ok');
}
}
button 210 {
on (release) {
Pac = new Sound(this);
Pac.attachSound('geno1');
Pac.start(0, 99);
}
on (release) {
gotoAndStop('ok');
}
}
button 211 {
on (release) {
Pac = new Sound(this);
Pac.attachSound('green');
Pac.start(0, 99);
}
on (release) {
gotoAndStop('ok');
}
}
button 212 {
on (release) {
Pac = new Sound(this);
Pac.attachSound('dock');
Pac.start(0, 99);
}
on (release) {
gotoAndStop('ok');
}
}
button 213 {
on (release) {
Pac = new Sound(this);
Pac.attachSound('Road');
Pac.start(0, 99);
}
on (release) {
gotoAndStop('ok');
}
}
button 214 {
on (release) {
Pac = new Sound(this);
Pac.attachSound('Neo');
Pac.start(0, 99);
}
on (release) {
gotoAndStop('ok');
}
}
button 215 {
on (release) {
Pac = new Sound(this);
Pac.attachSound('Pac');
Pac.start(0, 99);
}
}
// unknown tag 88 length 129
movieClip 221 {
}
movieClip 222 {
}
movieClip 224 {
}
movieClip 226 {
}
button 231 {
on (release) {
Pac = new Sound(this);
Pac.attachSound('banjo');
Pac.start(0, 99);
}
on (release) {
gotoAndStop('ok');
}
}
button 233 {
on (release) {
Pac = new Sound(this);
Pac.attachSound('lul');
Pac.start(0, 99);
}
on (release) {
gotoAndStop('ok');
}
}
frame 758 {
startDrag('arrow', true);
Mouse.hide();
stop();
}
button 240 {
on (release) {
gotoAndPlay('retry');
}
}
button 243 {
on (release) {
gotoAndPlay('menu');
}
}
button 246 {
on (release) {
gotoAndStop('music menu');
}
}
frame 759 {
startDrag('arrow', true);
Mouse.hide();
stop();
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('m1');
}
}
}
movieClip 248 {
}
frame 760 {
startDrag('arrow', true);
Mouse.hide();
stop();
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 92 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('m2');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('slot_1');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
movieClip 253 {
frame 21 {
stop();
}
}
instance of movieClip 253 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('cheater');
}
}
}
frame 761 {
startDrag('arrow', true);
Mouse.hide();
stop();
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 92 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('m3');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 92 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('m4');
}
}
}
instance of movieClip 92 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('m5');
}
}
}
frame 762 {
startDrag('arrow', true);
Mouse.hide();
stop();
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 92 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('m4');
}
}
}
instance of movieClip 92 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('m5');
}
}
}
frame 763 {
startDrag('arrow', true);
Mouse.hide();
stop();
}
instance of movieClip 92 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('m3');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 92 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('m5');
}
}
}
frame 764 {
startDrag('arrow', true);
Mouse.hide();
stop();
}
instance of movieClip 99 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('g3');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 99 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('g1');
}
}
}
instance of movieClip 99 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('g3');
}
}
}
instance of movieClip 99 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('g1');
}
}
}
instance of movieClip 99 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('g1');
}
}
}
instance of movieClip 99 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('g1');
}
}
}
frame 765 {
startDrag('arrow', true);
Mouse.hide();
stop();
}
instance of movieClip 99 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('slot');
}
}
}
instance of movieClip 99 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('g3');
}
}
}
instance of movieClip 99 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('g3');
}
}
}
instance of movieClip 92 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('g2');
}
}
}
instance of movieClip 186 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 186 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 186 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 186 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
frame 766 {
startDrag('arrow', true);
Mouse.hide();
stop();
}
instance of movieClip 99 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('g1');
}
}
}
instance of movieClip 186 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 186 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 186 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 186 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
frame 767 {
startDrag('arrow', true);
Mouse.hide();
stop();
}
instance of movieClip 99 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('slot');
}
}
}
instance of movieClip 92 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('g4');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 186 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 186 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 186 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 92 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('g4');
}
}
}
frame 768 {
startDrag('arrow', true);
Mouse.hide();
stop();
}
instance of movieClip 99 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('m4');
}
}
}
instance of movieClip 99 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('m3');
}
}
}
instance of movieClip 186 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 186 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 186 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 186 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 186 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 99 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('m3');
}
}
}
instance of movieClip 99 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('slot1');
}
}
}
instance of movieClip 99 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('g1');
}
}
}
instance of movieClip 99 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('slot1');
}
}
}
instance of movieClip 99 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('g3');
}
}
}
frame 769 {
startDrag('arrow', true);
Mouse.hide();
stop();
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('slot');
}
}
}
instance of movieClip 99 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('slot_1');
}
}
}
frame 770 {
startDrag('arrow', true);
Mouse.hide();
stop();
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 99 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('m3');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
movieClip 261 {
}
instance of movieClip 261 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 261 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 261 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
movieClip 263 {
}
movieClip 264 {
instance of movieClip 263 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 92 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('slot1');
}
}
}
instance of movieClip 99 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('m3');
}
}
}
}
movieClip 265 {
instance of movieClip 263 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 92 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('slot2');
}
}
}
instance of movieClip 99 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('m3');
}
}
}
}
movieClip 266 {
instance of movieClip 263 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 92 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('slot3');
}
}
}
instance of movieClip 99 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('m3');
}
}
}
}
movieClip 268 {
}
movieClip 270 {
}
movieClip 272 {
}
movieClip 274 {
}
frame 771 {
startDrag('arrow', true);
Mouse.hide();
stop();
}
instance of movieClip 261 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 261 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
frame 772 {
startDrag('arrow', true);
Mouse.hide();
stop();
}
instance of movieClip 99 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('cheater');
}
}
}
instance of movieClip 261 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
frame 774 {
startDrag('arrow', true);
Mouse.hide();
stop();
}
instance of movieClip 268 {
onClipEvent (load) {
accel = 0.2;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 270 {
onClipEvent (load) {
accel = 0.2;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 272 {
onClipEvent (load) {
accel = 0.2;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 274 {
onClipEvent (load) {
accel = 0.2;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.2;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('win');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
movieClip 281 {
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 192 {
onClipEvent (load) {
accel = 0.05;
vect = [0, 0];
stop();
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
xDiff = _parent.arrow._x - _x;
yDiff = _parent.arrow._y - _y;
dist = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
if (dist > 30) {
dir = Math.atan2(yDiff, xDiff);
d = dir < Math.PI ? dir * 180 / Math.PI : (dir - 6.283185307179586) * 180 / Math.PI;
if (d > _rotation) {
if (d - _rotation > 180) {
d -= 360;
}
} else {
if (_rotation - d > 180) {
d += 360;
}
}
_rotation = _rotation + (d - _rotation) / 5;
vect[0] += Math.cos(dir) * accel;
_x = _x + vect[0];
vect[1] += Math.sin(dir) * accel;
_y = _y + vect[1];
} else {
gotoAndPlay(2);
}
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
}
instance of movieClip 86 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('fake');
}
}
}
frame 775 {
startDrag('arrow', true);
Mouse.hide();
stop();
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('fake2');
}
}
}
frame 776 {
startDrag('arrow', true);
Mouse.hide();
stop();
}
instance of movieClip 92 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('fake3');
}
}
}
frame 777 {
startDrag('arrow', true);
Mouse.hide();
stop();
}
movieClip 286 {
}
movieClip 287 {
frame 141 {
stop();
}
}
movieClip 288 {
}
movieClip 289 {
instance of movieClip 288 {
onClipEvent (load) {
_height = 0.1;
_width = 0.1;
}
onClipEvent (enterFrame) {
_height = _parent.power;
_width = _parent.power;
}
}
instance abc of movieClip 288 {
onClipEvent (load) {
bubbleC = 0;
counter = _root.counter;
_alpha = 0;
var randomVar;
if (randomVar != true) {
angle = -179 + Math.random() * 361;
dist = _parent.power * 2 + Math.random() * 100;
goX = Math.sin(angle * Math.PI / 180) * dist;
goY = -Math.cos(angle * Math.PI / 180) * dist;
_x = _x + goX;
_y = _y + goY;
speed = dist;
_height = 3 + Math.random() * 10;
_width = 3 + Math.random() * 10;
}
}
onClipEvent (enterFrame) {
if (randomVar == true) {
--counter;
if (counter == 0) {
counter = _root.counter;
++bubbleC;
duplicateMovieClip(this, 'bubble' + bubbleC, 1 + bubbleC);
}
} else {
d = Math.sqrt(_x * _x + _y * _y);
_alpha = (dist - d + _parent.power / 2) * 100 / dist;
_x = _x - goX * (1 / speed);
_y = _y - goY * (1 / speed);
if (speed > 0) {
speed -= 2;
}
if (d <= (_parent.power + _width) / 2 || d <= 5) {
_parent.power += _width / 12;
removeMovieClip(this);
}
}
}
}
}
movieClip 290 {
frame 171 {
_root.counter = 5;
stop();
}
instance ball of movieClip 289 {
onClipEvent (load) {
power = 0;
this.abc.randomVar = true;
}
}
}
instance of movieClip 290 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndPlay('winner');
}
}
}
frame 778 {
i = 1;
while (i <= 3) {
_root['b' + i].leaf.init = true;
++i;
}
}
movieClip 292 {
}
movieClip 293 {
instance of movieClip 292 {
onClipEvent (load) {
_parent._y += 136.9;
if (_parent._y > Stage.height + _height / 2) {
removeMovieClip(_parent);
}
}
}
}
movieClip 294 {
instance leaf of movieClip 293 {
onClipEvent (load) {
_y = -_height * 1.25;
_x = -100 + Math.random() * Stage.width;
gotoAndPlay(Math.round(1 + Math.random() * 20));
}
}
}
instance b1 of movieClip 294 {
onClipEvent (load) {
_x = 0;
_y = 0;
counter = 1;
number = 0;
}
onClipEvent (enterFrame) {
--counter;
if (counter == 0) {
counter = 20;
++number;
duplicateMovieClip(this.leaf, number, 2 + number);
}
}
}
movieClip 296 {
}
movieClip 298 {
}
movieClip 302 {
}
movieClip 305 {
}
movieClip 306 {
}
movieClip 307 {
}
movieClip 308 {
instance of movieClip 307 {
onClipEvent (load) {
_parent._y += 34.8;
if (_parent._y > Stage.height + _height / 2) {
removeMovieClip(_parent);
}
}
}
}
movieClip 309 {
instance leaf of movieClip 308 {
onClipEvent (load) {
_y = -_height * 1.25;
_x = -100 + Math.random() * Stage.width;
gotoAndPlay(Math.round(1 + Math.random() * 20));
}
}
}
instance b3 of movieClip 309 {
onClipEvent (load) {
_x = 0;
_y = 0;
counter = 1;
number = 0;
}
onClipEvent (enterFrame) {
--counter;
if (counter == 0) {
counter = 20;
++number;
duplicateMovieClip(this.leaf, number, 2 + number);
}
}
}
movieClip 310 {
}
movieClip 311 {
instance of movieClip 310 {
onClipEvent (load) {
_parent._y += 136.1;
if (_parent._y > Stage.height + _height / 2) {
removeMovieClip(_parent);
}
}
}
}
movieClip 312 {
instance leaf of movieClip 311 {
onClipEvent (load) {
_y = -_height * 1.75;
_x = -100 + Math.random() * Stage.width;
gotoAndPlay(Math.round(1 + Math.random() * 20));
}
}
}
instance b2 of movieClip 312 {
onClipEvent (load) {
_x = 0;
_y = 0;
counter = 1;
number = 0;
}
onClipEvent (enterFrame) {
--counter;
if (counter == 0) {
counter = 20;
++number;
duplicateMovieClip(this.leaf, number, 2 + number);
}
}
}
movieClip 315 {
}
movieClip 321 {
}
frame 779 {
stopAllSounds();
}
instance b3 of movieClip 309 {
onClipEvent (load) {
_x = 0;
_y = 0;
counter = 1;
number = 0;
}
onClipEvent (enterFrame) {
--counter;
if (counter == 0) {
counter = 20;
++number;
duplicateMovieClip(this.leaf, number, 2 + number);
}
}
}
instance b2 of movieClip 312 {
onClipEvent (load) {
_x = 0;
_y = 0;
counter = 1;
number = 0;
}
onClipEvent (enterFrame) {
--counter;
if (counter == 0) {
counter = 20;
++number;
duplicateMovieClip(this.leaf, number, 2 + number);
}
}
}
frame 780 {
startDrag('arrow', true);
Mouse.hide();
stop();
}
instance b1 of movieClip 294 {
onClipEvent (load) {
_x = 0;
_y = 0;
counter = 1;
number = 0;
}
onClipEvent (enterFrame) {
--counter;
if (counter == 0) {
counter = 20;
++number;
duplicateMovieClip(this.leaf, number, 2 + number);
}
}
}
frame 784 {
startDrag('arrow', true);
Mouse.hide();
stop();
}
frame 785 {
startDrag('arrow', true);
Mouse.hide();
stop();
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 92 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('m2');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('slot');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 89 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 253 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('cheater');
}
}
}
frame 786 {
startDrag('arrow', true);
Mouse.hide();
stop();
}
movieClip 332 {
}
instance of movieClip 92 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('g3');
}
}
}
movieClip 334 {
}
movieClip 335 {
}
instance of movieClip 335 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 335 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 335 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
instance of movieClip 335 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.arrow)) {
_root.gotoAndStop('gameover');
}
}
}
frame 787 {
startDrag('arrow', true);
Mouse.hide();
stop();
}