Combined Code
movieClip 5 {
}
movieClip 11 {
frame 1 {
function timerHandler() {
if (!loadingComplete) {
var v4 = _root.getBytesLoaded() / _root.getBytesTotal();
bar._xscale = 100 * v4;
if (v4 == 1) {
loadingComplete = true;
if (AUTO_PLAY) {
startMovie();
} else {
gotoAndStop('loaded');
}
return undefined;
}
}
dt = getTimer() - time;
time += dt;
frameAccum += dt;
var v3 = 0;
for (;;) {
if (!(frameAccum >= FRAME_TIME && v3 < MAX_FRAME_SKIP)) break;
advanceFrame(tankLogo, true, true);
advanceFrame(loadingText, false, true);
advanceFrame(barGfx, false, true);
if (loadingComplete) {
advanceFrame(this, false, false);
}
frameAccum -= FRAME_TIME;
v3++;
}
updateAfterEvent();
}
function advanceFrame(clip, recurse, loop) {
if (!clip) {
return undefined;
}
clip.stop();
if (clip._currentframe == clip._totalframes) {
if (loop) {
clip.gotoAndStop(1);
}
} else {
clip.nextFrame();
}
if (recurse) {
for (childName in clip) {
if (typeof clip[childName] == 'movieclip') {
advanceFrame(clip[childName], recurse, loop);
}
}
}
}
function startMovie() {
clearInterval(intervalId);
_root.play();
}
_root.stop();
stop();
var FRAME_TIME = 33.33333333333334;
var AUTO_PLAY = false;
var MAX_FRAME_SKIP = 5;
var loadingComplete;
var intervalId;
var time;
var frameAccum;
loadingComplete = false;
intervalId = setInterval(this, 'timerHandler', FRAME_TIME / 2);
frameAccum = 0;
time = getTimer();
timerHandler();
}
frame 37 {
startMovie();
}
}
frame 2 {
talking = false;
walking = false;
fade = false;
bedlock = true;
inventory = false;
plan = false;
money = false;
emptypetrol = false;
minigame = false;
otherguytalking = false;
petrolcount = 0;
fullpetrol = false;
}
frame 2 {
stop();
}
// unknown tag 88 length 67
// unknown tag 88 length 60
// unknown tag 88 length 63
button 24 {
on (release) {
play();
}
}
frame 3 {
stop();
}
movieClip 27 {
}
movieClip 31 {
}
instance of movieClip 31 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.locate._x, _root.locate._y, true) && _root.locate.query == false && _root.locate.grab == false) {
_root.locate.hit = true;
} else {
_root.locate.hit = false;
}
}
}
movieClip 33 {
}
instance of movieClip 33 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.locate._x, _root.locate._y, true)) {
_root.locate.query = true;
} else {
_root.locate.query = false;
}
}
}
movieClip 35 {
}
instance of movieClip 35 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.locate._x, _root.locate._y, true)) {
_root.locate.grab = true;
} else {
_root.locate.grab = false;
}
}
}
movieClip 37 {
}
instance of movieClip 37 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (mouseDown) {
if (this.hitTest(_root.locate._x, _root.locate._y, true) && _root.locate.query == true) {
_root.text = 'Ah... What a fine day to exact my nonspecific revenge.';
_root.talking = true;
}
}
}
instance of movieClip 37 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (mouseDown) {
if (this.hitTest(_root.locate._x, _root.locate._y, true) && _root.locate.query == true) {
_root.text = 'No need to make my bed. Not today.';
_root.talking = true;
}
}
}
instance of movieClip 37 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (mouseDown) {
if (this.hitTest(_root.locate._x, _root.locate._y, true) && _root.locate.query == true) {
if (_root.fullpetrol == false) {
_root.text = 'My computer. Don\'t need to use this... yet.';
_root.talking = true;
} else {
_root.text = 'Internet > newgrounds.com > I TOLD U I WAS HARDCORE!!!';
_root.talking = true;
_root.thisisit.play();
}
}
}
}
instance of movieClip 37 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (mouseDown) {
if (this.hitTest(_root.locate._x, _root.locate._y, true) && _root.locate.query == true) {
_root.text = 'A door! I SHOULD WALK UP TO IT TO USE IT YES THAT IS A FINE IDEA';
_root.talking = true;
}
}
}
movieClip 39 {
}
instance of movieClip 39 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle._x, _root.circle._y, true) && _root.walking == false) {
_root.framenumber = 4;
_root.locate._x = -1000;
_root.fade = true;
_root.newx = 70;
_root.newy = 275;
_root.sirtom.gotoAndStop(4);
}
}
}
movieClip 42 {
}
movieClip 43 {
}
instance circle of movieClip 43 {
onClipEvent (load) {
speed = 5;
}
onClipEvent (enterFrame) {
if (_root.inventory == false) {
if (_root.fade == false) {
if (_root.walking == false) {
Xd = _root.locate._x - _x;
Yd = _root.locate._y - _y;
radAngle = Math.atan2(Yd, Xd);
_rotation = int(radAngle * 360 / 6.283185307179586 + 90);
} else {
if (_rotation > 180) {
_y = _y + speed * Math.cos(0.0174532925199433 * _rotation);
_x = _x - speed * Math.sin(0.0174532925199433 * _rotation);
} else {
_y = _y - speed * Math.cos(0.0174532925199433 * _rotation);
_x = _x + speed * Math.sin(0.0174532925199433 * _rotation);
}
if (Xd >= 0) {
_root.sirtom.gotoAndStop(2);
} else {
_root.sirtom.gotoAndStop(3);
}
}
}
}
if (this._x > 545) {
_root.walking = false;
this._x = 543;
}
if (this._x < 5) {
_root.walking = false;
this._x = 7;
}
}
}
movieClip 45 {
}
movieClip 47 {
}
movieClip 49 {
}
movieClip 50 {
}
instance locate of movieClip 50 {
onClipEvent (load) {
hit = false;
query = false;
grab = false;
}
onClipEvent (enterFrame) {
if (_root.walking == false && _root.talking == false && _root.fade == false && _root.inventory == false) {
_x = _root._xmouse;
_y = _root._ymouse;
}
if (this.hitTest(_root.circle.hit)) {
_root.walking = false;
}
if (_root.talking == false && _root.inventory == false) {
if (hit == true) {
this.gotoAndStop(2);
} else {
if (query == true) {
this.gotoAndStop(3);
} else {
if (grab == true) {
this.gotoAndStop(4);
} else {
this.gotoAndStop(1);
}
}
}
} else {
this.gotoAndStop(5);
}
}
onClipEvent (mouseDown) {
if (_root.walking == false && _root.talking == false && hit == false && query == false && _root.fade == false && _root.inventory == false) {
_root.walking = true;
}
}
}
movieClip 54 {
}
movieClip 55 {
}
movieClip 79 {
}
movieClip 80 {
instance of movieClip 55 {
onClipEvent (enterFrame) {
if (_root.talking == true) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
}
}
movieClip 81 {
}
movieClip 82 {
frame 11 {
_root.gotoAndStop(_root.framenumber);
_root.circle._x = _root.newx;
_root.circle._y = _root.newy;
_root.fade = false;
_parent.gotoAndStop(1);
}
}
movieClip 85 {
frame 11 {
_root.fade = false;
_root.sirtom.gotoAndStop(1);
}
}
movieClip 86 {
instance of movieClip 55 {
onClipEvent (enterFrame) {
if (_root.talking == true && _root.otherguytalking == false) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
}
instance of movieClip 85 {
onClipEvent (enterFrame) {
_root.walking = false;
_root.circle._x += 2;
}
}
}
instance sirtom of movieClip 86 {
onClipEvent (load) {
this.gotoAndStop(1);
}
onClipEvent (enterFrame) {
_x = _root.circle._x;
_y = _root.circle._y;
if (_root.walking == false && _root.fade == false) {
this.gotoAndStop(1);
}
}
}
// unknown tag 88 length 69
movieClip 92 {
}
movieClip 93 {
}
instance of movieClip 93 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (enterFrame) {
if (_root.talking == true) {
_alpha = 100;
if (Key.isDown(32)) {
_root.talking = false;
_root.otherguytalking = false;
}
} else {
_alpha = 0;
}
}
}
button 99 {
on (release) {
nextFrame();
_root.inventory = true;
}
}
// unknown tag 88 length 62
// unknown tag 88 length 91
// unknown tag 88 length 86
movieClip 119 {
}
movieClip 123 {
}
movieClip 128 {
}
movieClip 130 {
}
// unknown tag 88 length 106
movieClip 135 {
}
movieClip 139 {
}
movieClip 144 {
}
button 145 {
on (release) {
prevFrame();
_root.inventory = false;
}
}
movieClip 146 {
frame 1 {
stop();
}
frame 2 {
stop();
}
instance of movieClip 119 {
onClipEvent (load) {
if (_root.plan == true) {
_alpha = 100;
} else {
_alpha = 0;
}
}
}
instance of movieClip 123 {
onClipEvent (load) {
if (_root.bedlock == true) {
_alpha = 0;
} else {
_alpha = 100;
}
}
}
instance of movieClip 128 {
onClipEvent (load) {
if (_root.money == true && _root.fullpetrol == false) {
_alpha = 100;
} else {
_alpha = 0;
}
}
}
instance of movieClip 139 {
onClipEvent (load) {
if (_root.emptypetrol == true && _root.fullpetrol == false) {
_alpha = 100;
} else {
_alpha = 0;
}
}
}
instance of movieClip 144 {
onClipEvent (load) {
if (_root.fullpetrol == true) {
_alpha = 100;
} else {
_alpha = 0;
}
}
}
}
instance of movieClip 42 {
onClipEvent (load) {
this.gotoAndStop(1);
}
onClipEvent (enterFrame) {
if (_root.walking == true or _root.talking == true or _root.fade == true or _root.inventory == true or _root.invscreen.hitTest(_root._xmouse, _root._ymouse, true)) {
_x = _root._xmouse;
_y = _root._ymouse;
_alpha = 60;
} else {
_alpha = 0;
_x = -1000;
}
}
onClipEvent (mouseMove) {
Mouse.hide();
}
}
movieClip 150 {
}
movieClip 158 {
frame 1 {
stop();
}
instance of movieClip 150 {
onClipEvent (load) {
_alpha = 0;
}
}
instance of movieClip 150 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.framenumber = 20;
_root.fade = true;
_root.sirtom.gotoAndStop(4);
}
}
}
frame 117 {
prevFrame();
}
}
frame 4 {
stop();
}
movieClip 162 {
}
instance of movieClip 162 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.locate._x, _root.locate._y, true) && _root.locate.query == false && _root.locate.grab == false) {
_root.locate.hit = true;
} else {
_root.locate.hit = false;
}
}
}
movieClip 164 {
}
instance of movieClip 164 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.locate._x, _root.locate._y, true)) {
_root.locate.query = true;
} else {
_root.locate.query = false;
}
}
}
instance of movieClip 37 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (mouseDown) {
if (this.hitTest(_root.locate._x, _root.locate._y, true) && _root.locate.query == true) {
_root.text = 'My parents\' room. It\'s locked. There\'s a picture of a club etched on the lock.';
_root.talking = true;
}
}
}
instance of movieClip 37 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (mouseDown) {
if (this.hitTest(_root.locate._x, _root.locate._y, true) && _root.locate.query == true) {
_root.text = 'My room, where I like to plan my nonspecific revenge.';
_root.talking = true;
}
}
}
instance of movieClip 37 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (mouseDown) {
if (this.hitTest(_root.locate._x, _root.locate._y, true) && _root.locate.query == true) {
_root.text = 'The bathroom. Where the poop goes.';
_root.talking = true;
}
}
}
instance of movieClip 39 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle._x, _root.circle._y, true) && _root.walking == false) {
_root.framenumber = 3;
_root.locate._x = -1000;
_root.fade = true;
_root.newx = 460;
_root.newy = 140;
_root.sirtom.gotoAndStop(4);
}
}
}
instance of movieClip 39 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle._x, _root.circle._y, true) && _root.walking == false) {
_root.framenumber = 5;
_root.locate._x = -1000;
_root.fade = true;
_root.newx = 255;
_root.newy = 152;
_root.sirtom.gotoAndStop(4);
}
}
}
instance of movieClip 39 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle._x, _root.circle._y, true) && _root.walking == false && _root.bedlock == false) {
_root.framenumber = 8;
_root.locate._x = -1000;
_root.fade = true;
_root.newx = 350;
_root.newy = 300;
_root.sirtom.gotoAndStop(4);
}
}
}
instance of movieClip 39 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle._x, _root.circle._y, true) && _root.walking == false) {
_root.framenumber = 6;
_root.locate._x = -1000;
_root.fade = true;
_root.newx = 422;
_root.newy = 310;
_root.sirtom.gotoAndStop(4);
}
}
}
frame 5 {
stop();
}
movieClip 167 {
}
instance of movieClip 167 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.locate._x, _root.locate._y, true) && _root.locate.query == false && _root.locate.grab == false) {
_root.locate.hit = true;
} else {
_root.locate.hit = false;
}
}
}
movieClip 169 {
}
instance of movieClip 169 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.locate._x, _root.locate._y, true) && _root.locate.grab == false) {
_root.locate.query = true;
} else {
_root.locate.query = false;
}
}
}
instance of movieClip 37 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (mouseDown) {
if (this.hitTest(_root.locate._x, _root.locate._y, true) && _root.locate.query == true) {
_root.text = 'No time to take a shower! I have to buy petrol! Maybe later, when I\'m in prison.';
_root.talking = true;
}
}
}
instance of movieClip 39 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle._x, _root.circle._y, true) && _root.walking == false) {
_root.framenumber = 4;
_root.locate._x = -1000;
_root.fade = true;
_root.newx = 345;
_root.newy = 275;
_root.sirtom.gotoAndStop(4);
}
}
}
instance of movieClip 37 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (mouseDown) {
if (this.hitTest(_root.locate._x, _root.locate._y, true) && _root.locate.query == true) {
_root.text = 'Back to the hallway. I ASSUME.';
_root.talking = true;
}
}
}
instance of movieClip 37 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (mouseDown) {
if (this.hitTest(_root.locate._x, _root.locate._y, true) && _root.locate.query == true) {
_root.text = 'I already shat out all my poop when I thought up THIS BRILLIANT PLAN.';
_root.talking = true;
}
}
}
instance of movieClip 37 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (mouseDown) {
if (this.hitTest(_root.locate._x, _root.locate._y, true) && _root.locate.query == true) {
_root.text = 'Ah... the sink. Our affair was too brief. Too fleeting.';
_root.talking = true;
}
}
}
instance of movieClip 37 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (mouseDown) {
if (this.hitTest(_root.locate._x, _root.locate._y, true) && _root.locate.query == true) {
_root.text = 'Lookin\' good.';
_root.talking = true;
}
}
}
movieClip 171 {
}
instance of movieClip 171 {
onClipEvent (load) {
if (_root.plan == false) {
_alpha = 100;
} else {
_alpha = 0;
_x = -1000;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.locate._x, _root.locate._y, true)) {
_root.locate.grab = true;
} else {
_root.locate.grab = false;
}
}
onClipEvent (mouseDown) {
if (this.hitTest(_root.locate._x, _root.locate._y, true)) {
_root.text = 'AH, MY PLAN. RIGHT WHERE I LEFT IT. [YOU GOT THE MASTAR PLAN]';
_root.talking = true;
_root.plan = true;
_x = -1000;
}
}
}
frame 6 {
stop();
}
movieClip 174 {
}
instance of movieClip 174 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.locate._x, _root.locate._y, true) && _root.locate.query == false && _root.locate.grab == false) {
_root.locate.hit = true;
} else {
_root.locate.hit = false;
}
}
}
movieClip 176 {
}
instance of movieClip 176 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.locate._x, _root.locate._y, true)) {
_root.locate.query = true;
} else {
_root.locate.query = false;
}
}
}
instance of movieClip 39 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle._x, _root.circle._y, true) && _root.walking == false) {
_root.framenumber = 9;
_root.locate._x = -1000;
_root.fade = true;
_root.newx = 150;
_root.newy = 190;
_root.sirtom.gotoAndStop(4);
}
}
}
instance of movieClip 37 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (mouseDown) {
if (this.hitTest(_root.locate._x, _root.locate._y, true) && _root.locate.query == true) {
_root.text = 'Another window.';
_root.talking = true;
}
}
}
instance of movieClip 37 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (mouseDown) {
if (this.hitTest(_root.locate._x, _root.locate._y, true) && _root.locate.query == true) {
_root.text = 'A window!';
_root.talking = true;
}
}
}
instance of movieClip 37 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (mouseDown) {
if (this.hitTest(_root.locate._x, _root.locate._y, true) && _root.locate.query == true) {
_root.text = 'Outside. The location for stages two, three, four, seven, eight, and nine of my master plan.';
_root.talking = true;
}
}
}
instance of movieClip 39 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle._x, _root.circle._y, true) && _root.walking == false) {
_root.framenumber = 7;
_root.locate._x = -1000;
_root.fade = true;
_root.newx = 90;
_root.newy = 120;
_root.sirtom.gotoAndStop(4);
}
}
}
instance of movieClip 39 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle._x, _root.circle._y, true) && _root.walking == false) {
_root.framenumber = 4;
_root.locate._x = -1000;
_root.fade = true;
_root.newx = 455;
_root.newy = 130;
_root.sirtom.gotoAndStop(4);
}
}
}
frame 7 {
stop();
}
movieClip 179 {
}
instance of movieClip 179 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.locate._x, _root.locate._y, true) && _root.locate.query == false && _root.locate.grab == false) {
_root.locate.hit = true;
} else {
_root.locate.hit = false;
}
}
}
movieClip 181 {
}
instance of movieClip 181 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.locate._x, _root.locate._y, true) && _root.locate.grab == false) {
_root.locate.query = true;
} else {
_root.locate.query = false;
}
}
}
instance of movieClip 39 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle._x, _root.circle._y, true) && _root.walking == false) {
_root.framenumber = 6;
_root.locate._x = -1000;
_root.fade = true;
_root.newx = 120;
_root.newy = 312;
_root.sirtom.gotoAndStop(4);
}
}
}
movieClip 183 {
}
instance of movieClip 183 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (mouseDown) {
if (this.hitTest(_root.locate._x, _root.locate._y, true) && _root.locate.query == true) {
_root.text = 'Just a countertop. Nothing to do with me setting my school on fire.';
_root.talking = true;
}
}
}
instance of movieClip 37 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (mouseDown) {
if (this.hitTest(_root.locate._x, _root.locate._y, true) && _root.locate.query == true) {
_root.text = 'The first refrigerator was invented by the Wright brothers in 1903 and flew for 12 seconds.';
_root.talking = true;
}
}
}
movieClip 186 {
}
movieClip 187 {
}
movieClip 188 {
}
instance of movieClip 188 {
onClipEvent (load) {
if (_root.bedlock == true) {
_alpha = 100;
} else {
_alpha = 0;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.locate._x, _root.locate._y, true)) {
_root.locate.grab = true;
} else {
_root.locate.grab = false;
}
if (_root.bedlock == false) {
this._x = -1000;
}
}
onClipEvent (mouseDown) {
if (this.hitTest(_root.locate._x, _root.locate._y, true)) {
_root.text = '[YOU GOT THE CLUB KEY]';
_root.talking = true;
_root.bedlock = false;
}
}
}
frame 8 {
stop();
}
movieClip 191 {
}
movieClip 193 {
}
movieClip 196 {
}
instance of movieClip 196 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.locate._x, _root.locate._y, true) && _root.locate.query == false && _root.locate.grab == false) {
_root.locate.hit = true;
} else {
_root.locate.hit = false;
}
}
}
instance of movieClip 39 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle._x, _root.circle._y, true) && _root.walking == false) {
_root.framenumber = 4;
_root.locate._x = -1000;
_root.fade = true;
_root.newx = 235;
_root.newy = 135;
_root.sirtom.gotoAndStop(4);
}
}
}
instance of movieClip 43 {
onClipEvent (load) {
_alpha = 0;
}
}
movieClip 198 {
}
instance of movieClip 198 {
onClipEvent (load) {
if (_root.money == false) {
_alpha = 100;
} else {
_alpha = 0;
_x = -1000;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.locate._x, _root.locate._y, true)) {
_root.locate.grab = true;
} else {
_root.locate.grab = false;
}
}
onClipEvent (mouseDown) {
if (this.hitTest(_root.locate._x, _root.locate._y, true)) {
_root.text = '[YOU GOT SOME MONEY]';
_root.talking = true;
_root.money = true;
_x = -1000;
}
}
}
frame 9 {
stop();
}
movieClip 201 {
}
instance of movieClip 201 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.locate._x, _root.locate._y, true) && _root.locate.query == false && _root.locate.grab == false) {
_root.locate.hit = true;
} else {
_root.locate.hit = false;
}
}
}
movieClip 203 {
}
instance of movieClip 203 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.locate._x, _root.locate._y, true)) {
_root.locate.query = true;
} else {
_root.locate.query = false;
}
}
}
instance of movieClip 37 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (mouseDown) {
if (this.hitTest(_root.locate._x, _root.locate._y, true) && _root.locate.query == true) {
_root.text = 'MAH HOUSE';
_root.talking = true;
}
}
}
instance of movieClip 37 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (mouseDown) {
if (this.hitTest(_root.locate._x, _root.locate._y, true) && _root.locate.query == true) {
_root.text = 'Garage? MORE LIKE GAY-RAGE AMIRITE LOLOLOLOLOLOLOLOL!!11`.';
_root.talking = true;
}
}
}
instance of movieClip 39 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle._x, _root.circle._y, true) && _root.walking == false) {
_root.framenumber = 6;
_root.locate._x = -1000;
_root.fade = true;
_root.newx = 260;
_root.newy = 125;
_root.sirtom.gotoAndStop(4);
}
}
}
instance of movieClip 39 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle._x, _root.circle._y, true) && _root.walking == false) {
_root.framenumber = 10;
_root.locate._x = -1000;
_root.fade = true;
_root.newx = 275;
_root.newy = 315;
_root.sirtom.gotoAndStop(4);
}
}
}
instance of movieClip 39 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle._x, _root.circle._y, true) && _root.walking == false) {
_root.framenumber = 11;
_root.locate._x = -1000;
_root.fade = true;
_root.newx = 30;
_root.newy = _root.circle._y;
_root.sirtom.gotoAndStop(4);
}
}
}
frame 10 {
stop();
}
movieClip 206 {
}
instance of movieClip 206 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.locate._x, _root.locate._y, true) && _root.locate.query == false && _root.locate.grab == false) {
_root.locate.hit = true;
} else {
_root.locate.hit = false;
}
}
}
movieClip 208 {
}
instance of movieClip 208 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.locate._x, _root.locate._y, true)) {
_root.locate.query = true;
} else {
_root.locate.query = false;
}
}
}
instance of movieClip 43 {
onClipEvent (load) {
_alpha = 0;
}
}
movieClip 210 {
}
instance of movieClip 210 {
onClipEvent (load) {
if (_root.emptypetrol == false) {
_alpha = 100;
} else {
_alpha = 0;
_x = -1000;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.locate._x, _root.locate._y, true)) {
_root.locate.grab = true;
} else {
_root.locate.grab = false;
}
}
onClipEvent (mouseDown) {
if (this.hitTest(_root.locate._x, _root.locate._y, true)) {
_root.text = 'This will be much better than carrying flammable liquid with my hands! [YOU GOT EMPTY CAN]';
_root.talking = true;
_root.emptypetrol = true;
_x = -1000;
}
}
}
instance of movieClip 37 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (mouseDown) {
if (this.hitTest(_root.locate._x, _root.locate._y, true) && _root.locate.query == true) {
_root.text = 'I love that show Home Improvement. And by \'Home Improvement\' I mean \'cocks\' ';
_root.talking = true;
}
}
}
instance of movieClip 39 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle._x, _root.circle._y, true) && _root.walking == false) {
_root.framenumber = 9;
_root.locate._x = -1000;
_root.fade = true;
_root.newx = 415;
_root.newy = 197;
_root.sirtom.gotoAndStop(4);
}
}
}
frame 11 {
stop();
}
movieClip 213 {
}
instance of movieClip 213 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.locate._x, _root.locate._y, true) && _root.locate.query == false && _root.locate.grab == false) {
_root.locate.hit = true;
} else {
_root.locate.hit = false;
}
}
}
movieClip 215 {
}
instance of movieClip 215 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.locate._x, _root.locate._y, true)) {
_root.locate.query = true;
} else {
_root.locate.query = false;
}
}
}
instance of movieClip 37 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (mouseDown) {
if (this.hitTest(_root.locate._x, _root.locate._y, true) && _root.locate.query == true) {
_root.text = 'That sure is some sort of stain. Boy howdy.';
_root.talking = true;
}
}
}
instance of movieClip 39 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle._x, _root.circle._y, true) && _root.walking == false) {
_root.framenumber = 12;
_root.locate._x = -1000;
_root.fade = true;
_root.newx = 30;
_root.newy = _root.circle._y;
_root.sirtom.gotoAndStop(4);
}
}
}
instance of movieClip 39 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle._x, _root.circle._y, true) && _root.walking == false) {
_root.framenumber = 9;
_root.locate._x = -1000;
_root.fade = true;
_root.newx = 510;
_root.newy = _root.circle._y;
_root.sirtom.gotoAndStop(4);
}
}
}
frame 12 {
stop();
}
movieClip 218 {
}
instance of movieClip 218 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.locate._x, _root.locate._y, true)) {
_root.locate.query = true;
} else {
_root.locate.query = false;
}
}
}
instance of movieClip 37 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (mouseDown) {
if (this.hitTest(_root.locate._x, _root.locate._y, true) && _root.locate.query == true) {
_root.text = 'The fence here seems to be broken.';
_root.talking = true;
}
}
}
instance of movieClip 37 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (mouseDown) {
if (this.hitTest(_root.locate._x, _root.locate._y, true) && _root.locate.query == true) {
_root.text = 'A drain. It leads to adventure. It\'s contents? Imagination.';
_root.talking = true;
}
}
}
instance of movieClip 39 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle._x, _root.circle._y, true) && _root.walking == false) {
_root.framenumber = 13;
_root.locate._x = -1000;
_root.fade = true;
_root.newx = 30;
_root.newy = _root.circle._y;
_root.sirtom.gotoAndStop(4);
}
}
}
instance of movieClip 39 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle._x, _root.circle._y, true) && _root.walking == false) {
_root.framenumber = 11;
_root.locate._x = -1000;
_root.fade = true;
_root.newx = 510;
_root.newy = _root.circle._y;
_root.sirtom.gotoAndStop(4);
}
}
}
frame 13 {
stop();
}
movieClip 224 {
}
instance of movieClip 224 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.locate._x, _root.locate._y, true)) {
_root.locate.query = true;
} else {
_root.locate.query = false;
}
}
}
instance of movieClip 37 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (mouseDown) {
if (this.hitTest(_root.locate._x, _root.locate._y, true) && _root.locate.query == true) {
_root.text = 'Oh man! It\'s my lucky day!';
_root.talking = true;
}
}
}
instance of movieClip 39 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle._x, _root.circle._y, true) && _root.walking == false) {
_root.framenumber = 12;
_root.locate._x = -1000;
_root.fade = true;
_root.newx = 510;
_root.newy = _root.circle._y;
_root.sirtom.gotoAndStop(4);
}
}
}
instance of movieClip 37 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (mouseDown) {
if (this.hitTest(_root.locate._x, _root.locate._y, true) && _root.locate.query == true) {
_root.text = 'One of the more questionable stores in the neighborhood.';
_root.talking = true;
}
}
}
instance of movieClip 39 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle._x, _root.circle._y, true) && _root.walking == false) {
_root.framenumber = 14;
_root.locate._x = -1000;
_root.fade = true;
_root.newx = 400;
_root.newy = 340;
_root.sirtom.gotoAndStop(4);
}
}
}
instance of movieClip 39 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle._x, _root.circle._y, true) && _root.walking == false) {
_root.framenumber = 15;
_root.locate._x = -1000;
_root.fade = true;
_root.newx = 30;
_root.newy = 330;
_root.sirtom.gotoAndStop(4);
}
}
}
instance of movieClip 43 {
onClipEvent (load) {
_alpha = 0;
}
}
frame 14 {
stop();
}
movieClip 233 {
}
movieClip 234 {
}
instance of movieClip 234 {
onClipEvent (load) {
this.gotoAndStop(1);
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.locate._x, _root.locate._y, true)) {
_root.locate.grab = true;
} else {
_root.locate.grab = false;
}
if (_root.otherguytalking == true) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
onClipEvent (mouseDown) {
if (this.hitTest(_root.locate._x, _root.locate._y, true)) {
if (_root.emptypetrol == true && _root.money == true && _root.fullpetrol == false) {
_root.text = 'Meet me in the back and we\'ll... \'fill up your can\'';
_root.otherguytalking = true;
_root.talking = true;
_root.minigame = true;
} else {
if (_root.fullpetrol == true) {
_root.text = 'You already got your petrols, daaaawwwwwggg.';
_root.otherguytalking = true;
_root.talking = true;
} else {
_root.text = 'I\'m sorry, but you need both MONEY and SOMETHING TO HOLD PETROL.';
_root.otherguytalking = true;
_root.talking = true;
}
}
}
}
}
movieClip 237 {
}
instance of movieClip 237 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.locate._x, _root.locate._y, true) && _root.locate.query == false && _root.locate.grab == false) {
_root.locate.hit = true;
} else {
_root.locate.hit = false;
}
}
}
movieClip 239 {
}
instance of movieClip 239 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.locate._x, _root.locate._y, true)) {
_root.locate.query = true;
} else {
_root.locate.query = false;
}
}
}
movieClip 241 {
}
instance of movieClip 241 {
onClipEvent (enterFrame) {
if (_root.minigame == true && _root.talking == false) {
_root.framenumber = 16;
_root.fade = true;
_root.newx = 330;
_root.newy = 265;
_root.sirtom.gotoAndStop(4);
}
}
}
instance of movieClip 39 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle._x, _root.circle._y, true) && _root.walking == false) {
_root.framenumber = 13;
_root.locate._x = -1000;
_root.fade = true;
_root.newx = 370;
_root.newy = 190;
_root.sirtom.gotoAndStop(4);
}
}
}
instance of movieClip 37 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (mouseDown) {
if (this.hitTest(_root.locate._x, _root.locate._y, true) && _root.locate.query == true) {
_root.text = 'What? Where\'s the petrol?! These shelves are bare!';
_root.talking = true;
}
}
}
frame 15 {
stop();
}
movieClip 244 {
}
instance of movieClip 244 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.locate._x, _root.locate._y, true) && _root.locate.query == false && _root.locate.grab == false) {
_root.locate.hit = true;
} else {
_root.locate.hit = false;
}
}
}
instance of movieClip 39 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle._x, _root.circle._y, true) && _root.walking == false) {
_root.framenumber = 13;
_root.locate._x = -1000;
_root.fade = true;
_root.newx = 475;
_root.newy = 190;
_root.sirtom.gotoAndStop(4);
}
}
}
instance of movieClip 43 {
onClipEvent (load) {
_alpha = 0;
}
}
frame 16 {
stop();
}
frame 16 {
stopAllSounds();
}
instance of movieClip 234 {
onClipEvent (load) {
this.gotoAndStop(1);
_root.locate.grab = false;
_root.locate._x = -1000;
}
onClipEvent (enterFrame) {
if (_root.otherguytalking == true) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
}
movieClip 246 {
frame 1 {
_root.text = 'Alright, so you made it. Good.';
_root.otherguytalking = true;
_root.talking = true;
_root.fade = true;
stop();
}
frame 23 {
_root.text = 'The pumps aren\'t working, so this is the only way we can service customers.';
_root.otherguytalking = true;
_root.talking = true;
stop();
}
frame 48 {
_root.text = 'I\'m going to spray petrol from up here, and you catch it in your can.';
_root.otherguytalking = true;
_root.talking = true;
stop();
}
frame 71 {
_root.text = 'I\'m also going to throw bombs, becuase I hate you.';
_root.otherguytalking = true;
_root.talking = true;
stop();
}
frame 96 {
_root.text = 'Ready?';
_root.otherguytalking = true;
_root.talking = true;
_root.fade = false;
stop();
}
frame 97 {
_root.nextFrame();
}
frame 99 {
prevFrame();
}
}
instance of movieClip 246 {
onClipEvent (enterFrame) {
if (_root.talking == false) {
this.nextFrame();
}
}
}
movieClip 248 {
}
instance of movieClip 248 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.locate._x, _root.locate._y, true) && _root.locate.query == false && _root.locate.grab == false) {
_root.locate.hit = true;
} else {
_root.locate.hit = false;
}
}
}
frame 17 {
stop();
}
movieClip 251 {
}
movieClip 253 {
}
movieClip 259 {
}
movieClip 261 {
}
movieClip 262 {
instance of movieClip 253 {
onClipEvent (load) {
_alpha = 0;
}
}
instance of movieClip 253 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle)) {
++_root.petrolcount;
}
}
}
frame 137 {
_root.greendot._x = random(370) + 120;
_root.greendot._y = random(145) + 185;
}
}
instance greendot of movieClip 262 {
onClipEvent (load) {
this._x = random(370) + 120;
this._y = random(145) + 185;
}
onClipEvent (enterFrame) {
if (_root.petrolcount >= 100) {
_root.petrolcount = 100;
_root.fullpetrol = true;
_root.nextFrame();
}
}
}
movieClip 265 {
}
movieClip 272 {
}
movieClip 275 {
}
movieClip 277 {
}
movieClip 279 {
}
movieClip 281 {
}
movieClip 282 {
instance of movieClip 253 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle._x, _root.circle._y, true)) {
_root.petrolcount -= 5;
}
}
}
instance of movieClip 253 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle)) {
_root.petrolcount -= 25;
if (_root.petrolcount < 0) {
_root.petrolcount = 0;
}
_root.fade = true;
_root.sirtom.gotoAndStop(5);
}
}
}
frame 94 {
_root.reddot1._x = random(370) + 120;
_root.reddot1._y = random(145) + 185;
}
}
frame 18 {
stop();
}
frame 18 {
stopAllSounds();
}
instance of movieClip 234 {
onClipEvent (load) {
this.gotoAndStop(1);
}
onClipEvent (enterFrame) {
if (_root.otherguytalking == true) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
}
movieClip 286 {
frame 1 {
_root.text = 'Oh damn, you\'re alive.';
_root.otherguytalking = true;
_root.talking = true;
_root.fade = true;
stop();
}
frame 23 {
_root.text = 'Well, looks like your can is full, so my job\'s done.';
_root.otherguytalking = true;
_root.talking = true;
stop();
}
frame 48 {
_root.text = 'I think I\'ll stay up on the roof for a bit though.';
_root.otherguytalking = true;
_root.talking = true;
stop();
}
frame 71 {
_root.text = 'Maybe do some meth.';
_root.otherguytalking = true;
_root.talking = true;
stop();
}
frame 96 {
_root.text = 'I think I can see my house from here and IT\'S ON FIRE OH GOD OH GOD';
_root.otherguytalking = true;
_root.talking = true;
_root.fade = false;
stop();
}
frame 99 {
prevFrame();
}
}
instance of movieClip 286 {
onClipEvent (enterFrame) {
if (_root.talking == false) {
this.nextFrame();
}
}
}
instance of movieClip 244 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.locate._x, _root.locate._y, true) && _root.locate.query == false && _root.locate.grab == false) {
_root.locate.hit = true;
} else {
_root.locate.hit = false;
}
}
}
instance of movieClip 39 {
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle._x, _root.circle._y, true) && _root.walking == false) {
_root.framenumber = 13;
_root.locate._x = -1000;
_root.fade = true;
_root.newx = 475;
_root.newy = 190;
_root.sirtom.gotoAndStop(4);
}
}
}
movieClip 287 {
instance of movieClip 150 {
onClipEvent (load) {
_alpha = 0;
}
}
frame 117 {
prevFrame();
}
}
instance of movieClip 287 {
onClipEvent (load) {
_root.minigame = false;
_root.fullpetrol = true;
}
}
frame 20 {
stop();
stopAllSounds();
}
instance sirtom of movieClip 86 {
onClipEvent (load) {
this.gotoAndStop(1);
}
onClipEvent (enterFrame) {
_x = _root.circle._x;
_y = _root.circle._y;
if (_root.walking == false && _root.fade == false) {
this.gotoAndStop(1);
}
}
}
movieClip 293 {
frame 155 {
_root.nextFrame();
}
}
frame 21 {
stop();
}
movieClip 300 {
}
movieClip 330 {
}
button 333 {
on (keyPress '<Space>') {
play();
}
}
movieClip 347 {
instance of movieClip 150 {
onClipEvent (load) {
_alpha = 0;
}
}
frame 117 {
prevFrame();
}
}
button 383 {
on (keyPress '<Space>') {
_root.play();
}
}
movieClip 384 {
instance of movieClip 55 {
onClipEvent (enterFrame) {
if (_root.talking == true && _root.otherguytalking == false) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
}
frame 137 {
stop();
}
instance of movieClip 55 {
onClipEvent (enterFrame) {
if (_root.talking == true && _root.otherguytalking == false) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
}
frame 388 {
stop();
}
instance of movieClip 55 {
onClipEvent (enterFrame) {
this.gotoAndStop(2);
}
}
instance of movieClip 55 {
onClipEvent (enterFrame) {
this.gotoAndStop(1);
}
}
frame 445 {
stop();
}
frame 461 {
stop();
}
}
frame 22 {
stop();
}
movieClip 387 {
frame 48 {
stop();
}
}