Combined Code
frame 1 {
stop();
owner_URL = 'http://www.meetandfuckgames.com/';
onEnterFrame = function () {
if (_currentframe != 1) {
return undefined;
}
percent_shadow = 'Loading: ' + int(100 * getBytesLoaded() / getBytesTotal()) + '%';
percent = percent_shadow;
bar.SetValue(getBytesLoaded() / getBytesTotal());
if (getBytesLoaded() == getBytesTotal()) {
gotoAndStop(3);
}
};
MNF_btn.onPress = function () {
if (id == undefined) {
getURL(owner_URL, '_blank');
} else {
getURL('http://refer.ccbill.com/cgi-bin/clicks.cgi?CA=939775-0000&PA=' + id, '_blank');
}
};
}
movieClip 10 {
}
movieClip 12 {
}
// unknown tag 88 length 287
movieClip 2271 __Packages.AnimManager {
#initclip
if (!_global.AnimManager) {
var v1 = function (anim_mc_, btns_mc_) {
this.anim_mc = anim_mc_;
this.btns_mc = btns_mc_;
this.gravi = new Gravitation(1);
this.gravi.move_draw = 0.5;
this.acts = new Array();
this.anim_swings = new Array();
};
_global.AnimManager = v1;
var v2 = v1.prototype;
v2.AddAct = function (AnimActObject) {
var new_act = new AnimAct(AnimActObject);
this.acts.push(new_act);
(eval(String(this.btns_mc) + '.' + new_act.btn_name)).onPress = function () {
var v3 = this._parent.anim_manager;
if (v3 == undefined) {
v3 = this._parent._parent.anim_manager;
}
var v2 = 0;
while (v2 < v3.acts.length) {
if (this._name == v3.acts[v2].btn_name) {
this._parent.btn_id = v2;
break;
}
++v2;
}
this._parent.border._x = this._x;
this._parent.border._y = this._y;
v3.setAct(this._name);
this.postOnPress();
};
if (this.acts.length == 1) {
(eval(String(this.btns_mc) + '.' + new_act.btn_name)).onPress();
}
};
v2.AddSwing = function (AnimSwingObject) {
this.anim_swings.push(new AnimSwing(AnimSwingObject));
};
v2.setAct = function (btn_name) {
if (btn_name == this.act.btn_name) {
return undefined;
}
var btn_name_found = false;
var i = 0;
while (i < this.acts.length) {
if (this.acts[i].btn_name == btn_name) {
this.act = this.acts[i];
btn_name_found = true;
break;
}
++i;
}
if (!btn_name_found) {
return undefined;
}
(eval(String(this.anim_mc._parent) + '.hint')).removeMovieClip();
if (this.act.type == AnimAct.TYPE_PENDULUM_MANUAL) {
this.gravi.control_mode = 0;
this.CreateHint(640, 480, this.anim_mc._parent, this.act.mouse_movement, this.act.pixel_start, this.act.pixel_width);
} else {
this.gravi.control_mode = 1;
}
if (this.act.frame_enter != undefined) {
this.frame = this.act.frame_enter;
}
this.gravi.auto_speed = this.act.auto_speed;
if (this.act.type == AnimAct.TYPE_CUM_PENDULUM) {
this.gravi.auto_fade_out_speed = this.act.auto_fade_out_speed;
this.state = 0;
this.timer = 0;
} else {
if (this.act.type == AnimAct.TYPE_CUM_LINEAR) {
this.state = 0;
}
}
this.Update(this.anim_mc._parent._xmouse, this.anim_mc._parent._ymouse);
this.act.setFaceByStr(this.anim_mc, this.act.face_settings);
};
v2.Update = function (_xmouse, _ymouse) {
if (this.act == undefined) {
return undefined;
}
if (this.act.type == AnimAct.TYPE_PENDULUM_MANUAL) {
if (this.act.mouse_movement == AnimAct.VERTICAL_MOVEMENT) {
this.gravi.move_goto = (_ymouse - this.act.pixel_start) / this.act.pixel_width;
} else {
this.gravi.move_goto = (_xmouse - this.act.pixel_start) / this.act.pixel_width;
}
if (this.gravi.move_goto < 0) {
this.gravi.move_goto = 0;
} else {
if (this.gravi.move_goto > 1) {
this.gravi.move_goto = 1;
}
}
if (this.act.reverse_mouse_control) {
this.gravi.move_goto = 1 - this.gravi.move_goto;
}
}
this.UpdateSwings(true, this.gravi.swing_draw[0]);
this.gravi.Update();
if (this.act.type == AnimAct.TYPE_LINEAR) {
this.frame += 1;
if (this.frame >= this.act.frame_end) {
this.frame -= this.act.frame_end - this.act.frame_start;
}
} else {
if (this.act.type == AnimAct.TYPE_CUM_LINEAR) {
this.frame += 1;
if (this.frame >= this.act.frame_end) {
if (this.state == 0) {
this.state = 1;
this.act.setFaceByStr(this.anim_mc, this.act.face_settings_after_cum);
}
this.frame -= this.act.frame_end - this.act.frame_start;
}
} else {
if (this.act.type == AnimAct.TYPE_PENDULUM || this.act.type == AnimAct.TYPE_PENDULUM_MANUAL) {
this.frame = int(this.gravi.move_draw * (this.act.frame_end - this.act.frame_start) + this.act.frame_start);
} else {
if (this.act.type == AnimAct.TYPE_CUM_PENDULUM) {
if (this.state == 0) {
++this.timer;
if (this.timer >= 50) {
this.state = 1;
this.gravi.control_mode = 2;
}
} else {
if (this.state == 1) {
if (this.gravi.auto_move_fade_k < 0.5) {
this.act.playCum(this.anim_mc);
this.state = 2;
}
} else {
if (this.state == 2) {
if (this.gravi.control_mode == 1) {
this.act.setFaceByStr(this.anim_mc, this.act.face_settings_after_cum);
this.state = 3;
}
}
}
}
this.frame = int(this.gravi.move_draw * (this.act.frame_end - this.act.frame_start) + this.act.frame_start);
}
}
}
}
this.anim_mc.gotoAndStop(int(this.frame));
this.UpdateSwings(false, this.gravi.swing_draw[0]);
};
v2.UpdateSwings = function (update_before, gravi_swing_draw) {
var i = 0;
while (i < this.anim_swings.length) {
if (this.anim_swings[i].update_before_gravi == update_before) {
var clip = eval(String(this.anim_mc) + '.' + this.anim_swings[i].clip_name);
var last_frame = this.anim_swings[i].last_frame;
var first_frame = this.anim_swings[i].first_frame;
if (this.anim_swings[i].reverse) {
clip.gotoAndStop(int((1 - gravi_swing_draw) * (last_frame - first_frame) + first_frame));
} else {
clip.gotoAndStop(int(gravi_swing_draw * (last_frame - first_frame) + first_frame));
}
}
++i;
}
};
v2.CreateHint = function (swf_width, swf_height, owner_mc, mouse_movement, pixel_start, pixel_width) {
var hint_mc = owner_mc.createEmptyMovieClip('hint', owner_mc.getNextHighestDepth());
this.DrawArrow(swf_width, swf_height, hint_mc, mouse_movement, pixel_start, pixel_width);
var mouse_icon_mc = hint_mc.createEmptyMovieClip('mouse_icon', hint_mc.getNextHighestDepth());
this.DrawMouseIcon(mouse_icon_mc);
mouse_icon_mc._visible = false;
hint_mc.anim = 0;
hint_mc.mouse_movement = mouse_movement;
hint_mc.pixel_start = pixel_start;
hint_mc.pixel_width = pixel_width;
hint_mc.swf_width = swf_width;
hint_mc.swf_height = swf_height;
hint_mc.onEnterFrame = function () {
if (!mouse_icon_mc._visible) {
mouse_icon_mc._visible = true;
}
hint_mc.anim += 0.05;
if (hint_mc.anim >= 1) {
hint_mc.anim -= 1;
}
if (hint_mc.mouse_movement == AnimAct.HORIZONTAL_MOVEMENT) {
hint_mc.mouse_icon._x = hint_mc.pixel_start + hint_mc.pixel_width / 2 + Math.sin(6.283185307179586 * hint_mc.anim) * hint_mc.pixel_width / 2;
hint_mc.mouse_icon._y = hint_mc.swf_height / 2 - 70;
} else {
if (hint_mc.mouse_movement == AnimAct.VERTICAL_MOVEMENT) {
hint_mc.mouse_icon._x = hint_mc.swf_width / 2 + 70;
hint_mc.mouse_icon._y = hint_mc.pixel_start + hint_mc.pixel_width / 2 + Math.sin(6.283185307179586 * hint_mc.anim) * hint_mc.pixel_width / 2;
}
}
hint_mc._alpha -= 1;
if (hint_mc._alpha <= 0) {
hint_mc.removeMovieClip();
}
};
};
v2.DrawArrow = function (swf_width, swf_height, mc, mouse_movement, pixel_start, pixel_width) {
mc.lineStyle(2, 10066329);
mc.beginFill(16777215, 100);
var v1 = 25;
if (mouse_movement == AnimAct.HORIZONTAL_MOVEMENT) {
var v4 = pixel_start;
var v3 = swf_height / 2;
mc.moveTo(v4, v3);
mc.lineTo(v4 + 1.5 * v1, v3 - v1);
mc.lineTo(v4 + 1.5 * v1, v3 - 0.5 * v1);
mc.lineTo(v4 + pixel_width - 1.5 * v1, v3 - 0.5 * v1);
mc.lineTo(v4 + pixel_width - 1.5 * v1, v3 - v1);
mc.lineTo(v4 + pixel_width, v3);
mc.lineTo(v4 + pixel_width - 1.5 * v1, v3 + v1);
mc.lineTo(v4 + pixel_width - 1.5 * v1, v3 + 0.5 * v1);
mc.lineTo(v4 + 1.5 * v1, v3 + 0.5 * v1);
mc.lineTo(v4 + 1.5 * v1, v3 + v1);
mc.lineTo(v4, v3);
} else {
if (mouse_movement == AnimAct.VERTICAL_MOVEMENT) {
var v4 = swf_width / 2;
var v3 = pixel_start;
mc.moveTo(v4, v3);
mc.lineTo(v4 + v1, v3 + 1.5 * v1);
mc.lineTo(v4 + 0.5 * v1, v3 + 1.5 * v1);
mc.lineTo(v4 + 0.5 * v1, v3 + pixel_width - 1.5 * v1);
mc.lineTo(v4 + v1, v3 + pixel_width - 1.5 * v1);
mc.lineTo(v4, v3 + pixel_width);
mc.lineTo(v4 - v1, v3 + pixel_width - 1.5 * v1);
mc.lineTo(v4 - 0.5 * v1, v3 + pixel_width - 1.5 * v1);
mc.lineTo(v4 - 0.5 * v1, v3 + 1.5 * v1);
mc.lineTo(v4 - v1, v3 + 1.5 * v1);
mc.lineTo(v4, v3);
}
}
};
v2.DrawMouseIcon = function (mc) {
mc.lineStyle(2, 10066329);
mc.beginFill(16777215, 100);
var v1 = 40;
mc.moveTo(-v1 / 2, 0);
mc.curveTo(-v1 / 2, -v1 / 1.5, 0, -v1 / 1.5);
mc.curveTo(v1 / 2, -v1 / 1.5, v1 / 2, 0);
mc.curveTo(v1 / 3, 0.75 * v1, 0, 0.75 * v1);
mc.curveTo(-v1 / 3, 0.75 * v1, -v1 / 2, 0);
mc.endFill();
mc.moveTo(-v1 / 2, 0);
mc.lineTo(v1 / 2, 0);
mc.moveTo(0, 0);
mc.lineTo(0, -v1 / 1.5);
};
ASSetPropFlags(_global.AnimManager.prototype, null, 1);
}
#endinitclip
}
movieClip 2272 __Packages.Gravitation {
#initclip
if (!_global.Gravitation) {
var v1 = function (swings_num) {
this.move_speeds = new Array();
this.swing_draw = new Array();
this.swing_speed = new Array();
this.swing_fadeout = new Array();
this.auto_move_fade_k = 1;
var v2;
this.move_draw = 0.5;
this.prev_move_draw = 0.5;
this.prev_prev_move_draw = 0.5;
v2 = 0;
while (v2 < 24) {
this.move_speeds.push(0);
++v2;
}
v2 = 0;
while (v2 < swings_num) {
this.swing_draw.push(0.5);
this.swing_speed.push(0);
this.swing_fadeout.push(0.1);
++v2;
}
this.move_delay = 3;
this.move_speed_overal = 0;
this.auto_anim_angle = 0;
this.control_mode = 0;
this.auto_fade_out_speed = 0.005;
this.face_frame = 1;
this.auto_speed = 0.2;
this.anchor = undefined;
};
_global.Gravitation = v1;
var v2 = v1.prototype;
v2.Update = function () {
var v5;
var v3;
var v4 = _root.time_scale;
if (v4 == undefined) {
v4 = 1;
}
if (this.control_mode > 0) {
if (this.control_mode == 2) {
this.auto_move_fade_k -= this.auto_fade_out_speed;
if (this.auto_move_fade_k < 0.15) {
this.control_mode = 1;
this.auto_move_fade_k = 0.15;
}
}
this.auto_anim_angle += this.auto_move_fade_k * Math.PI * this.auto_speed * v4;
if (this.auto_anim_angle >= 6.283185307179586) {
this.auto_anim_angle -= 6.283185307179586;
}
this.move_goto = (this.auto_move_fade_k * Math.sin(this.auto_anim_angle) + 1) / 2;
}
this.actual_delay = this.move_delay - this.move_speed_overal * 10;
if (this.actual_delay < 1.5) {
this.actual_delay = 1.5;
}
this.move_speed = v4 * (this.move_goto - this.move_draw) / this.actual_delay;
v5 = 1 / this.actual_delay;
this.prev_prev_move_draw = this.prev_move_draw;
this.prev_move_draw = this.move_draw;
this.move_draw += this.move_speed;
if (this.move_draw > 1) {
this.move_draw = 1;
} else {
if (this.move_draw < 0) {
this.move_draw = 0;
}
}
this.anchor = undefined;
if (this.move_draw < this.prev_move_draw && this.prev_move_draw >= this.prev_prev_move_draw) {
this.anchor = 1;
} else {
if (this.move_draw > this.prev_move_draw && this.prev_move_draw <= this.prev_prev_move_draw) {
this.anchor = -1;
}
}
this.move_speeds.push(Math.abs(this.move_speed));
this.move_speeds.splice(0, 1);
this.move_speed_overal = 0;
v3 = 0;
while (v3 < this.move_speeds.length) {
this.move_speed_overal += this.move_speeds[v3];
++v3;
}
this.move_speed_overal /= this.move_speeds.length;
this.swing_goto = (this.move_speed + v5) / 2 * v5;
v3 = 0;
while (v3 < this.swing_draw.length) {
if (Math.abs(this.swing_goto - this.swing_draw[v3]) > 0.001666666666666667 || Math.abs(this.swing_speed[v3]) > 0.001666666666666667) {
this.swing_speed[v3] += (this.swing_goto - this.swing_draw[v3]) / 10 + 1.5 * this.move_speed_overal * (this.swing_goto - this.swing_draw[v3]);
this.swing_draw[v3] += this.swing_speed[v3];
this.swing_draw[v3] += (this.swing_goto - this.swing_draw[v3]) * this.swing_fadeout[v3];
if (this.swing_draw[v3] < 0) {
this.swing_draw[v3] = 0;
} else {
if (this.swing_draw[v3] > 1) {
this.swing_draw[v3] = 1;
}
}
} else {
this.swing_draw[v3] = 0.5;
}
++v3;
}
if (this.move_speed_overal > 0.14 && this.face_frame < 3) {
this.face_frame = 3;
}
if (this.move_speed_overal > 0.07000000000000001 && this.face_frame < 2) {
this.face_frame = 2;
}
if (this.move_speed_overal < 0.05 && this.face_frame > 1) {
this.face_frame = 1;
}
if (this.move_speed_overal < 0.1 && this.face_frame > 2) {
this.face_frame = 2;
}
};
ASSetPropFlags(_global.Gravitation.prototype, null, 1);
}
#endinitclip
}
movieClip 2273 __Packages.AnimAct {
#initclip
if (!_global.AnimAct) {
var v1 = function (AnimActObject) {
this.btn_name = AnimActObject.btn_name;
this.type = AnimActObject.type;
this.frame_start = AnimActObject.frame_start;
this.frame_end = AnimActObject.frame_end;
this.frame_enter = AnimActObject.frame_enter;
if (this.frame_enter == undefined) {
this.frame_enter = this.frame_start;
}
this.auto_speed = AnimActObject.auto_speed;
this.auto_fade_out_speed = AnimActObject.auto_fade_out_speed;
this.face_settings = this.TossJunkChars(AnimActObject.face_settings);
this.cum_clips = this.TossJunkChars(AnimActObject.cum_clips);
this.face_settings_after_cum = this.TossJunkChars(AnimActObject.face_settings_after_cum);
this.mouse_movement = AnimActObject.mouse_movement;
this.pixel_start = AnimActObject.pixel_start;
this.pixel_width = AnimActObject.pixel_width;
this.reverse_mouse_control = Boolean(AnimActObject.reverse_mouse_control);
};
_global.AnimAct = v1;
var v2 = v1.prototype;
v2.TossJunkChars = function (str) {
var v1 = 0;
while (v1 < str.length) {
if (str.charAt(v1) == '\t' || str.charAt(v1) == '\r' || str.charAt(v1) == '\n' || str.charAt(v1) == ' ') {
str = str.substr(0, v1) + str.substr(v1 + 1, str.length);
--v1;
}
++v1;
}
return str;
};
v2.setFaceByStr = function (anim_mc, data_str) {
var data_item = '';
var i = 0;
while (i <= data_str.length) {
if (data_str.charAt(i) == ',' || i == data_str.length) {
var n = data_item.indexOf('=');
var path = data_item.substr(0, n);
var frame = Number(data_item.substr(n + 1, data_item.length));
(eval(String(anim_mc) + '.' + path)).gotoAndStop(frame);
data_item = '';
} else {
data_item += data_str.charAt(i);
}
++i;
}
};
v2.playCum = function (anim_mc) {
var data_str = this.cum_clips;
var data_item = '';
var i = 0;
while (i <= data_str.length) {
if (data_str.charAt(i) == ',' || i == data_str.length) {
(eval(String(anim_mc) + '.' + data_item)).play();
data_item = '';
} else {
data_item += data_str.charAt(i);
}
++i;
}
};
v1.TYPE_PENDULUM = 0;
v1.TYPE_LINEAR = 1;
v1.TYPE_CUM_PENDULUM = 2;
v1.TYPE_CUM_LINEAR = 3;
v1.TYPE_PENDULUM_MANUAL = 4;
v1.VERTICAL_MOVEMENT = 0;
v1.HORIZONTAL_MOVEMENT = 1;
ASSetPropFlags(_global.AnimAct.prototype, null, 1);
}
#endinitclip
}
movieClip 2274 __Packages.AnimSwing {
#initclip
if (!_global.AnimSwing) {
var v1 = function (AnimSwingObject) {
this.clip_name = AnimSwingObject.clip_name;
this.first_frame = Number(AnimSwingObject.first_frame);
this.last_frame = Number(AnimSwingObject.last_frame);
this.reverse = Boolean(AnimSwingObject.reverse);
if (AnimSwingObject.update_before_gravi == undefined) {
this.update_before_gravi = false;
} else {
this.update_before_gravi = Boolean(AnimSwingObject.update_before_gravi);
}
};
_global.AnimSwing = v1;
var v2 = v1.prototype;
ASSetPropFlags(_global.AnimSwing.prototype, null, 1);
}
#endinitclip
}
movieClip 21 trans_screen {
frame 1 {
var next_screen;
}
frame 10 {
_parent.setScreen(next_screen);
}
frame 20 {
removeMovieClip(this);
}
}
movieClip 26 {
}
movieClip 27 {
}
movieClip 30 {
}
movieClip 31 {
}
movieClip 34 {
}
movieClip 43 mainmenu {
frame 1 {
stop();
play_btn.onPress = function () {
_root.gotoScreen('screen1');
};
MNF_btn.onPress = function () {
if (_root.id == undefined) {
getURL(_root.owner_URL, '_blank');
} else {
getURL('http://refer.ccbill.com/cgi-bin/clicks.cgi?CA=939775-0000&PA=' + _root.id, '_blank');
}
};
}
}
movieClip 48 {
}
movieClip 51 {
}
movieClip 53 {
}
movieClip 55 {
}
movieClip 57 {
}
movieClip 59 {
}
movieClip 60 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(3) + 1));
};
randomFlag();
}
frame 30 {
randomFlag();
}
frame 55 {
randomFlag();
}
frame 80 {
randomFlag();
}
}
movieClip 62 {
}
movieClip 64 {
}
movieClip 66 {
}
movieClip 68 {
}
movieClip 70 {
}
movieClip 72 {
}
movieClip 74 {
}
movieClip 75 {
}
// unknown tag 88 length 282
movieClip 93 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 8 {
randomFlag();
}
frame 16 {
randomFlag();
}
}
movieClip 95 {
}
movieClip 99 {
frame 10 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 25 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 40 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 46 {
stop();
_root.gotoScreen('screen2');
}
}
movieClip 101 screen1 {
frame 1 {
_root.endgamevar = false;
}
}
movieClip 105 {
}
movieClip 107 {
}
movieClip 109 {
}
movieClip 110 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 45 {
randomFlag();
}
frame 89 {
randomFlag();
}
}
movieClip 112 {
}
movieClip 114 {
}
movieClip 116 {
}
movieClip 118 {
}
movieClip 120 {
}
movieClip 122 {
}
movieClip 124 {
}
movieClip 126 {
}
movieClip 128 {
}
movieClip 131 {
}
movieClip 136 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 60 {
randomFlag();
}
frame 121 {
randomFlag();
}
}
movieClip 142 {
}
movieClip 144 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 15 {
randomFlag();
}
frame 29 {
randomFlag();
}
}
movieClip 146 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 101 {
randomFlag();
}
frame 200 {
randomFlag();
}
}
movieClip 147 {
}
movieClip 149 {
}
movieClip 151 {
}
movieClip 153 {
}
movieClip 155 {
}
movieClip 156 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 45 {
randomFlag();
}
frame 89 {
randomFlag();
}
}
movieClip 158 {
}
movieClip 160 {
}
movieClip 161 {
}
movieClip 163 {
}
movieClip 165 {
}
movieClip 166 {
}
movieClip 168 {
}
movieClip 169 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 47 {
randomFlag();
}
frame 85 {
randomFlag();
}
}
movieClip 178 {
frame 1 {
onEnterFrame = function () {
gotoAndStop(random(8) + 1);
};
}
}
movieClip 179 {
}
movieClip 182 {
}
movieClip 191 {
frame 11 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 51 {
stop();
next_btn.onPress = function () {
_root.gotoScreen('screen3');
};
}
}
movieClip 193 screen2 {
}
movieClip 200 {
}
movieClip 202 {
}
movieClip 203 {
}
movieClip 204 {
}
movieClip 211 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 8 {
randomFlag();
}
frame 16 {
randomFlag();
}
}
movieClip 214 {
frame 10 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 25 {
_parent.gotoAndPlay(2);
}
frame 80 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 86 {
stop();
_root.gotoScreen('screen4');
}
}
movieClip 215 {
}
movieClip 216 screen3 {
frame 1 {
stop();
}
frame 50 {
stop();
}
}
movieClip 234 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(5) + 1));
};
randomFlag();
}
frame 25 {
randomFlag();
}
frame 35 {
randomFlag();
}
frame 53 {
randomFlag();
}
frame 65 {
randomFlag();
}
frame 85 {
randomFlag();
}
}
movieClip 235 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(3) + 1));
};
randomFlag();
}
frame 14 {
randomFlag();
}
frame 40 {
randomFlag();
}
frame 60 {
randomFlag();
}
}
movieClip 244 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(3) + 1));
};
randomFlag();
}
frame 25 {
randomFlag();
}
frame 70 {
randomFlag();
}
frame 103 {
randomFlag();
}
}
movieClip 299 {
frame 1 {
_parent.hair.gotoAndStop(_currentframe);
}
frame 2 {
_parent.hair.gotoAndStop(_currentframe);
}
frame 3 {
_parent.hair.gotoAndStop(_currentframe);
}
frame 4 {
_parent.hair.gotoAndStop(_currentframe);
}
frame 5 {
_parent.hair.gotoAndStop(_currentframe);
}
frame 6 {
_parent.hair.gotoAndStop(_currentframe);
}
frame 7 {
_parent.hair.gotoAndStop(_currentframe);
}
frame 8 {
_parent.hair.gotoAndStop(_currentframe);
}
frame 9 {
_parent.hair.gotoAndStop(_currentframe);
}
frame 10 {
_parent.hair.gotoAndStop(_currentframe);
}
frame 11 {
_parent.hair.gotoAndStop(_currentframe);
}
frame 12 {
_parent.hair.gotoAndStop(_currentframe);
}
frame 13 {
_parent.hair.gotoAndStop(_currentframe);
}
frame 14 {
_parent.hair.gotoAndStop(_currentframe);
}
frame 15 {
_parent.hair.gotoAndStop(_currentframe);
}
frame 16 {
_parent.hair.gotoAndStop(_currentframe);
}
frame 17 {
_parent.hair.gotoAndStop(_currentframe);
}
frame 18 {
_parent.hair.gotoAndStop(_currentframe);
}
frame 19 {
_parent.hair.gotoAndStop(_currentframe);
}
frame 20 {
_parent.hair.gotoAndStop(_currentframe);
}
frame 21 {
_parent.hair.gotoAndStop(_currentframe);
}
frame 22 {
_parent.hair.gotoAndStop(_currentframe);
}
frame 23 {
_parent.hair.gotoAndStop(_currentframe);
}
frame 24 {
_parent.hair.gotoAndStop(_currentframe);
}
frame 25 {
_parent.hair.gotoAndStop(_currentframe);
}
frame 26 {
_parent.hair.gotoAndStop(_currentframe);
}
frame 27 {
_parent.hair.gotoAndStop(_currentframe);
}
frame 28 {
_parent.hair.gotoAndStop(_currentframe);
}
frame 29 {
_parent.hair.gotoAndStop(_currentframe);
}
frame 30 {
_parent.hair.gotoAndStop(_currentframe);
}
frame 31 {
_parent.hair.gotoAndStop(_currentframe);
}
frame 32 {
_parent.hair.gotoAndStop(_currentframe);
}
frame 33 {
_parent.hair.gotoAndStop(_currentframe);
}
frame 34 {
_parent.hair.gotoAndStop(_currentframe);
}
frame 35 {
_parent.hair.gotoAndStop(_currentframe);
}
frame 36 {
_parent.hair.gotoAndStop(_currentframe);
}
frame 37 {
_parent.hair.gotoAndStop(_currentframe);
}
frame 38 {
_parent.hair.gotoAndStop(_currentframe);
}
frame 39 {
_parent.hair.gotoAndStop(_currentframe);
}
frame 40 {
_parent.hair.gotoAndStop(_currentframe);
}
frame 41 {
_parent.hair.gotoAndStop(_currentframe);
}
frame 42 {
_parent.hair.gotoAndStop(_currentframe);
}
frame 43 {
_parent.hair.gotoAndStop(_currentframe);
}
frame 44 {
_parent.hair.gotoAndStop(_currentframe);
}
frame 45 {
_parent.hair.gotoAndStop(_currentframe);
}
frame 46 {
_parent.hair.gotoAndStop(_currentframe);
}
frame 47 {
_parent.hair.gotoAndStop(_currentframe);
}
frame 48 {
_parent.hair.gotoAndStop(_currentframe);
}
frame 49 {
_parent.hair.gotoAndStop(_currentframe);
}
frame 50 {
_parent.hair.gotoAndStop(_currentframe);
}
}
movieClip 305 {
}
movieClip 310 {
}
movieClip 323 {
}
movieClip 325 {
}
movieClip 333 {
}
movieClip 348 {
}
movieClip 350 {
}
movieClip 362 {
}
movieClip 403 {
frame 1 {
_parent._parent._parent._parent.girl_look_at = false;
_parent._parent._parent._parent.rays_var = false;
}
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 1 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 2 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 3 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 4 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 5 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 6 {
_parent._parent._parent._parent.rays_var = true;
}
frame 6 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 7 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 8 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 9 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 10 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 11 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 12 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 13 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 14 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 15 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 16 {
_parent._parent._parent._parent.girl_look_at = true;
}
frame 16 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 17 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 18 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 19 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 20 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 21 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 22 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 23 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 24 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 25 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 26 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 27 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 28 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 29 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 30 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 31 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 32 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 33 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 34 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 35 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 36 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 37 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 38 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 39 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 40 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 41 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 42 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 43 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 44 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 45 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 46 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 47 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 48 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 49 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 50 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 51 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 52 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 53 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 54 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 55 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 56 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 57 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 58 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 59 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 60 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 61 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 62 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 63 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 64 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 65 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 66 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 67 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 68 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 69 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 70 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 71 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 72 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 73 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 74 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 75 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 76 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 77 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 78 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 79 {
_parent._parent._parent._parent.girl_look_at = false;
}
frame 79 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 80 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 81 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 82 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 83 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 84 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 85 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 86 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 87 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 88 {
_parent._parent._parent._parent.rays_var = true;
}
frame 88 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 89 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 90 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 91 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 92 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 93 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 94 {
_parent._parent._parent._parent.rays_var = false;
}
frame 94 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 95 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 96 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 97 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 98 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 99 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 100 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 101 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 102 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 103 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 104 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 105 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 106 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 107 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 108 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 109 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 110 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 111 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 112 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 113 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 114 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 115 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 116 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 117 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 118 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 119 {
randomFlag();
}
frame 119 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 120 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 121 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 122 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 123 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 124 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 125 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 126 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 127 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 128 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 129 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 130 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 131 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 132 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 133 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 134 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 135 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 136 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 137 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 138 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 139 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 140 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 141 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 142 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 143 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 144 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 145 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 146 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 147 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 148 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 149 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 150 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 151 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 152 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 153 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 154 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 155 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 156 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 157 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 158 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 159 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 160 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 161 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 162 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 163 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 164 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 165 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 166 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 167 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 168 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 169 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 170 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 171 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 172 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 173 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 174 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 175 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 176 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 177 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 178 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 179 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 180 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 181 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 182 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 183 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 184 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 185 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 186 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 187 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 188 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 189 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 190 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 191 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
frame 192 {
randomFlag();
}
frame 192 {
_parent.hair.hair.gotoAndStop(_currentframe);
_parent.hair1.gotoAndStop(_currentframe);
}
}
movieClip 436 {
}
movieClip 437 {
}
movieClip 476 {
}
movieClip 551 {
}
movieClip 553 {
}
movieClip 555 {
}
movieClip 591 {
frame 1 {
myVar = 0;
randomFlag = function () {
gotoAndPlay('flag' + (random(3) + 1));
};
randomFlag();
}
frame 38 {
if (myVar <= 1) {
gotoAndPlay('flag1');
myVar += 1;
} else {
randomFlag();
myVar = 0;
}
}
frame 76 {
if (myVar <= 1) {
gotoAndPlay('flag2');
myVar += 1;
} else {
randomFlag();
myVar = 0;
}
}
frame 114 {
if (myVar <= 1) {
gotoAndPlay('flag3');
myVar += 1;
} else {
randomFlag();
myVar = 0;
}
}
}
movieClip 603 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(5) + 1));
};
randomFlag();
}
frame 25 {
randomFlag();
}
frame 35 {
randomFlag();
}
frame 53 {
randomFlag();
}
frame 65 {
randomFlag();
}
frame 85 {
randomFlag();
}
}
movieClip 604 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(3) + 1));
};
randomFlag();
}
frame 14 {
randomFlag();
}
frame 40 {
randomFlag();
}
frame 60 {
randomFlag();
}
}
movieClip 605 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(3) + 1));
};
randomFlag();
}
frame 38 {
randomFlag();
}
frame 75 {
randomFlag();
}
frame 112 {
randomFlag();
}
}
movieClip 606 {
}
movieClip 610 {
frame 1 {
onEnterFrame = function () {
if (_parent.helpVar == true) {
if (_parent._xmouse > 300) {
_parent.kevin.gotoAndStop(_parent._xmouse - 300);
if (_parent._currentframe >= 6) {
_parent.gotoAndStop(_parent._currentframe - 5);
} else {
_parent.gotoAndStop(1);
}
if (_parent.bar.stripe._x >= 0.1) {
_parent.bar.stripe._x -= 0.1;
}
i = 0;
_parent.rays.gotoAndStop(1);
}
if (_parent._xmouse <= 300) {
_parent.kevin.gotoAndStop(1);
if (_parent.girl_look_at == false) {
if (_parent.bar.stripe._x <= 299.7) {
_parent.bar.stripe._x += 0.4;
}
} else {
if (_parent.bar.stripe._x >= 0.1) {
_parent.bar.stripe._x -= 0.1;
}
}
if (_parent._currentframe < 59) {
_parent.gotoAndStop(_parent._currentframe + 1);
} else {
_parent.gotoAndStop(60);
}
if (_parent.girl_look_at == true) {
if (i <= 23) {
++i;
}
} else {
i = 0;
}
if (_parent.rays_var == true) {
_parent.rays.gotoAndStop(2);
} else {
_parent.rays.gotoAndStop(1);
}
}
if (i == 24) {
_parent.gotoAndStop('game_over');
}
if (_parent.bar.stripe._x >= 299) {
_parent.gotoAndStop('end_game');
}
} else {
_parent.kevin.gotoAndStop(103);
}
};
}
}
movieClip 658 {
}
movieClip 663 {
}
movieClip 707 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 17 {
randomFlag();
}
frame 32 {
randomFlag();
}
}
movieClip 741 {
}
movieClip 743 {
}
movieClip 781 {
}
movieClip 849 {
}
movieClip 894 {
}
movieClip 896 {
}
movieClip 900 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 30 {
randomFlag();
}
frame 59 {
randomFlag();
}
}
movieClip 912 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 45 {
randomFlag();
}
frame 95 {
randomFlag();
}
}
movieClip 913 {
}
movieClip 915 {
frame 1 {
stop();
}
}
movieClip 918 {
}
movieClip 920 {
frame 1 {
stripe._x = 0;
}
}
movieClip 923 {
frame 1 {
stop();
_parent.helpVar = false;
next_btn.onPress = function () {
gotoAndStop(2);
};
}
frame 2 {
stop();
_parent.helpVar = true;
}
}
movieClip 928 {
}
movieClip 930 {
}
movieClip 932 {
}
movieClip 933 {
}
movieClip 935 {
}
movieClip 937 {
}
movieClip 939 {
}
movieClip 941 {
}
movieClip 943 {
}
movieClip 945 {
}
movieClip 947 {
}
movieClip 949 {
}
movieClip 951 {
}
movieClip 953 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 60 {
randomFlag();
}
frame 121 {
randomFlag();
}
}
movieClip 954 {
}
movieClip 955 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 15 {
randomFlag();
}
frame 29 {
randomFlag();
}
}
movieClip 956 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 101 {
randomFlag();
}
frame 200 {
randomFlag();
}
}
movieClip 957 {
}
movieClip 959 {
}
movieClip 961 {
}
movieClip 963 {
}
movieClip 965 {
}
movieClip 967 {
}
movieClip 969 {
}
movieClip 971 {
}
movieClip 972 {
}
movieClip 974 {
}
movieClip 976 {
}
movieClip 978 {
}
movieClip 980 {
}
movieClip 982 {
}
movieClip 983 {
}
movieClip 985 {
}
movieClip 987 {
}
movieClip 989 {
}
movieClip 990 {
}
movieClip 995 {
}
movieClip 996 {
}
movieClip 1008 {
}
movieClip 1009 {
}
movieClip 1012 {
}
movieClip 1013 {
}
movieClip 1014 {
}
movieClip 1016 {
}
movieClip 1017 {
}
movieClip 1024 {
}
movieClip 1025 {
}
movieClip 1026 {
}
movieClip 1028 {
}
movieClip 1031 {
}
movieClip 1032 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(3) + 1));
};
randomFlag();
}
frame 38 {
randomFlag();
}
frame 75 {
randomFlag();
}
frame 112 {
randomFlag();
}
}
movieClip 1033 {
}
movieClip 1037 {
}
movieClip 1039 {
}
movieClip 1042 {
}
movieClip 1054 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 45 {
randomFlag();
}
frame 95 {
randomFlag();
}
}
movieClip 1055 {
}
movieClip 1058 {
frame 11 {
stop();
next_btn.onPress = function () {
_root.gotoScreen('screen5');
};
}
}
movieClip 1060 screen4 {
frame 1 {
stop();
}
frame 60 {
stop();
}
frame 61 {
try_again.onPress = function () {
gotoAndStop(1);
};
}
}
movieClip 1067 {
}
movieClip 1068 {
}
movieClip 1073 {
}
movieClip 1075 {
}
movieClip 1077 {
}
movieClip 1081 {
}
movieClip 1083 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 60 {
randomFlag();
}
frame 120 {
randomFlag();
}
}
movieClip 1085 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 30 {
randomFlag();
}
frame 59 {
randomFlag();
}
}
movieClip 1087 {
}
movieClip 1089 {
}
movieClip 1091 {
}
movieClip 1092 {
}
movieClip 1094 {
}
movieClip 1096 {
}
movieClip 1098 {
}
movieClip 1100 {
}
movieClip 1102 {
}
movieClip 1104 {
}
movieClip 1106 {
}
movieClip 1108 {
}
movieClip 1110 {
}
movieClip 1112 {
}
movieClip 1114 {
}
movieClip 1116 {
}
movieClip 1118 {
}
movieClip 1120 {
}
movieClip 1121 {
}
movieClip 1122 {
}
movieClip 1130 {
}
movieClip 1132 {
}
movieClip 1133 {
}
movieClip 1135 {
}
movieClip 1137 {
}
movieClip 1139 {
}
movieClip 1141 {
}
movieClip 1143 {
}
movieClip 1145 {
}
movieClip 1147 {
}
movieClip 1149 {
}
movieClip 1151 {
}
movieClip 1153 {
}
movieClip 1155 {
}
movieClip 1156 {
}
movieClip 1157 {
}
movieClip 1162 {
}
movieClip 1163 screen5 {
frame 1 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 2 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 3 {
stop();
next_btn.onPress = function () {
_root.gotoScreen('screen6');
};
}
}
movieClip 1164 {
}
movieClip 1165 {
}
movieClip 1166 {
}
movieClip 1167 {
}
movieClip 1168 {
}
movieClip 1169 {
}
movieClip 1170 {
}
movieClip 1171 {
}
movieClip 1172 {
}
movieClip 1173 {
}
movieClip 1174 {
}
movieClip 1176 {
}
movieClip 1178 {
}
movieClip 1180 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 60 {
randomFlag();
}
frame 121 {
randomFlag();
}
}
movieClip 1181 {
}
movieClip 1182 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 15 {
randomFlag();
}
frame 29 {
randomFlag();
}
}
movieClip 1183 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 101 {
randomFlag();
}
frame 200 {
randomFlag();
}
}
movieClip 1184 {
}
movieClip 1186 {
}
movieClip 1188 {
}
movieClip 1190 {
}
movieClip 1191 {
}
movieClip 1192 {
}
movieClip 1193 {
}
movieClip 1195 {
}
movieClip 1196 {
}
movieClip 1197 {
}
movieClip 1198 {
}
movieClip 1199 {
}
movieClip 1200 {
}
movieClip 1202 {
}
movieClip 1203 {
}
movieClip 1205 {
}
movieClip 1207 {
}
movieClip 1208 {
}
movieClip 1209 {
}
movieClip 1220 {
}
movieClip 1222 {
}
movieClip 1232 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 30 {
randomFlag();
}
frame 59 {
randomFlag();
}
}
movieClip 1267 {
}
movieClip 1319 {
}
movieClip 1321 {
}
movieClip 1327 {
frame 1 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 2 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 3 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 4 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 5 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 6 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 7 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 8 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 9 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 10 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 11 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 12 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 13 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 14 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 15 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 16 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 17 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 18 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 19 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 20 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 21 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 22 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 23 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 24 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 25 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 26 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 27 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 28 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 29 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 30 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 31 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 32 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 33 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 34 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 35 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 36 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 37 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 38 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 39 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 40 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 41 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 42 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 43 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 44 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 45 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 46 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 47 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 48 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 49 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 50 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 51 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 52 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 53 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 54 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 55 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 56 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 57 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 58 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 59 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 60 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 61 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 62 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 63 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 64 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 65 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 66 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 67 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 68 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 69 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 70 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 71 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 72 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 73 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 74 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 75 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 76 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 77 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 78 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 79 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 80 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 81 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 82 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 83 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 84 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 85 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 86 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 87 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 88 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 89 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 90 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 91 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 92 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 93 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 94 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 95 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 96 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 97 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 98 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 99 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 100 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 101 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 102 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 103 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 104 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 105 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 106 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 107 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 108 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 109 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 110 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 111 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 112 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 113 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 114 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
frame 115 {
_parent.bg.kevin.gotoAndStop(_currentframe);
}
}
movieClip 1332 {
}
movieClip 1334 {
}
movieClip 1336 {
}
movieClip 1338 {
}
movieClip 1340 {
}
movieClip 1341 {
}
movieClip 1343 {
}
movieClip 1345 {
}
movieClip 1347 {
}
movieClip 1349 {
}
movieClip 1351 {
}
movieClip 1353 {
}
movieClip 1355 {
}
movieClip 1380 {
}
movieClip 1381 {
}
movieClip 1383 {
}
movieClip 1385 {
}
movieClip 1387 {
}
movieClip 1389 {
}
movieClip 1395 {
}
movieClip 1426 {
}
movieClip 1442 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 30 {
randomFlag();
}
frame 59 {
randomFlag();
}
}
movieClip 1449 {
}
movieClip 1451 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 60 {
randomFlag();
}
frame 121 {
randomFlag();
}
}
movieClip 1454 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 79 {
randomFlag();
}
frame 200 {
randomFlag();
}
}
movieClip 1461 {
}
movieClip 1463 {
}
movieClip 1592 {
frame 1 {
_parent._parent._parent.girl_look_at = false;
_parent._parent._parent.rays_var = false;
}
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 6 {
_parent._parent._parent.rays_var = true;
}
frame 16 {
_parent._parent._parent.girl_look_at = true;
}
frame 79 {
_parent._parent._parent.girl_look_at = false;
}
frame 88 {
_parent._parent._parent.rays_var = true;
}
frame 94 {
_parent._parent._parent.rays_var = false;
}
frame 119 {
randomFlag();
}
frame 192 {
randomFlag();
}
}
movieClip 1597 {
}
movieClip 1599 {
}
movieClip 1601 {
}
movieClip 1603 {
}
movieClip 1613 {
}
movieClip 1637 {
}
movieClip 1655 {
}
movieClip 1656 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(3) + 1));
};
randomFlag();
}
frame 13 {
randomFlag();
}
frame 25 {
randomFlag();
}
frame 37 {
randomFlag();
}
}
movieClip 1657 {
frame 1 {
onEnterFrame = function () {
if (_parent.helpVar == true) {
if (_parent._xmouse > 330) {
_parent.kevin.gotoAndStop(_parent._xmouse - 330);
_parent.bg.kevin.gotoAndStop(_parent._xmouse - 330);
if (_parent._currentframe >= 6) {
_parent.gotoAndStop(_parent._currentframe - 5);
} else {
_parent.gotoAndStop(1);
}
if (_parent.bar.stripe._x >= 0.1) {
_parent.bar.stripe._x -= 0.1;
}
i = 0;
_parent.rays.gotoAndStop(1);
}
if (_parent._xmouse <= 330) {
_parent.kevin.gotoAndStop(1);
_parent.bg.kevin.gotoAndStop(1);
if (_parent.girl_look_at == false) {
if (_parent.bar.stripe._x <= 299) {
_parent.bar.stripe._x += 0.4;
}
} else {
if (_parent.bar.stripe._x >= 0.1) {
_parent.bar.stripe._x -= 0.1;
}
}
if (_parent._currentframe < 59) {
_parent.gotoAndStop(_parent._currentframe + 1);
} else {
_parent.gotoAndStop(60);
}
if (_parent.girl_look_at == true) {
if (i <= 23) {
++i;
}
} else {
i = 0;
}
if (_parent.rays_var == true) {
_parent.rays.gotoAndStop(2);
} else {
_parent.rays.gotoAndStop(1);
}
}
if (i == 24) {
_parent.gotoAndStop('game_over');
}
if (_parent.bar.stripe._x >= 299) {
_parent.gotoAndStop('end_game');
}
} else {
_parent.kevin.gotoAndStop(103);
}
};
}
}
movieClip 1658 {
frame 1 {
stop();
}
}
movieClip 1661 {
frame 1 {
stop();
_parent.helpVar = false;
next_btn.onPress = function () {
gotoAndStop(2);
};
}
frame 2 {
stop();
_parent.helpVar = true;
}
}
movieClip 1664 {
}
movieClip 1665 {
}
movieClip 1669 {
}
movieClip 1670 {
}
movieClip 1671 {
}
movieClip 1672 {
}
movieClip 1673 {
}
movieClip 1674 {
}
movieClip 1676 {
}
movieClip 1678 {
}
movieClip 1679 {
}
movieClip 1681 {
}
movieClip 1683 {
}
movieClip 1685 {
}
movieClip 1686 {
}
movieClip 1688 {
}
movieClip 1690 {
}
movieClip 1691 {
}
movieClip 1693 {
}
movieClip 1695 {
}
movieClip 1697 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 60 {
randomFlag();
}
frame 121 {
randomFlag();
}
}
movieClip 1698 {
}
movieClip 1700 {
}
movieClip 1702 {
}
movieClip 1703 {
}
movieClip 1704 {
}
movieClip 1706 {
}
movieClip 1707 {
}
movieClip 1708 {
}
movieClip 1709 {
}
movieClip 1711 {
}
movieClip 1712 {
}
movieClip 1713 {
}
movieClip 1714 {
}
movieClip 1715 {
}
movieClip 1716 {
}
movieClip 1718 {
}
movieClip 1719 {
}
movieClip 1721 {
}
movieClip 1723 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 101 {
randomFlag();
}
frame 200 {
randomFlag();
}
}
movieClip 1724 {
}
movieClip 1725 {
}
movieClip 1726 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 45 {
randomFlag();
}
frame 95 {
randomFlag();
}
}
movieClip 1728 {
}
movieClip 1730 {
}
movieClip 1732 {
}
movieClip 1733 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 50 {
randomFlag();
}
frame 102 {
randomFlag();
}
}
movieClip 1735 {
}
movieClip 1737 {
}
movieClip 1739 {
}
movieClip 1741 {
}
movieClip 1743 {
}
movieClip 1745 {
}
movieClip 1747 {
}
movieClip 1749 {
}
movieClip 1751 {
}
movieClip 1753 {
}
movieClip 1755 {
}
movieClip 1757 {
}
movieClip 1758 {
}
movieClip 1759 {
}
movieClip 1768 {
}
movieClip 1769 {
frame 11 {
stop();
next_btn.onPress = function () {
_root.gotoScreen('screen7');
};
}
}
movieClip 1771 screen6 {
frame 1 {
stop();
}
frame 1 {
stop();
}
frame 60 {
stop();
}
frame 61 {
try_again.onPress = function () {
gotoAndStop(1);
};
}
}
movieClip 1776 {
}
movieClip 1784 {
}
movieClip 1790 {
}
movieClip 1796 {
}
movieClip 1798 {
}
movieClip 1800 {
}
movieClip 1802 {
}
movieClip 1804 {
}
movieClip 1806 {
}
movieClip 1808 {
}
movieClip 1811 {
}
movieClip 1829 {
}
movieClip 1836 {
}
movieClip 1841 {
}
movieClip 1845 {
}
movieClip 1847 {
}
movieClip 1849 {
}
movieClip 1851 {
}
movieClip 1853 {
}
movieClip 1858 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 60 {
randomFlag();
}
frame 121 {
randomFlag();
}
}
movieClip 1861 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 101 {
randomFlag();
}
frame 200 {
randomFlag();
}
}
movieClip 1865 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 60 {
randomFlag();
}
frame 121 {
randomFlag();
}
}
movieClip 1868 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 60 {
randomFlag();
}
frame 121 {
randomFlag();
}
}
movieClip 1869 {
}
movieClip 1870 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 60 {
randomFlag();
}
frame 121 {
randomFlag();
}
}
movieClip 1871 {
}
movieClip 1884 {
}
movieClip 1886 {
}
movieClip 1890 {
}
movieClip 1892 {
}
movieClip 1894 {
}
movieClip 1896 {
}
movieClip 1897 {
}
movieClip 1907 {
frame 1 {
stop();
}
frame 81 {
gotoAndPlay('frame');
}
}
movieClip 1913 {
}
movieClip 1936 {
frame 1 {
stop();
}
frame 33 {
_parent.sperm1.play();
_parent.sperm2.play();
_parent.sperm3.play();
}
frame 55 {
_parent._parent.cumscr.gotoAndPlay('frame');
_parent._parent.next_btn._visible = true;
}
frame 101 {
gotoAndPlay('frame');
}
}
movieClip 1949 {
}
movieClip 1954 {
}
movieClip 1956 {
}
movieClip 1957 {
}
movieClip 1963 {
}
movieClip 1965 {
}
movieClip 1967 {
}
movieClip 1968 {
}
movieClip 1985 {
}
movieClip 2002 {
frame 1 {
stop();
}
frame 76 {
gotoAndPlay('frame');
}
}
movieClip 2010 {
frame 1 {
stop();
}
frame 56 {
gotoAndPlay('frame');
}
}
movieClip 2025 {
}
movieClip 2027 {
}
movieClip 2029 {
}
movieClip 2045 {
}
movieClip 2053 {
}
movieClip 2058 {
}
movieClip 2060 {
}
movieClip 2062 {
}
movieClip 2065 {
}
movieClip 2072 {
}
movieClip 2084 {
}
movieClip 2086 {
}
movieClip 2102 {
}
movieClip 2108 {
}
movieClip 2109 {
}
movieClip 2117 {
}
movieClip 2123 {
}
movieClip 2124 {
}
movieClip 2132 {
}
movieClip 2133 {
frame 1 {
stop();
}
}
movieClip 2219 {
}
movieClip 2223 {
}
movieClip 2224 {
}
movieClip 2226 {
frame 1 {
function changeValue(d_value) {
if (value >= 1) {
return undefined;
}
++i_val;
value_buf += d_value;
if (i_val == buf_vals) {
value_buf = 0;
i_val = 0;
}
value += d_value;
if (value >= 1) {
value = 1;
if (i_val != 0) {
sendIncreament(value_buf + 0.001);
}
_parent.onBarFilled();
} else {
if (value < 0) {
value = 0;
}
}
stripe._x = -(1 - value) * stripe._width;
stripe1._x = -(1 - value) * stripe1._width;
}
var value = 0;
var value_buf = 0;
var buf_vals = 24;
var i_val = 0;
changeValue(0);
}
}
movieClip 2248 {
}
movieClip 2249 {
frame 1 {
function onBarFilled() {
cum_btn._visible = true;
btn_manually._visible = true;
}
cum_btn._visible = false;
btn_manually._visible = false;
var i = 0;
var btn_id = 0;
while (eval('btn_' + i) != undefined) {
if (i > 1) {
(eval('btn_' + i)).enabled = false;
(eval('btn_' + i))._alpha = 50;
}
++i;
}
var btns_count = i;
onEnterFrame = function () {
if (bar.value < btn_id / (btns_count - 1)) {
bar.changeValue(0.001);
if (bar.value >= btn_id / (btns_count - 1)) {
(eval('btn_' + (btn_id + 1))).enabled = true;
(eval('btn_' + (btn_id + 1)))._alpha = 100;
}
}
};
cum_btn.postOnPress = function () {
_parent.panel._visible = false;
_parent.cumscr.gotoAndPlay(2);
_parent.btn1._y -= 20;
_parent.btn2._y -= 20;
_parent.btn3._y -= 20;
};
}
}
movieClip 2263 {
}
movieClip 2264 {
frame 1 {
onEnterFrame = function () {
gotoAndStop(random(8) + 1);
};
}
}
movieClip 2265 {
}
movieClip 2266 {
frame 1 {
stop();
}
frame 31 {
stop();
}
frame 47 {
stop();
_parent.next_btn._visible = true;
}
}
movieClip 2267 screen7 {
frame 1 {
stop();
btn1._alpha = 50;
btn1.onPress = function () {
act.hand.gotoAndStop(1);
btn1._alpha = 50;
btn2._alpha = 100;
btn3._alpha = 100;
};
btn2.onPress = function () {
act.hand.gotoAndStop(2);
btn1._alpha = 100;
btn2._alpha = 50;
btn3._alpha = 100;
};
btn3.onPress = function () {
act.hand.gotoAndStop(3);
btn1._alpha = 100;
btn2._alpha = 100;
btn3._alpha = 50;
};
next_btn._visible = false;
next_btn.onPress = function () {
if (_root.endgamevar == true) {
_root.gotoScreen('screen_demo');
} else {
_root.gotoScreen('screen_demo');
}
};
anim_manager = new AnimManager(act, panel);
anim_manager.AddAct({'btn_name': 'btn_0', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 20, 'auto_speed': 0.04, 'face_settings': 'head=1'});
anim_manager.AddAct({'btn_name': 'btn_1', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 50, 'auto_speed': 0.06, 'face_settings': 'head=2'});
anim_manager.AddAct({'btn_name': 'btn_2', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 31, 'frame_end': 90, 'auto_speed': 0.12, 'face_settings': 'head=3'});
anim_manager.AddAct({'btn_name': 'btn_3', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 31, 'frame_end': 121, 'auto_speed': 0.22, 'face_settings': 'head=4,'});
anim_manager.AddAct({'btn_name': 'btn_manually', 'type': AnimAct.TYPE_PENDULUM_MANUAL, 'frame_start': 1, 'frame_end': 121, 'mouse_movement': AnimAct.HORIZONTAL_MOVEMENT, 'reverse_mouse_control': 1, 'pixel_start': 195, 'pixel_width': 250, 'face_settings': 'head=5'});
anim_manager.AddAct({'btn_name': 'cum_btn', 'type': AnimAct.TYPE_CUM_PENDULUM, 'frame_start': 31, 'frame_end': 121, 'auto_speed': 0.2, 'auto_fade_out_speed': 0.004, 'face_settings': 'head=3', 'cum_clips': 'cum1', 'face_settings_after_cum': 'head=1'});
anim_manager.AddSwing({'clip_name': 'nipple1', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 0});
anim_manager.AddSwing({'clip_name': 'nipple2', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 0});
anim_manager.AddSwing({'clip_name': 'nipple3', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 0});
anim_manager.AddSwing({'clip_name': 'hair1', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 0});
anim_manager.AddSwing({'clip_name': 'hair2', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 0});
anim_manager.AddSwing({'clip_name': 'hair3', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 0});
anim_manager.AddSwing({'clip_name': 'hair4', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 0});
anim_manager.AddSwing({'clip_name': 'hair5', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 0});
anim_manager.AddSwing({'clip_name': 'hair6', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 0});
anim_manager.AddSwing({'clip_name': 'hair7', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 0});
anim_manager.AddSwing({'clip_name': 'hair8', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 0});
anim_manager.AddSwing({'clip_name': 'head.hair1', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 0});
anim_manager.AddSwing({'clip_name': 'head.hair2', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 0});
onEnterFrame = function () {
anim_manager.Update(_xmouse, _ymouse);
};
}
}
movieClip 2269 screen_demo {
frame 1 {
MNF_btn.onPress = function () {
if (_root.id == undefined) {
getURL(_root.owner_URL, '_blank');
} else {
getURL('http://refer.ccbill.com/cgi-bin/clicks.cgi?CA=939775-0000&PA=' + _root.id, '_blank');
}
};
}
}
movieClip 2270 {
}
frame 3 {
function setScreen(clip_name) {
if (screen != undefined) {
removeMovieClip(screen);
}
attachMovie(clip_name, 'screen', 0);
}
function gotoScreen(clip_name) {
if (trans != undefined) {
removeMovieClip(trans);
}
(attachMovie('trans_screen', 'trans', 1)).next_screen = clip_name;
}
setScreen('mainmenu');
}