Combined Code
frame 1 {
stop();
owner_URL = 'http://www.gamesofdesire.com/';
onEnterFrame = function () {
if (_currentframe != 1) {
return undefined;
}
p1 = int(100 * getBytesLoaded() / getBytesTotal());
p2 = int(1000 * getBytesLoaded() / getBytesTotal()) - 10 * p1;
percent_shadow = 'Loading: ' + p1 + '.' + p2 + '%';
percent = percent_shadow;
bar.SetValue(getBytesLoaded() / getBytesTotal());
if (getBytesLoaded() == getBytesTotal()) {
gotoAndStop(3);
}
};
moregames.onPress = function () {
getURL(owner_URL, '_blank');
};
ad_btn1.onPress = function () {
getURL('http://www.redlightcenter.com/flashtour.asp?trq=13778', '_blank');
};
ad_btn2.onPress = function () {
getURL('http://refer.ccbill.com/cgi-bin/clicks.cgi?CA=920709-0000&PA=1703162', '_blank');
};
ad_btn3.onPress = function () {
getURL('http://refer.ccbill.com/cgi-bin/clicks.cgi?CA=931191-0000&PA=1701259&HTML=http://www.3dkatie.com', '_blank');
};
ad_btn4.onPress = function () {
getURL('http://www.meetandfuckgames.com', '_blank');
};
ad_btn5.onPress = function () {
getURL('http://affiliates.lifeselector.com/track/MTIxMS4zLjMuNy4wLjAuMC4wLjA', '_blank');
};
}
movieClip 4 {
}
// unknown tag 88 length 280
movieClip 10 {
}
movieClip 12 {
}
movieClip 14 {
frame 1 {
function SetValue(_value) {
hider._x = _value * volumer._width - hider._width;
}
SetValue(0);
}
}
// unknown tag 88 length 285
movieClip 44 {
}
movieClip 2680 __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(480, 640, 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 2681 __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 2682 __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 2683 __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 48 trans_screen {
frame 1 {
var next_screen;
}
frame 10 {
_parent.setScreen(next_screen);
}
frame 20 {
removeMovieClip(this);
}
}
movieClip 59 mainmenu {
frame 1 {
stop();
play_btn.onPress = function () {
_root.gotoScreen('screen1');
};
GoD_btn.onPress = function () {
getURL(_root.owner_URL, '_blank');
};
}
}
movieClip 63 {
}
movieClip 65 {
}
movieClip 67 {
}
movieClip 69 {
}
movieClip 70 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 45 {
randomFlag();
}
frame 90 {
randomFlag();
}
}
movieClip 72 {
}
movieClip 74 {
}
movieClip 76 {
}
movieClip 78 {
}
movieClip 80 {
}
movieClip 83 {
}
movieClip 85 {
}
movieClip 86 {
}
movieClip 87 {
frame 1 {
stop();
}
frame 2 {
_parent.hand.gotoAndPlay(2);
}
frame 7 {
stop();
_root.gotoScreen('screen2');
}
}
movieClip 89 {
}
movieClip 91 {
}
movieClip 93 {
}
movieClip 95 {
}
movieClip 97 {
}
movieClip 99 {
}
movieClip 105 {
}
movieClip 107 {
}
movieClip 111 {
}
movieClip 113 {
}
movieClip 124 {
}
movieClip 126 {
}
movieClip 128 {
}
movieClip 131 {
}
movieClip 132 {
}
movieClip 133 {
}
movieClip 138 {
frame 25 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 31 {
stop();
_parent.bandit.gotoAndPlay(2);
}
}
movieClip 140 {
}
movieClip 142 {
}
movieClip 144 {
}
movieClip 145 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 45 {
randomFlag();
}
frame 90 {
randomFlag();
}
}
movieClip 147 {
frame 1 {
stop();
}
frame 7 {
stop();
}
}
movieClip 148 screen1 {
frame 1 {
_root.endgamevar = false;
}
}
movieClip 153 {
}
movieClip 155 {
}
movieClip 157 {
}
movieClip 158 {
}
movieClip 160 {
}
movieClip 162 {
}
movieClip 164 {
}
movieClip 166 {
}
movieClip 168 {
}
movieClip 170 {
}
movieClip 172 {
}
movieClip 174 {
}
movieClip 176 {
}
movieClip 178 {
}
movieClip 181 {
}
movieClip 184 {
}
movieClip 186 {
}
movieClip 188 {
}
movieClip 190 {
}
movieClip 192 {
}
movieClip 194 {
}
movieClip 196 {
}
movieClip 197 {
}
movieClip 199 {
}
movieClip 201 {
}
movieClip 202 {
}
movieClip 203 {
frame 1 {
stop();
}
frame 2 {
_parent.info._visible = false;
_parent.meter._visible = false;
}
frame 15 {
stop();
_parent.bubbles.gotoAndPlay(2);
}
}
movieClip 207 {
frame 7 {
stop();
}
}
movieClip 210 {
frame 14 {
stop();
_parent._parent.guy.gotoAndPlay(2);
}
}
movieClip 211 {
frame 1 {
stop();
}
}
movieClip 213 {
}
movieClip 215 {
}
movieClip 218 {
}
movieClip 220 {
}
movieClip 222 {
}
movieClip 224 {
}
movieClip 226 {
}
movieClip 228 {
}
movieClip 230 {
}
movieClip 232 {
}
movieClip 235 {
}
movieClip 240 {
}
movieClip 241 {
}
movieClip 243 {
}
movieClip 245 {
}
movieClip 322 {
}
movieClip 323 {
frame 1 {
_parent.head.gotoAndStop(1);
}
frame 1 {
delete onEnterFrame;
}
frame 1 {
stop();
_parent.hand3._visible = false;
_parent.hand2._visible = true;
_parent.hand1._visible = true;
}
frame 2 {
_parent.head.gotoAndStop(2);
}
frame 2 {
onEnterFrame = function () {
if (_parent._parent.myvar3 <= 59.5) {
_parent._parent.meter.bar._x -= 0.5;
_parent._parent.myvar3 += 0.5;
}
};
}
frame 2 {
_parent.hand3._visible = true;
_parent.hand2._visible = false;
_parent.hand1._visible = false;
}
}
movieClip 325 {
}
movieClip 327 {
}
movieClip 329 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(3) + 1));
};
randomFlag();
}
frame 45 {
randomFlag();
}
frame 89 {
randomFlag();
}
frame 133 {
randomFlag();
}
}
movieClip 331 {
}
movieClip 333 {
}
movieClip 335 {
}
movieClip 337 {
}
movieClip 339 {
}
movieClip 341 {
}
movieClip 389 {
}
movieClip 390 {
frame 1 {
_parent.head.gotoAndStop(1);
}
frame 1 {
stop();
delete onEnterFrame;
}
frame 1 {
stop();
_parent.hand3._visible = false;
_parent.hand2._visible = true;
_parent.hand1._visible = true;
}
frame 2 {
_parent.head.gotoAndStop(2);
}
frame 2 {
onEnterFrame = function () {
if (_parent._parent.myvar5 <= 59.5) {
_parent._parent.meter.bar._x -= 0.5;
_parent._parent.myvar5 += 0.5;
}
};
}
frame 2 {
_parent.hand3._visible = true;
_parent.hand2._visible = false;
_parent.hand1._visible = false;
}
}
movieClip 430 {
}
movieClip 431 {
frame 1 {
_parent.head.gotoAndStop(1);
}
frame 1 {
delete onEnterFrame;
}
frame 1 {
stop();
_parent.hand4._visible = false;
_parent.hand2._visible = true;
_parent.hand1._visible = true;
}
frame 2 {
_parent.head.gotoAndStop(2);
}
frame 2 {
onEnterFrame = function () {
if (_parent._parent.myvar4 <= 59.5) {
_parent._parent.meter.bar._x -= 0.5;
_parent._parent.myvar4 += 0.5;
}
};
}
frame 2 {
stop();
_parent.hand4._visible = true;
_parent.hand2._visible = false;
_parent.hand1._visible = false;
}
}
movieClip 434 {
}
movieClip 436 {
}
movieClip 437 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(3) + 1));
};
randomFlag();
}
frame 45 {
randomFlag();
}
frame 89 {
randomFlag();
}
frame 133 {
randomFlag();
}
}
movieClip 439 {
}
movieClip 441 {
}
movieClip 448 {
}
movieClip 460 {
}
movieClip 495 {
}
movieClip 496 {
frame 1 {
_parent.head.gotoAndStop(1);
}
frame 1 {
stop();
delete onEnterFrame;
}
frame 2 {
_parent.head.gotoAndStop(2);
}
frame 2 {
onEnterFrame = function () {
if (_parent._parent.myvar1 <= 59.5) {
_parent._parent.meter.bar._x -= 0.5;
_parent._parent.myvar1 += 0.5;
}
};
}
}
movieClip 508 {
}
movieClip 510 {
}
movieClip 512 {
}
movieClip 522 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(3) + 1));
};
randomFlag();
}
frame 25 {
randomFlag();
}
frame 49 {
randomFlag();
}
frame 73 {
randomFlag();
}
}
movieClip 568 {
}
movieClip 569 {
frame 1 {
_parent.head.gotoAndStop(1);
}
frame 1 {
stop();
delete onEnterFrame;
}
frame 2 {
_parent.head.gotoAndStop(2);
}
frame 2 {
onEnterFrame = function () {
if (_parent._parent.myvar2 <= 59.5) {
_parent._parent.meter.bar._x -= 0.5;
_parent._parent.myvar2 += 0.5;
}
};
}
}
movieClip 571 {
frame 1 {
stop();
}
}
movieClip 579 {
}
movieClip 592 {
}
movieClip 594 {
}
movieClip 599 {
}
movieClip 601 {
}
movieClip 603 {
}
movieClip 605 {
}
movieClip 607 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 35 {
randomFlag();
}
frame 69 {
randomFlag();
}
}
movieClip 609 {
}
movieClip 614 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 60 {
randomFlag();
}
frame 120 {
randomFlag();
}
}
movieClip 617 {
}
movieClip 618 {
frame 2 {
stop();
}
}
movieClip 622 {
}
movieClip 635 {
}
movieClip 637 {
}
movieClip 639 {
}
movieClip 641 {
}
movieClip 643 {
}
movieClip 773 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(3) + 1));
};
randomFlag();
}
frame 50 {
randomFlag();
}
frame 99 {
randomFlag();
}
frame 122 {
randomFlag();
}
}
movieClip 776 {
}
movieClip 778 {
frame 1 {
bar._x = 300;
onEnterFrame = function () {
if (bar._x == 0) {
_parent.bank.gotoAndStop(2);
_visible = false;
}
};
}
}
movieClip 781 {
frame 1 {
stop();
}
frame 10 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 16 {
stop();
_root.gotoScreen('screen3');
}
}
movieClip 788 {
}
movieClip 789 {
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();
_parent.act.btn1._visible = true;
_parent.act.btn2._visible = true;
_parent.act.btn3._visible = true;
_parent.act.btn4._visible = true;
_parent.act.btn5._visible = true;
_parent.info._visible = true;
_parent.meter._visible = true;
}
}
movieClip 791 {
}
movieClip 793 screen2 {
frame 1 {
myvar1 = 0;
myvar2 = 0;
myvar3 = 0;
myvar4 = 0;
myvar5 = 0;
info._visible = false;
meter._visible = false;
act.btn1._visible = false;
act.btn2._visible = false;
act.btn3._visible = false;
act.btn4._visible = false;
act.btn5._visible = false;
act.btn1.onPress = function () {
act.mcMask.gotoAndStop(2);
act.hand1._visible = false;
act.boob1.gotoAndStop(2);
act.mc1._visible = false;
};
act.btn1.onRelease = function () {
act.mcMask.gotoAndStop(1);
act.hand1._visible = true;
act.boob1.gotoAndStop(1);
act.mc1._visible = true;
};
act.btn1.onReleaseOutside = function () {
act.mcMask.gotoAndStop(1);
act.hand1._visible = true;
act.boob1.gotoAndStop(1);
act.mc1._visible = true;
};
act.btn2.onPress = function () {
act.pussy.gotoAndStop(2);
};
act.btn2.onRelease = function () {
act.pussy.gotoAndStop(1);
};
act.btn2.onReleaseOutside = function () {
act.pussy.gotoAndStop(1);
};
act.btn3.onPress = function () {
act.mcMask.gotoAndStop(2);
act.hand1._visible = false;
act.boob2.gotoAndStop(2);
act.mc1._visible = false;
};
act.btn3.onRelease = function () {
act.mcMask.gotoAndStop(1);
act.hand1._visible = true;
act.boob2.gotoAndStop(1);
act.mc1._visible = true;
};
act.btn3.onReleaseOutside = function () {
act.mcMask.gotoAndStop(1);
act.hand1._visible = true;
act.boob2.gotoAndStop(1);
act.mc1._visible = true;
};
act.btn4.onPress = function () {
act.body1.gotoAndStop(2);
};
act.btn4.onRelease = function () {
act.body1.gotoAndStop(1);
};
act.btn4.onReleaseOutside = function () {
act.body1.gotoAndStop(1);
};
act.btn5.onPress = function () {
act.body2.gotoAndStop(2);
};
act.btn5.onRelease = function () {
act.body2.gotoAndStop(1);
};
act.btn5.onReleaseOutside = function () {
act.body2.gotoAndStop(1);
};
}
}
movieClip 803 {
frame 1 {
onEnterFrame = function () {
gotoAndStop(random(8) + 1);
};
}
}
movieClip 804 {
}
movieClip 807 {
}
movieClip 809 {
}
movieClip 810 {
}
movieClip 812 {
}
movieClip 814 {
}
movieClip 816 {
}
movieClip 818 {
}
movieClip 820 {
}
movieClip 822 {
}
movieClip 824 {
}
movieClip 826 {
}
movieClip 828 {
}
movieClip 831 {
}
movieClip 834 {
}
movieClip 836 {
}
movieClip 837 {
}
movieClip 839 {
}
movieClip 841 {
}
movieClip 843 {
}
movieClip 844 {
}
movieClip 846 {
}
movieClip 848 {
}
movieClip 850 {
}
movieClip 851 {
}
movieClip 853 {
}
movieClip 854 {
}
movieClip 855 {
}
movieClip 860 {
frame 12 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 30 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 36 {
stop();
_root.gotoScreen('screen4');
}
}
movieClip 862 screen3 {
}
movieClip 866 {
}
movieClip 868 {
}
movieClip 870 {
}
movieClip 871 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 40 {
randomFlag();
}
frame 80 {
randomFlag();
}
}
movieClip 873 {
}
movieClip 875 {
}
movieClip 877 {
}
movieClip 879 {
}
movieClip 881 {
}
movieClip 883 {
}
movieClip 885 {
}
movieClip 887 {
}
movieClip 889 {
}
movieClip 891 {
}
movieClip 894 {
}
movieClip 896 {
}
movieClip 897 {
}
movieClip 899 {
}
movieClip 901 {
}
movieClip 903 {
}
movieClip 905 {
}
movieClip 907 {
}
movieClip 909 {
}
movieClip 910 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 40 {
randomFlag();
}
frame 80 {
randomFlag();
}
}
movieClip 915 {
}
movieClip 922 {
}
movieClip 924 {
}
movieClip 926 {
}
movieClip 928 {
}
movieClip 930 {
}
movieClip 931 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 40 {
randomFlag();
}
frame 80 {
randomFlag();
}
}
movieClip 932 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 40 {
randomFlag();
}
frame 80 {
randomFlag();
}
}
movieClip 934 {
frame 11 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 16 {
stop();
_root.gotoScreen('screen5');
}
}
movieClip 936 screen4 {
}
movieClip 939 {
}
movieClip 941 {
}
movieClip 943 {
}
movieClip 945 {
}
movieClip 947 {
}
movieClip 949 {
}
movieClip 951 {
}
movieClip 953 {
}
movieClip 956 {
}
movieClip 958 {
}
movieClip 960 {
}
movieClip 962 {
}
movieClip 964 {
}
movieClip 966 {
}
movieClip 968 {
}
movieClip 970 {
}
movieClip 982 {
}
movieClip 984 {
}
movieClip 986 {
}
movieClip 988 {
}
movieClip 990 {
}
movieClip 992 {
}
movieClip 994 {
}
movieClip 995 {
}
movieClip 1007 {
}
movieClip 1008 {
}
movieClip 1019 {
frame 53 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 67 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 81 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 95 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 109 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 114 {
stop();
_root.gotoScreen('screen6');
}
}
movieClip 1025 {
frame 46 {
stop();
}
}
movieClip 1027 screen5 {
frame 1 {
stop();
}
}
movieClip 1032 {
}
movieClip 1034 {
}
movieClip 1036 {
}
movieClip 1039 {
}
movieClip 1041 {
}
movieClip 1050 {
}
movieClip 1052 {
}
movieClip 1055 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 100 {
randomFlag();
}
frame 200 {
randomFlag();
}
}
movieClip 1059 {
}
movieClip 1061 {
}
movieClip 1062 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 60 {
randomFlag();
}
frame 120 {
randomFlag();
}
}
movieClip 1065 {
}
movieClip 1068 {
}
movieClip 1072 {
}
movieClip 1073 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 60 {
randomFlag();
}
frame 120 {
randomFlag();
}
}
movieClip 1075 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 30 {
randomFlag();
}
frame 59 {
randomFlag();
}
}
movieClip 1079 {
}
movieClip 1080 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 60 {
randomFlag();
}
frame 120 {
randomFlag();
}
}
movieClip 1082 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 24 {
randomFlag();
}
frame 48 {
randomFlag();
}
}
movieClip 1084 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 20 {
randomFlag();
}
frame 39 {
randomFlag();
}
}
movieClip 1085 {
frame 1 {
stop();
}
}
movieClip 1087 {
}
movieClip 1089 {
}
movieClip 1091 {
}
movieClip 1093 {
}
movieClip 1095 {
frame 1 {
stop();
}
}
movieClip 1102 {
}
movieClip 1104 {
}
movieClip 1107 {
}
movieClip 1109 {
}
movieClip 1114 {
}
movieClip 1117 {
}
movieClip 1118 {
}
movieClip 1126 {
}
movieClip 1128 {
}
movieClip 1130 {
}
movieClip 1132 {
}
movieClip 1134 {
}
movieClip 1141 {
}
movieClip 1143 {
}
movieClip 1145 {
}
movieClip 1147 {
}
movieClip 1150 {
}
movieClip 1152 {
}
movieClip 1158 {
}
movieClip 1160 {
}
movieClip 1163 {
}
movieClip 1168 {
}
movieClip 1171 {
}
movieClip 1175 {
}
movieClip 1177 {
}
movieClip 1182 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 60 {
randomFlag();
}
frame 120 {
randomFlag();
}
}
movieClip 1184 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 35 {
randomFlag();
}
frame 69 {
randomFlag();
}
}
movieClip 1194 {
}
movieClip 1199 {
}
movieClip 1201 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 100 {
randomFlag();
}
frame 200 {
randomFlag();
}
}
movieClip 1205 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 60 {
randomFlag();
}
frame 120 {
randomFlag();
}
}
movieClip 1207 {
}
movieClip 1212 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 60 {
randomFlag();
}
frame 120 {
randomFlag();
}
}
movieClip 1214 {
}
movieClip 1216 {
}
movieClip 1217 {
frame 1 {
stop();
}
}
movieClip 1223 {
}
movieClip 1230 {
}
movieClip 1233 {
}
movieClip 1250 {
}
movieClip 1253 {
}
movieClip 1255 {
}
movieClip 1263 {
}
movieClip 1274 {
}
movieClip 1321 {
}
movieClip 1322 {
frame 1 {
stop();
_parent.boob1._visible = true;
_parent.mymask.gotoAndStop(1);
_parent.hand11._visible = true;
_parent.hand12._visible = true;
_parent.hand13._visible = true;
_parent.hand14._visible = true;
}
frame 2 {
_parent.boob1._visible = false;
_parent.mymask.gotoAndStop(2);
_parent.hand11._visible = false;
_parent.hand12._visible = false;
_parent.hand13._visible = false;
_parent.hand14._visible = false;
}
}
movieClip 1324 {
}
movieClip 1327 {
}
movieClip 1329 {
}
movieClip 1334 {
}
movieClip 1336 {
}
movieClip 1339 {
}
movieClip 1341 {
}
movieClip 1343 {
}
movieClip 1346 {
}
movieClip 1348 {
}
movieClip 1350 {
}
movieClip 1353 {
}
movieClip 1356 {
}
movieClip 1358 {
}
movieClip 1360 {
}
movieClip 1379 {
}
movieClip 1396 {
}
movieClip 1400 {
}
movieClip 1401 {
}
movieClip 1403 {
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 1422 {
}
movieClip 1424 {
frame 1 {
function onBarFilled() {
btn_manually1._visible = true;
btn_manually2._visible = true;
_parent.next_btn._visible = true;
bar._visible = false;
}
btn_manually1._visible = false;
btn_manually2._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;
}
}
if (myvar == undefined) {
if (btn_4._alpha == 100) {
panel2 = true;
myvar = true;
}
}
};
}
}
movieClip 1427 screen6 {
frame 1 {
stop();
next_btn._visible = false;
next_btn.onPress = function () {
if (_root.endgamevar == true) {
_root.gotoScreen('screen12');
} else {
_root.gotoScreen('screen7');
}
};
act.boob.onPress = function () {
act.boob.gotoAndStop(2);
};
act.boob.onRelease = function () {
act.boob.gotoAndStop(1);
};
act.boob.onReleaseOutside = function () {
act.boob.gotoAndStop(1);
};
anim_manager = new AnimManager(act, panel);
anim_manager.AddAct({'btn_name': 'btn_0', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 55, 'frame_end': 65, 'auto_speed': 0.04, 'face_settings': 'head1=1,head2=1'});
anim_manager.AddAct({'btn_name': 'btn_1', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 30, 'frame_end': 90, 'auto_speed': 0.06, 'face_settings': 'head1=2,head2=2'});
anim_manager.AddAct({'btn_name': 'btn_2', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 10, 'frame_end': 111, 'auto_speed': 0.12, 'face_settings': 'head1=3,head2=3'});
anim_manager.AddAct({'btn_name': 'btn_3', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 121, 'auto_speed': 0.22, 'face_settings': 'head1=4,head2=4'});
anim_manager.AddAct({'btn_name': 'btn_4', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 151, 'frame_end': 211, 'auto_speed': 0.06, 'face_settings': 'head1=2,head2=2'});
anim_manager.AddAct({'btn_name': 'btn_5', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 132, 'frame_end': 232, 'auto_speed': 0.12, 'face_settings': 'head1=3,head2=3'});
anim_manager.AddAct({'btn_name': 'btn_6', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 122, 'frame_end': 242, 'auto_speed': 0.22, 'face_settings': 'head1=4,head2=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': 'head1=3,head2=3', 'cum_clips': 'cum1', 'face_settings_after_cum': 'head1=1,head2=1'});
anim_manager.AddAct({'btn_name': 'btn_manually1', 'type': AnimAct.TYPE_PENDULUM_MANUAL, 'frame_start': 1, 'frame_end': 121, 'mouse_movement': AnimAct.VERTICAL_MOVEMENT, 'reverse_mouse_control': 0, 'pixel_start': 140, 'pixel_width': 200, 'face_settings': 'head1=2,head2=2'});
anim_manager.AddAct({'btn_name': 'btn_manually2', 'type': AnimAct.TYPE_PENDULUM_MANUAL, 'frame_start': 122, 'frame_end': 242, 'mouse_movement': AnimAct.VERTICAL_MOVEMENT, 'reverse_mouse_control': 0, 'pixel_start': 140, 'pixel_width': 200, 'face_settings': 'head1=2,head2=2'});
anim_manager.AddSwing({'clip_name': 'ass1', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'ass2', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 1, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'ass3', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 1, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'belt', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 1, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'boob1', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 1, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'boob2', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'head1.hair1', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'head1.hair2', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 1, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'head1.hair4.hair3', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'head1.hair4', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 1, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'hair1', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 1, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'hair2', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 1, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'head2.hair1', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 1, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'balls', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 1, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'hair', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 1, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'head2.glass', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 1, 'reverse': 1});
onEnterFrame = function () {
anim_manager.Update(_xmouse, _ymouse);
};
}
}
movieClip 1430 {
}
movieClip 1432 {
}
movieClip 1436 {
}
movieClip 1438 {
}
movieClip 1440 {
}
movieClip 1442 {
}
movieClip 1444 {
}
movieClip 1446 {
}
movieClip 1448 {
}
movieClip 1451 {
}
movieClip 1455 {
}
movieClip 1461 {
}
movieClip 1463 {
}
movieClip 1465 {
}
movieClip 1467 {
}
movieClip 1469 {
}
movieClip 1471 {
}
movieClip 1488 {
}
movieClip 1528 {
}
movieClip 1529 {
}
movieClip 1541 {
}
movieClip 1545 {
}
movieClip 1547 {
}
movieClip 1550 {
}
movieClip 1552 {
}
movieClip 1556 {
}
movieClip 1558 {
}
movieClip 1560 {
}
movieClip 1562 {
}
movieClip 1564 {
}
movieClip 1569 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 60 {
randomFlag();
}
frame 120 {
randomFlag();
}
}
movieClip 1571 {
}
movieClip 1573 {
}
movieClip 1575 {
}
movieClip 1579 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 60 {
randomFlag();
}
frame 120 {
randomFlag();
}
}
movieClip 1583 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 60 {
randomFlag();
}
frame 120 {
randomFlag();
}
}
movieClip 1584 {
}
movieClip 1585 {
frame 1 {
stop();
}
}
movieClip 1587 {
}
movieClip 1589 {
}
movieClip 1591 {
}
movieClip 1593 {
}
movieClip 1595 {
}
movieClip 1619 {
frame 1 {
stop();
}
frame 11 {
_parent.head.mccum1._visible = true;
}
frame 19 {
_parent.head.mccum2._visible = true;
}
frame 27 {
_parent.head.mccum3._visible = true;
}
frame 35 {
_parent._parent.cumscr.gotoAndPlay('frame');
_parent._parent.next_btn._visible = true;
}
frame 61 {
gotoAndPlay('frame');
}
}
movieClip 1635 {
}
movieClip 1638 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 100 {
randomFlag();
}
frame 200 {
randomFlag();
}
}
movieClip 1648 {
}
movieClip 1649 {
}
movieClip 1651 {
}
movieClip 1653 {
}
movieClip 1655 {
}
movieClip 1657 {
}
movieClip 1659 {
}
movieClip 1661 {
}
movieClip 1663 {
}
movieClip 1665 {
}
movieClip 1667 {
}
movieClip 1669 {
}
movieClip 1672 {
}
movieClip 1674 {
}
movieClip 1676 {
}
movieClip 1678 {
}
movieClip 1680 {
}
movieClip 1682 {
}
movieClip 1684 {
}
movieClip 1686 {
}
movieClip 1688 {
}
movieClip 1690 {
}
movieClip 1692 {
}
movieClip 1694 {
}
movieClip 1696 {
}
movieClip 1698 {
}
movieClip 1778 {
}
movieClip 1784 {
frame 1 {
function onBarFilled() {
btn_manually1._visible = true;
btn_manually2._visible = true;
cum_btn._visible = true;
}
btn_manually1._visible = false;
btn_manually2._visible = false;
cum_btn._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;
}
}
if (myvar == undefined) {
if (btn_4._alpha == 100) {
panel2 = true;
myvar = true;
}
}
};
cum_btn.postOnPress = function () {
_parent.panel._visible = false;
_parent.cumscr.gotoAndPlay(2);
};
}
}
movieClip 1788 {
}
movieClip 1789 {
frame 1 {
onEnterFrame = function () {
gotoAndStop(random(8) + 1);
};
}
}
movieClip 1790 {
}
movieClip 1791 {
frame 1 {
stop();
}
frame 31 {
stop();
}
frame 47 {
stop();
_parent.next_btn._visible = true;
}
}
movieClip 1793 screen7 {
frame 1 {
stop();
act.head.mccum1._visible = false;
act.head.mccum2._visible = false;
act.head.mccum3._visible = false;
act.btnhand2._visible = false;
act.hand21._visible = false;
act.hand22._visible = false;
act.hand23._visible = false;
act.hand24._visible = false;
act.hand25._visible = false;
act.ass.hand26._visible = false;
act.btnhand1.onPress = function () {
act.btnhand1._visible = false;
act.hand11._visible = false;
act.hand12._visible = false;
act.hand13._visible = false;
act.hand14._visible = false;
act.hand15._visible = false;
act.hand16._visible = false;
act.hand17._visible = false;
act.btnhand2._visible = true;
act.hand21._visible = true;
act.hand22._visible = true;
act.hand23._visible = true;
act.hand24._visible = true;
act.hand25._visible = true;
act.ass.hand26._visible = true;
};
act.btnhand2.onPress = function () {
act.btnhand1._visible = true;
act.hand11._visible = true;
act.hand12._visible = true;
act.hand13._visible = true;
act.hand14._visible = true;
act.hand15._visible = true;
act.hand16._visible = true;
act.hand17._visible = true;
act.btnhand2._visible = false;
act.hand21._visible = false;
act.hand22._visible = false;
act.hand23._visible = false;
act.hand24._visible = false;
act.hand25._visible = false;
act.ass.hand26._visible = false;
};
next_btn._visible = false;
next_btn.onPress = function () {
if (_root.endgamevar == true) {
_root.gotoScreen('screen12');
} else {
_root.gotoScreen('screen8');
}
};
anim_manager = new AnimManager(act, panel);
anim_manager.AddAct({'btn_name': 'btn_0', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 122, 'frame_end': 142, 'auto_speed': 0.04, 'face_settings': 'head=1'});
anim_manager.AddAct({'btn_name': 'btn_1', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 122, 'frame_end': 182, 'auto_speed': 0.06, 'face_settings': 'head=2'});
anim_manager.AddAct({'btn_name': 'btn_2', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 122, 'frame_end': 242, 'auto_speed': 0.12, 'face_settings': 'head=3'});
anim_manager.AddAct({'btn_name': 'btn_3', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 122, 'frame_end': 242, 'auto_speed': 0.22, 'face_settings': 'head=4'});
anim_manager.AddAct({'btn_name': 'btn_4', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 60, 'auto_speed': 0.06, 'face_settings': 'head=2'});
anim_manager.AddAct({'btn_name': 'btn_5', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 121, 'auto_speed': 0.12, 'face_settings': 'head=3'});
anim_manager.AddAct({'btn_name': 'btn_6', '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_manually1', 'type': AnimAct.TYPE_PENDULUM_MANUAL, 'frame_start': 122, 'frame_end': 242, 'mouse_movement': AnimAct.HORIZONTAL_MOVEMENT, 'reverse_mouse_control': 1, 'pixel_start': 200, 'pixel_width': 240, 'face_settings': 'head=1'});
anim_manager.AddAct({'btn_name': 'btn_manually2', 'type': AnimAct.TYPE_PENDULUM_MANUAL, 'frame_start': 1, 'frame_end': 121, 'mouse_movement': AnimAct.HORIZONTAL_MOVEMENT, 'reverse_mouse_control': 1, 'pixel_start': 200, 'pixel_width': 240, 'face_settings': 'head=1'});
anim_manager.AddSwing({'clip_name': 'ass', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 0});
anim_manager.AddSwing({'clip_name': 'boobs.boob1', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'boobs.boob2', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 1, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'belt', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 1, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'belt.belt', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 1, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'hair.hair1', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 0});
anim_manager.AddSwing({'clip_name': 'hair.hair2', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 1, 'reverse': 0});
anim_manager.AddSwing({'clip_name': 'hair.hair3', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 0});
anim_manager.AddSwing({'clip_name': 'hair1.hair1', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 1, 'reverse': 0});
anim_manager.AddSwing({'clip_name': 'hair1', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 0});
anim_manager.AddSwing({'clip_name': 'hair2', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 1, 'reverse': 0});
anim_manager.AddSwing({'clip_name': 'hair3', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 0});
onEnterFrame = function () {
anim_manager.Update(_xmouse, _ymouse);
};
}
}
movieClip 1800 {
}
movieClip 1802 {
}
movieClip 1808 {
}
movieClip 1810 {
}
movieClip 1812 {
}
movieClip 1814 {
}
movieClip 1828 {
}
movieClip 1831 {
}
movieClip 1838 {
}
movieClip 1839 {
}
movieClip 1841 {
}
movieClip 1854 {
}
movieClip 1870 {
}
movieClip 1872 {
}
movieClip 1877 {
}
movieClip 1879 {
}
movieClip 1884 {
}
movieClip 1886 {
}
movieClip 1889 {
}
movieClip 1891 {
frame 1 {
stop();
}
}
movieClip 1904 {
}
movieClip 1906 {
}
movieClip 1908 {
}
movieClip 1910 {
}
movieClip 1920 {
}
movieClip 1931 {
}
movieClip 1933 {
}
movieClip 1935 {
}
movieClip 1937 {
}
movieClip 1948 {
}
movieClip 1950 {
}
movieClip 1952 {
}
movieClip 1954 {
}
movieClip 1964 {
}
movieClip 1966 {
}
movieClip 1968 {
}
movieClip 1970 {
}
movieClip 1980 {
}
movieClip 1985 {
}
movieClip 1987 {
}
movieClip 1989 {
}
movieClip 1991 {
}
movieClip 1993 {
}
movieClip 1995 {
}
movieClip 1997 {
}
movieClip 1999 {
}
movieClip 2017 {
}
movieClip 2019 {
}
movieClip 2021 {
}
movieClip 2024 {
}
movieClip 2027 {
}
movieClip 2029 {
}
movieClip 2031 {
}
movieClip 2033 {
}
movieClip 2035 {
}
movieClip 2037 {
}
movieClip 2045 {
}
movieClip 2047 {
}
movieClip 2074 {
}
movieClip 2075 {
frame 1 {
function onBarFilled() {
btn_manually._visible = true;
_parent.next_btn._visible = true;
bar._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;
}
}
};
}
}
movieClip 2076 screen8 {
frame 1 {
stop();
next_btn._visible = false;
next_btn.onPress = function () {
if (_root.endgamevar == true) {
_root.gotoScreen('screen12');
} else {
_root.gotoScreen('screen9');
}
};
anim_manager = new AnimManager(act, panel);
anim_manager.AddAct({'btn_name': 'btn_0', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 50, 'frame_end': 70, 'auto_speed': 0.04, 'face_settings': 'head=1'});
anim_manager.AddAct({'btn_name': 'btn_1', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 30, 'frame_end': 90, 'auto_speed': 0.06, 'face_settings': 'head=2'});
anim_manager.AddAct({'btn_name': 'btn_2', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 121, 'auto_speed': 0.12, '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': 'btn_manually', 'type': AnimAct.TYPE_PENDULUM_MANUAL, 'frame_start': 1, 'frame_end': 121, 'mouse_movement': AnimAct.HORIZONTAL_MOVEMENT, 'reverse_mouse_control': 0, 'pixel_start': 240, 'pixel_width': 200, 'face_settings': 'head=5'});
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.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': 'head.hair1', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'head.hair2', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 1, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'hair', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'hair1', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 1, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'ass1', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'ass2', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 1, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'ass4', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'ass3', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 1, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'belt1', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'belt2', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 1});
onEnterFrame = function () {
anim_manager.Update(_xmouse, _ymouse);
};
}
}
movieClip 2080 {
}
movieClip 2082 {
}
movieClip 2085 {
}
movieClip 2086 {
}
movieClip 2088 {
}
movieClip 2089 {
frame 1 {
stop();
}
frame 2 {
_parent.panel._visible = false;
}
frame 15 {
stop();
_parent.bubbles.gotoAndPlay(2);
}
}
movieClip 2091 {
}
movieClip 2094 {
}
movieClip 2102 {
}
movieClip 2104 {
}
movieClip 2107 {
}
movieClip 2109 {
}
movieClip 2113 {
}
movieClip 2115 {
}
movieClip 2117 {
}
movieClip 2119 {
}
movieClip 2121 {
}
movieClip 2123 {
}
movieClip 2125 {
}
movieClip 2127 {
}
movieClip 2130 {
}
movieClip 2137 {
}
movieClip 2149 {
}
movieClip 2152 {
}
movieClip 2155 {
}
movieClip 2157 {
}
movieClip 2159 {
}
movieClip 2164 {
}
movieClip 2166 {
}
movieClip 2169 {
}
movieClip 2172 {
}
movieClip 2175 {
}
movieClip 2177 {
}
movieClip 2179 {
}
movieClip 2186 {
}
movieClip 2193 {
}
movieClip 2204 {
}
movieClip 2211 {
}
movieClip 2215 {
}
movieClip 2222 {
}
movieClip 2225 {
}
movieClip 2230 {
}
movieClip 2232 {
}
movieClip 2237 {
}
movieClip 2239 {
}
movieClip 2241 {
}
movieClip 2242 {
frame 1 {
stop();
}
}
movieClip 2274 {
}
movieClip 2275 {
}
movieClip 2280 {
}
movieClip 2281 {
}
movieClip 2283 {
}
movieClip 2285 {
}
movieClip 2289 {
}
movieClip 2291 {
}
movieClip 2294 {
}
movieClip 2298 {
}
movieClip 2300 {
}
movieClip 2302 {
}
movieClip 2309 {
}
movieClip 2332 {
frame 1 {
stop();
}
frame 12 {
_parent.sperm4._visible = true;
}
frame 13 {
_parent.sperm5._visible = true;
}
frame 14 {
_parent.sperm9._visible = true;
}
frame 15 {
_parent.sperm6._visible = true;
}
frame 16 {
_parent.sperm7._visible = true;
}
frame 17 {
stop();
_parent._parent.cum11 = true;
}
}
movieClip 2333 {
frame 1 {
stop();
}
frame 12 {
_parent.sperm1._visible = true;
}
frame 13 {
_parent.sperm8._visible = true;
}
frame 14 {
_parent.sperm2._visible = true;
}
frame 15 {
_parent.sperm3._visible = true;
}
frame 16 {
_parent.sperm7._visible = true;
}
frame 17 {
stop();
_parent._parent.cum12 = true;
}
}
movieClip 2334 {
frame 1 {
stop();
}
frame 12 {
_parent.head.sperm1._visible = true;
}
frame 13 {
_parent.head.sperm2._visible = true;
}
frame 14 {
_parent.head.sperm3._visible = true;
}
frame 15 {
_parent.sperm7._visible = true;
}
frame 16 {
_parent.head.sperm4._visible = true;
}
frame 17 {
stop();
_parent._parent.cum13 = true;
}
}
movieClip 2501 {
}
movieClip 2502 {
frame 1 {
function onBarFilled() {
cummy_btn._visible = true;
btn_manually._visible = true;
}
cummy_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;
}
}
};
cummy_btn.onPress = function () {
_parent.cum1_btn._visible = true;
_parent.cum2_btn._visible = true;
_parent.cum3_btn._visible = true;
cummy_btn._visible = false;
bar._visible = false;
};
}
}
movieClip 2504 {
}
movieClip 2509 {
frame 1 {
stop();
}
frame 12 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 18 {
stop();
if (_root.endgamevar == true) {
_root.gotoScreen('screen12');
} else {
_root.gotoScreen('screen10');
}
}
}
movieClip 2510 screen9 {
frame 1 {
stop();
next_btn1._visible = false;
next_btn1.onPress = function () {
policeman.gotoAndPlay(2);
policeman._visible = true;
next_btn1._visible = false;
};
policeman._visible = false;
cum1_btn._visible = false;
cum2_btn._visible = false;
cum3_btn._visible = false;
act.sperm1._visible = false;
act.sperm2._visible = false;
act.sperm3._visible = false;
act.sperm4._visible = false;
act.sperm5._visible = false;
act.sperm6._visible = false;
act.sperm7._visible = false;
act.sperm8._visible = false;
act.sperm9._visible = false;
act.head.sperm1._visible = false;
act.head.sperm2._visible = false;
act.head.sperm3._visible = false;
act.head.sperm4._visible = false;
cum1_btn.onPress = function () {
act.sperm11.gotoAndPlay(2);
cum1_btn._visible = false;
};
cum2_btn.onPress = function () {
act.sperm12.gotoAndPlay(2);
cum2_btn._visible = false;
};
cum3_btn.onPress = function () {
act.sperm13.gotoAndPlay(2);
cum3_btn._visible = false;
};
anim_manager = new AnimManager(act, panel);
anim_manager.AddAct({'btn_name': 'btn_0', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 50, 'frame_end': 70, 'auto_speed': 0.04, 'face_settings': 'head=1'});
anim_manager.AddAct({'btn_name': 'btn_1', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 30, 'frame_end': 90, 'auto_speed': 0.06, 'face_settings': 'head=2'});
anim_manager.AddAct({'btn_name': 'btn_2', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 121, 'auto_speed': 0.12, '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': 'btn_manually', 'type': AnimAct.TYPE_PENDULUM_MANUAL, 'frame_start': 1, 'frame_end': 121, 'mouse_movement': AnimAct.VERTICAL_MOVEMENT, 'reverse_mouse_control': 1, 'pixel_start': 200, 'pixel_width': 240, 'face_settings': 'head=2'});
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.AddSwing({'clip_name': 'shadow1', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'shadow2', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 1, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'nipple1', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 1, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'nipple2', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'nipple1.nipple11', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'nipple2.nipple22', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 1, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'head.hair1', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'head.hair1.hair2', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 1, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'head.hair1.hair3', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'head.hair4', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 1, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'head.hair6', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 1, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'head.hair7', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'head.hair7.hair5', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 1, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'head.hair8', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 1, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'hair1', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 1, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'hair2', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'hair3', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'body', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'sperm1', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'sperm2', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 1, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'sperm3', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'sperm4', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 1, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'sperm5', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'sperm6', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 1, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'sperm7', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 1, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'head.sperm1', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'head.sperm2', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 1, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'head.sperm3', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'head.sperm4', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'belt', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 1});
onEnterFrame = function () {
anim_manager.Update(_xmouse, _ymouse);
if (cum11 == true && cum12 == true && cum13 == true) {
if (policeman._visible == false) {
next_btn1._visible = true;
}
}
};
}
}
movieClip 2514 {
}
movieClip 2516 {
}
movieClip 2518 {
}
movieClip 2520 {
}
movieClip 2522 {
}
movieClip 2524 {
}
movieClip 2526 {
}
movieClip 2528 {
}
movieClip 2530 {
}
movieClip 2532 {
}
movieClip 2533 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 40 {
randomFlag();
}
frame 79 {
randomFlag();
}
}
movieClip 2535 {
}
movieClip 2537 {
}
movieClip 2539 {
}
movieClip 2541 {
}
movieClip 2543 {
}
movieClip 2545 {
}
movieClip 2547 {
}
movieClip 2549 {
}
movieClip 2551 {
}
movieClip 2554 {
}
movieClip 2556 {
}
movieClip 2558 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 65 {
randomFlag();
}
frame 120 {
randomFlag();
}
}
movieClip 2561 {
}
movieClip 2565 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 100 {
randomFlag();
}
frame 200 {
randomFlag();
}
}
movieClip 2567 {
}
movieClip 2569 {
}
movieClip 2571 {
}
movieClip 2573 {
}
movieClip 2575 {
}
movieClip 2577 {
}
movieClip 2579 {
}
movieClip 2581 {
}
movieClip 2582 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 40 {
randomFlag();
}
frame 73 {
randomFlag();
}
}
movieClip 2585 {
}
movieClip 2587 {
}
movieClip 2588 {
}
movieClip 2590 {
}
movieClip 2593 {
}
movieClip 2595 {
}
movieClip 2596 {
}
movieClip 2598 {
}
movieClip 2600 {
}
movieClip 2602 {
}
movieClip 2604 {
}
movieClip 2606 {
}
movieClip 2608 {
}
movieClip 2609 {
}
movieClip 2611 {
}
movieClip 2613 {
}
movieClip 2615 {
}
movieClip 2617 {
}
movieClip 2619 {
}
movieClip 2621 {
}
movieClip 2623 {
}
movieClip 2625 {
}
movieClip 2627 {
}
movieClip 2629 {
}
movieClip 2631 {
}
movieClip 2633 {
}
movieClip 2635 {
}
movieClip 2637 {
}
movieClip 2639 {
}
movieClip 2641 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 58 {
randomFlag();
}
frame 111 {
randomFlag();
}
}
movieClip 2643 {
}
movieClip 2646 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 100 {
randomFlag();
}
frame 200 {
randomFlag();
}
}
movieClip 2647 {
}
movieClip 2648 {
}
movieClip 2649 screen10 {
frame 1 {
_root.endgamevar = true;
}
frame 1 {
next_btn.onPress = function () {
_root.gotoScreen('screen11');
};
}
}
movieClip 2656 screen11 {
frame 89 {
stop();
_root.gotoScreen('screen12');
}
}
movieClip 2678 screen12 {
frame 1 {
btn1.onPress = function () {
_root.gotoScreen('screen6');
};
btn2.onPress = function () {
_root.gotoScreen('screen7');
};
btn3.onPress = function () {
_root.gotoScreen('screen8');
};
btn4.onPress = function () {
_root.gotoScreen('screen9');
};
try_again.onPress = function () {
_root.gotoScreen('mainmenu');
};
GoD_btn.onPress = function () {
getURL(_root.owner_URL, '_blank');
};
}
}
movieClip 2679 {
}
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');
}