Frame 1
function showenter() {
gotoAndPlay (2);
}
stop();
Instance of Symbol 56 MovieClip in Frame 1
onClipEvent (load) {
this.state = 1;
}
onClipEvent (enterFrame) {
if ((getBytesTotal() == getBytesLoaded()) and (this.state == 1)) {
_root.showenter();
this.state = 0;
}
}
Frame 29
stop();
Frame 31
function EerieStart() {
if (eerie_done) {
stopAllSounds();
eerie_done = false;
eerie.start(0);
}
}
function EerieFin() {
eerie_done = true;
}
function InvInteract(index) {
if ((inv[InvSelected] == 10) and (inv[index] == 6)) {
inv[index] = 7;
} else {
bM("That doesn't work");
InvSelected = -1;
}
}
function InvSelect(index) {
if (InvSelected == index) {
InvSelected = -1;
} else if (InvSelected != -1) {
InvInteract(index);
} else {
InvSelected = index;
bM(Desc[Inv[index]]);
}
InvRefresh();
}
function InvRefresh() {
i = 0;
while (i < InvEmpty) {
if (inv[i] == 0) {
inv[i] = inv[i + 1];
inv[i + 1] = 0;
}
if ((inv[i] == 0) and (inv[i + 1] == 0)) {
InvEmpty = i;
}
i++;
}
counter = 0;
i = InvDisplay;
while (i <= (InvDisplay + 4)) {
_root.inventory.attachMovie("inv" + inv[i], "slot" + counter, counter);
_root.inventory["slot" + counter]._x = counter * 60;
_root.inventory["slot" + counter]._y = 0;
counter++;
i++;
}
i = 0;
while (i <= 4) {
thing = eval ("_root.inventory.slot" + i);
thing.box.light._visible = (i + InvDisplay) == InvSelected;
i++;
}
_root.inventory.left._visible = InvDisplay > 0;
_root.inventory.right._visible = (InvEmpty - InvDisplay) > 5;
_root.invbutton.pic.removeMovieClip();
_root.invbutton.dragpic.removeMovieClip();
if (InvSelected > -1) {
_root.invbutton.attachMovie("inv" + inv[InvSelected], "pic", 0);
_root.invbutton.pic._x = -3.8;
_root.invbutton.pic._y = 33.2;
_root.invbutton.pic.box.light._visible = false;
_root.invbutton.attachMovie("inv" + inv[InvSelected], "dragpic", 1);
_root.invbutton.dragpic.begindrag(true);
_root.invbutton.dragpic._x = _root.invbutton._xmouse;
_root.invbutton.dragpic._y = _root.invbutton._ymouse;
_root.invbutton.dragpic.box._visible = false;
}
}
function Take(index) {
bM(Desc[Index]);
inv[InvEmpty] = index;
InvSelected = InvEmpty;
InvEmpty++;
inv[InvEmpty] = 0;
InvRefresh();
}
function Drop(index) {
inv[index] = 0;
InvSelected = -1;
InvRefresh();
}
function bM(message) {
_root.text._visible = true;
_root.text.text.words.text = message;
_root.text.gotoAndPlay(2);
}
function bMx() {
_root.text._visible = false;
_root.text.text.words.text = "";
}
function M(message) {
_root.name._visible = true;
_root.name.words.text = message;
}
function Mx() {
_root.name._visible = false;
_root.name.words.text = "";
}
function Enter(door, button) {
switch (door.state) {
case 0 :
door.gotoAndPlay(2);
return;
case 1 :
button.dest();
return;
case 2 :
button.dest();
return;
case 3 :
bM("It's locked.");
return;
default :
bM("It's locked.");
}
}
eerie = new Sound();
eerie.attachSound("eeriemusic");
eerie.onSoundComplete = EerieFin;
eerie_done = true;
_root.lvl = 0;
inv = [];
inv[0] = 0;
Inv_x = 195;
Inv_y = 220;
InvEmpty = 0;
InvDisplay = 0;
InvSelected = -1;
i = 0;
while (i <= 5) {
inv[i] = 0;
i++;
}
desc = [];
desc[0] = "...";
desc[1] = "This towel is nice and absorbent.";
desc[2] = "This toilet paper so soft. And smooth too.";
desc[3] = "This is the master bedroom key.";
desc[4] = "These are good quality rubber gloves.";
desc[5] = "It looks like the key to a treasure chest";
desc[6] = "It's a candle that has been used before.";
desc[7] = "It doesn't give off much light but it'll have to do.";
desc[8] = "It's a shower faucet. The screw is still attached.";
desc[9] = "It's a handheld torchlight. There's a red fish sticker on it.";
desc[10] = "It's a box of matches.";
desc[11] = "It's the key the the dresser drawer.";
desc[12] = "It's a video tape. Nope, that doesn't ring a bell.";
MovieClip.prototype.beginDrag = function (target, lock, l, t, r, b) {
if (typeof(target) == "string") {
target = eval (target);
if (!target) {
trace("Warning: Invalid MovieClip for beginDrag. " + target);
return(undefined);
}
} else if (!(target instanceof MovieClip)) {
b = r;
r = t;
t = l;
l = lock;
lock = target;
target = this;
}
if (target.$dragMethod) {
target.endDrag();
}
target.$dragMethod = {MM:target.onMouseMove};
ASSetPropFlags(target, "$dragMethod", 1, 1);
target.addProperty("onMouseMove", arguments.callee.getMM, arguments.callee.setMM);
ASSetPropFlags(target, "onMouseMove", 3);
var constrain = (arguments.length > 1);
var off_x = 0;
var off_y = 0;
if (!lock) {
off_x = target._parent._xmouse - target._x;
off_y = target._parent._ymouse - target._y;
}
target.$dragMethod.drag = function () {
target._x = target._parent._xmouse - off_x;
target._y = target._parent._ymouse - off_y;
if (constrain) {
if (typeof(l) == "object") {
t = l.ymin;
r = l.xmax;
b = l.ymax;
l = l.xmin;
}
if (target._x < l) {
target._x = l;
} else if (target._x > r) {
target._x = r;
}
if (target._y < t) {
target._y = t;
} else if (target._y > b) {
target._y = b;
}
}
updateAfterEvent();
};
};
MovieClip.prototype.beginDrag.getMM = function () {
this.$dragMethod.drag();
return(this.$dragMethod.MM);
};
MovieClip.prototype.beginDrag.setMM = function (f) {
this.$dragMethod.MM = f;
};
MovieClip.prototype.endDrag = function (target) {
if (arguments.length) {
if (typeof(target) == "string") {
target = eval (target);
}
if (!target) {
trace("Warning: Invalid MovieClip for beginDrag. " + target);
return(undefined);
}
} else {
target = this;
}
ASSetPropFlags(target, "onMouseMove", 0, 3);
delete target.onMouseMove;
if (target.$dragMethod.MM) {
target.onMouseMove = target.$dragMethod.MM;
}
delete target.$dragMethod;
target.startDrag();
target.stopDrag();
};
Instance of Symbol 76 MovieClip "inventory" in Frame 31
onClipEvent (load) {
_root.InvRefresh();
}
Frame 32
function SkipIntro() {
_root.lvl = 1;
_root.password.password.text = "Enter_password";
_root.password._visible = false;
gotoAndPlay (41);
}
stop();
tape._visible = !tapetaken;
password._visible = false;
invbutton._visible = true;
door.state = 0;
if (_root.lvl == 0) {
invbutton._visible = false;
doorbell.gotoAndPlay(2);
tape._visible = false;
bM("There's someone at the door.");
}
Instance of Symbol 76 MovieClip "inventory" in Frame 32
onClipEvent (load) {
_root.InvRefresh();
}
Instance of Symbol 56 MovieClip in Frame 32
onClipEvent (enterFrame) {
if (_root.password.password.text == "skipintro") {
_root.skipintro();
}
if (_root.password.password.text == "i am a pervert") {
_root.bM("Yes, I think so too.");
}
}
Frame 41
if ((lvl1bedroom_Init == undefined) and (lvl == 1)) {
glovestaken = false;
torchtaken = false;
tapetaken = false;
lvl1bedroom_Init = true;
}
bM("What just happened? My mind is all foggy...");
tape._visible = !tapetaken;
password._visible = false;
Frame 91
gotoAndPlay (32);
Frame 92
stop();
doorbell.gotoAndPlay(2);
bM("I think I should go answer the door.");
Frame 93
function credits() {
gotoAndPlay (94);
}
stop();
hand._visible = false;
_root.black._visible = false;
bM("I wonder who it is...");
Instance of Symbol 56 MovieClip in Frame 93
onClipEvent (enterFrame) {
if (_root.door.state == 1) {
if (_root.gasping.played == undefined) {
_root.gasping.gotoAndPlay(2);
_root.gasping.played = true;
}
_root.hand._visible = true;
_root.hand._xscale = _root.hand._xscale * 1.5;
_root.hand._yscale = _root.hand._yscale * 1.5;
}
if (_root.hand._xscale > 4000) {
_root.credits();
}
}
Frame 94
_root.lvl = 1;
_root.EerieStart();
Frame 493
_root.lvl = 1;
gotoAndPlay (41);
Frame 494
if (lvl1stairsdark_Init == undefined) {
lvl1stairsdark_Init = true;
}
stop();
bM("It's suddenly so dark in here...");
mroomdoor.state = mroomdoor_state;
Instance of Symbol 76 MovieClip "inventory" in Frame 494
onClipEvent (load) {
_root.InvRefresh();
}
Frame 495
function Lvl1Sink_BackToOne() {
gotoAndPlay (500);
}
if (lvl1sink_Init == undefined) {
vistowel = true;
viskey = true;
vissoap = true;
showerstuck = true;
lvl1sink_Init = true;
}
stop();
bM("At least the toilet seems normal...");
towel._visible = vistowel;
mroomkey._visible = viskey;
soap._visible = vissoap;
soapdrop._visible = !vissoap;
Instance of Symbol 76 MovieClip "inventory" in Frame 495
onClipEvent (load) {
_root.InvRefresh();
}
Frame 499
stop();
Frame 500
_root.bM("Must be my eyes playing tricks on me...");
stop();
Instance of Symbol 76 MovieClip "inventory" in Frame 500
onClipEvent (load) {
_root.InvRefresh();
}
Frame 501
if (lvl1wc_Init == undefined) {
lvl1wc_Init = true;
vistpaper = true;
vistpaper2 = false;
vistrunkkey = true;
lvl1wc_flushed = false;
}
stop();
bM("The toilet bowl has been clogged since yesterday... Ugh!");
tpaper._visible = vistpaper;
tpaper2._visible = vistpaper2;
trunkkeyclicky._visible = vistrunkkey;
handclicky._visible = vistpaper2;
if (vistpaper2) {
handanim.gotoandplay(112);
}
_root.tbowl.cleanwater._visible = false;
_root.tbowl.dirtywater._visible = true;
if (lvl1wc_flushed) {
_root.tbowl.cleanwater._visible = true;
_root.tbowl.dirtywater._visible = false;
bM("The toilet bowl had been clogged since yesterday... but not anymore.");
}
Instance of Symbol 76 MovieClip "inventory" in Frame 501
onClipEvent (load) {
_root.InvRefresh();
}
Frame 502
function ShowerMonsterInit() {
monstercounter = 25;
monstermax = 27;
panic = 0;
monsterstart = true;
panicsign._visible = true;
}
function Die() {
gotoAndPlay (673);
}
function Lvl1Shower_BacktoOne() {
gotoAndPlay (502);
}
if (lvl1shower_Init == undefined) {
lvl1shower_Init = true;
monsterstart = false;
hairgone = false;
visfaucet = false;
}
handprint._visible = !showerstuck;
panicsign._visible = false;
ghosthand._visible = false;
hair._visible = !hairgone;
faucet._visible = !hairgone;
drainclicky._visible = hairgone;
faucetdrop._visible = visfaucet;
stop();
Instance of Symbol 76 MovieClip "inventory" in Frame 502
onClipEvent (load) {
_root.InvRefresh();
}
Instance of Symbol 39 MovieClip "monsterengine" in Frame 502
onClipEvent (enterFrame) {
if ((_root.monstercounter > _root.monstermax) and (!_root.blackanim.black)) {
_root.monstercounter = 0;
_root.monsterstart = false;
if (_root.panic > 10) {
_root.hairgone = true;
_root.visfaucet = true;
_root.Lvl1Shower_BacktoOne();
} else {
_root.die();
}
} else if (_root.monsterstart) {
if (_root.blackanim.black) {
_root.hair.gotoAndStop(_root.monstercounter);
_root.monstercounter++;
}
if (_root.blackanim.fin) {
_root.blackanim.gotoAndPlay(2);
}
}
}
Instance of Symbol 39 MovieClip "keyboard" in Frame 502
onClipEvent (keyUp) {
if (Key.getcode() == 32) {
_root.panic++;
}
}
Frame 503
if (hairgone) {
if (random(3) == 0) {
hair._visible = true;
hair.gotoAndStop(28);
autocloseshower = true;
} else {
hair.gotoAndPlay(0);
autocloseshower = false;
}
}
Frame 600
if (autocloseshower) {
eek.gotoAndPlay(2);
gotoAndPlay (502);
}
Frame 601
stop();
Mx();
if (hairgone) {
bM("It's empty.");
}
Frame 602
function TVScene() {
gotoAndPlay (603);
}
if (lvl1sink_Init == undefined) {
keyunderbed = false;
curtainsopen = false;
lvl1mbedroom_Init = true;
VCRopen = false;
}
stop();
if (curtainsopen) {
curtains.gotoAndPlay(2);
}
if (VCRopen) {
vcr.gotoAndPlay(2);
}
bM("I'm in the master bedroom.");
if (KeyUnderBed) {
bM("It disappeared.");
}
Instance of Symbol 56 MovieClip in Frame 602
onClipEvent (enterFrame) {
if (random(500) == 0) {
_root.tv.gotoAndPlay(2);
}
}
Instance of Symbol 76 MovieClip "inventory" in Frame 602
onClipEvent (load) {
_root.InvRefresh();
}
Frame 603
stop();
panicsign._visible = false;
vcr.gotoAndPlay(2);
if (curtainsopen) {
curtains.gotoAndPlay(2);
}
Instance of Symbol 39 MovieClip "keyboard" in Frame 603
onClipEvent (keyUp) {
if (Key.getcode() == 32) {
_root.panic++;
}
}
Frame 617
panic = 0;
panicsign._visible = true;
bMx();
Frame 672
if (panic < 10) {
take(12);
gotoAndPlay (673);
} else {
gotoAndPlay (602);
KeyUnderBed = true;
}
Frame 673
function continuegame() {
gotoAndPlay (41);
}
Frame 768
stop();
Frame 968
gotoAndPlay (969);
Frame 997
stop();
Symbol 53 Button
on (release) {
gotoAndPlay (31);
}
Symbol 54 Button
on (release) {
getURL ("http://lutc.sg.st", (window = "_blank"));
getURL ("http://www.haloscan.com/comments.php?user=lutc&comment=108461190578766008", (window = "_blank"));
}
Symbol 61 MovieClip Frame 1
stop();
Symbol 61 MovieClip Frame 84
_root.bMx();
Symbol 66 Button
on (release) {
if ((_root.InvDisplay + 4) < _root.InvEmpty) {
_root.InvDisplay++;
_root.InvRefresh();
}
}
Symbol 67 Button
on (release) {
if (_root.InvDisplay > 0) {
_root.InvDisplay--;
_root.InvRefresh();
}
}
Symbol 68 Button
on (release) {
Choose(_root.InvDisplay);
}
Symbol 69 Button
on (release) {
Choose(_root.InvDisplay + 1);
}
Symbol 70 Button
on (release) {
Choose(_root.InvDisplay + 2);
}
Symbol 71 Button
on (release) {
Choose(_root.InvDisplay + 3);
}
Symbol 72 Button
on (release) {
Choose(_root.InvDisplay + 4);
}
Symbol 74 Button
on (release) {
_root.inventory._visible = !_root.inventory._visible;
}
Symbol 75 Button
on (press) {
_root.Inventory.startdrag();
}
on (release) {
_root.inventory.stopdrag();
_root.Inv_x = _root.inventory._x;
_root.Inv_y = _root.inventory._y;
}
Symbol 76 MovieClip Frame 1
function Choose(choice) {
if (_root.inv[choice] > 0) {
_root.InvSelect(choice);
}
}
this._visible = false;
this._x = _root.inv_x;
this._y = _root.inv_y;
Symbol 78 Button
on (release) {
_root.inventory._visible = !_root.inventory._visible;
}
Symbol 79 Button
on (release) {
_root.bM(_root.Desc[_root.Inv[_root.InvSelected]]);
_root.InvSelected = -1;
_root.InvRefresh();
}
Symbol 102 Button
on (release) {
if (_root.inv[_root.InvSelected] == 5) {
_root.Drop(_root.InvSelected);
_root.TrunkUnlocked = true;
_root.bM("I unlocked the Trunk O' Stuff.");
}
if (_root.TrunkUnlocked) {
_root.trunk.gotoAndPlay(2);
} else {
_root.bM("The key should be around here somewhere.");
}
}
on (rollOver) {
_root.M("Trunk O' Stuff");
}
on (rollOut) {
_root.Mx();
}
Symbol 104 Button
on (release) {
_root.trunk.gotoAndPlay(1);
}
on (rollOver) {
_root.M("Trunk O' Stuff");
}
on (rollOut) {
_root.Mx();
}
Symbol 105 Button
on (release) {
_root.bM("Soooo many things inside...");
if (_root.candletaken == undefined) {
_root.candletaken = true;
_root.Take(6);
}
}
on (rollOver) {
_root.M("Inside Trunk O' Stuff");
}
on (rollOut) {
_root.Mx();
}
Symbol 106 MovieClip Frame 1
stop();
Symbol 106 MovieClip Frame 2
stop();
Symbol 113 MovieClip Frame 1
stop();
Symbol 113 MovieClip Frame 2
stop();
Symbol 114 Button
on (release) {
if (clicky2._visible) {
cabinet.gotoAndPlay(1);
clicky2._visible = false;
} else {
cabinet.gotoAndPlay(2);
clicky2._visible = true;
}
}
on (rollOver) {
_root.M("Cabinet");
}
on (rollOut) {
_root.Mx();
}
Symbol 115 Button
on (release) {
_root.bM("It's full of stuff.");
if (_root.torchtaken and (_root.glovestaken == false)) {
_root.glovestaken = true;
_root.take(4);
}
if ((_root.lvl == 1) and (_root.torchtaken == false)) {
_root.torchtaken = true;
_root.take(9);
}
}
on (rollOver) {
_root.M("Drawer");
}
on (rollOut) {
_root.Mx();
}
Symbol 116 MovieClip Frame 1
clicky2._visible = false;
Symbol 133 MovieClip Frame 1
stop();
Symbol 133 MovieClip Frame 2
this.state = 2;
Symbol 133 MovieClip Frame 24
stop();
this.state = 1;
Symbol 135 Button
on (release) {
function Dest() {
if (_root.lvl == 0) {
gotoAndPlay (92);
} else {
gotoAndPlay (494);
}
}
_root.Enter(door, this);
}
on (rollOver) {
M("To hallway");
}
on (rollOut) {
Mx();
}
Symbol 136 Button
on (release) {
bM("LUT! posters are all the rage these days.");
}
on (rollOver) {
M("Poster");
}
on (rollOut) {
Mx();
}
Symbol 137 Button
on (release) {
bM("My CD collection is really limited.");
}
on (rollOver) {
M("CDs");
}
on (rollOut) {
Mx();
}
Symbol 138 Button
on (release) {
bM("These books are just sitting here collecting dust.");
}
on (rollOver) {
M("Books");
}
on (rollOut) {
Mx();
}
Symbol 139 Button
on (release) {
bM("It's empty.");
}
on (rollOver) {
M("Wastepaper basket");
}
on (rollOut) {
Mx();
}
Symbol 140 Button
on (release) {
bM("It's no time to be sleeping now.");
}
on (rollOver) {
M("Bed");
}
on (rollOut) {
Mx();
}
Symbol 141 Button
on (release) {
if (_root.tape._visible) {
bM("There's something on the desk.");
} else {
bm("There's nothing on the desk.");
}
}
on (rollOver) {
M("Desk");
}
on (rollOut) {
Mx();
}
Symbol 142 Button
on (release) {
bM("I prefer having lights on at the moment.");
}
on (rollOver) {
M("Switch");
}
on (rollOut) {
Mx();
}
Symbol 143 Button
on (release) {
Password._visible = !password._visible;
if (lvl == 0) {
bM("Enter 'skipintro' to skip the intro sequence");
}
}
on (rollOver) {
M("Diary");
}
on (rollOut) {
Mx();
}
Symbol 144 Button
on (release) {
_root.tape._visible = false;
_root.tapetaken = true;
_root.Take(12);
}
on (rollOver) {
_root.M("Video Tape");
}
on (rollOut) {
_root.Mx();
}
Symbol 147 MovieClip Frame 1
stop();
Symbol 158 Button
on (release) {
gotoAndPlay (93);
}
on (rollOver) {
M("To front door");
}
on (rollOut) {
Mx();
}
Symbol 159 Button
on (release) {
bM("I don't need to go there right now.");
}
on (rollOver) {
M("To master bedroom");
}
on (rollOut) {
Mx();
}
Symbol 160 Button
on (release) {
gotoAndPlay (32);
}
on (rollOver) {
M("To bedroom");
}
on (rollOut) {
Mx();
}
Symbol 161 Button
on (release) {
bM("It's not raining.");
}
on (rollOver) {
M("Umbrellas");
}
on (rollOut) {
Mx();
}
Symbol 162 Button
on (release) {
bM("It's full of shoes.");
}
on (rollOver) {
M("Shoe cabinet");
}
on (rollOut) {
Mx();
}
Symbol 163 Button
on (release) {
bM("I think I had better answer the door first.");
}
on (rollOver) {
M("To toilet");
}
on (rollOut) {
Mx();
}
Symbol 165 MovieClip Frame 1
stop();
Symbol 168 Button
on (release) {
door.gotoAndPlay(2);
_root.button._visible = false;
}
on (rollOver) {
M("Open the main door");
}
on (rollOut) {
Mx();
}
Symbol 169 Button
on (release) {
bM("I can't see anything through the peephole... it's all pitch black...");
}
on (rollOver) {
M("Peephole");
}
on (rollOut) {
Mx();
}
Symbol 170 Button
on (release) {
gotoAndPlay (92);
}
on (rollOver) {
M("To hallway");
}
on (rollOut) {
Mx();
}
Symbol 174 MovieClip Frame 72
stop();
Symbol 177 MovieClip Frame 100
stop();
Symbol 181 Button
on (release) {
gotoAndPlay (495);
}
on (rollOver) {
M("To toilet");
}
on (rollOut) {
Mx();
}
Symbol 182 Button
on (release) {
if (inv[InvSelected] == 9) {
bM("Not so easy. The torchlight is spoilt.");
} else if (inv[invSelected] == 7) {
gotoAndPlay (769);
} else {
bM("I need to find out what's happening but I'm not going any farther until I find a light.");
}
}
on (rollOver) {
M("To front door");
}
on (rollOut) {
Mx();
}
Symbol 183 Button
on (release) {
function Dest() {
gotoAndPlay (602);
}
if (inv[InvSelected] == 3) {
Drop(InvSelected);
mroomdoor_state = 0;
mroomdoor.state = 0;
bM("I unlocked the door.");
} else {
_root.Enter(mroomdoor, this);
}
}
on (rollOver) {
M("To master bedroom");
}
on (rollOut) {
Mx();
}
Symbol 207 MovieClip Frame 1
stop();
Symbol 207 MovieClip Frame 52
_root.Lvl1sink_BackToOne();
Symbol 214 Button
on (release) {
_root.towel._visible = false;
_root.vistowel = false;
_root.Take(1);
}
on (rollOver) {
_root.M("Towel");
}
on (rollOut) {
_root.Mx();
}
Symbol 216 Button
on (release) {
this._visible = false;
_parent.viskey = false;
_root.Take(3);
}
on (rollOver) {
_root.M("Key");
}
on (rollOut) {
_root.Mx();
}
Symbol 220 Button
on (release) {
_root.bM("Oral-B. The toothbrush real dentists use.");
}
on (rollOver) {
_root.M("Toothbrush");
}
on (rollOut) {
_root.Mx();
}
Symbol 224 Button
on (release) {
_root.bM("Smells nice.");
}
on (rollOver) {
_root.M("Soap");
}
on (rollOut) {
_root.Mx();
}
Symbol 226 Button
on (release) {
_root.bM("I seem to have knocked it over.");
}
on (rollOver) {
_root.M("Soap");
}
on (rollOut) {
_root.Mx();
}
Symbol 228 Button
on (release) {
if (vissoap) {
gotoAndPlay (496);
} else {
M("The mirror got all fogged up again.");
}
}
on (rollOver) {
M("Mirror");
}
on (rollOut) {
Mx();
}
Symbol 229 Button
on (release) {
gotoAndPlay (494);
}
on (rollOver) {
M("To hallway");
}
on (rollOut) {
Mx();
}
Symbol 230 Button
on (release) {
gotoAndPlay (501);
}
on (rollOver) {
M("Examine toilet bowl");
}
on (rollOut) {
Mx();
}
Symbol 231 Button
on (release) {
gotoAndPlay (502);
}
on (rollOver) {
M("To shower");
}
on (rollOut) {
Mx();
}
Symbol 232 Button
on (release) {
M("I don't want to wet my hands at the moment.");
}
on (rollOver) {
M("Tap");
}
on (rollOut) {
Mx();
}
Symbol 233 Button
on (release) {
gotoAndPlay (495);
}
on (rollOver) {
M("Back");
}
on (rollOut) {
Mx();
}
Symbol 234 Button
on (release) {
if (inv[InvSelected] == 1) {
Drop(InvSelected);
vissoap = false;
_root.inventory._visible = false;
_root.badmirror.gotoAndPlay(2);
} else {
bM("The mirror is all fogged up.");
}
}
on (rollOver) {
M("Mirror");
}
on (rollOut) {
Mx();
}
Symbol 235 Button
on (release) {
gotoAndPlay (495);
}
on (rollOver) {
M("Turn back");
}
on (rollOut) {
Mx();
}
Symbol 237 Button
on (release) {
_root.tpaper._visible = false;
_root.vistpaper = false;
_root.Take(2);
}
on (rollOver) {
_root.M("Toilet paper");
}
on (rollOut) {
_root.Mx();
}
Symbol 251 MovieClip Frame 1
stop();
Symbol 251 MovieClip Frame 112
stop();
_root.handclicky._visible = true;
_root.vishand = true;
_root.showerstuck = false;
Symbol 252 Button
on (release) {
gotoAndPlay (502);
}
on (rollOver) {
M("Shower door");
}
on (rollOut) {
Mx();
}
Symbol 253 Button
on (release) {
gotoAndPlay (495);
}
on (rollOver) {
M("Back");
}
on (rollOut) {
Mx();
}
Symbol 254 Button
on (release) {
if (VisTpaper2) {
bM("A great community service done by me.");
} else if (inv[InvSelected] == 2) {
Drop(InvSelected);
Tpaper2._visible = true;
VisTpaper2 = true;
bM("That's better...");
handanim.gotoAndPlay(2);
} else {
bM("Don't you just hate it when the last person doesn't refill it when it's finished?");
}
}
on (rollOver) {
M("Toilet roll");
}
on (rollOut) {
Mx();
}
Symbol 255 Button
on (release) {
gotoAndPlay (502);
}
on (rollOver) {
M("Examine handprint");
}
on (rollOut) {
Mx();
}
Symbol 256 Button
on (release) {
bM("I don't need to go right now.");
}
on (rollOver) {
M("Toilet bowl");
}
on (rollOut) {
Mx();
}
Symbol 257 Button
on (release) {
if (inv[InvSelected] == 4) {
Drop(InvSelected);
VisTrunkKey = false;
TrunkKeyClicky._visible = false;
Take(5);
} else {
bM("There's no way I'm gonna be putting my bare hands into that.");
}
}
on (rollOver) {
M("Shiny object");
}
on (rollOut) {
Mx();
}
Symbol 258 Button
on (release) {
if (VisTrunkKey) {
bM("That won't accomplish anything. The toilet bowl is clogged.");
} else {
bM("Much better");
_root.tbowl.cleanwater._visible = true;
_root.tbowl.dirtywater._visible = false;
_root.lvl1wc_flushed = true;
}
}
on (rollOver) {
M("Flush");
}
on (rollOut) {
Mx();
}
Symbol 260 Button
on (release) {
_root.bM("These are pipes for the shower.");
}
on (rollOver) {
_root.M("Pipes");
}
on (rollOut) {
_root.Mx();
}
Symbol 261 Button
on (release) {
_root.bM("The hair disappeared.");
}
on (rollOver) {
_root.M("Drain cover");
}
on (rollOut) {
_root.Mx();
}
Symbol 263 Button
on (release) {
_root.bM("The faucet seems to have dropped out.");
}
on (rollOver) {
_root.M("Hole");
}
on (rollOut) {
_root.Mx();
}
Symbol 264 Button
on (release) {
_root.bM("It's the faucet for the shower.");
}
on (rollOver) {
_root.M("Shower Faucet");
}
on (rollOut) {
_root.Mx();
}
Symbol 266 Button
on (release) {
_root.faucetdrop._visible = false;
_root.visfaucet = false;
_root.take(8);
}
on (rollOver) {
_root.M("Shower Faucet");
}
on (rollOut) {
_root.Mx();
}
Symbol 269 Button
on (release) {
_root.bM("It looks like a pile of hair.");
gotoAndPlay (3);
_root.inventory._visible = false;
}
on (rollOver) {
_root.M("Hair");
}
on (rollOut) {
_root.Mx();
}
Symbol 277 MovieClip Frame 1
stop();
Symbol 277 MovieClip Frame 17
_root.inventory._visible = false;
_root.Mx();
_root.bMx();
Symbol 277 MovieClip Frame 25
stop();
_root.ShowerMonsterInit();
Symbol 277 MovieClip Frame 27
_root.ghosthand._visible = true;
Symbol 282 Button
on (release) {
_root.BM("Who... or what made this?");
}
on (rollOver) {
_root.M("Handprint");
}
on (rollOut) {
_root.Mx();
}
Symbol 286 Button
on (release) {
if (_root.ShowerStuck) {
bM("It's stuck.");
} else {
bM("The shower door seems to have come unstuck.");
Mx();
gotoAndPlay (503);
}
}
on (rollOver) {
_root.M("Open shower door");
}
on (rollOut) {
_root.Mx();
}
Symbol 287 Button
on (release) {
gotoAndPlay (501);
}
on (rollOver) {
_root.M("To toilet bowl");
}
on (rollOut) {
_root.Mx();
}
Symbol 288 Button
on (release) {
gotoAndPlay (495);
}
on (rollOver) {
_root.M("To sink");
}
on (rollOut) {
_root.Mx();
}
Symbol 289 MovieClip Frame 1
stop();
Symbol 290 MovieClip Frame 1
stop();
fin = true;
Symbol 290 MovieClip Frame 2
fin = false;
Symbol 290 MovieClip Frame 20
black = true;
Symbol 290 MovieClip Frame 21
black = false;
Symbol 290 MovieClip Frame 30
if (_root.monstercounter == _root.monstermax) {
black = false;
gotoAndPlay (1);
}
Symbol 290 MovieClip Frame 31
if (_root.monstercounter == (_root.monstermax - 1)) {
gotoAndPlay (1);
}
Symbol 290 MovieClip Frame 34
if (_root.monstercounter == (_root.monstermax - 2)) {
gotoAndPlay (1);
}
Symbol 290 MovieClip Frame 38
if (_root.monstercounter == (_root.monstermax - 3)) {
gotoAndPlay (1);
}
Symbol 290 MovieClip Frame 43
if (_root.monstercounter == (_root.monstermax - 4)) {
gotoAndPlay (1);
trace("tt");
}
Symbol 290 MovieClip Frame 49
if (_root.monstercounter == (_root.monstermax - 5)) {
gotoAndPlay (1);
}
Symbol 290 MovieClip Frame 56
if ((_root.monstercounter = _root.monstermax - 6)) {
gotoAndPlay (1);
}
Symbol 290 MovieClip Frame 64
if (_root.monstercounter == (_root.monstermax - 7)) {
gotoAndPlay (1);
}
Symbol 290 MovieClip Frame 73
if (_root.monstercounter == (_root.monstermax - 8)) {
gotoAndPlay (1);
}
Symbol 291 Button
on (release) {
gotoAndPlay (502);
}
on (rollOver) {
_root.M("Close shower door");
}
on (rollOut) {
_root.Mx();
}
Symbol 292 Button
on (release) {
if (!_root.monsterstart) {
gotoAndPlay (501);
}
}
on (rollOver) {
_root.M("To toilet bowl");
}
on (rollOut) {
_root.Mx();
}
Symbol 293 Button
on (release) {
if (!_root.monsterstart) {
gotoAndPlay (495);
}
}
on (rollOver) {
_root.M("To sink");
}
on (rollOut) {
_root.Mx();
}
Symbol 295 Button
on (release) {
bM("It's pitch black outside.");
}
on (rollOver) {
M("Window");
}
on (rollOut) {
Mx();
}
Symbol 298 MovieClip Frame 1
stop();
Symbol 301 Button
on (release) {
gotoAndPlay (2);
}
on (rollOver) {
_root.M("Curtains");
}
on (rollOut) {
_root.Mx();
}
Symbol 303 Button
on (release) {
gotoAndPlay (1);
_root.curtainsopen = false;
}
on (rollOver) {
_root.M("Curtains");
}
on (rollOut) {
_root.Mx();
}
Symbol 304 MovieClip Frame 1
stop();
Symbol 304 MovieClip Frame 2
stop();
_root.curtainsopen = true;
Symbol 309 Button
on (release) {
if (_root.inv[_root.InvSelected] == 8) {
gotoAndPlay (2);
_root.Drop(_root.InvSelected);
_root.bM("It fits in the hole. I managed to open the VCR cabinet.");
_root.face.gotoAndPlay(2);
_root.VCRopen = true;
} else {
_root.bM("The handle has dropped off. I can't open it.");
}
}
on (rollOver) {
_root.M("VCR cabinet");
}
on (rollOut) {
_root.Mx();
}
Symbol 310 Button
on (release) {
if (_root.inv[_root.InvSelected] == 8) {
gotoAndPlay (2);
_root.Drop(_root.InvSelected);
_root.bM("The faucet fits. I managed to open the VCR cabinet.");
_root.face.gotoAndPlay(2);
_root.VCRopen = true;
} else {
_root.bM("There's a small hole where the handle used to be.");
}
}
on (rollOver) {
_root.M("Hole");
}
on (rollOut) {
_root.Mx();
}
Symbol 312 Button
on (release) {
_root.bM("It's open. There's a VCR inside.");
}
on (rollOver) {
_root.M("VCR cabinet");
}
on (rollOut) {
_root.Mx();
}
Symbol 313 Button
on (release) {
if (_root.inv[_root.InvSelected] == 12) {
_root.Drop(_root.InvSelected);
_root.TVScene();
} else {
_root.bM("It seems to be in working condition.");
}
}
on (rollOver) {
_root.M("VCR");
}
on (rollOut) {
_root.Mx();
}
Symbol 314 MovieClip Frame 1
stop();
Symbol 314 MovieClip Frame 2
stop();
Symbol 317 Button
on (release) {
gotoAndPlay (2);
_root.bM("It seems to be spoilt.");
}
on (rollOver) {
_root.M("TV");
}
on (rollOut) {
Mx();
}
Symbol 322 Button
on (release) {
gotoAndPlay (1);
}
on (rollOver) {
_root.M("TV");
}
on (rollOut) {
_root.Mx();
}
Symbol 324 MovieClip Frame 1
stop();
stopAllSounds();
Symbol 324 MovieClip Frame 27
gotoAndPlay (2);
Symbol 326 Button
on (release) {
if (_root.inv[_root.InvSelected] == 11) {
_root.drop(_root.InvSelected);
gotoAndPlay (2);
_root.bM("I unlocked the drawer.");
} else {
_root.bM("The drawer is locked.");
}
}
on (rollOver) {
_root.M("Dresser");
}
on (rollOut) {
_root.Mx();
}
Symbol 328 Button
on (release) {
if (_root.matchestaken) {
_root.bM("Nothing of interest here.");
} else {
_root.take(10);
_root.matchestaken = true;
}
}
on (rollOver) {
_root.M("Drawer");
}
on (rollOut) {
_root.Mx();
}
Symbol 329 MovieClip Frame 1
stop();
Symbol 329 MovieClip Frame 2
stop();
Symbol 338 Button
on (release) {
bM("I'm a little afraid of looking into mirrors at the moment.");
}
on (rollOver) {
M("Mirror");
}
on (rollOut) {
Mx();
}
Symbol 339 Button
on (release) {
if (KeyUnderBed) {
take(11);
KeyUnderBed = false;
} else {
bM("It's dirty. I'm not going under there unless I have reason to.");
}
}
on (rollOver) {
M("Under the bed");
}
on (rollOut) {
Mx();
}
Symbol 340 Button
on (release) {
bM("Nothing interesting here.");
}
on (rollOver) {
M("Bookshelf");
}
on (rollOut) {
Mx();
}
Symbol 341 Button
on (release) {
bM("It's a King-sized bed.");
}
on (rollOver) {
M("Bed");
}
on (rollOut) {
Mx();
}
Symbol 342 Button
on (release) {
bM("It's probably full of clothes.");
}
on (rollOver) {
M("Wardrobe");
}
on (rollOut) {
Mx();
}
Symbol 343 Button
on (release) {
gotoAndPlay (494);
}
on (rollOver) {
M("To Hallway");
}
on (rollOut) {
Mx();
}
Symbol 344 Button
on (release) {
bM("I love soft poofy pillows.");
}
on (rollOver) {
M("Pillows");
}
on (rollOut) {
Mx();
}
Symbol 345 Button
on (release) {
bM("There's only one of it in this room.");
}
on (rollOver) {
M("Night stand");
}
on (rollOut) {
Mx();
}
Symbol 354 MovieClip Frame 1
stop();
Symbol 354 MovieClip Frame 2
stop();
Symbol 357 Button
on (release) {
bM("There's something reflective under the bed.");
person.gotoAndPlay(2);
gotoAndPlay (604);
}
on (rollOver) {
M("Look closer");
}
on (rollOut) {
Mx();
}
Symbol 358 Button
on (release) {
bM("I'm seeing myself on TV... that's just so freaky.");
}
Symbol 361 Button
on (release) {
this._visible = false;
_root.bM("This is so weird.");
}
on (rollOver) {
_root.M("Play video");
}
on (rollOut) {
_root.Mx();
}
Symbol 366 MovieClip Frame 48
stop();
Symbol 373 Button
on (release) {
_root.continuegame();
}
Symbol 374 MovieClip Frame 48
stop();