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

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

Legend of Korra.swf

This is the info page for
Flash #208127

(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 1743 __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 1744 __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 1745 __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 1746 __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 42 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(4) + 1)); }; randomFlag(); } frame 20 { randomFlag(); } frame 46 { randomFlag(); } frame 63 { randomFlag(); } frame 88 { randomFlag(); } } movieClip 44 { frame 1 { _visible = false; } } movieClip 48 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(4) + 1)); }; randomFlag(); } frame 20 { randomFlag(); } frame 41 { randomFlag(); } frame 60 { randomFlag(); } } movieClip 49 { frame 1 { _visible = false; } } movieClip 53 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(4) + 1)); }; randomFlag(); } frame 17 { randomFlag(); } frame 37 { randomFlag(); } frame 53 { randomFlag(); } } movieClip 54 { } movieClip 56 { frame 1 { _visible = false; } } movieClip 60 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(4) + 1)); }; randomFlag(); } frame 21 { randomFlag(); } frame 42 { randomFlag(); } frame 61 { randomFlag(); } } movieClip 61 { } movieClip 77 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(4) + 1)); }; randomFlag(); } frame 20 { randomFlag(); } frame 46 { randomFlag(); } frame 63 { randomFlag(); } frame 88 { randomFlag(); } } movieClip 79 { frame 1 { _visible = false; } } movieClip 81 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(4) + 1)); }; randomFlag(); } frame 20 { randomFlag(); } frame 41 { randomFlag(); } frame 60 { randomFlag(); } } movieClip 82 { frame 1 { _visible = false; } } movieClip 86 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(4) + 1)); }; randomFlag(); } frame 17 { randomFlag(); } frame 37 { randomFlag(); } frame 53 { randomFlag(); } } movieClip 87 { } movieClip 88 { frame 1 { _visible = false; } } movieClip 92 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(4) + 1)); }; randomFlag(); } frame 21 { randomFlag(); } frame 42 { randomFlag(); } frame 61 { randomFlag(); } } movieClip 98 { } movieClip 99 { } movieClip 102 { } movieClip 103 { } movieClip 106 { } movieClip 114 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 118 { } movieClip 120 { } movieClip 122 { } movieClip 124 { } movieClip 126 { } movieClip 128 { } movieClip 130 { } movieClip 132 { } movieClip 134 { } movieClip 135 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 52 { randomFlag(); } frame 103 { randomFlag(); } } movieClip 137 { } movieClip 139 { } movieClip 141 { } movieClip 145 { } movieClip 147 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 59 { randomFlag(); } frame 120 { randomFlag(); } } movieClip 149 { } movieClip 152 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 35 { randomFlag(); } frame 69 { randomFlag(); } } movieClip 155 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 89 { randomFlag(); } frame 205 { randomFlag(); } } movieClip 157 { } movieClip 158 { } movieClip 159 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 52 { randomFlag(); } frame 103 { randomFlag(); } } movieClip 161 { } movieClip 163 { } movieClip 165 { } movieClip 167 { } movieClip 169 { } movieClip 171 { } movieClip 173 { } movieClip 176 { } movieClip 178 { } movieClip 180 { } movieClip 181 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 54 { randomFlag(); } frame 107 { randomFlag(); } } movieClip 183 { } movieClip 185 { } movieClip 187 { } movieClip 191 { } movieClip 193 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 50 { randomFlag(); } frame 105 { randomFlag(); } } movieClip 195 { } movieClip 198 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 85 { randomFlag(); } frame 215 { randomFlag(); } } movieClip 202 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 33 { randomFlag(); } frame 65 { randomFlag(); } } movieClip 203 { } movieClip 204 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 54 { randomFlag(); } frame 107 { randomFlag(); } } movieClip 205 { } // unknown tag 88 length 282 movieClip 228 { frame 18 { stop(); next_btn.onPress = function () { play(); }; } frame 42 { stop(); next_btn.onPress = function () { play(); }; } frame 60 { stop(); next_btn.onPress = function () { play(); }; } frame 87 { stop(); _root.gotoScreen('screen2'); } } movieClip 230 screen1 { frame 1 { _root.endgamevar = false; } } movieClip 246 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(5) + 1)); }; randomFlag(); } frame 25 { randomFlag(); } frame 35 { randomFlag(); } frame 53 { randomFlag(); } frame 65 { randomFlag(); } frame 85 { randomFlag(); } } movieClip 247 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(3) + 1)); }; randomFlag(); } frame 14 { randomFlag(); } frame 40 { randomFlag(); } frame 60 { randomFlag(); } } movieClip 258 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(3) + 1)); }; randomFlag(); } frame 25 { randomFlag(); } frame 70 { randomFlag(); } frame 103 { randomFlag(); } } movieClip 266 { } movieClip 268 { } movieClip 269 { } movieClip 271 { } movieClip 284 { } movieClip 296 { } movieClip 298 { } movieClip 300 { } movieClip 302 { } movieClip 304 { } movieClip 311 { } movieClip 313 { } movieClip 315 { } movieClip 317 { } movieClip 319 { } movieClip 321 { } movieClip 323 { } movieClip 325 { } movieClip 328 { } movieClip 330 { } movieClip 331 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 35 { randomFlag(); } frame 69 { randomFlag(); } } movieClip 336 { } movieClip 338 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 56 { randomFlag(); } frame 111 { randomFlag(); } } movieClip 340 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 101 { randomFlag(); } frame 190 { randomFlag(); } } movieClip 343 { } movieClip 345 { } movieClip 346 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 30 { randomFlag(); } frame 59 { randomFlag(); } } movieClip 348 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 101 { randomFlag(); } frame 190 { randomFlag(); } } movieClip 351 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 25 { randomFlag(); } frame 49 { randomFlag(); } } movieClip 353 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 101 { randomFlag(); } frame 190 { randomFlag(); } } movieClip 356 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 20 { randomFlag(); } frame 39 { randomFlag(); } } movieClip 357 { } movieClip 359 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 101 { randomFlag(); } frame 190 { randomFlag(); } } movieClip 360 { frame 1 { stop(); } } movieClip 372 { } movieClip 374 { } movieClip 376 { } movieClip 378 { } movieClip 391 { } movieClip 393 { } movieClip 395 { } movieClip 397 { } movieClip 400 { } movieClip 403 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 35 { randomFlag(); } frame 69 { randomFlag(); } } movieClip 418 { } movieClip 435 { } movieClip 440 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 60 { randomFlag(); } frame 120 { randomFlag(); } } movieClip 453 { } movieClip 460 { } movieClip 463 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 90 { randomFlag(); } frame 200 { randomFlag(); } } movieClip 466 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 30 { randomFlag(); } frame 59 { randomFlag(); } } movieClip 470 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 60 { randomFlag(); } frame 120 { randomFlag(); } } movieClip 473 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 90 { randomFlag(); } frame 200 { randomFlag(); } } movieClip 476 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 25 { randomFlag(); } frame 49 { randomFlag(); } } movieClip 480 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 60 { randomFlag(); } frame 120 { randomFlag(); } } movieClip 483 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 90 { randomFlag(); } frame 200 { randomFlag(); } } movieClip 486 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 20 { randomFlag(); } frame 39 { randomFlag(); } } movieClip 489 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 90 { randomFlag(); } frame 200 { randomFlag(); } } movieClip 490 { frame 1 { stop(); } } movieClip 492 { } movieClip 494 { } movieClip 498 { } movieClip 500 { } movieClip 507 { } movieClip 509 { } movieClip 511 { } movieClip 514 { } movieClip 516 { } movieClip 518 { } movieClip 533 { } movieClip 554 { } movieClip 556 { } movieClip 558 { } movieClip 559 { } movieClip 566 { } movieClip 568 { } movieClip 569 { } movieClip 579 { } movieClip 599 { } movieClip 601 { } movieClip 603 { } movieClip 605 { } movieClip 606 { } movieClip 607 { } movieClip 620 { } movieClip 640 { } movieClip 642 { } movieClip 644 { } movieClip 646 { } movieClip 660 { } movieClip 662 { } movieClip 664 { frame 1 { stop(); } frame 2 { stop(); _parent._parent.next_btn._visible = true; _parent._parent.cumscr.gotoAndPlay('frame'); } } movieClip 677 { frame 1 { head.eye.eye.gotoAndStop(_currentframe); } frame 2 { head.eye.eye.gotoAndStop(_currentframe); } frame 3 { head.eye.eye.gotoAndStop(_currentframe); } frame 4 { head.eye.eye.gotoAndStop(_currentframe); } frame 5 { head.eye.eye.gotoAndStop(_currentframe); } frame 6 { head.eye.eye.gotoAndStop(_currentframe); } frame 7 { head.eye.eye.gotoAndStop(_currentframe); } frame 8 { head.eye.eye.gotoAndStop(_currentframe); } frame 9 { head.eye.eye.gotoAndStop(_currentframe); } frame 10 { head.eye.eye.gotoAndStop(_currentframe); } frame 11 { head.eye.eye.gotoAndStop(_currentframe); } frame 12 { head.eye.eye.gotoAndStop(_currentframe); } frame 13 { head.eye.eye.gotoAndStop(_currentframe); } frame 14 { head.eye.eye.gotoAndStop(_currentframe); } frame 15 { head.eye.eye.gotoAndStop(_currentframe); } frame 16 { head.eye.eye.gotoAndStop(_currentframe); } frame 17 { head.eye.eye.gotoAndStop(_currentframe); } frame 18 { head.eye.eye.gotoAndStop(_currentframe); } frame 19 { head.eye.eye.gotoAndStop(_currentframe); } frame 20 { head.eye.eye.gotoAndStop(_currentframe); } frame 21 { head.eye.eye.gotoAndStop(_currentframe); } frame 22 { head.eye.eye.gotoAndStop(_currentframe); } frame 23 { head.eye.eye.gotoAndStop(_currentframe); } frame 24 { head.eye.eye.gotoAndStop(_currentframe); } frame 25 { head.eye.eye.gotoAndStop(_currentframe); } frame 26 { head.eye.eye.gotoAndStop(_currentframe); } frame 27 { head.eye.eye.gotoAndStop(_currentframe); } frame 28 { head.eye.eye.gotoAndStop(_currentframe); } frame 29 { head.eye.eye.gotoAndStop(_currentframe); } frame 30 { head.eye.eye.gotoAndStop(_currentframe); } frame 31 { head.eye.eye.gotoAndStop(_currentframe); } frame 32 { head.eye.eye.gotoAndStop(_currentframe); } frame 33 { head.eye.eye.gotoAndStop(_currentframe); } frame 34 { head.eye.eye.gotoAndStop(_currentframe); } frame 35 { head.eye.eye.gotoAndStop(_currentframe); } frame 36 { head.eye.eye.gotoAndStop(_currentframe); } frame 37 { head.eye.eye.gotoAndStop(_currentframe); } frame 38 { head.eye.eye.gotoAndStop(_currentframe); } frame 39 { head.eye.eye.gotoAndStop(_currentframe); } frame 40 { head.eye.eye.gotoAndStop(_currentframe); } frame 41 { head.eye.eye.gotoAndStop(_currentframe); } frame 42 { head.eye.eye.gotoAndStop(_currentframe); } frame 43 { head.eye.eye.gotoAndStop(_currentframe); } frame 44 { head.eye.eye.gotoAndStop(_currentframe); } frame 45 { head.eye.eye.gotoAndStop(_currentframe); } frame 46 { head.eye.eye.gotoAndStop(_currentframe); } frame 47 { head.eye.eye.gotoAndStop(_currentframe); } frame 48 { head.eye.eye.gotoAndStop(_currentframe); } frame 49 { head.eye.eye.gotoAndStop(_currentframe); } frame 50 { head.eye.eye.gotoAndStop(_currentframe); } frame 51 { head.eye.eye.gotoAndStop(_currentframe); } frame 52 { head.eye.eye.gotoAndStop(_currentframe); } frame 53 { head.eye.eye.gotoAndStop(_currentframe); } frame 54 { head.eye.eye.gotoAndStop(_currentframe); } frame 55 { head.eye.eye.gotoAndStop(_currentframe); } frame 56 { head.eye.eye.gotoAndStop(_currentframe); } frame 57 { head.eye.eye.gotoAndStop(_currentframe); } frame 58 { head.eye.eye.gotoAndStop(_currentframe); } frame 59 { head.eye.eye.gotoAndStop(_currentframe); } frame 60 { head.eye.eye.gotoAndStop(_currentframe); } frame 61 { head.eye.eye.gotoAndStop(_currentframe); } frame 62 { head.eye.eye.gotoAndStop(_currentframe); } frame 63 { head.eye.eye.gotoAndStop(_currentframe); } frame 64 { head.eye.eye.gotoAndStop(_currentframe); } frame 65 { head.eye.eye.gotoAndStop(_currentframe); } frame 66 { head.eye.eye.gotoAndStop(_currentframe); } frame 67 { head.eye.eye.gotoAndStop(_currentframe); } frame 68 { head.eye.eye.gotoAndStop(_currentframe); } frame 69 { head.eye.eye.gotoAndStop(_currentframe); } frame 70 { head.eye.eye.gotoAndStop(_currentframe); } frame 71 { head.eye.eye.gotoAndStop(_currentframe); } frame 72 { head.eye.eye.gotoAndStop(_currentframe); } frame 73 { head.eye.eye.gotoAndStop(_currentframe); } frame 74 { head.eye.eye.gotoAndStop(_currentframe); } frame 75 { head.eye.eye.gotoAndStop(_currentframe); } frame 76 { head.eye.eye.gotoAndStop(_currentframe); } frame 77 { head.eye.eye.gotoAndStop(_currentframe); } frame 78 { head.eye.eye.gotoAndStop(_currentframe); } frame 79 { head.eye.eye.gotoAndStop(_currentframe); } frame 80 { head.eye.eye.gotoAndStop(_currentframe); } frame 81 { head.eye.eye.gotoAndStop(_currentframe); } frame 82 { head.eye.eye.gotoAndStop(_currentframe); } frame 83 { head.eye.eye.gotoAndStop(_currentframe); } frame 84 { head.eye.eye.gotoAndStop(_currentframe); } frame 85 { head.eye.eye.gotoAndStop(_currentframe); } frame 86 { head.eye.eye.gotoAndStop(_currentframe); } frame 87 { head.eye.eye.gotoAndStop(_currentframe); } frame 88 { head.eye.eye.gotoAndStop(_currentframe); } frame 89 { head.eye.eye.gotoAndStop(_currentframe); } frame 90 { head.eye.eye.gotoAndStop(_currentframe); } frame 91 { head.eye.eye.gotoAndStop(_currentframe); } frame 92 { head.eye.eye.gotoAndStop(_currentframe); } frame 93 { head.eye.eye.gotoAndStop(_currentframe); } frame 94 { head.eye.eye.gotoAndStop(_currentframe); } frame 95 { head.eye.eye.gotoAndStop(_currentframe); } frame 96 { head.eye.eye.gotoAndStop(_currentframe); } frame 97 { head.eye.eye.gotoAndStop(_currentframe); } frame 98 { head.eye.eye.gotoAndStop(_currentframe); } frame 99 { head.eye.eye.gotoAndStop(_currentframe); } frame 100 { head.eye.eye.gotoAndStop(_currentframe); } frame 101 { head.eye.eye.gotoAndStop(_currentframe); } frame 102 { head.eye.eye.gotoAndStop(_currentframe); } frame 103 { head.eye.eye.gotoAndStop(_currentframe); } frame 104 { head.eye.eye.gotoAndStop(_currentframe); } frame 105 { head.eye.eye.gotoAndStop(_currentframe); } frame 106 { head.eye.eye.gotoAndStop(_currentframe); } frame 107 { head.eye.eye.gotoAndStop(_currentframe); } frame 108 { head.eye.eye.gotoAndStop(_currentframe); } frame 109 { head.eye.eye.gotoAndStop(_currentframe); } frame 110 { head.eye.eye.gotoAndStop(_currentframe); } frame 111 { head.eye.eye.gotoAndStop(_currentframe); } frame 112 { head.eye.eye.gotoAndStop(_currentframe); } frame 113 { head.eye.eye.gotoAndStop(_currentframe); } frame 114 { head.eye.eye.gotoAndStop(_currentframe); } frame 115 { head.eye.eye.gotoAndStop(_currentframe); } frame 116 { head.eye.eye.gotoAndStop(_currentframe); } frame 117 { head.eye.eye.gotoAndStop(_currentframe); } frame 118 { head.eye.eye.gotoAndStop(_currentframe); } frame 119 { head.eye.eye.gotoAndStop(_currentframe); } frame 120 { head.eye.eye.gotoAndStop(_currentframe); } frame 121 { head.eye.eye.gotoAndStop(_currentframe); } } movieClip 681 { } movieClip 682 { } movieClip 684 { 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 707 { } movieClip 708 { 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 712 { } movieClip 721 { frame 1 { onEnterFrame = function () { gotoAndStop(random(8) + 1); }; } } movieClip 722 { } movieClip 723 { frame 1 { stop(); } frame 31 { stop(); } frame 47 { stop(); _parent.next_btn._visible = true; } } movieClip 728 { frame 1 { _parent.panel._visible = false; } frame 11 { stop(); next_btn.onPress = function () { play(); }; } frame 41 { stop(); _parent.panel._visible = true; } } movieClip 730 screen2 { frame 1 { stop(); next_btn._visible = false; next_btn.onPress = function () { if (_root.endgamevar == true) { _root.gotoScreen('screen9'); } else { _root.gotoScreen('screen3'); } }; anim_manager = new AnimManager(act, panel); anim_manager.AddAct({'btn_name': 'btn_0', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 20, 'auto_speed': 0.04, 'face_settings': 'head=1, head1=1'}); anim_manager.AddAct({'btn_name': 'btn_1', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 60, 'auto_speed': 0.06, 'face_settings': 'head=2, head1=2'}); anim_manager.AddAct({'btn_name': 'btn_2', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 90, 'auto_speed': 0.12, 'face_settings': 'head=3, head1=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, head1=4'}); anim_manager.AddAct({'btn_name': 'btn_manually', 'type': AnimAct.TYPE_PENDULUM_MANUAL, 'frame_start': 1, 'frame_end': 121, 'mouse_movement': AnimAct.HORIZONTAL_MOVEMENT, 'reverse_mouse_control': 1, 'pixel_start': 200, 'pixel_width': 220, 'face_settings': 'head=1, head1=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=4, head1=4', 'cum_clips': 'cum1', 'face_settings_after_cum': 'head=1, head1=1'}); anim_manager.AddSwing({'clip_name': 'boob1', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 0}); anim_manager.AddSwing({'clip_name': 'nipple1', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 0}); anim_manager.AddSwing({'clip_name': 'boob2', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 1, 'reverse': 0}); anim_manager.AddSwing({'clip_name': 'boob3', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 0}); anim_manager.AddSwing({'clip_name': 'boob33', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 0}); anim_manager.AddSwing({'clip_name': 'boob3.hair', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 0}); anim_manager.AddSwing({'clip_name': 'boob3.nipple2', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 0}); anim_manager.AddSwing({'clip_name': 'boob3.nipple2.nipple', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 1, 'reverse': 0}); anim_manager.AddSwing({'clip_name': 'boob3.nipple2.nipple.nipple', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 1, 'reverse': 0}); anim_manager.AddSwing({'clip_name': 'boob3.nipple2.nipple.nipple1', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 1, 'reverse': 0}); anim_manager.AddSwing({'clip_name': 'boob4', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 1, 'reverse': 0}); anim_manager.AddSwing({'clip_name': 'boob44', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 1, 'reverse': 0}); anim_manager.AddSwing({'clip_name': 'boob4.nipple', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 0}); anim_manager.AddSwing({'clip_name': 'boob4.nipple.nipple', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 0}); anim_manager.AddSwing({'clip_name': 'hair1', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 0}); anim_manager.AddSwing({'clip_name': 'hair2', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 0}); anim_manager.AddSwing({'clip_name': 'hair3', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 0}); anim_manager.AddSwing({'clip_name': 'hair4', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 0}); anim_manager.AddSwing({'clip_name': 'hair5', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 1}); anim_manager.AddSwing({'clip_name': 'hair5.hair', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 1}); anim_manager.AddSwing({'clip_name': 'hair6', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 0}); anim_manager.AddSwing({'clip_name': 'hair7', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 0}); anim_manager.AddSwing({'clip_name': 'hair8', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 0}); anim_manager.AddSwing({'clip_name': 'head1.hair1.hair', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 1}); anim_manager.AddSwing({'clip_name': 'head1.hair1', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 1}); anim_manager.AddSwing({'clip_name': 'head1.hair2', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 1}); anim_manager.AddSwing({'clip_name': 'head1.hair3', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 1}); anim_manager.AddSwing({'clip_name': 'ass1', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 1}); anim_manager.AddSwing({'clip_name': 'ass2', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 1}); onEnterFrame = function () { anim_manager.Update(_xmouse, _ymouse); }; } } movieClip 740 { } movieClip 741 { } movieClip 753 { } movieClip 755 { } movieClip 757 { } movieClip 759 { } movieClip 760 { } movieClip 762 { } movieClip 764 { } movieClip 766 { } movieClip 768 { } movieClip 770 { } movieClip 772 { } movieClip 773 { } movieClip 775 { } movieClip 781 { } movieClip 793 { } movieClip 798 { } movieClip 800 { } movieClip 806 { } movieClip 808 { } movieClip 809 { } movieClip 817 { } movieClip 824 { } movieClip 826 { } movieClip 827 { } movieClip 841 { } movieClip 844 { } movieClip 845 { } movieClip 847 { } movieClip 849 { } movieClip 851 { } movieClip 853 { } movieClip 856 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 35 { randomFlag(); } frame 69 { randomFlag(); } } movieClip 867 { } movieClip 880 { } movieClip 884 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 60 { randomFlag(); } frame 120 { randomFlag(); } } movieClip 894 { } movieClip 898 { } movieClip 900 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 30 { randomFlag(); } frame 59 { randomFlag(); } } movieClip 902 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 60 { randomFlag(); } frame 120 { randomFlag(); } } movieClip 905 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 25 { randomFlag(); } frame 49 { randomFlag(); } } movieClip 907 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 60 { randomFlag(); } frame 120 { randomFlag(); } } movieClip 908 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 20 { randomFlag(); } frame 39 { randomFlag(); } } movieClip 909 { frame 1 { stop(); } } movieClip 911 { } movieClip 913 { } movieClip 926 { } movieClip 928 { } movieClip 930 { } movieClip 940 { } movieClip 946 { } movieClip 948 { } movieClip 950 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 92 { randomFlag(); } frame 195 { randomFlag(); } } movieClip 958 { } movieClip 960 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 60 { randomFlag(); } frame 115 { randomFlag(); } } movieClip 962 { } movieClip 964 { } movieClip 968 { } movieClip 970 { } movieClip 971 { } movieClip 975 { } movieClip 987 { } movieClip 1010 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(4) + 1)); }; randomFlag(); } frame 51 { randomFlag(); } frame 70 { randomFlag(); } frame 75 { randomFlag(); } } movieClip 1025 { } movieClip 1027 { } movieClip 1029 { } movieClip 1030 { } movieClip 1032 { } movieClip 1039 { } movieClip 1048 { } movieClip 1070 { } movieClip 1077 { } movieClip 1079 { } movieClip 1091 { } movieClip 1093 { } movieClip 1111 { } movieClip 1118 { } movieClip 1120 { } movieClip 1121 { } movieClip 1130 { } movieClip 1139 { } movieClip 1141 { } movieClip 1143 { } movieClip 1157 { } movieClip 1160 { } movieClip 1162 { } movieClip 1164 { } movieClip 1166 { } movieClip 1168 { } movieClip 1182 { } movieClip 1192 { } movieClip 1204 { } movieClip 1206 { } movieClip 1234 { frame 1 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 2 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 3 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 4 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 5 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 6 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 7 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 8 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 9 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 10 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 11 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 12 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 13 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 14 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 15 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 16 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 17 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 18 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 19 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 20 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 21 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 22 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 23 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 24 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 25 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 26 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 27 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 28 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 29 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 30 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 31 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 32 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 33 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 34 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 35 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 36 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 37 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 38 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 39 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 40 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 41 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 42 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 43 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 44 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 45 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 46 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 47 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 48 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 49 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 50 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 51 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 52 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 53 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 54 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 55 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 56 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 57 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 58 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 59 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 60 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 61 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 62 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 63 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 64 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 65 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 66 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 67 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 68 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 69 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 70 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 71 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 72 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 73 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 74 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 75 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 76 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 77 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 78 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 79 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 80 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 81 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 82 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 83 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 84 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 85 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 86 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 87 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 88 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 89 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 90 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 91 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 92 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 93 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 94 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 95 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 96 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 97 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 98 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 99 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 100 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 101 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 102 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 103 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 104 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 105 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 106 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 107 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 108 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 109 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 110 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 111 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 112 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 113 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 114 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 115 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 116 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 117 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 118 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 119 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 120 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } frame 121 { act.leg1.gotoAndStop(_currentframe); act.leg2.gotoAndStop(_currentframe); } } movieClip 1235 { 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.panel1._visible = false; _parent.cumscr.gotoAndPlay(2); }; } } movieClip 1245 { } movieClip 1246 { frame 1 { function onBarFilled() { btn_manually._visible = true; } var i = 0; var btn_id = 0; 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 1248 { frame 1 { stop(); } frame 31 { stop(); } frame 47 { stop(); _parent.next_btn._visible = true; } } movieClip 1249 screen3 { frame 1 { stop(); next_btn._visible = false; next_btn.onPress = function () { if (_root.endgamevar == true) { _root.gotoScreen('screen9'); } else { _root.gotoScreen('screen4'); } }; anim_manager1 = new AnimManager(act, panel1); panel1.anim_manager = anim_manager1; anim_manager2 = new AnimManager(act.act, panel2); panel2.anim_manager = anim_manager2; anim_manager1.AddAct({'btn_name': 'btn_0', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 20, 'auto_speed': 0.04, 'face_settings': 'head1=1,head2=1'}); anim_manager1.AddAct({'btn_name': 'btn_1', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 121, 'auto_speed': 0.06, 'face_settings': 'head1=2,head2=2'}); anim_manager1.AddAct({'btn_name': 'btn_2', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 121, 'auto_speed': 0.12, 'face_settings': 'head1=3,head2=3'}); anim_manager1.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_manager1.AddAct({'btn_name': 'btn_manually', 'type': AnimAct.TYPE_PENDULUM_MANUAL, 'frame_start': 1, 'frame_end': 121, 'mouse_movement': AnimAct.VERTICAL_MOVEMENT, 'reverse_mouse_control': 1, 'pixel_start': 140, 'pixel_width': 200, 'face_settings': 'head1=1,head2=1'}); anim_manager1.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_manager2.AddAct({'btn_name': 'btn_0', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 20, 'auto_speed': 0.04, 'face_settings': 'head=1'}); anim_manager2.AddAct({'btn_name': 'btn_1', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 60, 'auto_speed': 0.05, 'face_settings': 'head=2'}); anim_manager2.AddAct({'btn_name': 'btn_2', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 90, 'auto_speed': 0.11, 'face_settings': 'head=3'}); anim_manager2.AddAct({'btn_name': 'btn_3', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 121, 'auto_speed': 0.21, 'face_settings': 'head=4'}); anim_manager2.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': 220, 'pixel_width': 200, 'face_settings': 'head=1'}); anim_manager2.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_manager1.AddSwing({'clip_name': 'boob1', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 0}); anim_manager1.AddSwing({'clip_name': 'boob2', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 1, 'reverse': 0}); anim_manager1.AddSwing({'clip_name': 'boob1.nipple', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 0}); anim_manager1.AddSwing({'clip_name': 'boob2.nipple', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 0}); anim_manager1.AddSwing({'clip_name': 'boob3', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 0}); anim_manager1.AddSwing({'clip_name': 'boob33', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 0}); anim_manager1.AddSwing({'clip_name': 'boob4', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 1, 'reverse': 0}); anim_manager1.AddSwing({'clip_name': 'boob3.nipple', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 1, 'reverse': 0}); anim_manager1.AddSwing({'clip_name': 'boob3.nipple.nipple', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 0}); anim_manager1.AddSwing({'clip_name': 'boob4.nipple', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 0}); anim_manager1.AddSwing({'clip_name': 'boob4.nipple.nipple', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 0}); anim_manager1.AddSwing({'clip_name': 'hair1', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 0}); anim_manager1.AddSwing({'clip_name': 'hair2', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 0}); anim_manager1.AddSwing({'clip_name': 'hair3', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 0}); anim_manager1.AddSwing({'clip_name': 'hair4', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 0}); anim_manager1.AddSwing({'clip_name': 'hair5', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 0}); anim_manager1.AddSwing({'clip_name': 'hair6', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 0}); anim_manager1.AddSwing({'clip_name': 'hair7', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 0}); anim_manager1.AddSwing({'clip_name': 'hair8', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 0}); anim_manager1.AddSwing({'clip_name': 'hair9', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 0}); anim_manager1.AddSwing({'clip_name': 'head2.hair1', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 1}); anim_manager1.AddSwing({'clip_name': 'head2.hair1.hair', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 1}); anim_manager1.AddSwing({'clip_name': 'head2.hair2', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 1}); anim_manager1.AddSwing({'clip_name': 'head2.hair3', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 1}); anim_manager2.AddSwing({'clip_name': 'ass1', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 1}); anim_manager2.AddSwing({'clip_name': 'ass2', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 1}); onEnterFrame = function () { anim_manager1.Update(_xmouse, _ymouse); anim_manager2.Update(_xmouse, _ymouse); }; } } movieClip 1262 { } movieClip 1264 { } movieClip 1266 { } movieClip 1268 { } movieClip 1270 { } movieClip 1272 { } movieClip 1274 { } movieClip 1276 { } movieClip 1278 { } movieClip 1282 { } movieClip 1284 { } movieClip 1286 { } movieClip 1288 { } movieClip 1290 { } movieClip 1292 { } movieClip 1294 { } movieClip 1306 { } movieClip 1308 { } movieClip 1310 { } movieClip 1321 { } movieClip 1334 { } movieClip 1339 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 60 { randomFlag(); } frame 120 { randomFlag(); } } movieClip 1349 { } movieClip 1353 { } movieClip 1354 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 90 { randomFlag(); } frame 200 { randomFlag(); } } movieClip 1356 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 60 { randomFlag(); } frame 120 { randomFlag(); } } movieClip 1357 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 90 { randomFlag(); } frame 200 { randomFlag(); } } movieClip 1359 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 60 { randomFlag(); } frame 120 { randomFlag(); } } movieClip 1360 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 90 { randomFlag(); } frame 200 { randomFlag(); } } movieClip 1361 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 90 { randomFlag(); } frame 200 { randomFlag(); } } movieClip 1362 { frame 1 { stop(); } } movieClip 1373 { } movieClip 1375 { } movieClip 1377 { } movieClip 1380 { } movieClip 1382 { } movieClip 1384 { } movieClip 1392 { } movieClip 1394 { } movieClip 1396 { } movieClip 1397 { } movieClip 1398 { } movieClip 1408 { } movieClip 1415 { } movieClip 1417 { } movieClip 1419 { } movieClip 1420 { } movieClip 1421 { } movieClip 1431 { } movieClip 1443 { } movieClip 1445 { } movieClip 1448 { } movieClip 1462 { } movieClip 1463 { } movieClip 1473 { } movieClip 1475 { } movieClip 1477 { } movieClip 1479 { } movieClip 1481 { } movieClip 1483 { } movieClip 1489 { } movieClip 1491 { } movieClip 1493 { } movieClip 1500 { } movieClip 1502 { } movieClip 1504 { } movieClip 1516 { } movieClip 1521 { } movieClip 1530 { } movieClip 1532 { } movieClip 1534 { } movieClip 1543 { } movieClip 1545 { } movieClip 1547 { } movieClip 1550 { } movieClip 1552 { } movieClip 1556 { } movieClip 1558 { } movieClip 1559 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 60 { randomFlag(); } frame 120 { randomFlag(); } } movieClip 1562 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 35 { randomFlag(); } frame 69 { randomFlag(); } } movieClip 1565 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 92 { randomFlag(); } frame 195 { randomFlag(); } } movieClip 1569 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 60 { randomFlag(); } frame 120 { randomFlag(); } } movieClip 1572 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 30 { randomFlag(); } frame 59 { randomFlag(); } } movieClip 1576 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 60 { randomFlag(); } frame 120 { randomFlag(); } } movieClip 1579 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 25 { randomFlag(); } frame 49 { randomFlag(); } } movieClip 1582 { frame 1 { randomFlag = function () { gotoAndPlay('flag' + (random(2) + 1)); }; randomFlag(); } frame 20 { randomFlag(); } frame 39 { randomFlag(); } } movieClip 1583 { frame 1 { stop(); } } movieClip 1599 { } movieClip 1610 { } movieClip 1691 { frame 1 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 2 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 3 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 4 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 5 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 6 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 7 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 8 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 9 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 10 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 11 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 12 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 13 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 14 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 15 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 16 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 17 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 18 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 19 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 20 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 21 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 22 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 23 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 24 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 25 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 26 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 27 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 28 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 29 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 30 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 31 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 32 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 33 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 34 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 35 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 36 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 37 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 38 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 39 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 40 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 41 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 42 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 43 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 44 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 45 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 46 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 47 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 48 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 49 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 50 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 51 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 52 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 53 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 54 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 55 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 56 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 57 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 58 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 59 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 60 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 61 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 62 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 63 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 64 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 65 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 66 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 67 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 68 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 69 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 70 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 71 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 72 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 73 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 74 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 75 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 76 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 77 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 78 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 79 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 80 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 81 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 82 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 83 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 84 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 85 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 86 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 87 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 88 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 89 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 90 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 91 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 92 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 93 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 94 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 95 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 96 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 97 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 98 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 99 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 100 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 101 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 102 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 103 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 104 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 105 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 106 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 107 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 108 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 109 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 110 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 111 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 112 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 113 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 114 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 115 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 116 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 117 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 118 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 119 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 120 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } frame 121 { tentacle.gotoAndStop(_currentframe); tentacle1.gotoAndStop(_currentframe); } } movieClip 1693 { } movieClip 1695 { } movieClip 1697 { } movieClip 1699 { } movieClip 1702 { } movieClip 1704 { } movieClip 1706 { } movieClip 1709 { } movieClip 1736 { frame 1 { act.hair.gotoAndStop(_currentframe); } frame 2 { act.hair.gotoAndStop(_currentframe); } frame 3 { act.hair.gotoAndStop(_currentframe); } frame 4 { act.hair.gotoAndStop(_currentframe); } frame 5 { act.hair.gotoAndStop(_currentframe); } frame 6 { act.hair.gotoAndStop(_currentframe); } frame 7 { act.hair.gotoAndStop(_currentframe); } frame 8 { act.hair.gotoAndStop(_currentframe); } frame 9 { act.hair.gotoAndStop(_currentframe); } frame 10 { act.hair.gotoAndStop(_currentframe); } frame 11 { act.hair.gotoAndStop(_currentframe); } frame 12 { act.hair.gotoAndStop(_currentframe); } frame 13 { act.hair.gotoAndStop(_currentframe); } frame 14 { act.hair.gotoAndStop(_currentframe); } frame 15 { act.hair.gotoAndStop(_currentframe); } frame 16 { act.hair.gotoAndStop(_currentframe); } frame 17 { act.hair.gotoAndStop(_currentframe); } frame 18 { act.hair.gotoAndStop(_currentframe); } frame 19 { act.hair.gotoAndStop(_currentframe); } frame 20 { act.hair.gotoAndStop(_currentframe); } frame 21 { act.hair.gotoAndStop(_currentframe); } frame 22 { act.hair.gotoAndStop(_currentframe); } frame 23 { act.hair.gotoAndStop(_currentframe); } frame 24 { act.hair.gotoAndStop(_currentframe); } frame 25 { act.hair.gotoAndStop(_currentframe); } frame 26 { act.hair.gotoAndStop(_currentframe); } frame 27 { act.hair.gotoAndStop(_currentframe); } frame 28 { act.hair.gotoAndStop(_currentframe); } frame 29 { act.hair.gotoAndStop(_currentframe); } frame 30 { act.hair.gotoAndStop(_currentframe); } frame 31 { act.hair.gotoAndStop(_currentframe); } frame 32 { act.hair.gotoAndStop(_currentframe); } frame 33 { act.hair.gotoAndStop(_currentframe); } frame 34 { act.hair.gotoAndStop(_currentframe); } frame 35 { act.hair.gotoAndStop(_currentframe); } frame 36 { act.hair.gotoAndStop(_currentframe); } frame 37 { act.hair.gotoAndStop(_currentframe); } frame 38 { act.hair.gotoAndStop(_currentframe); } frame 39 { act.hair.gotoAndStop(_currentframe); } frame 40 { act.hair.gotoAndStop(_currentframe); } frame 41 { act.hair.gotoAndStop(_currentframe); } frame 42 { act.hair.gotoAndStop(_currentframe); } frame 43 { act.hair.gotoAndStop(_currentframe); } frame 44 { act.hair.gotoAndStop(_currentframe); } frame 45 { act.hair.gotoAndStop(_currentframe); } frame 46 { act.hair.gotoAndStop(_currentframe); } frame 47 { act.hair.gotoAndStop(_currentframe); } frame 48 { act.hair.gotoAndStop(_currentframe); } frame 49 { act.hair.gotoAndStop(_currentframe); } frame 50 { act.hair.gotoAndStop(_currentframe); } frame 51 { act.hair.gotoAndStop(_currentframe); } frame 52 { act.hair.gotoAndStop(_currentframe); } frame 53 { act.hair.gotoAndStop(_currentframe); } frame 54 { act.hair.gotoAndStop(_currentframe); } frame 55 { act.hair.gotoAndStop(_currentframe); } frame 56 { act.hair.gotoAndStop(_currentframe); } frame 57 { act.hair.gotoAndStop(_currentframe); } frame 58 { act.hair.gotoAndStop(_currentframe); } frame 59 { act.hair.gotoAndStop(_currentframe); } frame 60 { act.hair.gotoAndStop(_currentframe); } frame 61 { act.hair.gotoAndStop(_currentframe); } frame 62 { act.hair.gotoAndStop(_currentframe); } frame 63 { act.hair.gotoAndStop(_currentframe); } frame 64 { act.hair.gotoAndStop(_currentframe); } frame 65 { act.hair.gotoAndStop(_currentframe); } frame 66 { act.hair.gotoAndStop(_currentframe); } frame 67 { act.hair.gotoAndStop(_currentframe); } frame 68 { act.hair.gotoAndStop(_currentframe); } frame 69 { act.hair.gotoAndStop(_currentframe); } frame 70 { act.hair.gotoAndStop(_currentframe); } frame 71 { act.hair.gotoAndStop(_currentframe); } frame 72 { act.hair.gotoAndStop(_currentframe); } frame 73 { act.hair.gotoAndStop(_currentframe); } frame 74 { act.hair.gotoAndStop(_currentframe); } frame 75 { act.hair.gotoAndStop(_currentframe); } frame 76 { act.hair.gotoAndStop(_currentframe); } frame 77 { act.hair.gotoAndStop(_currentframe); } frame 78 { act.hair.gotoAndStop(_currentframe); } frame 79 { act.hair.gotoAndStop(_currentframe); } frame 80 { act.hair.gotoAndStop(_currentframe); } frame 81 { act.hair.gotoAndStop(_currentframe); } frame 82 { act.hair.gotoAndStop(_currentframe); } frame 83 { act.hair.gotoAndStop(_currentframe); } frame 84 { act.hair.gotoAndStop(_currentframe); } frame 85 { act.hair.gotoAndStop(_currentframe); } frame 86 { act.hair.gotoAndStop(_currentframe); } frame 87 { act.hair.gotoAndStop(_currentframe); } frame 88 { act.hair.gotoAndStop(_currentframe); } frame 89 { act.hair.gotoAndStop(_currentframe); } frame 90 { act.hair.gotoAndStop(_currentframe); } frame 91 { act.hair.gotoAndStop(_currentframe); } frame 92 { act.hair.gotoAndStop(_currentframe); } frame 93 { act.hair.gotoAndStop(_currentframe); } frame 94 { act.hair.gotoAndStop(_currentframe); } frame 95 { act.hair.gotoAndStop(_currentframe); } frame 96 { act.hair.gotoAndStop(_currentframe); } frame 97 { act.hair.gotoAndStop(_currentframe); } frame 98 { act.hair.gotoAndStop(_currentframe); } frame 99 { act.hair.gotoAndStop(_currentframe); } frame 100 { act.hair.gotoAndStop(_currentframe); } frame 101 { act.hair.gotoAndStop(_currentframe); } frame 102 { act.hair.gotoAndStop(_currentframe); } frame 103 { act.hair.gotoAndStop(_currentframe); } frame 104 { act.hair.gotoAndStop(_currentframe); } frame 105 { act.hair.gotoAndStop(_currentframe); } frame 106 { act.hair.gotoAndStop(_currentframe); } frame 107 { act.hair.gotoAndStop(_currentframe); } frame 108 { act.hair.gotoAndStop(_currentframe); } frame 109 { act.hair.gotoAndStop(_currentframe); } frame 110 { act.hair.gotoAndStop(_currentframe); } frame 111 { act.hair.gotoAndStop(_currentframe); } frame 112 { act.hair.gotoAndStop(_currentframe); } frame 113 { act.hair.gotoAndStop(_currentframe); } frame 114 { act.hair.gotoAndStop(_currentframe); } frame 115 { act.hair.gotoAndStop(_currentframe); } frame 116 { act.hair.gotoAndStop(_currentframe); } frame 117 { act.hair.gotoAndStop(_currentframe); } frame 118 { act.hair.gotoAndStop(_currentframe); } frame 119 { act.hair.gotoAndStop(_currentframe); } frame 120 { act.hair.gotoAndStop(_currentframe); } frame 121 { act.hair.gotoAndStop(_currentframe); } } movieClip 1737 { 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.panel1._visible = false; _parent.cumscr.gotoAndPlay(2); }; btn_1.postOnPress = function () { _root.gotoScreen('screen_demo'); }; } } movieClip 1738 { frame 1 { stop(); } frame 31 { stop(); } frame 47 { stop(); _parent.next_btn._visible = true; } } movieClip 1739 screen4 { frame 1 { stop(); next_btn._visible = false; next_btn.onPress = function () { if (_root.endgamevar == true) { _root.gotoScreen('screen9'); } else { _root.gotoScreen('screen5'); } }; anim_manager1 = new AnimManager(act, panel1); panel1.anim_manager = anim_manager1; anim_manager2 = new AnimManager(act.act, panel2); panel2.anim_manager = anim_manager2; anim_manager1.AddAct({'btn_name': 'btn_0', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 20, 'auto_speed': 0.04, 'face_settings': 'head1=1,head2=1'}); anim_manager1.AddAct({'btn_name': 'btn_1', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 121, 'auto_speed': 0.06, 'face_settings': 'head1=2,head2=2'}); anim_manager1.AddAct({'btn_name': 'btn_2', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 121, 'auto_speed': 0.12, 'face_settings': 'head1=3,head2=3'}); anim_manager1.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_manager1.AddAct({'btn_name': 'btn_manually', 'type': AnimAct.TYPE_PENDULUM_MANUAL, 'frame_start': 1, 'frame_end': 121, 'mouse_movement': AnimAct.VERTICAL_MOVEMENT, 'reverse_mouse_control': 1, 'pixel_start': 140, 'pixel_width': 200, 'face_settings': 'head1=1,head2=1'}); anim_manager1.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_manager2.AddAct({'btn_name': 'btn_0', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 50, 'frame_end': 70, 'auto_speed': 0.04, 'face_settings': 'head=1'}); anim_manager2.AddAct({'btn_name': 'btn_1', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 30, 'frame_end': 90, 'auto_speed': 0.05, 'face_settings': 'head=2'}); anim_manager2.AddAct({'btn_name': 'btn_2', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 15, 'frame_end': 105, 'auto_speed': 0.11, 'face_settings': 'head=3'}); anim_manager2.AddAct({'btn_name': 'btn_3', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 121, 'auto_speed': 0.21, 'face_settings': 'head=4'}); anim_manager2.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': 220, 'pixel_width': 200, 'face_settings': 'head=1'}); anim_manager2.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_manager1.AddSwing({'clip_name': 'boob1', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 0}); anim_manager1.AddSwing({'clip_name': 'boob3', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 0}); anim_manager1.AddSwing({'clip_name': 'boob1.nipple', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 1, 'reverse': 0}); anim_manager1.AddSwing({'clip_name': 'boob1.nipple.nipple', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 0}); anim_manager1.AddSwing({'clip_name': 'boob2', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 1, 'reverse': 0}); anim_manager1.AddSwing({'clip_name': 'boob4', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 1, 'reverse': 0}); anim_manager1.AddSwing({'clip_name': 'boob2.nipple', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 0}); anim_manager1.AddSwing({'clip_name': 'boob2.nipple.nipple', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 1, 'reverse': 0}); anim_manager1.AddSwing({'clip_name': 'hair1', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 1}); anim_manager1.AddSwing({'clip_name': 'hair2', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 1}); anim_manager1.AddSwing({'clip_name': 'hair3', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 1}); anim_manager1.AddSwing({'clip_name': 'head1.hair1', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 1}); anim_manager1.AddSwing({'clip_name': 'head1.hair1.hair', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 1}); anim_manager1.AddSwing({'clip_name': 'head1.hair2', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 1}); anim_manager1.AddSwing({'clip_name': 'head1.hair3', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 1}); anim_manager1.AddSwing({'clip_name': 'foot1', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 1}); anim_manager1.AddSwing({'clip_name': 'foot2', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 1}); anim_manager1.AddSwing({'clip_name': 'foot3', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 1}); anim_manager2.AddSwing({'clip_name': 'hair.hair', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 0}); anim_manager2.AddSwing({'clip_name': 'hair1', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 0}); anim_manager2.AddSwing({'clip_name': 'hair2', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 0}); anim_manager2.AddSwing({'clip_name': 'hair3', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 0}); onEnterFrame = function () { anim_manager1.Update(_xmouse, _ymouse); anim_manager2.Update(_xmouse, _ymouse); }; } } movieClip 1741 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 1742 { } 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/208127/info.shtml
Created: 9/10 -2018 05:27:37 Last modified: 9/10 -2018 05:27:37 Server time: 20/04 -2024 06:06:00