STORY   LOOP   FURRY   PORN   GAMES
• C •   SERVICES [?] [R] RND   POPULAR
Archived flashes:
228014
/disc/ · /res/     /show/ · /fap/ · /gg/ · /swf/P0001 · P2560 · P5119

<div style="position:absolute;top:-99px;left:-99px;"><img src="http://swfchan.com:57475/24016296?noj=FRM24016296-16DC" width="1" height="1"></div>

Coal Mining.swf

This is the info page for
Flash #207283

(Click the ID number above for more basic data on this flash file.)


ActionScript [AS1/AS2]
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 2560 __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 2561 __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 2562 __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 2563 __Packages.AnimSwing { #initclip if (!_global.AnimSwing) { var v1 = function (AnimSwingObject) { this.clip_name = AnimSwingObject.clip_name; this.first_frame = Number(AnimSwingObject.first_frame); this.last_frame = Number(AnimSwingObject.last_frame); this.reverse = Boolean(AnimSwingObject.reverse); if (AnimSwingObject.update_before_gravi == undefined) { this.update_before_gravi = false; } else { this.update_before_gravi = Boolean(AnimSwingObject.update_before_gravi); } }; _global.AnimSwing = v1; var v2 = v1.prototype; ASSetPropFlags(_global.AnimSwing.prototype, null, 1); } #endinitclip } movieClip 21 trans_screen { frame 1 { var next_screen; } frame 10 { _parent.setScreen(next_screen); } frame 20 { removeMovieClip(this); } } movieClip 26 { } movieClip 27 { } movieClip 30 { } movieClip 31 { } movieClip 34 { } movieClip 42 { frame 1 { _visible = false; } } movieClip 44 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 191 { } movieClip 192 { } movieClip 193 { } movieClip 200 { } movieClip 201 { } movieClip 204 { } // unknown tag 88 length 282 movieClip 220 { } movieClip 225 { } movieClip 228 { } movieClip 235 { frame 76 { stop(); next_btn.onPress = function () { play(); }; } frame 77 { _parent.play(); } frame 86 { stop(); } frame 105 { stop(); next_btn.onPress = function () { play(); }; } frame 106 { _parent.play(); } frame 115 { stop(); } frame 125 { stop(); next_btn.onPress = function () { play(); }; } frame 125 { stop(); } frame 189 { stop(); _root.gotoScreen('screen2'); } } movieClip 238 screen1 { frame 1 { _root.endgamevar = false; } frame 1 { stop(); } frame 50 { stop(); bubbles.play(); } frame 103 { stop(); bubbles.play(); } } movieClip 241 { } movieClip 245 { } movieClip 247 { } movieClip 249 { } movieClip 260 { } movieClip 268 { } movieClip 270 { } movieClip 273 { } movieClip 278 { } movieClip 287 { frame 1 { onEnterFrame = function () { gotoAndStop(random(8) + 1); }; } } movieClip 288 { } movieClip 292 { } movieClip 293 { } movieClip 303 { } movieClip 382 { } movieClip 391 { } movieClip 438 { } movieClip 442 { } movieClip 444 { } movieClip 446 { } movieClip 456 { } movieClip 462 { } movieClip 463 { } movieClip 464 { } movieClip 468 { } movieClip 469 { frame 1 { onEnterFrame = function () { gotoAndStop(random(8) + 1); }; } } movieClip 470 { } movieClip 473 { } movieClip 475 { } movieClip 483 { } movieClip 537 { } movieClip 545 { } movieClip 574 { } movieClip 578 { } movieClip 580 { } movieClip 582 { } movieClip 592 { } movieClip 598 { } movieClip 599 { } movieClip 600 { } movieClip 604 { } movieClip 605 { frame 1 { onEnterFrame = function () { gotoAndStop(random(8) + 1); }; } } movieClip 606 { } movieClip 609 { } movieClip 610 { } movieClip 618 { } movieClip 679 { } movieClip 680 { } movieClip 709 { } movieClip 711 { } movieClip 713 { } movieClip 715 { } movieClip 717 { } movieClip 719 { } movieClip 721 { } movieClip 723 { } movieClip 724 { } movieClip 726 { } movieClip 728 { } movieClip 730 { } movieClip 732 { } movieClip 734 { } movieClip 736 { } movieClip 738 { } movieClip 740 { } movieClip 742 { } movieClip 744 { } movieClip 746 { } movieClip 748 { } movieClip 751 { } movieClip 753 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 50 { randomFlag(); } frame 100 { randomFlag(); } } movieClip 764 { } movieClip 766 { } movieClip 767 { } movieClip 772 { } movieClip 774 { } movieClip 775 { } movieClip 779 { } movieClip 781 { } movieClip 782 { } movieClip 787 { } movieClip 789 { } movieClip 790 { } movieClip 794 { } movieClip 796 { } movieClip 797 { } movieClip 801 { } movieClip 803 { } movieClip 804 { } movieClip 808 { } movieClip 810 { } movieClip 811 { } movieClip 815 { } movieClip 817 { } movieClip 818 { } movieClip 819 { } movieClip 824 { } movieClip 826 { } movieClip 827 { } movieClip 829 { } movieClip 833 { frame 95 { stop(); next_btn.onPress = function () { play(); }; } frame 108 { stop(); next_btn.onPress = function () { play(); }; } frame 121 { stop(); next_btn.onPress = function () { play(); }; } frame 133 { stop(); next_btn.onPress = function () { play(); }; } frame 145 { stop(); next_btn.onPress = function () { play(); }; } frame 157 { stop(); next_btn.onPress = function () { play(); }; } frame 170 { stop(); next_btn.onPress = function () { play(); }; } frame 183 { stop(); next_btn.onPress = function () { play(); }; } frame 195 { stop(); next_btn.onPress = function () { play(); }; } frame 207 { stop(); next_btn.onPress = function () { play(); }; } frame 232 { stop(); _parent.gotoAndStop(2); } } movieClip 838 { } movieClip 846 { } movieClip 848 { } movieClip 851 { } movieClip 853 { } movieClip 855 { } movieClip 857 { } movieClip 859 { } movieClip 861 { } movieClip 866 { } movieClip 869 { } movieClip 871 { } movieClip 873 { } movieClip 875 { } movieClip 877 { } movieClip 879 { } movieClip 881 { } movieClip 883 { } movieClip 885 { } movieClip 887 { } movieClip 889 { } movieClip 919 { } movieClip 920 { frame 1 { stop(); } frame 31 { gotoAndPlay(1); } frame 32 { stop(); } } movieClip 925 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(3) + 1)); }; randomFlag(); } frame 114 { randomFlag(); } frame 212 { randomFlag(); } frame 306 { randomFlag(); } } movieClip 927 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 62 { randomFlag(); } frame 120 { randomFlag(); } } movieClip 929 { } movieClip 932 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 94 { randomFlag(); } frame 205 { randomFlag(); } } movieClip 933 { } movieClip 939 { } movieClip 941 { } movieClip 943 { frame 1 { stop(); _parent.her_phrase.bubble.gotoAndStop(1); } frame 2 { _parent.her_phrase.bubble.gotoAndStop(1); } frame 3 { _parent.her_phrase.bubble.gotoAndStop(3); } frame 4 { _parent.her_phrase.bubble.gotoAndStop(2); } } movieClip 949 { } movieClip 951 { } movieClip 952 { } movieClip 958 { } movieClip 963 { frame 38 { stop(); next_btn.onPress = function () { play(); }; } frame 51 { stop(); next_btn.onPress = function () { play(); }; } frame 56 { stop(); _parent.play(); } } movieClip 968 { } movieClip 972 { } movieClip 976 { } movieClip 977 { frame 1 { stop(); } } movieClip 981 { frame 1 { phrase = ''; letters = 0; _visible = false; next_btn._visible = false; onEnterFrame = function () { if (!_visible) { return undefined; } letters += 1.5; if (letters > phrase.length) { letters = phrase.length; next_btn._visible = true; } text = phrase.substr(0, int(letters)); }; onMouseDown = function () { if (!_visible) { return undefined; } letters = phrase.length; next_btn._visible = true; }; next_btn.onPress = function () { _visible = false; if (good_result) { if (_parent.your_phrases.length == 0) { _parent.play(); return undefined; } i = 0; while (i < 3) { removeMovieClip(eval('_parent.dialog_line' + i)); ++i; } _parent.AddDialogLines(); } else { i = 0; while (i < 3) { (eval('_parent.dialog_line' + i))._visible = true; ++i; } } _parent.babe.gotoAndStop(next_face); }; } } movieClip 985 { } movieClip 986 { } movieClip 990 { frame 1 { phrase = ''; letters = 0; _visible = false; next_btn._visible = false; onEnterFrame = function () { if (!_visible) { return undefined; } letters += 1.5; if (letters > phrase.length) { letters = phrase.length; next_btn._visible = true; _parent.act.man.head.mouth.gotoAndStop(32); } text = phrase.substr(0, int(letters)); _parent.act.man.head.mouth.play(); }; onMouseDown = function () { if (!_visible) { return undefined; } letters = phrase.length; next_btn._visible = true; }; next_btn.onPress = function () { _visible = false; _parent.act.man.head.mouth.gotoAndStop(32); _parent.her_phrase._visible = true; _parent.her_phrase.letters = 0; _parent.babe.gotoAndStop(her_face); if (_parent.round_num == 2 && _parent.her_phrase.good_result) { _parent.babe.pills.gotoAndStop(2); } }; } } movieClip 994 { } movieClip 996 { } movieClip 997 { } movieClip 1001 { } movieClip 1003 { } movieClip 1004 { } movieClip 1008 { } movieClip 1010 { } movieClip 1011 { } movieClip 1015 { } movieClip 1017 { } movieClip 1018 { } movieClip 1019 { frame 3 { _parent.act.man.head.mouth.gotoAndPlay(2); } frame 10 { stop(); next_btn.onPress = function () { play(); }; } frame 24 { stop(); next_btn.onPress = function () { play(); }; } frame 30 { _parent.act.man.head.mouth.play(); } frame 37 { stop(); next_btn.onPress = function () { play(); }; } frame 50 { stop(); next_btn.onPress = function () { play(); }; } frame 55 { stop(); _root.gotoScreen('screen3'); } } movieClip 1020 screen2 { frame 1 { stop(); miner1.gotoAndPlay(15); miner2.gotoAndPlay(30); miner3.gotoAndPlay(45); } frame 2 { stop(); } frame 3 { stop(); your_phrases = new Array(); her_phrases = new Array(); her_faces = new Array(); next_faces = new Array(); results = new Array(); your_phrases.push('Whoa there, calm down and let’s hear each other out.'); her_phrases.push('Fine. Us workers have been slaving away down here for years and it’s time we got a raise!'); her_faces.push(1); next_faces.push(1); results.push(true); your_phrases.push('Don’t take that tone of voice with me!'); her_phrases.push('I’ll take whatever kind of tone I like!'); her_faces.push(3); next_faces.push(1); results.push(false); your_phrases.push('Hey sexy, what’s got your tits in a twist?'); her_phrases.push('The fuck!? How dare you!'); her_faces.push(3); next_faces.push(1); results.push(false); your_phrases.push('Just how much are you asking for?'); her_phrases.push('We want another 500000 Rubels a year and a better dental plan!'); her_faces.push(1); next_faces.push(1); results.push(true); your_phrases.push('A raise? You should be grateful we even hired you!'); her_phrases.push('Well maybe we should just quit then!'); her_faces.push(3); next_faces.push(1); results.push(false); your_phrases.push('A raise huh? How about a push up bra?'); her_phrases.push('How about I push this shovel up your ass?!'); her_faces.push(3); next_faces.push(1); results.push(false); your_phrases.push('That might not be possible even if the bosses wanted to. Isn’t there room to negotiate?'); her_phrases.push('Negotiate? Do you have any idea what it’s like down here? Just look at the state of me!'); her_faces.push(1); next_faces.push(1); results.push(true); your_phrases.push('Bitch you ain’t getting nothing!'); her_phrases.push('Then we’re on strike!'); her_faces.push(3); next_faces.push(1); results.push(false); your_phrases.push('Dental plan?'); her_phrases.push('Linda needs braces.'); her_faces.push(3); next_faces.push(1); results.push(false); your_phrases.push('Oh come on, that’s nonsense. You’re beautiful!'); her_phrases.push('Sigh... Thanks sweetie, but flattery won’t make our job any less backbreaking. Seriously dude! We need the money for recovery! Can’t you do anything?'); her_faces.push(4); next_faces.push(1); results.push(true); your_phrases.push('Nice tits though!'); her_phrases.push('You son of a bitch!'); her_faces.push(3); next_faces.push(1); results.push(false); your_phrases.push('Well it’s not like you had any looks to begin with.'); her_phrases.push('That’s it! I’m burying you alive!'); her_faces.push(3); next_faces.push(1); results.push(false); your_phrases.push('Well if that’s the case, what if we offered you a physical therapy plan?'); her_phrases.push('Physical therapy?'); her_faces.push(3); next_faces.push(1); results.push(true); your_phrases.push('Look, just get back to work would you?'); her_phrases.push('Fuck off!'); her_faces.push(3); next_faces.push(1); results.push(false); your_phrases.push('Sorry, but we just can’t afford it.'); her_phrases.push('Then it looks like your company’s finished!'); her_faces.push(3); next_faces.push(1); results.push(false); round_num = 0; AddDialogLines = function () { ++round_num; nums = new Array(); i = 0; while (i < 3) { nums.push(i); ++i; } i = 0; while (i < nums.length) { r = random(nums.length); nums.push(nums[r]); nums.splice(r, 1); ++i; } i = 0; while (i < nums.length) { clip = attachMovie('dialog_line', 'dialog_line' + nums[i], i); clip._y = 480 - 1.3 * (nums[i] + 1) * clip._height; clip._x = 45; clip.your_text = your_phrases[0]; your_phrases.splice(0, 1); clip.her_text = her_phrases[0]; her_phrases.splice(0, 1); clip.her_face = her_faces[0]; her_faces.splice(0, 1); clip.next_face = next_faces[0]; next_faces.splice(0, 1); clip.good_result = results[0]; clip.num = nums[i]; results.splice(0, 1); ++i; } }; AddDialogLines(); } frame 4 { stop(); } } movieClip 1024 { } movieClip 1027 { } movieClip 1031 { } movieClip 1033 { } movieClip 1035 { } movieClip 1037 { frame 1 { stop(); } } movieClip 1040 { frame 1 { stop(); } } movieClip 1048 { } movieClip 1049 { frame 1 { stop(); } } movieClip 1051 { } movieClip 1057 { frame 1 { stop(); } } movieClip 1065 { } movieClip 1069 { } movieClip 1070 { frame 1 { stop(); } } movieClip 1075 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 60 { randomFlag(); } frame 120 { randomFlag(); } } movieClip 1077 { } movieClip 1079 { } movieClip 1082 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 102 { randomFlag(); } frame 200 { randomFlag(); } } movieClip 1086 { } movieClip 1091 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 60 { randomFlag(); } frame 120 { randomFlag(); } } movieClip 1094 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 102 { randomFlag(); } frame 200 { randomFlag(); } } movieClip 1098 { } movieClip 1103 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 57 { randomFlag(); } frame 117 { randomFlag(); } } movieClip 1106 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 102 { randomFlag(); } frame 200 { randomFlag(); } } movieClip 1107 { frame 1 { stop(); } frame 4 { stop(); } } movieClip 1109 { } movieClip 1111 { } movieClip 1113 { } movieClip 1121 { frame 1 { onEnterFrame = function () { if (_parent._parent.mood.value < 0.1) { _parent._parent.AddMood(-0.0009); } else { if (_parent._parent.mood.value < 0.2) { _parent._parent.AddMood(0.0009); } } }; } } movieClip 1122 { frame 1 { stop(); _parent.mc1._visible = true; } frame 2 { _parent.mc1._visible = false; } } movieClip 1124 { } movieClip 1126 { } movieClip 1143 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(3) + 1)); }; randomFlag(); } frame 45 { randomFlag(); } frame 80 { randomFlag(); } frame 122 { randomFlag(); } } movieClip 1145 { } movieClip 1147 { } movieClip 1149 { } movieClip 1156 { } movieClip 1157 { frame 1 { stop(); } } movieClip 1196 { } movieClip 1229 { } movieClip 1230 { frame 1 { stop(); } } movieClip 1696 { frame 181 { stop(); _parent._parent.boobs_play._visible = false; _parent._parent.boobs.gotoAndStop(2); _parent._parent.boobs._visible = true; _parent._parent.act9._visible = true; } } movieClip 1697 { frame 1 { stop(); } } movieClip 1737 { frame 1 { onEnterFrame = function () { if (_parent._parent.mood.value < 0.5) { _parent._parent.AddMood(-0.0009); } else { if (_parent._parent.mood.value < 0.7) { _parent._parent.AddMood(0.0009); } } }; } } movieClip 1738 { frame 1 { stop(); _parent.boobs._visible = true; } frame 2 { _parent.boobs._visible = false; } } movieClip 1781 { frame 1 { onEnterFrame = function () { if (_parent._parent.mood.value < 0.7) { _parent._parent.AddMood(-0.0009); } else { if (_parent._parent.mood.value < 0.8) { _parent._parent.AddMood(0.0009); } } if (_parent._parent.mood.value >= 0.8) { _parent._parent.boobs._visible = false; _parent._parent.boobs_play.gotoAndStop(2); _parent._parent.act8._visible = false; _parent._parent.act6._visible = false; _parent._parent.act7._visible = false; _parent.var1 = true; } }; } } movieClip 1782 { frame 1 { stop(); if (var1 == false) { _parent.boobs._visible = true; } if (var1 == true) { _parent.boobs._visible = false; } } frame 2 { _parent.boobs._visible = false; } } movieClip 1829 { frame 1 { onEnterFrame = function () { if (_parent._parent.mood.value < 0.8) { _parent._parent.AddMood(-0.0009); } else { if (_parent._parent.mood.value < 0.9) { _parent._parent.AddMood(0.0009); } } if (_parent._parent.mood.value >= 0.9) { _parent._parent.act10._visible = true; _parent._parent.ass.gotoAndStop(2); _parent._parent.leg1.gotoAndStop(2); _parent._parent.leg2.gotoAndStop(2); _parent._parent.act4._visible = false; } }; } } movieClip 1830 { frame 1 { stop(); _parent.boobs._visible = true; } frame 2 { _parent.boobs._visible = false; } } movieClip 1847 { } movieClip 1876 { frame 1 { onEnterFrame = function () { if (_parent._parent.mood.value < 0.5) { _parent._parent.AddMood(-0.0009); } else { if (_parent._parent.mood.value < 0.7) { _parent._parent.AddMood(0.0009); } } }; } } movieClip 1877 { frame 1 { stop(); _parent.boobs._visible = true; } frame 2 { _parent.boobs._visible = false; } } movieClip 1886 { frame 1 { onEnterFrame = function () { if (_parent._parent.mood.value < 0.1) { _parent._parent.AddMood(0.0009); } else { this.onEnterFrame = null; } }; } } movieClip 1887 { frame 1 { stop(); } } movieClip 1890 { } movieClip 1900 { frame 1 { onEnterFrame = function () { if (_parent._parent.mood.value < 0.9) { _parent._parent.AddMood(-0.0009); } else { if (_parent._parent.mood.value < 1) { _parent._parent.AddMood(0.0009); } } }; } } movieClip 1901 { frame 1 { stop(); } } movieClip 1904 { frame 1 { stop(); } } movieClip 1911 { frame 1 { onEnterFrame = function () { if (_parent._parent.mood.value < 0.3) { _parent._parent.AddMood(-0.0009); } else { if (_parent._parent.mood.value < 0.4) { _parent._parent.AddMood(0.0009); } } }; } } movieClip 1912 { frame 1 { stop(); _parent.act4p.gotoAndStop(1); } frame 2 { _parent.act4p.gotoAndStop(2); } } movieClip 1917 { } movieClip 1927 { frame 1 { onEnterFrame = function () { if (_parent._parent.mood.value < 0.2) { _parent._parent.AddMood(-0.0009); } else { if (_parent._parent.mood.value < 0.3) { _parent._parent.AddMood(0.0009); } } }; } } movieClip 1928 { frame 1 { stop(); _parent.act3p.gotoAndStop(1); } frame 2 { _parent.act3p.gotoAndStop(2); } } movieClip 1936 { frame 1 { onEnterFrame = function () { if (_parent._parent.mood.value < 0.4) { _parent._parent.AddMood(-0.0009); } else { if (_parent._parent.mood.value < 0.5) { _parent._parent.AddMood(0.0009); } } if (_parent._parent.mood.value >= 0.5) { _parent._parent.head.mouth.gotoAndStop(2); } }; } } movieClip 1937 { frame 1 { stop(); } } movieClip 1940 { } movieClip 1942 { } movieClip 1944 { frame 1 { function SetHider() { hider._x = value_show * volumer._width - hider._width; } value = 0; value_show = value; _root.cock_anim = 0; SetHider(); onEnterFrame = function () { if (value > value_show) { _parent.head.gotoAndStop(3); value_show = value; SetHider(); _root.cock_anim = value_show; if (!_parent.dialog._visible) { _parent.dialog._visible = true; _parent.dialog.gotoAndStop(5 + random(4)); } } else { if (value < value_show) { _parent.head.gotoAndStop(2); value = value_show; if (!_parent.dialog._visible) { _parent.dialog._visible = true; _parent.dialog.gotoAndStop(1 + random(4)); } } else { if (_parent.part_clip == undefined) { if (_parent.head._currentframe != 1) { _parent.head.gotoAndStop(4); } } else { _parent.head.gotoAndStop(3); } if (_parent.dialog._visible && _parent.dialog.timer >= _parent.dialog.time) { _parent.dialog._visible = false; } } } }; } } movieClip 1948 { } movieClip 1953 { } movieClip 1958 { } movieClip 1963 { } movieClip 1968 { } movieClip 1973 { } movieClip 1978 { } movieClip 1983 { } movieClip 1985 { frame 1 { function SetPhrase(num, time_) { timer = 0; time = time_; _visible = true; gotoAndStop(num); } stop(); if (time == undefined) { time = 0; timer = 0; } onEnterFrame = function () { if (timer < time) { ++timer; } }; } } movieClip 1989 { } movieClip 1991 { } movieClip 1992 { } movieClip 1995 { frame 1 { stop(); } frame 10 { stop(); next_btn.onPress = function () { play(); }; } frame 46 { stop(); if (_root.endgamevar == true) { _root.gotoScreen('screen9'); } else { _root.gotoScreen('screen4'); } } } movieClip 2006 { frame 1 { function AddMood(val) { if (val < 0) { val = -1.0e-008; } mood.value += val; if (mood.value > 1) { if (!next_btn._visible) { bubbles.play(); mood._visible = false; } mood.value = 1; } } function ReleasePart() { if (!part_clip.single) { part_clip.gotoAndStop(1); } part_clip = undefined; cursor._visible = true; if (mood.value > 0.1) { tuch1._visible = false; } } act9._visible = false; act10._visible = false; act8.var1 = false; part_clip; parts = new Array('act1', 'act2', 'act3', 'act4', 'act5', 'act6', 'act7', 'act8', 'act9', 'act10', 'act11'); next_btn._visible = false; i = 0; while (i < parts.length) { (eval(parts[i])).stop(); (eval(parts[i])).onPress = function () { if (dialog._currentframe == 1 && dialog._visible) { return undefined; } if (part_clip != undefined) { return undefined; } part_clip = this; this.gotoAndStop(2); cursor._visible = false; }; ++i; } onMouseUp = function () { if (part_clip.single) { return undefined; } ReleasePart(); }; } frame 2 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 61 { randomFlag(); } frame 121 { randomFlag(); } } movieClip 2008 screen3 { } movieClip 2014 { } movieClip 2023 { } movieClip 2032 { } movieClip 2036 { } movieClip 2038 { } movieClip 2048 { } movieClip 2050 { } movieClip 2065 { } movieClip 2067 { } movieClip 2069 { } movieClip 2071 { } movieClip 2075 { } movieClip 2077 { } movieClip 2079 { } movieClip 2081 { } movieClip 2091 { } movieClip 2102 { } movieClip 2104 { } movieClip 2114 { } movieClip 2123 { } movieClip 2144 { } movieClip 2147 { } movieClip 2149 { } movieClip 2154 { } movieClip 2165 { } movieClip 2174 { } movieClip 2183 { } movieClip 2186 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 100 { randomFlag(); } frame 200 { randomFlag(); } } movieClip 2187 { } movieClip 2190 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 30 { randomFlag(); } frame 59 { randomFlag(); } } movieClip 2193 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 25 { randomFlag(); } frame 49 { randomFlag(); } } movieClip 2196 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 16 { randomFlag(); } frame 31 { randomFlag(); } } movieClip 2198 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 12 { randomFlag(); } frame 23 { randomFlag(); } } movieClip 2199 { frame 1 { stop(); } } movieClip 2204 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 60 { randomFlag(); } frame 120 { randomFlag(); } } movieClip 2208 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 60 { randomFlag(); } frame 120 { randomFlag(); } } movieClip 2212 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 60 { randomFlag(); } frame 120 { randomFlag(); } } movieClip 2213 { frame 1 { stop(); } } movieClip 2215 { } movieClip 2224 { } movieClip 2231 { } movieClip 2249 { } movieClip 2267 { } movieClip 2269 { } movieClip 2291 { } movieClip 2293 { } movieClip 2295 { } movieClip 2297 { } movieClip 2299 { } movieClip 2318 { frame 1 { stop(); } frame 14 { _parent.sperm1._visible = true; } frame 16 { _parent.sperm2._visible = true; } frame 22 { _parent.sperm3._visible = true; } frame 23 { _parent.sperm4._visible = true; } frame 33 { _parent.sperm5._visible = true; } frame 35 { stop(); _parent._parent.cumscr.play(); } } movieClip 2395 { } movieClip 2416 { } movieClip 2418 { } movieClip 2431 { } movieClip 2504 { } movieClip 2506 { } movieClip 2507 { } movieClip 2508 { 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 2531 { } movieClip 2533 { 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 2537 { } movieClip 2546 { frame 1 { onEnterFrame = function () { gotoAndStop(random(8) + 1); }; } } movieClip 2547 { } movieClip 2548 { frame 1 { stop(); } frame 31 { stop(); } frame 47 { stop(); _parent.next_btn._visible = true; _parent.mc_btn._visible = true; } } movieClip 2550 { } movieClip 2551 screen4 { frame 1 { stop(); act.sperm1._visible = false; act.sperm2._visible = false; act.sperm3._visible = false; act.sperm4._visible = false; act.sperm5._visible = false; next_btn._visible = false; mc_btn._visible = false; next_btn.onPress = function () { _root.gotoScreen('screen_demo'); }; 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': 'mouth=1,eyes=1,brows=1'}); anim_manager.AddAct({'btn_name': 'btn_1', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 30, 'frame_end': 90, 'auto_speed': 0.06, 'face_settings': 'mouth=2,eyes=2,brows=2'}); anim_manager.AddAct({'btn_name': 'btn_2', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 15, 'frame_end': 105, 'auto_speed': 0.14, 'face_settings': 'mouth=3,eyes=3,brows=3'}); anim_manager.AddAct({'btn_name': 'btn_3', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 121, 'auto_speed': 0.22, 'face_settings': 'mouth=4,eyes=4,brows=4'}); anim_manager.AddAct({'btn_name': 'btn_4', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 122, 'frame_end': 242, 'auto_speed': 0.06, 'face_settings': 'mouth=2,eyes=2,brows=2'}); anim_manager.AddAct({'btn_name': 'btn_5', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 122, 'frame_end': 242, 'auto_speed': 0.14, 'face_settings': 'mouth=3,eyes=3,brows=3'}); anim_manager.AddAct({'btn_name': 'btn_6', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 122, 'frame_end': 242, 'auto_speed': 0.22, 'face_settings': 'mouth=4,eyes=4,brows=4'}); anim_manager.AddAct({'btn_name': 'cum_btn', 'type': AnimAct.TYPE_CUM_PENDULUM, 'frame_start': 122, 'frame_end': 242, 'auto_speed': 0.2, 'auto_fade_out_speed': 0.004, 'face_settings': 'mouth=3,eyes=3,brows=3', 'cum_clips': 'cum1', 'face_settings_after_cum': 'mouth=1,eyes=1,brows=1'}); anim_manager.AddAct({'btn_name': 'btn_manually', 'type': AnimAct.TYPE_PENDULUM_MANUAL, 'frame_start': 122, 'frame_end': 242, 'mouse_movement': AnimAct.VERTICAL_MOVEMENT, 'reverse_mouse_control': 1, 'pixel_start': 140, 'pixel_width': 200, 'face_settings': 'mouth=5,eyes=5,brows=5'}); anim_manager.AddSwing({'clip_name': 'hair1', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 0}); anim_manager.AddSwing({'clip_name': 'hair2', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 0}); anim_manager.AddSwing({'clip_name': 'hair3', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 0}); anim_manager.AddSwing({'clip_name': 'hair4', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 0}); anim_manager.AddSwing({'clip_name': 'hair5', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 0}); anim_manager.AddSwing({'clip_name': 'hair6', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 0}); anim_manager.AddSwing({'clip_name': 'hair7', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 0}); anim_manager.AddSwing({'clip_name': 'jacket1', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 0}); anim_manager.AddSwing({'clip_name': 'jacket2', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 0}); anim_manager.AddSwing({'clip_name': 'jacket3', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 0}); anim_manager.AddSwing({'clip_name': 'shirt1', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 0}); anim_manager.AddSwing({'clip_name': 'shirt2', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 0}); anim_manager.AddSwing({'clip_name': 'singlet', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 0}); anim_manager.AddSwing({'clip_name': 'nipple1', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 0}); anim_manager.AddSwing({'clip_name': 'nipple2', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 0}); anim_manager.AddSwing({'clip_name': 'nipple3', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 0}); anim_manager.AddSwing({'clip_name': 'nipple4', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 0}); anim_manager.AddSwing({'clip_name': 'nipple5', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 0}); anim_manager.AddSwing({'clip_name': 'nipple6', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 0}); anim_manager.AddSwing({'clip_name': 'bg', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 0}); onEnterFrame = function () { anim_manager.Update(_xmouse, _ymouse); }; } } movieClip 2553 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 2554 { } movieClip 2559 dialog_line { frame 1 { stop(); onRollOver = function () { if (_currentframe == 3) { return undefined; } i = 0; while (i < 3) { if ((eval('_parent.dialog_line' + i))._currentframe == 3) { } else { (eval('_parent.dialog_line' + i)).gotoAndStop(1); } ++i; } gotoAndStop(2); }; onRollOut = function () { if (_currentframe == 3) { return undefined; } gotoAndStop(1); }; onPress = function () { if (_currentframe == 3) { return undefined; } _parent.guy.gotoAndStop(2); gotoAndStop(3); _parent.your_phrase.text = ''; _parent.your_phrase._visible = true; _parent.your_phrase.phrase = your_text; _parent.your_phrase.letters = 0; _parent.your_phrase.her_face = her_face; _parent.her_phrase.text = ''; _parent.her_phrase.phrase = her_text; _parent.her_phrase.good_result = good_result; _parent.her_phrase.next_face = next_face; _parent.your_phrase.next_btn._visible = false; _parent.her_phrase.next_btn._visible = _parent.your_phrase.next_btn._visible; _parent._parent.playSound('typing'); i = 0; while (i < 3) { (eval('_parent.dialog_line' + i))._visible = false; ++i; } }; } } 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'); }




http://swfchan.com/42/207283/info.shtml
Created: 23/7 -2019 12:30:55 Last modified: 23/7 -2019 12:30:55 Server time: 16/04 -2024 07:58:45