Frame 1
stop();
Frame 2
intromusic = new Sound(bgmusic);
intromusic.attachSound("music3");
intromusic.start(0, 999);
intromusic.setVolume(25);
Frame 3
stop();
Stage.scaleMode = "noScale";
Stage.showMenu = false;
fscommand ("trapallkeys", true);
fscommand ("showmenu", "false");
stop();
Instance of Symbol 412 MovieClip in Frame 4
onClipEvent (enterFrame) {
gotoAndStop (2);
}
Instance of Symbol 412 MovieClip in Frame 4
onClipEvent (enterFrame) {
_rotation = -90;
gotoAndStop (2);
}
Instance of Symbol 412 MovieClip in Frame 4
onClipEvent (enterFrame) {
_rotation = 90;
gotoAndStop (2);
}
Frame 5
stop();
Mouse.hide();
Frame 6
stop();
intromusic.stop();
backgroundmusic = new Sound(gameover);
backgroundmusic.attachSound("music2");
backgroundmusic.start(0, 999);
backgroundmusic.setVolume(10);
this.musicstop._visible = false;
gamenoise = new Sound(MainGame_mc);
gamenoise.setVolume(70);
function init() {
room1();
mouse_mc.startDrag(true);
Mouse.hide();
mouse_mc._visible = true;
Inventory_mc.Item9_mc.sunglasses_mc._visible = false;
this.suns._visible = false;
MainGame_mc.r3_mc.box2._visible = false;
this.darnkess_mc._visible = false;
Inventory_mc.about.enabled = false;
Inventory_mc.about.text = "I need to escape...but how?";
about_mc._visible = false;
MainGame_mc.r1_mc.desk_mc.lockboxopen._visible = false;
MainGame_mc.rlockboxdrawer.lockbox.wallet.onPress = moveWallet;
MainGame_mc.r1_mc.lockboxshut._visible = true;
_global.zoomdesk = false;
_global.column1;
_global.column2;
_global.column3;
_global.column4;
_global.room2 = false;
_global.room3 = false;
_global.room4 = false;
_global.room5 = false;
_global.room6 = false;
_global.room1 = true;
_global.draweropen = false;
_global.lockboxopen = false;
_global.mouseScrewdriver = false;
_global.safeNumbers = "";
}
function cfinalkey() {
Inventory_mc.Item7_mc.attachMovie("finalkey", "finalkey", Inventory_mc.Item7_mc.getNextHighestDepth());
Inventory_mc.Item7_mc.finalkey._xscale = 200;
Inventory_mc.Item7_mc.finalkey._yscale = 200;
Inventory_mc.Item7_mc.finalkey.onRollOver = function () {
if (_global.mousefkey) {
} else {
Inventory_mc.about.text = "another key..";
}
};
Inventory_mc.Item7_mc.finalkey.onRollOut = function () {
Inventory_mc.about.text = "";
};
Inventory_mc.Item7_mc.finalkey.onPress = function () {
if (!_global.mousefkey) {
this._rotation = -20;
mouse_mc._visible = false;
this.startDrag(true);
_global.mousefkey = true;
} else if (this.hitTest(MainGame_mc.r3_mc.doorknob) && (_global.zoomdoor)) {
this._x = -377;
this._y = -230;
this.stopDrag();
mouse_mc._visible = true;
mouse_mc.startDrag(true);
this.gotoAndPlay(2);
} else {
Inventory_mc.about.text = "too far to reach...";
this.stopDrag();
mouse_mc._visible = true;
mouse_mc.startDrag(true);
this._x = 0;
this._y = 0;
this._rotation = 0;
_global.mousefkey = false;
}
};
}
function createGlasses() {
Inventory_mc.Item9_mc.attachMovie("sunglasses", "sunglasses_mc", Inventory_mc.getNextHighestDepth());
Inventory_mc.Item9_mc.sunglasses_mc.onPress = function () {
if (!_global.glasses) {
this.startDrag(true);
mouse_mc._visible = false;
this.gotoAndStop(2);
_global.glasses = true;
} else {
this.stopDrag();
mouse_mc._visible = true;
mouse_mc.startDrag(true);
this.gotoAndStop(1);
this._x = 0;
this._y = 0;
_global.glasses = false;
}
};
}
function cheatgun() {
Inventory_mc.Item8_mc.heatgun.onRollOver = function () {
if (!_global.mousegun) {
Inventory_mc.about.text = "a heat gun??";
}
};
Inventory_mc.Item8_mc.heatgun.onRollOut = function () {
Inventory_mc.about.text = "";
};
Inventory_mc.Item8_mc.heatgun.onPress = function () {
if (!_global.mousegun) {
Inventory_mc.about.text = "a heat gun...";
this._rotation = -10;
this.gflame.play();
this.gflame2.play();
this.gflame3.play();
this.guntip.flame.play();
this._xscale = 100;
this._yscale = 100;
this.startDrag(true);
mouse_mc._visible = false;
_global.mousegun = true;
} else {
this._xscale = 50;
this._yscale = 50;
this._x = 0;
this._y = 0;
this.stopDrag();
mouse_mc._visible = true;
mouse_mc.startDrag(true);
_global.mousegun = false;
}
};
Inventory_mc.Item8_mc.heatgun.onMouseMove = function () {
if (this.guntip.flame.hitTest(Inventory_mc.Item6_mc.shaft_mc.glue) && (_global.stickblade)) {
if (Inventory_mc.Item6_mc.shaft_mc.glue._currentframe == 40) {
createstick();
} else {
Inventory_mc.Item6_mc.shaft_mc.glue.play();
}
} else {
about_mc.glue.stop();
}
};
Inventory_mc.Item8_mc.heatgun.onRelease = function () {
moveheatgun();
};
}
function moveheatgun() {
Inventory_mc.Item8_mc.heatgun._rotation = 0;
Inventory_mc.Item8_mc.heatgun.gflame.play();
Inventory_mc.Item8_mc.heatgun.gflame2.play();
Inventory_mc.Item8_mc.heatgun.gflame3.play();
Inventory_mc.Item8_mc.heatgun.guntip.flame.gotoAndStop(1);
Inventory_mc.Item8_mc.heatgun._xscale = 50;
Inventory_mc.Item8_mc.heatgun._yscale = 50;
Inventory_mc.Item8_mc.heatgun._x = 0;
Inventory_mc.Item8_mc.heatgun._y = 0;
Inventory_mc.Item8_mc.heatgun.stopDrag();
mouse_mc.startDrag(true);
mouse_mc._visible = true;
Inventory_mc.about.text = "";
_global.mousegun = false;
_global.stick = true;
}
function createstick() {
Inventory_mc.Item6_mc.shaft_mc.unloadMovie();
Inventory_mc.Item7_mc.stickblade_mc.unloadMovie();
Inventory_mc.Item6_mc.attachMovie("stick", "stick_mc", Inventory_mc.Item6_mc.getNextHighestDepth());
Inventory_mc.Item6_mc.stick_mc._yscale = 45;
Inventory_mc.Item6_mc.stick_mc._xscale = 45;
Inventory_mc.about.text = "a hockey stick..";
moveheatgun();
about_mc._visible = false;
Inventory_mc.Item6_mc.stick_mc.onPress = function () {
this.startDrag(true);
mouse_mc._visible = false;
this._xscale = 150;
this._rotation = -100;
this._yscale = 150;
_global.mousestick = true;
Inventory_mc.about.text = "a hockey stick";
};
Inventory_mc.Item6_mc.stick_mc.onRelease = function () {
if (this.hitTest(MainGame_mc.r3_mc.box)) {
this.stopDrag();
this._x = 0;
this._y = 0;
this._xscale = 50;
this._yscale = 50;
this._rotation = 0;
mouse_mc.startDrag(true);
mouse_mc._visible = true;
MainGame_mc.r3_mc.box._visible = false;
MainGame_mc.r3_mc.box2._visible = true;
_global.mousestick = false;
Inventory_mc.about.text = "";
_global.boxmoved = true;
} else {
this.stopDrag();
mouse_mc.startDrag(true);
mouse_mc._visible = true;
this._x = 0;
this._rotation = 0;
this._y = 0;
this._yscale = 50;
this._xscale = 50;
}
};
}
function stick() {
MainGame_mc.r2_mc.shaft.unloadMovie();
Inventory_mc.about.text = " a hockey stick shaft...";
Inventory_mc.Item6_mc.attachMovie("shaft", "shaft_mc", Inventory_mc.getNextHighestDepth());
Inventory_mc.Item6_mc.shaft_mc._xscale = 50;
Inventory_mc.Item6_mc.shaft_mc._yscale = 50;
Inventory_mc.Item6_mc.shaft_mc.onRollOver = function () {
if (!_global.mouseshaft) {
Inventory_mc.about.text = "a hockey stick shaft...";
}
};
Inventory_mc.Item6_mc.shaft_mc.onRollOut = function () {
Inventory_mc.about.text = "";
};
Inventory_mc.Item6_mc.shaft_mc.onPress = function () {
if (!_global.mouseshaft) {
if (_global.wallet || (_global.note)) {
Inventory_mc.Item4_mc.note._y = 0;
Inventory_mc.Item4_mc.note._x = 0;
_global.note = false;
Inventory_mc.Item4_mc.note.gotoAndStop(1);
Inventory_mc.Item2_mc.wallet_mc.gotoAndStop(1);
Inventory_mc.Item2_mc.wallet_mc._y = 0;
Inventory_mc.Item2_mc.wallet_mc._x = 0;
Inventory_mc.Item2_mc.wallet_mc._height = 30;
Inventory_mc.Item2_mc.wallet_mc._width = 28;
shaftabout();
} else {
this._x = -150;
this._y = -300;
this._xscale = 300;
this._yscale = 300;
about_mc._visible = true;
Inventory_mc.about.text = "a hockey stick shaft";
_global.shaft = true;
}
}
};
}
function walletabout() {
Inventory_mc.Item2_mc.wallet_mc._y = -300;
Inventory_mc.Item2_mc.wallet_mc._x = 10;
Inventory_mc.Item2_mc.wallet_mc._xscale = 110;
Inventory_mc.Item2_mc.wallet_mc._yscale = 110;
about_mc._visible = true;
mask._visible = false;
_global.wallet = true;
Inventory_mc.about.text = "Hmm a wallet...";
}
function shaftabout() {
Inventory_mc.Item6_mc.shaft_mc._x = -150;
Inventory_mc.Item6_mc.shaft_mc._y = -300;
Inventory_mc.Item6_mc.shaft_mc._xscale = 300;
Inventory_mc.Item6_mc.shaft_mc._yscale = 300;
about_mc._visible = true;
Inventory_mc.about.text = "a hockey stick shaft";
_global.shaft = true;
_global.wallet = false;
}
function cstickblade() {
if ((_global.wallet || (_global.note)) || (_global.shaft)) {
Inventory_mc.Item6_mc.shaft_mc._x = 0;
Inventory_mc.Item6_mc.shaft_mc._rotation = 0;
Inventory_mc.Item6_mc.shaft_mc._y = 0;
_global.shaft = false;
Inventory_mc.Item6_mc.shaft_mc._xscale = 50;
Inventory_mc.Item6_mc.shaft_mc._yscale = 50;
Inventory_mc.Item4_mc.note.gotoAndStop(1);
_global.note = false;
Inventory_mc.Item4_mc.note._y = 0;
Inventory_mc.Item4_mc.note._x = 0;
Inventory_mc.Item4_mc.note.gotoAndStop(1);
Inventory_mc.Item2_mc.wallet_mc.gotoAndStop(1);
Inventory_mc.Item2_mc.wallet_mc._y = 0;
Inventory_mc.Item2_mc.wallet_mc._x = 0;
Inventory_mc.Item2_mc.wallet_mc._height = 30;
Inventory_mc.Item2_mc.wallet_mc._width = 28;
_global.wallet = false;
}
Inventory_mc.Item7_mc.stickblade_mc._x = -58;
Inventory_mc.Item7_mc.stickblade_mc._rotation = 7;
Inventory_mc.Item7_mc.stickblade_mc._y = -155;
about_mc._visible = true;
_global.stickblade = true;
Inventory_mc.Item7_mc.stickblade_mc._xscale = 370;
Inventory_mc.Item7_mc.stickblade_mc._yscale = 380;
}
function movedecoder() {
_root.gamenoise.attachSound("itempick");
_root.gamenoise.start(0, 0);
MainGame_mc.r2_mc.decoder_mc.unloadMovie();
Inventory_mc.about.text = " a decoder...but what for?";
Inventory_mc.Item5_mc.attachMovie("decoder", "decoder", Inventory_mc.Item5_mc.getNextHighestDepth());
Inventory_mc.Item5_mc.decoder._width = 30;
Inventory_mc.Item5_mc.decoder._height = 19;
Inventory_mc.Item5_mc.decoder._y = 20;
Inventory_mc.Item5_mc.decoder._x = 20;
Inventory_mc.Item5_mc.decoder.onRollOver = function () {
Inventory_mc.about.text = " a strange decoder...";
};
Inventory_mc.Item5_mc.decoder.onRollOut = function () {
Inventory_mc.about.text = "";
};
Inventory_mc.Item5_mc.decoder.onPress = useDecoder;
}
function useDecoder() {
if (!_global.mouseDecoder) {
Inventory_mc.Item5_mc.decoder._xscale = 398;
Inventory_mc.Item5_mc.decoder._yscale = 420;
Inventory_mc.Item5_mc.decoder.startDrag(true);
mouse_mc._visible = false;
_global.mouseDecoder = true;
} else {
Inventory_mc.Item5_mc.decoder._height = 19;
Inventory_mc.Item5_mc.decoder._width = 30;
Inventory_mc.Item5_mc.decoder._x = 20;
Inventory_mc.Item5_mc.decoder._y = 20;
Inventory_mc.Item5_mc.decoder.stopDrag();
mouse_mc.startDrag(true);
mouse_mc._visible = true;
Inventory_mc.about.text = "";
_global.mouseDecoder = false;
}
}
function clickNote() {
if ((_global.wallet || (_global.stickblade)) || (_global.shaft)) {
Inventory_mc.Item2_mc.wallet_mc.gotoAndStop(1);
Inventory_mc.Item2_mc.wallet_mc._y = 0;
Inventory_mc.Item2_mc.wallet_mc._x = 0;
Inventory_mc.Item2_mc.wallet_mc._height = 30;
Inventory_mc.Item2_mc.wallet_mc._width = 28;
_global.wallet = false;
Inventory_mc.Item7_mc.stickblade_mc._x = 0;
Inventory_mc.Item7_mc.stickblade_mc._rotation = 0;
Inventory_mc.Item7_mc.stickblade_mc._y = 0;
_global.stickblade = false;
Inventory_mc.Item7_mc.stickblade_mc._xscale = 100;
Inventory_mc.Item7_mc.stickblade_mc._yscale = 100;
Inventory_mc.Item6_mc.shaft_mc._x = 0;
Inventory_mc.Item6_mc.shaft_mc._rotation = 0;
Inventory_mc.Item6_mc.shaft_mc._y = 0;
_global.shaft = false;
Inventory_mc.Item6_mc.shaft_mc._xscale = 50;
Inventory_mc.Item6_mc.shaft_mc._yscale = 50;
}
Inventory_mc.Item4_mc.note._y = -400;
Inventory_mc.Item4_mc.note._x = -100;
Inventory_mc.Item4_mc.note.gotoAndStop(2);
about_mc._visible = true;
MainGame_mc.enabled = false;
_global.note = true;
Inventory_mc.about.text = "A comp sci note...";
}
function checkSafe() {
if (_global.safeNumbers == "5490") {
MainGame_mc.r4_mc.poster.safeNumbers.text = "Unlocked";
_root.gamenoise.attachSound("safeopen");
_root.gamenoise.start(0, 0);
MainGame_mc.r4_mc.poster.safearm.play();
_global.safeOpened = true;
} else {
_global.safeNumbers = "ERROR";
MainGame_mc.r4_mc.poster.safeNumbers.text = _global.safeNumbers;
}
}
function Wall1() {
MainGame_mc.r1_mc.Clock._visible = true;
Inventory_mc.about.text = "";
MainGame_mc.r1_mc.desk_mc.lockboxshut._visible = true;
MainGame_mc.r1_mc.desk_mc.lockboxopen._visible = false;
MainGame_mc.r1_mc.foodcontainer_mc._visible = true;
MainGame_mc.r1_mc.r1bg_mc._visible = true;
MainGame_mc.r1_mc.desk_mc._xscale = 100;
MainGame_mc.r1_mc.desk_mc._yscale = 100;
_global.zoomdesk = false;
_global.room1 = true;
MainGame_mc.r1_mc.key_mc._visible = false;
}
function room3() {
MainGame_mc._x = 100;
_global.mainx = MainGame_mc._x;
_global.mainy = MainGame_mc._y;
_global.room1 = false;
_global.room2 = false;
_global.room3 = true;
_global.room4 = false;
_global.room5 = false;
_global.room6 = false;
goUp._visible = false;
}
function room2() {
MainGame_mc._x = 1100;
goUp._visible = false;
_global.mainx = MainGame_mc._x;
_global.mainy = MainGame_mc._y;
_global.room1 = false;
_global.room2 = true;
_global.room3 = false;
_global.room4 = false;
_global.room5 = false;
_global.room6 = false;
}
function room1() {
_global.room1 = true;
_global.room2 = false;
_global.room3 = false;
_global.room4 = false;
_global.room5 = false;
_global.room6 = false;
MainGame_mc._x = 600;
_global.mainx = MainGame_mc._x;
_global.mainy = MainGame_mc._y;
MainGame_mc._xscale = 100;
MainGame_mc._yscale = 100;
_global.deskx = MainGame_mc.r1_mc.desk_mc._x;
_global.desky = MainGame_mc.r1_mc.desk_mc._y;
}
function room4() {
_global.room1 = false;
_global.room2 = false;
_global.room3 = false;
_global.room4 = true;
_global.room5 = false;
_global.room6 = false;
MainGame_mc._x = -400;
_global.mainx = MainGame_mc._x;
_global.mainy = MainGame_mc._y;
}
function create() {
MainGame_mc.r4_mc.rfbg.floor4.screwdriver.unloadMovie();
Inventory_mc.about.text = "a screwdriver...";
Inventory_mc.Item3_mc.attachMovie("screwdriver", "screwdriver_mc", Inventory_mc.Item3_mc.getNextHighestDepth());
Inventory_mc.Item3_mc.screwdriver_mc.onPress = testing;
Inventory_mc.Item3_mc.screwdriver_mc.onRollOver = function () {
if (!_global.mouseScrewdriver) {
Inventory_mc.about.text = "a flathead screwdriver...";
}
};
Inventory_mc.Item3_mc.screwdriver_mc.onRollOut = function () {
Inventory_mc.about.text = "";
};
_global.screwdriverFound = true;
}
function testing() {
if (_global.mouseScrewdriver) {
if (_global.zoomscrew && (this.hitTest(MainGame_mc.r2_mc.heater.screw))) {
MainGame_mc.r2_mc.screw.unloadMovie();
Inventory_mc.Item3_mc.screwdriver_mc._x = 0;
Inventory_mc.Item3_mc.screwdriver_mc._y = 0;
Inventory_mc.Item3_mc.screwdriver_mc.stopDrag();
mouse_mc.startDrag(true);
mouse_mc._visible = true;
Inventory_mc.about.text = "It opened!";
MainGame_mc.r2_mc.heater.gotoAndPlay(2);
MainGame_mc.r2_mc.b1.unloadMovie();
_global.heaterfound = true;
} else {
Inventory_mc.about.text = "No I don't think so...";
Inventory_mc.Item3_mc.screwdriver_mc._x = 0;
Inventory_mc.Item3_mc.screwdriver_mc._y = 0;
Inventory_mc.Item3_mc.screwdriver_mc.stopDrag();
mouse_mc.startDrag(true);
mouse_mc._visible = true;
_global.mouseScrewdriver = false;
}
} else {
Inventory_mc.about.text = "Let's see what this does...";
mouse_mc.stopDrag();
mouse_mc._visible = false;
Inventory_mc.Item3_mc.screwdriver_mc.startDrag(true);
_global.mouseScrewdriver = true;
}
}
function moveWallet() {
_root.gamenoise.attachSound("itempick");
_root.gamenoise.start(0, 0);
MainGame_mc.rlockboxdrawer.lockbox.wallet.unloadMovie();
Inventory_mc.Item2_mc.attachMovie("wallet", "wallet_mc", Inventory_mc.Item2_mc.getNextHighestDepth());
Inventory_mc.Item2_mc.wallet_mc._height = 30;
Inventory_mc.Item2_mc.wallet_mc._width = 28;
Inventory_mc.Item2_mc.wallet_mc.useHandCursor = false;
Inventory_mc.Item2_mc.wallet_mc.onRollOver = function () {
Inventory_mc.about.text = "your wallet...";
};
Inventory_mc.Item2_mc.wallet_mc.onRollOut = function () {
Inventory_mc.about.text = "";
};
Inventory_mc.Item2_mc.wallet_mc.onPress = function () {
if (!_global.wallet) {
if ((_global.shaft || (_global.stickblade)) || (_global.note)) {
Inventory_mc.Item4_mc.note._y = 0;
Inventory_mc.Item4_mc.note._x = 0;
_global.note = false;
Inventory_mc.Item4_mc.note.gotoAndStop(1);
Inventory_mc.Item7_mc.stickblade_mc._x = 0;
Inventory_mc.Item7_mc.stickblade_mc._rotation = 0;
Inventory_mc.Item7_mc.stickblade_mc._y = 0;
_global.stickblade = false;
Inventory_mc.Item7_mc.stickblade_mc._xscale = 100;
Inventory_mc.Item7_mc.stickblade_mc._yscale = 100;
Inventory_mc.Item6_mc.shaft_mc._x = 0;
Inventory_mc.Item6_mc.shaft_mc._rotation = 0;
Inventory_mc.Item6_mc.shaft_mc._y = 0;
_global.shaft = false;
Inventory_mc.Item6_mc.shaft_mc._xscale = 50;
Inventory_mc.Item6_mc.shaft_mc._yscale = 50;
walletabout();
} else {
this._y = -300;
this._x = 10;
this._xscale = 110;
this._yscale = 110;
about_mc._visible = true;
mask._visible = false;
_global.wallet = true;
Inventory_mc.about.text = "Hmm a wallet...";
}
} else {
this.gotoAndPlay(2);
Inventory_mc.about.text = "What could I use this for?";
this.creditcard.onPress = function () {
trace("yes");
};
this._x = 5;
this._y = 20;
this._xscale = 200;
this._yscale = 200;
about_mc._visible = true;
mask._visible = false;
_global.wallet = true;
}
};
}
function moveKey() {
_root.gamenoise.attachSound("itempick");
_root.gamenoise.start(0, 0);
MainGame_mc.r1_mc.key_mc.unloadMovie();
Inventory_mc.Item1_mc.attachMovie("key1", "key_mc", Inventory_mc.Item1_mc.getNextHighestDepth());
Inventory_mc.Item1_mc.key_mc._x = 16;
Inventory_mc.Item1_mc.key_mc._y = 10;
Inventory_mc.Item1_mc.key_mc.onRollOver = function () {
if (_global.mouseKey) {
} else {
Inventory_mc.about.text = "some kind of key...";
}
};
Inventory_mc.Item1_mc.key_mc.onRollOut = function () {
Inventory_mc.about.text = "";
};
Inventory_mc.Item1_mc.key_mc.onPress = function () {
if ((!_global.mouseKey) && (!_global.keyUsed)) {
this.startDrag(true);
mouse_mc._visible = false;
_global.mouseKey = true;
} else {
if (this.hitTest(MainGame_mc.r3_mc.box2.boxlock)) {
MainGame_mc.r3_mc.box2.gotoAndStop(2);
Inventory_mc.about.text = "it opened...hmm what are those?";
}
Inventory_mc.Item1_mc.key_mc._x = 10;
Inventory_mc.Item1_mc.key_mc._y = 10;
_global.mouseKey = false;
this.stopDrag();
mouse_mc.startDrag(true);
mouse_mc._visible = true;
}
};
}
function checkCode() {
if ((((_global.column1 == 1) && (_global.column2 == 7)) && (_global.column3 == 8)) && (_global.column4 == 9)) {
unlock();
}
}
function unlock() {
this.MainGame_mc.r1_mc.desk_mc.clickLock._x = 55;
_global.unlockbox = true;
}
function clickaway() {
MainGame_mc.r1_mc.foodcontainer_mc._visible = true;
MainGame_mc.r1_mc.r1bg_mc._visible = true;
MainGame_mc.r1_mc.Clock._visible = true;
MainGame_mc.r1_mc.desk_mc.clicklock2._visible = true;
MainGame_mc.r1_mc.desk_mc._rotation = 0;
MainGame_mc.r1_mc.desk_mc._x = _global.deskx;
MainGame_mc.r1_mc.desk_mc._y = _global.desky;
MainGame_mc.r1_mc.desk_mc._xscale = 100;
MainGame_mc.r1_mc.desk_mc._yscale = 100;
MainGame_mc.r1_mc.key_mc._visible = false;
_global.zoomlock = false;
_global.room1 = true;
}
function letteraway() {
MainGame_mc.r1_mc.desk_mc.letterzoom._alpha = 0;
MainGame_mc.r1_mc.desk_mc.lettersmall._alpha = 100;
MainGame_mc.r1_mc.foodcontainer_mc._visible = true;
MainGame_mc.r1_mc.Clock._visible = true;
MainGame_mc.r1_mc.r1bg_mc._visible = true;
MainGame_mc.r1_mc.desk_mc._x = _global.deskx;
MainGame_mc.r1_mc.desk_mc._y = _global.desky;
MainGame_mc.r1_mc.desk_mc._xscale = 100;
MainGame_mc.r1_mc.desk_mc._yscale = 100;
MainGame_mc.r1_mc.key_mc._visible = false;
_global.zoomletter = false;
_global.room1 = true;
}
function letterZoomer() {
Inventory_mc.about.text = "a poem about some friend...";
MainGame_mc.r1_mc.Clock._visible = false;
MainGame_mc.r1_mc.desk_mc.letterzoom._alpha = 100;
MainGame_mc.r1_mc.desk_mc.lettersmall._alpha = 0;
MainGame_mc.r1_mc.foodcontainer_mc._visible = false;
MainGame_mc.r1_mc.gotoWindowWall_mc._visible = false;
MainGame_mc.r1_mc.gotoLockerWall_mc._visible = false;
MainGame_mc.r1_mc.r1bg_mc._visible = false;
MainGame_mc.r1_mc.desk_mc._x = 500;
MainGame_mc.r1_mc.desk_mc._y = 380;
MainGame_mc.r1_mc.desk_mc._xscale = 900;
MainGame_mc.r1_mc.desk_mc._yscale = 900;
MainGame_mc.r1_mc.key_mc._visible = false;
_global.zoomletter = true;
_global.room1 = false;
}
stop();
init();
MainGame_mc.r1_mc.desk_mc.backdWall_mc.onPress = Wall1;
MainGame_mc.r1_mc.desk_mc.zoomdesk_mc.onPress = Wall1Zoom;
MainGame_mc.rlockboxdrawer.lockbox.lockboxbacktodesk.onPress = function () {
MainGame_mc._y = 275;
};
MainGame_mc.r1_mc.desk_mc.lockboxshut.onPress = function () {
if (_global.zoomlock) {
} else if (_global.unlockbox) {
MainGame_mc.r1_mc.desk_mc.lockboxopen._visible = true;
this._visible = false;
_global.lockboxopen = true;
}
};
MainGame_mc.r1_mc.desk_mc.lockboxopen.closebox.onPress = function () {
MainGame_mc.r1_mc.desk_mc.lockboxshut._visible = true;
MainGame_mc.r1_mc.desk_mc.lockboxopen._visible = false;
_global.lockboxopen = false;
};
MainGame_mc.r4_mc.poster.zoomsafe.onPress = function () {
Inventory_mc.about.text = "a safe";
};
about_mc.closeabout.onPress = function () {
mask._visible = true;
if (_global.wallet) {
Inventory_mc.Item2_mc.wallet_mc.gotoAndStop(1);
Inventory_mc.Item2_mc.wallet_mc._y = 0;
Inventory_mc.Item2_mc.wallet_mc._x = 0;
Inventory_mc.Item2_mc.wallet_mc._height = 30;
Inventory_mc.Item2_mc.wallet_mc._width = 28;
about_mc._visible = false;
MainGame_mc.enabled = true;
} else if (_global.note) {
Inventory_mc.Item4_mc.note._y = 0;
Inventory_mc.Item4_mc.note._x = 0;
_global.note = false;
Inventory_mc.Item4_mc.note.gotoAndStop(1);
} else if (_global.stickblade || (_global.shaft)) {
Inventory_mc.Item7_mc.stickblade_mc._x = 0;
Inventory_mc.Item7_mc.stickblade_mc._rotation = 0;
Inventory_mc.Item7_mc.stickblade_mc._y = 0;
_global.stickblade = false;
Inventory_mc.Item7_mc.stickblade_mc._xscale = 100;
Inventory_mc.Item7_mc.stickblade_mc._yscale = 100;
Inventory_mc.Item6_mc.shaft_mc._x = 0;
Inventory_mc.Item6_mc.shaft_mc._rotation = 0;
Inventory_mc.Item6_mc.shaft_mc._y = 0;
_global.shaft = false;
Inventory_mc.Item6_mc.shaft_mc._xscale = 50;
Inventory_mc.Item6_mc.shaft_mc._yscale = 50;
}
about_mc._visible = false;
MainGame_mc.enabled = true;
Inventory_mc.about.text = "";
};
MainGame_mc.r1_mc.desk_mc.drawerclosed_mc.onPress = function () {
if (!_global.zoomdesk) {
if (!_global.draweropen) {
this.gotoAndStop(2);
_global.draweropen = true;
} else {
this.gotoAndStop(1);
_global.draweropen = false;
}
}
};
MainGame_mc.r1_mc.desk_mc.clicklock2.onPress = function () {
MainGame_mc.r1_mc.foodcontainer_mc._visible = false;
MainGame_mc.r1_mc.r1bg_mc._visible = false;
MainGame_mc.r1_mc.Clock._visible = false;
MainGame_mc.r1_mc.desk_mc._rotation = -90;
MainGame_mc.r1_mc.desk_mc._x = -1900;
MainGame_mc.r1_mc.desk_mc._y = 1000;
MainGame_mc.r1_mc.desk_mc._xscale = 2000;
MainGame_mc.r1_mc.desk_mc._yscale = 2000;
MainGame_mc.r1_mc.key_mc._visible = false;
Inventory_mc.about.text = "a lock...but what's the code???";
_global.zoomlock = true;
this._visible = false;
_global.room1 = false;
};
MainGame_mc.r1_mc.desk_mc.lettersmall.onPress = letterZoomer;
Instance of Symbol 70 MovieClip [button] "button" in Frame 6
on (press) {
_root.backgroundmusic.stop();
stopped = true;
playing = false;
this._visible = false;
_parent.musicstop._visible = true;
}
Instance of Symbol 68 MovieClip [musicstop] "musicstop" in Frame 6
on (press) {
_root.backgroundmusic.start(0, 999);
stopped = false;
playing = true;
this._visible = false;
_parent.button._visible = true;
}
Symbol 19 MovieClip [creditcard] Frame 1
stop();
Symbol 39 MovieClip [note] Frame 1
stop();
note.useHandCursor = false;
Instance of Symbol 39 MovieClip [note] "note" in Symbol 41 MovieClip [heatershut] Frame 1
on (press) {
this.unloadMovie();
_global.notefound = true;
_parent._parent._parent._parent.Inventory_mc.Item4_mc.attachMovie("note", "note_mc", _parent._parent._parent._parent.Inventory_mc.Item4_mc.getNextHighestDepth());
_parent._parent._parent._parent.Inventory_mc.Item4_mc.note_mc._height = 40;
_parent._parent._parent._parent.Inventory_mc.Item4_mc.note_mc._width = 40;
_parent._parent._parent._parent.Inventory_mc.Item4_mc.note_mc.onPress = _root.clickNote;
}
Instance of Symbol 53 MovieClip "rhit" in Symbol 54 MovieClip [redglass] Frame 1
onClipEvent (enterFrame) {
this._visible = false;
}
Instance of Symbol 57 MovieClip "hit" in Symbol 58 MovieClip [greenglass] Frame 1
onClipEvent (enterFrame) {
this._visible = false;
}
Symbol 61 MovieClip [sunglasses] Frame 1
stop();
Symbol 61 MovieClip [sunglasses] Frame 2
stop();
this._parent._parent._parent.mouse_mc._visible = false;
Symbol 62 MovieClip [Item9] Frame 1
stop();
Instance of Symbol 61 MovieClip [sunglasses] "sunglasses_mc" in Symbol 62 MovieClip [Item9] Frame 1
on (press) {
this._parent._parent._parent.mouse_mc._visible = false;
this._parent.gotoAndStop(2);
}
Symbol 62 MovieClip [Item9] Frame 2
stop();
this._parent._parent.mouse_mc._visible = false;
this.sglasses.startDrag(true);
Instance of Symbol 59 MovieClip [sglasses] "sglasses" in Symbol 62 MovieClip [Item9] Frame 2
on (press) {
this.stopDrag();
this._parent._parent._parent.mouse_mc._visible = true;
this._parent._parent._parent.mouse_mc.startDrag(true);
this._parent.gotoAndStop(1);
}
Symbol 80 MovieClip [wallet] Frame 1
stop();
Symbol 80 MovieClip [wallet] Frame 2
this.creditcard.onPress = function () {
trace("yes");
};
Symbol 80 MovieClip [wallet] Frame 12
stop();
Instance of Symbol 83 MovieClip [goRight] in Symbol 84 MovieClip [lockbox] Frame 1
on (press) {
this._parent._parent._parent._y = _global.mainy;
this._parent._parent._parent._parent.Inventory_mc.about.text = "";
}
Symbol 93 MovieClip [finalkey] Frame 1
stop();
Symbol 93 MovieClip [finalkey] Frame 18
stop();
_global.gamedone = true;
_root.backgroundmusic.stop();
_root.gameover.play();
_root.MainGame_mc.enabled = false;
Symbol 95 MovieClip Frame 1
stop();
Symbol 95 MovieClip Frame 25
stop();
Instance of Symbol 93 MovieClip [finalkey] "finalkey" in Symbol 95 MovieClip Frame 25
on (press) {
this.unloadMovie();
_root.gamenoise.attachSound("itempick");
_root.gamenoise.start(0, 0);
_root.cfinalkey();
_global.foundAllClues = true;
}
Symbol 98 Button
on (press) {
this.compoff._visible = false;
_root.gamenoise.attachSound("compon");
_root.gamenoise.start(0, 0);
}
Symbol 110 MovieClip Frame 1
stop();
Symbol 110 MovieClip Frame 39
this._visible = false;
this._parent.computertexts.comptext.text = "";
Symbol 113 MovieClip [computer] Frame 1
stop();
Instance of Symbol 88 MovieClip [compscreen] "compscreen" in Symbol 113 MovieClip [computer] Frame 1
on (press) {
if ((!_global.compzoom) && (!_global.zoomletter)) {
_global.compzoom = true;
this._parent._parent._xscale = 430;
this._parent._parent._x = 140;
this._parent._parent._yscale = 430;
this._parent._parent._parent.Clock._visible = false;
this._parent.computertexts._visible = true;
this._parent.compbutton._visible = true;
this._parent._parent._parent.foodcontainer_mc._visible = false;
}
}
Instance of Symbol 102 MovieClip "compbutton" in Symbol 113 MovieClip [computer] Frame 1
on (release, keyPress "<Enter>") {
if (this._parent.computertexts.comptext.text == "rosebud") {
if (!_global.keyboxplayed) {
this._parent.keybox.play();
_root.gamenoise.attachSound("keyfind");
_root.gamenoise.start(0, 0);
this._parent.computertexts.comptext.text = "";
_global.keyboxplayed = true;
}
} else {
this._parent.errorcode._visible = true;
this._parent.errorcode.play();
_root.gamenoise.attachSound("wrongcode");
_root.gamenoise.start(0, 0);
}
}
onClipEvent (load) {
this._visible = false;
}
Instance of Symbol 106 MovieClip "computertexts" in Symbol 113 MovieClip [computer] Frame 1
onClipEvent (load) {
this._visible = false;
}
Instance of Symbol 110 MovieClip "errorcode" in Symbol 113 MovieClip [computer] Frame 1
onClipEvent (load) {
this._visible = false;
}
Instance of Symbol 83 MovieClip [goRight] in Symbol 113 MovieClip [computer] Frame 1
on (press) {
if (!_global.zoomletter) {
_global.compzoom = false;
this._parent._parent._xscale = 100;
this._parent._parent._x = _global.deskx;
this._parent._parent._yscale = 100;
this._parent._parent._parent.Clock._visible = true;
this._parent.computertexts._visible = false;
this._parent.compbutton._visible = false;
this._parent._parent._parent.foodcontainer_mc._visible = true;
this._parent._parent._parent._parent._parent.Inventory_mc.about.text = "";
this._parent._parent._parent._parent._parent.mouse_mc.gotoAndStop(1);
}
}
onClipEvent (enterFrame) {
if (!_global.compzoom) {
this._visible = false;
} else {
this._visible = true;
}
}
on (rollOver) {
this._parent._parent._parent._parent._parent.mouse_mc.gotoAndStop(2);
}
on (rollOut) {
this._parent._parent._parent._parent._parent.mouse_mc.gotoAndStop(1);
}
Symbol 132 MovieClip [numbers2] Frame 5
stop();
_global.column2 = 1;
this._parent._parent._parent._parent._parent.checkCode();
Symbol 132 MovieClip [numbers2] Frame 9
stop();
_global.column2 = 2;
this._parent._parent._parent._parent._parent.checkCode();
Symbol 132 MovieClip [numbers2] Frame 14
stop();
_global.column2 = 3;
this._parent._parent._parent._parent._parent.checkCode();
Symbol 132 MovieClip [numbers2] Frame 19
stop();
_global.column2 = 4;
this._parent._parent._parent._parent._parent.checkCode();
Symbol 132 MovieClip [numbers2] Frame 24
stop();
_global.column2 = 5;
this._parent._parent._parent._parent._parent.checkCode();
Symbol 132 MovieClip [numbers2] Frame 29
stop();
_global.column2 = 6;
this._parent._parent._parent._parent._parent.checkCode();
Symbol 132 MovieClip [numbers2] Frame 34
stop();
_global.column2 = 7;
this._parent._parent.checkCode();
Symbol 132 MovieClip [numbers2] Frame 39
stop();
_global.column2 = 8;
this._parent._parent._parent._parent._parent.checkCode();
Symbol 132 MovieClip [numbers2] Frame 44
stop();
_global.column2 = 9;
this._parent._parent._parent._parent._parent.checkCode();
Symbol 132 MovieClip [numbers2] Frame 49
stop();
_global.column2 = 0;
this._parent._parent._parent._parent._parent.checkCode();
Symbol 133 MovieClip [numbers4] Frame 5
stop();
_global.column4 = 1;
this._parent._parent._parent._parent._parent.checkCode();
Symbol 133 MovieClip [numbers4] Frame 9
stop();
_global.column4 = 2;
this._parent._parent._parent._parent._parent.checkCode();
Symbol 133 MovieClip [numbers4] Frame 14
stop();
_global.column4 = 3;
this._parent._parent._parent._parent._parent.checkCode();
Symbol 133 MovieClip [numbers4] Frame 19
stop();
_global.column4 = 4;
this._parent._parent._parent._parent._parent.checkCode();
Symbol 133 MovieClip [numbers4] Frame 24
stop();
_global.column4 = 5;
this._parent._parent._parent._parent._parent.checkCode();
Symbol 133 MovieClip [numbers4] Frame 29
stop();
_global.column4 = 6;
this._parent._parent._parent._parent._parent.checkCode();
Symbol 133 MovieClip [numbers4] Frame 34
stop();
_global.column4 = 7;
this._parent._parent._parent._parent._parent.checkCode();
Symbol 133 MovieClip [numbers4] Frame 39
stop();
_global.column4 = 8;
this._parent._parent._parent._parent._parent.checkCode();
Symbol 133 MovieClip [numbers4] Frame 44
stop();
_global.column4 = 9;
this._parent._parent._parent._parent._parent.checkCode();
Symbol 133 MovieClip [numbers4] Frame 49
stop();
_global.column4 = 0;
this._parent._parent._parent._parent._parent.checkCode();
Symbol 134 MovieClip [numbers3] Frame 5
stop();
_global.column3 = 1;
this._parent._parent._parent._parent._parent.checkCode();
Symbol 134 MovieClip [numbers3] Frame 9
stop();
_global.column3 = 2;
this._parent._parent._parent._parent._parent.checkCode();
Symbol 134 MovieClip [numbers3] Frame 14
stop();
_global.column3 = 3;
this._parent._parent._parent._parent._parent.checkCode();
Symbol 134 MovieClip [numbers3] Frame 19
stop();
_global.column3 = 4;
this._parent._parent._parent._parent._parent.checkCode();
Symbol 134 MovieClip [numbers3] Frame 24
stop();
_global.column3 = 5;
this._parent._parent._parent._parent._parent.checkCode();
Symbol 134 MovieClip [numbers3] Frame 29
stop();
_global.column3 = 6;
this._parent._parent._parent._parent._parent.checkCode();
Symbol 134 MovieClip [numbers3] Frame 34
stop();
_global.column3 = 7;
this._parent._parent._parent._parent._parent.checkCode();
Symbol 134 MovieClip [numbers3] Frame 39
stop();
_global.column3 = 8;
this._parent._parent._parent._parent._parent.checkCode();
Symbol 134 MovieClip [numbers3] Frame 44
stop();
_global.column3 = 9;
this._parent._parent._parent._parent._parent.checkCode();
Symbol 134 MovieClip [numbers3] Frame 49
stop();
_global.column3 = 0;
this._parent._parent._parent._parent._parent.checkCode();
Symbol 135 MovieClip [number1] Frame 5
stop();
_global.column1 = 1;
this._parent._parent._parent._parent._parent.checkCode();
Symbol 135 MovieClip [number1] Frame 9
stop();
_global.column1 = 2;
this._parent._parent._parent._parent._parent.checkCode();
Symbol 135 MovieClip [number1] Frame 14
stop();
_global.column1 = 3;
this._parent._parent._parent._parent._parent.checkCode();
Symbol 135 MovieClip [number1] Frame 19
stop();
_global.column1 = 4;
this._parent._parent._parent._parent._parent.checkCode();
Symbol 135 MovieClip [number1] Frame 24
stop();
_global.column1 = 5;
this._parent._parent._parent._parent._parent.checkCode();
Symbol 135 MovieClip [number1] Frame 29
stop();
_global.column1 = 6;
this._parent._parent._parent._parent._parent.checkCode();
Symbol 135 MovieClip [number1] Frame 34
stop();
_global.column1 = 7;
this._parent._parent._parent._parent._parent.checkCode();
Symbol 135 MovieClip [number1] Frame 39
stop();
_global.column1 = 8;
this._parent._parent._parent._parent._parent.checkCode();
Symbol 135 MovieClip [number1] Frame 44
stop();
_global.column1 = 9;
this._parent._parent._parent._parent._parent.checkCode();
Symbol 135 MovieClip [number1] Frame 49
stop();
_global.column1 = 0;
this._parent._parent._parent._parent._parent.checkCode();
Symbol 137 MovieClip [lock] Frame 1
clicker = new Sound();
clicker.attachSound("click");
Instance of Symbol 135 MovieClip [number1] "numbers1" in Symbol 137 MovieClip [lock] Frame 1
on (press) {
if (_global.zoomlock) {
_parent.clicker.start();
this.play();
}
}
Instance of Symbol 134 MovieClip [numbers3] "numbers3" in Symbol 137 MovieClip [lock] Frame 1
on (press) {
if (_global.zoomlock) {
this.play();
_parent.clicker.start();
}
}
Instance of Symbol 133 MovieClip [numbers4] "numbers4" in Symbol 137 MovieClip [lock] Frame 1
on (press) {
if (_global.zoomlock) {
this.play();
_parent.clicker.start();
}
}
Instance of Symbol 132 MovieClip [numbers2] "numbers2" in Symbol 137 MovieClip [lock] Frame 1
on (press) {
if (_global.zoomlock) {
this.play();
_parent.clicker.start();
}
}
Instance of Symbol 141 MovieClip [lockboxitems] "lockboxitems" in Symbol 145 MovieClip [lockboxopen] Frame 1
on (press) {
this._parent._parent._parent._parent._y = 750;
}
Symbol 149 MovieClip [lockboxshut] Frame 1
stop();
Symbol 160 MovieClip [glueblob] Frame 1
stop();
Symbol 160 MovieClip [glueblob] Frame 40
stop();
Symbol 166 MovieClip [gunflame3] Frame 1
stop();
Symbol 166 MovieClip [gunflame3] Frame 6
stop();
Symbol 169 MovieClip [flame] Frame 1
stop();
Symbol 169 MovieClip [flame] Frame 5
stop();
Symbol 170 MovieClip [guntip] Frame 1
stop();
Instance of Symbol 169 MovieClip [flame] "flame" in Symbol 170 MovieClip [guntip] Frame 1
onClipEvent (load) {
if (this.hitTest(this._parent._parent._parent.blob)) {
trace("yes");
}
}
Instance of Symbol 83 MovieClip [goRight] in Symbol 174 MovieClip [letter] Frame 1
on (press) {
_root.letteraway();
this._parent._parent._parent._parent._parent.Inventory_mc.about.text = "";
this._parent._parent._parent._parent._parent.mouse_mc.gotoAndStop(1);
}
on (rollOver) {
this._parent._parent._parent._parent._parent.mouse_mc.gotoAndStop(2);
}
onClipEvent (enterFrame) {
if (_global.zoomletter) {
_visible = true;
} else {
_visible = false;
}
}
on (rollOut) {
this._parent._parent._parent._parent._parent.mouse_mc.gotoAndStop(1);
}
Symbol 191 MovieClip Frame 1
stop();
Symbol 191 MovieClip Frame 2
stop();
Instance of Symbol 190 MovieClip "draweropen_mc" in Symbol 191 MovieClip Frame 2
on (release) {
trace("hocke");
}
Instance of Symbol 191 MovieClip "drawerclosed_mc" in Symbol 196 MovieClip Frame 1
/* no clip actions */
Instance of Symbol 139 MovieClip [book1] in Symbol 196 MovieClip Frame 1
on (press) {
this._parent._parent.foodcontainer_mc._visible = true;
this._parent._parent.r1bg_mc._visible = true;
this._parent._parent.desk_mc._xscale = 100;
this._parent._parent.desk_mc._yscale = 100;
this._parent._parent.desk_mc._x = _global.deskx;
this._parent._parent.desk_mc._y = _global.desky;
this._parent._parent.Clock._visible = true;
_global.zoombooks = false;
_global.room1 = true;
_global.key1 = false;
this._parent._parent._parent._parent.mouse_mc.gotoAndStop(1);
}
onClipEvent (enterFrame) {
if (_global.zoombooks) {
this._visible = true;
} else {
this._visible = false;
}
}
on (rollOver) {
this._parent._parent._parent._parent.mouse_mc.gotoAndStop(2);
}
on (rollOut) {
this._parent._parent._parent._parent.mouse_mc.gotoAndStop(1);
}
Instance of Symbol 115 MovieClip [key1] "key_mc" in Symbol 196 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_global.key1) {
_visible = true;
} else {
_visible = false;
}
}
on (press) {
this.unloadMovie();
_root.moveKey();
}
Instance of Symbol 83 MovieClip [goRight] in Symbol 196 MovieClip Frame 1
on (press) {
_root.clickaway();
this._parent._parent._parent._parent.Inventory_mc.about.text = "";
this._parent._parent._parent._parent.mouse_mc.gotoAndStop(1);
}
onClipEvent (enterFrame) {
if (!_global.zoomlock) {
this._visible = false;
} else {
this._visible = true;
}
}
on (rollOver) {
this._parent._parent._parent._parent.mouse_mc.gotoAndStop(2);
}
on (rollOut) {
this._parent._parent._parent._parent.mouse_mc.gotoAndStop(1);
}
Instance of Symbol 139 MovieClip [book1] "book1" in Symbol 196 MovieClip Frame 1
on (press) {
this._parent._parent.foodcontainer_mc._visible = false;
this._parent._parent.r1bg_mc._visible = false;
this._parent._parent.Clock._visible = false;
this._parent._parent.desk_mc._xscale = 500;
this._parent._parent.desk_mc._yscale = 500;
this._parent._parent.desk_mc._x = 250;
this._parent._parent.desk_mc._y = 650;
_global.key1 = true;
_global.zoombooks = true;
_global.room1 = false;
_parent._parent.key_mc._visible = true;
}
onClipEvent (enterFrame) {
if (_global.room1) {
this._visible = true;
} else {
this._visible = false;
}
}
Symbol 205 MovieClip Frame 1
stop();
Symbol 207 MovieClip Frame 1
stop();
Symbol 209 MovieClip Frame 1
stop();
Instance of Symbol 211 MovieClip "Clock" in Symbol 229 MovieClip [r1] Frame 1
onClipEvent (enterFrame) {
MyDate = new Date();
hour = MyDate.getHours();
minute = MyDate.getMinutes();
second = MyDate.getSeconds();
if (hour > 11) {
hour = hour - 12;
}
hour = hour * 5;
movement = minute / 12;
hour = int(hour + movement);
with (this.Hours) {
gotoAndStop(hour) + 1;
}
with (this.Minutes) {
gotoAndStop(minute) + 1;
}
with (this.Seconds) {
gotoAndStop(second) + 1;
}
}
Instance of Symbol 83 MovieClip [goRight] in Symbol 229 MovieClip [r1] Frame 1
on (press) {
_root.room3();
_root.gamenoise.attachSound("changeroom");
_root.gamenoise.start(0, 0);
this._parent._parent._parent.mouse_mc._rotation = 0;
this._parent._parent._parent.Inventory_mc.about.text = "";
this._parent._parent._parent.mouse_mc.gotoAndStop(1);
}
on (rollOver) {
this._parent._parent._parent.mouse_mc._rotation = 90;
this._parent._parent._parent.mouse_mc.gotoAndStop(2);
}
on (rollOut) {
this._parent._parent._parent.mouse_mc._rotation = 0;
this._parent._parent._parent.mouse_mc.gotoAndStop(1);
}
onClipEvent (enterFrame) {
if (((_global.room1 && (!_global.zoombooks)) && (!_global.compzoom)) && (!_global.zoomlock)) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 214 MovieClip "code11" in Symbol 229 MovieClip [r1] Frame 1
onClipEvent (load) {
this._visible = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(this._parent._parent._parent.Inventory_mc.Item9_mc.sglasses.greenglass.hit) && (_global.darkness)) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 217 MovieClip "code12" in Symbol 229 MovieClip [r1] Frame 1
onClipEvent (load) {
this._visible = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(this._parent._parent._parent.Inventory_mc.Item9_mc.sglasses.redglass.rhit) && (_global.darkness)) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 219 MovieClip in Symbol 229 MovieClip [r1] Frame 1
onClipEvent (load) {
this._visible = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(this._parent._parent._parent.Inventory_mc.Item9_mc.sglasses.greenglass.hit) && (_global.darkness)) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 221 MovieClip in Symbol 229 MovieClip [r1] Frame 1
onClipEvent (load) {
this._visible = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(this._parent._parent._parent.Inventory_mc.Item9_mc.sglasses.redglass.rhit) && (_global.darkness)) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 224 MovieClip in Symbol 229 MovieClip [r1] Frame 1
onClipEvent (load) {
this._visible = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(this._parent._parent._parent.Inventory_mc.Item9_mc.sglasses.redglass.rhit) && (_global.darkness)) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 226 MovieClip in Symbol 229 MovieClip [r1] Frame 1
onClipEvent (load) {
this._visible = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(this._parent._parent._parent.Inventory_mc.Item9_mc.sglasses.greenglass.hit) && (_global.darkness)) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 228 MovieClip in Symbol 229 MovieClip [r1] Frame 1
onClipEvent (load) {
this._visible = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(this._parent._parent._parent.Inventory_mc.Item9_mc.sglasses.redglass.rhit) && (_global.darkness)) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 83 MovieClip [goRight] in Symbol 229 MovieClip [r1] Frame 1
on (press) {
_root.room2();
_root.gamenoise.attachSound("changeroom");
_root.gamenoise.start(0, 0);
this._parent._parent._parent.mouse_mc._rotation = 0;
this._parent._parent._parent.Inventory_mc.about.text = "";
this._parent._parent._parent.mouse_mc.gotoAndStop(1);
}
onClipEvent (enterFrame) {
if (((_global.room1 && (!_global.zoombooks)) && (!_global.compzoom)) && (!_global.zoomlock)) {
this._visible = true;
} else {
this._visible = false;
}
}
on (rollOver) {
this._parent._parent._parent.mouse_mc._rotation = -90;
this._parent._parent._parent.mouse_mc.gotoAndStop(2);
}
on (rollOut) {
this._parent._parent._parent.mouse_mc._rotation = 0;
this._parent._parent._parent.mouse_mc.gotoAndStop(1);
}
Symbol 236 MovieClip [box2] Frame 1
stop();
_global.boxdropped = true;
Instance of Symbol 232 MovieClip [boxlock] "boxlock" in Symbol 236 MovieClip [box2] Frame 1
on (press) {
if (!_global.mouseKey) {
this._parent._parent._parent._parent.Inventory_mc.about.text = "hmm it's locked...";
}
}
Symbol 236 MovieClip [box2] Frame 2
stop();
Instance of Symbol 235 MovieClip [pickglasses] "pickglasses" in Symbol 236 MovieClip [box2] Frame 2
on (press) {
_root.gamenoise.attachSound("itempick");
_root.gamenoise.start(0, 0);
this.unloadMovie();
this._parent._parent._parent._parent.Inventory_mc.Item9_mc.sunglasses_mc._visible = true;
this._parent._parent._parent._parent.Inventory_mc.about.text = "a pair of weird glasses...";
}
Symbol 238 MovieClip [box] Frame 1
stop();
_global.boxdropped = true;
Symbol 238 MovieClip [box] Frame 2
stop();
Instance of Symbol 235 MovieClip [pickglasses] "pickglasses" in Symbol 238 MovieClip [box] Frame 2
on (press) {
this.unloadMovie();
_root.createGlasses();
}
Symbol 243 MovieClip [switch] Frame 1
stop();
Symbol 247 MovieClip [doorknob] Frame 1
stop();
Symbol 250 MovieClip [shade] Frame 1
stop();
Symbol 259 MovieClip [heater] Frame 1
stop();
Instance of Symbol 254 MovieClip [screw] "screw" in Symbol 259 MovieClip [heater] Frame 1
on (press) {
if (_global.zoomscrew) {
this._parent._parent._parent._parent.Inventory_mc.about.text = "i think i need a screwdriver..";
}
}
Symbol 259 MovieClip [heater] Frame 2
stop();
Instance of Symbol 39 MovieClip [note] "note" in Symbol 259 MovieClip [heater] Frame 2
on (press) {
_root.gamenoise.attachSound("itempick");
_root.gamenoise.start(0, 0);
this.unloadMovie();
this._parent._parent._parent._parent.Inventory_mc.Item4_mc.attachMovie("note", "note", this._parent._parent._parent.Inventory_mc.Item4_mc.getNextHighestDepth());
this._parent._parent._parent._parent.Inventory_mc.Item4_mc.note._xscale = 400;
this._parent._parent._parent._parent.Inventory_mc.Item4_mc.note._yscale = 400;
this._parent._parent._parent._parent.Inventory_mc.Item4_mc.note.onPress = function () {
_root.clickNote();
};
this._parent._parent._parent._parent.Inventory_mc.Item4_mc.note.onRollOver = function () {
this._parent._parent._parent._parent.Inventory_mc.about.text = " a computer science print out...";
};
this._parent._parent._parent._parent.Inventory_mc.Item4_mc.note.onRollOut = function () {
this._parent._parent._parent._parent.Inventory_mc.about.text = "";
};
}
Symbol 269 MovieClip [r2] Frame 1
stop();
Instance of Symbol 263 MovieClip "b1" in Symbol 269 MovieClip [r2] Frame 1
on (press) {
if (!_global.note) {
_parent._parent._yscale = 500;
_parent._parent._xscale = 500;
_parent._parent._y = -150;
_parent._parent._x = 300;
_global.zoomscrew = true;
}
}
onClipEvent (enterFrame) {
if (_global.zoomscrew) {
this._visible = false;
} else {
this._visible = true;
}
}
Instance of Symbol 250 MovieClip [shade] "shade" in Symbol 269 MovieClip [r2] Frame 1
on (press) {
if (!_global.decoderfound) {
_parent.attachMovie("decoder", "decoder_mc", _parent.getNextHighestDepth());
_parent.decoder_mc._x = -70;
_parent.decoder_mc._y = 120;
_parent.decoder_mc._height = 9;
_parent.decoder_mc._width = 20;
_parent.decoder_mc.onPress = _root.movedecoder;
this.gotoAndStop(2);
_global.decoderfound = true;
}
}
Instance of Symbol 83 MovieClip [goRight] in Symbol 269 MovieClip [r2] Frame 1
on (press) {
_parent._parent._yscale = 100;
_parent._parent._xscale = 100;
_parent._parent._y = _global.mainy;
_parent._parent._x = _global.mainx;
_global.zoomscrew = false;
}
onClipEvent (enterFrame) {
if (!_global.zoomscrew) {
this._visible = false;
} else {
this._visible = true;
}
}
Instance of Symbol 83 MovieClip [goRight] in Symbol 269 MovieClip [r2] Frame 1
on (press) {
_parent._parent._yscale = 100;
_parent._parent._xscale = 100;
_parent._parent._y = _global.mainy;
_parent._parent._x = _global.mainx;
_global.zoomscrew = false;
this._parent._parent._parent.Inventory_mc.about.text = "";
this._parent._parent._parent.mouse_mc.gotoAndStop(1);
}
onClipEvent (enterFrame) {
if (!_global.zoomscrew) {
this._visible = false;
} else {
this._visible = true;
}
}
on (rollOver) {
this._parent._parent._parent.mouse_mc.gotoAndStop(2);
}
on (rollOut) {
this._parent._parent._parent.mouse_mc.gotoAndStop(1);
}
Instance of Symbol 161 MovieClip [shaft] "shaft" in Symbol 269 MovieClip [r2] Frame 1
on (press) {
_root.stick();
_root.gamenoise.attachSound("itempick");
_root.gamenoise.start(0, 0);
}
Instance of Symbol 83 MovieClip [goRight] in Symbol 269 MovieClip [r2] Frame 1
on (press) {
_root.room1();
_root.gamenoise.attachSound("changeroom");
_root.gamenoise.start(0, 0);
this._parent._parent._parent.mouse_mc._rotation = 0;
this._parent._parent._parent.mouse_mc.gotoAndStop(1);
this._parent._parent._parent.Inventory_mc.about.text = "";
}
on (rollOver) {
this._parent._parent._parent.mouse_mc._rotation = -90;
this._parent._parent._parent.mouse_mc.gotoAndStop(2);
}
on (rollOut) {
this._parent._parent._parent.mouse_mc._rotation = 0;
this._parent._parent._parent.mouse_mc.gotoAndStop(1);
}
onClipEvent (enterFrame) {
if (_global.room3) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 83 MovieClip [goRight] in Symbol 269 MovieClip [r2] Frame 1
on (press) {
_root.room4();
_root.gamenoise.attachSound("changeroom");
_root.gamenoise.start(0, 0);
this._parent._parent._parent.mouse_mc._rotation = 0;
this._parent._parent._parent.mouse_mc.gotoAndStop(1);
this._parent._parent._parent.Inventory_mc.about.text = "";
}
on (rollOver) {
this._parent._parent._parent.mouse_mc._rotation = 90;
this._parent._parent._parent.mouse_mc.gotoAndStop(2);
}
on (rollOut) {
this._parent._parent._parent.mouse_mc._rotation = 0;
this._parent._parent._parent.mouse_mc.gotoAndStop(1);
}
onClipEvent (enterFrame) {
if (_global.room3) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 171 MovieClip [heatgun] "heatgun" in Symbol 277 MovieClip Frame 1
on (press) {
if (_global.shirtpressed) {
_root.gamenoise.attachSound("itempick");
_root.gamenoise.start(0, 0);
this.unloadMovie();
this._parent._parent._parent._parent._parent.Inventory_mc.Item8_mc.attachMovie("heatgun", "heatgun", this._parent._parent._parent._parent._parent.Inventory_mc.Item8_mc.getNextHighestDepth());
this._parent._parent._parent._parent._parent.Inventory_mc.Item8_mc.heatgun._xscale = 50;
this._parent._parent._parent._parent._parent.Inventory_mc.Item8_mc.heatgun._yscale = 50;
_root.cheatgun();
}
}
Instance of Symbol 83 MovieClip [goRight] in Symbol 277 MovieClip Frame 1
on (press) {
this._parent.heatgun._alpha = 100;
_global.shirtpressed = true;
}
onClipEvent (enterFrame) {
if (_global.room2) {
this._visible = true;
_alpha = 0;
} else {
_visible = false;
}
}
Instance of Symbol 279 MovieClip "wallLockerClosed" in Symbol 280 MovieClip Frame 1
on (press) {
if (_global.wallLockerOpen) {
this._x = 37;
_global.wallLockerOpen = false;
} else {
this._x = 110;
_global.wallLockerOpen = true;
}
}
Symbol 283 MovieClip Frame 1
_global.wallLockerOpen = false;
Instance of Symbol 247 MovieClip [doorknob] "doorknob" in Symbol 283 MovieClip Frame 1
on (press) {
if (!_global.foundAllClues) {
this._parent._parent._parent.Inventory_mc.about.text = "Locked...game would be too easy...Find Clues!";
_root.gamenoise.attachSound("doorlock");
_root.gamenoise.start(0, 0);
} else {
_global.zoomdoor = true;
this._parent._xscale = 300;
this._parent._x = -1250;
this._parent._yscale = 300;
this.gotoAndStop(2);
}
}
Instance of Symbol 273 MovieClip "wallswitch" in Symbol 283 MovieClip Frame 1
on (press) {
_root.gamenoise.attachSound("lightson");
_root.gamenoise.start(0, 0);
if (!_global.darkness) {
this._parent._parent._parent.darnkess_mc._visible = true;
_global.darkness = true;
this._parent.lightswitch.gotoAndStop(2);
} else {
this._parent._parent._parent.darnkess_mc._visible = false;
_global.darkness = false;
this._parent.gotoAndStop(1);
}
}
Instance of Symbol 238 MovieClip [box] "box" in Symbol 283 MovieClip Frame 1
on (press) {
this._parent._parent._parent.Inventory_mc.about.text = "too high to reach...";
}
Instance of Symbol 83 MovieClip [goRight] in Symbol 283 MovieClip Frame 1
on (press) {
_root.room1();
_root.gamenoise.attachSound("changeroom");
_root.gamenoise.start(0, 0);
this._parent._parent._parent.mouse_mc._rotation = 0;
this._parent._parent._parent.Inventory_mc.about.text = "";
this._parent._parent._parent.mouse_mc.gotoAndStop(1);
}
on (rollOver) {
this._parent._parent._parent.mouse_mc._rotation = 90;
this._parent._parent._parent.mouse_mc.gotoAndStop(2);
}
on (rollOut) {
this._parent._parent._parent.mouse_mc._rotation = 0;
this._parent._parent._parent.mouse_mc.gotoAndStop(1);
}
onClipEvent (enterFrame) {
if (_global.room2) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 83 MovieClip [goRight] in Symbol 283 MovieClip Frame 1
on (press) {
_root.room4();
_root.gamenoise.attachSound("changeroom");
_root.gamenoise.start(0, 0);
this._parent._parent._parent.mouse_mc._rotation = 0;
this._parent._parent._parent.mouse_mc.gotoAndStop(1);
this._parent._parent._parent.Inventory_mc.about.text = "";
}
on (rollOver) {
this._parent._parent._parent.mouse_mc._rotation = -90;
this._parent._parent._parent.mouse_mc.gotoAndStop(2);
}
on (rollOut) {
this._parent._parent._parent.mouse_mc._rotation = 0;
this._parent._parent._parent.mouse_mc.gotoAndStop(1);
}
onClipEvent (enterFrame) {
if (_global.room2) {
this._visible = true;
} else {
this._visible = false;
}
}
Symbol 293 MovieClip [floor4] Frame 1
stop();
Instance of Symbol 288 MovieClip [movefloor] "movefloor" in Symbol 293 MovieClip [floor4] Frame 1
on (press) {
if (_global.zoomfloor && (!_global.screwdriverFound)) {
_parent.gotoAndPlay(2);
}
}
onClipEvent (load) {
_alpha = 0;
}
Symbol 293 MovieClip [floor4] Frame 2
stop();
Instance of Symbol 291 MovieClip [screwdriver] "screwdriver" in Symbol 293 MovieClip [floor4] Frame 2
on (press) {
_root.create();
_root.gamenoise.attachSound("itempick");
_root.gamenoise.start(0, 0);
}
Symbol 305 Button
on (release) {
_root.gamenoise.attachSound("codemusic");
_root.gamenoise.start(0, 0);
if (!_global.posterClick) {
}
if (_global.safeNumbers == "ERROR") {
_global.safeNumbers = "";
this.safeNumbers.text = "";
}
if (_global.safeNumbers.length < 12) {
this.safeNumbers.text = _global.safeNumbers + "1";
_global.safeNumbers = this.safeNumbers.text;
}
}
Symbol 307 Button
on (release) {
_root.gamenoise.attachSound("codemusic");
_root.gamenoise.start(0, 0);
if (_global.safeNumbers == "ERROR") {
_global.safeNumbers = "";
this.safeNumbers.text = "";
}
if (_global.safeNumbers.length < 12) {
this.safeNumbers.text = _global.safeNumbers + "2";
_global.safeNumbers = this.safeNumbers.text;
}
}
Symbol 309 Button
on (release) {
_root.gamenoise.attachSound("codemusic");
_root.gamenoise.start(0, 0);
if (_global.safeNumbers == "ERROR") {
_global.safeNumbers = "";
this.safeNumbers.text = "";
}
if (_global.safeNumbers.length < 12) {
this.safeNumbers.text = _global.safeNumbers + "3";
_global.safeNumbers = this.safeNumbers.text;
}
}
Symbol 311 Button
on (release) {
_root.gamenoise.attachSound("codemusic");
_root.gamenoise.start(0, 0);
if (_global.safeNumbers == "ERROR") {
_global.safeNumbers = "";
this.safeNumbers.text = "";
}
if (_global.safeNumbers.length < 12) {
this.safeNumbers.text = _global.safeNumbers + "4";
_global.safeNumbers = this.safeNumbers.text;
}
}
Symbol 313 Button
on (release) {
_root.gamenoise.attachSound("codemusic");
_root.gamenoise.start(0, 0);
if (_global.safeNumbers == "ERROR") {
_global.safeNumbers = "";
this.safeNumbers.text = "";
}
if (_global.safeNumbers.length < 12) {
this.safeNumbers.text = _global.safeNumbers + "5";
_global.safeNumbers = this.safeNumbers.text;
}
}
Symbol 315 Button
on (release) {
_root.gamenoise.attachSound("codemusic");
_root.gamenoise.start(0, 0);
if (_global.safeNumbers == "ERROR") {
_global.safeNumbers = "";
this.safeNumbers.text = "";
}
if (_global.safeNumbers.length < 12) {
this.safeNumbers.text = _global.safeNumbers + "6";
_global.safeNumbers = this.safeNumbers.text;
}
}
Symbol 317 Button
on (release) {
_root.gamenoise.attachSound("codemusic");
_root.gamenoise.start(0, 0);
if (_global.safeNumbers == "ERROR") {
_global.safeNumbers = "";
this.safeNumbers.text = "";
}
if (_global.safeNumbers.length < 12) {
this.safeNumbers.text = _global.safeNumbers + "7";
_global.safeNumbers = this.safeNumbers.text;
}
}
Symbol 319 Button
on (release) {
_root.gamenoise.attachSound("codemusic");
_root.gamenoise.start(0, 0);
if (_global.safeNumbers == "ERROR") {
_global.safeNumbers = "";
this.safeNumbers.text = "";
}
if (_global.safeNumbers.length < 12) {
this.safeNumbers.text = _global.safeNumbers + "0";
_global.safeNumbers = this.safeNumbers.text;
}
}
Symbol 321 Button
on (release) {
_root.gamenoise.attachSound("codemusic");
_root.gamenoise.start(0, 0);
if (_global.safeNumbers == "ERROR") {
_global.safeNumbers = "";
this.safeNumbers.text = "";
}
if (_global.safeNumbers.length < 12) {
this.safeNumbers.text = _global.safeNumbers + "8";
_global.safeNumbers = this.safeNumbers.text;
}
}
Symbol 323 Button
on (release) {
_root.gamenoise.attachSound("codemusic");
_root.gamenoise.start(0, 0);
if (_global.safeNumbers == "ERROR") {
_global.safeNumbers = "";
this.safeNumbers.text = "";
}
if (_global.safeNumbers.length < 12) {
this.safeNumbers.text = _global.safeNumbers + "9";
_global.safeNumbers = this.safeNumbers.text;
}
}
Symbol 327 Button
on (press) {
_root.gamenoise.attachSound("codemusic");
_root.gamenoise.start(0, 0);
_root.checkSafe();
}
Symbol 330 MovieClip Frame 1
stop();
Symbol 330 MovieClip Frame 7
stop();
_parent.gotoAndPlay(11);
Symbol 337 Button
on (release) {
if (_global.safeNumbers == "ERROR") {
_global.safeNumbers = "";
this.safeNumbers.text = "";
}
if (_global.safeNumbers.length < 12) {
_root.gamenoise.start(0, 0);
this.safeNumbers.text = _global.safeNumbers + "1";
_global.safeNumbers = this.safeNumbers.text;
}
}
Symbol 338 Button
on (release) {
_root.gamenoise.start(0, 0);
if (_global.safeNumbers == "ERROR") {
_global.safeNumbers = "";
this.safeNumbers.text = "";
}
if (_global.safeNumbers.length < 12) {
this.safeNumbers.text = _global.safeNumbers + "2";
_global.safeNumbers = this.safeNumbers.text;
}
}
Symbol 339 Button
on (release) {
_root.gamenoise.start(0, 0);
if (_global.safeNumbers == "ERROR") {
_global.safeNumbers = "";
this.safeNumbers.text = "";
}
if (_global.safeNumbers.length < 12) {
this.safeNumbers.text = _global.safeNumbers + "3";
_global.safeNumbers = this.safeNumbers.text;
}
}
Symbol 340 Button
on (release) {
_root.gamenoise.start(0, 0);
if (_global.safeNumbers == "ERROR") {
_global.safeNumbers = "";
this.safeNumbers.text = "";
}
if (_global.safeNumbers.length < 12) {
this.safeNumbers.text = _global.safeNumbers + "4";
_global.safeNumbers = this.safeNumbers.text;
}
}
Symbol 341 Button
on (release) {
_root.gamenoise.start(0, 0);
if (_global.safeNumbers == "ERROR") {
_global.safeNumbers = "";
this.safeNumbers.text = "";
}
if (_global.safeNumbers.length < 12) {
this.safeNumbers.text = _global.safeNumbers + "5";
_global.safeNumbers = this.safeNumbers.text;
}
}
Symbol 342 Button
on (release) {
_root.gamenoise.start(0, 0);
if (_global.safeNumbers == "ERROR") {
_global.safeNumbers = "";
this.safeNumbers.text = "";
}
if (_global.safeNumbers.length < 12) {
this.safeNumbers.text = _global.safeNumbers + "6";
_global.safeNumbers = this.safeNumbers.text;
}
}
Symbol 343 Button
on (release) {
_root.gamenoise.start(0, 0);
if (_global.safeNumbers == "ERROR") {
_global.safeNumbers = "";
this.safeNumbers.text = "";
}
if (_global.safeNumbers.length < 12) {
this.safeNumbers.text = _global.safeNumbers + "7";
_global.safeNumbers = this.safeNumbers.text;
}
}
Symbol 344 Button
on (release) {
if (_global.safeNumbers == "ERROR") {
_global.safeNumbers = "";
this.safeNumbers.text = "";
}
if (_global.safeNumbers.length < 12) {
_root.gamenoise.start(0, 0);
this.safeNumbers.text = _global.safeNumbers + "0";
_global.safeNumbers = this.safeNumbers.text;
}
}
Symbol 345 Button
on (release) {
_root.gamenoise.start(0, 0);
if (_global.safeNumbers == "ERROR") {
_global.safeNumbers = "";
this.safeNumbers.text = "";
}
if (_global.safeNumbers.length < 12) {
this.safeNumbers.text = _global.safeNumbers + "8";
_global.safeNumbers = this.safeNumbers.text;
}
}
Symbol 346 Button
on (release) {
_root.gamenoise.start(0, 0);
if (_global.safeNumbers == "ERROR") {
_global.safeNumbers = "";
this.safeNumbers.text = "";
}
if (_global.safeNumbers.length < 12) {
this.safeNumbers.text = _global.safeNumbers + "9";
_global.safeNumbers = this.safeNumbers.text;
}
}
Symbol 347 Button
on (press) {
_root.gamenoise.start(0, 0);
_root.checkSafe();
}
Symbol 350 MovieClip [poster] Frame 1
stop();
Instance of Symbol 301 MovieClip "zoomsafe" in Symbol 350 MovieClip [poster] Frame 1
/* no clip actions */
Instance of Symbol 334 MovieClip [zoomsafe] "zoomposter" in Symbol 350 MovieClip [poster] Frame 1
on (press) {
_global.posterClick = true;
this._parent.gotoAndPlay(2);
this._parent._parent._parent.Inventory_mc.about.text = "a safe...";
}
onClipEvent (enterFrame) {
if (_global.posterClick) {
this._visible = false;
} else {
this._visible = true;
}
}
Instance of Symbol 83 MovieClip [goRight] in Symbol 350 MovieClip [poster] Frame 1
on (press) {
_parent._parent._parent._yscale = 100;
_parent._parent._parent._xscale = 100;
_parent._parent._parent._y = _global.mainy;
_parent._parent._parent._x = _global.mainx;
_global.zoomsafer = false;
this._parent._parent._parent._parent.mouse_mc.gotoAndStop(1);
this._parent._parent._parent._parent.Inventory_mc.about.text = "";
}
onClipEvent (enterFrame) {
if (_global.zoomsafer) {
this._visible = true;
} else {
this._visible = false;
}
}
on (rollOver) {
this._parent._parent._parent._parent.mouse_mc.gotoAndStop(2);
}
on (rollOut) {
this._parent._parent._parent._parent.mouse_mc.gotoAndStop(1);
}
Symbol 350 MovieClip [poster] Frame 5
stop();
_root.gamenoise.attachSound("codemusic");
Instance of Symbol 301 MovieClip "zoomsafe" in Symbol 350 MovieClip [poster] Frame 5
on (press) {
if (_global.posterClick) {
this.Inventory_mc.about.text = "a safe...";
_parent._parent._parent._yscale = 600;
_parent._parent._parent._xscale = 590;
_parent._parent._parent._y = 850;
_parent._parent._parent._x = -3190;
_global.zoomsafer = true;
_root.gamenoise.attachSound("codemusic");
}
}
Symbol 350 MovieClip [poster] Frame 11
stop();
Instance of Symbol 173 MovieClip [stickblade] "stickblade" in Symbol 350 MovieClip [poster] Frame 11
on (press) {
this.unloadMovie();
_root.gamenoise.attachSound("itempick");
_root.gamenoise.start(0, 0);
this._parent._parent._parent._parent.Inventory_mc.about.text = " a stick blade...";
this._parent._parent._parent._parent.Inventory_mc.Item7_mc.attachMovie("stickblade", "stickblade_mc", this._parent._parent._parent._parent.Inventory_mc.Item7_mc.getNextHighestDepth());
this._parent._parent._parent._parent.Inventory_mc.Item7_mc.stickblade_mc._xscale = 100;
this._parent._parent._parent._parent.Inventory_mc.Item7_mc.stickblade_mc._yscale = 100;
this._parent._parent._parent._parent.Inventory_mc.Item7_mc.stickblade_mc.onRollOver = function () {
this._parent._parent._parent._parent.Inventory_mc.about.text = "a stick blade...";
};
this._parent._parent._parent._parent.Inventory_mc.Item7_mc.stickblade_mc.onRollOut = function () {
this._parent._parent._parent._parent.Inventory_mc.about.text = "";
};
this._parent._parent._parent._parent.Inventory_mc.Item7_mc.stickblade_mc.onPress = function () {
_root.cstickblade();
};
}
Instance of Symbol 334 MovieClip [zoomsafe] "zoomposter" in Symbol 350 MovieClip [poster] Frame 11
on (press) {
_global.posterClick = true;
this._parent.gotoAndStop(2);
this._parent._parent._parent.Inventory_mc.about.text = "a safe...";
this.unloadMovie();
}
Instance of Symbol 83 MovieClip [goRight] in Symbol 350 MovieClip [poster] Frame 11
on (press) {
this._parent._parent._parent.Inventory_mc.about.text = "a safe...";
_parent._parent._parent._yscale = 100;
_parent._parent._parent._xscale = 100;
_parent._parent._parent._y = _global.mainy;
_parent._parent._parent._x = _global.mainx;
_global.zoomsafer = false;
}
Instance of Symbol 352 MovieClip [underbed] "underbed" in Symbol 353 MovieClip [r4] Frame 1
on (press) {
_parent._parent._xscale = 300;
_parent._parent._yscale = 300;
_parent._parent._x = -1200;
_parent._parent._y = -50;
_global.zoomfloor = true;
}
onClipEvent (enterFrame) {
if (_global.zoomfloor) {
this._visible = false;
} else {
this._visible = true;
}
}
Instance of Symbol 83 MovieClip [goRight] in Symbol 353 MovieClip [r4] Frame 1
on (press) {
_root.room3();
_root.gamenoise.attachSound("changeroom");
_root.gamenoise.start(0, 0);
this._parent._parent._parent.mouse_mc._rotation = 0;
this._parent._parent._parent.mouse_mc.gotoAndStop(1);
this._parent._parent._parent.Inventory_mc.about.text = "";
}
on (rollOver) {
this._parent._parent._parent.mouse_mc._rotation = -90;
this._parent._parent._parent.mouse_mc.gotoAndStop(2);
}
on (rollOut) {
this._parent._parent._parent.mouse_mc._rotation = 0;
this._parent._parent._parent.mouse_mc.gotoAndStop(1);
}
onClipEvent (enterFrame) {
if (((!_global.room4) || (_global.zoomsafer)) || (_global.zoomfloor)) {
this._visible = false;
} else {
this._visible = true;
}
}
Instance of Symbol 83 MovieClip [goRight] in Symbol 353 MovieClip [r4] Frame 1
on (press) {
_root.room2();
_root.gamenoise.attachSound("changeroom");
_root.gamenoise.start(0, 0);
this._parent._parent._parent.mouse_mc._rotation = 0;
this._parent._parent._parent.mouse_mc.gotoAndStop(1);
this._parent._parent._parent.Inventory_mc.about.text = "";
}
on (rollOver) {
this._parent._parent._parent.mouse_mc._rotation = 90;
this._parent._parent._parent.mouse_mc.gotoAndStop(2);
}
on (rollOut) {
this._parent._parent._parent.mouse_mc._rotation = 0;
this._parent._parent._parent.mouse_mc.gotoAndStop(1);
}
onClipEvent (enterFrame) {
if (_global.zoomsafer || (_global.zoomfloor)) {
this._visible = false;
} else {
this._visible = true;
}
}
Instance of Symbol 83 MovieClip [goRight] in Symbol 353 MovieClip [r4] Frame 1
on (press) {
_parent._parent._xscale = 100;
_parent._parent._yscale = 100;
_parent._parent._x = _global.mainx;
_parent._parent._y = _global.mainy;
_global.zoomfloor = false;
this._parent._parent._parent.Inventory_mc.about.text = "";
this._parent._parent._parent.mouse_mc.gotoAndStop(1);
}
onClipEvent (enterFrame) {
if (_global.zoomfloor) {
this._visible = true;
} else {
this._visible = false;
}
}
on (rollOver) {
this._parent._parent._parent.mouse_mc.gotoAndStop(2);
}
on (rollOut) {
this._parent._parent._parent.mouse_mc.gotoAndStop(1);
}
Symbol 362 MovieClip [messagea] Frame 220
stop();
_root.intromusic.stop();
_root.gotoAndStop("game");
Symbol 374 Button
on (release) {
_parent.play();
}
Symbol 389 Button
on (release) {
getURL ("http://www.addictinggames.com", _blank);
}
Symbol 390 MovieClip Frame 49
_parent.play();
Symbol 402 Button
on (press) {
_root.gotoAndStop("intro");
this.messagea.play();
}
Symbol 405 Button
on (press) {
_root.gotoAndStop("inst");
}
Symbol 412 MovieClip Frame 1
stop();
Symbol 422 Button
on (press) {
gotoAndStop ("menu");
}
Symbol 429 MovieClip Frame 1
stop();
Symbol 435 MovieClip Frame 1
stop();
Symbol 435 MovieClip Frame 17
_root.backgroundmusic.attachSound("finished");
_root.backgroundmusic.start(0, 999);
_root.backgrondmusic.setVolume(90);
Symbol 435 MovieClip Frame 83
stop();
Mouse.show();
_root.mouse_mc.stopDrag();
_root.mouse_mc._visible = false;