Combined Code
frame 1 {
function work() {
_root.stop();
_root.micon.onMouseMove = function () {
if (_root.fade._currentframe == 10) {
this._x = _root._xmouse;
if (_root.txt_number > 1 && _root._ymouse < 100) {
this._y = 100;
} else {
this._y = _root._ymouse;
}
Mouse.hide();
}
};
onMouseDown = function () {
_root.answer = random(3) + 1;
if (_root.conditions == true && _root._currentframe < 40) {
if (_root._ymouse > 100 && _root.txt_number <= 1) {
if (_root.micon._currentframe != 3) {
if (_root.txt_number == 0) {
_root.txt_number = 1;
}
_root.next_dis1 = 2;
_root.di1 = 1;
}
if (_root.micon._currentframe > 4) {
if (_root.range == true) {
if (_root.answer != 1) {
} else {
_root.next_txt1 = 'I can\'t use this here';
}
(_root.answer == 2) ? 'Hmm... somehow I just dont think that will work' : 'Whats that going to achieve?';
} else {
_root.next_txt1 = 'I can\'t reach that far unless you want me to throw it over there';
}
}
if (_root.micon._currentframe == 1) {
if (_root.range == true) {
if (_root.answer != 1) {
} else {
_root.next_txt1 = 'I’ve always wanted to know what that felt like';
}
(_root.answer == 2) ? 'I think this time it would just be better to keep my hands to myself' : 'I’d rather not.';
} else {
_root.next_txt1 = 'I can\'t reach that far';
}
}
if (_root.micon._currentframe == 2) {
if (_root.answer != 1) {
} else {
_root.next_txt1 = 'Nothing really important';
}
(_root.answer == 2) ? 'I’ve seen more interesting stuff on a bathroom stall' : 'Are my glasses broken, or am I just looking at complete junk';
}
if (_root.micon._currentframe == 4) {
if (_root.range == true) {
if (_root.answer != 1) {
} else {
_root.next_txt1 = 'Hello?';
}
(_root.answer == 2) ? 'Is anybody there?' : 'Everybody in the house say yo...';
} else {
_root.next_txt1 = 'I should get closer';
}
}
}
}
};
onEnterFrame = function () {
if (_root.togglet > 0) {
--_root.togglet;
}
if (_root.take > 4) {
i = 1;
while (i < 40) {
if (_root.inven['box' + i]._currentframe < 5) {
_root.inven['box' + i].gotoAndStop(_root.take);
_root.take = 0;
}
++i;
}
}
if (!(_root.inven._currentframe == 1 && _root.fade._currentframe == 10)) {
_root.conditions = false;
} else {
_root.conditions = true;
}
_root.conditions;
if (_root.txt_number == 0) {
i = 1;
while (i < 10) {
if (_root['di' + i] > 0) {
_root['di' + i] = 0;
}
++i;
}
if (_root.dialogue._currentframe > 1) {
_root.dialogue.gotoAndStop(1);
}
if (text_box._visible == true) {
text_box._visible = false;
}
} else {
if (text_box._visible == false) {
text_box._visible = true;
}
if (_root.dialogue._currentframe != _root['di' + _root.txt_number]) {
_root.dialogue.gotoAndStop(_root['di' + _root.txt_number]);
}
if (_root.txt != _root['next_txt' + _root.txt_number]) {
_root.txt = _root['next_txt' + _root.txt_number];
}
if (_root.dis != _root['next_dis' + _root.txt_number]) {
_root.dis = _root['next_dis' + _root.txt_number];
}
}
if (_currentframe > 40) {
if (_root.range == false) {
_root.range = true;
}
}
if (_currentframe > 1) {
if (_root.conditions == true) {
down = Key.isDown(40) || Key.isDown(83);
up = Key.isDown(38) || Key.isDown(87);
left = Key.isDown(37) || Key.isDown(65);
right = Key.isDown(39) || Key.isDown(68);
if (_root.nogo._currentframe != _root._currentframe) {
_root.nogo.gotoAndStop(_root._currentframe);
}
} else {
if (_root.txt_number > 0) {
_root.txt_number = 0;
}
if (_root.txt != '') {
_root.txt = '';
}
}
}
};
_root.lvl.hewitt.onEnterFrame = function () {
if (_root.txt_number <= 1 && _root.inven._currentframe == 1) {
if (calc != (this._y - 144) / 3.5) {
calc = (this._y - 144) / 3.5;
}
if (spd != (calc / 14) * _root.speed_calc) {
spd = (calc / 14) * _root.speed_calc;
}
if (_root.fade._currentframe < 10 && this.walk._currentframe > 1) {
this.walk.gotoAndStop(1);
}
if (this._xscale != calc * turn) {
this._xscale = calc * turn;
}
if (this._yscale != calc) {
this._yscale = calc;
}
this.swapDepths(this._y);
if (_root.conditions == true) {
i = 1;
while (i < 5) {
if (_root.nogo['exit' + i].hitTest(this.bot)) {
_root.fade.gotoAndPlay(1);
_root.gotoAndStop(_root.nogo['exit' + i].frame);
_root.load_x = _root.nogo['exit' + i].load_x;
_root.load_y = _root.nogo['exit' + i].load_y;
down = _root.nogo['exit' + i].down;
up = _root.nogo['exit' + i].up;
left = _root.nogo['exit' + i].lefft;
right = _root.nogo['exit' + i].rite;
}
++i;
}
if (down && !_root.nogo.hitTest(this._x, this._y + spd, true)) {
this._y += spd / 2;
}
if (up && !_root.nogo.hitTest(this._x, this._y - spd, true)) {
this._y -= spd / 2;
}
if (left && !_root.nogo.hitTest(this._x - spd, this._y, true)) {
if (turn != 1) {
turn = 1;
}
this._x -= spd;
}
if (right && !_root.nogo.hitTest(this._x + spd, this._y, true)) {
if (turn != -1) {
turn = -1;
}
this._x += spd;
}
if (!down && !up && !left && !right) {
if (this.walk._currentframe > 1) {
this.walk.gotoAndStop(1);
}
} else {
this.walk.play();
}
if ((left || right) && !down && !up && this._currentframe != 3) {
this.gotoAndStop(3);
}
if (down) {
if (!left && !right) {
if (this._currentframe != 5) {
this.gotoAndStop(5);
}
} else {
if (this._currentframe != 4) {
this.gotoAndStop(4);
}
}
}
if (up) {
if (!left && !right) {
if (this._currentframe != 1) {
this.gotoAndStop(1);
}
} else {
if (this._currentframe != 2) {
this.gotoAndStop(2);
}
}
}
}
} else {
if (this.walk._currentframe != 1) {
this.walk.gotoAndStop(1);
}
}
};
i = 1;
while (i <= 11) {
_root.lvl['ob' + i].onEnterFrame = function () {
this.swapDepths(this._y);
if (this._currentframe != _root['taken' + this.frame] + 1) {
this.gotoAndStop(_root['taken' + this.frame] + 1);
}
};
_root.lvl['ob' + i].onMouseDown = function () {
if (_root.even7 >= 5 && _root.conditions == true && this.frame > 1 && _root.range == true && this.hitTest(_xmouse, _ymouse, true) && _root.micon._currentframe == 1) {
_root.take = this.frame;
_root['taken' + this.frame] = 1;
}
};
++i;
}
i = _root.min_objects;
while (i <= _root.max_objects) {
_root.inven['box' + i].onMouseUp = function () {
if (this.hitTest(_xmouse, _ymouse, true) && _root.inven._currentframe == 2 && this._y > 120 && this._y < 400) {
if (_root.micon._currentframe == 1 && _root.even7 >= 8) {
if (_root.inven.large._currentframe == this._currentframe) {
_root.inven.large.gotoAndStop(1);
}
_root.micon.gotoAndStop(this._currentframe);
this.gotoAndStop(1);
} else {
if (this._currentframe == 1 && _root.micon._currentframe > 4) {
_root.inven.large.gotoAndStop(_root.micon._currentframe);
this.gotoAndStop(_root.micon._currentframe);
_root.micon.gotoAndStop(1);
}
}
if (_root.micon._currentframe == 2) {
_root.inven.large.gotoAndStop(this._currentframe);
}
}
};
++i;
}
}
function load_vars() {
savefile = SharedObject.getLocal('Hewitt_file' + _root.load_file_chosen);
init_even7 = _root.even7;
i = 1;
while (i < 100) {
_root.inven['box' + i].gotoAndStop(savefile.data['box_frame' + i]);
_root['taken' + i] = savefile.data['taken' + i];
_root['even' + i] = savefile.data['even' + i];
_root['talk' + i] = savefile.data['talk' + i];
++i;
}
if (_root._currentframe == 2) {
_root.even7 = init_even7;
}
_root.success_type = 1;
_root.fade_success = 50;
_root.inven.loader.gotoAndStop(1);
if (_root.even37 == 2) {
_root.inven.gotoAndStop(4);
} else {
_root.inven.gotoAndStop(6);
}
_root.sfx.gotoAndStop(2);
if (_root._currentframe == 1) {
_root.loadeding = 1;
_root.gotoAndStop(2);
} else {
if (_root._currentframe != _root.even37) {
_root.gotoAndStop(_root.even37);
}
}
}
stop();
_root.happystream = 3;
_root.togglet = 0;
_root.total_objects = 20;
turn = 1;
_root.demo = 0;
_root.txt_number = 0;
_root.bend_clicky = 0;
_root.inven._visible = false;
_root.nogo._visible = false;
Stage.showMenu = false;
fscommand('fullscreen', 'true');
_root.ful = 1;
_root.bgSound = new Sound();
_root.snd_calc = 85;
_root.saveing = 0;
_root.speed_calc = 1;
_root.load_x = 275;
_root.load_y = 475;
i = 1;
while (i < 100) {
_root.inven['box' + i].gotoAndStop(1);
_root['talk' + i] = 0;
_root['even' + i] = 0;
_root['taken' + i] = 0;
++i;
}
i = 1;
while (i < 15) {
_root.inven['box' + i].work_frame = 2;
++i;
}
i = 15;
while (i < 29) {
_root.inven['box' + e].work_frame = 3;
++i;
}
my_listener = new Object();
Mouse.addListener(my_listener);
my_listener.onMouseWheel = function (counter) {
if (counter != 0 && _root.togglet == 0 && _root.even7 == 20 && _root._currentframe > 1 && _root._currentframe < 40 && _root.inven._currentframe == 1 && _root.txt_number <= 1) {
_root.TUTS.nextFrame();
_root.even41 = 1;
new_frame = _root.micon._currentframe;
foundframe = 0;
if (new_frame > 4) {
_root.take = new_frame;
}
if (counter > 0) {
while (foundframe == 0) {
--new_frame;
if (new_frame < 1) {
new_frame = 62;
} else {
if (new_frame < 5) {
foundframe = new_frame;
}
}
i = 1;
while (i < 100) {
if (_root.inven['box' + i]._currentframe == new_frame) {
_root.inven['box' + i].gotoAndStop(1);
foundframe = new_frame;
}
++i;
}
if (foundframe == 3) {
foundframe = 2;
}
}
} else {
while (foundframe == 0) {
++new_frame;
if (new_frame > 62) {
new_frame = 1;
} else {
if (new_frame < 5) {
foundframe = new_frame;
}
}
i = 1;
while (i < 100) {
if (_root.inven['box' + i]._currentframe == new_frame) {
_root.inven['box' + i].gotoAndStop(1);
foundframe = new_frame;
}
++i;
}
if (foundframe == 3) {
foundframe = 4;
}
}
}
_root.micon.gotoAndStop(foundframe);
_root.togglet = 2;
}
};
}
movieClip 5 {
}
movieClip 27 {
frame 1 {
stop();
}
}
movieClip 39 {
frame 1 {
stop();
}
instance exit1 of movieClip 5 {
onClipEvent (load) {
load_x = 375;
load_y = 300;
down = 1;
up = 0;
lefft = 0;
rite = 1;
frame = 3;
}
}
instance of movieClip 5 {
onClipEvent (load) {
this.swapDepths(999);
}
onClipEvent (enterFrame) {
if (_root.even7 == 20 && _root.even41 == 1) {
this.removeMovieClip();
}
}
}
instance exit1 of movieClip 5 {
onClipEvent (load) {
load_x = 25;
load_y = 375;
down = 1;
up = 0;
lefft = 0;
rite = 0;
frame = 2;
}
}
instance exit2 of movieClip 5 {
onClipEvent (load) {
load_x = 370;
load_y = 475;
down = 0;
up = 1;
lefft = 1;
rite = 0;
if (_root.even8 == 1) {
frame = 4;
} else {
frame = 60;
}
}
}
instance exit1 of movieClip 5 {
onClipEvent (load) {
load_x = 475;
load_y = 280;
down = 1;
up = 0;
lefft = 1;
rite = 0;
frame = 3;
}
}
instance exit2 of movieClip 5 {
onClipEvent (load) {
load_x = 250;
load_y = 475;
down = 0;
up = 1;
lefft = 0;
rite = 0;
frame = 5;
}
}
instance exit3 of movieClip 5 {
onClipEvent (load) {
load_x = 475;
load_y = 440;
down = 0;
up = 0;
lefft = 1;
rite = 0;
frame = 21;
}
}
instance exit1 of movieClip 5 {
onClipEvent (load) {
load_x = 150;
load_y = 400;
down = 1;
up = 0;
lefft = 0;
rite = 0;
frame = 4;
}
}
instance exit2 of movieClip 5 {
onClipEvent (load) {
load_x = 500;
load_y = 460;
down = 0;
up = 0;
lefft = 1;
rite = 0;
frame = 6;
}
}
instance exit3 of movieClip 5 {
onClipEvent (load) {
load_x = 50;
load_y = 475;
down = 0;
up = 0;
lefft = 0;
rite = 1;
frame = 7;
}
}
instance exit1 of movieClip 5 {
onClipEvent (load) {
load_x = 175;
load_y = 315;
down = 0;
up = 0;
lefft = 0;
rite = 1;
frame = 5;
}
}
instance exit1 of movieClip 5 {
onClipEvent (load) {
load_x = 375;
load_y = 350;
down = 0;
up = 0;
lefft = 1;
rite = 0;
frame = 5;
}
}
instance exit2 of movieClip 5 {
onClipEvent (load) {
load_x = 75;
load_y = 460;
down = 0;
up = 0;
lefft = 0;
rite = 1;
frame = 8;
}
}
instance exit3 of movieClip 5 {
onClipEvent (load) {
load_x = 80;
load_y = 460;
down = 0;
up = 0;
lefft = 0;
rite = 1;
frame = 12;
}
}
instance exit1 of movieClip 5 {
onClipEvent (load) {
load_x = 520;
load_y = 475;
down = 0;
up = 0;
lefft = 1;
rite = 0;
frame = 7;
}
}
instance exit2 of movieClip 5 {
onClipEvent (load) {
load_x = 50;
load_y = 475;
down = 0;
up = 0;
lefft = 0;
rite = 1;
frame = 9;
}
}
instance exit3 of movieClip 5 {
onClipEvent (load) {
load_x = 500;
load_y = 475;
down = 0;
up = 0;
lefft = 1;
rite = 0;
frame = 10;
}
}
instance exit1 of movieClip 5 {
onClipEvent (load) {
load_x = 460;
load_y = 260;
down = 1;
up = 0;
lefft = 1;
rite = 0;
frame = 8;
}
}
instance exit2 of movieClip 5 {
onClipEvent (load) {
load_x = 300;
load_y = 470;
down = 0;
up = 1;
lefft = 0;
rite = 0;
frame = 16;
}
}
instance exit3 of movieClip 5 {
onClipEvent (load) {
if (_root.demo == 0) {
load_x = 100;
load_y = 450;
down = 0;
up = 0;
lefft = 0;
rite = 1;
frame = 20;
} else {
this.swapDepths(2);
this.removeMovieClip();
}
}
}
instance exit1 of movieClip 5 {
onClipEvent (load) {
load_x = 500;
load_y = 475;
down = 0;
up = 0;
lefft = 1;
rite = 0;
frame = 11;
}
}
instance exit2 of movieClip 5 {
onClipEvent (load) {
load_x = 250;
load_y = 300;
down = 0;
up = 0;
lefft = 0;
rite = 1;
frame = 8;
}
}
instance of movieClip 5 {
onClipEvent (load) {
if (_root.even14 == 1) {
this.swapDepths(2);
this.removeMovieClip();
}
}
}
instance exit2 of movieClip 5 {
onClipEvent (load) {
load_x = 30;
load_y = 475;
down = 0;
up = 0;
lefft = 0;
rite = 1;
frame = 10;
}
}
instance exit3 of movieClip 5 {
onClipEvent (load) {
load_x = 160;
load_y = 370;
down = 1;
up = 0;
lefft = 0;
rite = 0;
frame = 29;
}
}
instance exit1 of movieClip 5 {
onClipEvent (load) {
load_x = 460;
load_y = 450;
down = 1;
up = 0;
lefft = 0;
rite = 0;
frame = 7;
}
}
instance exit3 of movieClip 5 {
onClipEvent (load) {
load_x = 50;
load_y = 475;
down = 0;
up = 0;
lefft = 0;
rite = 1;
frame = 14;
}
}
instance exit1 of movieClip 5 {
onClipEvent (load) {
load_x = 100;
load_y = 450;
down = 0;
up = 0;
lefft = 0;
rite = 1;
frame = 16;
}
}
instance exit2 of movieClip 5 {
onClipEvent (load) {
load_x = 510;
load_y = 460;
down = 0;
up = 0;
lefft = 1;
rite = 0;
frame = 25;
}
}
instance of movieClip 5 {
onClipEvent (load) {
if (_root.even12 < 2) {
this.swapDepths(2);
this.removeMovieClip();
}
}
}
instance exit1 of movieClip 5 {
onClipEvent (load) {
load_x = 120;
load_y = 460;
down = 1;
up = 0;
lefft = 0;
rite = 0;
frame = 13;
}
}
instance exit2 of movieClip 5 {
onClipEvent (load) {
load_x = 310;
load_y = 400;
down = 1;
up = 0;
lefft = 0;
rite = 0;
frame = 16;
}
}
instance exit1 of movieClip 5 {
onClipEvent (load) {
load_x = 220;
load_y = 360;
down = 1;
up = 0;
lefft = 0;
rite = 0;
frame = 17;
}
}
instance of movieClip 5 {
onClipEvent (load) {
if (_root.even16 < 2) {
this.swapDepths(2);
this.removeMovieClip();
}
}
}
instance exit1 of movieClip 5 {
onClipEvent (load) {
load_x = 520;
load_y = 430;
down = 0;
up = 0;
lefft = 1;
rite = 0;
frame = 9;
}
}
instance exit2 of movieClip 5 {
onClipEvent (load) {
load_x = 110;
load_y = 300;
down = 1;
up = 0;
lefft = 0;
rite = 0;
frame = 15;
}
}
instance exit3 of movieClip 5 {
onClipEvent (load) {
load_x = 520;
load_y = 475;
down = 0;
up = 0;
lefft = 1;
rite = 0;
frame = 13;
}
}
instance exit2 of movieClip 5 {
onClipEvent (load) {
load_x = 80;
load_y = 450;
down = 0;
up = 0;
lefft = 0;
rite = 1;
frame = 18;
}
}
instance exit1 of movieClip 5 {
onClipEvent (load) {
load_x = 320;
load_y = 400;
down = 0;
up = 0;
lefft = 1;
rite = 0;
frame = 15;
}
}
instance exit4 of movieClip 5 {
onClipEvent (load) {
if (_root.even17 == 1) {
load_x = 250;
load_y = 410;
} else {
load_x = -1000;
load_y = -1000;
}
down = 1;
up = 0;
lefft = 0;
rite = 0;
frame = 19;
}
}
instance exit1 of movieClip 5 {
onClipEvent (load) {
load_x = 480;
load_y = 450;
down = 0;
up = 0;
lefft = 1;
rite = 0;
frame = 17;
}
}
instance exit1 of movieClip 5 {
onClipEvent (load) {
load_x = 500;
load_y = 400;
down = 1;
up = 0;
lefft = 1;
rite = 0;
frame = 17;
}
}
instance exit1 of movieClip 5 {
onClipEvent (load) {
load_x = 480;
load_y = 350;
down = 1;
up = 0;
lefft = 0;
rite = 0;
frame = 9;
}
}
instance exit1 of movieClip 5 {
onClipEvent (load) {
load_x = 60;
load_y = 440;
down = 0;
up = 0;
lefft = 0;
rite = 1;
frame = 4;
}
}
instance exit2 of movieClip 5 {
onClipEvent (load) {
load_x = 490;
load_y = 470;
down = 0;
up = 0;
lefft = 1;
rite = 0;
frame = 22;
}
}
instance exit1 of movieClip 5 {
onClipEvent (load) {
load_x = 60;
load_y = 440;
down = 0;
up = 0;
lefft = 0;
rite = 1;
frame = 21;
}
}
instance exit2 of movieClip 5 {
onClipEvent (load) {
load_x = 490;
load_y = 450;
down = 0;
up = 0;
lefft = 1;
rite = 0;
frame = 23;
}
}
instance exit1 of movieClip 5 {
onClipEvent (load) {
load_x = 60;
load_y = 460;
down = 0;
up = 0;
lefft = 0;
rite = 1;
frame = 22;
}
}
instance exit2 of movieClip 5 {
onClipEvent (load) {
load_x = 275;
load_y = 440;
down = 0;
up = 1;
lefft = 0;
rite = 0;
frame = 24;
}
}
instance of movieClip 27 {
onClipEvent (enterFrame) {
if (_root.even23 > 0) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
}
instance exit1 of movieClip 5 {
onClipEvent (load) {
load_x = 200;
load_y = 370;
down = 1;
up = 0;
lefft = 0;
rite = 0;
frame = 23;
}
}
instance exit1 of movieClip 5 {
onClipEvent (load) {
if (_root.talk9 > 0 && _root.talk11 == 3 && _root.even31 == 1 && _root.even32 == 1 && _root.taken52 == 0) {
this.swapDepths(2);
this.removeMovieClip();
}
load_x = 60;
load_y = 460;
down = 0;
up = 0;
lefft = 0;
rite = 1;
frame = 13;
}
}
instance exit2 of movieClip 5 {
onClipEvent (load) {
if (_root.talk9 > 0 && _root.talk11 == 3 && _root.even31 == 1 && _root.even32 == 1 && _root.taken52 == 0) {
this.swapDepths(2);
this.removeMovieClip();
}
load_x = 300;
load_y = 460;
down = 0;
up = 1;
lefft = 0;
rite = 0;
frame = 26;
}
}
instance exit4 of movieClip 5 {
onClipEvent (load) {
if (_root.talk9 > 0 && _root.talk11 == 3 && _root.even31 == 1 && _root.even32 == 1 && _root.taken52 == 0) {
this.swapDepths(2);
this.removeMovieClip();
}
load_x = 440;
load_y = 390;
down = 0;
up = 0;
lefft = 1;
rite = 0;
frame = 27;
}
}
instance exit3 of movieClip 5 {
onClipEvent (load) {
load_x = 500;
load_y = 460;
down = 0;
up = 0;
lefft = 1;
rite = 0;
frame = 28;
}
}
instance exit1 of movieClip 5 {
onClipEvent (load) {
load_x = 280;
load_y = 330;
down = 1;
up = 0;
lefft = 0;
rite = 0;
frame = 25;
}
}
instance exit1 of movieClip 5 {
onClipEvent (load) {
orig_x = this._x;
load_x = 180;
load_y = 370;
down = 0;
up = 0;
lefft = 0;
rite = 1;
frame = 25;
}
onClipEvent (enterFrame) {
if (_root.lvl.ob1.cls._visible == true) {
this._x = 10000;
} else {
this._x = orig_x;
}
}
}
instance of movieClip 5 {
onClipEvent (load) {
orig_x = this._x;
}
onClipEvent (enterFrame) {
if (_root.lvl.ob1.cls._visible == true) {
this._x = 10000;
} else {
this._x = orig_x;
}
}
}
instance exit1 of movieClip 5 {
onClipEvent (load) {
load_x = 70;
load_y = 460;
down = 0;
up = 0;
lefft = 0;
rite = 1;
frame = 25;
orig = this._x;
}
onClipEvent (enterFrame) {
if (_root.talk11 == 3 && _root.even31 == 1 && _root.even32 == 1 && _root.taken52 == 0) {
this._x = 1000;
} else {
this._x = orig;
}
}
}
instance of movieClip 5 {
onClipEvent (load) {
if (_root.talk11 == 3 && _root.even31 == 1 && _root.even32 == 1 && _root.taken52 == 0) {
} else {
this.swapDepths(2);
this.removeMovieClip();
}
}
}
instance of movieClip 5 {
onClipEvent (load) {
if (_root.talk11 == 3 && _root.even31 == 1 && _root.even32 == 1 && _root.taken52 == 0) {
} else {
this.swapDepths(2);
this.removeMovieClip();
}
}
}
instance exit3 of movieClip 5 {
onClipEvent (load) {
load_x = 350;
load_y = 440;
down = 1;
up = 0;
lefft = 0;
rite = 0;
frame = 11;
}
}
instance of movieClip 27 {
onClipEvent (enterFrame) {
if (_root.even26 == 1) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
}
instance exit3 of movieClip 5 {
onClipEvent (load) {
load_x = 275;
load_y = 480;
down = 0;
up = 0;
lefft = 0;
rite = 1;
frame = 31;
}
}
instance exit2 of movieClip 5 {
onClipEvent (load) {
load_x = 275;
load_y = 480;
down = 0;
up = 0;
lefft = 1;
rite = 0;
frame = 33;
}
}
instance exit3 of movieClip 5 {
onClipEvent (load) {
load_x = 275;
load_y = 480;
down = 0;
up = 0;
lefft = 0;
rite = 1;
frame = 32;
}
}
instance exit2 of movieClip 5 {
onClipEvent (load) {
load_x = 275;
load_y = 480;
down = 0;
up = 0;
lefft = 1;
rite = 0;
frame = 30;
}
}
instance exit3 of movieClip 5 {
onClipEvent (load) {
load_x = 275;
load_y = 480;
down = 0;
up = 0;
lefft = 0;
rite = 1;
frame = 33;
}
}
instance exit2 of movieClip 5 {
onClipEvent (load) {
load_x = 275;
load_y = 480;
down = 0;
up = 0;
lefft = 1;
rite = 0;
frame = 31;
}
}
instance exit3 of movieClip 5 {
onClipEvent (load) {
load_x = 275;
load_y = 480;
down = 0;
up = 0;
lefft = 0;
rite = 1;
frame = 30;
}
}
instance exit2 of movieClip 5 {
onClipEvent (load) {
load_x = 275;
load_y = 480;
down = 0;
up = 0;
lefft = 1;
rite = 0;
frame = 32;
}
}
}
movieClip 43 {
}
movieClip 44 {
}
movieClip 46 {
}
button 50 {
on (press) {
if (_root.txt_number <= 1) {
_root.txt_number = 0;
}
if (_quality == 'HIGH') {
_quality = 'MEDIUM';
} else {
if (_quality == 'MEDIUM') {
_quality = 'LOW';
} else {
_quality = 'HIGH';
if (_root.TUTS._currentframe == 2) {
_root.TUTS.nextFrame();
}
}
}
}
}
movieClip 86 {
}
movieClip 107 {
}
movieClip 109 {
}
movieClip 127 {
}
movieClip 147 {
frame 1 {
gotoAndStop(_parent._currentframe - 4);
}
frame 41 {
i = 1;
while (i < 40) {
if (_root.inven['box' + i]._currentframe == 21) {
_root.inven['box' + i].gotoAndStop(1);
}
++i;
}
}
frame 42 {
i = 1;
while (i < 40) {
if (_root.inven['box' + i]._currentframe == 45) {
_root.inven['box' + i].gotoAndStop(1);
}
++i;
}
}
}
movieClip 148 {
frame 1 {
stop();
}
instance of movieClip 147 {
onClipEvent (enterFrame) {
this.gotoAndStop(_parent._currentframe - 4);
}
}
frame 7 {
if (_root.even7 == 9) {
_root.TUTS.nextFrame();
_root.even7 = 10;
}
}
}
button 149 {
on (press) {
if (_root.txt_number == 0) {
gotoAndStop(5);
}
}
}
button 151 {
on (press) {
if ((_root._currentframe < 40 || _root._currentframe == 55) && _root.even7 > 1) {
if (_root.even7 == 2) {
_root.TUTS.nextFrame();
_root.even7 = 3;
}
_root.take = _root.micon._currentframe;
_root.micon.gotoAndStop(2);
}
}
}
button 152 {
on (press) {
if (_root._currentframe < 40 || _root._currentframe == 55) {
_root.take = _root.micon._currentframe;
_root.micon.gotoAndStop(4);
}
}
}
button 153 {
on (press) {
if ((_root._currentframe < 40 || _root._currentframe == 55) && _root.even7 > 3) {
if (_root.even7 == 4) {
_root.TUTS.nextFrame();
_root.even7 = 5;
}
_root.take = _root.micon._currentframe;
_root.micon.gotoAndStop(1);
}
}
}
button 155 {
on (press) {
if (_root._currentframe == 3) {
_root.even42 = 1;
}
_root.load_x = 300;
_root.load_y = 450;
_root.fade.gotoAndPlay(1);
stopAllSounds();
_root.gotoAndStop(2);
}
}
movieClip 158 {
frame 1 {
stop();
}
}
button 160 {
on (press) {
getURL('http://www.bgroupproductions.com/B-group/pages/walkforhewitt.html', 'blank');
}
}
button 161 {
on (press) {
if (_root.txt_number <= 1 && _root._currentframe < 40 && _root.even7 > 5) {
gotoAndStop(5);
}
}
}
button 162 {
on (press) {
getURL('http://www.armorgames.com/tutorials/hewitt-tutorial.html', 'blank');
}
}
button 166 {
on (press, keyPress '<Space>') {
if (_root.txt_number <= 1 && _root._currentframe < 40 && _root.even7 > 5) {
_root.TUTS.nextFrame();
gotoAndStop(2);
}
}
}
movieClip 181 {
}
button 186 {
on (press) {
_root.indialogue = '';
}
}
button 193 {
on (press) {
if (_root.micon._currentframe == 38) {
_root.indicount = 100;
_root.indialogue = 'Now I should be unbeatable!';
_root.even9 = 2;
_root.micon.gotoAndStop(1);
_root.sfx.gotoAndStop(3);
i = 1;
while (i < 40) {
if (_root.inven['box' + i]._currentframe == 5) {
_root.inven['box' + i].gotoAndStop(39);
}
++i;
}
gotoAndStop(39);
}
}
}
button 204 {
on (press) {
if (_root.micon._currentframe == 2) {
_root.indicount = 100;
_root.indialogue = 'A stirdy paper clip.';
}
if (_root.micon._currentframe == 1) {
_root.indicount = 100;
_root.indialogue = 'I\'ll just take this paper clip off here.';
i = 1;
while (i < 40) {
_root.take = 15;
_root.sfx.gotoAndStop(3);
if (_root.inven['box' + i]._currentframe == 10) {
_root.inven['box' + i].gotoAndStop(17);
}
gotoAndStop(17);
++i;
}
}
}
}
button 213 {
on (press) {
if (_root.micon._currentframe == 18) {
if (_root.talk9 < 3) {
_root.indicount = 100;
_root.indialogue = 'What am I going to do with that?';
} else {
_root.indicount = 100;
_root.indialogue = 'That\'s a start.';
_root.micon.gotoAndStop(1);
_root.sfx.gotoAndStop(3);
i = 1;
while (i < 40) {
if (_root.inven['box' + i]._currentframe == 14) {
_root.inven['box' + i].gotoAndStop(62);
}
++i;
}
gotoAndStop(62);
}
}
}
}
button 215 {
on (press) {
if (_root.micon._currentframe == 1) {
if (_root.even40 == 1) {
_root.indicount = 100;
_root.indialogue = 'It\'s bending.';
_root.sfx.gotoAndStop(3);
if (_root.bend_clicky >= 3) {
_root.indialogue = 'It\'s completely bent.';
i = 1;
while (i < 40) {
if (_root.inven['box' + i]._currentframe == 15) {
_root.inven['box' + i].gotoAndStop(16);
}
++i;
}
gotoAndStop(16);
} else {
++_root.bend_clicky;
}
} else {
_root.indicount = 100;
_root.indialogue = 'Why would I want to bend it straight?';
}
}
}
}
button 221 {
on (press) {
if (_root.micon._currentframe == 58) {
_root.indicount = 100;
_root.indialogue = 'Now all I need is Hoggard!';
_root.micon.gotoAndStop(1);
_root.sfx.gotoAndStop(3);
i = 1;
while (i < 40) {
if (_root.inven['box' + i]._currentframe == 17) {
_root.inven['box' + i].gotoAndStop(59);
}
++i;
}
gotoAndStop(59);
}
}
}
button 224 {
on (press) {
if (_root.micon._currentframe == 14) {
if (_root.talk9 < 3) {
_root.indicount = 100;
_root.indialogue = 'What am I going to do with that?';
} else {
_root.indicount = 100;
_root.indialogue = 'That\'s a start.';
_root.micon.gotoAndStop(1);
_root.sfx.gotoAndStop(3);
i = 1;
while (i < 40) {
if (_root.inven['box' + i]._currentframe == 18) {
_root.inven['box' + i].gotoAndStop(62);
}
++i;
}
gotoAndStop(62);
}
}
}
}
button 227 {
on (press) {
if (_root.micon._currentframe == 40) {
_root.indicount = 100;
_root.indialogue = 'The onion is now cut open.';
i = 1;
while (i < 40) {
_root.micon.gotoAndStop(1);
_root.sfx.gotoAndStop(3);
if (_root.inven['box' + i]._currentframe == 19) {
_root.inven['box' + i].gotoAndStop(41);
}
gotoAndStop(41);
++i;
}
}
}
}
button 236 {
on (press) {
if (_root.micon._currentframe == 24 || _root.micon._currentframe == 25 || _root.micon._currentframe == 30) {
_root.indicount = 100;
if (_root.even34 == 0) {
_root.indialogue = 'Why would I spoil Ms Aventez\'s fine cooking?';
} else {
i = 1;
while (i < 40) {
if (_root.inven['box' + i]._currentframe == 23) {
_root.inven['box' + i].gotoAndStop(1);
}
++i;
}
gotoAndStop(1);
_root.indialogue = 'This will teach Sean to keep his oversized fingers out of people\'s food.';
_root.sfx.gotoAndStop(3);
_root.poison1 = 1;
_root.poison2 = 1;
_root.poison3 = 1;
}
}
}
}
button 239 {
on (press) {
if (_root.micon._currentframe == 23) {
_root.indicount = 100;
if (_root.even34 == 0) {
_root.indialogue = 'Why would I spoil Ms Aventez\'s fine cooking?';
} else {
_root.indialogue = 'This will teach Sean to keep his oversized fingers out of people\'s food.';
_root.micon.gotoAndStop(1);
_root.sfx.gotoAndStop(3);
_root.poison1 = 1;
_root.poison2 = 1;
_root.poison3 = 1;
}
}
}
}
button 245 {
on (press) {
if (_root.micon._currentframe == 49) {
if (_root.talk10 >= 2) {
_root.indicount = 100;
_root.indialogue = 'And... viola, PIGFLY!';
_root.micon.gotoAndStop(1);
_root.sfx.gotoAndStop(3);
i = 1;
while (i < 40) {
if (_root.inven['box' + i]._currentframe == 26) {
_root.inven['box' + i].gotoAndStop(50);
}
++i;
}
gotoAndStop(50);
} else {
_root.indicount = 100;
_root.indialogue = 'Why would I do that?';
}
}
}
}
button 250 {
on (press) {
if (_root.micon._currentframe == 44) {
if (_root.even35 == 1) {
_root.indicount = 100;
_root.indialogue = 'And He\'s a... superfly, superfly!';
_root.micon.gotoAndStop(1);
_root.sfx.gotoAndStop(3);
i = 1;
while (i < 40) {
if (_root.inven['box' + i]._currentframe == 29) {
_root.inven['box' + i].gotoAndStop(26);
}
++i;
}
gotoAndStop(26);
} else {
_root.indicount = 100;
_root.indialogue = 'I don\'t wanna use this on Tedward, I don\'t know what it will do to him.';
}
}
}
}
button 255 {
on (press) {
if (_root.micon._currentframe == 62) {
_root.even39 = 1;
_root.indicount = 100;
_root.indialogue = 'And now we have a corsage';
_root.micon.gotoAndStop(1);
_root.sfx.gotoAndStop(3);
i = 1;
while (i < 40) {
if (_root.inven['box' + i]._currentframe == 31) {
_root.inven['box' + i].gotoAndStop(34);
}
++i;
}
gotoAndStop(34);
}
}
}
button 269 {
on (press) {
if (_root.micon._currentframe == 5) {
_root.indicount = 100;
_root.indialogue = 'Now I should be unbeatable!';
_root.even9 = 2;
_root.micon.gotoAndStop(1);
_root.sfx.gotoAndStop(3);
i = 1;
while (i < 40) {
if (_root.inven['box' + i]._currentframe == 38) {
_root.inven['box' + i].gotoAndStop(39);
}
++i;
}
gotoAndStop(39);
}
}
}
button 274 {
on (press) {
if (_root.micon._currentframe == 19) {
_root.indicount = 100;
_root.indialogue = 'The onion is now cut open.';
i = 1;
while (i < 40) {
_root.micon.gotoAndStop(1);
_root.sfx.gotoAndStop(3);
if (_root.inven['box' + i]._currentframe == 40) {
_root.inven['box' + i].gotoAndStop(41);
}
gotoAndStop(41);
++i;
}
}
}
}
button 281 {
on (press) {
if (_root.micon._currentframe == 29) {
if (_root.even35 == 1) {
_root.indicount = 100;
_root.indialogue = 'And He\'s a... superfly, superfly!';
_root.micon.gotoAndStop(1);
_root.sfx.gotoAndStop(3);
i = 1;
while (i < 40) {
if (_root.inven['box' + i]._currentframe == 44) {
_root.inven['box' + i].gotoAndStop(26);
}
++i;
}
gotoAndStop(26);
} else {
_root.indicount = 100;
_root.indialogue = 'I don\'t wanna use this on Tedward, I don\'t know what it will do to him.';
}
}
}
}
button 292 {
on (press) {
if (_root.micon._currentframe == 26) {
if (_root.talk10 >= 2) {
_root.indicount = 100;
_root.indialogue = 'And... viola, PIGFLY!';
_root.micon.gotoAndStop(1);
_root.sfx.gotoAndStop(3);
i = 1;
while (i < 40) {
if (_root.inven['box' + i]._currentframe == 49) {
_root.inven['box' + i].gotoAndStop(50);
}
++i;
}
gotoAndStop(50);
} else {
_root.indicount = 100;
_root.indialogue = 'Why would I do that?';
}
}
}
}
button 302 {
on (press) {
if (_root.micon._currentframe == 7 && _root.even7 >= 10) {
_root.indicount = 100;
_root.indialogue = 'Now everything is as it should be!';
_root.TUTS.nextFrame();
_root.even36 = 3;
_root.micon.gotoAndStop(1);
_root.sfx.gotoAndStop(3);
i = 1;
while (i < 40) {
if (_root.inven['box' + i]._currentframe == 53) {
_root.inven['box' + i].gotoAndStop(54);
}
++i;
}
gotoAndStop(54);
}
}
}
button 309 {
on (press) {
if (_root.micon._currentframe == 57) {
_root.indicount = 100;
_root.indialogue = 'Not too bad if I say so myself!';
_root.micon.gotoAndStop(1);
_root.sfx.gotoAndStop(3);
i = 1;
while (i < 40) {
if (_root.inven['box' + i]._currentframe == 56) {
_root.inven['box' + i].gotoAndStop(60);
}
++i;
}
gotoAndStop(60);
}
}
}
button 312 {
on (press) {
if (_root.micon._currentframe == 56) {
_root.indicount = 100;
_root.indialogue = 'Not too bad if I say so myself!';
_root.micon.gotoAndStop(1);
_root.sfx.gotoAndStop(3);
i = 1;
while (i < 40) {
if (_root.inven['box' + i]._currentframe == 57) {
_root.inven['box' + i].gotoAndStop(60);
}
++i;
}
gotoAndStop(60);
}
}
}
button 315 {
on (press) {
if (_root.micon._currentframe == 17) {
_root.indicount = 100;
_root.indialogue = 'Now all I need is Hoggard!';
_root.micon.gotoAndStop(1);
_root.sfx.gotoAndStop(3);
i = 1;
while (i < 40) {
if (_root.inven['box' + i]._currentframe == 58) {
_root.inven['box' + i].gotoAndStop(59);
}
++i;
}
gotoAndStop(59);
}
}
}
button 318 {
on (press) {
if (_root.micon._currentframe == 60) {
_root.indicount = 100;
_root.indialogue = 'I\'ve created a monster!';
_root.micon.gotoAndStop(1);
_root.sfx.gotoAndStop(3);
i = 1;
while (i < 40) {
if (_root.inven['box' + i]._currentframe == 59) {
_root.inven['box' + i].gotoAndStop(61);
}
++i;
}
gotoAndStop(61);
}
}
}
button 321 {
on (press) {
if (_root.micon._currentframe == 59) {
_root.indicount = 100;
_root.indialogue = 'I\'ve created a monster!';
_root.micon.gotoAndStop(1);
_root.sfx.gotoAndStop(3);
i = 1;
while (i < 40) {
if (_root.inven['box' + i]._currentframe == 60) {
_root.inven['box' + i].gotoAndStop(61);
}
++i;
}
gotoAndStop(61);
}
}
}
button 325 {
on (press) {
if (_root.micon._currentframe == 31) {
_root.even39 = 1;
_root.indicount = 100;
_root.indialogue = 'And now we have a corsage';
_root.micon.gotoAndStop(1);
_root.sfx.gotoAndStop(3);
i = 1;
while (i < 40) {
if (_root.inven['box' + i]._currentframe == 62) {
_root.inven['box' + i].gotoAndStop(34);
}
++i;
}
gotoAndStop(34);
}
}
}
movieClip 326 {
frame 1 {
stop();
}
frame 7 {
if (_root.even7 == 7 && _root.micon._currentframe == 2) {
_root.TUTS.nextFrame();
_root.even7 = 8;
}
}
frame 53 {
if (_root.even7 > 9) {
_root.TUTS.gotoAndStop(13);
}
}
}
button 327 {
on (press) {
gotoAndStop(5);
}
}
button 331 {
on (press) {
if (_root.max_objects < 38) {
_root.min_objects += 2;
_root.max_objects += 2;
e = 1;
while (e < 40) {
_root.inven['box' + e]._y -= 70;
++e;
}
}
}
}
button 332 {
on (press) {
if (_root.min_objects > 1) {
_root.min_objects -= 2;
_root.max_objects -= 2;
e = 1;
while (e < 40) {
_root.inven['box' + e]._y += 70;
++e;
}
}
}
}
button 333 {
on (press, keyPress '<Space>') {
if (_root.even7 > 9 && _root.even36 == 3) {
if (_root.even7 == 10) {
_root.TUTS.nextFrame();
_root.even7 = 11;
}
gotoAndStop(1);
}
}
}
button 339 {
on (press) {
gotoAndStop(4);
}
}
button 341 {
on (press) {
if (_root.even7 == 18) {
_root.TUTS.nextFrame();
_root.even7 = 19;
}
_root.micon.gotoAndStop(1);
_root.sfx.gotoAndStop(2);
_root.inven.gotoAndStop(1);
}
}
button 351 {
on (press) {
i = 1;
while (i < 100) {
_root.inven['box' + i].gotoAndStop(1);
_root['talk' + i] = 0;
_root['even' + i] = 0;
_root['taken' + i] = 0;
++i;
}
_root.micon.gotoAndStop(1);
_root.sfx.gotoAndStop(2);
_root.inven.gotoAndStop(1);
}
}
button 354 {
on (press) {
gotoAndStop(1);
}
}
button 357 {
on (press) {
i = 1;
while (i < 100) {
_root.inven['box' + i].gotoAndStop(1);
_root['taken' + i] = 0;
_root['event' + i] = 0;
++i;
}
_root.micon.gotoAndStop(1);
stopAllSounds();
_root.gotoAndStop(1);
_root.inven.gotoAndStop(1);
}
}
movieClip 358 {
frame 1 {
stop();
}
}
button 363 {
on (press) {
_root.saveing = 1;
_root.save_file_chosen = 1;
}
}
button 366 {
on (press) {
_root.saveing = 1;
_root.save_file_chosen = 2;
}
}
button 368 {
on (press) {
_root.saveing = 1;
_root.save_file_chosen = 3;
}
}
button 370 {
on (press) {
_root.saveing = 1;
_root.save_file_chosen = 4;
}
}
button 372 {
on (press) {
_root.saveing = 1;
_root.save_file_chosen = 5;
}
}
button 374 {
on (press) {
_root.saveing = 1;
_root.save_file_chosen = 6;
}
}
button 376 {
on (press) {
_root.saveing = 1;
_root.save_file_chosen = 7;
}
}
button 378 {
on (press) {
_root.saveing = 1;
_root.save_file_chosen = 8;
}
}
button 388 {
on (press) {
savefile = SharedObject.getLocal('Hewitt_file' + _root.save_file_chosen);
savefile.data.save_name = _root.input_file_name;
i = 1;
while (i < 100) {
savefile.data['box_frame' + i] = _root.inven['box' + i]._currentframe;
savefile.data['taken' + i] = _root['taken' + i];
savefile.data['even' + i] = _root['even' + i];
savefile.data['talk' + i] = _root['talk' + i];
++i;
}
savefile.data.even7 = 20;
savefile.data.even41 = 1;
_root.success_type = 2;
_root.fade_success = 50;
savefile.flush();
_root.sfx.gotoAndStop(2);
_root.saveing = 0;
_parent.gotoAndStop(1);
}
}
movieClip 390 {
frame 1 {
stop();
}
frame 2 {
if (_root.even7 == 13) {
_root.even7 = 14;
}
}
}
movieClip 391 {
frame 1 {
_root.saveing = 0;
}
frame 1 {
stop();
if (_root.even7 == 14) {
_root.TUTS.nextFrame();
_root.even7 = 15;
}
}
frame 2 {
if (_root.even7 == 12) {
_root.TUTS.nextFrame();
_root.even7 = 13;
}
}
frame 2 {
_root.fade_success = 0;
i = 1;
while (i <= 8) {
savefile = SharedObject.getLocal('Hewitt_file' + i);
if (savefile.data.save_name != undefined) {
_root['file_name' + i] = savefile.data.save_name;
} else {
_root['file_name' + i] = 'empty';
}
_root['file_name' + i];
++i;
}
}
instance new_save of movieClip 390 {
onClipEvent (enterFrame) {
(_root.saveing == 1) ? this.gotoAndStop(2) : this.gotoAndStop(1);
}
}
}
button 394 {
on (press) {
if (_root.even7 == 20) {
_root.load_file_chosen = 1;
if (_root['file_name' + _root.load_file_chosen] != 'empty') {
_root.loading = 1;
}
}
}
}
button 396 {
on (press) {
if (_root.even7 == 20) {
_root.load_file_chosen = 2;
if (_root['file_name' + _root.load_file_chosen] != 'empty') {
_root.loading = 1;
}
}
}
}
button 398 {
on (press) {
if (_root.even7 == 20) {
_root.load_file_chosen = 3;
if (_root['file_name' + _root.load_file_chosen] != 'empty') {
_root.loading = 1;
}
}
}
}
button 400 {
on (press) {
if (_root.even7 == 20) {
_root.load_file_chosen = 4;
if (_root['file_name' + _root.load_file_chosen] != 'empty') {
_root.loading = 1;
}
}
}
}
button 402 {
on (press) {
if (_root.even7 == 20) {
_root.load_file_chosen = 5;
if (_root['file_name' + _root.load_file_chosen] != 'empty') {
_root.loading = 1;
}
}
}
}
button 404 {
on (press) {
if (_root.even7 == 20) {
_root.load_file_chosen = 6;
if (_root['file_name' + _root.load_file_chosen] != 'empty') {
_root.loading = 1;
}
}
}
}
button 406 {
on (press) {
if (_root.even7 == 20) {
_root.load_file_chosen = 7;
if (_root['file_name' + _root.load_file_chosen] != 'empty') {
_root.loading = 1;
}
}
}
}
button 408 {
on (press) {
if (_root.even7 == 20) {
_root.load_file_chosen = 8;
if (_root['file_name' + _root.load_file_chosen] != 'empty') {
_root.loading = 1;
}
}
}
}
button 411 {
on (press) {
_root.load_vars();
}
}
button 412 {
on (press) {
_parent.gotoAndStop(1);
}
}
movieClip 413 {
frame 1 {
stop();
}
}
movieClip 414 {
frame 1 {
stop();
_root.loading = 0;
if (_root.even7 == 16) {
_root.TUTS.nextFrame();
_root.even7 = 17;
}
}
frame 2 {
_root.fade_success = 0;
i = 1;
while (i <= 8) {
savefile = SharedObject.getLocal('Hewitt_file' + i);
if (savefile.data.save_name != undefined) {
_root['file_name' + i] = savefile.data.save_name;
} else {
_root['file_name' + i] = 'empty';
}
_root['file_name' + i];
++i;
}
if (_root.even7 == 15) {
_root.TUTS.nextFrame();
_root.even7 = 16;
}
}
instance of movieClip 413 {
onClipEvent (enterFrame) {
(_root.loading == 1) ? this.gotoAndStop(2) : this.gotoAndStop(1);
}
}
}
movieClip 417 {
}
button 422 {
on (press) {
gotoAndStop(1);
}
}
button 424 {
on (press) {
gotoAndStop(1);
}
}
button 425 {
on (press, keyPress '<Space>') {
gotoAndStop(2);
}
}
movieClip 433 {
frame 1 {
stop();
}
}
button 437 {
on (press) {
nextFrame();
}
}
movieClip 448 {
}
button 461 {
on (press) {
_root.inven.gotoAndStop(1);
}
}
movieClip 463 {
frame 1 {
stop();
}
}
movieClip 464 {
frame 1 {
if (_root.even7 == 11) {
_root.txt_number = 1;
_root.di1 = 12;
_root.next_dis1 = 2;
_root.next_txt1 = 'Maybe I should save my progress on the computer now.';
}
if (_root.even7 == 19) {
_root.even7 = 20;
_root.txt_number = 1;
_root.next_dis1 = 2;
_root.di1 = 14;
_root.next_txt1 = 'Now I think I\'m ready to go. I better hurry up and find a girl for the dance before it\'s too late!';
}
if (from_tute == 1) {
_root.even40 = 1;
_root.txt_number = 2;
_root.next_txt2 = 'And that\'s pretty much all there is to it really. If you need any more help with that just come back here and talk to me.';
_root.di2 = 576;
_root.next_dis2 = 17;
_root.next_txt1 = 'Thanks Casper.';
_root.di1 = 577;
_root.next_dis1 = 2;
}
from_tute = 0;
}
frame 1 {
stop();
if (_root.merri._currentframe == 1) {
_root.bgSound.setVolume(_root.snd_calc);
}
i = 1;
while (i < 40) {
_root.inven['box' + i]._visible = false;
if (_root.inven['box' + i].orig_x == undefined) {
_root.inven['box' + i].orig_x = _root.inven['box' + i]._x;
_root.inven['box' + i].orig_y = _root.inven['box' + i]._y;
}
_root.inven['box' + i]._x = _root.inven['box' + i].orig_x;
_root.inven['box' + i]._y = _root.inven['box' + i].orig_y;
++i;
}
_root.min_objects = 1;
_root.max_objects = 1;
}
instance of movieClip 44 {
onClipEvent (load) {
this.bar._x = _root.snd_calc;
down = 0;
sel = 0;
}
onClipEvent (mouseDown) {
down = 1;
}
onClipEvent (mouseUp) {
sel = 0;
down = 0;
}
onClipEvent (enterFrame) {
wid = this.bar._width / 2;
if (!(down == 1 && this.hitTest(_root._xmouse, _root._ymouse, true))) {
} else {
sel = 1;
}
poo;
dist = _root._xmouse - (this._x + _parent._x);
if (!(sel == 1 && dist > wid && dist < 100 - wid)) {
} else {
this.bar._x = dist - wid;
}
poo;
if (sel != 1) {
} else {
_root.snd_calc = this.bar._x;
}
poo;
_root.snd_calc <= 5 ? _root.bgSound.setVolume(0) : ((_root.merri._currentframe == 1) ? _root.bgSound.setVolume(_root.snd_calc) : poo);
}
}
instance of movieClip 46 {
onClipEvent (load) {
speed = 75;
this.bar._x = _root.speed_calc * speed - speed;
down = 0;
sel = 0;
}
onClipEvent (mouseDown) {
down = 1;
}
onClipEvent (mouseUp) {
sel = 0;
down = 0;
}
onClipEvent (enterFrame) {
wid = this.bar._width / 2;
if (!(down == 1 && this.hitTest(_root._xmouse, _root._ymouse, true))) {
} else {
sel = 1;
}
poo;
dist = _root._xmouse - (this._x + _parent._x);
if (!(sel == 1 && dist > wid && dist < 100 - wid)) {
} else {
this.bar._x = dist - wid;
}
poo;
if (sel != 1) {
} else {
_root.speed_calc = (this.bar._x + speed) / speed;
}
poo;
}
}
instance box2 of movieClip 148 {
onClipEvent (load) {
if (_root.even7 == 0) {
this.gotoAndStop(53);
}
}
}
instance home of movieClip 158 {
onClipEvent (enterFrame) {
if (_root._currentframe < 30 && _root.inven._currentframe == 1 && _root._currentframe > 2 && _root.txt_number <= 1) {
if (_root._currentframe == 11 && _root.talk7 == 1 && _root.even14 == 0) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
} else {
this.gotoAndStop(2);
}
}
}
frame 2 {
_root.indialogue = '';
if (_root.even7 == 6) {
_root.even7 = 7;
}
}
frame 2 {
_root.lvl.hewitt.walk.stop();
if (_root.merri._currentframe == 1) {
_root.bgSound.setVolume(_root.snd_calc / 4);
}
i = 1;
while (i < 40) {
_root.inven['box' + i]._visible = true;
_root.inven['box' + i]._x = _root.inven['box' + i].orig_x;
_root.inven['box' + i]._y = _root.inven['box' + i].orig_y;
++i;
}
_root.min_objects = 1;
_root.max_objects = 11;
}
instance of movieClip 181 {
onClipEvent (load) {
_root.indicount = 0;
}
onClipEvent (enterFrame) {
if (_root.indicount > 0) {
play();
--_root.indicount;
} else {
_root.indialogue = '';
gotoAndStop(1);
}
}
}
frame 4 {
_root.micon.gotoAndStop(3);
_root.lvl.hewitt.walk.stop();
_root.take = _root.micon._currentframe;
if (_root.merri._currentframe == 1) {
_root.bgSound.setVolume(_root.snd_calc / 4);
}
i = 1;
while (i < 40) {
_root.inven['box' + i]._visible = false;
++i;
}
_root.min_objects = 1;
_root.max_objects = _root.total_objects + 1;
}
instance of movieClip 358 {
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse, true) && this._currentframe == 1) {
if (_root.even7 > 16) {
if (_root.even7 == 17) {
_root.TUTS.nextFrame();
_root.even7 = 18;
}
this.gotoAndStop(2);
}
}
}
onClipEvent (mouseDown) {
if (!this.hitTest(_root._xmouse, _root._ymouse, true)) {
this.gotoAndStop(1);
}
}
}
instance saver of movieClip 391 {
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
this.gotoAndStop(2);
}
}
onClipEvent (mouseDown) {
if (!this.hitTest(_root._xmouse, _root._ymouse, true) && _root.even7 > 14) {
this.gotoAndStop(1);
}
}
}
instance loader of movieClip 414 {
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
this.gotoAndStop(2);
}
}
onClipEvent (mouseDown) {
if (!this.hitTest(_root._xmouse, _root._ymouse, true)) {
this.gotoAndStop(1);
}
}
}
instance of movieClip 417 {
onClipEvent (load) {
_root.fade_success = 0;
}
onClipEvent (enterFrame) {
this.gotoAndStop(_root.success_type);
_root.fade_success > 0 ? (100 and _root.fade_success--) : 0;
}
}
frame 5 {
i = 1;
while (i < 40) {
_root.inven['box' + i]._visible = false;
++i;
}
}
frame 6 {
_root.load_x = 275;
_root.load_y = 475;
}
frame 6 {
_root.micon.gotoAndStop(3);
_root.lvl.hewitt.walk.stop();
_root.take = _root.micon._currentframe;
if (_root.merri._currentframe == 1) {
_root.bgSound.setVolume(_root.snd_calc / 4);
}
i = 1;
while (i < 40) {
_root.inven['box' + i]._visible = false;
++i;
}
_root.min_objects = 1;
_root.max_objects = _root.total_objects + 1;
}
instance of movieClip 358 {
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse, true) && this._currentframe == 1) {
if (_root.even7 > 16) {
if (_root.even7 == 17) {
_root.even7 = 18;
}
this.gotoAndStop(2);
}
}
}
onClipEvent (mouseDown) {
if (!this.hitTest(_root._xmouse, _root._ymouse, true)) {
this.gotoAndStop(1);
}
}
}
instance saver of movieClip 391 {
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
this.gotoAndStop(2);
}
}
onClipEvent (mouseDown) {
if (!this.hitTest(_root._xmouse, _root._ymouse, true) && _root.even7 > 14) {
this.gotoAndStop(1);
}
}
}
instance loader of movieClip 414 {
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
this.gotoAndStop(2);
}
}
onClipEvent (mouseDown) {
if (!this.hitTest(_root._xmouse, _root._ymouse, true)) {
this.gotoAndStop(1);
}
}
}
instance of movieClip 433 {
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
this.gotoAndStop(2);
}
}
onClipEvent (mouseDown) {
if (!this.hitTest(_root._xmouse, _root._ymouse, true)) {
this.gotoAndStop(1);
}
}
}
frame 7 {
from_tute = 1;
}
}
movieClip 468 {
}
movieClip 479 {
}
movieClip 488 {
}
movieClip 496 {
}
movieClip 507 {
}
movieClip 517 {
}
movieClip 524 {
}
movieClip 532 {
}
movieClip 540 {
}
movieClip 548 {
}
movieClip 561 {
}
movieClip 571 {
}
movieClip 579 {
}
movieClip 589 {
}
movieClip 600 {
}
movieClip 608 {
}
movieClip 609 {
frame 1 {
stop();
}
instance of movieClip 468 {
onClipEvent (enterFrame) {
if (_root.txt_number > 1) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
}
}
movieClip 610 {
}
movieClip 611 {
instance of movieClip 609 {
onClipEvent (enterFrame) {
this.gotoAndStop(_root.dis);
}
}
instance of movieClip 610 {
onClipEvent (enterFrame) {
this.onMouseDown = function () {
if (_root.txt_number > 0 && this.hitTest(_root.micon)) {
_root.endDi = 1;
}
};
if (_root.endDi == 1) {
_root.endDi = 0;
if (_root.txt == 'Ok. Here, let me show you.') {
_root.inven.gotoAndStop(7);
}
if (_root.txt == 'Lets do this.') {
_root.fade.gotoAndPlay(1);
stopAllSounds();
_root.take = _root.micon._currentframe;
_root.micon.gotoAndStop(1);
_root.gotoAndStop(62);
}
if (_root.txt == 'I hope you\'re ready to lose.') {
_root.fade.gotoAndPlay(1);
stopAllSounds();
_root.take = _root.micon._currentframe;
_root.micon.gotoAndStop(1);
_root.gotoAndStop(43);
}
if (_root.txt == 'I hope you\'re feeling lucky.') {
_root.fade.gotoAndPlay(1);
stopAllSounds();
_root.take = _root.micon._currentframe;
_root.micon.gotoAndStop(1);
_root.gotoAndStop(52);
}
if (_root._currentframe == 19 && _root.even17 == 0) {
_root.nogo.exit1._x = _root.lvl.hewitt._x;
_root.nogo.exit1._y = _root.lvl.hewitt._y;
}
if (_root.txt_number == 1 && _root.even7 == 0) {
_root.TUTS.nextFrame();
_root.even7 = 1;
}
--_root.txt_number;
}
}
}
}
movieClip 618 {
}
movieClip 619 {
}
movieClip 628 {
}
movieClip 718 {
frame 113 {
_root.men.nextFrame();
}
}
movieClip 723 {
}
movieClip 741 {
frame 185 {
_root.men.nextFrame();
}
}
movieClip 742 {
frame 1 {
_root.c_x = 275;
_root.c_y = 200;
cnt = 1;
onEnterFrame = function () {
duplicateMovieClip(this.star, 's' + cnt, cnt);
++cnt;
duplicateMovieClip(this.star, 's' + cnt, cnt);
++cnt;
if (cnt > 100) {
cnt = 1;
}
};
}
instance star of movieClip 723 {
onClipEvent (load) {
if (this._name == 'star') {
} else {
this.gotoAndStop(1);
this._rotation = random(360);
this._x += random(10) - 5;
this._y += random(10) - 5;
}
}
onClipEvent (enterFrame) {
if (this._name == 'star') {
} else {
xcalc = Math.pow(this._x - _root.c_x, 2);
this._width += 5;
this._height = this._width;
this._x += (this._x - _root.c_x) / 3;
this._y += (this._y - _root.c_y) / 3;
}
}
}
instance of movieClip 741 {
onClipEvent (load) {
this.swapDepths(1000);
}
}
}
button 745 {
on (press) {
getURL('http://www.bgroupproductions.com', 'blank');
}
}
button 747 {
on (press) {
getURL('http://www.meriwetherrock.com', 'blank');
}
}
movieClip 749 {
}
button 750 {
on (release) {
getURL('http://www.armorgames.com', 'blank');
}
}
movieClip 752 {
}
movieClip 754 {
}
movieClip 756 {
}
movieClip 758 {
frame 90 {
_root.men.nextFrame();
}
}
button 759 {
on (press) {
getURL('http://www.armorgames.com', 'blank');
}
}
button 764 {
on (release) {
stopAllSounds();
_root.fade.play();
_root.gotoAndStop(70);
}
}
button 767 {
on (release) {
_root.men.nextFrame();
}
}
button 770 {
on (release) {
getURL('http://www.armorgames.com', 'blank');
}
}
button 773 {
on (release) {
_root.men.gotoAndStop(7);
}
}
button 775 {
on (release) {
_root.men.prevFrame();
}
}
button 778 {
on (press) {
_root.load_file_chosen = 1;
if (_root['file_name' + _root.load_file_chosen] != 'empty') {
_root.load_vars();
_root.even7 = 20;
}
}
}
button 780 {
on (release) {
_root.men.gotoAndStop(5);
}
}
button 782 {
on (press) {
_root.load_file_chosen = 2;
if (_root['file_name' + _root.load_file_chosen] != 'empty') {
_root.load_vars();
_root.even7 = 20;
}
}
}
button 784 {
on (press) {
_root.load_file_chosen = 3;
if (_root['file_name' + _root.load_file_chosen] != 'empty') {
_root.load_vars();
_root.even7 = 20;
}
}
}
button 786 {
on (press) {
_root.load_file_chosen = 4;
if (_root['file_name' + _root.load_file_chosen] != 'empty') {
_root.load_vars();
_root.even7 = 20;
}
}
}
button 788 {
on (press) {
_root.load_file_chosen = 5;
if (_root['file_name' + _root.load_file_chosen] != 'empty') {
_root.load_vars();
_root.even7 = 20;
}
}
}
button 790 {
on (press) {
_root.load_file_chosen = 6;
if (_root['file_name' + _root.load_file_chosen] != 'empty') {
_root.load_vars();
_root.even7 = 20;
}
}
}
button 792 {
on (press) {
_root.load_file_chosen = 7;
if (_root['file_name' + _root.load_file_chosen] != 'empty') {
_root.load_vars();
_root.even7 = 20;
}
}
}
button 794 {
on (press) {
_root.load_file_chosen = 8;
if (_root['file_name' + _root.load_file_chosen] != 'empty') {
_root.load_vars();
_root.even7 = 20;
}
}
}
movieClip 796 {
frame 1 {
stop();
stopAllSounds();
onEnterFrame = function () {
if (_root.men._currentframe == 1) {
_root.bytesLoaded = _root.getBytesLoaded();
_root.bytesTotal = _root.getBytesTotal();
percentLoaded = Math.round(10000 * (_root.bytesLoaded / _root.bytesTotal)) / 100;
_root.men.bar.gotoAndStop(percentLoaded);
_root.percent = percentLoaded + '%';
if (_root.bytesLoaded >= _root.bytesTotal) {
_root.men.play();
}
}
};
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 7 {
i = 1;
while (i <= 8) {
savefile = SharedObject.getLocal('Hewitt_file' + i);
if (savefile.data.save_name != undefined) {
_root['file_name' + i] = savefile.data.save_name;
} else {
_root['file_name' + i] = 'empty';
}
_root['file_name' + i];
++i;
}
}
}
movieClip 802 {
frame 1 {
stop();
}
instance of movieClip 147 {
onClipEvent (enterFrame) {
this.gotoAndStop(_parent._currentframe - 4);
}
}
frame 7 {
if (_root.even7 == 8) {
_root.TUTS.nextFrame();
_root.even7 = 9;
}
}
}
instance micon of movieClip 802 {
onClipEvent (enterFrame) {
_root.work();
}
}
button 803 {
on (keyPress 'z') {
if (_root.togglet == 0 && _root.even7 == 20 && _root._currentframe > 1 && _root._currentframe < 40 && _root.inven._currentframe == 1 && _root.txt_number <= 1) {
_root.TUTS.nextFrame();
_root.even41 = 1;
new_frame = _root.micon._currentframe;
if (new_frame > 4) {
_root.take = new_frame;
}
foundframe = 0;
while (foundframe == 0) {
--new_frame;
if (new_frame < 1) {
new_frame = 62;
} else {
if (new_frame < 5) {
foundframe = new_frame;
}
}
i = 1;
while (i < 100) {
if (_root.inven['box' + i]._currentframe == new_frame) {
_root.inven['box' + i].gotoAndStop(1);
foundframe = new_frame;
}
++i;
}
if (foundframe == 3) {
foundframe = 2;
}
}
_root.micon.gotoAndStop(foundframe);
}
_root.togglet = 2;
}
on (keyPress 'x') {
if (_root.togglet == 0 && _root.even7 == 20 && _root._currentframe > 1 && _root._currentframe < 40 && _root.inven._currentframe == 1 && _root.txt_number <= 1) {
_root.TUTS.nextFrame();
_root.even41 = 1;
new_frame = _root.micon._currentframe;
if (new_frame > 4) {
_root.take = new_frame;
}
foundframe = 0;
while (foundframe == 0) {
++new_frame;
if (new_frame > 62) {
new_frame = 1;
} else {
if (new_frame < 5) {
foundframe = new_frame;
}
}
i = 1;
while (i < 100) {
if (_root.inven['box' + i]._currentframe == new_frame) {
_root.inven['box' + i].gotoAndStop(1);
foundframe = new_frame;
}
++i;
}
if (foundframe == 3) {
foundframe = 4;
}
}
_root.micon.gotoAndStop(foundframe);
}
_root.togglet = 2;
}
}
movieClip 815 {
frame 1 {
_root.bgSound.setVolume(_root.snd_calc / 100);
}
frame 2 {
_root.bgSound.setVolume(_root.snd_calc / 80);
}
frame 3 {
_root.bgSound.setVolume(_root.snd_calc / 60);
}
frame 4 {
_root.bgSound.setVolume(_root.snd_calc / 40);
}
frame 5 {
_root.bgSound.setVolume(_root.snd_calc / 20);
}
frame 6 {
_root.bgSound.setVolume(_root.snd_calc / 10);
}
frame 7 {
_root.bgSound.setVolume(_root.snd_calc / 6);
}
frame 8 {
_root.bgSound.setVolume(_root.snd_calc / 2);
}
frame 9 {
_root.bgSound.setVolume(_root.snd_calc);
}
frame 10 {
stop();
if (_root.even39 == 2) {
_root.even39 = 3;
_root.txt_number = 1;
_root.next_dis1 = 2;
_root.di1 = 16;
_root.next_txt1 = 'I think I\'m all set for tonight now. I should go home and get ready.';
}
if (_root.talk9 == 2) {
_root.talk9 = 3;
_root.txt_number = 1;
_root.next_dis1 = 2;
_root.di1 = 15;
_root.next_txt1 = 'Too bad I don’t have a corsage or know how to dance.';
}
if (_root.talk9 > 0 && _root.talk11 == 3 && _root.even31 == 1 && _root.even32 == 1 && _root.taken52 == 0) {
_root.txt_number = 1;
_root.next_dis1 = 14;
_root.di1 = 451;
_root.next_txt1 = 'Oh my I hate mice! Please do something!';
}
if (_root.talk9 > 0 && _root.talk11 == 2 && _root.even31 == 1 && _root.even32 == 1 && _root._currentframe == 25 && _root.distress == 1) {
_root.talk11 = 3;
_root.txt_number = 2;
_root.next_dis2 = 14;
_root.next_txt2 = 'Someone please help me! I’m cornered here!';
_root.di2 = 450;
_root.next_dis1 = 2;
_root.next_txt1 = 'Hmm, It sounds like it\'s coming from that empty hallway down there.';
_root.di1 = 11;
}
if (_root.even7 == 0 && _root._currentframe == 2) {
_root.txt_number = 2;
_root.next_dis2 = 2;
_root.di2 = 10;
_root.next_txt2 = 'What a strange dream, but... I guess I better take its advice.';
_root.next_dis1 = 2;
_root.di1 = 13;
_root.next_txt1 = 'Now where did I leave my keys? They aren\'t still in my pocket are they?';
}
if (_root.even28 == 1) {
_root.even28 = 2;
_root.talk10 = 3;
_root.txt_number = 5;
_root.next_dis5 = 11;
_root.di5 = 386;
_root.next_txt5 = 'Well whaddya know, I guess now I\'ve seen everything...';
_root.next_dis4 = 2;
_root.di4 = 387;
_root.next_txt4 = 'You said if you saw a pig fly you\'d help me! I think a little help is in order...';
_root.next_dis3 = 11;
_root.di3 = 388;
_root.next_txt3 = 'Ok then. Hmm, well how about this? Theres a locker around this school that I cracked into, its combination is 7382';
_root.next_dis2 = 11;
_root.di2 = 389;
_root.next_txt2 = 'If you find it and open it, you can keep what\'s inside.';
_root.next_dis1 = 2;
_root.di1 = 390;
_root.next_txt1 = 'Thanks, I guess.';
}
if (_root._currentframe == 10) {
if ((_root.poison1 == 1 || _root.poison2 == 1 || _root.poison3 == 1) && _root.even14 == 0) {
_root.poison1 = 0;
_root.poison2 = 0;
_root.poison3 = 0;
_root.txt_number = 1;
_root.next_dis1 = 2;
_root.next_txt1 = 'Hmm maybe next time I should use all the eye drops and poison all the food to be sure.';
}
}
if (_root._currentframe == 7) {
if (_root.even5 == 1) {
_root.txt_number = 1;
_root.next_dis1 = 2;
_root.next_txt1 = 'Haha I am Unstoppable!';
_root.even5 = 2;
_root.sfx.gotoAndStop(3);
}
}
if (_root._currentframe == 19) {
if (_root.even17 == 0) {
_root.txt_number = 1;
_root.next_dis1 = 2;
_root.next_txt1 = 'It\'s too dark in here, I can\'t see a thing!';
}
}
if (_root.fromRaven == 1 && _root._currentframe == 6) {
_root.fromRaven = 0;
if (_root.ravenMSG == 'YOU HAVE FAILED') {
if (_root.even9 == 2) {
_root.txt_number = 2;
_root.next_dis2 = 6;
_root.di2 = 498;
_root.next_txt2 = 'Yes! 50 more game points added to my average... Oh and better luck next time!';
_root.next_dis1 = 2;
_root.di1 = 500;
_root.next_txt1 = 'Wow he beat me even though I have the hacker, I should be able to win next time!';
} else {
_root.txt_number = 2;
_root.next_dis2 = 6;
_root.di2 = 498;
_root.next_txt2 = 'Yes! 50 more game points added to my average... Oh and better luck next time!';
_root.next_dis1 = 2;
_root.di1 = 501;
_root.next_txt1 = 'He seems to be unbeatable? I need to find something that will enhance my skills.';
}
} else {
_root.even9 = 1;
_root.txt_number = 1;
_root.next_dis1 = 6;
_root.di1 = 499;
_root.next_txt1 = 'Wow I can\'t believe you actually beat me... Well a deal is a deal... Here take my Private Raven Collectors Knife. Nothing is sharper.';
_root.sfx.gotoAndStop(3);
_root.take = 40;
}
}
if (_root.fromfrog == 1 && _root._currentframe == 18) {
_root.fromfrog = 0;
if (_root.even17 == 0) {
_root.txt_number = 2;
_root.next_dis2 = 11;
_root.di2 = 384;
_root.next_txt2 = 'I knew you were gonna be bad, but not this bad! Come back when you think you\'re good enough!';
_root.next_dis1 = 2;
_root.di1 = 385;
_root.next_txt1 = 'You don\'t need to rub it in.';
}
if (_root.even17 == 1) {
_root.sfx.gotoAndStop(3);
_root.take = 22;
_root.txt_number = 2;
_root.next_dis2 = 11;
_root.di2 = 382;
_root.next_txt2 = 'How did you do that, I\'ve been training this frog for years! Well here ya go, take my lighter.';
_root.next_dis1 = 2;
_root.di1 = 383;
_root.next_txt1 = 'It was a pleasure doing business with you.';
}
}
if (_root.even15 == 1) {
_root.txt_number = 2;
_root.next_txt2 = 'What\'s that sound??';
_root.next_dis2 = 2;
_root.next_txt1 = 'It\'s coming from the street!';
_root.next_dis1 = 2;
_root.bunnydeath.play();
_root.even15 = 2;
}
}
}
movieClip 840 {
frame 1 {
stop();
}
}
instance sfx of movieClip 840 {
onClipEvent (load) {
wait = 0;
wait2 = 0;
bell = 0;
}
onClipEvent (enterFrame) {
this.gotoAndStop(1);
if (_root._currentframe == 14) {
wait = random(500) + 1;
(wait == 10 && wait2 > 100) ? (this.gotoAndStop(6) and 0) : wait2++;
}
if (_root._currentframe == 4) {
wait = random(500) + 1;
(wait == 10 && wait2 > 100 && bell == 0) ? (this.gotoAndStop(7) and 1) : wait2++;
}
}
}
movieClip 844 {
frame 1 {
stop();
}
frame 285 {
(_root.inven._currentframe == 1) ? _root.bgSound.setVolume(_root.snd_calc) : _root.bgSound.setVolume(_root.snd_calc / 4);
}
}
instance merri of movieClip 844 {
onClipEvent (enterFrame) {
if (this._currentframe > 1) {
(_root.inven._currentframe == 1) ? _root.bgSound.setVolume(_root.snd_calc / 8) : _root.bgSound.setVolume(_root.snd_calc / 16);
}
}
}
movieClip 847 {
frame 1 {
stop();
}
frame 2 {
_root.take = 24;
_root.poison1 = 0;
}
frame 4 {
_root.take = 25;
_root.poison2 = 0;
}
frame 6 {
_root.take = 30;
_root.poison3 = 0;
}
}
movieClip 851 {
frame 1 {
stopAllSounds();
stop();
onEnterFrame = function () {
_root.gardenstream = this._currentframe;
};
}
frame 2 {
_root.SNDschool.gotoAndStop(1);
_root.SNDscary.gotoAndStop(1);
_root.SNDtoilet.gotoAndStop(1);
_root.SNDlosin.gotoAndStop(1);
_root.SNDspirits.gotoAndStop(1);
_root.SNDjazz.gotoAndStop(1);
_root.SNDwalk.gotoAndStop(1);
_root.SNDsloop.gotoAndStop(1);
}
frame 800 {
gotoAndPlay(2);
}
}
movieClip 853 {
frame 1 {
stopAllSounds();
stop();
onEnterFrame = function () {
_root.schoolstream = this._currentframe;
};
}
frame 2 {
_root.SNDgarden.gotoAndStop(1);
_root.SNDscary.gotoAndStop(1);
_root.SNDtoilet.gotoAndStop(1);
_root.SNDlosin.gotoAndStop(1);
_root.SNDspirits.gotoAndStop(1);
_root.SNDjazz.gotoAndStop(1);
_root.SNDwalk.gotoAndStop(1);
_root.SNDsloop.gotoAndStop(1);
}
frame 1440 {
gotoAndPlay(2);
}
}
movieClip 856 {
frame 1 {
stopAllSounds();
stop();
}
frame 2 {
_root.SNDgarden.gotoAndStop(1);
_root.SNDschool.gotoAndStop(1);
_root.SNDtoilet.gotoAndStop(1);
_root.SNDlosin.gotoAndStop(1);
_root.SNDspirits.gotoAndStop(1);
_root.SNDjazz.gotoAndStop(1);
_root.SNDwalk.gotoAndStop(1);
_root.SNDsloop.gotoAndStop(1);
}
frame 3 {
stop();
}
}
movieClip 859 {
frame 1 {
stopAllSounds();
stop();
}
frame 2 {
_root.SNDgarden.gotoAndStop(1);
_root.SNDschool.gotoAndStop(1);
_root.SNDscary.gotoAndStop(1);
_root.SNDlosin.gotoAndStop(1);
_root.SNDspirits.gotoAndStop(1);
_root.SNDjazz.gotoAndStop(1);
_root.SNDwalk.gotoAndStop(1);
_root.SNDsloop.gotoAndStop(1);
}
frame 3 {
stop();
}
}
movieClip 862 {
frame 1 {
stopAllSounds();
stop();
}
frame 2 {
_root.SNDgarden.gotoAndStop(1);
_root.SNDschool.gotoAndStop(1);
_root.SNDscary.gotoAndStop(1);
_root.SNDtoilet.gotoAndStop(1);
_root.SNDspirits.gotoAndStop(1);
_root.SNDjazz.gotoAndStop(1);
_root.SNDwalk.gotoAndStop(1);
_root.SNDsloop.gotoAndStop(1);
}
frame 3 {
stop();
}
}
movieClip 864 {
frame 1 {
stopAllSounds();
stop();
onEnterFrame = function () {
_root.happystream = this._currentframe;
};
}
frame 2 {
_root.SNDgarden.gotoAndStop(1);
_root.SNDschool.gotoAndStop(1);
_root.SNDscary.gotoAndStop(1);
_root.SNDtoilet.gotoAndStop(1);
_root.SNDlosin.gotoAndStop(1);
_root.SNDjazz.gotoAndStop(1);
_root.SNDwalk.gotoAndStop(1);
_root.SNDsloop.gotoAndStop(1);
}
frame 810 {
gotoAndPlay(2);
}
}
movieClip 867 {
frame 1 {
stop();
stopAllSounds();
}
frame 2 {
_root.SNDgarden.gotoAndStop(1);
_root.SNDschool.gotoAndStop(1);
_root.SNDscary.gotoAndStop(1);
_root.SNDtoilet.gotoAndStop(1);
_root.SNDlosin.gotoAndStop(1);
_root.SNDspirits.gotoAndStop(1);
_root.SNDjazz.gotoAndStop(1);
_root.SNDsloop.gotoAndStop(1);
}
frame 3 {
stop();
}
}
movieClip 870 {
frame 1 {
stopAllSounds();
stop();
}
frame 2 {
_root.SNDgarden.gotoAndStop(1);
_root.SNDschool.gotoAndStop(1);
_root.SNDscary.gotoAndStop(1);
_root.SNDtoilet.gotoAndStop(1);
_root.SNDlosin.gotoAndStop(1);
_root.SNDspirits.gotoAndStop(1);
_root.SNDjazz.gotoAndStop(1);
_root.SNDwalk.gotoAndStop(1);
}
frame 3 {
stop();
}
}
movieClip 873 {
frame 150 {
stop();
_root.endDi = 1;
}
}
movieClip 874 {
frame 120 {
stop();
_root.endDi = 1;
}
}
movieClip 875 {
frame 90 {
stop();
_root.endDi = 1;
}
}
movieClip 876 {
frame 140 {
stop();
_root.endDi = 1;
}
}
movieClip 877 {
frame 155 {
stop();
_root.endDi = 1;
}
}
movieClip 878 {
frame 110 {
stop();
_root.endDi = 1;
}
}
movieClip 879 {
frame 105 {
stop();
_root.endDi = 1;
}
}
movieClip 880 {
frame 95 {
stop();
_root.endDi = 1;
}
}
movieClip 881 {
frame 85 {
stop();
_root.endDi = 1;
}
}
// unknown tag 731 length 3
// unknown tag 461 length 41
// unknown tag 469 length 28
// unknown tag 847 length 27
// unknown tag 295 length 25
// unknown tag 750 length 25
// unknown tag 711 length 9
// unknown tag 954 length 22
// unknown tag 890 length 8
// unknown tag 171 length 54
// unknown tag 128 length 0
// unknown tag 704 length 29
// unknown tag 190 length 21
// unknown tag 318 length 42
// unknown tag 1005 length 50
// unknown tag 249 length 7
// unknown tag 730 length 1
// unknown tag 864 length 55
// unknown tag 806 length 6
// unknown tag 87 length 12
// unknown tag 110 length 35
// unknown tag 86 length 38
// unknown tag 916 length 50
// unknown tag 269 length 20
// unknown tag 868 length 51
// unknown tag 118 length 5
// unknown tag 392 length 60
// unknown tag 553 length 60
// unknown tag 468 length 42
// unknown tag 598 length 61
// unknown tag 618 length 5
// unknown tag 751 length 9
// unknown tag 542 length 51
// unknown tag 478 length 50
// unknown tag 285 length 27
// unknown tag 466 length 10
// unknown tag 507 length 58
// unknown tag 410 length 50
// unknown tag 975 length 38
// unknown tag 871 length 49
// unknown tag 802 length 32
// unknown tag 926 length 6
// unknown tag 88 length 0
// unknown tag 903 length 47
// unknown tag 511 length 57
// unknown tag 909 length 38
// unknown tag 670 length 17
// unknown tag 834 length 49
// unknown tag 336 length 22
// unknown tag 596 length 2
// unknown tag 554 length 14
// unknown tag 730 length 21
// unknown tag 434 length 24
// unknown tag 793 length 40
// unknown tag 593 length 0
// unknown tag 786 length 16
// unknown tag 397 length 40
// unknown tag 1020 length 53
// unknown tag 678 length 51
// unknown tag 273 length 20
// unknown tag 80 length 7
// unknown tag 760 length 2
// unknown tag 478 length 38
// unknown tag 410 length 46
// unknown tag 899 length 45
// unknown tag 266 length 16
// unknown tag 81 length 1
// unknown tag 598 length 12
// unknown tag 127 length 32
// unknown tag 169 length 38
// unknown tag 1022 length 46
// unknown tag 127 length 22
// unknown tag 361 length 54
// unknown tag 470 length 1
// unknown tag 903 length 43
// unknown tag 525 length 33
// unknown tag 355 length 13
// unknown tag 713 length 48
// unknown tag 176 length 50
// unknown tag 479 length 20
// unknown tag 309 length 13
// unknown tag 602 length 1
// unknown tag 92 length 21
// unknown tag 484 length 15
// unknown tag 421 length 27
// unknown tag 732 length 32
// unknown tag 160 length 20
// unknown tag 505 length 24
// unknown tag 854 length 61
// unknown tag 929 length 33
// unknown tag 236 length 10
// unknown tag 318 length 46
// unknown tag 329 length 43
// unknown tag 362 length 10
// unknown tag 698 length 26
// unknown tag 844 length 56
// unknown tag 772 length 41
// unknown tag 439 length 34
// unknown tag 660 length 36
// unknown tag 201 length 6
// unknown tag 449 length 45
// unknown tag 528 length 16
// unknown tag 525 length 56
// unknown tag 671 length 8
// unknown tag 538 length 27
// unknown tag 971 length 20
// unknown tag 111 length 8
// unknown tag 450 length 19
// unknown tag 685 length 13
// unknown tag 949 length 42
// unknown tag 888 length 4
// unknown tag 383 length 57
// unknown tag 130 length 1431695211
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 67108859 length -16843009
// unknown tag 298 length 10
// unknown tag 899 length 16
// unknown tag 1022 length 39
// unknown tag 482 length 46
// unknown tag 518 length 8
// unknown tag 876 length 22
// unknown tag 1010 length 53
// unknown tag 350 length 45
// unknown tag 260 length 11
// unknown tag 438 length 58
// unknown tag 423 length 49
// unknown tag 921 length 58
// unknown tag 855 length 61
// unknown tag 141 length 20
// unknown tag 873 length 57
// unknown tag 718 length 45
// unknown tag 924 length 50
// unknown tag 722 length 56
// unknown tag 183 length 54
// unknown tag 967 length 45
// unknown tag 594 length 14
// unknown tag 578 length 5
// unknown tag 915 length 30
// unknown tag 770 length 54
// unknown tag 377 length 7
// unknown tag 200 length 24
// unknown tag 467 length 45
// unknown tag 862 length 31
// unknown tag 468 length 55
// unknown tag 795 length 10
// unknown tag 196 length 59
// unknown tag 628 length 29
// unknown tag 282 length 15
// unknown tag 755 length 9
// unknown tag 213 length 46
// unknown tag 721 length 14