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 1582 __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 1583 __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 1584 __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 1585 __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 27 {
}
movieClip 28 {
}
movieClip 31 {
}
movieClip 32 {
}
movieClip 35 {
}
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 49 {
}
movieClip 50 {
}
movieClip 52 {
}
movieClip 54 {
}
movieClip 56 {
}
movieClip 58 {
}
movieClip 61 {
}
movieClip 63 {
}
movieClip 65 {
}
movieClip 67 {
}
movieClip 69 {
}
movieClip 71 {
}
movieClip 73 {
}
movieClip 75 {
}
movieClip 77 {
}
movieClip 79 {
}
movieClip 81 {
}
movieClip 83 {
}
movieClip 85 {
}
movieClip 87 {
}
movieClip 89 {
}
movieClip 91 {
}
movieClip 93 {
}
movieClip 95 {
}
movieClip 97 {
}
movieClip 99 {
}
movieClip 101 {
}
movieClip 103 {
}
movieClip 104 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 48 {
randomFlag();
}
frame 97 {
randomFlag();
}
}
movieClip 106 {
}
movieClip 107 {
}
movieClip 109 {
}
movieClip 114 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 60 {
randomFlag();
}
frame 120 {
randomFlag();
}
}
movieClip 116 {
}
movieClip 118 {
}
movieClip 119 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 35 {
randomFlag();
}
frame 69 {
randomFlag();
}
}
movieClip 122 {
frame 1 {
stop();
}
}
movieClip 123 {
}
movieClip 125 {
}
movieClip 127 {
}
movieClip 129 {
}
movieClip 131 {
}
movieClip 133 {
}
movieClip 134 {
}
movieClip 135 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 48 {
randomFlag();
}
frame 97 {
randomFlag();
}
}
movieClip 137 {
}
movieClip 142 {
frame 1 {
stop();
}
}
movieClip 144 {
}
movieClip 146 {
}
movieClip 148 {
}
movieClip 149 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 48 {
randomFlag();
}
frame 97 {
randomFlag();
}
}
movieClip 150 {
frame 1 {
stop();
}
}
movieClip 157 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(3) + 1));
};
randomFlag();
}
frame 40 {
randomFlag();
}
frame 86 {
randomFlag();
}
frame 125 {
randomFlag();
}
}
movieClip 161 {
}
movieClip 163 {
}
movieClip 165 {
}
movieClip 167 {
}
movieClip 169 {
}
movieClip 171 {
}
movieClip 173 {
}
movieClip 175 {
}
movieClip 176 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(3) + 1));
};
randomFlag();
}
frame 60 {
randomFlag();
}
frame 120 {
randomFlag();
}
frame 160 {
randomFlag();
}
}
movieClip 178 {
}
movieClip 180 {
}
movieClip 182 {
}
movieClip 186 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(3) + 1));
};
randomFlag();
}
frame 60 {
randomFlag();
}
frame 114 {
randomFlag();
}
frame 174 {
randomFlag();
}
}
movieClip 188 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 60 {
randomFlag();
}
frame 115 {
randomFlag();
}
}
movieClip 202 {
frame 1 {
stop();
}
}
movieClip 203 {
}
movieClip 204 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(3) + 1));
};
randomFlag();
}
frame 50 {
randomFlag();
}
frame 100 {
randomFlag();
}
}
movieClip 208 {
}
movieClip 210 {
}
movieClip 216 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(3) + 1));
};
randomFlag();
}
frame 50 {
randomFlag();
}
frame 100 {
randomFlag();
}
}
movieClip 217 {
frame 1 {
stop();
}
}
movieClip 219 {
frame 1 {
stop();
}
}
movieClip 224 {
}
// unknown tag 88 length 62
movieClip 227 {
}
movieClip 228 {
}
movieClip 233 {
}
movieClip 235 {
}
movieClip 236 {
}
movieClip 240 {
}
movieClip 242 {
}
movieClip 243 {
}
movieClip 247 {
}
movieClip 249 {
}
movieClip 250 {
}
movieClip 254 {
}
movieClip 256 {
}
movieClip 257 {
}
movieClip 261 {
}
movieClip 263 {
}
movieClip 264 {
}
movieClip 273 {
}
movieClip 277 {
}
movieClip 281 {
}
movieClip 283 {
}
movieClip 284 {
}
movieClip 288 {
}
movieClip 292 {
}
movieClip 296 {
}
movieClip 298 {
}
movieClip 299 {
}
movieClip 306 {
}
movieClip 308 {
}
movieClip 309 {
}
movieClip 313 {
}
movieClip 315 {
}
movieClip 316 {
}
movieClip 320 {
}
movieClip 322 {
}
movieClip 323 {
}
movieClip 327 {
}
movieClip 329 {
}
movieClip 330 {
}
movieClip 334 {
}
movieClip 336 {
}
movieClip 337 {
}
movieClip 341 {
}
movieClip 343 {
}
movieClip 347 {
}
movieClip 349 {
}
movieClip 350 {
}
movieClip 354 {
}
movieClip 356 {
}
movieClip 357 {
}
movieClip 361 {
}
movieClip 363 {
}
movieClip 364 {
}
movieClip 368 {
}
movieClip 370 {
}
movieClip 371 {
}
movieClip 375 {
}
movieClip 377 {
}
movieClip 378 {
}
movieClip 382 {
}
movieClip 384 {
}
movieClip 385 {
}
movieClip 389 {
}
movieClip 391 {
}
movieClip 392 {
}
movieClip 396 {
}
movieClip 398 {
}
movieClip 399 {
}
movieClip 400 {
frame 1 {
_parent.sound.gotoAndStop(1);
}
frame 12 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 25 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 38 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 51 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 65 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 79 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 98 {
_parent.gotoAndStop(2);
}
frame 123 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 138 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 157 {
_parent.gotoAndStop(1);
_parent.act.gotoAndStop(2);
}
frame 172 {
_parent.sound.gotoAndStop(2);
}
frame 172 {
_parent.act.pantherlily.mc.head.mouth.play();
}
frame 180 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 184 {
_parent.act.heven.gotoAndStop(2);
}
frame 193 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 198 {
_parent.act.heven.mc.head.mouth.play();
}
frame 206 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 211 {
_parent.act.pantherlily.mc.head.mouth.play();
}
frame 220 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 225 {
_parent.act.heven.mc.head.mouth.play();
}
frame 233 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 238 {
_parent.act.pantherlily.mc.head.mouth.play();
}
frame 246 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 251 {
_parent.act.heven.mc.head.mouth.play();
}
frame 259 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 264 {
_parent.act.pantherlily.mc.head.mouth.play();
}
frame 273 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 278 {
_parent.act.heven.mc.head.mouth.play();
}
frame 286 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 291 {
_parent.act.pantherlily.mc.head.mouth.play();
}
frame 299 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 303 {
_parent.act.pantherlily.gotoAndStop(2);
}
frame 304 {
_parent.act.pantherlily.mc.head.mouth.play();
}
frame 311 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 316 {
_parent.act.pantherlily.mc.head.mouth.play();
}
frame 324 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 328 {
_parent.act.pantherlily.gotoAndStop(1);
_parent.act.heven.gotoAndStop(3);
}
frame 329 {
_parent.act.pantherlily.mc.head.mouth.play();
}
frame 337 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 342 {
_parent.act.heven.mc.head.mouth.play();
}
frame 351 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 354 {
stop();
_root.gotoScreen('screen2');
}
}
movieClip 403 {
frame 1 {
_visible = false;
}
}
movieClip 407 {
frame 2 {
stop();
}
}
movieClip 414 {
}
movieClip 417 {
}
movieClip 418 {
}
movieClip 419 screen1 {
frame 1 {
stop();
_root.endgamevar = false;
}
}
movieClip 424 {
frame 1 {
stop();
}
}
movieClip 427 {
frame 1 {
_visible = false;
}
}
movieClip 428 {
}
movieClip 430 {
}
movieClip 432 {
}
movieClip 434 {
}
movieClip 436 {
}
movieClip 438 {
}
movieClip 440 {
}
movieClip 442 {
}
movieClip 444 {
}
movieClip 446 {
}
movieClip 448 {
}
movieClip 450 {
}
movieClip 452 {
}
movieClip 458 {
}
movieClip 460 {
}
movieClip 462 {
}
movieClip 464 {
}
movieClip 466 {
}
movieClip 468 {
}
movieClip 470 {
}
movieClip 472 {
}
movieClip 474 {
}
movieClip 476 {
}
movieClip 478 {
}
movieClip 480 {
}
movieClip 482 {
}
movieClip 488 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 63 {
randomFlag();
}
frame 125 {
randomFlag();
}
}
movieClip 491 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 90 {
randomFlag();
}
frame 200 {
randomFlag();
}
}
movieClip 493 {
}
movieClip 496 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 35 {
randomFlag();
}
frame 69 {
randomFlag();
}
}
movieClip 498 {
}
movieClip 499 {
}
movieClip 501 {
}
movieClip 503 {
}
movieClip 504 {
}
movieClip 505 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 50 {
randomFlag();
}
frame 100 {
randomFlag();
}
}
movieClip 507 {
}
movieClip 509 {
}
movieClip 510 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 48 {
randomFlag();
}
frame 97 {
randomFlag();
}
}
movieClip 514 {
}
movieClip 523 {
frame 1 {
onEnterFrame = function () {
gotoAndStop(random(8) + 1);
};
}
}
movieClip 524 {
}
movieClip 525 {
frame 1 {
stop();
}
}
movieClip 529 {
}
movieClip 531 {
}
movieClip 532 {
}
movieClip 536 {
}
movieClip 538 {
}
movieClip 539 {
}
movieClip 543 {
}
movieClip 545 {
}
movieClip 546 {
}
movieClip 550 {
}
movieClip 552 {
}
movieClip 553 {
}
movieClip 563 {
}
movieClip 565 {
}
movieClip 566 {
}
movieClip 570 {
}
movieClip 572 {
}
movieClip 573 {
}
movieClip 577 {
}
movieClip 579 {
}
movieClip 580 {
}
movieClip 584 {
}
movieClip 586 {
}
movieClip 587 {
}
movieClip 595 {
}
movieClip 597 {
}
movieClip 598 {
}
movieClip 602 {
}
movieClip 604 {
}
movieClip 605 {
}
movieClip 606 {
frame 1 {
_parent.heven.bg1._visible = true;
_parent.heven.bg2._visible = false;
_parent.act.heart1._visible = false;
_parent.act.heart2._visible = false;
}
frame 3 {
_parent.heven.heven.head.mouth.play();
}
frame 10 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 21 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 26 {
_parent.heven.heven.head.mouth.play();
}
frame 33 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 45 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 66 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 67 {
_parent.heven.bg1._visible = false;
_parent.heven.bg2._visible = true;
}
frame 67 {
_parent.bg.gotoAndStop(2);
_parent.heven.heven.bg.gotoAndStop(2);
}
frame 84 {
_parent.heven.heven.head.mouth.play();
}
frame 91 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 95 {
_parent.heven.gotoAndStop(2);
}
frame 103 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 108 {
_parent.heven.heven.head.mouth.play();
}
frame 116 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 120 {
_parent.heven.gotoAndStop(1);
}
frame 129 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 150 {
stop();
next_btn.onPress = function () {
play();
};
_parent.act.heart1._visible = true;
_parent.act.heart2._visible = true;
}
frame 175 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 181 {
_parent.heven.heven.head.mouth.play();
}
frame 188 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 192 {
stop();
_root.gotoScreen('screen3');
}
}
movieClip 607 screen2 {
}
movieClip 614 {
}
movieClip 618 {
}
movieClip 620 {
}
movieClip 622 {
}
movieClip 624 {
}
movieClip 626 {
}
movieClip 628 {
}
movieClip 630 {
}
movieClip 636 {
}
movieClip 638 {
}
movieClip 640 {
}
movieClip 652 {
}
movieClip 654 {
}
movieClip 664 {
}
movieClip 670 {
}
movieClip 676 {
}
movieClip 685 {
}
movieClip 695 {
}
movieClip 701 {
}
movieClip 705 {
}
movieClip 710 {
}
movieClip 723 {
}
movieClip 725 {
}
movieClip 729 {
}
movieClip 731 {
}
movieClip 737 {
}
movieClip 739 {
}
movieClip 746 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 61 {
randomFlag();
}
frame 120 {
randomFlag();
}
}
movieClip 750 {
}
movieClip 754 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 61 {
randomFlag();
}
frame 120 {
randomFlag();
}
}
movieClip 758 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 61 {
randomFlag();
}
frame 120 {
randomFlag();
}
}
movieClip 759 {
}
movieClip 768 {
}
movieClip 779 {
}
movieClip 782 {
}
movieClip 790 {
}
movieClip 792 {
}
movieClip 798 {
}
movieClip 804 {
}
movieClip 826 {
}
movieClip 828 {
}
movieClip 833 {
}
movieClip 835 {
}
movieClip 840 {
}
movieClip 842 {
}
movieClip 852 {
}
movieClip 860 {
frame 1 {
stop();
}
frame 2 {
_parent.sperm.play();
}
frame 40 {
_parent._parent.cumscr.play();
}
frame 96 {
gotoAndPlay('frame');
}
}
movieClip 863 {
frame 1 {
stop();
}
frame 10 {
stop();
}
}
movieClip 899 {
}
movieClip 903 {
}
movieClip 904 {
}
movieClip 906 {
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 929 {
}
movieClip 930 {
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);
};
}
}
movieClip 932 {
frame 1 {
stop();
}
frame 31 {
stop();
}
frame 47 {
stop();
_parent.next_btn._visible = true;
_parent.mc_btn._visible = true;
}
}
movieClip 936 {
}
movieClip 938 {
}
movieClip 939 {
}
movieClip 943 {
}
movieClip 945 {
}
movieClip 946 {
}
movieClip 947 {
frame 1 {
_parent.panel._visible = false;
}
frame 10 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 22 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 26 {
stop();
_parent.panel._visible = true;
}
}
movieClip 949 {
}
movieClip 951 screen3 {
frame 1 {
stop();
next_btn._visible = false;
mc_btn._visible = false;
next_btn.onPress = function () {
if (_root.endgamevar == true) {
_root.gotoScreen('screen15');
} else {
_root.gotoScreen('screen4');
}
};
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': 60, 'auto_speed': 0.06, 'face_settings': 'head=2'});
anim_manager.AddAct({'btn_name': 'btn_2', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 90, 'auto_speed': 0.14, 'face_settings': 'head=3'});
anim_manager.AddAct({'btn_name': 'btn_3', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 121, 'auto_speed': 0.22, 'face_settings': 'head=4'});
anim_manager.AddAct({'btn_name': 'cum_btn', 'type': AnimAct.TYPE_CUM_PENDULUM, 'frame_start': 1, '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.AddAct({'btn_name': 'btn_manually', 'type': AnimAct.TYPE_PENDULUM_MANUAL, 'frame_start': 1, 'frame_end': 110, 'mouse_movement': AnimAct.HORIZONTAL_MOVEMENT, 'reverse_mouse_control': 0, 'pixel_start': 200, 'pixel_width': 240, 'face_settings': 'head=1'});
anim_manager.AddSwing({'clip_name': 'boob1', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'boob2', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 1, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'boob3', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 1, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'boob4', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 1, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'hair1', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'hair2', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'hair3', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'hair4', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'hair5', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'hair6', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'hair7', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'hair8', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'pant', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'pant1', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'belt', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'balls', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'ass1', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'ass2', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'hairtail', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 1});
onEnterFrame = function () {
anim_manager.Update(_xmouse, _ymouse);
};
}
}
movieClip 952 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 48 {
randomFlag();
}
frame 97 {
randomFlag();
}
}
movieClip 953 {
}
movieClip 954 {
}
movieClip 956 {
}
movieClip 958 {
}
movieClip 959 {
}
movieClip 961 {
}
movieClip 963 {
}
movieClip 964 {
}
movieClip 966 {
}
movieClip 968 {
}
movieClip 969 {
}
movieClip 971 {
}
movieClip 973 {
}
movieClip 974 {
}
movieClip 975 {
frame 3 {
_parent.act.pantherlily.mc.head.mouth.play();
}
frame 11 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 16 {
_parent.act.heven.mc.head.mouth.play();
}
frame 24 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 29 {
_parent.act.pantherlily.mc.head.mouth.play();
}
frame 37 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 42 {
_parent.act.heven.mc.head.mouth.play();
}
frame 49 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 53 {
stop();
_root.gotoScreen('screen5');
}
}
movieClip 977 screen4 {
frame 1 {
act.heven.mc.botle.gotoAndStop(2);
}
}
movieClip 981 {
frame 1 {
_visible = false;
}
}
movieClip 982 {
}
movieClip 986 {
}
movieClip 988 {
}
movieClip 990 {
}
movieClip 991 {
}
movieClip 993 {
}
movieClip 995 {
}
movieClip 997 {
}
movieClip 999 {
}
movieClip 1002 {
}
movieClip 1004 {
}
movieClip 1006 {
}
movieClip 1008 {
}
movieClip 1010 {
}
movieClip 1012 {
}
movieClip 1014 {
}
movieClip 1016 {
}
movieClip 1019 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 90 {
randomFlag();
}
frame 200 {
randomFlag();
}
}
movieClip 1024 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 60 {
randomFlag();
}
frame 120 {
randomFlag();
}
}
movieClip 1026 {
}
movieClip 1027 {
}
movieClip 1029 {
}
movieClip 1031 {
}
movieClip 1033 {
}
movieClip 1035 {
}
movieClip 1037 {
}
movieClip 1039 {
}
movieClip 1041 {
}
movieClip 1043 {
}
movieClip 1044 {
}
movieClip 1049 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 50 {
randomFlag();
}
frame 100 {
randomFlag();
}
}
movieClip 1051 {
frame 1 {
stop();
}
}
movieClip 1055 {
}
movieClip 1059 {
}
movieClip 1063 {
}
movieClip 1065 {
}
movieClip 1066 {
}
movieClip 1070 {
}
movieClip 1072 {
}
movieClip 1073 {
}
movieClip 1077 {
}
movieClip 1079 {
}
movieClip 1080 {
}
movieClip 1086 {
}
movieClip 1090 {
}
movieClip 1094 {
}
movieClip 1096 {
}
movieClip 1097 {
}
movieClip 1101 {
}
movieClip 1103 {
}
movieClip 1107 {
}
movieClip 1109 {
}
movieClip 1110 {
}
movieClip 1118 {
}
movieClip 1120 {
}
movieClip 1121 {
}
movieClip 1125 {
}
movieClip 1127 {
}
movieClip 1128 {
}
movieClip 1129 {
frame 1 {
_parent.act.heart1._visible = false;
_parent.act.heart2._visible = false;
}
frame 10 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 15 {
_parent.heven.heven.head.mouth.play();
}
frame 22 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 34 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 54 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 80 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 84 {
_parent.heven.gotoAndStop(2);
}
frame 85 {
_parent.heven.heven.head.mouth.play();
}
frame 93 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 97 {
_parent.heven.gotoAndStop(1);
}
frame 106 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 126 {
stop();
next_btn.onPress = function () {
play();
};
_parent.act.heart1._visible = true;
_parent.act.heart2._visible = true;
}
frame 151 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 156 {
_parent.heven.heven.head.mouth.play();
}
frame 163 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 167 {
stop();
_root.gotoScreen('screen6');
}
}
movieClip 1130 screen5 {
}
movieClip 1135 {
}
movieClip 1139 {
}
movieClip 1143 {
}
movieClip 1148 {
}
movieClip 1150 {
}
movieClip 1152 {
}
movieClip 1156 {
}
movieClip 1166 {
}
movieClip 1173 {
}
movieClip 1177 {
}
movieClip 1188 {
}
movieClip 1198 {
}
movieClip 1208 {
}
movieClip 1210 {
}
movieClip 1213 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 35 {
randomFlag();
}
frame 69 {
randomFlag();
}
}
movieClip 1216 {
}
movieClip 1221 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 60 {
randomFlag();
}
frame 120 {
randomFlag();
}
}
movieClip 1224 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 94 {
randomFlag();
}
frame 200 {
randomFlag();
}
}
movieClip 1230 {
}
movieClip 1240 {
}
movieClip 1242 {
}
movieClip 1245 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 25 {
randomFlag();
}
frame 49 {
randomFlag();
}
}
movieClip 1249 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 60 {
randomFlag();
}
frame 120 {
randomFlag();
}
}
movieClip 1252 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 94 {
randomFlag();
}
frame 200 {
randomFlag();
}
}
movieClip 1255 {
}
movieClip 1270 {
}
movieClip 1271 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 20 {
randomFlag();
}
frame 39 {
randomFlag();
}
}
movieClip 1275 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 60 {
randomFlag();
}
frame 120 {
randomFlag();
}
}
movieClip 1278 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 15 {
randomFlag();
}
frame 29 {
randomFlag();
}
}
movieClip 1281 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 94 {
randomFlag();
}
frame 200 {
randomFlag();
}
}
movieClip 1282 {
}
movieClip 1284 {
}
movieClip 1286 {
}
movieClip 1288 {
}
movieClip 1290 {
}
movieClip 1295 {
}
movieClip 1302 {
}
movieClip 1312 {
}
movieClip 1314 {
}
movieClip 1320 {
}
movieClip 1322 {
}
movieClip 1324 {
}
movieClip 1326 {
}
movieClip 1328 {
}
movieClip 1330 {
}
movieClip 1338 {
}
movieClip 1353 {
}
movieClip 1362 {
}
movieClip 1364 {
}
movieClip 1366 {
}
movieClip 1370 {
}
movieClip 1381 {
}
movieClip 1392 {
}
movieClip 1403 {
}
movieClip 1420 {
frame 1 {
stop();
}
frame 12 {
_parent.head.sperm1._visible = true;
}
frame 16 {
_parent.sperm2._visible = true;
}
frame 20 {
_parent.head.sperm3._visible = true;
}
frame 24 {
_parent.sperm4._visible = true;
}
frame 33 {
_parent.sperm5._visible = true;
}
frame 35 {
_parent.sperm6._visible = true;
}
frame 36 {
stop();
_parent._parent.cumscr.play();
}
}
movieClip 1431 {
}
movieClip 1439 {
}
movieClip 1449 {
}
movieClip 1459 {
}
movieClip 1466 {
}
movieClip 1473 {
}
movieClip 1475 {
}
movieClip 1485 {
}
movieClip 1491 {
}
movieClip 1493 {
}
movieClip 1559 {
}
movieClip 1560 {
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);
};
}
}
movieClip 1561 {
frame 1 {
stop();
}
frame 31 {
stop();
}
frame 47 {
stop();
_parent.bubble.play();
}
}
movieClip 1565 {
}
movieClip 1569 {
}
movieClip 1573 {
}
movieClip 1575 {
}
movieClip 1576 {
}
movieClip 1577 {
frame 1 {
stop();
}
frame 11 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 15 {
stop();
_root.gotoScreen('screen_demo');
}
}
movieClip 1578 screen6 {
frame 1 {
stop();
act.head.sperm1._visible = false;
act.sperm2._visible = false;
act.head.sperm3._visible = false;
act.sperm4._visible = false;
act.sperm5._visible = false;
act.sperm6._visible = false;
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': 60, 'auto_speed': 0.06, 'face_settings': 'head=2'});
anim_manager.AddAct({'btn_name': 'btn_2', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 90, 'auto_speed': 0.14, 'face_settings': 'head=3'});
anim_manager.AddAct({'btn_name': 'btn_3', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 121, 'auto_speed': 0.22, 'face_settings': 'head=4'});
anim_manager.AddAct({'btn_name': 'cum_btn', 'type': AnimAct.TYPE_CUM_PENDULUM, 'frame_start': 1, '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.AddAct({'btn_name': 'btn_manually', 'type': AnimAct.TYPE_PENDULUM_MANUAL, 'frame_start': 1, 'frame_end': 121, 'mouse_movement': AnimAct.VERTICAL_MOVEMENT, 'reverse_mouse_control': 1, 'pixel_start': 140, 'pixel_width': 200, 'face_settings': 'head=1'});
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': 1});
anim_manager.AddSwing({'clip_name': 'hair3', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'hair4', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'hair5', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'hair6', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'hair7', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 0});
anim_manager.AddSwing({'clip_name': 'head.hair8', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 0});
anim_manager.AddSwing({'clip_name': 'head.hair9', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 0});
anim_manager.AddSwing({'clip_name': 'head.hair10', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 0});
anim_manager.AddSwing({'clip_name': 'hair11', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 0});
anim_manager.AddSwing({'clip_name': 'hair12', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 0});
anim_manager.AddSwing({'clip_name': 'hair13', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'hair14', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'hair15', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'hair16', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'hair17', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'hair18', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'hair19', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'hair20', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 0});
anim_manager.AddSwing({'clip_name': 'hair21', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 0});
anim_manager.AddSwing({'clip_name': 'boob1', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 0});
anim_manager.AddSwing({'clip_name': 'boob2', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 0});
anim_manager.AddSwing({'clip_name': 'boob3', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 0});
anim_manager.AddSwing({'clip_name': 'boob4', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 0});
onEnterFrame = function () {
anim_manager.Update(_xmouse, _ymouse);
};
}
}
movieClip 1580 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 1581 {
}
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');
}