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

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

Twin-Fight! Cracked (Tickle Fight Flash Game) by illionore.swf

This is the info page for
Flash #181864

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


Text
TWIN-FIGHT!

Start

llionore

Entertainment

<p align="right"><font face="Arial" size="14" color="#ffffff" letterSpacing="0.000000" kerning="1">Loading... please wait.</font></p>

Code: (optional!)

<p align="left"></p>

Today:

Mud Fight!

<p align="left"><font face="Broadway" size="22" color="#ffffff" letterSpacing="0.000000" kerning="1">Katie</font></p>

<p align="right"><font face="Broadway" size="22" color="#ffffff" letterSpacing="0.000000" kerning="1">Elli</font></p>

vs.

<p align="center"><font face="Mistral" size="30" color="#0099cc" letterSpacing="0.000000" kerning="1">Name of one contestant...</font></p>

<p align="center"><font face="Mistral" size="30" color="#ce2900" letterSpacing="0.000000" kerning="1">Name of one contestant...</font></p>

<p align="left"><font face="Mistral" size="24" color="#ffffff" letterSpacing="0.000000" kerning="1">Beach Arenafg</font></p>

Location

Round:

<p align="center"><font face="Mistral" size="24" color="#ffffff" letterSpacing="0.000000" kerning="1">1</font></p>

console

<p align="center"><font face="Arial" size="12" color="#ffffff" letterSpacing="0.000000" kerning="1">2</font></p>

Skirt

Bra

Panties

Socks

Paused

Guy

Scene

<p align="center"><font face="Mistral" size="25" color="#000000" letterSpacing="0.000000" kerning="1">Namef1</font></p>

LOST!

Too bad.
Better luck next time!

Play another round

Return to settings

Bonus: MUDFIGHT!

*) Mudfight requires winning.

WON!

Well done! How about
a rematch in the mud?

WON!

Mudfight preview

*) In order to play the mudfight,
customize the skin and hair
colour, style, and choose from
two additional scene settings,
you will need to purchase the
code. Doing this will help sup-
porting the creation of mini
games like this.

Twin-Fight!

pony tails

pony tails

braids

braids

Begin Game

If you have provided the correct code at the title screen, you can switch
the hair style above, choose a background of your choice below,
change the names of the twins and click on the slider bars to change
the hair colour and skin colour to your liking AND you gain access to
the console menu during the game.

<p align="left"><font face="Broadway" size="20" color="#ffffff" letterSpacing="0.000000" kerning="1">Katie</font></p>

<p align="left"><font face="Broadway" size="20" color="#ffffff" letterSpacing="0.000000" kerning="1">Elli</font></p>

Character names:

Skin colour (RGB):

Hair colour (RGB):

Scene:

one of the greatest interactive
tickle fights on the internet
today!

ActionScript [AS3]

Section 1
//None (fl.transitions.easing.None) package fl.transitions.easing { public class None { public static function easeNone(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ return ((((_arg3 * _arg1) / _arg4) + _arg2)); } public static function easeIn(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ return ((((_arg3 * _arg1) / _arg4) + _arg2)); } public static function easeOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ return ((((_arg3 * _arg1) / _arg4) + _arg2)); } public static function easeInOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ return ((((_arg3 * _arg1) / _arg4) + _arg2)); } } }//package fl.transitions.easing
Section 2
//Regular (fl.transitions.easing.Regular) package fl.transitions.easing { public class Regular { public static function easeIn(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ _arg1 = (_arg1 / _arg4); return ((((_arg3 * _arg1) * _arg1) + _arg2)); } public static function easeOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ _arg1 = (_arg1 / _arg4); return ((((-(_arg3) * _arg1) * (_arg1 - 2)) + _arg2)); } public static function easeInOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ _arg1 = (_arg1 / (_arg4 / 2)); if (_arg1 < 1){ return (((((_arg3 / 2) * _arg1) * _arg1) + _arg2)); }; --_arg1; return ((((-(_arg3) / 2) * ((_arg1 * (_arg1 - 2)) - 1)) + _arg2)); } } }//package fl.transitions.easing
Section 3
//Tween (fl.transitions.Tween) package fl.transitions { import flash.events.*; import flash.utils.*; import flash.display.*; public class Tween extends EventDispatcher { public var isPlaying:Boolean;// = false public var obj:Object;// = null public var prop:String;// = "" public var func:Function; public var begin:Number;// = NAN public var change:Number;// = NAN public var useSeconds:Boolean;// = false public var prevTime:Number;// = NAN public var prevPos:Number;// = NAN public var looping:Boolean;// = false private var _duration:Number;// = NAN private var _time:Number;// = NAN private var _fps:Number;// = NAN private var _position:Number;// = NAN private var _startTime:Number;// = NAN private var _intervalID:uint;// = 0 private var _finish:Number;// = NAN private var _timer:Timer;// = null protected static var _mc:MovieClip = new MovieClip(); public function Tween(_arg1:Object, _arg2:String, _arg3:Function, _arg4:Number, _arg5:Number, _arg6:Number, _arg7:Boolean=false){ this.func = function (_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ return ((((_arg3 * _arg1) / _arg4) + _arg2)); }; super(); if (!arguments.length){ return; }; this.obj = _arg1; this.prop = _arg2; this.begin = _arg4; this.position = _arg4; this.duration = _arg6; this.useSeconds = _arg7; if ((_arg3 is Function)){ this.func = _arg3; }; this.finish = _arg5; this._timer = new Timer(100); this.start(); } public function get time():Number{ return (this._time); } public function set time(_arg1:Number):void{ this.prevTime = this._time; if (_arg1 > this.duration){ if (this.looping){ this.rewind((_arg1 - this._duration)); this.update(); this.dispatchEvent(new TweenEvent(TweenEvent.MOTION_LOOP, this._time, this._position)); } else { if (this.useSeconds){ this._time = this._duration; this.update(); }; this.stop(); this.dispatchEvent(new TweenEvent(TweenEvent.MOTION_FINISH, this._time, this._position)); }; } else { if (_arg1 < 0){ this.rewind(); this.update(); } else { this._time = _arg1; this.update(); }; }; } public function get duration():Number{ return (this._duration); } public function set duration(_arg1:Number):void{ this._duration = ((_arg1)<=0) ? Infinity : _arg1; } public function get FPS():Number{ return (this._fps); } public function set FPS(_arg1:Number):void{ var _local2:Boolean = this.isPlaying; this.stopEnterFrame(); this._fps = _arg1; if (_local2){ this.startEnterFrame(); }; } public function get position():Number{ return (this.getPosition(this._time)); } public function set position(_arg1:Number):void{ this.setPosition(_arg1); } public function getPosition(_arg1:Number=NaN):Number{ if (isNaN(_arg1)){ _arg1 = this._time; }; return (this.func(_arg1, this.begin, this.change, this._duration)); } public function setPosition(_arg1:Number):void{ this.prevPos = this._position; if (this.prop.length){ this.obj[this.prop] = (this._position = _arg1); }; this.dispatchEvent(new TweenEvent(TweenEvent.MOTION_CHANGE, this._time, this._position)); } public function get finish():Number{ return ((this.begin + this.change)); } public function set finish(_arg1:Number):void{ this.change = (_arg1 - this.begin); } public function continueTo(_arg1:Number, _arg2:Number):void{ this.begin = this.position; this.finish = _arg1; if (!isNaN(_arg2)){ this.duration = _arg2; }; this.start(); } public function yoyo():void{ this.continueTo(this.begin, this.time); } protected function startEnterFrame():void{ var _local1:Number; if (isNaN(this._fps)){ _mc.addEventListener(Event.ENTER_FRAME, this.onEnterFrame, false, 0, true); } else { _local1 = (1000 / this._fps); this._timer.delay = _local1; this._timer.addEventListener(TimerEvent.TIMER, this.timerHandler, false, 0, true); this._timer.start(); }; this.isPlaying = true; } protected function stopEnterFrame():void{ if (isNaN(this._fps)){ _mc.removeEventListener(Event.ENTER_FRAME, this.onEnterFrame); } else { this._timer.stop(); }; this.isPlaying = false; } public function start():void{ this.rewind(); this.startEnterFrame(); this.dispatchEvent(new TweenEvent(TweenEvent.MOTION_START, this._time, this._position)); } public function stop():void{ this.stopEnterFrame(); this.dispatchEvent(new TweenEvent(TweenEvent.MOTION_STOP, this._time, this._position)); } public function resume():void{ this.fixTime(); this.startEnterFrame(); this.dispatchEvent(new TweenEvent(TweenEvent.MOTION_RESUME, this._time, this._position)); } public function rewind(_arg1:Number=0):void{ this._time = _arg1; this.fixTime(); this.update(); } public function fforward():void{ this.time = this._duration; this.fixTime(); } public function nextFrame():void{ if (this.useSeconds){ this.time = ((getTimer() - this._startTime) / 1000); } else { this.time = (this._time + 1); }; } protected function onEnterFrame(_arg1:Event):void{ this.nextFrame(); } protected function timerHandler(_arg1:TimerEvent):void{ this.nextFrame(); _arg1.updateAfterEvent(); } public function prevFrame():void{ if (!this.useSeconds){ this.time = (this._time - 1); }; } private function fixTime():void{ if (this.useSeconds){ this._startTime = (getTimer() - (this._time * 1000)); }; } private function update():void{ this.setPosition(this.getPosition(this._time)); } } }//package fl.transitions
Section 4
//TweenEvent (fl.transitions.TweenEvent) package fl.transitions { import flash.events.*; public class TweenEvent extends Event { public var time:Number;// = NAN public var position:Number;// = NAN public static const MOTION_START:String = "motionStart"; public static const MOTION_STOP:String = "motionStop"; public static const MOTION_FINISH:String = "motionFinish"; public static const MOTION_CHANGE:String = "motionChange"; public static const MOTION_RESUME:String = "motionResume"; public static const MOTION_LOOP:String = "motionLoop"; public function TweenEvent(_arg1:String, _arg2:Number, _arg3:Number, _arg4:Boolean=false, _arg5:Boolean=false){ super(_arg1, _arg4, _arg5); this.time = _arg2; this.position = _arg3; } override public function clone():Event{ return (new TweenEvent(this.type, this.time, this.position, this.bubbles, this.cancelable)); } } }//package fl.transitions
Section 5
//bg_5 (Twins_fla.bg_5) package Twins_fla { import flash.display.*; public dynamic class bg_5 extends MovieClip { public var nameStrip:MovieClip; public var blueStrip:MovieClip; public var redStrip:MovieClip; public var bgDrop:MovieClip; public function bg_5(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package Twins_fla
Section 6
//bgDrop_6 (Twins_fla.bgDrop_6) package Twins_fla { import flash.display.*; public dynamic class bgDrop_6 extends MovieClip { public function bgDrop_6(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package Twins_fla
Section 7
//btnBraids_48 (Twins_fla.btnBraids_48) package Twins_fla { import flash.display.*; public dynamic class btnBraids_48 extends MovieClip { public function btnBraids_48(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package Twins_fla
Section 8
//btnPonytail_47 (Twins_fla.btnPonytail_47) package Twins_fla { import flash.display.*; public dynamic class btnPonytail_47 extends MovieClip { public function btnPonytail_47(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package Twins_fla
Section 9
//frameGameOver_39 (Twins_fla.frameGameOver_39) package Twins_fla { import flash.display.*; import flash.text.*; public dynamic class frameGameOver_39 extends MovieClip { public var winLose:MovieClip; public var pName:TextField; public function frameGameOver_39(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package Twins_fla
Section 10
//MainTimeline (Twins_fla.MainTimeline) package Twins_fla { import flash.events.*; import fl.transitions.*; import fl.transitions.easing.*; import flash.utils.*; import flash.display.*; import flash.text.*; import flash.geom.*; import flash.ui.*; public dynamic class MainTimeline extends MovieClip { public var cir3:MovieClip; public var girlHair:MovieClip; public var cir4:MovieClip; public var cir5:MovieClip; public var girlSkin:MovieClip; public var btnBreasts:MovieClip; public var btnBelly:MovieClip; public var cir6:MovieClip; public var p1n:TextField; public var btnG1:MovieClip; public var girlTop:MovieClip; public var btnIntroStart:introStartButton; public var btnG2:MovieClip; public var btnButt:MovieClip; public var klaffi:MovieClip; public var img:MovieClip; public var btnUp:MovieClip; public var p2n:TextField; public var btnB1:MovieClip; public var loader_mc:movie_mc; public var loaded_txt:TextField; public var btnB2:MovieClip; public var btnR1:MovieClip; public var btnDown:MovieClip; public var sceneSample:MovieClip; public var btnR2:MovieClip; public var btnNeutral:MovieClip; public var bg:MovieClip; public var frameGameOver:MovieClip; public var btnFeet:MovieClip; public var passerby:MovieClip; public var btnGameStart:MovieClip; public var btnConsole:MovieClip; public var cir1:MovieClip; public var btnPonyTails:MovieClip; public var btnSides:MovieClip; public var console:MovieClip; public var cir2:MovieClip; public var btnBraids:MovieClip; public var btnArmpits:MovieClip; public var bgTrees:MovieClip; public var inputCode:TextField; public var skinColor:ColorTransform; public var hairColor:ColorTransform; public var r1; public var g1; public var b1; public var r2; public var g2; public var b2; public var sceneNr; public var lastBgFrame; public var char1name; public var char2name; public var hairOffset; public var bConsoleEnabled; public var a:Array; public var health; public var myInterval; public var secInterval; public var seconds; public var phaseFrame; public var passerByTween:Tween; public var passerByCountdown; public var klaffiTween:Tween; public var endCounter; public var iRound; public var klaffiCountdown; public var mudOffset; public var actionCountdown; public var timeOutCountdown; public var bOppMoving; public var cpuObj; public var turn; public var p1End; public var p2End; public var bPaused; public var bGameOver; public var memoryPhaseFrame; public var speedArr:Array; public var tweenZoomX:Tween; public var tweenZoomY:Tween; public var tweenCpuX:Tween; public var tweenCpuY:Tween; public var xArr:Array; public var yArr:Array; public var myMouse; public var cpuMouse; public function MainTimeline(){ addFrameScript(0, this.frame1, 1, this.frame2, 2, this.frame3); } public function onProgress(_arg1:ProgressEvent):void{ var _local2:Number = _arg1.target.bytesLoaded; var _local3:Number = _arg1.target.bytesTotal; var _local4:Number = (_local2 / _local3); this.loader_mc.scaleX = _local4; this.loaded_txt.text = (("Loading... " + Math.round((_local4 * 100))) + "%"); } public function onComplete(_arg1:Event):void{ this.loaded_txt.text = "Finished loading."; this.btnIntroStart.alpha = 1; this.btnIntroStart.addEventListener(MouseEvent.CLICK, this.startGame); } public function startGame(_arg1:MouseEvent):void{ this.btnIntroStart.removeEventListener(MouseEvent.CLICK, this.startGame); this.bConsoleEnabled = true; gotoAndStop(3); } public function secTimer():void{ if ((((this.bGameOver == false)) && ((this.bPaused == false)))){ this.seconds++; }; } public function customMouseCursor(_arg1:Event):void{ this.myMouse.x = stage.mouseX; this.myMouse.y = stage.mouseY; } public function mouseClicked(_arg1:MouseEvent):void{ var _local2:* = false; var _local3:* = ""; if (_arg1.target.name != null){ _local3 = _arg1.target.name; }; if ((((((_local3 == "btnLeft")) && ((this.console.alpha > 0.5)))) && ((this.phaseFrame > 3)))){ if (this.phaseFrame > 0){ this.phaseFrame = (this.phaseFrame - 2); }; this.showButton(); } else { if ((((((_local3 == "btnRight")) && ((this.console.alpha > 0.5)))) && ((this.phaseFrame < 53)))){ this.phaseFrame = (this.phaseFrame + 2); this.showButton(); } else { if ((((((_local3 == "btnSkirt1")) && ((this.console.alpha > 0.5)))) && ((this.mudOffset == 0)))){ this.img.skirt1.alpha = (1 - this.img.skirt1.alpha); } else { if ((((((_local3 == "btnBra1")) && ((this.console.alpha > 0.5)))) && ((this.mudOffset == 0)))){ this.img.bra1.alpha = (1 - this.img.bra1.alpha); } else { if ((((((_local3 == "btnPanties1")) && ((this.console.alpha > 0.5)))) && ((this.mudOffset == 0)))){ this.img.panties1.alpha = (1 - this.img.panties1.alpha); } else { if ((((((_local3 == "btnSocks1")) && ((this.console.alpha > 0.5)))) && ((this.mudOffset == 0)))){ this.img.socks1.alpha = (1 - this.img.socks1.alpha); } else { if ((((((_local3 == "btnSkirt2")) && ((this.console.alpha > 0.5)))) && ((this.mudOffset == 0)))){ this.img.skirt2.alpha = (1 - this.img.skirt2.alpha); } else { if ((((((_local3 == "btnBra2")) && ((this.console.alpha > 0.5)))) && ((this.mudOffset == 0)))){ this.img.bra2.alpha = (1 - this.img.bra2.alpha); } else { if ((((((_local3 == "btnPanties2")) && ((this.console.alpha > 0.5)))) && ((this.mudOffset == 0)))){ this.img.panties2.alpha = (1 - this.img.panties2.alpha); } else { if ((((((_local3 == "btnSocks2")) && ((this.console.alpha > 0.5)))) && ((this.mudOffset == 0)))){ this.img.socks2.alpha = (1 - this.img.socks2.alpha); } else { if ((((_local3 == "btnNewRound")) && ((this.frameGameOver.winLose.btnNewRound.alpha == 1)))){ this.seconds = 0; this.phaseFrame = 2; this.endCounter = 10; this.iRound++; this.klaffiCountdown = 0; this.actionCountdown = (Math.floor((Math.random() * 8)) + 4); this.timeOutCountdown = 0; this.bOppMoving = false; this.turn = 1; this.p1End = this.health; this.p2End = this.health; this.speedArr = [20, 20, 20]; this.img.panties1.alpha = 1; this.img.panties2.alpha = 1; this.img.bra1.alpha = 1; this.img.bra2.alpha = 1; this.img.skirt1.alpha = 1; this.img.skirt2.alpha = 1; this.img.socks1.alpha = 1; this.img.socks2.alpha = 1; this.showFrame(this.phaseFrame, false); this.showKlaffi(); this.console.labelFrame.text = (this.phaseFrame / 2); this.console.alpha = 0; this.btnConsole.alpha = 0.5; this.console.x = -65; this.myMouse.gotoAndStop(2); this.cpuMouse.alpha = 1; this.frameGameOver.y = 65306; this.frameGameOver.alpha = 0; this.bPaused = false; this.bGameOver = false; } else { if ((((_local3 == "btnSettings")) && ((this.frameGameOver.winLose.btnSettings.alpha == 1)))){ stage.removeEventListener(MouseEvent.CLICK, this.mouseClicked); clearInterval(this.myInterval); clearInterval(this.secInterval); stage.removeEventListener(Event.ENTER_FRAME, this.customMouseCursor); Mouse.show(); stage.removeChild(this.myMouse); stage.removeChild(this.cpuMouse); _local2 = true; } else { if ((((_local3 == "btnMudFight")) && ((this.frameGameOver.winLose.btnMudFight.alpha == 1)))){ this.mudOffset = 100; this.seconds = 0; this.phaseFrame = 2; this.endCounter = 10; this.iRound++; this.klaffiCountdown = 0; this.actionCountdown = (Math.floor((Math.random() * 8)) + 4); this.timeOutCountdown = 0; this.bOppMoving = false; this.turn = 1; this.p1End = this.health; this.p2End = this.health; this.speedArr = [20, 20, 20]; this.img.panties1.alpha = 0; this.img.panties2.alpha = 0; this.img.bra1.alpha = 0; this.img.bra2.alpha = 0; this.img.skirt1.alpha = 0; this.img.skirt2.alpha = 0; this.img.socks1.alpha = 0; this.img.socks2.alpha = 0; this.enterMudBath(); this.showFrame(this.phaseFrame, false); this.showKlaffi(); this.console.labelFrame.text = (this.phaseFrame / 2); this.console.alpha = 0; this.btnConsole.alpha = 0.5; this.console.x = -65; this.myMouse.gotoAndStop(2); this.cpuMouse.alpha = 1; if (this.bConsoleEnabled == true){ this.frameGameOver.y = 65306; this.frameGameOver.alpha = 0; this.bPaused = false; this.bGameOver = false; } else { this.frameGameOver.winLose.gotoAndStop(3); }; } else { if ((((((_local3 == "btnScene")) && ((this.console.alpha > 0.5)))) && ((this.mudOffset == 0)))){ if (this.bg.bgDrop.currentFrame < this.lastBgFrame){ this.bg.bgDrop.gotoAndStop((this.bg.bgDrop.currentFrame + 1)); } else { this.bg.bgDrop.gotoAndStop(1); }; } else { if ((((_local3 == "btnConsole")) && ((this.bConsoleEnabled == true)))){ if (this.console.alpha > 0.5){ this.console.alpha = 0; this.btnConsole.alpha = 0.5; this.console.x = -65; this.myMouse.gotoAndStop(2); this.cpuMouse.alpha = 1; this.phaseFrame = this.memoryPhaseFrame; this.bPaused = false; this.showButtons(true); } else { this.console.alpha = 0.8; this.console.x = 0; this.btnConsole.alpha = 1; this.myMouse.gotoAndStop(1); this.cpuMouse.alpha = 0; this.memoryPhaseFrame = this.phaseFrame; this.showButtons(false); this.bPaused = true; }; } else { if ((((_local3 == "btnGuy")) && ((this.console.alpha > 0.5)))){ this.passerby.alpha = (1 - this.passerby.alpha); }; }; }; }; }; }; }; }; }; }; }; }; }; }; }; }; this.console.labelFrame.text = (this.phaseFrame / 2); if ((((_local3 == "btnNeutral")) && (!((this.btnNeutral.alpha == 0))))){ this.speedArr.push(this.seconds); this.speedArr.splice(0, 1); this.seconds = 0; this.btnNeutral.x = -100; this.checkIfCpuNeedsUpdatedPath(this.btnNeutral); if (this.turn != 0){ this.animate(true, 0); }; } else { if ((((_local3 == "btnBelly")) && (!((this.btnBelly.alpha == 0))))){ this.speedArr.push(this.seconds); this.speedArr.splice(0, 1); this.seconds = 0; this.btnBelly.x = -100; this.checkIfCpuNeedsUpdatedPath(this.btnBelly); if (this.turn != 0){ this.animate(true, 1); }; } else { if ((((_local3 == "btnFeet")) && (!((this.btnFeet.alpha == 0))))){ this.speedArr.push(this.seconds); this.speedArr.splice(0, 1); this.seconds = 0; this.btnFeet.x = -100; this.checkIfCpuNeedsUpdatedPath(this.btnFeet); if (this.turn != 0){ this.animate(true, 2); }; } else { if ((((_local3 == "btnSides")) && (!((this.btnSides.alpha == 0))))){ this.speedArr.push(this.seconds); this.speedArr.splice(0, 1); this.seconds = 0; this.btnSides.x = -100; this.checkIfCpuNeedsUpdatedPath(this.btnSides); if (this.turn != 0){ this.animate(true, 3); }; } else { if ((((_local3 == "btnBreasts")) && (!((this.btnBreasts.alpha == 0))))){ this.speedArr.push(this.seconds); this.speedArr.splice(0, 1); this.seconds = 0; this.btnBreasts.x = -100; this.checkIfCpuNeedsUpdatedPath(this.btnBreasts); if (this.turn != 0){ this.animate(true, 4); }; } else { if ((((_local3 == "btnArmpits")) && (!((this.btnArmpits.alpha == 0))))){ this.speedArr.push(this.seconds); this.speedArr.splice(0, 1); this.seconds = 0; this.btnArmpits.x = -100; this.checkIfCpuNeedsUpdatedPath(this.btnArmpits); if (this.turn != 0){ this.animate(true, 5); }; } else { if ((((_local3 == "btnButt")) && (!((this.btnButt.alpha == 0))))){ this.speedArr.push(this.seconds); this.speedArr.splice(0, 1); this.seconds = 0; this.btnButt.x = -100; this.checkIfCpuNeedsUpdatedPath(this.btnButt); if (this.turn != 0){ this.animate(true, 6); }; }; }; }; }; }; }; }; if (_local2 == true){ gotoAndStop(3); }; } public function showFrame(_arg1, _arg2):void{ this.img.body.gotoAndStop((_arg1 + this.mudOffset)); this.img.skinShadow.gotoAndStop(_arg1); this.img.hair.gotoAndStop((_arg1 + this.hairOffset)); this.img.hairShadow.gotoAndStop((_arg1 + this.hairOffset)); this.img.panties1.gotoAndStop(_arg1); this.img.panties2.gotoAndStop(_arg1); this.img.bra1.gotoAndStop(_arg1); this.img.bra2.gotoAndStop(_arg1); this.img.skirt1.gotoAndStop(_arg1); this.img.skirt2.gotoAndStop(_arg1); this.img.socks1.gotoAndStop(_arg1); this.img.socks2.gotoAndStop(_arg1); this.img.expression.gotoAndStop(_arg1); this.applyColour(); if (_arg2 == true){ this.img.scaleX = -1; } else { this.img.scaleX = 1; }; } public function applyColour():void{ this.img.skinShadow.transform.colorTransform = this.skinColor; this.img.hairShadow.transform.colorTransform = this.hairColor; } public function myTimer():void{ var _local1:*; if ((((((this.img.body.currentFrame > 51)) && ((this.img.body.currentFrame < 100)))) || ((this.img.body.currentFrame > 151)))){ this.endCounter--; if (this.endCounter < 1){ this.endCounter = 10; if (this.img.body.currentFrame == (this.phaseFrame + this.mudOffset)){ this.showFrame((this.phaseFrame + 1), false); } else { this.showFrame(this.phaseFrame, false); }; }; } else { if (this.img.body.currentFrame == (this.phaseFrame + this.mudOffset)){ this.showFrame((this.phaseFrame + 1), false); } else { this.showFrame(this.phaseFrame, false); }; }; if ((((this.bPaused == false)) && ((this.bGameOver == false)))){ if (this.turn == 2){ this.p1End--; }; if (this.turn == 0){ this.p2End--; }; this.bg.blueStrip.scaleX = (this.p1End / this.health); this.bg.redStrip.scaleX = (this.p2End / this.health); if (this.p1End == 0){ this.gameOver(false); }; if (this.p2End == 0){ this.gameOver(true); }; if (this.passerByCountdown > 0){ this.passerByCountdown--; if (this.passerByCountdown == 0){ _local1 = 395; if (Math.floor((Math.random() * 2)) == 0){ _local1 = 505; }; if (this.passerby.x > 400){ if ((((this.passerby.x > 700)) && ((Math.floor((Math.random() * 3)) == 0)))){ this.passerby.scaleX = 1; this.passerByTween = new Tween(this.passerby, "x", None.easeNone, this.passerby.x, _local1, 4, true); this.passerByTween.FPS = 40; this.passerByTween.addEventListener(TweenEvent.MOTION_FINISH, this.passerByFinished); } else { this.passerby.gotoAndPlay(1); this.passerby.scaleX = 1; this.passerByTween = new Tween(this.passerby, "x", None.easeNone, this.passerby.x, 200, 6, true); this.passerByTween.FPS = 40; this.passerByTween.addEventListener(TweenEvent.MOTION_FINISH, this.passerByFinished); }; } else { if ((((this.passerby.x < 230)) && ((Math.floor((Math.random() * 3)) == 0)))){ this.passerby.scaleX = -1; this.passerByTween = new Tween(this.passerby, "x", None.easeNone, this.passerby.x, _local1, 4, true); this.passerByTween.FPS = 40; this.passerByTween.addEventListener(TweenEvent.MOTION_FINISH, this.passerByFinished); } else { this.passerby.gotoAndPlay(1); this.passerby.scaleX = -1; this.passerByTween = new Tween(this.passerby, "x", None.easeNone, this.passerby.x, 727, 6, true); this.passerByTween.FPS = 40; this.passerByTween.addEventListener(TweenEvent.MOTION_FINISH, this.passerByFinished); }; }; }; }; if ((((this.btnNeutral.x > 0)) && ((this.btnNeutral.scaleX < 0.8)))){ this.btnNeutral.x = -100; }; if ((((this.btnBelly.x > 0)) && ((this.btnBelly.scaleX < 0.8)))){ this.btnBelly.x = -100; }; if ((((this.btnFeet.x > 0)) && ((this.btnFeet.scaleX < 0.8)))){ this.btnFeet.x = -100; }; if ((((this.btnSides.x > 0)) && ((this.btnSides.scaleX < 0.8)))){ this.btnSides.x = -100; }; if ((((this.btnArmpits.x > 0)) && ((this.btnArmpits.scaleX < 0.8)))){ this.btnArmpits.x = -100; }; if ((((this.btnButt.x > 0)) && ((this.btnButt.scaleX < 0.8)))){ this.btnButt.x = -100; }; if ((((this.btnBreasts.x > 0)) && ((this.btnBreasts.scaleX < 0.8)))){ this.btnBreasts.x = -100; }; if (this.klaffiCountdown > 0){ this.klaffiCountdown--; if (this.klaffiCountdown == 6){ this.klaffiTween = new Tween(this.klaffi.klaffi1, "rotation", None.easeNone, 0, 9.5, 0.2, true); this.klaffiTween.FPS = 40; }; if (this.klaffiCountdown == 2){ this.klaffiTween = new Tween(this.klaffi, "x", None.easeNone, -25, 65036, 0.5, true); this.klaffiTween.FPS = 40; }; } else { if (this.timeOutCountdown > 0){ this.timeOutCountdown--; } else { this.actionCountdown--; if (this.actionCountdown < 1){ this.actionCountdown = (Math.floor((Math.random() * 3)) + 2); this.showButton(); }; }; }; this.OppFindTarget(); }; } public function passerByFinished(_arg1:TweenEvent){ if ((((this.passerby.x < 230)) || ((this.passerby.x > 700)))){ this.passerByCountdown = 10; } else { this.passerByCountdown = 40; this.passerby.gotoAndStop(25); }; } public function showButton():void{ var _local1:* = 0; var _local2:* = false; var _local3:* = 0; var _local4:* = this.btnNeutral; var _local5:* = 0; if (Math.floor((Math.random() * 2)) == 0){ _local5 = 0; } else { _local5 = 7; }; _local3 = Math.floor((Math.random() * 7)); if (_local3 == 1){ _local4 = this.btnButt; if (Math.floor((Math.random() * 2)) == 0){ _local5 = 6; } else { _local5 = 13; }; } else { if (_local3 == 2){ _local4 = this.btnBelly; if (Math.floor((Math.random() * 2)) == 0){ _local5 = 1; } else { _local5 = 8; }; } else { if (_local3 == 3){ _local4 = this.btnFeet; if (Math.floor((Math.random() * 2)) == 0){ _local5 = 2; } else { _local5 = 9; }; } else { if (_local3 == 4){ _local4 = this.btnSides; if (Math.floor((Math.random() * 2)) == 0){ _local5 = 3; } else { _local5 = 10; }; } else { if (_local3 == 5){ _local4 = this.btnBreasts; if (Math.floor((Math.random() * 2)) == 0){ _local5 = 4; } else { _local5 = 11; }; } else { if (_local3 == 6){ _local4 = this.btnArmpits; if (Math.floor((Math.random() * 2)) == 0){ _local5 = 5; } else { _local5 = 12; }; }; }; }; }; }; }; if ((((_local4.x < 0)) || ((_local4.x > 770)))){ if (this.phaseFrame == 2){ _local1 = 1; _local2 = false; }; if (this.phaseFrame == 4){ _local1 = 2; _local2 = false; }; if (this.phaseFrame == 6){ _local1 = 2; _local2 = true; }; if (this.phaseFrame == 8){ _local1 = 3; _local2 = false; }; if (this.phaseFrame == 10){ _local1 = 3; _local2 = true; }; if (this.phaseFrame == 12){ _local1 = 4; _local2 = false; }; if (this.phaseFrame == 14){ _local1 = 4; _local2 = true; }; if (this.phaseFrame == 16){ _local1 = 5; _local2 = false; }; if (this.phaseFrame == 18){ _local1 = 5; _local2 = true; }; if (this.phaseFrame == 20){ _local1 = 6; _local2 = false; }; if (this.phaseFrame == 22){ _local1 = 6; _local2 = true; }; if (this.phaseFrame == 24){ _local1 = 7; _local2 = false; }; if (this.phaseFrame == 26){ _local1 = 7; _local2 = true; }; if (this.phaseFrame == 28){ _local1 = 8; _local2 = false; }; if (this.phaseFrame == 30){ _local1 = 8; _local2 = true; }; if (this.phaseFrame == 32){ _local1 = 9; _local2 = false; }; if (this.phaseFrame == 34){ _local1 = 9; _local2 = true; }; if (this.phaseFrame == 36){ _local1 = 10; _local2 = false; }; if (this.phaseFrame == 38){ _local1 = 10; _local2 = true; }; if (this.phaseFrame == 40){ _local1 = 11; _local2 = false; }; if (this.phaseFrame == 42){ _local1 = 11; _local2 = true; }; if (this.phaseFrame == 44){ _local1 = 12; _local2 = false; }; if (this.phaseFrame == 46){ _local1 = 12; _local2 = true; }; if (this.phaseFrame == 48){ _local1 = 13; _local2 = false; }; if (this.phaseFrame == 50){ _local1 = 13; _local2 = true; }; if (_local2 == false){ _local4.x = this.xArr[_local1][_local5]; _local4.y = this.yArr[_local1][_local5]; } else { _local4.x = (770 - this.xArr[_local1][_local5]); _local4.y = this.yArr[_local1][_local5]; }; this.tweenZoomX = new Tween(_local4, "scaleX", Regular.easeOut, 2.5, 0.75, 3, true); this.tweenZoomX.FPS = 40; this.tweenZoomY = new Tween(_local4, "scaleY", Regular.easeOut, 2.5, 0.75, 3, true); this.tweenZoomY.FPS = 40; }; } public function cancelButtons():void{ this.btnNeutral.x = -100; this.btnBelly.x = -100; this.btnFeet.x = -100; this.btnSides.x = -100; this.btnBreasts.x = -100; this.btnArmpits.x = -100; this.btnButt.x = -100; } public function enterMudBath():void{ this.bg.bgDrop.gotoAndStop(4); this.skinColor = new ColorTransform(0, 0, 0, 1, 134, 79, 48, 0); this.hairColor = new ColorTransform(0, 0, 0, 1, 127, 74, 38, 0); this.mudOffset = 100; this.img.skirt1.alpha = 0; this.img.panties1.alpha = 0; this.img.bra1.alpha = 0; this.img.socks1.alpha = 0; this.img.skirt2.alpha = 0; this.img.panties2.alpha = 0; this.img.bra2.alpha = 0; this.img.socks2.alpha = 0; } public function showKlaffi():void{ this.klaffiCountdown = 15; this.klaffi.x = -25; this.klaffi.klaffi1.rotation = 0; this.klaffi.klaffi2.roundNr.text = this.iRound; this.klaffi.klaffi2.name1.text = this.char1name; this.klaffi.klaffi2.name2.text = this.char2name; if (this.bg.bgDrop.currentFrame == 1){ this.klaffi.klaffi2.locName.text = "Hotel Room"; } else { if (this.bg.bgDrop.currentFrame == 2){ this.klaffi.klaffi2.locName.text = "Resort Arena"; } else { if (this.bg.bgDrop.currentFrame == 3){ this.klaffi.klaffi2.locName.text = "Beach"; } else { if (this.bg.bgDrop.currentFrame == 4){ this.klaffi.klaffi2.locName.text = "Mud Arena!"; } else { this.klaffi.klaffi2.locName.text = ""; }; }; }; }; this.klaffi.alpha = 1; } public function OppFindTarget():void{ var _local1:Array; var _local2:*; if (this.bOppMoving == false){ _local1 = []; if ((((this.btnNeutral.x > 0)) && ((this.btnNeutral.x < 770)))){ _local1.push(this.btnNeutral); }; if ((((this.btnBelly.x > 0)) && ((this.btnBelly.x < 770)))){ _local1.push(this.btnBelly); }; if ((((this.btnFeet.x > 0)) && ((this.btnFeet.x < 770)))){ _local1.push(this.btnFeet); }; if ((((this.btnSides.x > 0)) && ((this.btnSides.x < 770)))){ _local1.push(this.btnSides); }; if ((((this.btnBreasts.x > 0)) && ((this.btnBreasts.x < 770)))){ _local1.push(this.btnBreasts); }; if ((((this.btnArmpits.x > 0)) && ((this.btnArmpits.x < 770)))){ _local1.push(this.btnArmpits); }; if ((((this.btnButt.x > 0)) && ((this.btnButt.x < 770)))){ _local1.push(this.btnButt); }; if (_local1.length > 0){ this.bOppMoving = true; this.cpuObj = _local1[Math.floor((Math.random() * _local1.length))]; _local2 = ((((this.speedArr[0] + this.speedArr[1]) + this.speedArr[2]) / 3) / 10); if (_local2 > 1){ _local2 = 1; }; this.tweenCpuX = new Tween(this.cpuMouse, "x", Regular.easeIn, this.cpuMouse.x, this.cpuObj.x, _local2, true); this.tweenCpuX.FPS = 40; this.tweenCpuY = new Tween(this.cpuMouse, "y", Regular.easeIn, this.cpuMouse.y, this.cpuObj.y, _local2, true); this.tweenCpuY.FPS = 40; this.tweenCpuY.addEventListener(TweenEvent.MOTION_FINISH, this.cpuReachedTarget); } else { this.seconds = 0; }; }; } public function cpuReachedTarget(_arg1:TweenEvent):void{ this.bOppMoving = false; if (this.cpuObj.x > 0){ this.cpuObj.x = -100; if (this.turn != 2){ if (this.cpuObj == this.btnNeutral){ this.animate(false, 0); }; if (this.cpuObj == this.btnBelly){ this.animate(false, 1); }; if (this.cpuObj == this.btnFeet){ this.animate(false, 2); }; if (this.cpuObj == this.btnSides){ this.animate(false, 3); }; if (this.cpuObj == this.btnBreasts){ this.animate(false, 4); }; if (this.cpuObj == this.btnArmpits){ this.animate(false, 5); }; if (this.cpuObj == this.btnButt){ this.animate(false, 6); }; }; }; } public function showButtons(_arg1):void{ var _local2:* = 0; if (_arg1 == true){ _local2 = 0.5; }; this.btnNeutral.alpha = _local2; this.btnBelly.alpha = _local2; this.btnFeet.alpha = _local2; this.btnSides.alpha = _local2; this.btnBreasts.alpha = _local2; this.btnArmpits.alpha = _local2; this.btnButt.alpha = _local2; this.tweenCpuX.stop(); this.tweenCpuY.stop(); this.bOppMoving = false; } public function checkIfCpuNeedsUpdatedPath(_arg1):void{ if (_arg1 == this.cpuObj){ this.tweenCpuX.stop(); this.tweenCpuY.stop(); this.bOppMoving = false; }; } public function animate(_arg1, _arg2):void{ if (this.phaseFrame == 24){ this.img.bra1.alpha = 0; }; if (this.phaseFrame == 26){ this.img.bra2.alpha = 0; }; if (this.phaseFrame == 32){ this.img.skirt1.alpha = 0; }; if (this.phaseFrame == 34){ this.img.skirt2.alpha = 0; }; if (this.phaseFrame == 20){ this.img.panties1.alpha = 0; }; if (this.phaseFrame == 22){ this.img.panties2.alpha = 0; }; if (this.phaseFrame == 16){ this.img.socks1.alpha = 0; }; if (this.phaseFrame == 18){ this.img.socks2.alpha = 0; }; this.timeOutCountdown = 20; this.cancelButtons(); this.tweenCpuX.stop(); this.tweenCpuY.stop(); this.tweenCpuX = new Tween(this.cpuMouse, "x", Regular.easeIn, this.cpuMouse.x, 770, 1, true); this.tweenCpuX.FPS = 40; this.bOppMoving = false; var _local3:* = Math.floor((Math.random() * 2)); if (_arg1 == true){ this.turn = 0; if (_arg2 == 0){ this.turn = 1; this.phaseFrame = 2; }; if (_arg2 == 1){ if (_local3 == 0){ this.phaseFrame = 6; } else { this.phaseFrame = 14; }; }; if (_arg2 == 2){ if (_local3 == 0){ this.phaseFrame = 18; } else { this.phaseFrame = 38; }; }; if (_arg2 == 3){ if (_local3 == 0){ this.phaseFrame = 10; } else { this.phaseFrame = 42; }; }; if (_arg2 == 4){ if (_local3 == 0){ this.phaseFrame = 26; } else { this.phaseFrame = 46; }; }; if (_arg2 == 5){ if (_local3 == 0){ this.phaseFrame = 30; } else { this.phaseFrame = 50; }; }; if (_arg2 == 6){ if (_local3 == 0){ this.phaseFrame = 22; } else { this.phaseFrame = 34; }; }; } else { this.turn = 2; if (_arg2 == 0){ this.turn = 1; this.phaseFrame = 2; }; if (_arg2 == 1){ if (_local3 == 0){ this.phaseFrame = 4; } else { this.phaseFrame = 12; }; }; if (_arg2 == 2){ if (_local3 == 0){ this.phaseFrame = 16; } else { this.phaseFrame = 36; }; }; if (_arg2 == 3){ if (_local3 == 0){ this.phaseFrame = 8; } else { this.phaseFrame = 40; }; }; if (_arg2 == 4){ if (_local3 == 0){ this.phaseFrame = 24; } else { this.phaseFrame = 44; }; }; if (_arg2 == 5){ if (_local3 == 0){ this.phaseFrame = 28; } else { this.phaseFrame = 48; }; }; if (_arg2 == 6){ if (_local3 == 0){ this.phaseFrame = 20; } else { this.phaseFrame = 32; }; }; }; this.console.labelFrame.text = (this.phaseFrame / 2); } public function gameOver(_arg1):void{ this.bGameOver = true; this.cancelButtons(); if (_arg1 == true){ this.phaseFrame = 54; this.frameGameOver.winLose.gotoAndStop(2); } else { this.phaseFrame = 52; this.frameGameOver.winLose.gotoAndStop(1); }; this.frameGameOver.pName.text = this.char1name; this.console.labelFrame.text = (this.phaseFrame / 2); this.frameGameOver.alpha = 1; this.klaffiTween = new Tween(this.frameGameOver, "y", None.easeNone, 65306, 25, 0.5, true); this.klaffiTween.FPS = 40; } public function charSelecting(_arg1:MouseEvent):void{ var _local2:* = ""; if (_arg1.target.name != null){ _local2 = _arg1.target.name; }; if (this.bConsoleEnabled == true){ if (_local2 == "btnBraids"){ this.btnPonyTails.gotoAndStop(1); this.btnBraids.gotoAndStop(2); this.hairOffset = 100; } else { if (_local2 == "btnPonyTails"){ this.btnPonyTails.gotoAndStop(2); this.btnBraids.gotoAndStop(1); this.hairOffset = 0; } else { if (_local2 == "btnR1"){ this.r1 = (stage.mouseX - 510); this.skinColor = new ColorTransform(0, 0, 0, 1, this.r1, this.g1, this.b1, 0); this.girlSkin.transform.colorTransform = this.skinColor; this.cir1.x = (510 + this.r1); } else { if (_local2 == "btnG1"){ this.g1 = (stage.mouseX - 510); this.skinColor = new ColorTransform(0, 0, 0, 1, this.r1, this.g1, this.b1, 0); this.girlSkin.transform.colorTransform = this.skinColor; this.cir2.x = (510 + this.g1); } else { if (_local2 == "btnB1"){ this.b1 = (stage.mouseX - 510); this.skinColor = new ColorTransform(0, 0, 0, 1, this.r1, this.g1, this.b1, 0); this.girlSkin.transform.colorTransform = this.skinColor; this.cir3.x = (510 + this.b1); } else { if (_local2 == "btnR2"){ this.r2 = (stage.mouseX - 510); this.hairColor = new ColorTransform(0, 0, 0, 1, this.r2, this.g2, this.b2, 0); this.girlHair.transform.colorTransform = this.hairColor; this.cir4.x = (510 + this.r2); } else { if (_local2 == "btnG2"){ this.g2 = (stage.mouseX - 510); this.hairColor = new ColorTransform(0, 0, 0, 1, this.r2, this.g2, this.b2, 0); this.girlHair.transform.colorTransform = this.hairColor; this.cir5.x = (510 + this.g2); } else { if (_local2 == "btnB2"){ this.b2 = (stage.mouseX - 510); this.hairColor = new ColorTransform(0, 0, 0, 1, this.r2, this.g2, this.b2, 0); this.girlHair.transform.colorTransform = this.hairColor; this.cir6.x = (510 + this.b2); } else { if (_local2 == "btnDown"){ if (this.sceneSample.bgDrop.currentFrame < this.lastBgFrame){ this.sceneSample.bgDrop.gotoAndStop((this.sceneSample.bgDrop.currentFrame + 1)); this.sceneNr = this.sceneSample.bgDrop.currentFrame; } else { this.sceneSample.bgDrop.gotoAndStop(1); this.sceneNr = this.sceneSample.bgDrop.currentFrame; }; } else { if (_local2 == "btnUp"){ if (this.sceneSample.bgDrop.currentFrame > 1){ this.sceneSample.bgDrop.gotoAndStop((this.sceneSample.bgDrop.currentFrame - 1)); this.sceneNr = this.sceneSample.bgDrop.currentFrame; } else { this.sceneSample.bgDrop.gotoAndStop(this.lastBgFrame); this.sceneNr = this.sceneSample.bgDrop.currentFrame; }; }; }; }; }; }; }; }; }; }; }; }; if (_local2 == "btnGameStart"){ stage.removeEventListener(MouseEvent.CLICK, this.charSelecting); if (this.bConsoleEnabled == true){ if (this.p1n.text.length > 1){ this.char1name = this.p1n.text; } else { this.char1name = "Katie"; }; if (this.p2n.text.length > 1){ this.char2name = this.p2n.text; } else { this.char1name = "Elli"; }; }; gotoAndStop(2); }; } function frame1(){ stop(); this.r1 = 0xFF; this.g1 = 200; this.b1 = 200; this.r2 = 0xFF; this.g2 = 200; this.b2 = 20; this.sceneNr = 1; this.lastBgFrame = 3; this.char1name = "Katie"; this.char2name = "Elli"; this.hairOffset = 0; this.bConsoleEnabled = false; this.a = ["ve", "e", "i", "r", "s", "z", "l", "lo", "he", "is", "t"]; this.loaderInfo.addEventListener(ProgressEvent.PROGRESS, this.onProgress); this.loaderInfo.addEventListener(Event.COMPLETE, this.onComplete); } function frame2(){ stop(); this.health = 150; this.myInterval = setInterval(this.myTimer, 200); this.secInterval = setInterval(this.secTimer, 100); this.seconds = 0; this.phaseFrame = 2; this.passerByCountdown = 0; this.endCounter = 10; this.iRound = 1; this.klaffiCountdown = 0; this.mudOffset = 0; this.actionCountdown = (Math.floor((Math.random() * 8)) + 4); this.timeOutCountdown = 0; this.bOppMoving = false; this.turn = 1; this.p1End = this.health; this.p2End = this.health; this.bPaused = false; this.bGameOver = false; this.memoryPhaseFrame = 0; this.speedArr = [20, 20, 20]; this.xArr = [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [-100, 492, 687, 534, 468, 527, 559, -100, 273, 78, 243, 305, 244, 201], [325, 500, 712, 526, 477, 519, 564, 382, 272, 118, 241, 298, 247, 204], [353, -100, 298, 530, 515, 511, 563, 338, -100, 712, 381, 474, 425, 392], [237, 179, 443, 160, 183, 108, 159, 341, 343, -100, 335, 267, 267, 402], [398, 498, 687, 526, 467, 527, 561, 404, 267, 421, 263, 205, 184, 346], [225, 285, -100, 244, 252, 237, 264, 341, -100, -100, 321, 316, 327, 316], [456, 400, 654, 440, 378, 546, 450, 455, -100, 116, 549, 416, -100, 558], [182, 215, 665, 183, 224, 156, 169, 239, 328, 433, 364, 311, 374, 386], [374, 500, 681, 527, 468, 532, 560, 472, 396, 117, 400, -100, 471, 337], [179, 403, 568, 431, 379, 427, 466, 239, -100, 167, 336, -10, -100, 282], [240, 311, 198, 345, 324, 345, -100, 398, -100, 476, -100, 400, 411, -100], [258, 311, 161, 276, 307, 408, 277, 397, 374, 473, 344, 383, -100, 343], [487, 434, 667, 513, 385, 457, 561, 520, -100, 151, -100, 431, 548, 502], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]; this.yArr = [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [-100, 265, 422, 251, 182, 185, 311, -100, 270, 418, 253, 195, 187, 296], [273, 253, 434, 248, 205, 183, 293, 112, 263, 426, 245, 198, 185, 300], [163, -100, 437, 224, 209, 178, 298, 350, -100, 426, 218, 299, 273, 194], [300, 271, 294, 266, 224, 218, 366, 323, 368, -100, 410, 359, 417, 428], [190, 250, 427, 251, 199, 181, 304, 125, 380, 63, 404, 378, 435, 432], [272, 225, -100, 220, 187, 164, 312, 273, -100, -100, 221, 186, 159, 319], [186, 269, 429, 294, 217, 179, 359, 261, -100, 290, 245, 209, -100, 300], [92, 340, 404, 347, 282, 250, 415, 230, 308, 445, 300, 237, 231, 348], [228, 0x0101, 417, 245, 194, 174, 283, 358, 328, 421, 311, -100, 322, 292], [266, 306, 435, 296, 268, 230, 353, 466, -100, 166, 399, -100, -100, 385], [267, 281, 396, 249, 215, 174, -100, 265, -100, 381, -100, 200, 172, -100], [278, 372, 421, 362, 308, 173, 455, 279, 242, 427, 368, 197, -100, 450], [198, 211, 427, 233, 176, 137, 296, 158, -100, 280, -100, 163, 183, 270], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]; this.skinColor = new ColorTransform(0, 0, 0, 1, this.r1, this.g1, this.b1, 0); this.hairColor = new ColorTransform(0, 0, 0, 1, this.r2, this.g2, this.b2, 0); this.applyColour(); this.bg.alpha = 1; this.bg.bgDrop.gotoAndStop(this.sceneNr); this.bgTrees.alpha = 1; this.console.alpha = 0; this.btnConsole.alpha = 0.5; stage.addEventListener(MouseEvent.CLICK, this.mouseClicked); this.frameGameOver.alpha = 0; this.cancelButtons(); this.bg.nameStrip.p1Name.text = this.char1name; this.bg.nameStrip.p2Name.text = this.char2name; this.showFrame(this.phaseFrame, false); this.showKlaffi(); this.console.labelFrame.text = (this.phaseFrame / 2); this.passerby.scaleX = 1; this.passerByTween = new Tween(this.passerby, "x", None.easeNone, 727, 200, 6, true); this.passerByTween.FPS = 40; this.passerByTween.addEventListener(TweenEvent.MOTION_FINISH, this.passerByFinished); this.myMouse = new cursorSprite(); this.cpuMouse = new cursorSprite(); this.myMouse.x = 0; this.myMouse.y = 0; this.cpuMouse.x = 800; this.cpuMouse.y = 300; this.myMouse.gotoAndStop(2); this.cpuMouse.gotoAndStop(3); stage.addChild(this.myMouse); stage.addChild(this.cpuMouse); this.myMouse.mouseEnabled = false; this.cpuMouse.mouseEnabled = false; stage.addEventListener(Event.ENTER_FRAME, this.customMouseCursor); Mouse.hide(); } function frame3(){ stop(); this.btnPonyTails.gotoAndStop(2); this.cir1.mouseEnabled = false; this.cir2.mouseEnabled = false; this.cir3.mouseEnabled = false; this.cir4.mouseEnabled = false; this.cir5.mouseEnabled = false; this.cir6.mouseEnabled = false; this.cir1.x = (510 + this.r1); this.cir2.x = (510 + this.g1); this.cir3.x = (510 + this.b1); this.cir4.x = (510 + this.r2); this.cir5.x = (510 + this.g2); this.cir6.x = (510 + this.b2); stage.addEventListener(MouseEvent.CLICK, this.charSelecting); } } }//package Twins_fla
Section 11
//passerby_4 (Twins_fla.passerby_4) package Twins_fla { import flash.display.*; public dynamic class passerby_4 extends MovieClip { public function passerby_4(){ addFrameScript(19, frame20); } function frame20(){ gotoAndPlay(1); } } }//package Twins_fla
Section 12
//subwindow_40 (Twins_fla.subwindow_40) package Twins_fla { import flash.display.*; public dynamic class subwindow_40 extends MovieClip { public var btnNewRound:MovieClip; public var btnMudFight:MovieClip; public var btnSettings:MovieClip; public function subwindow_40(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package Twins_fla
Section 13
//cursorSprite (cursorSprite) package { import flash.display.*; public dynamic class cursorSprite extends MovieClip { public function cursorSprite(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package
Section 14
//introStartButton (introStartButton) package { import flash.display.*; public dynamic class introStartButton extends MovieClip { } }//package
Section 15
//movie_mc (movie_mc) package { import flash.display.*; public dynamic class movie_mc extends MovieClip { } }//package

Library Items

Symbol 1 GraphicUsed by:Timeline
Symbol 2 FontUsed by:3 32 33 617 618 619 620 623 654 656 666 668 681 683 685 687 689 691 712
Symbol 3 TextUses:2Used by:Timeline
Symbol 4 GraphicUsed by:7
Symbol 5 FontUsed by:6 8 9 10 15 16 621 622 627 634 636 638 640 642 644 646 648 657 659 661 663 665 667 669 670 693 696 697 704 707
Symbol 6 TextUses:5Used by:7
Symbol 7 MovieClip {introStartButton}Uses:4 6Used by:Timeline
Symbol 8 TextUses:5Used by:Timeline
Symbol 9 TextUses:5Used by:Timeline
Symbol 10 EditableTextUses:5Used by:Timeline
Symbol 11 GraphicUsed by:12
Symbol 12 MovieClip {movie_mc}Uses:11Used by:Timeline
Symbol 13 BitmapUsed by:14
Symbol 14 GraphicUses:13Used by:Timeline
Symbol 15 EditableTextUses:5Used by:Timeline
Symbol 16 EditableTextUses:5Used by:Timeline
Symbol 17 GraphicUsed by:20
Symbol 18 GraphicUsed by:20
Symbol 19 GraphicUsed by:20
Symbol 20 MovieClip {cursorSprite}Uses:17 18 19
Symbol 21 GraphicUsed by:22
Symbol 22 MovieClipUses:21Used by:Timeline
Symbol 23 GraphicUsed by:27
Symbol 24 GraphicUsed by:27
Symbol 25 GraphicUsed by:27
Symbol 26 GraphicUsed by:27
Symbol 27 MovieClip {Twins_fla.passerby_4}Uses:23 24 25 26Used by:Timeline
Symbol 28 GraphicUsed by:34
Symbol 29 GraphicUsed by:34
Symbol 30 GraphicUsed by:34
Symbol 31 GraphicUsed by:34
Symbol 32 EditableTextUses:2Used by:34
Symbol 33 EditableTextUses:2Used by:34
Symbol 34 MovieClip {Twins_fla.bgDrop_6}Uses:28 29 30 31 32 33Used by:43
Symbol 35 GraphicUsed by:36
Symbol 36 MovieClipUses:35Used by:43
Symbol 37 GraphicUsed by:38
Symbol 38 MovieClipUses:37Used by:43
Symbol 39 FontUsed by:40 41 694 695
Symbol 40 EditableTextUses:39Used by:42
Symbol 41 EditableTextUses:39Used by:42
Symbol 42 MovieClipUses:40 41Used by:43
Symbol 43 MovieClip {Twins_fla.bg_5}Uses:34 36 38 42Used by:Timeline
Symbol 44 GraphicUsed by:96
Symbol 45 GraphicUsed by:96
Symbol 46 GraphicUsed by:96
Symbol 47 GraphicUsed by:96
Symbol 48 GraphicUsed by:96
Symbol 49 GraphicUsed by:96
Symbol 50 GraphicUsed by:96
Symbol 51 GraphicUsed by:96
Symbol 52 GraphicUsed by:96
Symbol 53 GraphicUsed by:96
Symbol 54 GraphicUsed by:96
Symbol 55 GraphicUsed by:96
Symbol 56 GraphicUsed by:96
Symbol 57 GraphicUsed by:96
Symbol 58 GraphicUsed by:96
Symbol 59 GraphicUsed by:96
Symbol 60 GraphicUsed by:96
Symbol 61 GraphicUsed by:96
Symbol 62 GraphicUsed by:96
Symbol 63 GraphicUsed by:96
Symbol 64 GraphicUsed by:96
Symbol 65 GraphicUsed by:96
Symbol 66 GraphicUsed by:96
Symbol 67 GraphicUsed by:96
Symbol 68 GraphicUsed by:96
Symbol 69 GraphicUsed by:96
Symbol 70 GraphicUsed by:96
Symbol 71 GraphicUsed by:96
Symbol 72 GraphicUsed by:96
Symbol 73 GraphicUsed by:96
Symbol 74 GraphicUsed by:96
Symbol 75 GraphicUsed by:96
Symbol 76 GraphicUsed by:96
Symbol 77 GraphicUsed by:96
Symbol 78 GraphicUsed by:96
Symbol 79 GraphicUsed by:96
Symbol 80 GraphicUsed by:96
Symbol 81 GraphicUsed by:96
Symbol 82 GraphicUsed by:96
Symbol 83 GraphicUsed by:96
Symbol 84 GraphicUsed by:96
Symbol 85 GraphicUsed by:96
Symbol 86 GraphicUsed by:96
Symbol 87 GraphicUsed by:96
Symbol 88 GraphicUsed by:96
Symbol 89 GraphicUsed by:96
Symbol 90 GraphicUsed by:96
Symbol 91 GraphicUsed by:96
Symbol 92 GraphicUsed by:96
Symbol 93 GraphicUsed by:96
Symbol 94 GraphicUsed by:96
Symbol 95 GraphicUsed by:96
Symbol 96 MovieClipUses:44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95Used by:613
Symbol 97 GraphicUsed by:203
Symbol 98 GraphicUsed by:203
Symbol 99 GraphicUsed by:203
Symbol 100 GraphicUsed by:203
Symbol 101 GraphicUsed by:203
Symbol 102 GraphicUsed by:203
Symbol 103 GraphicUsed by:203
Symbol 104 GraphicUsed by:203
Symbol 105 GraphicUsed by:203
Symbol 106 GraphicUsed by:203
Symbol 107 GraphicUsed by:203
Symbol 108 GraphicUsed by:109
Symbol 109 MovieClipUses:108Used by:203
Symbol 110 GraphicUsed by:203
Symbol 111 GraphicUsed by:203
Symbol 112 GraphicUsed by:203
Symbol 113 GraphicUsed by:203
Symbol 114 GraphicUsed by:203
Symbol 115 GraphicUsed by:203
Symbol 116 GraphicUsed by:203
Symbol 117 GraphicUsed by:203
Symbol 118 GraphicUsed by:203
Symbol 119 GraphicUsed by:203
Symbol 120 GraphicUsed by:203
Symbol 121 GraphicUsed by:203
Symbol 122 GraphicUsed by:203
Symbol 123 GraphicUsed by:203
Symbol 124 GraphicUsed by:203
Symbol 125 GraphicUsed by:203
Symbol 126 GraphicUsed by:203
Symbol 127 GraphicUsed by:203
Symbol 128 GraphicUsed by:203
Symbol 129 GraphicUsed by:203
Symbol 130 GraphicUsed by:203
Symbol 131 GraphicUsed by:203
Symbol 132 GraphicUsed by:203
Symbol 133 GraphicUsed by:203
Symbol 134 GraphicUsed by:203
Symbol 135 GraphicUsed by:203
Symbol 136 GraphicUsed by:203
Symbol 137 GraphicUsed by:203
Symbol 138 GraphicUsed by:203
Symbol 139 GraphicUsed by:203
Symbol 140 GraphicUsed by:203
Symbol 141 GraphicUsed by:203
Symbol 142 GraphicUsed by:203
Symbol 143 GraphicUsed by:203
Symbol 144 GraphicUsed by:203
Symbol 145 GraphicUsed by:203
Symbol 146 GraphicUsed by:203
Symbol 147 GraphicUsed by:203
Symbol 148 GraphicUsed by:203
Symbol 149 GraphicUsed by:203
Symbol 150 GraphicUsed by:203
Symbol 151 GraphicUsed by:203
Symbol 152 GraphicUsed by:203
Symbol 153 GraphicUsed by:203
Symbol 154 GraphicUsed by:203
Symbol 155 GraphicUsed by:203
Symbol 156 GraphicUsed by:203
Symbol 157 GraphicUsed by:203
Symbol 158 GraphicUsed by:203
Symbol 159 GraphicUsed by:203
Symbol 160 GraphicUsed by:203
Symbol 161 GraphicUsed by:203
Symbol 162 GraphicUsed by:203
Symbol 163 GraphicUsed by:203
Symbol 164 GraphicUsed by:203
Symbol 165 GraphicUsed by:203
Symbol 166 GraphicUsed by:203
Symbol 167 GraphicUsed by:203
Symbol 168 GraphicUsed by:203
Symbol 169 GraphicUsed by:203
Symbol 170 GraphicUsed by:203
Symbol 171 GraphicUsed by:203
Symbol 172 GraphicUsed by:203
Symbol 173 GraphicUsed by:203
Symbol 174 GraphicUsed by:203
Symbol 175 GraphicUsed by:203
Symbol 176 GraphicUsed by:203
Symbol 177 GraphicUsed by:203
Symbol 178 GraphicUsed by:203
Symbol 179 GraphicUsed by:203
Symbol 180 GraphicUsed by:203
Symbol 181 GraphicUsed by:203
Symbol 182 GraphicUsed by:203
Symbol 183 GraphicUsed by:203
Symbol 184 GraphicUsed by:203
Symbol 185 GraphicUsed by:203
Symbol 186 GraphicUsed by:203
Symbol 187 GraphicUsed by:203
Symbol 188 GraphicUsed by:203
Symbol 189 GraphicUsed by:203
Symbol 190 GraphicUsed by:203
Symbol 191 GraphicUsed by:203
Symbol 192 GraphicUsed by:203
Symbol 193 GraphicUsed by:203
Symbol 194 GraphicUsed by:203
Symbol 195 GraphicUsed by:203
Symbol 196 GraphicUsed by:203
Symbol 197 GraphicUsed by:203
Symbol 198 GraphicUsed by:203
Symbol 199 GraphicUsed by:203
Symbol 200 GraphicUsed by:203
Symbol 201 GraphicUsed by:203
Symbol 202 GraphicUsed by:203
Symbol 203 MovieClipUses:97 98 99 100 101 102 103 104 105 106 107 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202Used by:613
Symbol 204 GraphicUsed by:230
Symbol 205 GraphicUsed by:230
Symbol 206 GraphicUsed by:230
Symbol 207 GraphicUsed by:230
Symbol 208 GraphicUsed by:230
Symbol 209 GraphicUsed by:230
Symbol 210 GraphicUsed by:230
Symbol 211 GraphicUsed by:230
Symbol 212 GraphicUsed by:230
Symbol 213 GraphicUsed by:230
Symbol 214 GraphicUsed by:230
Symbol 215 GraphicUsed by:230
Symbol 216 GraphicUsed by:230
Symbol 217 GraphicUsed by:230
Symbol 218 GraphicUsed by:230
Symbol 219 GraphicUsed by:230
Symbol 220 GraphicUsed by:230
Symbol 221 GraphicUsed by:230
Symbol 222 GraphicUsed by:230
Symbol 223 GraphicUsed by:230
Symbol 224 GraphicUsed by:230
Symbol 225 GraphicUsed by:230
Symbol 226 GraphicUsed by:230
Symbol 227 GraphicUsed by:230
Symbol 228 GraphicUsed by:230
Symbol 229 GraphicUsed by:230
Symbol 230 MovieClipUses:204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229Used by:613
Symbol 231 GraphicUsed by:257
Symbol 232 GraphicUsed by:257
Symbol 233 GraphicUsed by:257
Symbol 234 GraphicUsed by:257
Symbol 235 GraphicUsed by:257
Symbol 236 GraphicUsed by:257
Symbol 237 GraphicUsed by:257
Symbol 238 GraphicUsed by:257
Symbol 239 GraphicUsed by:257
Symbol 240 GraphicUsed by:257
Symbol 241 GraphicUsed by:257
Symbol 242 GraphicUsed by:257
Symbol 243 GraphicUsed by:257
Symbol 244 GraphicUsed by:257
Symbol 245 GraphicUsed by:257
Symbol 246 GraphicUsed by:257
Symbol 247 GraphicUsed by:257
Symbol 248 GraphicUsed by:257
Symbol 249 GraphicUsed by:257
Symbol 250 GraphicUsed by:257
Symbol 251 GraphicUsed by:257
Symbol 252 GraphicUsed by:257
Symbol 253 GraphicUsed by:257
Symbol 254 GraphicUsed by:257
Symbol 255 GraphicUsed by:257
Symbol 256 GraphicUsed by:257
Symbol 257 MovieClipUses:231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256Used by:613
Symbol 258 GraphicUsed by:311
Symbol 259 GraphicUsed by:311
Symbol 260 GraphicUsed by:311
Symbol 261 GraphicUsed by:311
Symbol 262 GraphicUsed by:311
Symbol 263 GraphicUsed by:311
Symbol 264 GraphicUsed by:311
Symbol 265 GraphicUsed by:311
Symbol 266 GraphicUsed by:311
Symbol 267 GraphicUsed by:311
Symbol 268 GraphicUsed by:311
Symbol 269 GraphicUsed by:311
Symbol 270 GraphicUsed by:311
Symbol 271 GraphicUsed by:311
Symbol 272 GraphicUsed by:311
Symbol 273 GraphicUsed by:311
Symbol 274 GraphicUsed by:311
Symbol 275 GraphicUsed by:311
Symbol 276 GraphicUsed by:311
Symbol 277 GraphicUsed by:311
Symbol 278 GraphicUsed by:311
Symbol 279 GraphicUsed by:311
Symbol 280 GraphicUsed by:311
Symbol 281 GraphicUsed by:311
Symbol 282 GraphicUsed by:311
Symbol 283 GraphicUsed by:311
Symbol 284 GraphicUsed by:311
Symbol 285 GraphicUsed by:311
Symbol 286 GraphicUsed by:311
Symbol 287 GraphicUsed by:311
Symbol 288 GraphicUsed by:311
Symbol 289 GraphicUsed by:311
Symbol 290 GraphicUsed by:311
Symbol 291 GraphicUsed by:311
Symbol 292 GraphicUsed by:311
Symbol 293 GraphicUsed by:311
Symbol 294 GraphicUsed by:311
Symbol 295 GraphicUsed by:311
Symbol 296 GraphicUsed by:311
Symbol 297 GraphicUsed by:311
Symbol 298 GraphicUsed by:311
Symbol 299 GraphicUsed by:311
Symbol 300 GraphicUsed by:311
Symbol 301 GraphicUsed by:311
Symbol 302 GraphicUsed by:311
Symbol 303 GraphicUsed by:311
Symbol 304 GraphicUsed by:311
Symbol 305 GraphicUsed by:311
Symbol 306 GraphicUsed by:311
Symbol 307 GraphicUsed by:311
Symbol 308 GraphicUsed by:311
Symbol 309 GraphicUsed by:311
Symbol 310 GraphicUsed by:311
Symbol 311 MovieClipUses:258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310Used by:613
Symbol 312 GraphicUsed by:339
Symbol 313 GraphicUsed by:339 366
Symbol 314 GraphicUsed by:339
Symbol 315 GraphicUsed by:339
Symbol 316 GraphicUsed by:339
Symbol 317 GraphicUsed by:339
Symbol 318 GraphicUsed by:339
Symbol 319 GraphicUsed by:339
Symbol 320 GraphicUsed by:339
Symbol 321 GraphicUsed by:339
Symbol 322 GraphicUsed by:339
Symbol 323 GraphicUsed by:339
Symbol 324 GraphicUsed by:339
Symbol 325 GraphicUsed by:339
Symbol 326 GraphicUsed by:339
Symbol 327 GraphicUsed by:339
Symbol 328 GraphicUsed by:339
Symbol 329 GraphicUsed by:339
Symbol 330 GraphicUsed by:339
Symbol 331 GraphicUsed by:339
Symbol 332 GraphicUsed by:339
Symbol 333 GraphicUsed by:339
Symbol 334 GraphicUsed by:339
Symbol 335 GraphicUsed by:339
Symbol 336 GraphicUsed by:339
Symbol 337 GraphicUsed by:339
Symbol 338 GraphicUsed by:339
Symbol 339 MovieClipUses:312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338Used by:613
Symbol 340 GraphicUsed by:366
Symbol 341 GraphicUsed by:366
Symbol 342 GraphicUsed by:366
Symbol 343 GraphicUsed by:366
Symbol 344 GraphicUsed by:366
Symbol 345 GraphicUsed by:366
Symbol 346 GraphicUsed by:366
Symbol 347 GraphicUsed by:366
Symbol 348 GraphicUsed by:366
Symbol 349 GraphicUsed by:366
Symbol 350 GraphicUsed by:366
Symbol 351 GraphicUsed by:366
Symbol 352 GraphicUsed by:366
Symbol 353 GraphicUsed by:366
Symbol 354 GraphicUsed by:366
Symbol 355 GraphicUsed by:366
Symbol 356 GraphicUsed by:366
Symbol 357 GraphicUsed by:366
Symbol 358 GraphicUsed by:366
Symbol 359 GraphicUsed by:366
Symbol 360 GraphicUsed by:366
Symbol 361 GraphicUsed by:366
Symbol 362 GraphicUsed by:366
Symbol 363 GraphicUsed by:366
Symbol 364 GraphicUsed by:366
Symbol 365 GraphicUsed by:366
Symbol 366 MovieClipUses:340 313 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365Used by:613
Symbol 367 GraphicUsed by:395
Symbol 368 GraphicUsed by:395
Symbol 369 GraphicUsed by:395
Symbol 370 GraphicUsed by:395
Symbol 371 GraphicUsed by:395
Symbol 372 GraphicUsed by:395
Symbol 373 GraphicUsed by:395
Symbol 374 GraphicUsed by:395
Symbol 375 GraphicUsed by:395
Symbol 376 GraphicUsed by:395
Symbol 377 GraphicUsed by:395
Symbol 378 GraphicUsed by:395
Symbol 379 GraphicUsed by:395
Symbol 380 GraphicUsed by:395
Symbol 381 GraphicUsed by:395
Symbol 382 GraphicUsed by:395
Symbol 383 GraphicUsed by:395
Symbol 384 GraphicUsed by:395
Symbol 385 GraphicUsed by:395
Symbol 386 GraphicUsed by:395
Symbol 387 GraphicUsed by:395
Symbol 388 GraphicUsed by:395
Symbol 389 GraphicUsed by:395
Symbol 390 GraphicUsed by:395
Symbol 391 GraphicUsed by:395
Symbol 392 GraphicUsed by:395
Symbol 393 GraphicUsed by:395
Symbol 394 GraphicUsed by:395
Symbol 395 MovieClipUses:367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394Used by:613
Symbol 396 GraphicUsed by:424
Symbol 397 GraphicUsed by:424
Symbol 398 GraphicUsed by:424
Symbol 399 GraphicUsed by:424
Symbol 400 GraphicUsed by:424
Symbol 401 GraphicUsed by:424
Symbol 402 GraphicUsed by:424
Symbol 403 GraphicUsed by:424
Symbol 404 GraphicUsed by:424
Symbol 405 GraphicUsed by:424
Symbol 406 GraphicUsed by:424
Symbol 407 GraphicUsed by:424
Symbol 408 GraphicUsed by:424
Symbol 409 GraphicUsed by:424
Symbol 410 GraphicUsed by:424
Symbol 411 GraphicUsed by:424
Symbol 412 GraphicUsed by:424
Symbol 413 GraphicUsed by:424
Symbol 414 GraphicUsed by:424
Symbol 415 GraphicUsed by:424
Symbol 416 GraphicUsed by:424
Symbol 417 GraphicUsed by:424
Symbol 418 GraphicUsed by:424
Symbol 419 GraphicUsed by:424
Symbol 420 GraphicUsed by:424
Symbol 421 GraphicUsed by:424
Symbol 422 GraphicUsed by:424
Symbol 423 GraphicUsed by:424
Symbol 424 MovieClipUses:396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423Used by:613
Symbol 425 GraphicUsed by:455
Symbol 426 GraphicUsed by:455
Symbol 427 GraphicUsed by:455
Symbol 428 GraphicUsed by:455
Symbol 429 GraphicUsed by:455
Symbol 430 GraphicUsed by:455
Symbol 431 GraphicUsed by:455
Symbol 432 GraphicUsed by:455
Symbol 433 GraphicUsed by:455
Symbol 434 GraphicUsed by:455
Symbol 435 GraphicUsed by:455
Symbol 436 GraphicUsed by:455
Symbol 437 GraphicUsed by:455
Symbol 438 GraphicUsed by:455
Symbol 439 GraphicUsed by:455
Symbol 440 GraphicUsed by:455
Symbol 441 GraphicUsed by:455
Symbol 442 GraphicUsed by:455
Symbol 443 GraphicUsed by:455
Symbol 444 GraphicUsed by:455
Symbol 445 GraphicUsed by:455
Symbol 446 GraphicUsed by:455
Symbol 447 GraphicUsed by:455
Symbol 448 GraphicUsed by:455
Symbol 449 GraphicUsed by:455
Symbol 450 GraphicUsed by:455
Symbol 451 GraphicUsed by:455
Symbol 452 GraphicUsed by:455
Symbol 453 GraphicUsed by:455
Symbol 454 GraphicUsed by:455
Symbol 455 MovieClipUses:425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454Used by:613
Symbol 456 GraphicUsed by:486
Symbol 457 GraphicUsed by:486
Symbol 458 GraphicUsed by:486
Symbol 459 GraphicUsed by:486
Symbol 460 GraphicUsed by:486
Symbol 461 GraphicUsed by:486
Symbol 462 GraphicUsed by:486
Symbol 463 GraphicUsed by:486
Symbol 464 GraphicUsed by:486
Symbol 465 GraphicUsed by:486
Symbol 466 GraphicUsed by:486
Symbol 467 GraphicUsed by:486
Symbol 468 GraphicUsed by:486
Symbol 469 GraphicUsed by:486
Symbol 470 GraphicUsed by:486
Symbol 471 GraphicUsed by:486
Symbol 472 GraphicUsed by:486
Symbol 473 GraphicUsed by:486
Symbol 474 GraphicUsed by:486
Symbol 475 GraphicUsed by:486
Symbol 476 GraphicUsed by:486
Symbol 477 GraphicUsed by:486
Symbol 478 GraphicUsed by:486
Symbol 479 GraphicUsed by:486
Symbol 480 GraphicUsed by:486
Symbol 481 GraphicUsed by:486
Symbol 482 GraphicUsed by:486
Symbol 483 GraphicUsed by:486
Symbol 484 GraphicUsed by:486
Symbol 485 GraphicUsed by:486
Symbol 486 MovieClipUses:456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485Used by:613
Symbol 487 GraphicUsed by:549
Symbol 488 GraphicUsed by:549
Symbol 489 GraphicUsed by:549
Symbol 490 GraphicUsed by:549
Symbol 491 GraphicUsed by:549
Symbol 492 GraphicUsed by:549
Symbol 493 GraphicUsed by:549
Symbol 494 GraphicUsed by:549
Symbol 495 GraphicUsed by:549
Symbol 496 GraphicUsed by:549
Symbol 497 GraphicUsed by:549
Symbol 498 GraphicUsed by:549
Symbol 499 GraphicUsed by:549
Symbol 500 GraphicUsed by:549
Symbol 501 GraphicUsed by:549
Symbol 502 GraphicUsed by:549
Symbol 503 GraphicUsed by:549
Symbol 504 GraphicUsed by:549
Symbol 505 GraphicUsed by:549
Symbol 506 GraphicUsed by:549
Symbol 507 GraphicUsed by:549
Symbol 508 GraphicUsed by:549
Symbol 509 GraphicUsed by:549
Symbol 510 GraphicUsed by:549
Symbol 511 GraphicUsed by:549
Symbol 512 GraphicUsed by:549
Symbol 513 GraphicUsed by:549
Symbol 514 GraphicUsed by:549
Symbol 515 GraphicUsed by:549
Symbol 516 GraphicUsed by:549
Symbol 517 GraphicUsed by:549
Symbol 518 GraphicUsed by:549
Symbol 519 GraphicUsed by:549
Symbol 520 GraphicUsed by:549
Symbol 521 GraphicUsed by:549
Symbol 522 GraphicUsed by:549
Symbol 523 GraphicUsed by:549
Symbol 524 GraphicUsed by:549
Symbol 525 GraphicUsed by:549
Symbol 526 GraphicUsed by:549
Symbol 527 GraphicUsed by:549
Symbol 528 GraphicUsed by:549
Symbol 529 GraphicUsed by:549
Symbol 530 GraphicUsed by:549
Symbol 531 GraphicUsed by:549
Symbol 532 GraphicUsed by:549
Symbol 533 GraphicUsed by:549
Symbol 534 GraphicUsed by:549
Symbol 535 GraphicUsed by:549
Symbol 536 GraphicUsed by:549
Symbol 537 GraphicUsed by:549
Symbol 538 GraphicUsed by:549
Symbol 539 GraphicUsed by:549
Symbol 540 GraphicUsed by:549
Symbol 541 GraphicUsed by:549
Symbol 542 GraphicUsed by:549
Symbol 543 GraphicUsed by:549
Symbol 544 GraphicUsed by:549
Symbol 545 GraphicUsed by:549
Symbol 546 GraphicUsed by:549
Symbol 547 GraphicUsed by:549
Symbol 548 GraphicUsed by:549
Symbol 549 MovieClipUses:487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548Used by:613
Symbol 550 GraphicUsed by:612
Symbol 551 GraphicUsed by:612
Symbol 552 GraphicUsed by:612
Symbol 553 GraphicUsed by:612
Symbol 554 GraphicUsed by:612
Symbol 555 GraphicUsed by:612
Symbol 556 GraphicUsed by:612
Symbol 557 GraphicUsed by:612
Symbol 558 GraphicUsed by:612
Symbol 559 GraphicUsed by:612
Symbol 560 GraphicUsed by:612
Symbol 561 GraphicUsed by:612
Symbol 562 GraphicUsed by:612
Symbol 563 GraphicUsed by:612
Symbol 564 GraphicUsed by:612
Symbol 565 GraphicUsed by:612
Symbol 566 GraphicUsed by:612
Symbol 567 GraphicUsed by:612
Symbol 568 GraphicUsed by:612
Symbol 569 GraphicUsed by:612
Symbol 570 GraphicUsed by:612
Symbol 571 GraphicUsed by:612
Symbol 572 GraphicUsed by:612
Symbol 573 GraphicUsed by:612
Symbol 574 GraphicUsed by:612
Symbol 575 GraphicUsed by:612
Symbol 576 GraphicUsed by:612
Symbol 577 GraphicUsed by:612
Symbol 578 GraphicUsed by:612
Symbol 579 GraphicUsed by:612
Symbol 580 GraphicUsed by:612
Symbol 581 GraphicUsed by:612
Symbol 582 GraphicUsed by:612
Symbol 583 GraphicUsed by:612
Symbol 584 GraphicUsed by:612
Symbol 585 GraphicUsed by:612
Symbol 586 GraphicUsed by:612
Symbol 587 GraphicUsed by:612
Symbol 588 GraphicUsed by:612
Symbol 589 GraphicUsed by:612
Symbol 590 GraphicUsed by:612
Symbol 591 GraphicUsed by:612
Symbol 592 GraphicUsed by:612
Symbol 593 GraphicUsed by:612
Symbol 594 GraphicUsed by:612
Symbol 595 GraphicUsed by:612
Symbol 596 GraphicUsed by:612
Symbol 597 GraphicUsed by:612
Symbol 598 GraphicUsed by:612
Symbol 599 GraphicUsed by:612
Symbol 600 GraphicUsed by:612
Symbol 601 GraphicUsed by:612
Symbol 602 GraphicUsed by:612
Symbol 603 GraphicUsed by:612
Symbol 604 GraphicUsed by:612
Symbol 605 GraphicUsed by:612
Symbol 606 GraphicUsed by:612
Symbol 607 GraphicUsed by:612
Symbol 608 GraphicUsed by:612
Symbol 609 GraphicUsed by:612
Symbol 610 GraphicUsed by:612
Symbol 611 GraphicUsed by:612
Symbol 612 MovieClipUses:550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611Used by:613
Symbol 613 MovieClipUses:96 203 230 257 311 339 366 395 424 455 486 549 612Used by:Timeline
Symbol 614 GraphicUsed by:615
Symbol 615 MovieClipUses:614Used by:625
Symbol 616 GraphicUsed by:624
Symbol 617 EditableTextUses:2Used by:624
Symbol 618 EditableTextUses:2Used by:624
Symbol 619 EditableTextUses:2Used by:624
Symbol 620 EditableTextUses:2Used by:624
Symbol 621 EditableTextUses:5Used by:624
Symbol 622 EditableTextUses:5Used by:624
Symbol 623 EditableTextUses:2Used by:624
Symbol 624 MovieClipUses:616 617 618 619 620 621 622 623Used by:625
Symbol 625 MovieClipUses:615 624Used by:Timeline
Symbol 626 GraphicUsed by:628
Symbol 627 TextUses:5Used by:628
Symbol 628 MovieClipUses:626 627Used by:Timeline
Symbol 629 GraphicUsed by:650
Symbol 630 GraphicUsed by:631
Symbol 631 MovieClipUses:630Used by:650
Symbol 632 GraphicUsed by:633
Symbol 633 MovieClipUses:632Used by:650
Symbol 634 EditableTextUses:5Used by:650
Symbol 635 GraphicUsed by:637 639 641 643
Symbol 636 TextUses:5Used by:637
Symbol 637 MovieClipUses:635 636Used by:650
Symbol 638 TextUses:5Used by:639
Symbol 639 MovieClipUses:635 638Used by:650
Symbol 640 TextUses:5Used by:641
Symbol 641 MovieClipUses:635 640Used by:650
Symbol 642 TextUses:5Used by:643
Symbol 643 MovieClipUses:635 642Used by:650
Symbol 644 EditableTextUses:5Used by:650
Symbol 645 GraphicUsed by:647 649
Symbol 646 TextUses:5Used by:647
Symbol 647 MovieClipUses:645 646Used by:650
Symbol 648 TextUses:5Used by:649
Symbol 649 MovieClipUses:645 648Used by:650
Symbol 650 MovieClipUses:629 631 633 634 637 639 641 643 644 647 649Used by:Timeline
Symbol 651 GraphicUsed by:652
Symbol 652 MovieClipUses:651Used by:Timeline
Symbol 653 GraphicUsed by:672
Symbol 654 EditableTextUses:2Used by:672
Symbol 655 GraphicUsed by:671
Symbol 656 EditableTextUses:2Used by:671
Symbol 657 EditableTextUses:5Used by:671
Symbol 658 GraphicUsed by:660 662 664
Symbol 659 EditableTextUses:5Used by:660
Symbol 660 MovieClipUses:658 659Used by:671
Symbol 661 EditableTextUses:5Used by:662
Symbol 662 MovieClipUses:658 661Used by:671
Symbol 663 EditableTextUses:5Used by:664
Symbol 664 MovieClipUses:658 663Used by:671
Symbol 665 EditableTextUses:5Used by:671
Symbol 666 EditableTextUses:2Used by:671
Symbol 667 EditableTextUses:5Used by:671
Symbol 668 EditableTextUses:2Used by:671
Symbol 669 EditableTextUses:5Used by:671
Symbol 670 EditableTextUses:5Used by:671
Symbol 671 MovieClip {Twins_fla.subwindow_40}Uses:655 656 657 660 662 664 665 666 667 668 669 670Used by:672
Symbol 672 MovieClip {Twins_fla.frameGameOver_39}Uses:653 654 671Used by:Timeline
Symbol 673 GraphicUsed by:Timeline
Symbol 674 GraphicUsed by:Timeline
Symbol 675 GraphicUsed by:676
Symbol 676 MovieClipUses:675Used by:Timeline
Symbol 677 GraphicUsed by:678
Symbol 678 MovieClipUses:677Used by:Timeline
Symbol 679 GraphicUsed by:680
Symbol 680 MovieClipUses:679Used by:Timeline
Symbol 681 TextUses:2Used by:Timeline
Symbol 682 GraphicUsed by:686 690 692
Symbol 683 TextUses:2Used by:686
Symbol 684 GraphicUsed by:686
Symbol 685 TextUses:2Used by:686
Symbol 686 MovieClip {Twins_fla.btnPonytail_47}Uses:682 683 684 685Used by:Timeline
Symbol 687 TextUses:2Used by:690
Symbol 688 GraphicUsed by:690
Symbol 689 TextUses:2Used by:690
Symbol 690 MovieClip {Twins_fla.btnBraids_48}Uses:682 687 688 689Used by:Timeline
Symbol 691 TextUses:2Used by:692
Symbol 692 MovieClipUses:682 691Used by:Timeline
Symbol 693 EditableTextUses:5Used by:Timeline
Symbol 694 EditableTextUses:39Used by:Timeline
Symbol 695 EditableTextUses:39Used by:Timeline
Symbol 696 EditableTextUses:5Used by:Timeline
Symbol 697 EditableTextUses:5Used by:Timeline
Symbol 698 GraphicUsed by:699
Symbol 699 MovieClipUses:698Used by:Timeline
Symbol 700 GraphicUsed by:701
Symbol 701 MovieClipUses:700Used by:Timeline
Symbol 702 GraphicUsed by:703
Symbol 703 MovieClipUses:702Used by:Timeline
Symbol 704 EditableTextUses:5Used by:Timeline
Symbol 705 GraphicUsed by:706
Symbol 706 MovieClipUses:705Used by:Timeline
Symbol 707 EditableTextUses:5Used by:Timeline
Symbol 708 GraphicUsed by:709
Symbol 709 MovieClipUses:708Used by:Timeline
Symbol 710 GraphicUsed by:711
Symbol 711 MovieClipUses:710Used by:Timeline
Symbol 712 TextUses:2Used by:Timeline

Instance Names

"btnIntroStart"Frame 1Symbol 7 MovieClip {introStartButton}
"loaded_txt"Frame 1Symbol 10 EditableText
"loader_mc"Frame 1Symbol 12 MovieClip {movie_mc}
"inputCode"Frame 1Symbol 16 EditableText
"bgTrees"Frame 2Symbol 22 MovieClip
"passerby"Frame 2Symbol 27 MovieClip {Twins_fla.passerby_4}
"bg"Frame 2Symbol 43 MovieClip {Twins_fla.bg_5}
"img"Frame 2Symbol 613 MovieClip
"klaffi"Frame 2Symbol 625 MovieClip
"btnConsole"Frame 2Symbol 628 MovieClip
"console"Frame 2Symbol 650 MovieClip
"btnNeutral"Frame 2Symbol 652 MovieClip
"btnBelly"Frame 2Symbol 652 MovieClip
"btnFeet"Frame 2Symbol 652 MovieClip
"btnSides"Frame 2Symbol 652 MovieClip
"btnBreasts"Frame 2Symbol 652 MovieClip
"btnArmpits"Frame 2Symbol 652 MovieClip
"btnButt"Frame 2Symbol 652 MovieClip
"frameGameOver"Frame 2Symbol 672 MovieClip {Twins_fla.frameGameOver_39}
"girlSkin"Frame 3Symbol 676 MovieClip
"girlHair"Frame 3Symbol 678 MovieClip
"girlTop"Frame 3Symbol 680 MovieClip
"btnPonyTails"Frame 3Symbol 686 MovieClip {Twins_fla.btnPonytail_47}
"btnBraids"Frame 3Symbol 690 MovieClip {Twins_fla.btnBraids_48}
"btnGameStart"Frame 3Symbol 692 MovieClip
"p1n"Frame 3Symbol 694 EditableText
"p2n"Frame 3Symbol 695 EditableText
"btnR1"Frame 3Symbol 699 MovieClip
"btnG1"Frame 3Symbol 701 MovieClip
"btnB1"Frame 3Symbol 703 MovieClip
"btnR2"Frame 3Symbol 699 MovieClip
"btnG2"Frame 3Symbol 701 MovieClip
"btnB2"Frame 3Symbol 703 MovieClip
"cir1"Frame 3Symbol 706 MovieClip
"cir2"Frame 3Symbol 706 MovieClip
"cir3"Frame 3Symbol 706 MovieClip
"cir4"Frame 3Symbol 706 MovieClip
"cir5"Frame 3Symbol 706 MovieClip
"cir6"Frame 3Symbol 706 MovieClip
"sceneSample"Frame 3Symbol 43 MovieClip {Twins_fla.bg_5}
"btnDown"Frame 3Symbol 709 MovieClip
"btnUp"Frame 3Symbol 711 MovieClip
"p1Name"Symbol 42 MovieClip Frame 1Symbol 40 EditableText
"p2Name"Symbol 42 MovieClip Frame 1Symbol 41 EditableText
"bgDrop"Symbol 43 MovieClip {Twins_fla.bg_5} Frame 1Symbol 34 MovieClip {Twins_fla.bgDrop_6}
"redStrip"Symbol 43 MovieClip {Twins_fla.bg_5} Frame 1Symbol 36 MovieClip
"blueStrip"Symbol 43 MovieClip {Twins_fla.bg_5} Frame 1Symbol 38 MovieClip
"nameStrip"Symbol 43 MovieClip {Twins_fla.bg_5} Frame 1Symbol 42 MovieClip
"skinShadow"Symbol 613 MovieClip Frame 1Symbol 96 MovieClip
"body"Symbol 613 MovieClip Frame 1Symbol 203 MovieClip
"bra1"Symbol 613 MovieClip Frame 1Symbol 230 MovieClip
"bra2"Symbol 613 MovieClip Frame 1Symbol 257 MovieClip
"expression"Symbol 613 MovieClip Frame 1Symbol 311 MovieClip
"panties1"Symbol 613 MovieClip Frame 1Symbol 339 MovieClip
"panties2"Symbol 613 MovieClip Frame 1Symbol 366 MovieClip
"skirt1"Symbol 613 MovieClip Frame 1Symbol 395 MovieClip
"skirt2"Symbol 613 MovieClip Frame 1Symbol 424 MovieClip
"socks1"Symbol 613 MovieClip Frame 1Symbol 455 MovieClip
"socks2"Symbol 613 MovieClip Frame 1Symbol 486 MovieClip
"hairShadow"Symbol 613 MovieClip Frame 1Symbol 549 MovieClip
"hair"Symbol 613 MovieClip Frame 1Symbol 612 MovieClip
"name1"Symbol 624 MovieClip Frame 1Symbol 618 EditableText
"name2"Symbol 624 MovieClip Frame 1Symbol 619 EditableText
"locName"Symbol 624 MovieClip Frame 1Symbol 620 EditableText
"roundNr"Symbol 624 MovieClip Frame 1Symbol 623 EditableText
"klaffi1"Symbol 625 MovieClip Frame 1Symbol 615 MovieClip
"klaffi2"Symbol 625 MovieClip Frame 1Symbol 624 MovieClip
"btnRight"Symbol 650 MovieClip Frame 1Symbol 631 MovieClip
"btnLeft"Symbol 650 MovieClip Frame 1Symbol 633 MovieClip
"labelFrame"Symbol 650 MovieClip Frame 1Symbol 634 EditableText
"btnSkirt1"Symbol 650 MovieClip Frame 1Symbol 637 MovieClip
"btnBra1"Symbol 650 MovieClip Frame 1Symbol 639 MovieClip
"btnPanties1"Symbol 650 MovieClip Frame 1Symbol 641 MovieClip
"btnSocks1"Symbol 650 MovieClip Frame 1Symbol 643 MovieClip
"btnSkirt2"Symbol 650 MovieClip Frame 1Symbol 637 MovieClip
"btnBra2"Symbol 650 MovieClip Frame 1Symbol 639 MovieClip
"btnPanties2"Symbol 650 MovieClip Frame 1Symbol 641 MovieClip
"btnSocks2"Symbol 650 MovieClip Frame 1Symbol 643 MovieClip
"btnGuy"Symbol 650 MovieClip Frame 1Symbol 647 MovieClip
"btnScene"Symbol 650 MovieClip Frame 1Symbol 649 MovieClip
"btnNewRound"Symbol 671 MovieClip {Twins_fla.subwindow_40} Frame 1Symbol 660 MovieClip
"btnSettings"Symbol 671 MovieClip {Twins_fla.subwindow_40} Frame 1Symbol 662 MovieClip
"btnMudFight"Symbol 671 MovieClip {Twins_fla.subwindow_40} Frame 1Symbol 664 MovieClip
"pName"Symbol 672 MovieClip {Twins_fla.frameGameOver_39} Frame 1Symbol 654 EditableText
"winLose"Symbol 672 MovieClip {Twins_fla.frameGameOver_39} Frame 1Symbol 671 MovieClip {Twins_fla.subwindow_40}

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata present, AS3.
SWFMetaData (77)Timeline Frame 11298 bytes "<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmln ..."




http://swfchan.com/37/181864/info.shtml
Created: 7/8 -2019 20:31:49 Last modified: 7/8 -2019 20:31:49 Server time: 24/04 -2024 04:43:50