Combined Code
movieClip 6 bugShill {
frame 1 {
stop();
}
frame 10 {
prevFrame();
}
}
frame 1 {
mochi.as2.MochiAd.showPreGameAd({'id': '21a0a951ffbf23e1', 'res': '550x400', 'no_bg': 'true'});
}
movieClip 1110 __Packages.mochi.as2.MochiAd {
#initclip
if (!_global.mochi) {
_global.mochi = new Object();
}
if (!_global.mochi.as2) {
_global.mochi.as2 = new Object();
}
if (!_global.mochi.as2.MochiAd) {
var v1 = function () {};
mochi.as2.MochiAd = v1;
var v2 = v1.prototype;
v1.getVersion = function () {
return mochi.as2.MochiServices.getVersion();
};
v1.showPreGameAd = function (options) {
var v26 = {'clip': _root, 'ad_timeout': 3000, 'fadeout_time': 250, 'regpt': 'o', 'method': 'showPreloaderAd', 'color': 16747008, 'background': 16777161, 'outline': 13994812, 'no_progress_bar': false, 'ad_started': function () {
this.clip.stop();
}, 'ad_finished': function () {
this.clip.play();
}, 'ad_failed': function () {
trace('[MochiAd] Couldn\'t load an ad, make sure that your game\'s local security sandbox is configured for Access Network Only and that you are not using ad blocking software');
}, 'ad_loaded': function (width, height) {}, 'ad_skipped': function () {}, 'ad_progress': function (percent) {}};
options = mochi.as2.MochiAd._parseOptions(options, v26);
if ('c862232051e0a94e1c3609b3916ddb17'.substr(0) == 'dfeada81ac97cde83665f81c12da7def') {
options.ad_started();
options.ad_finished();
return undefined;
}
var clip = options.clip;
var v23 = 11000;
var v19 = options.ad_timeout;
if (options.skip) {
v19 = 0;
}
delete options.ad_timeout;
var fadeout_time = options.fadeout_time;
delete options.fadeout_time;
if (!mochi.as2.MochiAd.load(options)) {
options.ad_failed();
options.ad_finished();
return undefined;
}
options.ad_started();
var mc = clip._mochiad;
mc.onUnload = function () {
options.ad_finished();
};
var v14 = mochi.as2.MochiAd._getRes(options);
var v4 = v14[0];
var v13 = v14[1];
mc._x = v4 * 0.5;
mc._y = v13 * 0.5;
var chk = mc.createEmptyMovieClip('_mochiad_wait', 3);
chk._x = v4 * -0.5;
chk._y = v13 * -0.5;
var v6 = chk.createEmptyMovieClip('_mochiad_bar', 4);
if (options.no_progress_bar) {
v6._visible = false;
delete options.no_progress_bar;
} else {
v6._x = 10;
v6._y = v13 - 20;
}
var v22 = options.color;
delete options.color;
var v20 = options.background;
delete options.background;
var v24 = options.outline;
delete options.outline;
var v5 = v6.createEmptyMovieClip('_outline', 1);
v5.beginFill(v20);
v5.moveTo(0, 0);
v5.lineTo(v4 - 20, 0);
v5.lineTo(v4 - 20, 10);
v5.lineTo(0, 10);
v5.lineTo(0, 0);
v5.endFill();
var v3 = v6.createEmptyMovieClip('_inside', 2);
v3.beginFill(v22);
v3.moveTo(0, 0);
v3.lineTo(v4 - 20, 0);
v3.lineTo(v4 - 20, 10);
v3.lineTo(0, 10);
v3.lineTo(0, 0);
v3.endFill();
v3._xscale = 0;
var v7 = v6.createEmptyMovieClip('_outline', 3);
v7.lineStyle(0, v24, 100);
v7.moveTo(0, 0);
v7.lineTo(v4 - 20, 0);
v7.lineTo(v4 - 20, 10);
v7.lineTo(0, 10);
v7.lineTo(0, 0);
chk.ad_msec = v23;
chk.ad_timeout = v19;
chk.started = getTimer();
chk.showing = false;
chk.last_pcnt = 0;
chk.fadeout_time = fadeout_time;
chk.fadeFunction = function () {
var v2 = 100 * (1 - (getTimer() - this.fadeout_start) / this.fadeout_time);
if (v2 > 0) {
this._parent._alpha = v2;
} else {
var v3 = this._parent._parent;
mochi.as2.MochiAd.unload(v3);
delete this.onEnterFrame;
}
};
var sendHostProgress = false;
mc.lc.sendHostLoadProgress = function (lc_name) {
sendHostProgress = true;
};
mc.lc.adLoaded = options.ad_loaded;
mc.lc.adSkipped = options.ad_skipped;
mc.lc.adjustProgress = function (msec) {
var v2 = this.mc._mochiad_wait;
v2.server_control = true;
v2.started = getTimer();
v2.ad_msec = msec;
};
mc.lc.rpc = function (callbackID, arg) {
mochi.as2.MochiAd.rpc(clip, callbackID, arg);
};
mc.rpcTestFn = function (s) {
trace('[MOCHIAD rpcTestFn] ' + s);
return s;
};
chk.onEnterFrame = function () {
var v6 = this._parent._parent;
var v11 = this._parent._mochiad_ctr;
var v5 = getTimer() - this.started;
var v3 = false;
var v4 = v6.getBytesTotal();
var v8 = v6.getBytesLoaded();
var v2 = 100 * v8 / v4;
var v10 = 100 * v5 / chk.ad_msec;
var v9 = this._mochiad_bar._inside;
var v13 = Math.min(100, Math.min(v2 || 0, v10));
v13 = Math.max(this.last_pcnt, v13);
this.last_pcnt = v13;
v9._xscale = v13;
options.ad_progress(v13);
if (sendHostProgress) {
mochi.as2.MochiAd.containerNotify(clip, {'id': 'hostLoadPcnt', 'pcnt': v2}, clip._mochiad._containerLCName);
if (v2 == 100) {
sendHostProgress = false;
}
}
if (!chk.showing) {
var v7 = v11.getBytesTotal();
if (v7 > 0 || typeof v7 == 'undefined') {
chk.showing = true;
chk.started = getTimer();
} else {
if (v5 > chk.ad_timeout && v2 == 100) {
options.ad_failed();
v3 = true;
}
}
}
if (v5 > chk.ad_msec) {
v3 = true;
}
if (v4 > 0 && v8 >= v4 && v3) {
if (this.server_control) {
delete this.onEnterFrame;
} else {
this.fadeout_start = getTimer();
this.onEnterFrame = chk.fadeFunction;
}
}
};
};
v1.showClickAwayAd = function (options) {
var v10 = {'clip': _root, 'ad_timeout': 2000, 'fadeout_time': 250, 'regpt': 'o', 'method': 'showClickAwayAd', 'res': '300x250', 'no_bg': true, 'ad_started': function () {}, 'ad_finished': function () {}, 'ad_loaded': function (width, height) {}, 'ad_failed': function () {
trace('[MochiAd] Couldn\'t load an ad, make sure that your game\'s local security sandbox is configured for Access Network Only and that you are not using ad blocking software');
}, 'ad_skipped': function () {}};
options = mochi.as2.MochiAd._parseOptions(options, v10);
var clip = options.clip;
var v9 = options.ad_timeout;
delete options.ad_timeout;
if (!mochi.as2.MochiAd.load(options)) {
options.ad_failed();
options.ad_finished();
return undefined;
}
options.ad_started();
var v3 = clip._mochiad;
v3.onUnload = function () {
options.ad_finished();
};
var v5 = mochi.as2.MochiAd._getRes(options);
var v11 = v5[0];
var v8 = v5[1];
v3._x = v11 * 0.5;
v3._y = v8 * 0.5;
var chk = v3.createEmptyMovieClip('_mochiad_wait', 3);
chk.ad_timeout = v9;
chk.started = getTimer();
chk.showing = false;
v3.lc.adLoaded = options.ad_loaded;
v3.lc.adSkipped = options.ad_skipped;
v3.lc.rpc = function (callbackID, arg) {
mochi.as2.MochiAd.rpc(clip, callbackID, arg);
};
v3.rpcTestFn = function (s) {
trace('[MOCHIAD rpcTestFn] ' + s);
return s;
};
var v21 = false;
chk.onEnterFrame = function () {
var v5 = this._parent._mochiad_ctr;
var v4 = getTimer() - this.started;
var v2 = false;
if (!chk.showing) {
var v3 = v5.getBytesTotal();
if (v3 > 0 || typeof v3 == 'undefined') {
v2 = true;
chk.showing = true;
chk.started = getTimer();
} else {
if (v4 > chk.ad_timeout) {
options.ad_failed();
v2 = true;
}
}
}
if (v2) {
delete this.onEnterFrame;
}
};
};
v1.showInterLevelAd = function (options) {
var v13 = {'clip': _root, 'ad_timeout': 2000, 'fadeout_time': 250, 'regpt': 'o', 'method': 'showTimedAd', 'ad_started': function () {
this.clip.stop();
}, 'ad_finished': function () {
this.clip.play();
}, 'ad_failed': function () {
trace('[MochiAd] Couldn\'t load an ad, make sure that your game\'s local security sandbox is configured for Access Network Only and that you are not using ad blocking software');
}, 'ad_loaded': function (width, height) {}, 'ad_skipped': function () {}};
options = mochi.as2.MochiAd._parseOptions(options, v13);
var clip = options.clip;
var v10 = 11000;
var v12 = options.ad_timeout;
delete options.ad_timeout;
var fadeout_time = options.fadeout_time;
delete options.fadeout_time;
if (!mochi.as2.MochiAd.load(options)) {
options.ad_failed();
options.ad_finished();
return undefined;
}
options.ad_started();
var mc = clip._mochiad;
mc.onUnload = function () {
options.ad_finished();
};
var v5 = mochi.as2.MochiAd._getRes(options);
var v14 = v5[0];
var v11 = v5[1];
mc._x = v14 * 0.5;
mc._y = v11 * 0.5;
var chk = mc.createEmptyMovieClip('_mochiad_wait', 3);
chk.ad_msec = v10;
chk.ad_timeout = v12;
chk.started = getTimer();
chk.showing = false;
chk.fadeout_time = fadeout_time;
chk.fadeFunction = function () {
var v2 = 100 * (1 - (getTimer() - this.fadeout_start) / this.fadeout_time);
if (v2 > 0) {
this._parent._alpha = v2;
} else {
var v3 = this._parent._parent;
mochi.as2.MochiAd.unload(v3);
delete this.onEnterFrame;
}
};
mc.lc.adLoaded = options.ad_loaded;
mc.lc.adSkipped = options.ad_skipped;
mc.lc.adjustProgress = function (msec) {
var v2 = this.mc._mochiad_wait;
v2.server_control = true;
v2.started = getTimer();
v2.ad_msec = msec - 250;
};
mc.lc.rpc = function (callbackID, arg) {
mochi.as2.MochiAd.rpc(clip, callbackID, arg);
};
mc.rpcTestFn = function (s) {
trace('[MOCHIAD rpcTestFn] ' + s);
return s;
};
chk.onEnterFrame = function () {
var v5 = this._parent._mochiad_ctr;
var v4 = getTimer() - this.started;
var v2 = false;
if (!chk.showing) {
var v3 = v5.getBytesTotal();
if (v3 > 0 || typeof v3 == 'undefined') {
chk.showing = true;
chk.started = getTimer();
} else {
if (v4 > chk.ad_timeout) {
options.ad_failed();
v2 = true;
}
}
}
if (v4 > chk.ad_msec) {
v2 = true;
}
if (v2) {
if (this.server_control) {
delete this.onEnterFrame;
} else {
this.fadeout_start = getTimer();
this.onEnterFrame = this.fadeFunction;
}
}
};
};
v1.showPreloaderAd = function (options) {
trace('[MochiAd] DEPRECATED: showPreloaderAd was renamed to showPreGameAd in 2.0');
mochi.as2.MochiAd.showPreGameAd(options);
};
v1.showTimedAd = function (options) {
trace('[MochiAd] DEPRECATED: showTimedAd was renamed to showInterLevelAd in 2.0');
mochi.as2.MochiAd.showInterLevelAd(options);
};
v1._allowDomains = function (server) {
var v1 = ((server.split('/'))[2].split(':'))[0];
if (System.security) {
if (System.security.allowDomain) {
System.security.allowDomain('*');
System.security.allowDomain(v1);
}
if (System.security.allowInsecureDomain) {
System.security.allowInsecureDomain('*');
System.security.allowInsecureDomain(v1);
}
}
return v1;
};
v1.load = function (options) {
var v12 = {'clip': _root, 'server': 'http://x.mochiads.com/srv/1/', 'method': 'load', 'depth': 10333, 'id': '_UNKNOWN_'};
options = mochi.as2.MochiAd._parseOptions(options, v12);
options.swfv = options.clip.getSWFVersion() || 6;
options.mav = mochi.as2.MochiAd.getVersion();
var v6 = options.clip;
if (!mochi.as2.MochiAd._isNetworkAvailable()) {
return null;
}
if (v6._mochiad_loaded) {
return null;
}
var v11 = options.depth;
delete options.depth;
var mc = v6.createEmptyMovieClip('_mochiad', v11);
var v10 = mochi.as2.MochiAd._getRes(options);
options.res = v10[0] + 'x' + v10[1];
options.server += options.id;
delete options.id;
v6._mochiad_loaded = true;
if (v6._url.indexOf('http') != 0) {
trace('[MochiAd] NOTE: Security Sandbox Violation errors below are normal');
}
var v4 = mc.createEmptyMovieClip('_mochiad_ctr', 1);
for (var v7 in options) {
v4[v7] = options[v7];
}
var v9 = v4.server;
delete v4.server;
var v13 = mochi.as2.MochiAd._allowDomains(v9);
mc.onEnterFrame = function () {
if (this._mochiad_ctr._url != this._url) {
this.onEnterFrame = function () {
if (!this._mochiad_ctr) {
delete this.onEnterFrame;
mochi.as2.MochiAd.unload(this._parent);
}
};
}
};
var v5 = new Object();
var v8 = ['', Math.floor((new Date()).getTime()), random(999999)].join('_');
v5.mc = mc;
v5.name = v8;
v5.hostname = v13;
v5.allowDomain = function (d) {
return true;
};
v5.allowInsecureDomain = v5.allowDomain;
v5.connect(v8);
mc.lc = v5;
mc.lc.regContLC = function (lc_name) {
mc._containerLCName = lc_name;
};
v4.lc = v8;
v4.st = getTimer();
if (!options.skip) {
v4.loadMovie(v9 + '.swf', 'POST');
}
return mc;
};
v1.unload = function (clip) {
if (typeof clip == 'undefined') {
clip = _root;
}
if (clip.clip && clip.clip._mochiad) {
clip = clip.clip;
}
if (!clip._mochiad) {
return false;
}
mochi.as2.MochiAd.containerNotify(clip, {'id': 'unload'}, clip._mochiad._containerLCName);
clip._mochiad.removeMovieClip();
delete clip._mochiad_loaded;
delete clip._mochiad;
return true;
};
v1._isNetworkAvailable = function () {
if (System.security) {
var v1 = System.security;
if (v1.sandboxType == 'localWithFile') {
return false;
}
}
return true;
};
v1._getRes = function (options) {
var v3 = options.clip.getBounds();
var v2 = 0;
var v1 = 0;
if (typeof options.res != 'undefined') {
var v4 = options.res.split('x');
v2 = parseFloat(v4[0]);
v1 = parseFloat(v4[1]);
} else {
v2 = v3.xMax - v3.xMin;
v1 = v3.yMax - v3.yMin;
}
if (v2 == 0 || v1 == 0) {
v2 = Stage.width;
v1 = Stage.height;
}
return [v2, v1];
};
v1._parseOptions = function (options, defaults) {
var v4 = {};
for (var v8 in defaults) {
v4[v8] = defaults[v8];
}
if (options) {
for (v8 in options) {
v4[v8] = options[v8];
}
}
if (_root.mochiad_options) {
var v5 = _root.mochiad_options.split('&');
var v2 = 0;
while (v2 < v5.length) {
var v3 = v5[v2].split('=');
v4[unescape(v3[0])] = unescape(v3[1]);
++v2;
}
}
if (v4.id == 'test') {
trace('[MochiAd] WARNING: Using the MochiAds test identifier, make sure to use the code from your dashboard, not this example!');
}
return v4;
};
v1.rpc = function (clip, callbackID, arg) {
switch (arg.id) {
case 'setValue':
mochi.as2.MochiAd.setValue(clip, arg.objectName, arg.value);
break;
case 'getValue':
var v4 = mochi.as2.MochiAd.getValue(clip, arg.objectName);
mochi.as2.MochiAd.containerRpcResult(clip, callbackID, v4, clip._mochiad._containerLCName);
break;
case 'runMethod':
var v3 = mochi.as2.MochiAd.runMethod(clip, arg.method, arg.args);
mochi.as2.MochiAd.containerRpcResult(clip, callbackID, v3, clip._mochiad._containerLCName);
break;
default:
trace('[mochiads rpc] unknown rpc id: ' + arg.id);
}
};
v1.setValue = function (base, objectName, value) {
var v2 = objectName.split('.');
var v1;
v1 = 0;
while (v1 < v2.length - 1) {
if (base[v2[v1]] == undefined || base[v2[v1]] == null) {
return undefined;
}
base = base[v2[v1]];
++v1;
}
base[v2[v1]] = value;
};
v1.getValue = function (base, objectName) {
var v2 = objectName.split('.');
var v1;
v1 = 0;
while (v1 < v2.length - 1) {
if (base[v2[v1]] == undefined || base[v2[v1]] == null) {
return undefined;
}
base = base[v2[v1]];
++v1;
}
return base[v2[v1]];
};
v1.runMethod = function (base, methodName, argsArray) {
var v2 = methodName.split('.');
var v1;
v1 = 0;
while (v1 < v2.length - 1) {
if (base[v2[v1]] == undefined || base[v2[v1]] == null) {
return undefined;
}
base = base[v2[v1]];
++v1;
}
if (typeof base[v2[v1]] == 'function') {
return base[v2[v1]].apply(base, argsArray);
} else {
return undefined;
}
};
v1.containerNotify = function (clip, args, lcName) {
var v1 = clip._mochiad._mochiad_ctr.ad.app;
if (v1.notify) {
v1.notify(args);
} else {
(new LocalConnection()).send(lcName, 'notify', args);
}
};
v1.containerRpcResult = function (clip, callbackID, val, lcName) {
var v1 = clip._mochiad._mochiad_ctr.ad.app;
if (v1.rpcResult) {
v1.rpcResult(callbackID, val);
} else {
(new LocalConnection()).send(lcName, 'rpcResult', callbackID, val);
}
};
ASSetPropFlags(mochi.as2.MochiAd.prototype, null, 1);
}
#endinitclip
}
movieClip 1111 __Packages.mochi.as2.MochiSync {
#initclip
if (!_global.mochi) {
_global.mochi = new Object();
}
if (!_global.mochi.as2) {
_global.mochi.as2 = new Object();
}
if (!_global.mochi.as2.MochiSync) {
var v1 = function () {
this._syncContainer = {};
};
mochi.as2.MochiSync = v1;
var v2 = v1.prototype;
v2.getProp = function (name) {
return this._syncContainer[name];
};
v2.setProp = function (name, value) {
if (this._syncContainer[name] == value) {
return undefined;
}
this._syncContainer[name] = value;
mochi.as2.MochiServices.send('sync_propUpdate', {'name': name, 'value': value});
};
v2.triggerEvent = function (eventType, args) {
switch (eventType) {
case mochi.as2.MochiSync.SYNC_REQUEST:
mochi.as2.MochiServices.send('sync_syncronize', this._syncContainer);
break;
case mochi.as2.MochiSync.SYNC_PROPERTY:
this._syncContainer[args.name] = args.value;
}
};
v1.SYNC_REQUEST = 'SyncRequest';
v1.SYNC_PROPERTY = 'UpdateProperty';
ASSetPropFlags(mochi.as2.MochiSync.prototype, null, 1);
}
#endinitclip
}
movieClip 1112 __Packages.mochi.as2.MochiServices {
#initclip
if (!_global.mochi) {
_global.mochi = new Object();
}
if (!_global.mochi.as2) {
_global.mochi.as2 = new Object();
}
if (!_global.mochi.as2.MochiServices) {
var v1 = function () {};
mochi.as2.MochiServices = v1;
var v2 = v1.prototype;
v1.__get__id = function () {
return mochi.as2.MochiServices._id;
};
v1.__get__clip = function () {
return mochi.as2.MochiServices._container;
};
v1.__get__childClip = function () {
return mochi.as2.MochiServices._clip;
};
v1.getVersion = function () {
return '3.8 as2';
};
v1.allowDomains = function (server) {
var v1 = ((server.split('/'))[2].split(':'))[0];
if (System.security) {
if (System.security.allowDomain) {
System.security.allowDomain('*');
System.security.allowDomain(v1);
}
if (System.security.allowInsecureDomain) {
System.security.allowInsecureDomain('*');
System.security.allowInsecureDomain(v1);
}
}
return v1;
};
v1.__get__isNetworkAvailable = function () {
if (System.security) {
var v1 = System.security;
if (v1.sandboxType == 'localWithFile') {
return false;
}
}
return true;
};
v1.__set__comChannelName = function (val) {
if (val != undefined) {
if (val.length > 3) {
mochi.as2.MochiServices._sendChannelName = val + '_fromgame';
mochi.as2.MochiServices.initComChannels();
}
}
return mochi.as2.MochiServices.__get__comChannelName();
};
v1.__get__connected = function () {
return mochi.as2.MochiServices._connected;
};
v1.connect = function (id, clip, onError) {
mochi.as2.MochiServices.warnID(id, false);
if (!mochi.as2.MochiServices._connected && mochi.as2.MochiServices._clip == undefined) {
trace('MochiServices Connecting...');
mochi.as2.MochiServices._connecting = true;
mochi.as2.MochiServices.init(id, clip);
}
if (onError != undefined) {
mochi.as2.MochiServices.onError = onError;
} else {
if (mochi.as2.MochiServices.onError == undefined) {
mochi.as2.MochiServices.onError = function (errorCode) {
trace(errorCode);
};
}
}
};
v1.disconnect = function () {
if (mochi.as2.MochiServices._connected || mochi.as2.MochiServices._connecting) {
mochi.as2.MochiServices._connected = false;
mochi.as2.MochiServices._connecting = mochi.as2.MochiServices._connected;
mochi.as2.MochiServices.flush(true);
if (mochi.as2.MochiServices._clip != undefined) {
mochi.as2.MochiServices._clip.removeMovieClip();
delete mochi.as2.MochiServices._clip;
}
mochi.as2.MochiServices._listenChannel.close();
}
};
v1.init = function (id, clip) {
mochi.as2.MochiServices._id = id;
if (clip != undefined) {
mochi.as2.MochiServices._container = clip;
} else {
mochi.as2.MochiServices._container = _root;
}
mochi.as2.MochiServices.loadCommunicator(id, mochi.as2.MochiServices._container);
};
v1.loadCommunicator = function (id, clip) {
var v6 = '_mochiservices_com_' + id;
var v5 = new MovieClipLoader();
var v3 = {};
if (mochi.as2.MochiServices._clip != null) {
return mochi.as2.MochiServices._clip;
}
if (!mochi.as2.MochiServices.__get__isNetworkAvailable()) {
return null;
}
if ((mochi.as2.MochiServices.urlOptions()).servURL) {
mochi.as2.MochiServices._servURL = (mochi.as2.MochiServices.urlOptions()).servURL;
}
var v4 = mochi.as2.MochiServices._servURL + mochi.as2.MochiServices._services;
if ((mochi.as2.MochiServices.urlOptions()).servicesURL) {
v4 = (mochi.as2.MochiServices.urlOptions()).servicesURL;
}
mochi.as2.MochiServices.allowDomains(v4);
mochi.as2.MochiServices._clip = clip.createEmptyMovieClip(v6, 10336, false);
mochi.as2.MochiServices._listenChannelName += Math.floor((new Date()).getTime()) + '_' + Math.floor(Math.random() * 99999);
mochi.as2.MochiServices.listen();
if (v3.waitInterval != null) {
clearInterval(v3.waitInterval);
}
v3.onLoadError = mochi.as2.MochiServices.loadError;
v3.onLoadStart = function (target_mc) {
this.isLoading = true;
};
v3.onLoadComplete = function (target_mc) {
target_mc.MochiServices = mochi.as2.MochiServices;
};
v3.startTime = getTimer();
v3.wait = function () {
if (getTimer() - this.startTime > 10000) {
if (!this.isLoading) {
mochi.as2.MochiServices.disconnect();
mochi.as2.MochiServices.onError.apply(null, ['IOError']);
}
clearInterval(this.waitInterval);
}
};
v3.waitInterval = setInterval(v3, 'wait', 1000);
v5.addListener(v3);
v5.loadClip(v4 + '?listenLC=' + mochi.as2.MochiServices._listenChannelName + '&mochiad_options=' + escape(_root.mochiad_options) + '&api_version=' + mochi.as2.MochiServices.getVersion(), mochi.as2.MochiServices._clip);
mochi.as2.MochiServices._sendChannel = new LocalConnection();
mochi.as2.MochiServices._sendChannel._queue = [];
return mochi.as2.MochiServices._clip;
};
v1.loadError = function (target_mc, errorCode, httpStatus) {
trace('MochiServices could not load.');
mochi.as2.MochiServices.disconnect();
mochi.as2.MochiServices.onError.apply(null, [errorCode]);
};
v1.onStatus = function (infoObject) {
if (infoObject.level !== 'error') {
} else {
mochi.as2.MochiServices._connected = false;
mochi.as2.MochiServices._listenChannel.connect(mochi.as2.MochiServices._listenChannelName);
}
};
v1.listen = function () {
mochi.as2.MochiServices._listenChannel = new LocalConnection();
mochi.as2.MochiServices._listenChannel.handshake = function (args) {
mochi.as2.MochiServices.__set__comChannelName(args.newChannel);
};
mochi.as2.MochiServices._listenChannel.allowDomain = function (d) {
return true;
};
mochi.as2.MochiServices._listenChannel.allowInsecureDomain = mochi.as2.MochiServices._listenChannel.allowDomain;
mochi.as2.MochiServices._listenChannel._nextcallbackID = 0;
mochi.as2.MochiServices._listenChannel._callbacks = {};
mochi.as2.MochiServices._listenChannel.connect(mochi.as2.MochiServices._listenChannelName);
trace('Waiting for MochiAds services to connect...');
};
v1.initComChannels = function () {
if (!mochi.as2.MochiServices._connected) {
mochi.as2.MochiServices._sendChannel.onStatus = function (infoObject) {
mochi.as2.MochiServices.onStatus(infoObject);
};
mochi.as2.MochiServices._sendChannel.send(mochi.as2.MochiServices._sendChannelName, 'onReceive', {'methodName': 'handshakeDone'});
mochi.as2.MochiServices._sendChannel.send(mochi.as2.MochiServices._sendChannelName, 'onReceive', {'methodName': 'registerGame', 'id': mochi.as2.MochiServices._id, 'version': mochi.as2.MochiServices.getVersion()});
mochi.as2.MochiServices._listenChannel.onStatus = function (infoObject) {
mochi.as2.MochiServices.onStatus(infoObject);
};
mochi.as2.MochiServices._listenChannel.onReceive = function (pkg) {
var v5 = pkg.callbackID;
var v4 = this._callbacks[v5];
if (!v4) {
return undefined;
}
var v2 = v4.callbackMethod;
var v3 = v4.callbackObject;
if (v3 && typeof v2 == 'string') {
v2 = v3[v2];
}
if (v2 != undefined) {
v2.apply(v3, pkg.args);
}
delete this._callbacks[v5];
};
mochi.as2.MochiServices._listenChannel.onEvent = function (pkg) {
switch (pkg.target) {
case 'events':
mochi.as2.MochiEvents.triggerEvent(pkg.event, pkg.args);
break;
case 'coins':
mochi.as2.MochiSocial.triggerEvent(pkg.event, pkg.args);
break;
case 'sync':
mochi.as2.MochiServices.servicesSync.triggerEvent(pkg.event, pkg.args);
}
};
mochi.as2.MochiServices._listenChannel.onError = function () {
mochi.as2.MochiServices.onError.apply(null, ['IOError']);
};
trace('[SERVICES_API] connected!');
mochi.as2.MochiServices._connecting = false;
mochi.as2.MochiServices._connected = true;
while (mochi.as2.MochiServices._sendChannel._queue.length > 0) {
mochi.as2.MochiServices._sendChannel.send(mochi.as2.MochiServices._sendChannelName, 'onReceive', mochi.as2.MochiServices._sendChannel._queue.shift());
}
}
};
v1.updateCopy = function (args) {
mochi.as2.MochiServices.send('coins_updateCopy', args, null, null);
};
v1.flush = function (error) {
var v1;
var v2;
while (mochi.as2.MochiServices._sendChannel._queue.length > 0) {
v1 = mochi.as2.MochiServices._sendChannel._queue.shift();
false;
if (v1.callbackID != null) {
v2 = mochi.as2.MochiServices._listenChannel._callbacks[v1.callbackID];
}
delete mochi.as2.MochiServices._listenChannel._callbacks[v1.callbackID];
if (error) {
mochi.as2.MochiServices.handleError(v1.args, v2.callbackObject, v2.callbackMethod);
}
}
};
v1.handleError = function (args, callbackObject, callbackMethod) {
if (args != null) {
if (args.onError != null) {
args.onError.apply(null, ['NotConnected']);
}
if (args.options != null && args.options.onError != null) {
args.options.onError.apply(null, ['NotConnected']);
}
}
if (callbackMethod != null) {
args = {};
args.error = true;
args.errorCode = 'NotConnected';
if (callbackObject != null && typeof callbackMethod == 'string') {
callbackObject[callbackMethod](args);
} else {
if (callbackMethod != null) {
callbackMethod.apply(args);
}
}
}
};
v1.send = function (methodName, args, callbackObject, callbackMethod) {
if (mochi.as2.MochiServices._connected) {
mochi.as2.MochiServices._sendChannel.send(mochi.as2.MochiServices._sendChannelName, 'onReceive', {'methodName': methodName, 'args': args, 'callbackID': mochi.as2.MochiServices._listenChannel._nextcallbackID});
} else {
if (mochi.as2.MochiServices._clip == undefined || !mochi.as2.MochiServices._connecting) {
trace('Error: MochiServices not connected. Please call MochiServices.connect(). Function: ' + methodName);
mochi.as2.MochiServices.handleError(args, callbackObject, callbackMethod);
mochi.as2.MochiServices.flush(true);
return undefined;
} else {
mochi.as2.MochiServices._sendChannel._queue.push({'methodName': methodName, 'args': args, 'callbackID': mochi.as2.MochiServices._listenChannel._nextcallbackID});
}
}
mochi.as2.MochiServices._listenChannel._callbacks[mochi.as2.MochiServices._listenChannel._nextcallbackID] = {'callbackObject': callbackObject, 'callbackMethod': callbackMethod};
++mochi.as2.MochiServices._listenChannel._nextcallbackID;
};
v1.urlOptions = function () {
var v5 = {};
var v6;
if (_root._url.indexOf('mochiad_options') != -1) {
var v2 = _root._url.indexOf('mochiad_options') + 'mochiad_options'.length + 1;
v6 = _root._url.substr(v2, _root._url.length);
} else {
if (_root.mochiad_options) {
v6 = _root.mochiad_options;
}
}
if (v6) {
var v4 = _root.mochiad_options.split('&');
var v2 = 0;
while (v2 < v4.length) {
var v3 = v4[v2].split('=');
v5[unescape(v3[0])] = unescape(v3[1]);
++v2;
}
}
return v5;
};
v1.warnID = function (bid, leaderboard) {
bid = bid.toLowerCase();
if (bid.length != 16) {
trace('WARNING: ' + (leaderboard ? 'board' : 'game') + ' ID is not the appropriate length');
return undefined;
} else {
if (bid == '1e113c7239048b3f') {
if (leaderboard) {
trace('WARNING: Using testing board ID');
} else {
trace('WARNING: Using testing board ID as game ID');
}
return undefined;
} else {
if (bid == '84993a1de4031cd8') {
if (leaderboard) {
trace('WARNING: Using testing game ID as board ID');
} else {
trace('WARNING: Using testing game ID');
}
return undefined;
}
}
}
var v1 = 0;
while (v1 < bid.length) {
switch (bid.charAt(v1)) {
if (bid.charAt(v1) !== 'f') {
} else {
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
case 'a':
case 'b':
case 'c':
break;
case 'd':
case 'e':
}
default:
trace('WARNING: Board ID contains illegal characters: ' + bid);
return undefined;
}
++v1;
}
};
v1.addLinkEvent = function (url, burl, btn, onClick) {
var timeout = 1500;
var t0 = getTimer();
var v2 = new Object();
v2.mav = mochi.as2.MochiServices.getVersion();
v2.swfv = btn.getSWFVersion() || 6;
v2.swfurl = btn._url;
v2.fv = System.capabilities.version;
v2.os = System.capabilities.os;
v2.lang = System.capabilities.language;
v2.scres = System.capabilities.screenResolutionX + 'x' + System.capabilities.screenResolutionY;
var s = '?';
var v3 = 0;
for (var v6 in v2) {
if (v3 != 0) {
s += '&';
}
++v3;
s = s + v6 + '=' + escape(v2[v6]);
}
if (!(mochi.as2.MochiServices.netupAttempted || mochi.as2.MochiServices._connected)) {
var ping = btn.createEmptyMovieClip('ping', 777);
var v7 = btn.createEmptyMovieClip('nettest', 778);
mochi.as2.MochiServices.netupAttempted = true;
ping.loadMovie('http://x.mochiads.com/linkping.swf?t=' + getTimer());
v7.onEnterFrame = function () {
if (ping._totalframes > 0 && ping._totalframes == ping._framesloaded) {
delete this.onEnterFrame;
} else {
if (getTimer() - t0 > timeout) {
delete this.onEnterFrame;
mochi.as2.MochiServices.netup = false;
}
}
};
}
var v4 = btn.createEmptyMovieClip('clk', 1001);
v4._alpha = 0;
v4.beginFill(1044735);
v4.moveTo(0, 0);
v4.lineTo(0, btn._height);
v4.lineTo(btn._width, btn._height);
v4.lineTo(btn._width, 0);
v4.lineTo(0, 0);
v4.endFill();
v4.onRelease = function () {
if (mochi.as2.MochiServices.netup) {
getURL(url + s, '_blank');
} else {
getURL(burl, '_blank');
}
if (onClick != undefined) {
onClick();
}
};
};
v1.setContainer = function (clip) {};
v1.stayOnTop = function (clip) {};
v1._servURL = 'http://www.mochiads.com/static/lib/services/';
v1._services = 'services.swf';
v1._mochiLC = 'MochiLC.swf';
v1._listenChannelName = '__ms_';
v1._connecting = false;
v1._connected = false;
v1.netup = true;
v1.netupAttempted = false;
v1.servicesSync = new mochi.as2.MochiSync();
v1.addProperty('childClip', v1.__get__childClip, function () {});
v1.addProperty('clip', v1.__get__clip, function () {});
v1.addProperty('comChannelName', function () {}, v1.__set__comChannelName);
v1.addProperty('connected', v1.__get__connected, function () {});
v1.addProperty('id', v1.__get__id, function () {});
v1.addProperty('isNetworkAvailable', v1.__get__isNetworkAvailable, function () {});
ASSetPropFlags(mochi.as2.MochiServices.prototype, null, 1);
}
#endinitclip
}
movieClip 1113 __Packages.mochi.as2.MochiEventDispatcher {
#initclip
if (!_global.mochi) {
_global.mochi = new Object();
}
if (!_global.mochi.as2) {
_global.mochi.as2 = new Object();
}
if (!_global.mochi.as2.MochiEventDispatcher) {
var v1 = function () {
this.eventTable = {};
};
mochi.as2.MochiEventDispatcher = v1;
var v2 = v1.prototype;
v2.buildDelegate = function (thisObject, thatObject) {
var v2 = {'thisObject': thisObject, 'thatObject': thatObject};
if (thatObject != undefined) {
var funct = (typeof thatObject == 'string') ? thisObject[thatObject] : thatObject;
v2.delegate = function (args) {
funct.call(thisObject, args);
};
return v2;
}
v2.delegate = thisObject;
return v2;
};
v2.compareDelegate = function (d_A, d_B) {
if (d_A.thisObject != d_B.thisObject || d_A.thatObject != d_B.thatObject) {
return false;
}
return true;
};
v2.addEventListener = function (event, thisObject, thatObject) {
this.removeEventListener(event, thisObject, thatObject);
this.eventTable[event].push(this.buildDelegate(thisObject, thatObject));
};
v2.removeEventListener = function (event, thisObject, thatObject) {
var v3 = this.buildDelegate(thisObject, thatObject);
if (this.eventTable[event] == undefined) {
this.eventTable[event] = [];
return undefined;
}
for (var v4 in this.eventTable[event]) {
if (!this.compareDelegate(this.eventTable[event][v4], v3)) {
continue;
}
this.eventTable[event].splice(Number(v4), 1);
}
};
v2.triggerEvent = function (event, args) {
if (this.eventTable[event] == undefined) {
return undefined;
}
for (var v4 in this.eventTable[event]) {
this.eventTable[event][v4].delegate(args);
}
};
ASSetPropFlags(mochi.as2.MochiEventDispatcher.prototype, null, 1);
}
#endinitclip
}
movieClip 1114 __Packages.mochi.as2.MochiEvents {
#initclip
if (!_global.mochi) {
_global.mochi = new Object();
}
if (!_global.mochi.as2) {
_global.mochi.as2 = new Object();
}
if (!_global.mochi.as2.MochiEvents) {
var v1 = function () {};
mochi.as2.MochiEvents = v1;
var v2 = v1.prototype;
v1.getVersion = function () {
return mochi.as2.MochiServices.getVersion();
};
v1.startSession = function (achievementID) {
mochi.as2.MochiServices.send('events_beginSession', {'achievementID': achievementID}, null, null);
};
v1.setNotifications = function (clip, style) {
var v2 = {};
for (var v3 in style) {
v2[v3] = style[v3];
}
v2.clip = clip;
mochi.as2.MochiServices.send('events_setNotifications', v2, null, null);
};
v1.addEventListener = function (eventType, thisObject, thatObject) {
mochi.as2.MochiEvents._dispatcher.addEventListener(eventType, thisObject, thatObject);
};
v1.triggerEvent = function (eventType, args) {
mochi.as2.MochiEvents._dispatcher.triggerEvent(eventType, args);
};
v1.removeEventListener = function (eventType, thisObject, thatObject) {
mochi.as2.MochiEvents._dispatcher.removeEventListener(eventType, thisObject, thatObject);
};
v1.startPlay = function (tag) {
if (tag == undefined) {
tag = 'gameplay';
}
mochi.as2.MochiServices.send('events_setRoundID', {'tag': String(tag)}, null, null);
};
v1.endPlay = function () {
mochi.as2.MochiServices.send('events_clearRoundID', null, null, null);
};
v1.trackEvent = function (tag, value) {
mochi.as2.MochiServices.send('events_trackEvent', {'tag': tag, 'value': value}, null, null);
};
v1.ACHIEVEMENT_RECEIVED = 'AchievementReceived';
v1.ALIGN_TOP_LEFT = 'ALIGN_TL';
v1.ALIGN_TOP = 'ALIGN_T';
v1.ALIGN_TOP_RIGHT = 'ALIGN_TR';
v1.ALIGN_LEFT = 'ALIGN_L';
v1.ALIGN_CENTER = 'ALIGN_C';
v1.ALIGN_RIGHT = 'ALIGN_R';
v1.ALIGN_BOTTOM_LEFT = 'ALIGN_BL';
v1.ALIGN_BOTTOM = 'ALIGN_B';
v1.ALIGN_BOTTOM_RIGHT = 'ALIGN_BR';
v1.FORMAT_SHORT = 'ShortForm';
v1.FORMAT_LONG = 'LongForm';
v1._dispatcher = new mochi.as2.MochiEventDispatcher();
ASSetPropFlags(mochi.as2.MochiEvents.prototype, null, 1);
}
#endinitclip
}
movieClip 1115 __Packages.mochi.as2.MochiSocial {
#initclip
if (!_global.mochi) {
_global.mochi = new Object();
}
if (!_global.mochi.as2) {
_global.mochi.as2 = new Object();
}
if (!_global.mochi.as2.MochiSocial) {
var v1 = function () {};
mochi.as2.MochiSocial = v1;
var v2 = v1.prototype;
v1.getVersion = function () {
return mochi.as2.MochiServices.getVersion();
};
v1.showLoginWidget = function (options) {
mochi.as2.MochiServices.setContainer();
mochi.as2.MochiServices.stayOnTop();
mochi.as2.MochiServices.send('coins_showLoginWidget', {'options': options});
};
v1.hideLoginWidget = function () {
mochi.as2.MochiServices.send('coins_hideLoginWidget');
};
v1.requestLogin = function () {
mochi.as2.MochiServices.send('coins_requestLogin');
};
v1.getUserInfo = function () {
mochi.as2.MochiServices.send('coins_getUserInfo');
};
v1.saveUserProperties = function (properties) {
mochi.as2.MochiServices.send('coins_saveUserProperties', properties);
};
v1.addEventListener = function (eventType, delegate) {
mochi.as2.MochiSocial._dispatcher.addEventListener(eventType, delegate);
};
v1.triggerEvent = function (eventType, args) {
mochi.as2.MochiSocial._dispatcher.triggerEvent(eventType, args);
};
v1.removeEventListener = function (eventType, delegate) {
mochi.as2.MochiSocial._dispatcher.removeEventListener(eventType, delegate);
};
v1.LOGGED_IN = 'LoggedIn';
v1.LOGGED_OUT = 'LoggedOut';
v1.LOGIN_SHOW = 'LoginShow';
v1.LOGIN_HIDE = 'LoginHide';
v1.LOGIN_SHOWN = 'LoginShown';
v1.PROFILE_SHOW = 'ProfileShow';
v1.PROFILE_HIDE = 'ProfileHide';
v1.PROPERTIES_SAVED = 'PropertySaved';
v1.WIDGET_LOADED = 'WidgetLoaded';
v1.USER_INFO = 'UserInfo';
v1.ERROR = 'Error';
v1.IO_ERROR = 'IOError';
v1.NO_USER = 'NoUser';
v1.PROPERTIES_SIZE = 'PropertiesSize';
v1._dispatcher = new mochi.as2.MochiEventDispatcher();
ASSetPropFlags(mochi.as2.MochiSocial.prototype, null, 1);
}
#endinitclip
}
frame 2 {
stop();
Stage.showMenu = false;
_root.bouncing = false;
playerWeight = 0.2;
_root.carryLight = false;
_root.switch1 = false;
_root.jetPackOn = false;
_root.littleGirlTextFinished = false;
_root.swingerTextFinished = false;
_root.swingerText2Finished = false;
_root.swingerText3Finished = false;
_root.waterRunning = false;
_root.farmerJohnText2Finished = false;
_root.releaseHook = false;
_root.fattyText2Finished = false;
_root.carryHook = false;
_root.birdTextShillFinished = false;
_root.birdText2ShillFinished = false;
_root.birdText3ShillFinished = false;
_root.birdTextLightFinished = false;
_root.birdTextEndFinished = false;
_root.birdText2EndFinished = false;
_root.birdText3EndFinished = false;
_root.birdGomTextFinished = false;
_root.mamaTextFinished = false;
_root.mamaText2Finished = false;
_root.birdTextFinished = false;
_root.playThePianoTextFinished = false;
_root.cageDoorScale = 10;
_root.trapDoorOpen = false;
_root.trapDoor.light._width = 0;
_root.bridgeBreakable = false;
_root.doorSwitch4switchOn = false;
_root.doorSwitch5switchOn = false;
_root.doorSwitch6switchOn = false;
}
movieClip 11 {
}
movieClip 13 {
}
movieClip 15 {
}
movieClip 16 {
instance of movieClip 11 {
onClipEvent (enterFrame) {
alpha = 90 + random(10);
_alpha = _alpha + (alpha - _alpha) / 5;
}
}
instance of movieClip 11 {
}
}
movieClip 20 {
}
movieClip 23 {
}
movieClip 25 {
}
movieClip 84 {
frame 1 {
_root.playGame._x = 1000000;
}
frame 254 {
stop();
_root.playGame._x = 275;
}
}
button 87 {
on (release) {
gotoAndStop(3);
}
}
movieClip 89 {
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
movieClip 90 {
}
instance fadeIn2 of movieClip 90 {
onClipEvent (enterFrame) {
this.swapDepths(1000000000);
if (_alpha > -5) {
_alpha = _alpha - 0.5;
}
}
onClipEvent (load) {
this.swapDepths(1000000000);
}
}
frame 3 {
stop();
}
movieClip 115 {
}
movieClip 118 {
}
movieClip 121 {
}
movieClip 124 {
}
movieClip 125 {
}
movieClip 128 {
}
movieClip 130 {
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
}
movieClip 133 {
}
movieClip 134 {
instance of movieClip 133 {
onClipEvent (enterFrame) {
if (_root.trapDoorOpen eq true) {
_x = 100000;
}
}
}
}
movieClip 135 {
}
instance player of movieClip 135 {
onClipEvent (load) {
talking = false;
swinging = false;
swingJumpCounter = 0;
_height = _root.girl._height;
_width = _root.girl._width;
pushUp = 0;
playerSpeed = 0;
gravity = 0;
y = 0;
smoothJumpCounter = 0;
sound = new Sound(this);
sound.attachSound('jump');
sound.setVolume(40);
}
onClipEvent (enterFrame) {
smoothJumpCounter -= 1;
if (swinging eq false) {
if (_y > 600) {
_y = 0;
}
_root.girl._visible = true;
_y = _y + gravity;
_x = _x + playerSpeed;
playerSpeed += -playerSpeed / 5;
if (talking eq false) {
if (Key.isDown(37)) {
_root.girl._xscale = -_root.girl.xscale;
playerSpeed -= 1;
} else {
if (Key.isDown(39)) {
_root.girl._xscale = _root.girl.xscale;
playerSpeed += 1;
}
}
}
if (_root.ground.hitTest(_x + _width / 2, _y - _height / 1.1, true)) {
_x = _x - 5;
}
if (_root.ground.hitTest(_x - _width / 2, _y - _height / 1.1, true)) {
_x = _x + 5;
}
if (_root.ceiling.hitTest(_x, _y - _height / 2, true)) {
_y = _y + _height;
}
if (smoothJumpCounter > 0) {
if (Key.isDown(38)) {
_y = _y - 2;
gravity = -10;
_root.girlHind._y = _y;
_root.girlHind.gravity = gravity;
}
}
if (_root.ground.hitTest(_x, _y, true)) {
pushUp += 0.3;
gravity = 0;
_root.girl.jump.gotoAndStop(1);
_y = _y - (Math.abs(playerSpeed) + pushUp);
smoothJumpCounter = 5;
_root.girl._rotation = 0;
if (Math.abs(playerSpeed) > 0.4 && Math.abs(playerSpeed) < 1) {
_root.girl.gotoAndStop('walk');
}
if (Math.abs(playerSpeed) < 0.4) {
_root.girl.gotoAndStop('stand');
}
if (Math.abs(playerSpeed) > 1) {
_root.girl.gotoAndStop('run');
}
} else {
pushUp = 0;
gravity += _root.playerWeight;
if (Math.abs(gravity) > 5) {
_root.girl.gotoAndStop('jump');
}
}
} else {
_root.girl._visible = false;
swingJumpCounter += 1;
if (Key.isDown(38) && swingJumpCounter > 30) {
_y = _y - 70;
gravity = -10;
_root.girl._y = _y;
swinging = false;
swingJumpCounter = 0;
}
}
}
}
movieClip 138 {
}
movieClip 140 {
}
movieClip 141 {
}
movieClip 146 {
}
movieClip 156 {
frame 14 {
gotoAndPlay(6);
}
}
movieClip 166 {
frame 18 {
stop();
}
}
movieClip 167 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
instance jump of movieClip 166 {
onClipEvent (load) {
if (_root.jetPackOn eq true && Key.isDown(38)) {
_root.player.sound.start();
}
}
}
}
instance girl of movieClip 167 {
onClipEvent (load) {
xscale = _xscale;
yscale = _yscale;
}
onClipEvent (enterFrame) {
_rotation = 0;
if (_root.jetPackOn == true) {
_root.girl.jetPack._visible = true;
_root.girl.straps._visible = true;
_root.playerWeight = 0.4;
}
if (_root.jetPackOn == false) {
_root.girl.straps._visible = false;
_root.girl.jetPack._visible = false;
_root.playerWeight = 1;
}
if (Math.abs(_root.player._y - _y) > 150) {
_y = _root.player._y;
}
_x = _root.player._x;
_y = _y + (_root.player._y - _y) / 2.5;
}
}
movieClip 169 {
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_root.player._x = 5;
_root.catFore._x = 5;
_root.girl._x = 5;
_root.bird._x = _root.player._x;
_root.nextFrame();
}
}
}
movieClip 171 {
}
instance splash of movieClip 171 {
onClipEvent (load) {
if (_name == 'splash') {
_visible = false;
}
_alpha = 30;
_x = _root.girl._x;
_y = _root.water._y - _root.water._height / 3;
_xscale = 80 + random(20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
_xscale = _xscale + 5;
_alpha = _alpha - 1;
if (_alpha < 0) {
this.removeMovieClip();
}
}
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_root.player._x = 300;
_root.girl._x = _root.player._x;
_root.player._y = 25;
_root.girl._y = 25;
_root.bird._y = _root.player._x;
_root.gotoAndStop(32);
}
}
}
movieClip 174 {
}
movieClip 176 {
}
movieClip 177 {
instance of movieClip 176 {
onClipEvent (enterFrame) {
_width = _root.trapDoor.light._width;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
_xscale = 50 + random(50);
_yscale = _xscale;
_alpha = 10 + random(50);
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) / 2;
ySpeed = Math.sin(radians) / 2;
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
}
instance trapDoor of movieClip 177 {
onClipEvent (enterFrame) {
if (_root.trapDoorOpen eq true) {
if (light._width > 0 && light._width < 5) {
sound.start();
}
if (light._width < 145) {
light._width += 1;
}
}
}
onClipEvent (load) {
sound = new Sound(this);
sound.attachSound('door');
sound.setVolume(30);
if (_root.trapDoorOpen eq true) {
light._width = 145;
}
if (_root.trapDoorOpen eq false) {
light._width = 0;
}
}
}
movieClip 179 {
}
movieClip 180 {
instance hook of movieClip 179 {
onClipEvent (enterFrame) {
_x = _x + (x - _x) / 100;
trace(_x);
}
}
}
instance hook of movieClip 180 {
onClipEvent (load) {
ball.bug.gotoAndPlay(random(90));
friction = 0;
gravity = 1;
gravity2 = 0;
rotation2 = 0;
_rotation = 90;
windCounter = 0;
wind = 90 + random(20);
yOrig = _y;
}
onClipEvent (enterFrame) {
if (_root._currentframe !== 8 && _root.carryHook eq false) {
_x = -1000;
} else {
_x = 230;
}
if (_root.releaseHook eq true && _root.carryHook eq false) {
this.hook.x = 50;
} else {
this.hook.x = 0;
}
if (_root.bird.hitTest(this) && _root.fattyTextFinished == true && this.hook._x > 30) {
_root.carryHook = true;
}
if (_root.carryHook eq true && _root.fattyText2Finished !== true) {
_x = _root.bird._x;
_y = _root.bird._y;
this.hook._x = 0;
}
if (_root.fattyText2Finished == true) {
_visible = false;
_y = -1000;
}
windCounter += 1;
if (windCounter > 50) {
wind = 90 + random(20);
windCounter = 0;
}
if (_rotation > wind) {
_rotation = _rotation - 0.11;
gravity -= 0.1;
}
if (_rotation < wind) {
_rotation = _rotation + 0.11;
gravity += 0.1;
}
_rotation = _rotation + gravity;
}
}
movieClip 183 {
}
movieClip 186 {
}
movieClip 187 {
}
instance bird of movieClip 187 {
onClipEvent (enterFrame) {
float._rotation += 0.2;
if (_root.player.talking eq false && _root.birdTextFinished == true) {
x = _root.player._x - 20;
y = _root.player._y;
} else {
x = _root.talker._x;
y = _root.talker.follow;
}
_x = _x + (x - _x) / 10;
_y = _y + ((y - 50 - _y) / 10 + Math.sin(float._rotation / 0.03141592653589793));
if (Math.abs(_root.player.playerSpeed) > 3) {
counter += 1;
if (counter > 10 + random(30)) {
i = 0;
while (i < random(10)) {
++i;
++_root.mcI;
_root.feather.duplicateMovieClip('feather' + _root.mcI, _root.mcI);
++i;
}
counter = 0;
}
}
}
onClipEvent (load) {
_visible = false;
_root.mcI = 0;
counter = 0;
float._rotation = 0;
_x = _root.player._x;
_y = _root.player._y;
}
}
movieClip 189 {
}
instance feather of movieClip 189 {
onClipEvent (enterFrame) {
if (_alpha < 0) {
this.removeMovieClip();
} else {
_alpha = _alpha - 1;
}
_rotation = _rotation + rotateSpeed;
_y = _y + ySpeed;
_x = _x + Math.cos(_rotation * Math.PI / 100);
}
onClipEvent (load) {
_alpha = 100;
_x = _root.bird._x;
_y = _root.bird._y;
rotateSpeed = 0.1 + random(4) / random(4);
ySpeed = 0.4 + random(2);
}
}
movieClip 190 {
}
movieClip 191 {
}
movieClip 196 {
frame 11 {
stop();
}
}
movieClip 197 {
}
button 199 {
on (release) {
nextFrame();
}
}
button 201 {
on (release) {
_root.playThePianoTextFinished = true;
}
}
button 207 {
on (press) {
gotoAndStop(2);
}
}
button 210 {
on (release) {
if (_root.jetPackOn == true) {
gotoAndStop(3);
}
}
}
button 213 {
on (press) {
gotoAndStop(2);
}
}
button 216 {
on (press) {
gotoAndStop(2);
}
}
button 219 {
on (press) {
gotoAndStop(2);
}
}
button 222 {
on (press) {
gotoAndStop(2);
}
}
button 225 {
on (press) {
gotoAndStop(2);
}
}
movieClip 228 {
}
button 230 {
on (press) {
gotoAndStop(2);
}
}
button 231 {
on (press) {
gotoAndStop(4);
}
}
button 232 {
on (press) {
gotoAndStop(5);
}
}
button 233 {
on (press) {
gotoAndStop(6);
}
}
button 234 {
on (press) {
_root.playThePianoTextFinished = true;
_root.trapDoorOpen = true;
}
}
movieClip 235 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
}
instance playThePianoText of movieClip 235 {
onClipEvent (enterFrame) {
if (_y > 400) {
_root.player.talking = false;
} else {
_root.player.talking = true;
}
if (_root.player._x > 300) {
_root._root.playThePianoTextFinished = false;
}
if (_root.player._x < 300 && _root.playThePianoTextFinished !== true) {
_visible = true;
_y = _y + (y - _y) / 4;
} else {
_y = _y + (500 - _y) / 4;
}
}
onClipEvent (load) {
_visible = false;
y = _y;
_y = 600 + _height;
}
}
movieClip 237 {
frame 1 {
stop();
}
}
instance of movieClip 237 {
onClipEvent (load) {
fadeSpeed = 0.1;
soundVolume = 0;
soundMax = 20;
sound = new Sound(this);
sound.attachSound('indoorSound');
sound.setVolume(0);
sound.start(0, 99);
}
onClipEvent (unload) {
sound.stop();
}
onClipEvent (enterFrame) {
if (soundVolume > soundMax) {
soundVolume = soundMax;
}
if (soundVolume < 0) {
soundVolume = 0;
}
sound.setVolume(soundVolume);
if (_root._currentframe > 2 && _root._currentframe < 7) {
soundVolume += fadeSpeed;
} else {
soundVolume -= fadeSpeed;
}
}
}
movieClip 240 {
}
movieClip 243 {
}
movieClip 244 {
}
movieClip 245 {
frame 82 {
stop();
}
}
movieClip 246 {
frame 1 {
stop();
}
instance of movieClip 245 {
onClipEvent (load) {
_rotation = _rotation + (random(20) - random(20));
_xscale = _xscale + random(20);
gotoAndPlay(random(10));
_yscale = _xscale;
_alpha = 20 + random(100);
}
}
instance of movieClip 245 {
onClipEvent (load) {
_rotation = _rotation + (random(20) - random(20));
_xscale = _xscale + random(20);
gotoAndPlay(random(10));
_yscale = _xscale;
_alpha = 20 + random(100);
}
}
instance of movieClip 245 {
onClipEvent (load) {
_rotation = _rotation + (random(20) - random(20));
_xscale = _xscale + random(20);
gotoAndPlay(random(10));
_yscale = _xscale;
_alpha = 20 + random(100);
}
}
instance of movieClip 245 {
onClipEvent (load) {
_rotation = _rotation + (random(20) - random(20));
_xscale = _xscale + random(20);
gotoAndPlay(random(10));
_yscale = _xscale;
_alpha = 20 + random(100);
}
}
instance of movieClip 245 {
onClipEvent (load) {
_rotation = _rotation + (random(20) - random(20));
_xscale = _xscale + random(20);
gotoAndPlay(random(10));
_yscale = _xscale;
_alpha = 20 + random(100);
}
}
instance of movieClip 245 {
onClipEvent (load) {
_rotation = _rotation + (random(20) - random(20));
_xscale = _xscale + random(20);
gotoAndPlay(random(10));
_yscale = _xscale;
_alpha = 20 + random(100);
}
}
instance of movieClip 245 {
onClipEvent (load) {
_rotation = _rotation + (random(20) - random(20));
_xscale = _xscale + random(20);
gotoAndPlay(random(10));
_yscale = _xscale;
_alpha = 20 + random(100);
}
}
instance of movieClip 245 {
onClipEvent (load) {
_rotation = _rotation + (random(20) - random(20));
_xscale = _xscale + random(20);
gotoAndPlay(random(10));
_yscale = _xscale;
_alpha = 20 + random(100);
}
}
}
movieClip 248 {
}
movieClip 251 {
}
movieClip 253 {
}
movieClip 255 {
}
movieClip 256 {
}
movieClip 259 {
}
movieClip 261 {
}
movieClip 263 {
}
instance of movieClip 263 {
onClipEvent (enterFrame) {
_x = _root.girl._x;
_alpha = 100 - (_root.girl._y - _y);
_rotation = -(_x - 275) / 5;
}
onClipEvent (load) {
_width = _root.girl._width;
}
}
movieClip 265 {
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_root.player._x = 5;
_root.catFore._x = 5;
_root.girl._x = 5;
_root.bird._x = _root.player._x;
_root.nextFrame();
}
}
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_root.player._x = 545;
_root.catFore._x = 545;
_root.girl._x = 545;
_root.bird._x = _root.player._x;
_root.prevFrame();
}
}
}
movieClip 268 {
}
movieClip 269 {
instance of movieClip 268 {
onClipEvent (enterFrame) {
_alpha = 80 + random(20);
}
}
}
movieClip 270 {
}
movieClip 272 {
}
movieClip 275 {
}
movieClip 276 {
instance of movieClip 268 {
onClipEvent (enterFrame) {
_alpha = 80 + random(20);
}
}
instance of movieClip 268 {
onClipEvent (enterFrame) {
_alpha = 80 + random(20);
}
}
instance of movieClip 268 {
onClipEvent (enterFrame) {
_alpha = 80 + random(20);
}
}
instance of movieClip 268 {
onClipEvent (enterFrame) {
_alpha = 80 + random(20);
}
}
instance of movieClip 268 {
onClipEvent (enterFrame) {
_alpha = 80 + random(20);
}
}
instance of movieClip 268 {
onClipEvent (enterFrame) {
_alpha = 80 + random(20);
}
}
instance of movieClip 268 {
onClipEvent (enterFrame) {
_alpha = 80 + random(20);
}
}
}
movieClip 278 {
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_root.player._x = 545;
_root.catFore._x = 545;
_root.girl._x = 545;
_root.bird._x = _root.player._x;
_root.prevFrame();
}
}
}
movieClip 280 {
}
movieClip 282 {
}
movieClip 283 {
}
movieClip 286 {
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_root.stopAllSounds();
_root.player._y = 350;
_root.girl._y = _root.player._y;
_root.player._x = 150;
_root.catFore._x = 100;
_root.girl._x = 150;
_root.bird._x = _root.player._x;
_root.bird._visible = true;
_root.nextFrame();
}
}
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_root.player._x = 545;
_root.catFore._x = 545;
_root.girl._x = 545;
_root.bird._x = _root.player._x;
_root.prevFrame();
}
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
movieClip 288 {
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_root.player._y = 225;
_root.girl._y = 225;
_root.player._x = 5;
_root.catFore._x = 5;
_root.girl._x = 5;
_root.bird._x = _root.player._x;
_root.nextFrame();
}
}
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_root.egg.heald = false;
_root.player._y = 25;
_root.girl._y = 25;
_root.player._x = 545;
_root.catFore._x = 545;
_root.girl._x = 545;
_root.bird._x = _root.player._x;
_root.stopAllSounds();
_root.prevFrame();
}
}
}
movieClip 291 {
}
movieClip 292 {
}
movieClip 294 {
}
movieClip 297 {
}
movieClip 299 {
}
movieClip 302 {
}
movieClip 304 {
}
movieClip 306 {
}
movieClip 308 {
}
movieClip 311 {
}
movieClip 312 {
instance of movieClip 311 {
onClipEvent (enterFrame) {
_xscale = _xscale + (_root.cageDoorScale - _xscale) / 10;
}
}
}
instance talker of movieClip 312 {
onClipEvent (load) {
follow = _y + 95;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
movieClip 314 {
}
instance egg of movieClip 314 {
onClipEvent (load) {
_visible = false;
heald = false;
born = false;
pushUp = 0;
playerSpeed = 2;
gravity = 0;
_y = _root.land1_worm._y;
_x = _root.land1_worm._x + 50;
}
onClipEvent (enterFrame) {
if (heald eq true && born eq true) {
gravity = 0;
_visible = true;
_x = _root.bird._x;
_y = _root.bird._y + 10;
}
if (_root.player.hitTest(this) && born eq true && heald eq false) {
_root.bird._x = _x;
_root.bird._y = _y;
heald = true;
}
if (born eq false) {
_x = 800;
gravity = 0;
_visible = false;
} else {
_visible = true;
}
_y = _y + gravity;
_x = _x + playerSpeed;
playerSpeed += -playerSpeed / 100;
if (heald !== true) {
if (_root.ground.hitTest(_x, _y, true)) {
pushUp += 0.3;
gravity = -gravity / 1.2;
_y = _y - pushUp;
} else {
pushUp = 0;
gravity += 1;
}
}
}
}
button 317 {
on (press) {
nextFrame();
}
}
button 320 {
on (release) {
gotoAndStop(3);
}
}
button 325 {
on (release) {
gotoAndStop(5);
}
}
button 329 {
on (release) {
_root.cageDoorScale = -100;
_root.birdTextFinished = true;
}
}
movieClip 331 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
stop();
}
frame 6 {
stop();
}
}
instance birdText of movieClip 331 {
onClipEvent (enterFrame) {
if (_root.birdTextFinished !== true) {
if (_currentframe == _totalframes) {
sound.start();
gotoAndStop(1);
}
_visible = true;
_root.player.talking = true;
_y = _y + (y - _y) / 4;
} else {
_root.player.talking = false;
_y = _y + (500 - _y) / 4;
}
}
onClipEvent (load) {
gotoAndStop(_totalframes);
_visible = false;
sound = new Sound(this);
sound.attachSound('talk_bird');
sound.setVolume(40);
y = _y;
_y = 600 + _height;
}
}
instance of movieClip 237 {
onClipEvent (load) {
sound = new Sound(this);
sound.attachSound('waterSound');
sound.start(0, 99);
sound.setVolume(10);
}
onClipEvent (unload) {
sound.stop();
}
}
instance of movieClip 237 {
onClipEvent (load) {
fadeSpeed = 0.1;
soundVolume = 0;
soundMax = 10;
sound = new Sound(this);
sound.attachSound('windSound');
sound.start(0, 99);
sound.setVolume(0);
}
onClipEvent (unload) {
sound.stop();
}
onClipEvent (enterFrame) {
if (soundVolume > soundMax) {
soundVolume = soundMax;
}
if (soundVolume < 0) {
soundVolume = 0;
}
sound.setVolume(soundVolume);
if (_root._currentframe > 6 && _root._currentframe < 17) {
soundVolume += fadeSpeed;
} else {
soundVolume -= fadeSpeed;
}
}
}
instance of movieClip 237 {
onClipEvent (load) {
fadeSpeed = 0.1;
soundVolume = 0;
soundMax = 30;
sound = new Sound(this);
sound.attachSound('comaSound');
sound.start(0, 99);
sound.setVolume(0);
}
onClipEvent (unload) {
sound.stop();
}
onClipEvent (enterFrame) {
if (soundVolume > soundMax) {
soundVolume = soundMax;
}
if (soundVolume < 0) {
soundVolume = 0;
}
sound.setVolume(soundVolume);
if (_root._currentframe > 6 && _root._currentframe < 10) {
soundVolume += fadeSpeed;
} else {
soundVolume -= fadeSpeed;
}
}
}
instance of movieClip 237 {
onClipEvent (load) {
fadeSpeed = 0.4;
soundVolume = 0;
soundMax = 65;
sound = new Sound(this);
sound.attachSound('redWindLoop');
sound.start(0, 99);
sound.setVolume(0);
}
onClipEvent (unload) {
sound.stop();
}
onClipEvent (enterFrame) {
if (soundVolume > soundMax) {
soundVolume = soundMax;
}
if (soundVolume < 0) {
soundVolume = 0;
}
sound.setVolume(soundVolume);
if (_root._currentframe > 9 && _root._currentframe < 16) {
soundVolume += fadeSpeed;
} else {
soundVolume -= fadeSpeed;
}
}
}
movieClip 335 {
}
movieClip 337 {
instance of movieClip 335 {
onClipEvent (load) {
gotoAndPlay(random(20));
}
}
instance of movieClip 335 {
onClipEvent (load) {
gotoAndPlay(random(20));
}
}
}
instance talker of movieClip 337 {
onClipEvent (load) {
follow = _y;
}
}
movieClip 360 {
}
movieClip 363 {
}
movieClip 366 {
}
movieClip 368 {
}
movieClip 370 {
}
movieClip 372 {
}
movieClip 375 {
}
movieClip 377 {
instance of movieClip 375 {
onClipEvent (enterFrame) {
if (_root.waterRunning == true) {
_rotation = _rotation + 10;
} else {
_rotation = _rotation - random(0.5);
}
}
}
}
movieClip 380 {
}
movieClip 382 {
}
movieClip 384 {
}
movieClip 386 {
}
instance of movieClip 386 {
onClipEvent (load) {
gotoAndPlay(random(50));
}
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_rotation = _rotation + _root.player.playerSpeed;
} else {
_rotation = _rotation + -_rotation / 10;
}
}
}
instance of movieClip 386 {
onClipEvent (load) {
gotoAndPlay(random(50));
}
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_rotation = _rotation + _root.player.playerSpeed;
} else {
_rotation = _rotation + -_rotation / 10;
}
}
}
instance of movieClip 386 {
onClipEvent (load) {
gotoAndPlay(random(50));
}
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_rotation = _rotation + _root.player.playerSpeed;
} else {
_rotation = _rotation + -_rotation / 10;
}
}
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
if (_root.carryHook eq false) {
_root.hook._y = -1000;
}
_root.player._y = 375;
_root.girl._y = _root.player._y;
_root.player._x = 5;
_root.catFore._x = 5;
_root.girl._x = 5;
_root.bird._x = _root.player._x;
if (_root.egg.heald == false) {
_root.egg._visible = false;
_root.egg._x = 1000;
}
_root.nextFrame();
}
}
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
if (_root.carryHook eq false) {
_root.hook._y = -1000;
}
_root.player._y = 325;
_root.girl._y = _root.player._y;
_root.player._x = 545;
_root.catFore._x = 545;
_root.girl._x = 545;
_root.bird._x = _root.player._x;
_root.prevFrame();
}
}
}
movieClip 392 {
}
instance water of movieClip 392 {
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
if (Math.abs(_root.player.playerSpeed) > 2) {
++_root.mcI;
_root.splash.duplicateMovieClip('splash' + _root.mcI, _root.mcI);
}
if (Math.abs(_root.player.gravity) > 2) {
++_root.mcI;
_root.splash.duplicateMovieClip('splash' + _root.mcI, _root.mcI);
}
}
}
}
movieClip 394 {
}
button 398 {
on (release) {
nextFrame();
}
}
button 400 {
on (release) {
gotoAndStop(4);
}
}
button 403 {
on (release) {
_root.farmerJohnTextFinished = true;
}
}
movieClip 407 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
stop();
}
}
instance farmerJohnText of movieClip 407 {
onClipEvent (enterFrame) {
if (_root.player._x > 300 && _root.farmerJohnTextFinished !== true && _root.fattyTextFinished !== true) {
if (_currentframe == _totalframes) {
sound.start();
gotoAndStop(1);
}
_visible = true;
_y = _y + (y - _y) / 4;
} else {
_y = _y + (500 - _y) / 4;
}
}
onClipEvent (load) {
gotoAndStop(_totalframes);
_visible = false;
sound = new Sound(this);
sound.attachSound('talk_dad');
sound.setVolume(50);
y = _y;
_y = 600 + _height;
}
}
button 411 {
on (release) {
_root.farmerJohnText2Finished = true;
_root.releaseHook = true;
}
}
movieClip 412 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
}
instance farmerJohnText2 of movieClip 412 {
onClipEvent (enterFrame) {
if (_y > 400 && _root.farmerJohnText._y > 400) {
_root.player.talking = false;
} else {
_root.player.talking = true;
}
if (_root.player._x < 300 && _root.farmerJohnText2Finished !== true && _root.fattyTextFinished == true) {
if (_currentframe == _totalframes) {
sound.start();
gotoAndStop(1);
}
_visible = true;
_y = _y + (y - _y) / 4;
} else {
_y = _y + (500 - _y) / 4;
}
}
onClipEvent (load) {
gotoAndStop(_totalframes);
_visible = false;
sound = new Sound(this);
sound.attachSound('talk_dad');
sound.setVolume(50);
y = _y;
_y = 600 + _height;
}
}
movieClip 414 {
}
movieClip 417 {
}
movieClip 419 {
}
movieClip 421 {
}
movieClip 423 {
}
instance flower129 of movieClip 423 {
onClipEvent (load) {
gotoAndPlay(random(50));
}
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_rotation = _rotation + _root.player.playerSpeed;
} else {
_rotation = _rotation + -_rotation / 10;
}
}
}
instance flower130 of movieClip 423 {
onClipEvent (load) {
gotoAndPlay(random(50));
}
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_rotation = _rotation + _root.player.playerSpeed;
} else {
_rotation = _rotation + -_rotation / 10;
}
}
}
instance flower128 of movieClip 423 {
onClipEvent (load) {
gotoAndPlay(random(50));
}
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_rotation = _rotation + _root.player.playerSpeed;
} else {
_rotation = _rotation + -_rotation / 10;
}
}
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_root.player._y = 275;
_root.girl._y = _root.player._y;
_root.player._x = 50;
_root.catFore._x = 50;
_root.girl._x = 50;
_root.bird._x = _root.player._x;
_root.nextFrame();
}
}
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
if (_root.carryHook eq false) {
_root.hook._y = _root.hook.yOrig;
}
_root.player._x = 525;
_root.catFore._x = 525;
_root.girl._x = 525;
_root.bird._x = _root.player._x;
_root.prevFrame();
}
}
}
movieClip 428 {
}
movieClip 430 {
instance of movieClip 428 {
onClipEvent (enterFrame) {
_alpha = _alpha + (alpha - _alpha) / 10;
if (_root.waterRunning == true) {
alpha = 100;
} else {
alpha = 0;
}
}
onClipEvent (load) {
sound = new Sound(this);
sound.attachSound('waterfall');
sound.setVolume(10);
sound.stop();
if (_root.waterRunning == true) {
sound.start();
}
}
onClipEvent (unload) {
sound.stop();
}
}
}
movieClip 432 {
}
movieClip 434 {
}
movieClip 436 {
}
movieClip 440 {
}
movieClip 442 {
}
instance flower111 of movieClip 423 {
onClipEvent (load) {
gotoAndPlay(random(50));
}
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_rotation = _rotation + _root.player.playerSpeed;
} else {
_rotation = _rotation + -_rotation / 10;
}
}
}
instance flower112 of movieClip 423 {
onClipEvent (load) {
gotoAndPlay(random(50));
}
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_rotation = _rotation + _root.player.playerSpeed;
} else {
_rotation = _rotation + -_rotation / 10;
}
}
}
instance flower114 of movieClip 423 {
onClipEvent (load) {
gotoAndPlay(random(50));
}
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_rotation = _rotation + _root.player.playerSpeed;
} else {
_rotation = _rotation + -_rotation / 10;
}
}
}
instance flower116 of movieClip 423 {
onClipEvent (load) {
gotoAndPlay(random(50));
}
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_rotation = _rotation + _root.player.playerSpeed;
} else {
_rotation = _rotation + -_rotation / 10;
}
}
}
instance flower118 of movieClip 423 {
onClipEvent (load) {
gotoAndPlay(random(50));
}
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_rotation = _rotation + _root.player.playerSpeed;
} else {
_rotation = _rotation + -_rotation / 10;
}
}
}
instance flower120 of movieClip 423 {
onClipEvent (load) {
gotoAndPlay(random(50));
}
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_rotation = _rotation + _root.player.playerSpeed;
} else {
_rotation = _rotation + -_rotation / 10;
}
}
}
instance flower122 of movieClip 423 {
onClipEvent (load) {
gotoAndPlay(random(50));
}
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_rotation = _rotation + _root.player.playerSpeed;
} else {
_rotation = _rotation + -_rotation / 10;
}
}
}
instance flower110 of movieClip 423 {
onClipEvent (load) {
gotoAndPlay(random(50));
}
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_rotation = _rotation + _root.player.playerSpeed;
} else {
_rotation = _rotation + -_rotation / 10;
}
}
}
instance flower117 of movieClip 423 {
onClipEvent (load) {
gotoAndPlay(random(50));
}
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_rotation = _rotation + _root.player.playerSpeed;
} else {
_rotation = _rotation + -_rotation / 10;
}
}
}
instance flower109 of movieClip 423 {
onClipEvent (load) {
gotoAndPlay(random(50));
}
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_rotation = _rotation + _root.player.playerSpeed;
} else {
_rotation = _rotation + -_rotation / 10;
}
}
}
instance flower125 of movieClip 423 {
onClipEvent (load) {
gotoAndPlay(random(50));
}
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_rotation = _rotation + _root.player.playerSpeed;
} else {
_rotation = _rotation + -_rotation / 10;
}
}
}
instance flower108 of movieClip 423 {
onClipEvent (load) {
gotoAndPlay(random(50));
}
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_rotation = _rotation + _root.player.playerSpeed;
} else {
_rotation = _rotation + -_rotation / 10;
}
}
}
instance flower126 of movieClip 423 {
onClipEvent (load) {
gotoAndPlay(random(50));
}
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_rotation = _rotation + _root.player.playerSpeed;
} else {
_rotation = _rotation + -_rotation / 10;
}
}
}
instance flower124 of movieClip 423 {
onClipEvent (load) {
gotoAndPlay(random(50));
}
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_rotation = _rotation + _root.player.playerSpeed;
} else {
_rotation = _rotation + -_rotation / 10;
}
}
}
instance flower103 of movieClip 423 {
onClipEvent (load) {
gotoAndPlay(random(50));
}
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_rotation = _rotation + _root.player.playerSpeed;
} else {
_rotation = _rotation + -_rotation / 10;
}
}
}
instance flower115 of movieClip 423 {
onClipEvent (load) {
gotoAndPlay(random(50));
}
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_rotation = _rotation + _root.player.playerSpeed;
} else {
_rotation = _rotation + -_rotation / 10;
}
}
}
instance flower123 of movieClip 423 {
onClipEvent (load) {
gotoAndPlay(random(50));
}
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_rotation = _rotation + _root.player.playerSpeed;
} else {
_rotation = _rotation + -_rotation / 10;
}
}
}
instance flower113 of movieClip 423 {
onClipEvent (load) {
gotoAndPlay(random(50));
}
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_rotation = _rotation + _root.player.playerSpeed;
} else {
_rotation = _rotation + -_rotation / 10;
}
}
}
instance flower121 of movieClip 423 {
onClipEvent (load) {
gotoAndPlay(random(50));
}
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_rotation = _rotation + _root.player.playerSpeed;
} else {
_rotation = _rotation + -_rotation / 10;
}
}
}
instance flower119 of movieClip 423 {
onClipEvent (load) {
gotoAndPlay(random(50));
}
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_rotation = _rotation + _root.player.playerSpeed;
} else {
_rotation = _rotation + -_rotation / 10;
}
}
}
instance flower127 of movieClip 423 {
onClipEvent (load) {
gotoAndPlay(random(50));
}
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_rotation = _rotation + _root.player.playerSpeed;
} else {
_rotation = _rotation + -_rotation / 10;
}
}
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_root.player._y = 375;
_root.girl._y = _root.player._y;
_root.player._x = 50;
_root.catFore._x = 50;
_root.girl._x = 50;
_root.bird._x = _root.player._x;
if (_root.egg.heald !== true && _root.egg.born == true) {
_root.egg._x = 275;
_root.egg._y = 275;
_root.egg.gravity = 0;
}
_root.nextFrame();
}
}
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_root.player._y = 75;
_root.girl._y = _root.player._y;
_root.player._x = 525;
_root.catFore._x = 525;
_root.girl._x = 525;
_root.bird._x = _root.player._x;
_root.prevFrame();
}
}
}
movieClip 444 {
}
movieClip 446 {
}
instance of movieClip 446 {
onClipEvent (enterFrame) {
if (fadeOut eq false) {
if (_alpha > 200) {
fadeOut = true;
} else {
_alpha = _alpha + 2;
}
} else {
if (_alpha > 0) {
_alpha = _alpha - 2;
}
}
}
onClipEvent (load) {
fadeOut = false;
_alpha = 0;
}
}
movieClip 449 {
}
movieClip 450 {
instance hole of movieClip 449 {
onClipEvent (load) {
xScale = 80;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
xScale = 80;
} else {
xScale = 50;
}
_xscale = _xscale + (xScale - _xscale) / 5;
_yscale = _xscale;
}
}
}
instance land1_worm of movieClip 450 {
onClipEvent (enterFrame) {
_yscale = _yscale + (80 - _yscale) / 10;
}
}
movieClip 452 {
}
movieClip 454 {
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_root.player._y = 250;
_root.girl._y = 250;
_root.player._x = 50;
_root.catFore._x = 50;
_root.girl._x = 50;
_root.bird._x = _root.player._x;
if (_root.egg.heald !== true && _root.egg.born == true) {
_root.egg._x = 1000;
}
_root.nextFrame();
}
}
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_root.player._y = 350;
_root.girl._y = _root.player._y;
_root.player._x = 540;
_root.catFore._x = 540;
_root.girl._x = 540;
_root.bird._x = _root.player._x;
if (_root.egg.heald !== true && _root.egg.born == true) {
_root.egg._x = 1000;
}
_root.prevFrame();
}
}
}
movieClip 457 {
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
movieClip 459 {
}
movieClip 466 {
}
instance talker of movieClip 466 {
onClipEvent (load) {
follow = _y;
}
}
movieClip 468 {
}
movieClip 476 {
frame 1 {
stop();
}
frame 18 {
prevFrame();
}
}
instance of movieClip 476 {
onClipEvent (enterFrame) {
if (_currentframe == 1 && _root.player.hitTest(this) && _root.player.gravity > 8) {
_root.player.gravity = -_root.player.gravity;
_root.girl._y = _root.player._y;
_root.girl._x = _root.player._x;
play();
}
}
}
instance of movieClip 476 {
onClipEvent (enterFrame) {
if (_currentframe == 1 && _root.player.hitTest(this) && _root.player.gravity > 8) {
_root.player.gravity = -_root.player.gravity;
_root.girl._y = _root.player._y;
_root.girl._x = _root.player._x;
play();
}
}
}
instance of movieClip 476 {
onClipEvent (enterFrame) {
if (_currentframe == 1 && _root.player.hitTest(this) && _root.player.gravity > 8) {
_root.player.gravity = -_root.player.gravity;
_root.girl._y = _root.player._y;
_root.girl._x = _root.player._x;
play();
}
}
}
instance of movieClip 476 {
onClipEvent (enterFrame) {
if (_currentframe == 1 && _root.player.hitTest(this) && _root.player.gravity > 8) {
_root.player.gravity = -_root.player.gravity;
_root.girl._y = _root.player._y;
_root.girl._x = _root.player._x;
play();
}
}
}
instance of movieClip 476 {
onClipEvent (enterFrame) {
if (_currentframe == 1 && _root.player.hitTest(this) && _root.player.gravity > 8) {
_root.player.gravity = -_root.player.gravity;
_root.girl._y = _root.player._y;
_root.girl._x = _root.player._x;
play();
}
}
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_root.player._y = 350;
_root.girl._y = _root.player._y;
_root.player._x = 50;
_root.catFore._x = 50;
_root.girl._x = 50;
_root.bird._x = _root.player._x;
if (_root.egg.heald == false) {
_root.egg._visible = false;
_root.egg._x = 1000;
}
_root.nextFrame();
}
}
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_root.player._y = 375;
_root.girl._y = _root.player._y;
_root.player._x = 545;
_root.catFore._x = 545;
_root.girl._x = 545;
_root.bird._x = _root.player._x;
if (_root.egg.heald !== true && _root.egg.born == true) {
_root.egg._x = 275;
_root.egg._y = 275;
_root.egg.gravity = 0;
}
_root.prevFrame();
}
}
}
movieClip 479 {
}
movieClip 481 {
}
button 485 {
on (release) {
gotoAndStop(4);
}
}
button 487 {
on (release) {
gotoAndStop(3);
}
}
button 489 {
on (release) {
_root.littleGirlTextFinished = true;
}
}
button 493 {
on (release) {
gotoAndStop(5);
}
}
movieClip 497 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
stop();
}
frame 6 {
stop();
}
}
instance farmerJohnText of movieClip 497 {
onClipEvent (enterFrame) {
if (_root.player._x > 100 && _root.player._x < 440 && _root.player._y < 350 && _root.littleGirlTextFinished !== true) {
if (_currentframe == _totalframes) {
sound.start();
gotoAndStop(1);
}
_visible = true;
_root.player.talking = true;
_y = _y + (y - _y) / 4;
} else {
_root.player.talking = false;
_y = _y + (500 - _y) / 4;
}
}
onClipEvent (load) {
gotoAndStop(_totalframes);
_visible = false;
sound = new Sound(this);
sound.attachSound('talk_kid');
sound.setVolume(50);
sound.stop();
y = _y;
_y = 600 + _height;
}
}
movieClip 499 {
}
movieClip 501 {
}
movieClip 503 {
}
movieClip 505 {
}
instance flower3 of movieClip 423 {
onClipEvent (load) {
gotoAndPlay(random(50));
}
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_rotation = _rotation + _root.player.playerSpeed;
} else {
_rotation = _rotation + -_rotation / 10;
}
}
}
instance flower of movieClip 423 {
onClipEvent (load) {
gotoAndPlay(random(50));
}
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_rotation = _rotation + _root.player.playerSpeed;
} else {
_rotation = _rotation + -_rotation / 10;
}
}
}
instance flower2 of movieClip 423 {
onClipEvent (load) {
gotoAndPlay(random(50));
}
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_rotation = _rotation + _root.player.playerSpeed;
} else {
_rotation = _rotation + -_rotation / 10;
}
}
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_root.player._y = 250;
_root.girl._y = 250;
_root.player._x = 545;
_root.catFore._x = 545;
_root.girl._x = 545;
_root.bird._x = _root.player._x;
_root.prevFrame();
}
}
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_root.player._y = 225;
_root.girl._y = _root.player._y;
_root.player._x = 5;
_root.catFore._x = 5;
_root.girl._x = 5;
_root.bird._x = _root.player._x;
_root.nextFrame();
}
}
}
movieClip 507 {
}
movieClip 509 {
}
movieClip 512 {
}
movieClip 513 {
}
movieClip 515 {
}
movieClip 516 {
}
movieClip 518 {
}
movieClip 562 {
}
movieClip 563 {
}
movieClip 564 {
}
instance of movieClip 564 {
onClipEvent (load) {
ball.bug.gotoAndPlay(random(90));
friction = 0;
gravity = 1;
gravity2 = 0;
rotation2 = 0;
_rotation = random(50);
}
onClipEvent (enterFrame) {
if (_root.player._x > _x - 150 && _root.player._x < _x + 150 && _root.egg.heald eq true) {
xDist = _root.player._x - _x;
yDist = _root.player._y - _y;
radians = Math.atan2(yDist, xDist) / 0.0174532925199433;
_rotation = _rotation + (radians - _rotation) / 12;
gravity = 0;
friction = 0;
} else {
if (_rotation > 90) {
_rotation = _rotation - 0.11;
gravity -= 0.1;
}
if (_rotation < 90) {
_rotation = _rotation + 0.11;
gravity += 0.1;
}
_rotation = _rotation + gravity;
}
}
}
instance of movieClip 564 {
onClipEvent (load) {
ball.bug.gotoAndPlay(random(90));
friction = 0;
gravity = 1;
gravity2 = 0;
rotation2 = 0;
_rotation = random(50);
}
onClipEvent (enterFrame) {
if (_root.player._x > _x - 150 && _root.player._x < _x + 150 && _root.egg.heald eq true) {
xDist = _root.player._x - _x;
yDist = _root.player._y - _y;
radians = Math.atan2(yDist, xDist) / 0.0174532925199433;
_rotation = _rotation + (radians - _rotation) / 12;
gravity = 0;
friction = 0;
} else {
if (_rotation > 90) {
_rotation = _rotation - 0.11;
gravity -= 0.1;
}
if (_rotation < 90) {
_rotation = _rotation + 0.11;
gravity += 0.1;
}
_rotation = _rotation + gravity;
}
}
}
movieClip 566 {
}
movieClip 568 {
}
movieClip 571 {
}
instance talker of movieClip 571 {
onClipEvent (load) {
follow = 100;
ball.bug.gotoAndPlay(random(90));
friction = 0;
gravity = 1;
gravity2 = 0;
rotation2 = 0;
_rotation = random(50);
}
onClipEvent (enterFrame) {
if (_root.player._x > _x - 150 && _root.player._x < _x + 150 && _root.egg.heald eq true) {
xDist = _root.player._x - _x;
yDist = _root.player._y - _y;
radians = Math.atan2(yDist, xDist) / 0.0174532925199433;
_rotation = _rotation + (radians - _rotation) / 12;
gravity = 0;
friction = 0;
} else {
if (_rotation > 90) {
_rotation = _rotation - 0.11;
gravity -= 0.1;
}
if (_rotation < 90) {
_rotation = _rotation + 0.11;
gravity += 0.1;
}
_rotation = _rotation + gravity;
}
}
}
instance of movieClip 564 {
onClipEvent (load) {
ball.bug.gotoAndPlay(random(90));
friction = 0;
gravity = 1;
gravity2 = 0;
rotation2 = 0;
_rotation = random(50);
}
onClipEvent (enterFrame) {
if (_root.player._x > _x - 150 && _root.player._x < _x + 150 && _root.egg.heald eq true) {
xDist = _root.player._x - _x;
yDist = _root.player._y - _y;
radians = Math.atan2(yDist, xDist) / 0.0174532925199433;
_rotation = _rotation + (radians - _rotation) / 12;
gravity = 0;
friction = 0;
} else {
if (_rotation > 90) {
_rotation = _rotation - 0.11;
gravity -= 0.1;
}
if (_rotation < 90) {
_rotation = _rotation + 0.11;
gravity += 0.1;
}
_rotation = _rotation + gravity;
}
}
}
movieClip 572 {
}
movieClip 574 {
}
instance fruit1 of movieClip 476 {
onClipEvent (enterFrame) {
if (_currentframe == 1 && _root.player.hitTest(this) && _root.player.gravity > 8) {
_root.player.gravity = -_root.player.gravity;
_root.girl._y = _root.player._y;
_root.girl._x = _root.player._x;
play();
if (_root.jetPackOn eq true) {
_root.fruitExplode eq true;
}
}
}
}
instance flower4 of movieClip 423 {
onClipEvent (load) {
gotoAndPlay(random(50));
}
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_rotation = _rotation + _root.player.playerSpeed;
} else {
_rotation = _rotation + -_rotation / 10;
}
}
}
instance flower5 of movieClip 423 {
onClipEvent (load) {
gotoAndPlay(random(50));
}
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_rotation = _rotation + _root.player.playerSpeed;
} else {
_rotation = _rotation + -_rotation / 10;
}
}
}
instance flower6 of movieClip 423 {
onClipEvent (load) {
gotoAndPlay(random(50));
}
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_rotation = _rotation + _root.player.playerSpeed;
} else {
_rotation = _rotation + -_rotation / 10;
}
}
}
instance flower7 of movieClip 423 {
onClipEvent (load) {
gotoAndPlay(random(50));
}
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_rotation = _rotation + _root.player.playerSpeed;
} else {
_rotation = _rotation + -_rotation / 10;
}
}
}
instance flower8 of movieClip 423 {
onClipEvent (load) {
gotoAndPlay(random(50));
}
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_rotation = _rotation + _root.player.playerSpeed;
} else {
_rotation = _rotation + -_rotation / 10;
}
}
}
instance flower9 of movieClip 423 {
onClipEvent (load) {
gotoAndPlay(random(50));
}
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_rotation = _rotation + _root.player.playerSpeed;
} else {
_rotation = _rotation + -_rotation / 10;
}
}
}
instance flower10 of movieClip 423 {
onClipEvent (load) {
gotoAndPlay(random(50));
}
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_rotation = _rotation + _root.player.playerSpeed;
} else {
_rotation = _rotation + -_rotation / 10;
}
}
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_root.player._y = 175;
_root.girl._y = _root.player._y;
_root.player._x = 545;
_root.catFore._x = 545;
_root.girl._x = 545;
_root.bird._x = _root.player._x;
_root.prevFrame();
}
}
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_root.player._y = 325;
_root.girl._y = _root.player._y;
_root.player._x = 5;
_root.catFore._x = 5;
_root.girl._x = 5;
_root.bird._x = _root.player._x;
_root.nextFrame();
}
}
}
movieClip 577 {
}
movieClip 578 {
}
button 580 {
on (release) {
gotoAndStop(2);
}
}
button 582 {
on (release) {
gotoAndStop(3);
}
}
button 585 {
on (release) {
_root.swingerTextFinished = true;
}
}
button 588 {
on (release) {
gotoAndStop(5);
}
}
movieClip 592 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
stop();
}
frame 6 {
stop();
}
}
instance swingerText of movieClip 592 {
onClipEvent (enterFrame) {
if (_root.player._x > 100 && _root.player._x < 440 && _root.mamaTextFinished !== true && _root.player._y < 220 && _root.swingerTextFinished !== true) {
if (_currentframe == _totalframes) {
sound.start();
gotoAndStop(1);
}
_visible = true;
_y = _y + (y - _y) / 4;
} else {
_y = _y + (500 - _y) / 4;
}
}
onClipEvent (load) {
gotoAndStop(_totalframes);
_visible = false;
sound = new Sound(this);
sound.attachSound('talk_swing');
sound.setVolume(50);
sound.stop();
y = _y;
_y = 600 + _height;
}
}
button 594 {
on (release) {
gotoAndStop(2);
}
}
button 598 {
on (release) {
nextFrame();
}
}
button 601 {
on (release) {
_root.swingerText2Finished = true;
_root.jetPackOn = true;
}
}
movieClip 602 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 4 {
stop();
}
}
instance swingerText2 of movieClip 602 {
onClipEvent (enterFrame) {
if (_y > 400 && _root.swingerText._y > 400) {
_root.player.talking = false;
} else {
_root.player.talking = true;
}
if (_root.player._x > 100 && _root.player._x < 440 && _root.player._y < 220 && _root.mamaTextFinished == true && _root.swingerText2Finished !== true) {
if (_currentframe == _totalframes) {
sound.start();
gotoAndStop(1);
}
_visible = true;
_y = _y + (y - _y) / 4;
} else {
_y = _y + (500 - _y) / 4;
}
}
onClipEvent (load) {
gotoAndStop(_totalframes);
_visible = false;
sound = new Sound(this);
sound.attachSound('talk_swing');
sound.setVolume(50);
sound.stop();
y = _y;
_y = 600 + _height;
}
}
movieClip 604 {
}
movieClip 607 {
}
instance talker of movieClip 607 {
onClipEvent (enterFrame) {
_xscale = _xscale + (xscale - _xscale) / 10;
_yscale = _yscale + (yscale - _yscale) / 10;
if (_root.fattyText2Finished eq false) {
xscale = 75;
yscale = 75;
} else {
xscale = 50;
yscale = 50;
}
}
}
instance of movieClip 428 {
onClipEvent (enterFrame) {
_alpha = _alpha + (alpha - _alpha) / 10;
if (_root.waterRunning == true) {
alpha = 50;
} else {
alpha = 0;
}
}
}
movieClip 609 {
}
movieClip 611 {
}
movieClip 612 {
instance of movieClip 611 {
onClipEvent (enterFrame) {
if (_root.fattyText2Finished eq true) {
_y = -100000;
}
}
}
}
instance of movieClip 476 {
onClipEvent (enterFrame) {
if (_currentframe == 1 && _root.player.hitTest(this) && _root.player.gravity > 8) {
_root.player.gravity = -_root.player.gravity;
_root.girl._y = _root.player._y;
_root.girl._x = _root.player._x;
play();
}
}
}
instance of movieClip 476 {
onClipEvent (enterFrame) {
if (_currentframe == 1 && _root.player.hitTest(this) && _root.player.gravity > 8) {
_root.player.gravity = -_root.player.gravity;
_root.girl._y = _root.player._y;
_root.girl._x = _root.player._x;
play();
}
}
}
instance of movieClip 476 {
onClipEvent (enterFrame) {
if (_currentframe == 1 && _root.player.hitTest(this) && _root.player.gravity > 8) {
_root.player.gravity = -_root.player.gravity;
_root.girl._y = _root.player._y;
_root.girl._x = _root.player._x;
play();
}
}
}
instance flower11 of movieClip 423 {
onClipEvent (load) {
gotoAndPlay(random(50));
}
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_rotation = _rotation + _root.player.playerSpeed;
} else {
_rotation = _rotation + -_rotation / 10;
}
}
}
instance flower12 of movieClip 423 {
onClipEvent (load) {
gotoAndPlay(random(50));
}
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_rotation = _rotation + _root.player.playerSpeed;
} else {
_rotation = _rotation + -_rotation / 10;
}
}
}
instance flower13 of movieClip 423 {
onClipEvent (load) {
gotoAndPlay(random(50));
}
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_rotation = _rotation + _root.player.playerSpeed;
} else {
_rotation = _rotation + -_rotation / 10;
}
}
}
instance flower14 of movieClip 423 {
onClipEvent (load) {
gotoAndPlay(random(50));
}
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_rotation = _rotation + _root.player.playerSpeed;
} else {
_rotation = _rotation + -_rotation / 10;
}
}
}
instance flower15 of movieClip 423 {
onClipEvent (load) {
gotoAndPlay(random(50));
}
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_rotation = _rotation + _root.player.playerSpeed;
} else {
_rotation = _rotation + -_rotation / 10;
}
}
}
instance flower16 of movieClip 423 {
onClipEvent (load) {
gotoAndPlay(random(50));
}
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_rotation = _rotation + _root.player.playerSpeed;
} else {
_rotation = _rotation + -_rotation / 10;
}
}
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_root.player._y = 100;
_root.girl._y = _root.player._y;
_root.player._x = 20;
_root.catFore._x = 20;
_root.girl._x = 20;
_root.bird._x = _root.player._x;
if (_root.egg.heald == false) {
_root.egg._visible = false;
_root.egg._x = 1000;
}
_root.nextFrame();
}
}
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_root.player._y = 210;
_root.girl._y = _root.player._y;
_root.player._x = 545;
_root.catFore._x = 545;
_root.girl._x = 545;
_root.bird._x = _root.player._x;
_root.prevFrame();
}
}
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_root.player._y = 375;
_root.girl._y = _root.player._y;
_root.player._x = 20;
_root.catFore._x = 20;
_root.girl._x = 20;
_root.bird._x = _root.player._x;
if (_root.egg.heald == false) {
_root.egg._visible = false;
_root.egg._x = 1000;
}
_root.nextFrame();
}
}
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_root.player._y = 25;
_root.girl._y = 25;
_root.bird._y = _root.player._x;
_root.player._x = 325;
_root.girl._x = 325;
_root.gotoAndStop(18);
}
}
}
movieClip 615 {
}
instance of movieClip 428 {
onClipEvent (enterFrame) {
_alpha = _alpha + (alpha - _alpha) / 10;
if (_root.waterRunning == true) {
alpha = 100;
} else {
alpha = 0;
}
}
}
movieClip 617 {
}
instance of movieClip 428 {
onClipEvent (enterFrame) {
_alpha = _alpha + (alpha - _alpha) / 10;
if (_root.waterRunning == true) {
alpha = 100;
} else {
alpha = 0;
}
}
}
instance waterfall of movieClip 428 {
onClipEvent (enterFrame) {
_alpha = _alpha + (alpha - _alpha) / 10;
if (_root.waterRunning == true) {
alpha = 100;
} else {
alpha = 0;
}
}
onClipEvent (load) {
sound = new Sound(this);
sound.attachSound('waterfall');
sound.setVolume(10);
sound.stop();
if (_root.waterRunning == true) {
sound.start();
}
}
onClipEvent (unload) {
sound.stop();
}
}
button 621 {
on (release) {
gotoAndStop(3);
}
}
button 623 {
on (release) {
gotoAndStop(4);
}
}
button 627 {
on (release) {
_root.fattyTextFinished = true;
}
}
movieClip 628 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
stop();
}
}
instance fattyText of movieClip 628 {
onClipEvent (enterFrame) {
if (_root.player._x > 460 && _root.player._y > 300 && _root.fattyTextFinished !== true) {
if (_currentframe == _totalframes) {
sound.start();
gotoAndStop(1);
}
_visible = true;
_y = _y + (y - _y) / 4;
} else {
_y = _y + (500 - _y) / 4;
}
}
onClipEvent (load) {
gotoAndStop(_totalframes);
_visible = false;
sound = new Sound(this);
sound.attachSound('talk_fat');
sound.setVolume(100);
sound.stop();
y = _y;
_y = 600 + _height;
}
}
button 633 {
on (release) {
play();
_root.fattyText2Finished = true;
_root.bird._x += 20;
_root.waterfall.sound.start();
_root.waterRunning = true;
}
}
button 636 {
on (release) {
_root.fattyText3Finished = true;
}
}
movieClip 638 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
}
instance fattyText2 of movieClip 638 {
onClipEvent (enterFrame) {
if (_y > 400 && _root.fattyText._y > 400) {
_root.player.talking = false;
} else {
_root.player.talking = true;
}
if (_root.player._x > 460 && _root.player._y > 300 && _root.carryHook eq true && _root.fattyText3Finished !== true) {
if (_currentframe == _totalframes) {
sound.start();
gotoAndStop(1);
}
_visible = true;
_y = _y + (y - _y) / 4;
} else {
_y = _y + (500 - _y) / 4;
}
}
onClipEvent (load) {
gotoAndStop(_totalframes);
_visible = false;
sound = new Sound(this);
sound.attachSound('talk_fat');
sound.setVolume(100);
sound.stop();
y = _y;
_y = 600 + _height;
}
}
movieClip 640 {
}
movieClip 643 {
}
movieClip 645 {
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
stopAllSounds();
_root.egg.heald = false;
_root.egg.born = false;
_root.player._y = 0;
_root.player._x = 400;
_root.girl._x = _root.player._x;
_root.catFore._x = 440;
_root.catFore._y = 0;
_root.girl._x = 450;
_root.bird._x = _root.player._x;
_root.nextFrame();
}
}
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_root.player._y = 100;
_root.girl._y = 100;
_root.player._x = 545;
_root.catFore._x = 545;
_root.girl._x = 545;
_root.bird._x = _root.player._x;
_root.prevFrame();
}
}
}
movieClip 648 {
}
movieClip 649 {
instance girl of movieClip 648 {
onClipEvent (enterFrame) {
if (Key.isDown(37)) {
_yscale = -100;
} else {
if (Key.isDown(39)) {
_yscale = 100;
}
}
}
}
}
instance of movieClip 649 {
onClipEvent (load) {
friction = 0;
gravity = 1;
gravity2 = 0;
rotation2 = 0;
_rotation = 90;
}
onClipEvent (enterFrame) {
radians = _rotation * Math.PI / 180;
if (this.ball.hitTest(_root.player)) {
girl._visible = true;
_root.player.swinging = true;
_root.player._x = _x + Math.cos(radians) * 195;
_root.player._y = _y + Math.sin(radians) * 195 + 25;
_root.girl._rotation = _rotation - 90;
_root.egg.heald = false;
} else {
girl._visible = false;
}
if (_root.egg.heald eq true && this.ball.hitTest(_root.player) eq false && _root.player._y > 100) {
xDist = _root.player._x - _x;
yDist = _root.player._y - _y;
radians = Math.atan2(yDist, xDist) / 0.0174532925199433;
_rotation = _rotation + (radians - _rotation) / 12;
gravity = 0;
friction = 0;
} else {
if (_rotation > 90) {
_rotation = _rotation - 0.11;
gravity -= 0.1;
}
if (_rotation < 90) {
_rotation = _rotation + 0.11;
gravity += 0.1;
}
_rotation = _rotation + gravity;
}
}
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
stopAllSounds();
_root.player._x = 5;
_root.catFore._x = 5;
_root.girl._x = 5;
_root.bird._x = _root.player._x;
_root.player._y = 350;
_root.girl._y = _root.player._y;
_root.egg.born = false;
_root.gotoAndStop(24);
}
}
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_root.player._y = 300;
_root.girl._y = _root.player._y;
_root.player._x = 545;
_root.catFore._x = 545;
_root.girl._x = 545;
_root.bird._x = _root.player._x;
_root.prevFrame();
}
}
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
stopAllSounds();
_root.egg.heald = false;
_root.egg.born = false;
_root.player._y = 0;
_root.player._x = 250;
_root.girl._x = _root.player._x;
_root.catFore._x = 440;
_root.catFore._y = 0;
_root.girl._x = 450;
_root.bird._x = _root.player._x;
_root.nextFrame();
}
}
}
movieClip 653 {
}
movieClip 655 {
}
movieClip 657 {
}
movieClip 659 {
}
movieClip 661 {
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
movieClip 663 {
}
movieClip 665 {
}
movieClip 666 {
}
movieClip 668 {
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_root.player._x = 450;
_root.catFore._x = 450;
_root.girl._x = 450;
_root.bird._x = _root.player._x;
_root.nextFrame();
}
}
}
movieClip 670 {
}
movieClip 672 {
}
movieClip 674 {
}
instance of movieClip 674 {
onClipEvent (enterFrame) {
if (fadeOut eq false) {
if (_alpha > 200) {
fadeOut = true;
} else {
_alpha = _alpha + 2;
}
} else {
if (_alpha > 0) {
_alpha = _alpha - 2;
}
}
}
onClipEvent (load) {
fadeOut = false;
_alpha = 0;
}
}
instance of movieClip 237 {
onClipEvent (load) {
sound = new Sound(this);
sound.attachSound('indoorSound');
sound.start(0, 99);
sound.setVolume(20);
}
onClipEvent (unload) {
sound.stop();
}
}
movieClip 677 {
}
movieClip 678 {
}
movieClip 680 {
}
movieClip 683 {
}
movieClip 684 {
}
instance bulb of movieClip 684 {
onClipEvent (load) {
ball.bug.gotoAndPlay(random(90));
friction = 0;
gravity = 1;
gravity2 = 0;
rotation2 = 0;
}
onClipEvent (enterFrame) {
if (_rotation > 90) {
_rotation = _rotation - 0.11;
gravity -= 0.1;
}
if (_rotation < 90) {
_rotation = _rotation + 0.11;
gravity += 0.1;
}
_rotation = _rotation + gravity;
}
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_root.player._y = 0;
_root.catFore._x = 440;
_root.catFore._y = 0;
_root.girl._x = 450;
_root.nextFrame();
}
}
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_root.player._x = 5;
_root.catFore._x = 5;
_root.girl._x = 5;
_root.prevFrame();
}
}
}
movieClip 686 {
}
movieClip 689 {
}
movieClip 690 {
}
instance of movieClip 690 {
onClipEvent (enterFrame) {
_yscale = _xscale;
_xscale = 90 + random(10);
if (_root.player.hitTest(this.glow) && _root.carryLight == false) {
_root.bird._x = _x;
_root.bird._y = _y;
_root.carryLight = true;
}
if (_root.carryLight eq true) {
_x = _root.bird._x;
_y = _root.bird._y;
} else {
_x = 270 + Math.cos(_root.bulb._rotation * 0.0174532925199433) * 290;
_y = Math.sin(_root.bulb._rotation * 0.0174532925199433) * 290;
}
}
onClipEvent (load) {
if (_root.carryLight eq true) {
_xscale = 90 + random(10);
_x = _root.bird._x;
_y = _root.bird._y;
}
}
}
movieClip 692 {
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_root.player._x = 545;
_root.catFore._x = 545;
_root.girl._x = 545;
_root.bird._x = _root.player._x;
_root.nextFrame();
}
}
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_root.player._x = 5;
_root.catFore._x = 5;
_root.girl._x = 5;
_root.bird._x = _root.player._x;
_root.prevFrame();
}
}
}
movieClip 694 {
}
button 696 {
on (release) {
_root.birdTextLightFinished = true;
}
}
movieClip 697 {
frame 1 {
stop();
}
frame 2 {
stop();
}
}
instance farmerJohnText of movieClip 697 {
onClipEvent (enterFrame) {
if (_root.player._x < 300 && _root.birdTextLightFinished !== true) {
if (_currentframe == _totalframes) {
sound.start();
gotoAndStop(1);
}
_root.player.talking = true;
_visible = true;
_y = _y + (y - _y) / 4;
} else {
_root.player.talking = false;
_y = _y + (500 - _y) / 4;
}
}
onClipEvent (load) {
gotoAndStop(_totalframes);
_visible = false;
sound = new Sound(this);
sound.attachSound('talk_bird');
sound.setVolume(50);
sound.stop();
y = _y;
_y = 600 + _height;
}
}
movieClip 699 {
}
movieClip 701 {
}
movieClip 702 {
}
movieClip 704 {
}
movieClip 706 {
}
instance of movieClip 690 {
onClipEvent (enterFrame) {
_yscale = _xscale;
_xscale = 90 + random(10);
if (_root.carryLight eq true) {
_x = _root.bird._x;
_y = _root.bird._y;
} else {
_x = 650;
_y = 200;
}
}
}
movieClip 708 {
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_root.player._x = 450;
_root.catFore._x = 450;
_root.girl._x = 450;
_root.bird._x = _root.player._x;
_root.nextFrame();
}
}
}
movieClip 710 {
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_root.player._y = 0;
_root.catFore._x = 440;
_root.catFore._y = 0;
_root.girl._x = 450;
_root.nextFrame();
}
}
}
movieClip 712 {
}
movieClip 714 {
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_root.player._x = 5;
_root.catFore._x = 5;
_root.girl._x = 5;
_root.bird._x = _root.player._x;
_root.prevFrame();
}
}
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_root.player._x = 545;
_root.catFore._x = 545;
_root.girl._x = 545;
_root.bird._x = _root.player._x;
_root.nextFrame();
}
}
}
movieClip 717 {
}
instance of movieClip 690 {
onClipEvent (enterFrame) {
_yscale = _xscale;
_xscale = 90 + random(10);
if (_root.carryLight eq true) {
_x = _root.bird._x;
_y = _root.bird._y;
} else {
_x = 650;
_y = 200;
}
}
}
movieClip 720 {
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_root.player._x = 5;
_root.catFore._x = 5;
_root.girl._x = 5;
_root.bird._x = _root.player._x;
_root.prevFrame();
}
}
}
movieClip 725 {
}
movieClip 734 {
}
movieClip 737 {
frame 1 {
stop();
_height = height + 20;
}
frame 2 {
stop();
_height = height + 20;
}
instance of movieClip 734 {
onClipEvent (load) {
gotoAndPlay(random(5));
}
}
instance of movieClip 734 {
onClipEvent (load) {
gotoAndPlay(random(5));
}
}
instance of movieClip 734 {
onClipEvent (load) {
gotoAndPlay(random(5));
}
}
instance of movieClip 734 {
onClipEvent (load) {
gotoAndPlay(random(5));
}
}
instance of movieClip 734 {
onClipEvent (load) {
gotoAndPlay(random(5));
}
}
instance of movieClip 734 {
onClipEvent (load) {
gotoAndPlay(random(5));
}
}
instance of movieClip 734 {
onClipEvent (load) {
gotoAndPlay(random(5));
}
}
instance of movieClip 734 {
onClipEvent (load) {
gotoAndPlay(random(5));
}
}
instance of movieClip 734 {
onClipEvent (load) {
gotoAndPlay(random(5));
}
}
instance of movieClip 734 {
onClipEvent (load) {
gotoAndPlay(random(5));
}
}
instance of movieClip 734 {
onClipEvent (load) {
gotoAndPlay(random(5));
}
}
}
instance of movieClip 737 {
onClipEvent (enterFrame) {
_alpha = 100 - (_x - _root.girl._x);
_height = _height + (height - _height) / 2;
if (_root.player._x < 300) {
gotoAndStop(2);
} else {
gotoAndStop(1);
}
}
onClipEvent (load) {
height = _height;
}
}
movieClip 741 {
}
movieClip 742 {
}
movieClip 744 {
}
instance of movieClip 690 {
onClipEvent (enterFrame) {
_yscale = _xscale;
_xscale = 90 + random(10);
if (_root.carryLight eq true) {
_x = _root.bird._x;
_y = _root.bird._y;
} else {
_x = 650;
_y = 200;
}
}
}
movieClip 747 {
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_root.player._x = 200;
_root.catFore._x = 200;
_root.girl._x = 200;
_root.bird._x = _root.player._x;
_root.prevFrame();
}
}
}
instance splash of movieClip 171 {
onClipEvent (load) {
if (_name == 'splash') {
_visible = false;
}
_alpha = 20;
_x = _root.girl._x;
_y = 330;
_xscale = 80 + random(20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
_xscale = _xscale + 5;
_alpha = _alpha - 1;
if (_alpha < 0) {
this.removeMovieClip();
}
}
}
instance of movieClip 392 {
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
if (Math.abs(_root.player.playerSpeed) > 2) {
++_root.mcI;
_root.splash.duplicateMovieClip('splash' + _root.mcI, _root.mcI);
}
if (Math.abs(_root.player.gravity) > 2) {
++_root.mcI;
_root.splash.duplicateMovieClip('splash' + _root.mcI, _root.mcI);
}
}
}
}
movieClip 750 {
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
movieClip 753 {
}
movieClip 754 {
}
movieClip 757 {
}
movieClip 758 {
instance hole of movieClip 449 {
onClipEvent (load) {
xScale = 100;
}
onClipEvent (enterFrame) {
_xscale = _xscale + (xScale - _xscale) / 5;
_yscale = _xscale;
}
}
}
instance of movieClip 758 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this.hit)) {
this.hole.xScale = 50;
_root.girl._alpha = 0;
}
if (_root.girl._alpha eq 0) {
counter += 1;
}
if (counter > 10) {
_root.stopAllSounds();
_root.player._x = 200;
_root.player._y = 380;
_root.player.playerSpeed = 10;
if (_root.jetPackOn eq false) {
_root.player.gravity = -25;
} else {
_root.player.gravity = -18;
}
_root.girl._alpha = 100;
_root.land1_worm._yscale = 150;
_root.egg.born = true;
_root.egg._x = 200;
_root.egg._y = 200;
_root.egg.gravity = -10;
sound.start();
_root.gotoAndStop(11);
}
}
onClipEvent (load) {
sound = new Sound(this);
sound.attachSound('wormFlat');
sound.setVolume(20);
counter = 0;
}
}
movieClip 760 {
}
instance bug of movieClip 760 {
onClipEvent (load) {
counter = 0;
_x = random(550);
_y = 200 + random(100);
rotateSpeed = 1 + (random(10) - random(10));
if (_name == 'bug') {
_root.mcI = 0;
i = 0;
while (i < 55) {
++i;
_root.mcI += 1;
_root.bug.duplicateMovieClip('bug' + _root.mcI, _root.mcI);
++i;
}
}
currentFrame = _root._currentframe;
}
onClipEvent (enterFrame) {
if (currentFrame !== _root._currentframe) {
this.removeMovieClip();
}
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
movieClip 762 {
}
movieClip 765 {
}
movieClip 767 {
}
movieClip 769 {
}
movieClip 771 {
}
instance of movieClip 771 {
onClipEvent (load) {
ball.bug.gotoAndPlay(random(90));
friction = 0;
gravity = 1;
gravity2 = 0;
rotation2 = 0;
_rotation = 90;
windCounter = 0;
wind = 90 + random(20);
}
onClipEvent (enterFrame) {
windCounter += 1;
if (windCounter > 50) {
wind = 90 + random(20);
windCounter = 0;
}
if (_rotation > wind) {
_rotation = _rotation - 0.11;
gravity -= 0.1;
}
if (_rotation < wind) {
_rotation = _rotation + 0.11;
gravity += 0.1;
}
_rotation = _rotation + gravity;
}
}
instance of movieClip 771 {
onClipEvent (load) {
ball.bug.gotoAndPlay(random(90));
friction = 0;
gravity = 1;
gravity2 = 0;
rotation2 = 0;
_rotation = 90;
windCounter = 0;
wind = 90 + random(20);
}
onClipEvent (enterFrame) {
windCounter += 1;
if (windCounter > 50) {
wind = 90 + random(20);
windCounter = 0;
}
if (_rotation > wind) {
_rotation = _rotation - 0.11;
gravity -= 0.1;
}
if (_rotation < wind) {
_rotation = _rotation + 0.11;
gravity += 0.1;
}
_rotation = _rotation + gravity;
}
}
movieClip 773 {
}
instance leaf of movieClip 773 {
onClipEvent (load) {
counter = 0;
_x = 600;
_y = random(300);
rotateSpeed = 1 + (random(5) - random(5));
_xscale = random(60);
_yscale = _xscale;
if (_name == 'leaf') {
_root.mcI = 0;
i = 0;
while (i < 30) {
++i;
_root.mcI += 1;
_root.leaf.duplicateMovieClip('leaf' + _root.mcI, _root.mcI);
++i;
}
}
currentFrame = _root._currentframe;
xSpeed = _xscale / 10;
ySpeed = _yscale / 20;
_alpha = 100;
}
onClipEvent (enterFrame) {
_alpha = _alpha + (alpha - _alpha) / 2;
if (_x < 0) {
_x = 600;
_y = random(300);
}
if (currentFrame !== _root._currentframe) {
this.removeMovieClip();
}
if (_root.sbLand1.hitTest(_x, _y, true)) {
alpha = 0;
} else {
alpha = 60;
}
_rotation = _rotation + rotateSpeed;
radians = _rotation * 0.0174532925199433;
_x = _x - xSpeed;
_y = _y + ySpeed;
}
}
movieClip 775 {
}
instance flower17 of movieClip 423 {
onClipEvent (load) {
gotoAndPlay(random(50));
}
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_rotation = _rotation + _root.player.playerSpeed;
} else {
_rotation = _rotation + -_rotation / 10;
}
}
}
instance flower18 of movieClip 423 {
onClipEvent (load) {
gotoAndPlay(random(50));
}
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_rotation = _rotation + _root.player.playerSpeed;
} else {
_rotation = _rotation + -_rotation / 10;
}
}
}
instance flower19 of movieClip 423 {
onClipEvent (load) {
gotoAndPlay(random(50));
}
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_rotation = _rotation + _root.player.playerSpeed;
} else {
_rotation = _rotation + -_rotation / 10;
}
}
}
instance flower16 of movieClip 423 {
onClipEvent (load) {
gotoAndPlay(random(50));
}
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_rotation = _rotation + _root.player.playerSpeed;
} else {
_rotation = _rotation + -_rotation / 10;
}
}
}
instance flower21 of movieClip 423 {
onClipEvent (load) {
gotoAndPlay(random(50));
}
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_rotation = _rotation + _root.player.playerSpeed;
} else {
_rotation = _rotation + -_rotation / 10;
}
}
}
instance flower20 of movieClip 423 {
onClipEvent (load) {
gotoAndPlay(random(50));
}
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_rotation = _rotation + _root.player.playerSpeed;
} else {
_rotation = _rotation + -_rotation / 10;
}
}
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_level0._xscale = -100;
_level0._x += Stage.width;
_root.player._y = 375;
_root.girl._y = _root.player._y;
_root.player._x = 5;
_root.catFore._x = 5;
_root.girl._x = 5;
_root.bird._x = _root.player._x;
_root.birdTextShillFinished = true;
_root.nextFrame();
}
}
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_root.player._x = 545;
_root.player._y = 250;
_root.girl._y = _root.player._y;
_root.catFore._x = 545;
_root.girl._x = 545;
_root.bird._x = _root.player._x;
_root.gotoAndStop(16);
}
}
}
movieClip 777 {
}
movieClip 779 {
}
button 781 {
on (release) {
_root.birdTextShillFinished = true;
}
}
button 782 {
on (release) {
gotoAndStop(2);
}
}
movieClip 786 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
}
instance farmerJohnText of movieClip 786 {
onClipEvent (enterFrame) {
if (_root.player._x < 300 && _root.birdTextShillFinished !== true) {
if (_currentframe == _totalframes) {
sound.start();
gotoAndStop(1);
}
_root.player.talking = true;
_visible = true;
_y = _y + (y - _y) / 4;
} else {
_root.player.talking = false;
_y = _y + (500 - _y) / 4;
}
}
onClipEvent (load) {
gotoAndStop(_totalframes);
_visible = false;
sound = new Sound(this);
sound.attachSound('talk_bird');
sound.setVolume(50);
sound.stop();
y = _y;
_y = 600 + _height;
}
}
instance of movieClip 237 {
onClipEvent (load) {
sound = new Sound(this);
sound.attachSound('windSound');
sound.start(0, 99);
sound.setVolume(15);
}
onClipEvent (unload) {
sound.stop();
}
}
movieClip 788 {
}
instance bug of movieClip 6 bugShill {
onClipEvent (load) {
counter = 0;
_x = random(550);
_y = 200 + random(100);
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 6 bugShill {
onClipEvent (load) {
counter = 0;
_x = random(550);
_y = 200 + random(100);
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 6 bugShill {
onClipEvent (load) {
counter = 0;
_x = random(550);
_y = 200 + random(100);
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 6 bugShill {
onClipEvent (load) {
counter = 0;
_x = random(550);
_y = 200 + random(100);
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 6 bugShill {
onClipEvent (load) {
counter = 0;
_x = random(550);
_y = 200 + random(100);
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 6 bugShill {
onClipEvent (load) {
counter = 0;
_x = random(550);
_y = 200 + random(100);
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 6 bugShill {
onClipEvent (load) {
counter = 0;
_x = random(550);
_y = 200 + random(100);
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance leaf of movieClip 773 {
onClipEvent (load) {
counter = 0;
_x = 600;
_y = random(300);
rotateSpeed = 1 + (random(5) - random(5));
_xscale = random(60);
_yscale = _xscale;
if (_name == 'leaf') {
_root.mcI = 0;
i = 0;
while (i < 30) {
++i;
_root.mcI += 1;
_root.leaf.duplicateMovieClip('leaf' + _root.mcI, _root.mcI);
++i;
}
}
currentFrame = _root._currentframe;
xSpeed = _xscale / 10;
ySpeed = _yscale / 20;
_alpha = 100;
}
onClipEvent (enterFrame) {
_alpha = _alpha + (alpha - _alpha) / 2;
if (_x < 0) {
_x = 600;
_y = random(300);
}
if (currentFrame !== _root._currentframe) {
this.removeMovieClip();
}
if (_root.sbLand1.hitTest(_x, _y, true)) {
alpha = 0;
} else {
alpha = 60;
}
_rotation = _rotation + rotateSpeed;
radians = _rotation * 0.0174532925199433;
_x = _x - xSpeed;
_y = _y + ySpeed;
}
}
movieClip 790 {
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_level0._width = -level0._width;
_root.player._x = 5;
_root.catFore._x = 5;
_root.girl._x = 5;
_root.bird._x = _root.player._x;
if (_root.egg.heald == false) {
_root.egg._visible = false;
_root.egg._x = 1000;
}
_root.nextFrame();
}
}
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
if (_level0._xscale == -100) {
_level0._xscale = 100;
_level0._x -= Stage.width;
}
_root.player._y = 180;
_root.girl._y = _root.player._y;
_root.player._x = 545;
_root.catFore._x = 545;
_root.girl._x = 545;
_root.bird._x = _root.player._x;
_root.prevFrame();
}
}
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_root.player._y = 355;
_root.girl._y = 335;
_root.bird._y = _root.player._y;
_root.gotoAndStop(22);
}
}
}
movieClip 792 {
}
movieClip 794 {
}
instance of movieClip 794 {
onClipEvent (enterFrame) {
if (fadeOut eq false) {
if (_alpha > 200) {
fadeOut = true;
} else {
_alpha = _alpha + 2;
}
} else {
if (_alpha > -100) {
_alpha = _alpha - 2;
}
}
}
onClipEvent (load) {
fadeOut = false;
_alpha = 0;
}
}
button 796 {
on (release) {
gotoAndStop(2);
}
}
button 798 {
on (release) {
_root.birdText2ShillFinished = true;
}
}
movieClip 800 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
}
instance farmerJohnText of movieClip 800 {
onClipEvent (enterFrame) {
if (_root.player._x > 200 && _root.birdText2ShillFinished !== true) {
if (_currentframe == _totalframes) {
sound.start();
gotoAndStop(1);
}
_root.player.talking = true;
_visible = true;
_y = _y + (y - _y) / 4;
} else {
_root.player.talking = false;
_y = _y + (500 - _y) / 4;
}
}
onClipEvent (load) {
gotoAndStop(_totalframes);
_visible = false;
sound = new Sound(this);
sound.attachSound('talk_bird');
sound.setVolume(50);
sound.stop();
y = _y;
_y = 600 + _height;
}
}
instance of movieClip 237 {
onClipEvent (load) {
fadeSpeed = 0.4;
soundVolume = 0;
soundMax = 100;
sound = new Sound(this);
sound.attachSound('ShillBendLoop');
sound.start(0, 99);
sound.setVolume(0);
}
onClipEvent (unload) {
sound.stop();
}
onClipEvent (enterFrame) {
if (soundVolume > soundMax) {
soundVolume = soundMax;
}
if (soundVolume < 0) {
soundVolume = 0;
}
sound.setVolume(soundVolume);
if (_root._currentframe > 23 && _root._currentframe < 28) {
soundVolume += fadeSpeed;
} else {
soundVolume -= fadeSpeed;
}
}
}
movieClip 802 {
}
movieClip 804 {
}
movieClip 806 {
instance pad2 of movieClip 802 {
onClipEvent (enterFrame) {
_rotation = _rotation + rotationSpeed;
if (_root.player.hitTest(this)) {
rotationSpeed = (_root.player._x - (_parent._x + _x)) / 100;
} else {
_rotation = _rotation + -_rotation / 10;
rotationSpeed += -rotationSpeed / 50;
}
}
onClipEvent (load) {
_rotation = 0;
rotationSpeed = 0;
}
}
instance pad1 of movieClip 804 {
onClipEvent (enterFrame) {
_rotation = _rotation + rotationSpeed;
if (_root.player.hitTest(this)) {
rotationSpeed = (_root.player._x - (_parent._x + _x)) / 100;
} else {
_rotation = _rotation + -_rotation / 10;
rotationSpeed += -rotationSpeed / 10;
}
}
onClipEvent (load) {
rotationSpeed = 0;
}
}
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
if (_level0._xscale == -100) {
_level0._x -= Stage.width;
}
_level0._xscale = 100;
_root.player._y = 400;
_root.girl._y = _root.player._y;
_root.player._x = 5;
_root.catFore._x = 5;
_root.girl._x = 5;
_root.bird._x = _root.player._x;
if (_root.egg.heald == false) {
_root.egg._visible = false;
_root.egg._x = 1000;
}
_root.nextFrame();
}
}
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_root.player._y = 350;
_root.girl._y = _root.player._y;
_root.player._x = 545;
_root.catFore._x = 545;
_root.girl._x = 545;
_root.bird._x = _root.player._x;
_root.prevFrame();
}
}
}
movieClip 809 {
}
movieClip 810 {
}
movieClip 814 {
frame 13 {
stop();
}
}
movieClip 815 {
instance of movieClip 814 {
onClipEvent (load) {
ball.bug.gotoAndPlay(random(90));
friction = 0;
gravity = 1;
gravity2 = 0;
rotation2 = 0;
_rotation = random(50);
}
onClipEvent (enterFrame) {
parentDifference = 90 - _parent._rotation;
_rotation = parentDifference;
}
}
instance of movieClip 814 {
onClipEvent (load) {
ball.bug.gotoAndPlay(random(90));
friction = 0;
gravity = 1;
gravity2 = 0;
rotation2 = 0;
_rotation = random(50);
}
onClipEvent (enterFrame) {
parentDifference = 90 - _parent._rotation;
_rotation = parentDifference;
}
}
}
instance of movieClip 815 {
onClipEvent (enterFrame) {
_rotation = _root.ground.pad1._rotation;
}
}
movieClip 816 {
instance of movieClip 814 {
onClipEvent (load) {
ball.bug.gotoAndPlay(random(90));
friction = 0;
gravity = 1;
gravity2 = 0;
rotation2 = 0;
_rotation = random(50);
}
onClipEvent (enterFrame) {
parentDifference = 90 - _parent._rotation;
_rotation = parentDifference;
}
}
instance of movieClip 814 {
onClipEvent (load) {
ball.bug.gotoAndPlay(random(90));
friction = 0;
gravity = 1;
gravity2 = 0;
rotation2 = 0;
_rotation = random(50);
}
onClipEvent (enterFrame) {
parentDifference = 90 - _parent._rotation;
_rotation = parentDifference;
}
}
instance of movieClip 814 {
onClipEvent (load) {
ball.bug.gotoAndPlay(random(90));
friction = 0;
gravity = 1;
gravity2 = 0;
rotation2 = 0;
_rotation = random(50);
}
onClipEvent (enterFrame) {
parentDifference = 90 - _parent._rotation;
_rotation = parentDifference;
}
}
}
instance of movieClip 816 {
onClipEvent (enterFrame) {
_rotation = _root.ground.pad2._rotation;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
movieClip 818 {
}
movieClip 820 {
}
movieClip 822 {
}
instance bug of movieClip 822 {
onClipEvent (load) {
_alpha = 0;
alpha = 100;
counter = 0;
_x = random(550);
_y = 200 + random(100);
rotateSpeed = 1 + (random(10) - random(10));
_xscale = 1 + random(30);
_yscale = _xscale;
if (_name == 'bug') {
i = 0;
while (i < 30) {
++i;
_root.mcI += 1;
_root.bug.duplicateMovieClip('bug' + _root.mcI, _root.mcI);
++i;
}
}
currentFrame = _root._currentframe;
}
onClipEvent (enterFrame) {
_alpha = _alpha + (alpha - _alpha) / 5;
if (currentFrame !== _root._currentframe) {
this.removeMovieClip();
}
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
if (_root.sbLand2.hitTest(_x, _y, true) && _xscale < 50) {
alpha = 0;
} else {
alpha = 60;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
movieClip 825 {
}
movieClip 827 {
}
movieClip 829 {
}
movieClip 831 {
}
movieClip 833 {
}
movieClip 834 {
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_root.player._y = 375;
_root.girl._y = _root.player._y;
_root.player._x = 5;
_root.catFore._x = 5;
_root.girl._x = 5;
_root.bird._x = _root.player._x;
_root.nextFrame();
}
}
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_root.player._x = 545;
_root.catFore._x = 545;
_root.girl._x = 545;
_root.bird._x = _root.player._x;
_root.prevFrame();
}
}
}
movieClip 837 {
}
movieClip 848 {
}
movieClip 849 {
instance of movieClip 837 {
onClipEvent (enterFrame) {
_alpha = 80 + random(20);
}
}
}
movieClip 851 {
}
movieClip 852 {
instance flame of movieClip 851 {
onClipEvent (load) {
_yscale = 10 + random(100);
_xscale = _yscale;
_x = 0;
_y = 0;
_alpha = 0;
rotation = 10 + random(5);
ySpeed = 1 + random(4);
alpha = 1 + random(10);
counter = 0;
}
onClipEvent (enterFrame) {
if (_name eq 'flame') {
_xscale = 0;
_yscale = 0;
_visible = false;
counter += 1;
if (counter > 2) {
counter = 0;
++_root.mcI;
this.duplicateMovieClip('fire' + _root.mcI, _root.mcI);
}
}
if (_xscale < 0) {
this.removeMovieClip();
}
_rotation = _rotation + rotation;
_yscale = _yscale - ySpeed;
_xscale = _yscale;
_y = _y - ySpeed;
_alpha = _alpha + 10;
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) * ySpeed;
_x = _x + xSpeed;
}
}
}
movieClip 854 {
}
button 856 {
on (release) {
gotoAndStop(2);
}
}
button 859 {
on (release) {
_root.birdText3ShillFinished = true;
}
}
movieClip 861 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
}
instance farmerJohnText of movieClip 861 {
onClipEvent (enterFrame) {
if (_root.player._x < 300 && _root.birdText3ShillFinished !== true) {
if (_currentframe == _totalframes) {
sound.start();
gotoAndStop(1);
}
_root.player.talking = true;
_visible = true;
_y = _y + (y - _y) / 4;
} else {
_root.player.talking = false;
_y = _y + (500 - _y) / 4;
}
}
onClipEvent (load) {
gotoAndStop(_totalframes);
_visible = false;
sound = new Sound(this);
sound.attachSound('talk_bird');
sound.setVolume(50);
sound.stop();
y = _y;
_y = 600 + _height;
}
}
movieClip 863 {
}
movieClip 865 {
}
instance tramp of movieClip 865 {
onClipEvent (enterFrame) {
_yscale = _yscale + accel;
if (_yscale > 0) {
_yscale = _yscale - 5;
accel -= 5;
}
if (_yscale < 0) {
_yscale = _yscale + 5;
accel += 5;
}
}
onClipEvent (load) {
_yscale = 50;
accel = 0;
}
}
movieClip 867 {
}
movieClip 869 {
}
instance of movieClip 869 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y - 10, true)) {
_root.girl._y = _root.player._y;
if (Key.isDown(38)) {
_root.player._y -= 10;
}
_root.girl.jump.gotoAndPlay(1);
_root.player.gravity = -Math.abs(_root.player.gravity);
_root.tramp._yscale = -(_root.player.gravity * 10);
}
}
}
instance flower23 of movieClip 423 {
onClipEvent (load) {
gotoAndPlay(random(50));
}
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_rotation = _rotation + _root.player.playerSpeed;
} else {
_rotation = _rotation + -_rotation / 10;
}
}
}
instance flower24 of movieClip 423 {
onClipEvent (load) {
gotoAndPlay(random(50));
}
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_rotation = _rotation + _root.player.playerSpeed;
} else {
_rotation = _rotation + -_rotation / 10;
}
}
}
instance flower25 of movieClip 423 {
onClipEvent (load) {
gotoAndPlay(random(50));
}
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_rotation = _rotation + _root.player.playerSpeed;
} else {
_rotation = _rotation + -_rotation / 10;
}
}
}
instance flower22 of movieClip 423 {
onClipEvent (load) {
gotoAndPlay(random(50));
}
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_rotation = _rotation + _root.player.playerSpeed;
} else {
_rotation = _rotation + -_rotation / 10;
}
}
}
instance flower27 of movieClip 423 {
onClipEvent (load) {
gotoAndPlay(random(50));
}
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_rotation = _rotation + _root.player.playerSpeed;
} else {
_rotation = _rotation + -_rotation / 10;
}
}
}
instance flower26 of movieClip 423 {
onClipEvent (load) {
gotoAndPlay(random(50));
}
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_rotation = _rotation + _root.player.playerSpeed;
} else {
_rotation = _rotation + -_rotation / 10;
}
}
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_root.player._y = 100;
_root.girl._y = _root.player._y;
_root.player._x = 545;
_root.catFore._x = 545;
_root.girl._x = 545;
_root.bird._x = _root.player._x;
_root.prevFrame();
}
}
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_root.player._y = 355;
_root.girl._y = 335;
_root.bird._y = _root.player._y;
_root.nextFrame();
}
}
}
movieClip 872 {
}
movieClip 874 {
}
movieClip 875 {
}
movieClip 877 {
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_root.player._y = 25;
_root.girl._y = 25;
_root.bird._y = _root.player._x;
_root.prevFrame();
}
}
}
movieClip 880 {
}
movieClip 882 {
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_root.player._x = 550;
_root.catFore._x = 550;
_root.girl._x = 550;
_root.bird._x = _root.player._x;
}
}
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_root.player._x = 20;
_root.catFore._x = 550;
_root.girl._x = 20;
_root.bird._x = _root.player._x;
}
}
}
instance of movieClip 237 {
onClipEvent (load) {
sound = new Sound(this);
sound.attachSound('windSound');
sound.start(0, 99);
sound.setVolume(6);
}
onClipEvent (unload) {
sound.stop();
}
}
movieClip 885 {
}
movieClip 886 {
}
movieClip 888 {
}
instance flower204 of movieClip 423 {
onClipEvent (load) {
gotoAndPlay(random(50));
}
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_rotation = _rotation + _root.player.playerSpeed;
} else {
_rotation = _rotation + -_rotation / 10;
}
}
}
instance flower205 of movieClip 423 {
onClipEvent (load) {
gotoAndPlay(random(50));
}
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_rotation = _rotation + _root.player.playerSpeed;
} else {
_rotation = _rotation + -_rotation / 10;
}
}
}
instance flower206 of movieClip 423 {
onClipEvent (load) {
gotoAndPlay(random(50));
}
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_rotation = _rotation + _root.player.playerSpeed;
} else {
_rotation = _rotation + -_rotation / 10;
}
}
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_root.player._y = 25;
_root.girl._y = 25;
_root.bird._y = _root.player._x;
_root.prevFrame();
}
}
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_root.player._y = 350;
_root.girl._y = _root.player._y;
_root.player._x = 550;
_root.catFore._x = 550;
_root.girl._x = 550;
_root.bird._x = _root.player._x;
_root.nextFrame();
}
}
}
movieClip 890 {
}
movieClip 891 {
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
button 893 {
on (release) {
_root.birdGomTextFinished = true;
}
}
movieClip 894 {
frame 1 {
stop();
}
frame 2 {
stop();
}
}
instance birdGomText of movieClip 894 {
onClipEvent (enterFrame) {
if (_root.player._x < 300 && _root.birdGomTextFinished !== true && _root.mamaTextFinished == true) {
if (_currentframe == _totalframes) {
sound.start();
gotoAndStop(1);
}
_root.player.talking = true;
_visible = true;
_y = _y + (y - _y) / 4;
} else {
_root.player.talking = false;
_y = _y + (500 - _y) / 4;
}
}
onClipEvent (load) {
gotoAndStop(_totalframes);
_visible = false;
sound = new Sound(this);
sound.attachSound('talk_bird');
sound.setVolume(50);
sound.stop();
y = _y;
_y = 600 + _height;
}
}
movieClip 896 {
}
movieClip 897 {
}
movieClip 900 {
}
movieClip 902 {
}
movieClip 905 {
}
movieClip 907 {
instance of movieClip 905 {
onClipEvent (enterFrame) {
_alpha = _alpha + (alpha - _alpha) / 10;
if (_root.player._x < 300) {
alpha = 100;
} else {
alpha = 0;
}
}
onClipEvent (load) {
alpha = 0;
}
}
}
instance talker of movieClip 907 {
onClipEvent (load) {
follow = 100;
}
}
movieClip 909 {
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_root.player._y = 225;
_root.girl._y = _root.player._y;
_root.player._x = 5;
_root.catFore._x = 5;
_root.girl._x = 5;
_root.bird._x = _root.player._x;
_root.birdTextShillFinished = true;
_root.prevFrame();
}
}
}
button 911 {
on (release) {
gotoAndStop(2);
}
}
button 914 {
on (release) {
gotoAndStop(3);
}
}
button 916 {
on (release) {
gotoAndStop(3);
}
}
button 919 {
on (release) {
gotoAndStop(5);
}
}
button 921 {
on (release) {
gotoAndStop(4);
}
}
button 925 {
on (release) {
gotoAndStop(7);
}
}
button 931 {
on (release) {
gotoAndStop(8);
}
}
button 934 {
on (release) {
_root.mamaTextFinished = true;
}
}
movieClip 936 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
stop();
}
frame 6 {
stop();
}
frame 7 {
stop();
}
frame 8 {
stop();
}
frame 9 {
stop();
}
}
instance mamaText1 of movieClip 936 {
onClipEvent (enterFrame) {
if (_root.player._x < 300 && _root.mamaTextFinished !== true) {
if (_currentframe == _totalframes) {
sound.start();
gotoAndStop(1);
}
_root.player.talking = true;
_visible = true;
_y = _y + (y - _y) / 4;
} else {
_root.player.talking = false;
_y = _y + (500 - _y) / 4;
}
}
onClipEvent (load) {
gotoAndStop(_totalframes);
_visible = false;
sound = new Sound(this);
sound.attachSound('talk_mamaGomgossa');
sound.setVolume(100);
sound.stop();
y = _y;
_y = 600 + _height;
}
}
movieClip 938 {
}
movieClip 940 {
}
instance doorSwitch1 of movieClip 940 {
onClipEvent (load) {
sound = new Sound(this);
sound.attachSound('buttonPush');
sound.setVolume(100);
switchOn = false;
}
onClipEvent (enterFrame) {
if (switchOn eq false) {
if (this.hitTest(_root.girl)) {
this._y += 10;
sound.start();
switchOn = true;
}
}
}
}
instance doorSwitch2 of movieClip 940 {
onClipEvent (load) {
sound = new Sound(this);
sound.attachSound('buttonPush');
sound.setVolume(100);
switchOn = false;
}
onClipEvent (enterFrame) {
if (switchOn eq false) {
if (this.hitTest(_root.girl)) {
this._y += 10;
sound.start();
switchOn = true;
}
}
}
}
instance doorSwitch3 of movieClip 940 {
onClipEvent (load) {
sound = new Sound(this);
sound.attachSound('buttonPush');
sound.setVolume(100);
switchOn = false;
}
onClipEvent (enterFrame) {
if (switchOn eq false) {
if (this.hitTest(_root.girl)) {
this._y -= 10;
sound.start();
switchOn = true;
}
}
}
}
movieClip 942 {
}
movieClip 944 {
}
movieClip 947 {
}
movieClip 948 {
instance of movieClip 947 {
onClipEvent (enterFrame) {
if (_root.doorSwitch1.switchOn eq true && _root.doorSwitch2.switchOn eq true && _root.doorSwitch3.switchOn eq true) {
if (_x < 200) {
_x = _x + 1;
}
}
}
}
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_root.player._x = 200;
_root.girl._x = _root.player._x;
_root.player._y = 25;
_root.girl._y = 25;
_root.bird._y = _root.player._x;
_root.nextFrame();
}
}
}
movieClip 951 {
}
movieClip 954 {
}
movieClip 955 {
instance shelf of movieClip 954 {
onClipEvent (enterFrame) {
if (_root.doorSwitch1.switchOn eq true && _root.doorSwitch2.switchOn eq true && _root.doorSwitch3.switchOn eq true) {
if (_x < 200) {
_x = _x + 1;
}
if (_x > 102.3 && _x < 104) {
sound.start();
}
}
}
onClipEvent (load) {
sound = new Sound(this);
sound.attachSound('dresser');
sound.setVolume(100);
}
}
}
button 959 {
on (release) {
_root.birdTextEndFinished = true;
}
}
movieClip 961 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
}
instance birdTextEnd1 of movieClip 961 {
onClipEvent (enterFrame) {
trace('bla');
if (_root.player._x < 300 && _root.birdTextEndFinished !== true) {
if (_currentframe == _totalframes) {
sound.start();
gotoAndStop(1);
}
_root.player.talking = true;
_visible = true;
_y = _y + (y - _y) / 4;
} else {
_root.player.talking = false;
_y = _y + (500 - _y) / 4;
}
}
onClipEvent (load) {
gotoAndStop(_totalframes);
_visible = false;
sound = new Sound(this);
sound.attachSound('talk_bird');
sound.setVolume(50);
sound.stop();
y = _y;
_y = 600 + _height;
}
}
instance mansionSound2 of movieClip 237 {
onClipEvent (load) {
fadeSpeed = 0.1;
soundVolume = 0;
soundMax = 20;
sound = new Sound(this);
sound.attachSound('indoorSound');
sound.setVolume(0);
sound.start(0, 99);
}
onClipEvent (unload) {
sound.stop();
}
onClipEvent (enterFrame) {
if (soundVolume > soundMax) {
soundVolume = soundMax;
}
if (soundVolume < 0) {
soundVolume = 0;
}
sound.setVolume(soundVolume);
if (_root._currentframe > 31 && _root._currentframe < 37) {
soundVolume += fadeSpeed;
} else {
soundVolume -= fadeSpeed;
}
}
}
movieClip 981 {
}
instance doorSwitch4 of movieClip 940 {
onClipEvent (load) {
sound = new Sound(this);
sound.attachSound('buttonPush');
sound.setVolume(100);
if (_root.doorSwitch4switchOn eq true) {
_y = _y - 10;
}
}
onClipEvent (enterFrame) {
if (_root.doorSwitch4switchOn eq false) {
if (this.hitTest(_root.girl)) {
this._y -= 10;
sound.start();
_root.doorSwitch4switchOn = true;
}
}
}
}
movieClip 983 {
}
movieClip 985 {
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_root.player._y = 50;
_root.girl._y = _root.player._y;
_root.player._x = 5;
_root.catFore._x = 5;
_root.girl._x = 5;
_root.bird._x = _root.player._x;
_root.nextFrame();
}
}
}
movieClip 990 {
}
movieClip 1000 {
}
movieClip 1003 {
}
movieClip 1005 {
}
movieClip 1008 {
}
instance doorSwitch5 of movieClip 940 {
onClipEvent (load) {
sound = new Sound(this);
sound.attachSound('buttonPush');
sound.setVolume(100);
if (_root.doorSwitch5switchOn eq true) {
_y = _y + 10;
}
}
onClipEvent (enterFrame) {
if (_root.doorSwitch5switchOn eq false) {
if (this.hitTest(_root.girl)) {
this._y += 10;
sound.start();
_root.doorSwitch5switchOn = true;
}
}
}
}
instance doorSwitch6 of movieClip 940 {
onClipEvent (load) {
sound = new Sound(this);
sound.attachSound('buttonPush');
sound.setVolume(100);
if (_root.doorSwitch6switchOn eq true) {
_y = _y - 10;
}
}
onClipEvent (enterFrame) {
if (_root.doorSwitch6switchOn eq false) {
if (this.hitTest(_root.girl)) {
this._y -= 10;
sound.start();
_root.doorSwitch6switchOn = true;
}
}
}
}
movieClip 1010 {
}
movieClip 1012 {
}
movieClip 1014 {
}
movieClip 1015 {
instance hit of movieClip 1012 {
onClipEvent (enterFrame) {
if (_root.bridgeBreakable eq true) {
_x = 100000;
}
}
}
instance of movieClip 1014 {
onClipEvent (enterFrame) {
if (_x > -20 && _root.doorSwitch4switchOn eq true && _root.doorSwitch5switchOn eq true && _root.doorSwitch6switchOn eq true) {
_rotation = _rotation - 0.2;
_x = _x - 1;
}
}
}
instance of movieClip 1014 {
onClipEvent (enterFrame) {
if (_x < 140 && _root.doorSwitch4switchOn eq true && _root.doorSwitch5switchOn eq true && _root.doorSwitch6switchOn eq true) {
_rotation = _rotation + 0.2;
_x = _x + 1;
}
}
}
instance of movieClip 1014 {
onClipEvent (enterFrame) {
if (_x > -50 && _root.doorSwitch4switchOn eq true && _root.doorSwitch5switchOn eq true && _root.doorSwitch6switchOn eq true) {
_rotation = _rotation - 0.2;
_x = _x - 1;
}
}
}
instance of movieClip 1014 {
onClipEvent (enterFrame) {
if (_x < 80 && _root.doorSwitch4switchOn eq true && _root.doorSwitch5switchOn eq true && _root.doorSwitch6switchOn eq true) {
_rotation = _rotation + 0.2;
_x = _x + 1;
}
}
}
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_root.player._y = 350;
_root.girl._y = _root.player._y;
_root.player._x = 545;
_root.catFore._x = 545;
_root.girl._x = 545;
_root.bird._x = _root.player._x;
_root.prevFrame();
}
}
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_root.player._x = 250;
_root.girl._x = _root.player._x;
_root.player._y = 25;
_root.girl._y = 25;
_root.bird._y = _root.player._x;
_root.nextFrame();
}
}
}
movieClip 1026 {
}
movieClip 1037 {
}
movieClip 1045 {
frame 1 {
stop();
}
frame 7 {
prevFrame();
}
}
movieClip 1046 {
instance of movieClip 1014 {
onClipEvent (enterFrame) {
if (_x > -20 && _root.doorSwitch4switchOn eq true && _root.doorSwitch5switchOn eq true && _root.doorSwitch6switchOn eq true) {
_rotation = _rotation - 0.2;
_x = _x - 1;
}
}
}
instance of movieClip 1014 {
onClipEvent (enterFrame) {
if (_x < 140 && _root.doorSwitch4switchOn eq true && _root.doorSwitch5switchOn eq true && _root.doorSwitch6switchOn eq true) {
_rotation = _rotation + 0.2;
_x = _x + 1;
}
}
}
instance bridge of movieClip 1045 {
onClipEvent (enterFrame) {
if (_root.player._x > 200) {
_root.bridgeBreakable = true;
}
if (_root.player.hitTest(this) && _root.bridgeBreakable eq true) {
play();
}
}
onClipEvent (load) {
if (_root.bridgeBreakable eq true) {
gotoAndStop(6);
}
}
}
}
movieClip 1048 {
}
instance of movieClip 169 {
onClipEvent (enterFrame) {
if (_root.girl.hitTest(this)) {
_root.player._x = 275;
_root.girl._x = _root.player._x;
_root.player._y = 25;
_root.girl._y = 25;
_root.bird._y = _root.player._x;
_root.nextFrame();
}
}
}
movieClip 1051 {
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
movieClip 1058 {
}
movieClip 1059 {
}
movieClip 1062 {
}
instance lightSwitch of movieClip 1062 {
onClipEvent (load) {
sound = new Sound(this);
sound.attachSound('Coma_themeFinal');
sound.setVolume(100);
switchOn = false;
}
onClipEvent (enterFrame) {
if (_currentframe eq 36) {
_x = 10000;
}
if (switchOn eq false) {
if (this.hitTest(_root.girl)) {
_visible = false;
sound.start();
switchOn = true;
}
}
}
}
movieClip 1064 {
}
movieClip 1073 {
frame 1 {
stop();
}
}
instance fruit2 of movieClip 1073 {
onClipEvent (enterFrame) {
if (_currentframe == 1 && _root.player.hitTest(this) && _root.player.gravity > 8) {
_root.player.gravity = -_root.player.gravity * 1.5;
_root.girl._y = _root.player._y;
_root.girl._x = _root.player._x;
play();
}
}
}
movieClip 1076 {
}
movieClip 1077 {
}
movieClip 1079 {
}
instance bug of movieClip 89 {
onClipEvent (load) {
counter = 0;
rotateSpeed = 1 + (random(10) - random(10));
}
onClipEvent (enterFrame) {
_rotation = _rotation + rotateSpeed;
counter += 1;
if (counter > random(20)) {
rotateSpeed = 1 + (random(10) - random(10));
counter = 0;
}
radians = _rotation * 0.0174532925199433;
xSpeed = Math.cos(radians);
ySpeed = Math.sin(radians);
_x = _x + xSpeed;
_y = _y + ySpeed;
}
}
button 1082 {
on (release) {
_root.birdText2EndFinished = true;
}
}
movieClip 1084 {
frame 1 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
}
instance birdTextEnd2 of movieClip 1084 {
onClipEvent (enterFrame) {
trace('bla');
if (_root.player._x < 300 && _root.birdText2EndFinished !== true) {
if (_currentframe == _totalframes) {
sound.start();
gotoAndStop(1);
}
_root.player.talking = true;
_visible = true;
_y = _y + (y - _y) / 4;
} else {
_root.player.talking = false;
_y = _y + (500 - _y) / 4;
}
}
onClipEvent (load) {
gotoAndStop(_totalframes);
_visible = false;
sound = new Sound(this);
sound.attachSound('talk_bird');
sound.setVolume(50);
sound.stop();
y = _y;
_y = 600 + _height;
}
}
instance fadeOut2 of movieClip 90 {
onClipEvent (enterFrame) {
if (_alpha > 100) {
_root.nextFrame();
}
if (_root.lightSwitch.switchOn eq true) {
_alpha = _alpha + 0.5;
}
}
onClipEvent (load) {
_alpha = 0;
}
}
movieClip 1086 {
}
movieClip 1088 {
}
instance player2 of movieClip 1088 {
onClipEvent (load) {
rotation = 0;
_rotation = 90;
}
onClipEvent (enterFrame) {
if (_y < 200) {
_y = _y - 0;
} else {
_y = _y - 5;
}
_rotation = _rotation + rotation;
rotation += -rotation / 50;
if (Key.isDown(39)) {
rotation += 0.5;
}
if (Key.isDown(37)) {
rotation -= 0.5;
}
}
}
movieClip 1090 {
}
movieClip 1091 {
}
instance star of movieClip 1091 {
onClipEvent (enterFrame) {
if (_root.fadeWhite._alpha > 90) {
this.removeMovieClip();
}
speed = _xscale / 2;
radians = _root.player2._rotation * 0.0174532925199433;
xSpeed = Math.cos(radians) * speed;
ySpeed = Math.sin(radians) * speed;
_alpha = _alpha + (alpha - _alpha) / 20;
_x = _x + xSpeed;
_y = _y + ySpeed;
if (_x < 0) {
_x = 550;
}
if (_x > 550) {
_x = 0;
}
if (_y > 400) {
_y = 0;
}
if (_y < 0) {
_y = 400;
}
}
onClipEvent (load) {
starNumber = 0;
_x = random(550);
_y = random(400);
_xscale = random(30) + 10;
_yscale = _xscale;
_alpha = 0;
alpha = _xscale * 1.5;
if (this._name eq 'star') {
while (starNumber < 40) {
_root.star.duplicateMovieClip('star' + starNumber, starNumber);
starNumber += 1;
}
}
}
}
instance fadeWhite of movieClip 90 {
onClipEvent (enterFrame) {
trace(_root.credits.done);
this.swapDepths(100000000000.0);
if (_alpha > 100) {
_alpha = 0;
_root.gotoAndStop(2);
}
if (_root.credits.done eq true) {
if (_alpha < 150) {
_alpha = _alpha + 0.5;
}
}
}
onClipEvent (load) {
_alpha = -500;
this.swapDepths(1000000000);
}
}
button 1095 {
on (release) {
_root.credits.play();
_root.birdText3EndFinished = true;
}
}
movieClip 1096 {
frame 1 {
stop();
}
frame 3 {
stop();
}
}
instance birdTextEnd3 of movieClip 1096 {
onClipEvent (enterFrame) {
trace('bla');
if (_root.fadeIn._alpha < 0 && _root.birdText3EndFinished !== true) {
if (_currentframe == _totalframes) {
sound.start();
gotoAndStop(1);
}
_root.player.talking = true;
_visible = true;
_y = _y + (y - _y) / 4;
} else {
_root.player.talking = false;
_y = _y + (500 - _y) / 4;
}
}
onClipEvent (load) {
gotoAndStop(_totalframes);
_visible = false;
sound = new Sound(this);
sound.attachSound('talk_bird');
sound.setVolume(50);
sound.stop();
y = _y;
_y = 600 + _height;
}
}
movieClip 1099 {
}
movieClip 1107 {
}
movieClip 1109 {
frame 1 {
stop();
}
frame 974 {
stop();
_root.credits.done = true;
}
}
instance fadeIn of movieClip 90 {
onClipEvent (enterFrame) {
this.swapDepths(1000000000);
if (_alpha > -5) {
_alpha = _alpha - 0.5;
}
}
onClipEvent (load) {
this.swapDepths(1000000000);
}
}