Combined Code
frame 1 {
NewgroundsAPI.connectMovie(8786);
}
movieClip 3 {
}
movieClip 4 {
}
button 10 {
on (release) {
NewgroundsAPI.loadNewgrounds();
}
}
button 16 {
on (release) {
NewgroundsAPI.loadNewgrounds();
}
}
movieClip 17 {
}
movieClip 18 {
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 21 {
}
movieClip 22 {
}
movieClip 24 {
}
movieClip 27 {
}
movieClip 29 {
}
movieClip 33 {
}
button 34 {
on (release) {
_root.play();
}
on (release) {
stopAllSounds();
}
}
movieClip 35 {
frame 1 {
_root.stop();
PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100;
if (PercentLoaded != 100) {
bar._xscale = PercentLoaded;
} else {
gotoAndStop('loaded');
}
}
frame 2 {
gotoAndPlay(1);
}
frame 3 {
stop();
}
frame 3 {
stop();
}
}
movieClip 1237 __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 38 {
}
frame 11 {
var _mochiads_game_id = '9015511657e5e6c9';
}
frame 12 {
function addToslot(healthpill) {
if (!healthpill.found) {
healthpill._x = (eval('itemSlot' + currentslotnum))._x;
healthpill._y = (eval('itemSlot' + currentslotnum))._y;
healthpill.found = true;
++currentslotnum;
}
}
function useSlot(healthpill) {
if (!healthpill.used) {
healthpill._x = (eval('itemSlot' - currentslotnum))._x;
healthpill._y = (eval('itemSlot' - currentslotnum))._y;
healthpill.used = true;
--currentslotnum;
}
}
function addToslot(healthpill2) {
if (!healthpill2.found) {
healthpill2._x = (eval('itemSlot' + currentslotnum))._x;
healthpill2._y = (eval('itemSlot' + currentslotnum))._y;
healthpill2.found = true;
++currentslotnum;
}
}
function useSlot(healthpill2) {
if (!healthpill2.used) {
healthpill2._x = (eval('itemSlot' - currentslotnum))._x;
healthpill2._y = (eval('itemSlot' - currentslotnum))._y;
healthpill2.used = true;
--currentslotnum;
}
}
function addToslot(pickupfuse) {
if (!pickupfuse.found) {
pickupfuse._x = (eval('itemSlot' + currentslotnum))._x;
pickupfuse._y = (eval('itemSlot' + currentslotnum))._y;
pickupfuse.found = true;
++currentslotnum;
}
}
function useSlot(pickupfuse) {
if (!pickupfuse.used) {
pickupfuse._x = (eval('itemSlot' - currentslotnum))._x;
pickupfuse._y = (eval('itemSlot' - currentslotnum))._y;
pickupfuse.used = true;
--currentslotnum;
}
}
_root.life.gotoAndStop(20);
currentslotnum = 1;
}
movieClip 41 {
}
movieClip 44 {
}
movieClip 45 {
frame 1 {
stop();
}
frame 2 {
stop();
}
instance invhealth1 of movieClip 44 {
onClipEvent (mouseDown) {
if (_root.crosshair.safe.hitTest(this)) {
_root.useSlot(this);
_root.life.gotoAndStop(1);
play();
}
}
}
frame 3 {
stop();
}
}
instance healthpill of movieClip 45 {
onClipEvent (mouseDown) {
if (_root.crosshair.safe.hitTest(this)) {
_root.addToslot(this);
this.swapDepths(20);
play();
}
}
}
movieClip 48 {
}
movieClip 50 {
}
movieClip 51 {
}
movieClip 53 {
}
movieClip 55 {
}
movieClip 57 {
}
movieClip 59 {
}
movieClip 61 {
}
movieClip 63 {
}
movieClip 65 {
}
movieClip 67 {
}
movieClip 73 {
}
movieClip 77 {
}
instance of movieClip 77 {
onClipEvent (press) {
gotoAndPlay('speech1');
}
}
button 79 {
on (release) {
gotoAndPlay('speech1');
}
}
movieClip 80 {
}
movieClip 83 {
}
movieClip 85 {
}
movieClip 86 {
}
movieClip 88 {
}
movieClip 90 {
}
movieClip 92 {
}
movieClip 98 {
frame 847 {
this.gotoAndPlay(1);
}
}
movieClip 99 {
}
instance torch of movieClip 99 {
onClipEvent (load) {
_x = _root._xmouse;
_y = _root._ymouse;
Mouse.hide();
}
onClipEvent (mouseMove) {
_x = _root._xmouse;
_y = _root._ymouse;
}
onClipEvent (enterFrame) {
if (Key.isDown(90)) {
this.gotoAndStop(2);
}
}
}
movieClip 102 {
}
movieClip 103 {
frame 5 {
stop();
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
this._x = _root.crosshair._x / 2 - 200;
this._y = _root.crosshair._y / 3 + 500;
dx = mx - this._x;
dy = my - this._y;
if (dx < 0) {
nom = -1 * dx;
} else {
nom = dx;
}
if (dy < 0) {
nom + -1 * dy;
} else {
nom + dy;
}
dir = 90 * (dy / nom) + 45;
this._rotation = dir;
}
}
movieClip 105 {
}
movieClip 107 {
}
movieClip 109 {
}
movieClip 111 {
}
movieClip 112 {
frame 1 {
stop();
}
frame 6 {
stop();
}
frame 9 {
gotoAndPlay(1);
}
frame 50 {
gotoAndPlay(6);
}
}
instance crosshair of movieClip 112 {
onClipEvent (load) {
_x = _root._xmouse;
_y = _root._ymouse;
this.swapDepths(50);
Mouse.hide();
}
onClipEvent (mouseMove) {
_x = _root._xmouse;
_y = _root._ymouse;
}
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
this.play();
}
}
}
movieClip 115 {
}
movieClip 116 {
}
movieClip 117 {
}
movieClip 119 {
}
movieClip 121 {
}
movieClip 122 {
}
movieClip 125 {
frame 1 {
stop();
}
frame 2 {
_root.ammo.play();
}
instance of movieClip 122 {
onClipEvent (enterFrame) {
var ammo = -1;
}
}
frame 5 {
gotoAndStop(1);
}
}
movieClip 127 {
}
movieClip 129 {
frame 1 {
stop();
}
instance of movieClip 125 {
onClipEvent (mouseDown) {
this.play(1);
}
}
frame 6 {
stop();
}
instance gun of movieClip 125 {
onClipEvent (mouseDown) {
this.play(1);
}
onClipEvent (enterFrame) {
if (Key.isDown(88)) {
this.gotoAndPlay(10);
}
}
}
frame 9 {
gotoAndPlay(1);
}
instance of movieClip 125 {
onClipEvent (mouseDown) {
this.play(1);
}
}
frame 40 {
gotoAndPlay(6);
}
}
instance handgun of movieClip 129 {
onClipEvent (enterFrame) {
_x = _root._xmouse;
}
onClipEvent (enterFrame) {
this._x = _root.crosshair._x / 2 + 400;
this._y = _root.crosshair._y / 2 + 250;
dx = mx - this._x;
dy = my - this._y;
if (dx < 0) {
nom = -1 * dx;
} else {
nom = dx;
}
if (dy < 0) {
nom + -1 * dy;
} else {
nom + dy;
}
dir = 90 * (dy / nom) + 45;
this._rotation = dir;
}
onClipEvent (load) {
this.swapDepths(49);
}
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
this.play();
}
}
}
movieClip 131 {
}
movieClip 133 {
}
movieClip 135 {
}
movieClip 136 {
}
movieClip 138 {
}
movieClip 139 {
}
movieClip 157 {
frame 1 {
_root.crosshair.gotoAndPlay('reloadaim');
_root.handgun.gotoAndPlay('reload');
}
}
movieClip 158 {
frame 1 {
stop();
}
instance of movieClip 138 {
onClipEvent (load) {
_root.bullets = 15;
}
}
frame 2 {
stop();
}
instance of movieClip 138 {
onClipEvent (load) {
_root.bullets = 14;
}
}
frame 3 {
stop();
_root.bullets = 13;
}
instance of movieClip 138 {
onClipEvent (load) {
_root.bullets = 13;
}
}
frame 4 {
stop();
}
instance of movieClip 138 {
onClipEvent (load) {
_root.bullets = 12;
}
}
frame 5 {
stop();
}
instance of movieClip 138 {
onClipEvent (load) {
_root.bullets = 11;
}
}
frame 6 {
stop();
}
instance of movieClip 138 {
onClipEvent (load) {
_root.bullets = 10;
}
}
frame 7 {
stop();
}
instance of movieClip 138 {
onClipEvent (load) {
_root.bullets = 9;
}
}
frame 8 {
stop();
}
instance of movieClip 138 {
onClipEvent (load) {
_root.bullets = 8;
}
}
frame 9 {
stop();
}
instance of movieClip 138 {
onClipEvent (load) {
_root.bullets = 7;
}
}
frame 10 {
stop();
}
instance of movieClip 138 {
onClipEvent (load) {
_root.bullets = 6;
}
}
frame 11 {
stop();
}
instance of movieClip 138 {
onClipEvent (load) {
_root.bullets = 5;
}
}
frame 12 {
stop();
}
instance of movieClip 138 {
onClipEvent (load) {
_root.bullets = 4;
}
}
frame 13 {
stop();
}
instance of movieClip 138 {
onClipEvent (load) {
_root.bullets = 3;
}
}
frame 14 {
stop();
}
instance of movieClip 138 {
onClipEvent (load) {
_root.bullets = 2;
}
}
frame 15 {
stop();
}
instance of movieClip 138 {
onClipEvent (load) {
_root.bullets = 1;
}
}
instance of movieClip 157 {
}
instance of movieClip 138 {
onClipEvent (load) {
_root.bullets = 0;
}
}
frame 46 {
gotoAndStop(1);
}
}
instance ammo of movieClip 158 {
onClipEvent (enterFrame) {
if (Key.isDown(88)) {
this.gotoAndPlay(17);
}
}
}
movieClip 194 {
}
movieClip 195 {
}
movieClip 197 {
}
movieClip 198 {
}
movieClip 200 {
}
movieClip 201 {
}
movieClip 203 {
}
movieClip 204 {
}
movieClip 205 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
_root.gotoAndStop('over');
}
}
movieClip 214 {
frame 1 {
stop();
}
frame 2 {
stop();
}
}
instance map of movieClip 214 {
onClipEvent (press) {
if (_root.map.hitTest(_root.crosshair.safe)) {
this.play();
}
}
}
movieClip 216 {
}
instance itemSlot2 of movieClip 216 {
onClipEvent (load) {
this.swapDepths(6);
}
}
movieClip 218 {
}
instance itemSlot1 of movieClip 218 {
onClipEvent (load) {
this.swapDepths(5);
}
}
instance itemSlot4 of movieClip 216 {
onClipEvent (load) {
this.swapDepths(8);
}
}
instance itemSlot3 of movieClip 218 {
onClipEvent (load) {
this.swapDepths(7);
}
}
instance itemSlot25 of movieClip 216 {
onClipEvent (load) {
this.swapDepths(9);
}
}
movieClip 221 {
}
movieClip 226 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance sub2 of movieClip 226 {
onClipEvent (rollOver) {
if (_root.sub2.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.sub2.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.sub2.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.sub2.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.sub2.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.sub2.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
}
}
}
movieClip 232 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance sub4 of movieClip 232 {
onClipEvent (rollOver) {
if (_root.sub4.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.sub4.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.sub4.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.sub4.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.sub4.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.sub4.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
movieClip 237 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance sub9 of movieClip 237 {
onClipEvent (rollOver) {
if (_root.sub9.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.sub9.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.sub9.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.sub9.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.sub9.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.sub9.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
movieClip 243 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance sub10 of movieClip 243 {
onClipEvent (rollOver) {
if (_root.sub10.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.sub10.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.sub10.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.sub10.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.sub10.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.sub10.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
movieClip 249 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance sub11 of movieClip 249 {
onClipEvent (rollOver) {
if (_root.sub11.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.sub11.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.sub11.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.sub11.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.sub11.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.sub11.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
movieClip 255 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance sub12 of movieClip 255 {
onClipEvent (rollOver) {
if (_root.sub12.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.sub12.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.sub12.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.sub12.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.sub12.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.sub12.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
movieClip 259 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance subdoor of movieClip 259 {
onClipEvent (rollOver) {
if (_root.subdoor.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.subdoor.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.subdoor.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.subdoor.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.subdoor.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('Basement', 1);
}
}
onClipEvent (press) {
if (_root.subdoor.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
movieClip 264 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance sub1 of movieClip 264 {
onClipEvent (rollOver) {
if (_root.sub1.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.sub1.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.sub1.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.sub1.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.sub1.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.sub1.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
frame 36 {
stop();
}
frame 37 {
stop();
}
movieClip 267 {
}
movieClip 269 {
}
movieClip 272 {
frame 1 {
stop();
}
}
movieClip 274 {
}
button 278 {
on (release) {
gotoAndPlay('speech2');
}
}
button 281 {
on (release) {
gotoAndPlay('speech4');
}
}
button 284 {
on (release) {
gotoAndPlay('speech5');
}
}
button 288 {
on (release) {
gotoAndPlay('speech6');
}
}
button 290 {
on (release) {
gotoAndPlay('beforespeech');
}
}
frame 38 {
stop();
}
movieClip 292 {
frame 1 {
stop();
}
}
button 296 {
on (release) {
gotoAndPlay('speech3');
}
}
frame 39 {
stop();
}
movieClip 299 {
}
movieClip 300 {
frame 1 {
stop();
}
}
frame 40 {
stop();
}
movieClip 303 {
}
movieClip 304 {
frame 1 {
stop();
}
}
frame 41 {
stop();
}
movieClip 307 {
}
movieClip 308 {
frame 1 {
stop();
}
}
frame 42 {
stop();
}
movieClip 312 {
}
movieClip 313 {
frame 1 {
stop();
}
}
frame 46 {
stop();
}
movieClip 316 {
}
movieClip 318 {
}
movieClip 338 {
}
movieClip 353 {
}
instance drag of movieClip 353 {
onClipEvent (load) {
startX = this._x;
startY = this._y;
}
onClipEvent (mouseDown) {
if (_root.drag.hitTest(_root.crosshair.safe)) {
_root.draggedDrag = true;
}
}
onClipEvent (enterFrame) {
if (_root.draggedDrag) {
_root.drag._x = _root._xmouse;
_root.drag._y = _root._ymouse;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.drag._x = startX;
_root.drag._y = startY;
}
}
onClipEvent (mouseUp) {
if (this.hitTest(_root.hit)) {
_root.draggedDrag = false;
_root.play();
_root.drag._x = startX;
_root.drag._y = startY;
} else {
_root.drag._x = startX;
_root.drag._y = startY;
_root.draggedDrag = false;
}
}
}
movieClip 356 {
}
movieClip 362 {
}
movieClip 364 {
}
movieClip 367 {
}
movieClip 369 {
}
instance torch of movieClip 99 {
onClipEvent (load) {
_x = _root._xmouse;
_y = _root._ymouse;
Mouse.hide();
}
onClipEvent (mouseMove) {
_x = _root._xmouse;
_y = _root._ymouse;
}
onClipEvent (enterFrame) {
if (Key.isDown(90)) {
this.gotoAndStop(2);
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
this._x = _root.crosshair._x / 2 - 200;
this._y = _root.crosshair._y / 3 + 500;
dx = mx - this._x;
dy = my - this._y;
if (dx < 0) {
nom = -1 * dx;
} else {
nom = dx;
}
if (dy < 0) {
nom + -1 * dy;
} else {
nom + dy;
}
dir = 90 * (dy / nom) + 45;
this._rotation = dir;
}
}
instance ammo of movieClip 158 {
onClipEvent (enterFrame) {
if (Key.isDown(88)) {
this.gotoAndPlay(17);
}
}
}
instance map of movieClip 214 {
onClipEvent (press) {
if (_root.map.hitTest(_root.crosshair.safe)) {
this.play();
}
}
}
movieClip 375 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance q1 of movieClip 375 {
onClipEvent (rollOver) {
if (_root.q1.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.q1.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.q1.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.q1.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.q1.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.q1.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
movieClip 379 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance q2 of movieClip 379 {
onClipEvent (rollOver) {
if (_root.q2.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.q2.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.q2.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.q2.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.q2.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.q2.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
movieClip 385 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance q3 of movieClip 385 {
onClipEvent (rollOver) {
if (_root.q3.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.q3.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.q3.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.q3.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.q3.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.q3.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
movieClip 389 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance q4 of movieClip 389 {
onClipEvent (rollOver) {
if (_root.q4.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.q4.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.q4.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.q4.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.q4.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.q4.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
movieClip 395 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance q5 of movieClip 395 {
onClipEvent (rollOver) {
if (_root.q5.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.q5.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.q5.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.q5.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.q5.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.q5.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
movieClip 400 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance q6 of movieClip 400 {
onClipEvent (rollOver) {
if (_root.q6.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.q6.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.q6.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.q6.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.q6.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.q6.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
frame 90 {
stop();
}
movieClip 410 {
}
instance torch of movieClip 99 {
onClipEvent (load) {
_x = _root._xmouse;
_y = _root._ymouse;
Mouse.hide();
}
onClipEvent (mouseMove) {
_x = _root._xmouse;
_y = _root._ymouse;
}
onClipEvent (enterFrame) {
if (Key.isDown(90)) {
this.gotoAndStop(2);
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
this._x = _root.crosshair._x / 2 - 200;
this._y = _root.crosshair._y / 3 + 500;
dx = mx - this._x;
dy = my - this._y;
if (dx < 0) {
nom = -1 * dx;
} else {
nom = dx;
}
if (dy < 0) {
nom + -1 * dy;
} else {
nom + dy;
}
dir = 90 * (dy / nom) + 45;
this._rotation = dir;
}
}
instance ammo of movieClip 158 {
onClipEvent (enterFrame) {
if (Key.isDown(88)) {
this.gotoAndPlay(17);
}
}
}
instance map of movieClip 214 {
onClipEvent (press) {
if (_root.map.hitTest(_root.crosshair.safe)) {
this.play();
}
}
}
movieClip 416 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance kitsub of movieClip 416 {
onClipEvent (rollOver) {
if (_root.kitsub.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.kitsub.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.kitsub.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.kitsub.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.kitsub.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('kitchen', 1);
}
}
onClipEvent (press) {
if (_root.kitsub.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
movieClip 421 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance w3 of movieClip 421 {
onClipEvent (rollOver) {
if (_root.w3.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.w3.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.w3.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.w3.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.w3.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.w2.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
movieClip 426 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance w4 of movieClip 426 {
onClipEvent (rollOver) {
if (_root.w4.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.w4.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.w4.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.w4.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.w4.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
movieClip 430 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance subdoor of movieClip 430 {
onClipEvent (rollOver) {
if (_root.subdoor.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.subdoor.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.subdoor.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.subdoor.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.subdoor.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('Cupboard', 1);
}
}
onClipEvent (press) {
if (_root.subdoor.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
frame 244 {
_root.life.play();
}
frame 247 {
_root.life.play();
}
frame 251 {
_root.life.play();
}
frame 254 {
_root.life.play();
}
frame 269 {
stop();
}
frame 269 {
stopAllSounds();
}
frame 270 {
stopAllSounds();
}
movieClip 441 {
}
instance torch of movieClip 99 {
onClipEvent (load) {
_x = _root._xmouse;
_y = _root._ymouse;
Mouse.hide();
}
onClipEvent (mouseMove) {
_x = _root._xmouse;
_y = _root._ymouse;
}
onClipEvent (enterFrame) {
if (Key.isDown(90)) {
this.gotoAndStop(2);
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
this._x = _root.crosshair._x / 2 - 200;
this._y = _root.crosshair._y / 3 + 500;
dx = mx - this._x;
dy = my - this._y;
if (dx < 0) {
nom = -1 * dx;
} else {
nom = dx;
}
if (dy < 0) {
nom + -1 * dy;
} else {
nom + dy;
}
dir = 90 * (dy / nom) + 45;
this._rotation = dir;
}
}
instance ammo of movieClip 158 {
onClipEvent (enterFrame) {
if (Key.isDown(88)) {
this.gotoAndPlay(17);
}
}
}
instance map of movieClip 214 {
onClipEvent (press) {
if (_root.map.hitTest(_root.crosshair.safe)) {
this.play();
}
}
}
movieClip 446 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance k1 of movieClip 446 {
onClipEvent (rollOver) {
if (_root.k1.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.k1.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.k1.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.k1.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.subdoor.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.k1.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
movieClip 450 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance k3 of movieClip 450 {
onClipEvent (rollOver) {
if (_root.k3.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.k3.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.k3.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.k3.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.subdoor.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.k3.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.k3.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
movieClip 455 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance k4 of movieClip 455 {
onClipEvent (rollOver) {
if (_root.k4.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.k4.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.k4.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.k4.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.k4.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('Hallway1', 1);
}
}
onClipEvent (press) {
if (_root.k4.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
movieClip 459 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance k5 of movieClip 459 {
onClipEvent (rollOver) {
if (_root.k5.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.k5.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.k5.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.k5.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.subdoor.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.k5.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.k5.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
movieClip 476 {
}
movieClip 480 {
}
movieClip 481 {
}
movieClip 484 {
}
frame 499 {
stop();
}
movieClip 489 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance gmansubs of movieClip 489 {
onClipEvent (rollOver) {
if (_root.gmansubs.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.gmansubs.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.gmansubs.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.gmansubs.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.gmansubs.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('gmanspeaksgood', 1);
}
}
onClipEvent (press) {
if (_root.gmansubs.hitTest(_root.crosshair.bad)) {
_root.gotoAndPlay('gmanspeaksbad', 1);
}
}
}
frame 500 {
stop();
}
movieClip 491 {
}
movieClip 494 {
frame 1 {
stop();
}
}
button 495 {
on (release) {
gotoAndPlay('gmangone');
}
}
frame 501 {
stop();
}
movieClip 497 {
frame 1 {
stop();
}
}
frame 502 {
stop();
}
frame 521 {
stop();
stopAllSounds();
}
frame 521 {
stopAllSounds();
}
frame 522 {
stopAllSounds();
}
movieClip 500 {
}
instance torch of movieClip 99 {
onClipEvent (load) {
_x = _root._xmouse;
_y = _root._ymouse;
Mouse.hide();
}
onClipEvent (mouseMove) {
_x = _root._xmouse;
_y = _root._ymouse;
}
onClipEvent (enterFrame) {
if (Key.isDown(90)) {
this.gotoAndStop(2);
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
this._x = _root.crosshair._x / 2 - 200;
this._y = _root.crosshair._y / 3 + 500;
dx = mx - this._x;
dy = my - this._y;
if (dx < 0) {
nom = -1 * dx;
} else {
nom = dx;
}
if (dy < 0) {
nom + -1 * dy;
} else {
nom + dy;
}
dir = 90 * (dy / nom) + 45;
this._rotation = dir;
}
}
instance ammo of movieClip 158 {
onClipEvent (enterFrame) {
if (Key.isDown(88)) {
this.gotoAndPlay(17);
}
}
}
instance map of movieClip 214 {
onClipEvent (press) {
if (_root.map.hitTest(_root.crosshair.safe)) {
this.play();
}
}
}
movieClip 506 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance upstairs of movieClip 506 {
onClipEvent (rollOver) {
if (_root.upstairs.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.upstairs.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.upstairs.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.upstairs.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.upstairs.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('upstiarsview', 1);
}
}
onClipEvent (press) {
if (_root.upstairs.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
movieClip 510 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance debris of movieClip 510 {
onClipEvent (rollOver) {
if (_root.debris.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.debris.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.debris.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.debris.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.debris.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.debris.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
movieClip 514 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance vase of movieClip 514 {
onClipEvent (rollOver) {
if (_root.vase.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.vase.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.vase.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.vase.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.vase.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.vase.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
movieClip 519 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance k4 of movieClip 519 {
onClipEvent (rollOver) {
if (_root.k4.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.k4.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.k4.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.k4.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.k4.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('Hallway1', 1);
}
}
onClipEvent (press) {
if (_root.k4.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
instance painting1 of movieClip 519 {
onClipEvent (rollOver) {
if (_root.painting1.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.painting1.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.painting1.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.painting1.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.painting1.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.painting1.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
movieClip 527 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance doorleft1 of movieClip 527 {
onClipEvent (rollOver) {
if (_root.doorleft1.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.doorleft1.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.doorleft1.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.doorleft1.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.doorleft1.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('Study', 1);
}
}
onClipEvent (press) {
if (_root.doorleft1.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
movieClip 532 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance doorleft2 of movieClip 532 {
onClipEvent (rollOver) {
if (_root.doorleft2.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.doorleft2.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.doorleft2.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.doorleft2.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.doorleft2.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('elevatorhall', 1);
}
}
onClipEvent (press) {
if (_root.doorleft2.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
movieClip 538 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance doorbehind of movieClip 538 {
onClipEvent (rollOver) {
if (_root.doorbehind.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.doorbehind.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.doorbehind.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.doorbehind.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.doorbehind.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('return', 1);
}
}
onClipEvent (press) {
if (_root.doorbehind.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
frame 565 {
stop();
}
frame 566 {
stopAllSounds();
}
movieClip 542 {
}
movieClip 545 {
}
instance torch of movieClip 99 {
onClipEvent (load) {
_x = _root._xmouse;
_y = _root._ymouse;
Mouse.hide();
}
onClipEvent (mouseMove) {
_x = _root._xmouse;
_y = _root._ymouse;
}
onClipEvent (enterFrame) {
if (Key.isDown(90)) {
this.gotoAndStop(2);
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
this._x = _root.crosshair._x / 2 - 200;
this._y = _root.crosshair._y / 3 + 500;
dx = mx - this._x;
dy = my - this._y;
if (dx < 0) {
nom = -1 * dx;
} else {
nom = dx;
}
if (dy < 0) {
nom + -1 * dy;
} else {
nom + dy;
}
dir = 90 * (dy / nom) + 45;
this._rotation = dir;
}
}
instance ammo of movieClip 158 {
onClipEvent (enterFrame) {
if (Key.isDown(88)) {
this.gotoAndPlay(17);
}
}
}
instance map of movieClip 214 {
onClipEvent (press) {
if (_root.map.hitTest(_root.crosshair.safe)) {
this.play();
}
}
}
movieClip 551 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance doorbehindele of movieClip 551 {
onClipEvent (rollOver) {
if (_root.doorbehindele.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.doorbehindele.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.doorbehindele.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.doorbehindele.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.doorbehindele.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('Hallway1', 1);
}
}
onClipEvent (press) {
if (_root.doorbehindele.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
movieClip 556 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance elec2 of movieClip 556 {
onClipEvent (rollOver) {
if (_root.elec2.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.elec2.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.elec2.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.elec2.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.elec2.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.elec2.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
movieClip 561 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance elec3 of movieClip 561 {
onClipEvent (rollOver) {
if (_root.elec3.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.elec3.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.elec3.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.elec3.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.elec3.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.elec3.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
movieClip 566 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance elec1 of movieClip 566 {
onClipEvent (rollOver) {
if (_root.elec1.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.elec1.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.elec1.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.elec1.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.elec1.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.elec1.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
movieClip 571 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance elec5 of movieClip 571 {
onClipEvent (rollOver) {
if (_root.elec5.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.elec5.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.elec5.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.elec5.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.elec5.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.elec5.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
movieClip 575 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance elec4 of movieClip 575 {
onClipEvent (rollOver) {
if (_root.elec4.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.elec4.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.elec4.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.elec4.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.elec4.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('elevatorhallbefore', 1);
}
}
onClipEvent (press) {
if (_root.elec4.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
frame 591 {
stop();
}
frame 595 {
stop();
}
button 579 {
on (release) {
gotoAndPlay('journal1');
}
}
button 580 {
on (release) {
gotoAndPlay('elevatorhallbefore');
}
}
frame 596 {
stop();
}
button 584 {
on (release) {
gotoAndPlay('journal2');
}
}
frame 597 {
stop();
}
button 588 {
on (release) {
gotoAndPlay('journal1');
}
}
frame 614 {
stop();
}
frame 614 {
stopAllSounds();
}
movieClip 591 {
}
movieClip 593 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance fusebutton2 of movieClip 593 {
onClipEvent (press) {
if (_root.fusebutton2.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('button1', 1);
}
}
}
frame 615 {
stop();
}
movieClip 596 {
}
movieClip 597 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance fusebuttonfail4 of movieClip 597 {
onClipEvent (press) {
if (_root.fusebuttonfail4.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('fusebox', 1);
}
}
}
instance fusebuttonfail5 of movieClip 593 {
onClipEvent (press) {
if (_root.fusebuttonfail5.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('fusebox', 1);
}
}
}
instance fusebuttonfail6 of movieClip 597 {
onClipEvent (press) {
if (_root.fusebuttonfail6.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('fusebox', 1);
}
}
}
instance fusebutton2 of movieClip 597 {
onClipEvent (press) {
if (_root.fusebutton2.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('button2', 1);
}
}
}
frame 616 {
stop();
}
movieClip 601 {
}
instance fusebutton3 of movieClip 597 {
onClipEvent (press) {
if (_root.fusebutton3.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('button3', 1);
}
}
}
instance fusebuttonfail8 of movieClip 597 {
onClipEvent (press) {
if (_root.fusebuttonfail8.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('fusebutton', 1);
}
}
}
instance fusebuttonfail7 of movieClip 597 {
onClipEvent (press) {
if (_root.fusebuttonfail7.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('fusebox', 1);
}
}
}
instance fusebuttonfail9 of movieClip 597 {
onClipEvent (press) {
if (_root.fusebuttonfail9.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('fusebox', 1);
}
}
}
frame 617 {
stop();
}
movieClip 604 {
}
instance fusebutton5 of movieClip 593 {
onClipEvent (press) {
if (_root.fusebutton5.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('buttondone', 1);
}
}
}
instance fusebuttonfail10 of movieClip 597 {
onClipEvent (press) {
if (_root.fusebuttonfail10.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('fusebox', 1);
}
}
}
instance fusebuttonfail11 of movieClip 597 {
onClipEvent (press) {
if (_root.fusebuttonfail11.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('fusebox', 1);
}
}
}
instance fusebuttonfail12 of movieClip 597 {
onClipEvent (press) {
if (_root.fusebuttonfail12.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('fusebox', 1);
}
}
}
frame 618 {
stop();
}
movieClip 607 {
}
movieClip 614 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance intoelveatoro of movieClip 614 {
onClipEvent (press) {
if (_root.intoelveatoro.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('elevatorin', 1);
}
}
}
movieClip 620 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance intoelveatnooo of movieClip 620 {
onClipEvent (press) {
if (_root.intoelveatnooo.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('elevatorhall', 1);
}
}
}
frame 640 {
stop();
}
movieClip 624 {
}
instance torch of movieClip 99 {
onClipEvent (load) {
_x = _root._xmouse;
_y = _root._ymouse;
Mouse.hide();
}
onClipEvent (mouseMove) {
_x = _root._xmouse;
_y = _root._ymouse;
}
onClipEvent (enterFrame) {
if (Key.isDown(90)) {
this.gotoAndStop(2);
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
this._x = _root.crosshair._x / 2 - 200;
this._y = _root.crosshair._y / 3 + 500;
dx = mx - this._x;
dy = my - this._y;
if (dx < 0) {
nom = -1 * dx;
} else {
nom = dx;
}
if (dy < 0) {
nom + -1 * dy;
} else {
nom + dy;
}
dir = 90 * (dy / nom) + 45;
this._rotation = dir;
}
}
instance ammo of movieClip 158 {
onClipEvent (enterFrame) {
if (Key.isDown(88)) {
this.gotoAndPlay(17);
}
}
}
instance map of movieClip 214 {
onClipEvent (press) {
if (_root.map.hitTest(_root.crosshair.safe)) {
this.play();
}
}
}
movieClip 631 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance elesci of movieClip 631 {
onClipEvent (rollOver) {
if (_root.elesci.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.elesci.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.elesci.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.elesci.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.elesci.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.elesci.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
}
}
}
movieClip 636 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance bloodele of movieClip 636 {
onClipEvent (rollOver) {
if (_root.bloodele.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.bloodele.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.bloodele.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.bloodele.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.bloodele.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.bloodele.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
}
}
}
movieClip 640 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance elevatorcontrols of movieClip 640 {
onClipEvent (rollOver) {
if (_root.elevatorcontrols.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.elevatorcontrols.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.elevatorcontrols.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.elevatorcontrols.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.elevatorcontrols.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('atticbitch', 1);
}
}
onClipEvent (press) {
if (_root.elevatorcontrols.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(4);
}
}
}
frame 684 {
stop();
}
frame 685 {
stopAllSounds();
}
movieClip 643 {
}
instance torch of movieClip 99 {
onClipEvent (load) {
_x = _root._xmouse;
_y = _root._ymouse;
Mouse.hide();
}
onClipEvent (mouseMove) {
_x = _root._xmouse;
_y = _root._ymouse;
}
onClipEvent (enterFrame) {
if (Key.isDown(90)) {
this.gotoAndStop(2);
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
this._x = _root.crosshair._x / 2 - 200;
this._y = _root.crosshair._y / 3 + 500;
dx = mx - this._x;
dy = my - this._y;
if (dx < 0) {
nom = -1 * dx;
} else {
nom = dx;
}
if (dy < 0) {
nom + -1 * dy;
} else {
nom + dy;
}
dir = 90 * (dy / nom) + 45;
this._rotation = dir;
}
}
instance ammo of movieClip 158 {
onClipEvent (enterFrame) {
if (Key.isDown(88)) {
this.gotoAndPlay(17);
}
}
}
instance map of movieClip 214 {
onClipEvent (press) {
if (_root.map.hitTest(_root.crosshair.safe)) {
this.play();
}
}
}
movieClip 649 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance shedsubs5door of movieClip 649 {
onClipEvent (rollOver) {
if (_root.shedsubs5door.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.shedsubs5door.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.shedsubs5door.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.shedsubs5door.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.shedsubs5door.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.shedsubs5door.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
}
}
}
movieClip 654 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance studyreddoor of movieClip 654 {
onClipEvent (rollOver) {
if (_root.studyreddoor.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.studyreddoor.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.studyreddoor.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.studyreddoor.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.studyreddoor.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('darkroom', 1);
}
}
onClipEvent (press) {
if (_root.studyreddoor.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
}
}
}
instance studytypewriter of movieClip 649 {
onClipEvent (rollOver) {
if (_root.studytypewriter.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.studytypewriter.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.studytypewriter.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.studytypewriter.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.studytypewriter.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('paper1', 1);
}
}
onClipEvent (press) {
if (_root.studytypewriter.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
}
}
}
movieClip 659 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance studyseat of movieClip 659 {
onClipEvent (rollOver) {
if (_root.studyseat.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.studyseat.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.studyseat.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.studyseat.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.studyseat.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.studyseat.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
}
}
}
movieClip 664 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance studybookshelf of movieClip 664 {
onClipEvent (rollOver) {
if (_root.studybookshelf.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.studybookshelf.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.studybookshelf.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.studybookshelf.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.studybookshelf.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.studybookshelf.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
}
}
}
movieClip 669 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance studypaper of movieClip 669 {
onClipEvent (rollOver) {
if (_root.studypaper.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.studypaper.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.studypaper.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.studypaper.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.studypaper.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('poaper2', 1);
}
}
onClipEvent (press) {
if (_root.studypaper.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
}
}
}
movieClip 673 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance studyplant of movieClip 673 {
onClipEvent (rollOver) {
if (_root.studyplant.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.studyplant.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.studyplant.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.studyplant.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.studyplant.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.studyplant.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
}
}
}
movieClip 678 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance studyphoto of movieClip 678 {
onClipEvent (rollOver) {
if (_root.studyphoto.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.studyphoto.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.studyphoto.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.studyphoto.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.studyphoto.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.studyphoto.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
}
}
}
movieClip 683 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance doorbehindstudy of movieClip 683 {
onClipEvent (rollOver) {
if (_root.doorbehindstudy.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.doorbehindstudy.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.doorbehindstudy.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.doorbehindstudy.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.doorbehindstudy.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('Hallway1', 1);
}
}
onClipEvent (press) {
if (_root.doorbehindstudy.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
frame 710 {
stop();
}
frame 714 {
stop();
}
button 686 {
on (release) {
gotoAndPlay('beforestuff');
}
}
frame 715 {
stop();
}
button 691 {
on (release) {
gotoAndPlay('beforestuff');
}
}
frame 728 {
stop();
}
frame 728 {
stopAllSounds();
}
movieClip 694 {
}
movieClip 696 {
}
instance torch of movieClip 99 {
onClipEvent (load) {
_x = _root._xmouse;
_y = _root._ymouse;
Mouse.hide();
}
onClipEvent (mouseMove) {
_x = _root._xmouse;
_y = _root._ymouse;
}
onClipEvent (enterFrame) {
if (Key.isDown(90)) {
this.gotoAndStop(2);
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
this._x = _root.crosshair._x / 2 - 200;
this._y = _root.crosshair._y / 3 + 500;
dx = mx - this._x;
dy = my - this._y;
if (dx < 0) {
nom = -1 * dx;
} else {
nom = dx;
}
if (dy < 0) {
nom + -1 * dy;
} else {
nom + dy;
}
dir = 90 * (dy / nom) + 45;
this._rotation = dir;
}
}
instance ammo of movieClip 158 {
onClipEvent (enterFrame) {
if (Key.isDown(88)) {
this.gotoAndPlay(17);
}
}
}
instance map of movieClip 214 {
onClipEvent (press) {
if (_root.map.hitTest(_root.crosshair.safe)) {
this.play();
}
}
}
movieClip 701 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance photo8 of movieClip 701 {
onClipEvent (rollOver) {
if (_root.studybookshelf.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.studybookshelf.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.studybookshelf.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.studybookshelf.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.studybookshelf.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.studybookshelf.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
}
}
}
movieClip 708 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance darktostudy of movieClip 708 {
onClipEvent (rollOver) {
if (_root.darktostudy.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.darktostudy.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.darktostudy.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.darktostudy.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.darktostudy.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('Study', 1);
}
}
onClipEvent (press) {
if (_root.darktostudy.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
movieClip 715 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance photo6 of movieClip 715 {
onClipEvent (rollOver) {
if (_root.photo6.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.photo6.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.photo6.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.photo6.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.photo6.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('garden', 1);
}
}
onClipEvent (press) {
if (_root.photo6.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
}
}
}
movieClip 724 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance photo7 of movieClip 724 {
onClipEvent (rollOver) {
if (_root.photo7.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.photo7.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.photo7.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.photo7.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.photo7.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.photo7.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
}
}
}
movieClip 730 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance photo5 of movieClip 730 {
onClipEvent (rollOver) {
if (_root.photo5.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.photo5.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.photo5.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.photo5.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.photo5.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.photo5.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
}
}
}
movieClip 735 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance photo4 of movieClip 735 {
onClipEvent (rollOver) {
if (_root.photo4.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.photo4.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.photo4.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.photo4.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.photo4.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.photo4.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
}
}
}
movieClip 741 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance photo1 of movieClip 741 {
onClipEvent (rollOver) {
if (_root.photo1.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.photo1.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.photo1.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.photo1.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.photo1.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.photo1.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
}
}
}
movieClip 746 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance photo2 of movieClip 746 {
onClipEvent (rollOver) {
if (_root.photo2.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.photo2.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.photo2.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.photo2.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.photo2.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.photo2.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
}
}
}
movieClip 751 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance photo3 of movieClip 751 {
onClipEvent (rollOver) {
if (_root.photo3.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.photo3.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.photo3.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.photo3.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.photo3.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.photo3.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
}
}
}
frame 772 {
stop();
}
instance torch of movieClip 99 {
onClipEvent (load) {
_x = _root._xmouse;
_y = _root._ymouse;
Mouse.hide();
}
onClipEvent (mouseMove) {
_x = _root._xmouse;
_y = _root._ymouse;
}
onClipEvent (enterFrame) {
if (Key.isDown(90)) {
this.gotoAndStop(2);
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
this._x = _root.crosshair._x / 2 - 200;
this._y = _root.crosshair._y / 3 + 500;
dx = mx - this._x;
dy = my - this._y;
if (dx < 0) {
nom = -1 * dx;
} else {
nom = dx;
}
if (dy < 0) {
nom + -1 * dy;
} else {
nom + dy;
}
dir = 90 * (dy / nom) + 45;
this._rotation = dir;
}
}
instance ammo of movieClip 158 {
onClipEvent (enterFrame) {
if (Key.isDown(88)) {
this.gotoAndPlay(17);
}
}
}
instance map of movieClip 214 {
onClipEvent (press) {
if (_root.map.hitTest(_root.crosshair.safe)) {
this.play();
}
}
}
movieClip 756 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance shedsubs5door of movieClip 756 {
onClipEvent (rollOver) {
if (_root.shedsubs5door.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.shedsubs5door.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.shedsubs5door.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.shedsubs5door.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.shedsubs5door.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('shed', 1);
}
}
onClipEvent (press) {
if (_root.shedsubs5door.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
}
}
}
movieClip 761 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance gardensubsleaves of movieClip 761 {
onClipEvent (rollOver) {
if (_root.gardensubsleaves.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.gardensubsleaves.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.gardensubsleaves.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.gardensubsleaves.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.gardensubsleaves.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.gardensubsleaves.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
}
}
}
movieClip 766 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance gardensubs3treescopy of movieClip 766 {
onClipEvent (rollOver) {
if (_root.gardensubs3treescopy.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.gardensubs3treescopy.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.gardensubs3treescopy.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.gardensubs3treescopy.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.gardensubs3treescopy.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.gardensubs3treescopy.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
}
}
}
movieClip 770 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance gardensubswing of movieClip 770 {
onClipEvent (rollOver) {
if (_root.gardensubswing.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.gardensubswing.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.gardensubswing.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.gardensubswing.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.gardensubswing.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.gardensubswing.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
}
}
}
movieClip 777 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance gardensubshadow of movieClip 777 {
onClipEvent (rollOver) {
if (_root.gardensubshadow.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.gardensubshadow.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.gardensubshadow.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.gardensubshadow.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.gardensubshadow.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.gardensubshadow.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
}
}
}
movieClip 782 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance studyreddoor of movieClip 782 {
onClipEvent (rollOver) {
if (_root.studyreddoor.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.studyreddoor.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.studyreddoor.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.studyreddoor.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.studyreddoor.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('darkroom', 1);
}
}
onClipEvent (press) {
if (_root.studyreddoor.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
}
}
}
movieClip 787 {
}
movieClip 789 {
}
frame 816 {
stop();
}
instance torch of movieClip 99 {
onClipEvent (load) {
_x = _root._xmouse;
_y = _root._ymouse;
Mouse.hide();
}
onClipEvent (mouseMove) {
_x = _root._xmouse;
_y = _root._ymouse;
}
onClipEvent (enterFrame) {
if (Key.isDown(90)) {
this.gotoAndStop(2);
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
this._x = _root.crosshair._x / 2 - 200;
this._y = _root.crosshair._y / 3 + 500;
dx = mx - this._x;
dy = my - this._y;
if (dx < 0) {
nom = -1 * dx;
} else {
nom = dx;
}
if (dy < 0) {
nom + -1 * dy;
} else {
nom + dy;
}
dir = 90 * (dy / nom) + 45;
this._rotation = dir;
}
}
instance ammo of movieClip 158 {
onClipEvent (enterFrame) {
if (Key.isDown(88)) {
this.gotoAndPlay(17);
}
}
}
instance map of movieClip 214 {
onClipEvent (press) {
if (_root.map.hitTest(_root.crosshair.safe)) {
this.play();
}
}
}
movieClip 797 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance shedsubs1 of movieClip 797 {
onClipEvent (rollOver) {
if (_root.shedsubs1.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.shedsubs1.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.shedsubs1.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.shedsubs1.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.shedsubs1.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.shedsubs1.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
}
}
}
movieClip 803 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance shedsubs2grass of movieClip 803 {
onClipEvent (rollOver) {
if (_root.shedsubs2grass.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.shedsubs2grass.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.shedsubs2grass.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.shedsubs2grass.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.shedsubs2grass.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.shedsubs2grass.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
}
}
}
movieClip 809 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance shedsubs3mist of movieClip 809 {
onClipEvent (rollOver) {
if (_root.shedsubs3mist.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.shedsubs3mist.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.shedsubs3mist.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.shedsubs3mist.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.shedsubs3mist.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.shedsubs3mist.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
}
}
}
movieClip 814 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance shedsubs5door of movieClip 814 {
onClipEvent (rollOver) {
if (_root.shedsubs5door.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.shedsubs5door.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.shedsubs5door.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.shedsubs5door.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.shedsubs5door.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.shedsubs5door.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
}
}
}
movieClip 817 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance shedsubs5doorsss of movieClip 817 {
onClipEvent (rollOver) {
if (_root.shedsubs5doorsss.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.shedsubs5doorsss.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.shedsubs5doorsss.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.shedsubs5doorsss.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.shedsubs5doorsss.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('insideshed', 1);
}
}
onClipEvent (press) {
if (_root.shedsubs5doorsss.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
movieClip 822 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance studyreddoor of movieClip 822 {
onClipEvent (rollOver) {
if (_root.studyreddoor.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.studyreddoor.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.studyreddoor.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.studyreddoor.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.studyreddoor.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('garden', 1);
}
}
onClipEvent (press) {
if (_root.studyreddoor.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
}
}
}
movieClip 825 {
}
movieClip 827 {
}
movieClip 829 {
}
frame 860 {
stop();
}
instance torch of movieClip 99 {
onClipEvent (load) {
_x = _root._xmouse;
_y = _root._ymouse;
Mouse.hide();
}
onClipEvent (mouseMove) {
_x = _root._xmouse;
_y = _root._ymouse;
}
onClipEvent (enterFrame) {
if (Key.isDown(90)) {
this.gotoAndStop(2);
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
this._x = _root.crosshair._x / 2 - 200;
this._y = _root.crosshair._y / 3 + 500;
dx = mx - this._x;
dy = my - this._y;
if (dx < 0) {
nom = -1 * dx;
} else {
nom = dx;
}
if (dy < 0) {
nom + -1 * dy;
} else {
nom + dy;
}
dir = 90 * (dy / nom) + 45;
this._rotation = dir;
}
}
instance ammo of movieClip 158 {
onClipEvent (enterFrame) {
if (Key.isDown(88)) {
this.gotoAndPlay(17);
}
}
}
instance map of movieClip 214 {
onClipEvent (press) {
if (_root.map.hitTest(_root.crosshair.safe)) {
this.play();
}
}
}
movieClip 836 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance sheradio of movieClip 836 {
onClipEvent (rollOver) {
if (_root.sheradio.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.sheradio.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.sheradio.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.sheradio.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.sheradio.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.sheradio.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
}
}
}
movieClip 841 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance outofshed of movieClip 841 {
onClipEvent (rollOver) {
if (_root.outofshed.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.outofshed.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.outofshed.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.outofshed.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.outofshed.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('shed', 1);
}
}
onClipEvent (press) {
if (_root.outofshed.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
}
}
}
movieClip 845 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance shedfloorcrap of movieClip 845 {
onClipEvent (rollOver) {
if (_root.shedfloorcrap.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.shedfloorcrap.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.shedfloorcrap.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.shedfloorcrap.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.shedfloorcrap.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.shedfloorcrap.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
}
}
}
movieClip 849 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance shedtools of movieClip 849 {
onClipEvent (rollOver) {
if (_root.shedtools.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.shedtools.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.shedtools.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.shedtools.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.shedtools.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.shedtools.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
}
}
}
movieClip 854 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance gravedigged of movieClip 854 {
onClipEvent (rollOver) {
if (_root.gravedigged.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.gravedigged.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.gravedigged.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.gravedigged.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.gravedigged.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.gravedigged.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
}
}
}
movieClip 858 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance shedstone of movieClip 858 {
onClipEvent (rollOver) {
if (_root.shedstone.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.shedstone.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.shedstone.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.shedstone.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.shedstone.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.shedstone.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
}
}
}
frame 1236 {
_root.gotoAndPlay('shedsonggo', 1);
}
movieClip 861 {
}
instance torch of movieClip 99 {
onClipEvent (load) {
_x = _root._xmouse;
_y = _root._ymouse;
Mouse.hide();
}
onClipEvent (mouseMove) {
_x = _root._xmouse;
_y = _root._ymouse;
}
onClipEvent (enterFrame) {
if (Key.isDown(90)) {
this.gotoAndStop(2);
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
this._x = _root.crosshair._x / 2 - 200;
this._y = _root.crosshair._y / 3 + 500;
dx = mx - this._x;
dy = my - this._y;
if (dx < 0) {
nom = -1 * dx;
} else {
nom = dx;
}
if (dy < 0) {
nom + -1 * dy;
} else {
nom + dy;
}
dir = 90 * (dy / nom) + 45;
this._rotation = dir;
}
}
instance ammo of movieClip 158 {
onClipEvent (enterFrame) {
if (Key.isDown(88)) {
this.gotoAndPlay(17);
}
}
}
instance map of movieClip 214 {
onClipEvent (press) {
if (_root.map.hitTest(_root.crosshair.safe)) {
this.play();
}
}
}
movieClip 867 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance stairstohall of movieClip 867 {
onClipEvent (rollOver) {
if (_root.stairstohall.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.stairstohall.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.stairstohall.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.stairstohall.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.stairstohall.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('Hallway1', 1);
}
}
onClipEvent (press) {
if (_root.stairstohall.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
movieClip 872 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance stairstoup of movieClip 872 {
onClipEvent (rollOver) {
if (_root.stairstoup.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.stairstoup.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.stairstoup.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.stairstoup.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.stairstoup.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('uphall', 1);
}
}
onClipEvent (press) {
if (_root.stairstoup.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
movieClip 876 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance upwindow of movieClip 876 {
onClipEvent (rollOver) {
if (_root.upwindow.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.upwindow.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.upwindow.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.upwindow.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.upwindow.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.upwindow.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
movieClip 880 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance upcarpet of movieClip 880 {
onClipEvent (rollOver) {
if (_root.upcarpet.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.upcarpet.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.upcarpet.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.upcarpet.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.upcarpet.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.upcarpet.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
frame 1280 {
stop();
}
frame 1281 {
stopAllSounds();
}
movieClip 883 {
}
instance torch of movieClip 99 {
onClipEvent (load) {
_x = _root._xmouse;
_y = _root._ymouse;
Mouse.hide();
}
onClipEvent (mouseMove) {
_x = _root._xmouse;
_y = _root._ymouse;
}
onClipEvent (enterFrame) {
if (Key.isDown(90)) {
this.gotoAndStop(2);
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
this._x = _root.crosshair._x / 2 - 200;
this._y = _root.crosshair._y / 3 + 500;
dx = mx - this._x;
dy = my - this._y;
if (dx < 0) {
nom = -1 * dx;
} else {
nom = dx;
}
if (dy < 0) {
nom + -1 * dy;
} else {
nom + dy;
}
dir = 90 * (dy / nom) + 45;
this._rotation = dir;
}
}
instance ammo of movieClip 158 {
onClipEvent (enterFrame) {
if (Key.isDown(88)) {
this.gotoAndPlay(17);
}
}
}
instance map of movieClip 214 {
onClipEvent (press) {
if (_root.map.hitTest(_root.crosshair.safe)) {
this.play();
}
}
}
movieClip 889 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance todown of movieClip 889 {
onClipEvent (rollOver) {
if (_root.todown.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.todown.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.todown.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.todown.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.todown.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('upstiarsview', 1);
}
}
onClipEvent (press) {
if (_root.todown.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
movieClip 893 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance tocupboard of movieClip 893 {
onClipEvent (rollOver) {
if (_root.tocupboard.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.tocupboard.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.tocupboard.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.tocupboard.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.tocupboard.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('storage', 1);
}
}
onClipEvent (press) {
if (_root.tocupboard.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
movieClip 900 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance torents of movieClip 900 {
onClipEvent (rollOver) {
if (_root.torents.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.torents.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.torents.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.torents.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.torents.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('parents', 1);
}
}
onClipEvent (press) {
if (_root.torents.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
movieClip 905 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance up3 of movieClip 905 {
onClipEvent (rollOver) {
if (_root.up3.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.up3.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.up3.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.up3.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.up3.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.up3.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
movieClip 910 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance up4 of movieClip 910 {
onClipEvent (rollOver) {
if (_root.up4.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.up4.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.up4.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.up4.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.up4.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.up4.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
movieClip 914 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance up2 of movieClip 914 {
onClipEvent (rollOver) {
if (_root.up2.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.up2.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.up2.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.up2.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.up2.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.up2.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
movieClip 920 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance up1 of movieClip 920 {
onClipEvent (rollOver) {
if (_root.up1.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.up1.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.up1.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.up1.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.up1.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.up1.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
frame 1312 {
stop();
}
frame 1320 {
stop();
stopAllSounds();
}
movieClip 926 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance parentsafterpianobitch of movieClip 926 {
onClipEvent (rollOver) {
if (_root.parentsafterpianobitch.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.parentsafterpianobitch.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.parentsafterpianobitch.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.parentsafterpianobitch.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.parentsafterpianobitch.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('good', 1);
}
}
onClipEvent (press) {
if (_root.parentsafterpianobitch.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
frame 1324 {
stop();
stopAllSounds();
}
frame 1325 {
stopAllSounds();
}
movieClip 929 {
}
movieClip 934 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance storagetohall of movieClip 934 {
onClipEvent (rollOver) {
if (_root.storagetohall.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.storagetohall.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.storagetohall.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.storagetohall.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.storagetohall.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('uphall', 1);
}
}
onClipEvent (press) {
if (_root.storagetohall.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
movieClip 938 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance storagepadopen of movieClip 938 {
onClipEvent (rollOver) {
if (_root.storagepadopen.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.storagepadopen.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.storagepadopen.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.storagepadopen.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.storagepadopen.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('notepad', 1);
}
}
onClipEvent (press) {
if (_root.storagepadopen.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
movieClip 944 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance womanjumpatchaa of movieClip 944 {
onClipEvent (rollOver) {
if (_root.womanjumpatchaa.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('storagedie', 1);
}
}
onClipEvent (rollOver) {
if (_root.womanjumpatchaa.hitTest(_root.crosshair.bad)) {
_root.gotoAndPlay('storagedie', 1);
}
}
}
instance torch of movieClip 99 {
onClipEvent (load) {
_x = _root._xmouse;
_y = _root._ymouse;
Mouse.hide();
}
onClipEvent (mouseMove) {
_x = _root._xmouse;
_y = _root._ymouse;
}
onClipEvent (enterFrame) {
if (Key.isDown(90)) {
this.gotoAndStop(2);
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
this._x = _root.crosshair._x / 2 - 200;
this._y = _root.crosshair._y / 3 + 500;
dx = mx - this._x;
dy = my - this._y;
if (dx < 0) {
nom = -1 * dx;
} else {
nom = dx;
}
if (dy < 0) {
nom + -1 * dy;
} else {
nom + dy;
}
dir = 90 * (dy / nom) + 45;
this._rotation = dir;
}
}
instance ammo of movieClip 158 {
onClipEvent (enterFrame) {
if (Key.isDown(88)) {
this.gotoAndPlay(17);
}
}
}
instance map of movieClip 214 {
onClipEvent (press) {
if (_root.map.hitTest(_root.crosshair.safe)) {
this.play();
}
}
}
frame 1350 {
stop();
}
frame 1354 {
stop();
}
button 951 {
on (release) {
gotoAndPlay('notepad2');
}
}
button 952 {
on (release) {
gotoAndPlay('beforenotepad');
}
}
frame 1355 {
stop();
}
button 954 {
on (release) {
gotoAndPlay('notepad');
}
}
movieClip 960 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance killenemy of movieClip 960 {
onClipEvent (press) {
if (_root.killenemy.hitTest(_root.crosshair.bad)) {
_root.gotoAndPlay('storage', 1);
}
}
}
frame 1400 {
_root.life.play();
}
instance killenemy of movieClip 960 {
onClipEvent (press) {
if (_root.killenemy.hitTest(_root.crosshair.bad)) {
_root.gotoAndPlay('storage', 1);
}
}
}
frame 1436 {
_root.life.play();
}
frame 1438 {
gotoAndPlay(1325);
}
instance torch of movieClip 99 {
onClipEvent (load) {
_x = _root._xmouse;
_y = _root._ymouse;
Mouse.hide();
}
onClipEvent (mouseMove) {
_x = _root._xmouse;
_y = _root._ymouse;
}
onClipEvent (enterFrame) {
if (Key.isDown(90)) {
this.gotoAndStop(2);
}
}
}
frame 1462 {
stop();
}
frame 1462 {
stopAllSounds();
}
instance torch of movieClip 99 {
onClipEvent (load) {
_x = _root._xmouse;
_y = _root._ymouse;
Mouse.hide();
}
onClipEvent (mouseMove) {
_x = _root._xmouse;
_y = _root._ymouse;
}
onClipEvent (enterFrame) {
if (Key.isDown(90)) {
this.gotoAndStop(2);
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
this._x = _root.crosshair._x / 2 - 200;
this._y = _root.crosshair._y / 3 + 500;
dx = mx - this._x;
dy = my - this._y;
if (dx < 0) {
nom = -1 * dx;
} else {
nom = dx;
}
if (dy < 0) {
nom + -1 * dy;
} else {
nom + dy;
}
dir = 90 * (dy / nom) + 45;
this._rotation = dir;
}
}
instance ammo of movieClip 158 {
onClipEvent (enterFrame) {
if (Key.isDown(88)) {
this.gotoAndPlay(17);
}
}
}
instance map of movieClip 214 {
onClipEvent (press) {
if (_root.map.hitTest(_root.crosshair.safe)) {
this.play();
}
}
}
movieClip 970 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance parettohall of movieClip 970 {
onClipEvent (rollOver) {
if (_root.parettohall.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.parettohall.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.parettohall.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.parettohall.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.parettohall.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('uphall', 1);
}
}
onClipEvent (press) {
if (_root.parettohall.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
movieClip 975 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance cupboardopen of movieClip 975 {
onClipEvent (rollOver) {
if (_root.cupboardopen.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.cupboardopen.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.cupboardopen.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.cupboardopen.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.cupboardopen.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('dooropen', 1);
}
}
onClipEvent (press) {
if (_root.cupboardopen.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
movieClip 979 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance pianozoom of movieClip 979 {
onClipEvent (rollOver) {
if (_root.pianozoom.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.pianozoom.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.pianozoom.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.pianozoom.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.pianozoom.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('zoomed1', 1);
}
}
onClipEvent (press) {
if (_root.pianozoom.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
frame 1488 {
stop();
}
frame 1494 {
stop();
}
frame 1500 {
stop();
}
movieClip 985 {
}
movieClip 989 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance pianozoom1 of movieClip 989 {
onClipEvent (rollOver) {
if (_root.pianozoom1.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.pianozoom1.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.pianozoom1.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.pianozoom1.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.pianozoom1.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
_root.gotoAndPlay('zoomed2', 1);
}
}
}
button 990 {
on (release) {
gotoAndPlay('dooropen');
}
}
frame 1501 {
stop();
}
movieClip 992 {
}
movieClip 999 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance fuse of movieClip 999 {
onClipEvent (rollOver) {
if (_root.fuse.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('ding', 1);
}
}
onClipEvent (rollOver) {
if (_root.fuse.hitTest(_root.crosshair.bad)) {
_root.gotoAndPlay('ding', 1);
}
}
}
movieClip 1004 {
}
movieClip 1005 {
}
movieClip 1006 {
frame 1 {
stop();
}
frame 2 {
_root.gotoAndStop('good', 1);
}
frame 2 {
}
frame 3 {
stop();
}
instance fuseinventory of movieClip 1004 {
onClipEvent (mouseDown) {
if (_root.crosshair.safe.hitTest(this)) {
_root.useSlot(this);
_root.gotoAndPlay('fusebox', 1);
}
}
}
instance aids of movieClip 1005 {
onClipEvent (press) {
if (_root.pickupfuse.aids.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('fusebox', 1);
}
}
}
frame 4 {
stop();
}
instance aids of movieClip 1005 {
onClipEvent (press) {
if (_root.pickupfuse.aids.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('fusebox', 1);
this.gotoAndPlay('opop', 1);
}
}
}
frame 5 {
stop();
}
instance aids of movieClip 1005 {
onClipEvent (press) {
if (_root.pickupfuse.aids.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('fusebox', 1);
}
}
}
frame 6 {
stop();
}
instance aids of movieClip 1005 {
onClipEvent (press) {
if (_root.pickupfuse.aids.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('fusebox', 1);
this.gotoAndPlay('opop', 1);
}
}
}
frame 7 {
stop();
}
frame 8 {
stop();
}
instance aids of movieClip 1005 {
onClipEvent (press) {
if (_root.pickupfuse.aids.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('fusebox', 1);
}
}
}
frame 9 {
stop();
}
instance aids of movieClip 1005 {
onClipEvent (press) {
if (_root.pickupfuse.aids.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('fusebox', 1);
this.gotoAndPlay('opop', 1);
}
}
}
frame 10 {
stop();
}
frame 11 {
stop();
}
instance aids of movieClip 1005 {
onClipEvent (press) {
if (_root.pickupfuse.aids.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('fusebox', 1);
}
}
}
frame 12 {
stop();
}
instance aids of movieClip 1005 {
onClipEvent (press) {
if (_root.pickupfuse.aids.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('fusebox', 1);
this.gotoAndPlay('opop', 1);
}
}
}
frame 13 {
stop();
}
frame 14 {
stop();
}
instance aids of movieClip 1005 {
onClipEvent (press) {
if (_root.pickupfuse.aids.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('fusebox', 1);
}
}
}
frame 15 {
stop();
}
instance aids of movieClip 1005 {
onClipEvent (press) {
if (_root.pickupfuse.aids.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('fusebox', 1);
this.gotoAndPlay('opop', 1);
}
}
}
frame 16 {
stop();
}
frame 17 {
stop();
}
instance aids of movieClip 1005 {
onClipEvent (press) {
if (_root.pickupfuse.aids.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('fusebox', 1);
}
}
}
frame 18 {
stop();
}
instance aids of movieClip 1005 {
onClipEvent (press) {
if (_root.pickupfuse.aids.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('fusebox', 1);
this.gotoAndPlay('opop', 1);
}
}
}
frame 19 {
stop();
}
frame 20 {
stop();
}
instance aids of movieClip 1005 {
onClipEvent (press) {
if (_root.pickupfuse.aids.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('fusebox', 1);
}
}
}
frame 21 {
stop();
}
instance aids of movieClip 1005 {
onClipEvent (press) {
if (_root.pickupfuse.aids.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('fusebox', 1);
this.gotoAndPlay('opop', 1);
}
}
}
}
instance pickupfuse of movieClip 1006 {
onClipEvent (mouseDown) {
if (_root.crosshair.safe.hitTest(this)) {
_root.addToslot(this);
this.swapDepths(23);
play();
}
}
}
button 1007 {
on (release) {
gotoAndPlay('dooropen');
}
}
instance killenemy of movieClip 960 {
onClipEvent (press) {
if (_root.killenemy.hitTest(_root.crosshair.bad)) {
_root.gotoAndPlay('dooropen', 1);
}
}
}
frame 1538 {
_root.life.play();
}
instance killenemy of movieClip 960 {
onClipEvent (press) {
if (_root.killenemy.hitTest(_root.crosshair.bad)) {
_root.gotoAndPlay('dooropen', 1);
}
}
}
frame 1574 {
_root.life.play();
}
frame 1596 {
_root.gotoAndPlay('dooropen', 1);
}
frame 1597 {
stop();
}
instance torch of movieClip 99 {
onClipEvent (load) {
_x = _root._xmouse;
_y = _root._ymouse;
Mouse.hide();
}
onClipEvent (mouseMove) {
_x = _root._xmouse;
_y = _root._ymouse;
}
onClipEvent (enterFrame) {
if (Key.isDown(90)) {
this.gotoAndStop(2);
}
}
}
instance parettohallafterpiano of movieClip 970 {
onClipEvent (rollOver) {
if (_root.parettohallafterpiano.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.parettohallafterpiano.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.parettohallafterpiano.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.parettohallafterpiano.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.parettohallafterpiano.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('uphallafterpiano', 1);
}
}
onClipEvent (press) {
if (_root.parettohallafterpiano.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
frame 1600 {
stop();
}
instance torch of movieClip 99 {
onClipEvent (load) {
_x = _root._xmouse;
_y = _root._ymouse;
Mouse.hide();
}
onClipEvent (mouseMove) {
_x = _root._xmouse;
_y = _root._ymouse;
}
onClipEvent (enterFrame) {
if (Key.isDown(90)) {
this.gotoAndStop(2);
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
this._x = _root.crosshair._x / 2 - 200;
this._y = _root.crosshair._y / 3 + 500;
dx = mx - this._x;
dy = my - this._y;
if (dx < 0) {
nom = -1 * dx;
} else {
nom = dx;
}
if (dy < 0) {
nom + -1 * dy;
} else {
nom + dy;
}
dir = 90 * (dy / nom) + 45;
this._rotation = dir;
}
}
instance ammo of movieClip 158 {
onClipEvent (enterFrame) {
if (Key.isDown(88)) {
this.gotoAndPlay(17);
}
}
}
instance map of movieClip 214 {
onClipEvent (press) {
if (_root.map.hitTest(_root.crosshair.safe)) {
this.play();
}
}
}
frame 1706 {
stop();
}
movieClip 1016 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance leaele of movieClip 1016 {
onClipEvent (rollOver) {
if (_root.leaele.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.leaele.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.leaele.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.leaele.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.leaele.hitTest(_root.crosshair.safe)) {
_root.play();
}
}
onClipEvent (press) {
if (_root.leaele.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
}
}
}
movieClip 1019 {
}
movieClip 1022 {
}
movieClip 1053 {
}
movieClip 1068 {
}
movieClip 1073 {
frame 1 {
stop();
}
frame 2 {
_root.gotoAndPlay('startfight', 1);
stop();
}
frame 3 {
_root.gotoAndPlay('startfight', 1);
stop();
}
frame 4 {
stop();
}
frame 5 {
stop();
}
frame 6 {
stop();
}
frame 7 {
stop();
}
frame 8 {
_root.gotoAndPlay('deadboss', 1);
}
}
movieClip 1078 {
}
movieClip 1079 {
frame 25 {
_root.life.play();
}
}
instance bosshand of movieClip 1079 {
onClipEvent (press) {
if (_root.bosshand.hitTest(_root.crosshair.bad)) {
_root.bosshealth.play();
}
}
}
movieClip 1081 {
}
instance killit of movieClip 1081 {
onClipEvent (press) {
if (_root.killit.hitTest(_root.crosshair.bad)) {
_root.bosshealth.play();
}
}
}
instance bosshand2 of movieClip 1079 {
onClipEvent (press) {
if (_root.bosshand2.hitTest(_root.crosshair.bad)) {
_root.bosshealth.play();
}
}
}
instance killit2 of movieClip 1081 {
onClipEvent (press) {
if (_root.killit2.hitTest(_root.crosshair.bad)) {
_root.bosshealth.play();
}
}
}
instance killit of movieClip 1081 {
onClipEvent (press) {
if (_root.killit.hitTest(_root.crosshair.bad)) {
_root.bosshealth.play();
}
}
}
instance bosshand of movieClip 1079 {
onClipEvent (press) {
if (_root.bosshand.hitTest(_root.crosshair.bad)) {
_root.bosshealth.play();
}
}
}
instance killit3 of movieClip 1081 {
onClipEvent (press) {
if (_root.killit3.hitTest(_root.crosshair.bad)) {
_root.bosshealth.play();
}
}
}
frame 2228 {
_root.gotoAndPlay('startfight', 1);
}
movieClip 1094 {
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
this._x = _root.crosshair._x / 2 - 200;
this._y = _root.crosshair._y / 3 + 500;
dx = mx - this._x;
dy = my - this._y;
if (dx < 0) {
nom = -1 * dx;
} else {
nom = dx;
}
if (dy < 0) {
nom + -1 * dy;
} else {
nom + dy;
}
dir = 90 * (dy / nom) + 45;
this._rotation = dir;
}
}
instance ammo of movieClip 158 {
onClipEvent (enterFrame) {
if (Key.isDown(88)) {
this.gotoAndPlay(17);
}
}
}
instance map of movieClip 214 {
onClipEvent (press) {
if (_root.map.hitTest(_root.crosshair.safe)) {
this.play();
}
}
}
frame 2348 {
_root.life.play();
}
frame 2373 {
_root.life.play();
}
movieClip 1105 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance wholetoladder of movieClip 1105 {
onClipEvent (rollOver) {
if (_root.wholetoladder.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.wholetoladder.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.wholetoladder.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.wholetoladder.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.wholetoladder.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('ladderdown', 1);
}
}
onClipEvent (press) {
if (_root.wholetoladder.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
movieClip 1111 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance up4 of movieClip 1111 {
onClipEvent (rollOver) {
if (_root.up4.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.up4.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.up4.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.up4.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.up4.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.up4.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
frame 2435 {
stop();
}
instance torch of movieClip 99 {
onClipEvent (load) {
_x = _root._xmouse;
_y = _root._ymouse;
Mouse.hide();
}
onClipEvent (mouseMove) {
_x = _root._xmouse;
_y = _root._ymouse;
}
onClipEvent (enterFrame) {
if (Key.isDown(90)) {
this.gotoAndStop(2);
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
this._x = _root.crosshair._x / 2 - 200;
this._y = _root.crosshair._y / 3 + 500;
dx = mx - this._x;
dy = my - this._y;
if (dx < 0) {
nom = -1 * dx;
} else {
nom = dx;
}
if (dy < 0) {
nom + -1 * dy;
} else {
nom + dy;
}
dir = 90 * (dy / nom) + 45;
this._rotation = dir;
}
}
instance ammo of movieClip 158 {
onClipEvent (enterFrame) {
if (Key.isDown(88)) {
this.gotoAndPlay(17);
}
}
}
instance map of movieClip 214 {
onClipEvent (press) {
if (_root.map.hitTest(_root.crosshair.safe)) {
this.play();
}
}
}
movieClip 1117 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance laaaader of movieClip 1117 {
onClipEvent (rollOver) {
if (_root.laaaader.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.laaaader.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.laaaader.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.laaaader.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.laaaader.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('climbingladder', 1);
}
}
onClipEvent (press) {
if (_root.laaaader.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
frame 2466 {
stop();
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
this._x = _root.crosshair._x / 2 - 200;
this._y = _root.crosshair._y / 3 + 500;
dx = mx - this._x;
dy = my - this._y;
if (dx < 0) {
nom = -1 * dx;
} else {
nom = dx;
}
if (dy < 0) {
nom + -1 * dy;
} else {
nom + dy;
}
dir = 90 * (dy / nom) + 45;
this._rotation = dir;
}
}
instance ammo of movieClip 158 {
onClipEvent (enterFrame) {
if (Key.isDown(88)) {
this.gotoAndPlay(17);
}
}
}
instance map of movieClip 214 {
onClipEvent (press) {
if (_root.map.hitTest(_root.crosshair.safe)) {
this.play();
}
}
}
movieClip 1125 {
}
movieClip 1127 {
}
movieClip 1133 {
}
instance torch of movieClip 99 {
onClipEvent (load) {
_x = _root._xmouse;
_y = _root._ymouse;
Mouse.hide();
}
onClipEvent (mouseMove) {
_x = _root._xmouse;
_y = _root._ymouse;
}
onClipEvent (enterFrame) {
if (Key.isDown(90)) {
this.gotoAndStop(2);
}
}
}
instance of movieClip 103 {
onClipEvent (enterFrame) {
this._x = _root.crosshair._x / 2 - 200;
this._y = _root.crosshair._y / 3 + 500;
dx = mx - this._x;
dy = my - this._y;
if (dx < 0) {
nom = -1 * dx;
} else {
nom = dx;
}
if (dy < 0) {
nom + -1 * dy;
} else {
nom + dy;
}
dir = 90 * (dy / nom) + 45;
this._rotation = dir;
}
}
instance ammo of movieClip 158 {
onClipEvent (enterFrame) {
if (Key.isDown(88)) {
this.gotoAndPlay(17);
}
}
}
instance map of movieClip 214 {
onClipEvent (press) {
if (_root.map.hitTest(_root.crosshair.safe)) {
this.play();
}
}
}
frame 2947 {
stop();
}
movieClip 1139 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance loops of movieClip 1139 {
onClipEvent (rollOver) {
if (_root.loops.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.loops.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.loops.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.loops.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.loops.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('riot', 1);
}
}
onClipEvent (press) {
if (_root.loops.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
movieClip 1145 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance exit of movieClip 1145 {
onClipEvent (rollOver) {
if (_root.exit.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.exit.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.exit.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.exit.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.exit.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.exit.hitTest(_root.crosshair.bad)) {
_root.gotoAndPlay('riotshot1', 1);
}
}
}
frame 2951 {
stop();
}
movieClip 1154 {
}
movieClip 1158 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance exit1 of movieClip 1158 {
onClipEvent (rollOver) {
if (_root.exit1.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.exit1.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.exit1.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.exit1.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.exit1.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.exit1.hitTest(_root.crosshair.bad)) {
_root.gotoAndPlay('riotshot2', 1);
}
}
}
frame 2955 {
stop();
}
movieClip 1166 {
}
movieClip 1170 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance exit2 of movieClip 1170 {
onClipEvent (rollOver) {
if (_root.exit2.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.exit2.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.exit2.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.exit2.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.exit2.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('lab', 1);
}
}
onClipEvent (press) {
if (_root.exit2.hitTest(_root.crosshair.bad)) {
}
}
}
movieClip 1173 {
}
movieClip 1175 {
}
movieClip 1176 {
}
frame 2973 {
stop();
}
movieClip 1184 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance labdoor of movieClip 1184 {
onClipEvent (rollOver) {
if (_root.labdoor.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.labdoor.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.labdoor.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.labdoor.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.labdoor.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('buttoncomp', 1);
}
}
onClipEvent (press) {
if (_root.labdoor.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
movieClip 1189 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance painting1 of movieClip 1189 {
onClipEvent (rollOver) {
if (_root.painting1.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.painting1.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.painting1.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.painting1.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.painting1.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.painting1.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
movieClip 1194 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance painting1 of movieClip 1194 {
onClipEvent (rollOver) {
if (_root.painting1.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.painting1.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.painting1.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.painting1.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.painting1.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.painting1.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
movieClip 1198 {
}
movieClip 1200 {
}
movieClip 1201 {
}
frame 3001 {
stop();
}
movieClip 1206 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance endbuttonyo of movieClip 1206 {
onClipEvent (rollOver) {
if (_root.endbuttonyo.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.endbuttonyo.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.endbuttonyo.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.endbuttonyo.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.endbuttonyo.hitTest(_root.crosshair.safe)) {
_root.gotoAndPlay('buttoncompshot', 1);
}
}
onClipEvent (press) {
if (_root.endbuttonyo.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
movieClip 1210 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
}
}
instance painting1 of movieClip 1210 {
onClipEvent (rollOver) {
if (_root.painting1.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.painting1.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(1);
}
}
onClipEvent (rollOver) {
if (_root.painting1.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(3);
}
}
onClipEvent (rollOut) {
if (_root.painting1.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.painting1.hitTest(_root.crosshair.safe)) {
this.gotoAndStop(4);
}
}
onClipEvent (press) {
if (_root.painting1.hitTest(_root.crosshair.bad)) {
this.gotoAndStop(5);
_root.damage._alpha = 100;
}
}
}
movieClip 1214 {
}
movieClip 1217 {
}
movieClip 1221 {
}
frame 3305 {
_root.gotoAndPlay('loadage', 1);
}
frame 3306 {
stop();
}
frame 3306 {
stop();
}
button 1225 {
on (release) {
_root.gotoAndPlay('loadage', 1);
}
}
button 1228 {
on (release) {
nextFrame();
}
}
movieClip 1230 {
}
frame 3307 {
stop();
}
frame 3308 {
stop();
}
frame 3309 {
stop();
}
frame 3310 {
stop();
}
button 1235 {
on (release) {
_root.gotoAndPlay('over', 1);
}
}