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 adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.media.*;
import flash.net.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
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, frame1, 1, frame2, 2, frame3);
}
public function onProgress(_arg1:ProgressEvent):void{
var _local2:Number = _arg1.target.bytesLoaded;
var _local3:Number = _arg1.target.bytesTotal;
var _local4:Number = (_local2 / _local3);
loader_mc.scaleX = _local4;
loaded_txt.text = (("Loading... " + Math.round((_local4 * 100))) + "%");
}
public function onComplete(_arg1:Event):void{
loaded_txt.text = "Finished loading.";
btnIntroStart.alpha = 1;
btnIntroStart.addEventListener(MouseEvent.CLICK, startGame);
}
public function startGame(_arg1:MouseEvent):void{
btnIntroStart.removeEventListener(MouseEvent.CLICK, startGame);
if (inputCode.text.toLowerCase() == ((((((((((((((((a[1] + a[6]) + a[6]) + a[2]) + " ") + a[7]) + a[0]) + a[4]) + " ") + a[8]) + a[3]) + " ") + a[4]) + a[9]) + a[10]) + a[1]) + a[3])){
bConsoleEnabled = true;
};
gotoAndStop(3);
}
public function secTimer():void{
if ((((bGameOver == false)) && ((bPaused == false)))){
seconds++;
};
}
public function customMouseCursor(_arg1:Event):void{
myMouse.x = stage.mouseX;
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")) && ((console.alpha > 0.5)))) && ((phaseFrame > 3)))){
if (phaseFrame > 0){
phaseFrame = (phaseFrame - 2);
};
showButton();
} else {
if ((((((_local3 == "btnRight")) && ((console.alpha > 0.5)))) && ((phaseFrame < 53)))){
phaseFrame = (phaseFrame + 2);
showButton();
} else {
if ((((((_local3 == "btnSkirt1")) && ((console.alpha > 0.5)))) && ((mudOffset == 0)))){
img.skirt1.alpha = (1 - img.skirt1.alpha);
} else {
if ((((((_local3 == "btnBra1")) && ((console.alpha > 0.5)))) && ((mudOffset == 0)))){
img.bra1.alpha = (1 - img.bra1.alpha);
} else {
if ((((((_local3 == "btnPanties1")) && ((console.alpha > 0.5)))) && ((mudOffset == 0)))){
img.panties1.alpha = (1 - img.panties1.alpha);
} else {
if ((((((_local3 == "btnSocks1")) && ((console.alpha > 0.5)))) && ((mudOffset == 0)))){
img.socks1.alpha = (1 - img.socks1.alpha);
} else {
if ((((((_local3 == "btnSkirt2")) && ((console.alpha > 0.5)))) && ((mudOffset == 0)))){
img.skirt2.alpha = (1 - img.skirt2.alpha);
} else {
if ((((((_local3 == "btnBra2")) && ((console.alpha > 0.5)))) && ((mudOffset == 0)))){
img.bra2.alpha = (1 - img.bra2.alpha);
} else {
if ((((((_local3 == "btnPanties2")) && ((console.alpha > 0.5)))) && ((mudOffset == 0)))){
img.panties2.alpha = (1 - img.panties2.alpha);
} else {
if ((((((_local3 == "btnSocks2")) && ((console.alpha > 0.5)))) && ((mudOffset == 0)))){
img.socks2.alpha = (1 - img.socks2.alpha);
} else {
if ((((_local3 == "btnNewRound")) && ((frameGameOver.winLose.btnNewRound.alpha == 1)))){
seconds = 0;
phaseFrame = 2;
endCounter = 10;
iRound++;
klaffiCountdown = 0;
actionCountdown = (Math.floor((Math.random() * 8)) + 4);
timeOutCountdown = 0;
bOppMoving = false;
turn = 1;
p1End = health;
p2End = health;
speedArr = [20, 20, 20];
img.panties1.alpha = 1;
img.panties2.alpha = 1;
img.bra1.alpha = 1;
img.bra2.alpha = 1;
img.skirt1.alpha = 1;
img.skirt2.alpha = 1;
img.socks1.alpha = 1;
img.socks2.alpha = 1;
showFrame(phaseFrame, false);
showKlaffi();
console.labelFrame.text = (phaseFrame / 2);
console.alpha = 0;
btnConsole.alpha = 0.5;
console.x = -65;
myMouse.gotoAndStop(2);
cpuMouse.alpha = 1;
frameGameOver.y = -230;
frameGameOver.alpha = 0;
bPaused = false;
bGameOver = false;
} else {
if ((((_local3 == "btnSettings")) && ((frameGameOver.winLose.btnSettings.alpha == 1)))){
stage.removeEventListener(MouseEvent.CLICK, mouseClicked);
clearInterval(myInterval);
clearInterval(secInterval);
stage.removeEventListener(Event.ENTER_FRAME, customMouseCursor);
Mouse.show();
stage.removeChild(myMouse);
stage.removeChild(cpuMouse);
_local2 = true;
} else {
if ((((_local3 == "btnMudFight")) && ((frameGameOver.winLose.btnMudFight.alpha == 1)))){
mudOffset = 100;
seconds = 0;
phaseFrame = 2;
endCounter = 10;
iRound++;
klaffiCountdown = 0;
actionCountdown = (Math.floor((Math.random() * 8)) + 4);
timeOutCountdown = 0;
bOppMoving = false;
turn = 1;
p1End = health;
p2End = health;
speedArr = [20, 20, 20];
img.panties1.alpha = 0;
img.panties2.alpha = 0;
img.bra1.alpha = 0;
img.bra2.alpha = 0;
img.skirt1.alpha = 0;
img.skirt2.alpha = 0;
img.socks1.alpha = 0;
img.socks2.alpha = 0;
enterMudBath();
showFrame(phaseFrame, false);
showKlaffi();
console.labelFrame.text = (phaseFrame / 2);
console.alpha = 0;
btnConsole.alpha = 0.5;
console.x = -65;
myMouse.gotoAndStop(2);
cpuMouse.alpha = 1;
if (bConsoleEnabled == true){
frameGameOver.y = -230;
frameGameOver.alpha = 0;
bPaused = false;
bGameOver = false;
} else {
frameGameOver.winLose.gotoAndStop(3);
};
} else {
if ((((((_local3 == "btnScene")) && ((console.alpha > 0.5)))) && ((mudOffset == 0)))){
if (bg.bgDrop.currentFrame < lastBgFrame){
bg.bgDrop.gotoAndStop((bg.bgDrop.currentFrame + 1));
} else {
bg.bgDrop.gotoAndStop(1);
};
} else {
if ((((_local3 == "btnConsole")) && ((bConsoleEnabled == true)))){
if (console.alpha > 0.5){
console.alpha = 0;
btnConsole.alpha = 0.5;
console.x = -65;
myMouse.gotoAndStop(2);
cpuMouse.alpha = 1;
phaseFrame = memoryPhaseFrame;
bPaused = false;
showButtons(true);
} else {
console.alpha = 0.8;
console.x = 0;
btnConsole.alpha = 1;
myMouse.gotoAndStop(1);
cpuMouse.alpha = 0;
memoryPhaseFrame = phaseFrame;
showButtons(false);
bPaused = true;
};
} else {
if ((((_local3 == "btnGuy")) && ((console.alpha > 0.5)))){
passerby.alpha = (1 - passerby.alpha);
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
console.labelFrame.text = (phaseFrame / 2);
if ((((_local3 == "btnNeutral")) && (!((btnNeutral.alpha == 0))))){
speedArr.push(seconds);
speedArr.splice(0, 1);
seconds = 0;
btnNeutral.x = -100;
checkIfCpuNeedsUpdatedPath(btnNeutral);
if (turn != 0){
animate(true, 0);
};
} else {
if ((((_local3 == "btnBelly")) && (!((btnBelly.alpha == 0))))){
speedArr.push(seconds);
speedArr.splice(0, 1);
seconds = 0;
btnBelly.x = -100;
checkIfCpuNeedsUpdatedPath(btnBelly);
if (turn != 0){
animate(true, 1);
};
} else {
if ((((_local3 == "btnFeet")) && (!((btnFeet.alpha == 0))))){
speedArr.push(seconds);
speedArr.splice(0, 1);
seconds = 0;
btnFeet.x = -100;
checkIfCpuNeedsUpdatedPath(btnFeet);
if (turn != 0){
animate(true, 2);
};
} else {
if ((((_local3 == "btnSides")) && (!((btnSides.alpha == 0))))){
speedArr.push(seconds);
speedArr.splice(0, 1);
seconds = 0;
btnSides.x = -100;
checkIfCpuNeedsUpdatedPath(btnSides);
if (turn != 0){
animate(true, 3);
};
} else {
if ((((_local3 == "btnBreasts")) && (!((btnBreasts.alpha == 0))))){
speedArr.push(seconds);
speedArr.splice(0, 1);
seconds = 0;
btnBreasts.x = -100;
checkIfCpuNeedsUpdatedPath(btnBreasts);
if (turn != 0){
animate(true, 4);
};
} else {
if ((((_local3 == "btnArmpits")) && (!((btnArmpits.alpha == 0))))){
speedArr.push(seconds);
speedArr.splice(0, 1);
seconds = 0;
btnArmpits.x = -100;
checkIfCpuNeedsUpdatedPath(btnArmpits);
if (turn != 0){
animate(true, 5);
};
} else {
if ((((_local3 == "btnButt")) && (!((btnButt.alpha == 0))))){
speedArr.push(seconds);
speedArr.splice(0, 1);
seconds = 0;
btnButt.x = -100;
checkIfCpuNeedsUpdatedPath(btnButt);
if (turn != 0){
animate(true, 6);
};
};
};
};
};
};
};
};
if (_local2 == true){
gotoAndStop(3);
};
}
public function showFrame(_arg1, _arg2):void{
img.body.gotoAndStop((_arg1 + mudOffset));
img.skinShadow.gotoAndStop(_arg1);
img.hair.gotoAndStop((_arg1 + hairOffset));
img.hairShadow.gotoAndStop((_arg1 + hairOffset));
img.panties1.gotoAndStop(_arg1);
img.panties2.gotoAndStop(_arg1);
img.bra1.gotoAndStop(_arg1);
img.bra2.gotoAndStop(_arg1);
img.skirt1.gotoAndStop(_arg1);
img.skirt2.gotoAndStop(_arg1);
img.socks1.gotoAndStop(_arg1);
img.socks2.gotoAndStop(_arg1);
img.expression.gotoAndStop(_arg1);
applyColour();
if (_arg2 == true){
img.scaleX = -1;
} else {
img.scaleX = 1;
};
}
public function applyColour():void{
img.skinShadow.transform.colorTransform = skinColor;
img.hairShadow.transform.colorTransform = hairColor;
}
public function myTimer():void{
var _local1:*;
if ((((((img.body.currentFrame > 51)) && ((img.body.currentFrame < 100)))) || ((img.body.currentFrame > 151)))){
endCounter--;
if (endCounter < 1){
endCounter = 10;
if (img.body.currentFrame == (phaseFrame + mudOffset)){
showFrame((phaseFrame + 1), false);
} else {
showFrame(phaseFrame, false);
};
};
} else {
if (img.body.currentFrame == (phaseFrame + mudOffset)){
showFrame((phaseFrame + 1), false);
} else {
showFrame(phaseFrame, false);
};
};
if ((((bPaused == false)) && ((bGameOver == false)))){
if (turn == 2){
p1End--;
};
if (turn == 0){
p2End--;
};
bg.blueStrip.scaleX = (p1End / health);
bg.redStrip.scaleX = (p2End / health);
if (p1End == 0){
gameOver(false);
};
if (p2End == 0){
gameOver(true);
};
if (passerByCountdown > 0){
passerByCountdown--;
if (passerByCountdown == 0){
_local1 = 395;
if (Math.floor((Math.random() * 2)) == 0){
_local1 = 505;
};
if (passerby.x > 400){
if ((((passerby.x > 700)) && ((Math.floor((Math.random() * 3)) == 0)))){
passerby.scaleX = 1;
passerByTween = new Tween(passerby, "x", None.easeNone, passerby.x, _local1, 4, true);
passerByTween.FPS = 40;
passerByTween.addEventListener(TweenEvent.MOTION_FINISH, passerByFinished);
} else {
passerby.gotoAndPlay(1);
passerby.scaleX = 1;
passerByTween = new Tween(passerby, "x", None.easeNone, passerby.x, 200, 6, true);
passerByTween.FPS = 40;
passerByTween.addEventListener(TweenEvent.MOTION_FINISH, passerByFinished);
};
} else {
if ((((passerby.x < 230)) && ((Math.floor((Math.random() * 3)) == 0)))){
passerby.scaleX = -1;
passerByTween = new Tween(passerby, "x", None.easeNone, passerby.x, _local1, 4, true);
passerByTween.FPS = 40;
passerByTween.addEventListener(TweenEvent.MOTION_FINISH, passerByFinished);
} else {
passerby.gotoAndPlay(1);
passerby.scaleX = -1;
passerByTween = new Tween(passerby, "x", None.easeNone, passerby.x, 727, 6, true);
passerByTween.FPS = 40;
passerByTween.addEventListener(TweenEvent.MOTION_FINISH, passerByFinished);
};
};
};
};
if ((((btnNeutral.x > 0)) && ((btnNeutral.scaleX < 0.8)))){
btnNeutral.x = -100;
};
if ((((btnBelly.x > 0)) && ((btnBelly.scaleX < 0.8)))){
btnBelly.x = -100;
};
if ((((btnFeet.x > 0)) && ((btnFeet.scaleX < 0.8)))){
btnFeet.x = -100;
};
if ((((btnSides.x > 0)) && ((btnSides.scaleX < 0.8)))){
btnSides.x = -100;
};
if ((((btnArmpits.x > 0)) && ((btnArmpits.scaleX < 0.8)))){
btnArmpits.x = -100;
};
if ((((btnButt.x > 0)) && ((btnButt.scaleX < 0.8)))){
btnButt.x = -100;
};
if ((((btnBreasts.x > 0)) && ((btnBreasts.scaleX < 0.8)))){
btnBreasts.x = -100;
};
if (klaffiCountdown > 0){
klaffiCountdown--;
if (klaffiCountdown == 6){
klaffiTween = new Tween(klaffi.klaffi1, "rotation", None.easeNone, 0, 9.5, 0.2, true);
klaffiTween.FPS = 40;
};
if (klaffiCountdown == 2){
klaffiTween = new Tween(klaffi, "x", None.easeNone, -25, -500, 0.5, true);
klaffiTween.FPS = 40;
};
} else {
if (timeOutCountdown > 0){
timeOutCountdown--;
} else {
actionCountdown--;
if (actionCountdown < 1){
actionCountdown = (Math.floor((Math.random() * 3)) + 2);
showButton();
};
};
};
OppFindTarget();
};
}
public function passerByFinished(_arg1:TweenEvent){
if ((((passerby.x < 230)) || ((passerby.x > 700)))){
passerByCountdown = 10;
} else {
passerByCountdown = 40;
passerby.gotoAndStop(25);
};
}
public function showButton():void{
var _local1:* = 0;
var _local2:* = false;
var _local3:* = 0;
var _local4:* = 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 = btnButt;
if (Math.floor((Math.random() * 2)) == 0){
_local5 = 6;
} else {
_local5 = 13;
};
} else {
if (_local3 == 2){
_local4 = btnBelly;
if (Math.floor((Math.random() * 2)) == 0){
_local5 = 1;
} else {
_local5 = 8;
};
} else {
if (_local3 == 3){
_local4 = btnFeet;
if (Math.floor((Math.random() * 2)) == 0){
_local5 = 2;
} else {
_local5 = 9;
};
} else {
if (_local3 == 4){
_local4 = btnSides;
if (Math.floor((Math.random() * 2)) == 0){
_local5 = 3;
} else {
_local5 = 10;
};
} else {
if (_local3 == 5){
_local4 = btnBreasts;
if (Math.floor((Math.random() * 2)) == 0){
_local5 = 4;
} else {
_local5 = 11;
};
} else {
if (_local3 == 6){
_local4 = btnArmpits;
if (Math.floor((Math.random() * 2)) == 0){
_local5 = 5;
} else {
_local5 = 12;
};
};
};
};
};
};
};
if ((((_local4.x < 0)) || ((_local4.x > 770)))){
if (phaseFrame == 2){
_local1 = 1;
_local2 = false;
};
if (phaseFrame == 4){
_local1 = 2;
_local2 = false;
};
if (phaseFrame == 6){
_local1 = 2;
_local2 = true;
};
if (phaseFrame == 8){
_local1 = 3;
_local2 = false;
};
if (phaseFrame == 10){
_local1 = 3;
_local2 = true;
};
if (phaseFrame == 12){
_local1 = 4;
_local2 = false;
};
if (phaseFrame == 14){
_local1 = 4;
_local2 = true;
};
if (phaseFrame == 16){
_local1 = 5;
_local2 = false;
};
if (phaseFrame == 18){
_local1 = 5;
_local2 = true;
};
if (phaseFrame == 20){
_local1 = 6;
_local2 = false;
};
if (phaseFrame == 22){
_local1 = 6;
_local2 = true;
};
if (phaseFrame == 24){
_local1 = 7;
_local2 = false;
};
if (phaseFrame == 26){
_local1 = 7;
_local2 = true;
};
if (phaseFrame == 28){
_local1 = 8;
_local2 = false;
};
if (phaseFrame == 30){
_local1 = 8;
_local2 = true;
};
if (phaseFrame == 32){
_local1 = 9;
_local2 = false;
};
if (phaseFrame == 34){
_local1 = 9;
_local2 = true;
};
if (phaseFrame == 36){
_local1 = 10;
_local2 = false;
};
if (phaseFrame == 38){
_local1 = 10;
_local2 = true;
};
if (phaseFrame == 40){
_local1 = 11;
_local2 = false;
};
if (phaseFrame == 42){
_local1 = 11;
_local2 = true;
};
if (phaseFrame == 44){
_local1 = 12;
_local2 = false;
};
if (phaseFrame == 46){
_local1 = 12;
_local2 = true;
};
if (phaseFrame == 48){
_local1 = 13;
_local2 = false;
};
if (phaseFrame == 50){
_local1 = 13;
_local2 = true;
};
if (_local2 == false){
_local4.x = xArr[_local1][_local5];
_local4.y = yArr[_local1][_local5];
} else {
_local4.x = (770 - xArr[_local1][_local5]);
_local4.y = yArr[_local1][_local5];
};
tweenZoomX = new Tween(_local4, "scaleX", Regular.easeOut, 2.5, 0.75, 3, true);
tweenZoomX.FPS = 40;
tweenZoomY = new Tween(_local4, "scaleY", Regular.easeOut, 2.5, 0.75, 3, true);
tweenZoomY.FPS = 40;
};
}
public function cancelButtons():void{
btnNeutral.x = -100;
btnBelly.x = -100;
btnFeet.x = -100;
btnSides.x = -100;
btnBreasts.x = -100;
btnArmpits.x = -100;
btnButt.x = -100;
}
public function enterMudBath():void{
bg.bgDrop.gotoAndStop(4);
skinColor = new ColorTransform(0, 0, 0, 1, 134, 79, 48, 0);
hairColor = new ColorTransform(0, 0, 0, 1, 127, 74, 38, 0);
mudOffset = 100;
img.skirt1.alpha = 0;
img.panties1.alpha = 0;
img.bra1.alpha = 0;
img.socks1.alpha = 0;
img.skirt2.alpha = 0;
img.panties2.alpha = 0;
img.bra2.alpha = 0;
img.socks2.alpha = 0;
}
public function showKlaffi():void{
klaffiCountdown = 15;
klaffi.x = -25;
klaffi.klaffi1.rotation = 0;
klaffi.klaffi2.roundNr.text = iRound;
klaffi.klaffi2.name1.text = char1name;
klaffi.klaffi2.name2.text = char2name;
if (bg.bgDrop.currentFrame == 1){
klaffi.klaffi2.locName.text = "Hotel Room";
} else {
if (bg.bgDrop.currentFrame == 2){
klaffi.klaffi2.locName.text = "Resort Arena";
} else {
if (bg.bgDrop.currentFrame == 3){
klaffi.klaffi2.locName.text = "Beach";
} else {
if (bg.bgDrop.currentFrame == 4){
klaffi.klaffi2.locName.text = "Mud Arena!";
} else {
klaffi.klaffi2.locName.text = "";
};
};
};
};
klaffi.alpha = 1;
}
public function OppFindTarget():void{
var _local1:Array;
var _local2:*;
if (bOppMoving == false){
_local1 = [];
if ((((btnNeutral.x > 0)) && ((btnNeutral.x < 770)))){
_local1.push(btnNeutral);
};
if ((((btnBelly.x > 0)) && ((btnBelly.x < 770)))){
_local1.push(btnBelly);
};
if ((((btnFeet.x > 0)) && ((btnFeet.x < 770)))){
_local1.push(btnFeet);
};
if ((((btnSides.x > 0)) && ((btnSides.x < 770)))){
_local1.push(btnSides);
};
if ((((btnBreasts.x > 0)) && ((btnBreasts.x < 770)))){
_local1.push(btnBreasts);
};
if ((((btnArmpits.x > 0)) && ((btnArmpits.x < 770)))){
_local1.push(btnArmpits);
};
if ((((btnButt.x > 0)) && ((btnButt.x < 770)))){
_local1.push(btnButt);
};
if (_local1.length > 0){
bOppMoving = true;
cpuObj = _local1[Math.floor((Math.random() * _local1.length))];
_local2 = ((((speedArr[0] + speedArr[1]) + speedArr[2]) / 3) / 10);
if (_local2 > 1){
_local2 = 1;
};
tweenCpuX = new Tween(cpuMouse, "x", Regular.easeIn, cpuMouse.x, cpuObj.x, _local2, true);
tweenCpuX.FPS = 40;
tweenCpuY = new Tween(cpuMouse, "y", Regular.easeIn, cpuMouse.y, cpuObj.y, _local2, true);
tweenCpuY.FPS = 40;
tweenCpuY.addEventListener(TweenEvent.MOTION_FINISH, cpuReachedTarget);
} else {
seconds = 0;
};
};
}
public function cpuReachedTarget(_arg1:TweenEvent):void{
bOppMoving = false;
if (cpuObj.x > 0){
cpuObj.x = -100;
if (turn != 2){
if (cpuObj == btnNeutral){
animate(false, 0);
};
if (cpuObj == btnBelly){
animate(false, 1);
};
if (cpuObj == btnFeet){
animate(false, 2);
};
if (cpuObj == btnSides){
animate(false, 3);
};
if (cpuObj == btnBreasts){
animate(false, 4);
};
if (cpuObj == btnArmpits){
animate(false, 5);
};
if (cpuObj == btnButt){
animate(false, 6);
};
};
};
}
public function showButtons(_arg1):void{
var _local2:* = 0;
if (_arg1 == true){
_local2 = 0.5;
};
btnNeutral.alpha = _local2;
btnBelly.alpha = _local2;
btnFeet.alpha = _local2;
btnSides.alpha = _local2;
btnBreasts.alpha = _local2;
btnArmpits.alpha = _local2;
btnButt.alpha = _local2;
tweenCpuX.stop();
tweenCpuY.stop();
bOppMoving = false;
}
public function checkIfCpuNeedsUpdatedPath(_arg1):void{
if (_arg1 == cpuObj){
tweenCpuX.stop();
tweenCpuY.stop();
bOppMoving = false;
};
}
public function animate(_arg1, _arg2):void{
if (phaseFrame == 24){
img.bra1.alpha = 0;
};
if (phaseFrame == 26){
img.bra2.alpha = 0;
};
if (phaseFrame == 32){
img.skirt1.alpha = 0;
};
if (phaseFrame == 34){
img.skirt2.alpha = 0;
};
if (phaseFrame == 20){
img.panties1.alpha = 0;
};
if (phaseFrame == 22){
img.panties2.alpha = 0;
};
if (phaseFrame == 16){
img.socks1.alpha = 0;
};
if (phaseFrame == 18){
img.socks2.alpha = 0;
};
timeOutCountdown = 20;
cancelButtons();
tweenCpuX.stop();
tweenCpuY.stop();
tweenCpuX = new Tween(cpuMouse, "x", Regular.easeIn, cpuMouse.x, 1770, 1, true);
tweenCpuX.FPS = 40;
bOppMoving = false;
var _local3:* = Math.floor((Math.random() * 2));
if (_arg1 == true){
turn = 0;
if (_arg2 == 0){
turn = 1;
phaseFrame = 2;
};
if (_arg2 == 1){
if (_local3 == 0){
phaseFrame = 6;
} else {
phaseFrame = 14;
};
};
if (_arg2 == 2){
if (_local3 == 0){
phaseFrame = 18;
} else {
phaseFrame = 38;
};
};
if (_arg2 == 3){
if (_local3 == 0){
phaseFrame = 10;
} else {
phaseFrame = 42;
};
};
if (_arg2 == 4){
if (_local3 == 0){
phaseFrame = 26;
} else {
phaseFrame = 46;
};
};
if (_arg2 == 5){
if (_local3 == 0){
phaseFrame = 30;
} else {
phaseFrame = 50;
};
};
if (_arg2 == 6){
if (_local3 == 0){
phaseFrame = 22;
} else {
phaseFrame = 34;
};
};
} else {
turn = 2;
if (_arg2 == 0){
turn = 1;
phaseFrame = 2;
};
if (_arg2 == 1){
if (_local3 == 0){
phaseFrame = 4;
} else {
phaseFrame = 12;
};
};
if (_arg2 == 2){
if (_local3 == 0){
phaseFrame = 16;
} else {
phaseFrame = 36;
};
};
if (_arg2 == 3){
if (_local3 == 0){
phaseFrame = 8;
} else {
phaseFrame = 40;
};
};
if (_arg2 == 4){
if (_local3 == 0){
phaseFrame = 24;
} else {
phaseFrame = 44;
};
};
if (_arg2 == 5){
if (_local3 == 0){
phaseFrame = 28;
} else {
phaseFrame = 48;
};
};
if (_arg2 == 6){
if (_local3 == 0){
phaseFrame = 20;
} else {
phaseFrame = 32;
};
};
};
console.labelFrame.text = (phaseFrame / 2);
}
public function gameOver(_arg1):void{
bGameOver = true;
cancelButtons();
if (_arg1 == true){
phaseFrame = 54;
frameGameOver.winLose.gotoAndStop(2);
} else {
phaseFrame = 52;
frameGameOver.winLose.gotoAndStop(1);
};
frameGameOver.pName.text = char1name;
console.labelFrame.text = (phaseFrame / 2);
frameGameOver.alpha = 1;
klaffiTween = new Tween(frameGameOver, "y", None.easeNone, -230, 25, 0.5, true);
klaffiTween.FPS = 40;
}
public function charSelecting(_arg1:MouseEvent):void{
var _local2:* = "";
if (_arg1.target.name != null){
_local2 = _arg1.target.name;
};
if (bConsoleEnabled == true){
if (_local2 == "btnBraids"){
btnPonyTails.gotoAndStop(1);
btnBraids.gotoAndStop(2);
hairOffset = 100;
} else {
if (_local2 == "btnPonyTails"){
btnPonyTails.gotoAndStop(2);
btnBraids.gotoAndStop(1);
hairOffset = 0;
} else {
if (_local2 == "btnR1"){
r1 = (stage.mouseX - 510);
skinColor = new ColorTransform(0, 0, 0, 1, r1, g1, b1, 0);
girlSkin.transform.colorTransform = skinColor;
cir1.x = (510 + r1);
} else {
if (_local2 == "btnG1"){
g1 = (stage.mouseX - 510);
skinColor = new ColorTransform(0, 0, 0, 1, r1, g1, b1, 0);
girlSkin.transform.colorTransform = skinColor;
cir2.x = (510 + g1);
} else {
if (_local2 == "btnB1"){
b1 = (stage.mouseX - 510);
skinColor = new ColorTransform(0, 0, 0, 1, r1, g1, b1, 0);
girlSkin.transform.colorTransform = skinColor;
cir3.x = (510 + b1);
} else {
if (_local2 == "btnR2"){
r2 = (stage.mouseX - 510);
hairColor = new ColorTransform(0, 0, 0, 1, r2, g2, b2, 0);
girlHair.transform.colorTransform = hairColor;
cir4.x = (510 + r2);
} else {
if (_local2 == "btnG2"){
g2 = (stage.mouseX - 510);
hairColor = new ColorTransform(0, 0, 0, 1, r2, g2, b2, 0);
girlHair.transform.colorTransform = hairColor;
cir5.x = (510 + g2);
} else {
if (_local2 == "btnB2"){
b2 = (stage.mouseX - 510);
hairColor = new ColorTransform(0, 0, 0, 1, r2, g2, b2, 0);
girlHair.transform.colorTransform = hairColor;
cir6.x = (510 + b2);
} else {
if (_local2 == "btnDown"){
if (sceneSample.bgDrop.currentFrame < lastBgFrame){
sceneSample.bgDrop.gotoAndStop((sceneSample.bgDrop.currentFrame + 1));
sceneNr = sceneSample.bgDrop.currentFrame;
} else {
sceneSample.bgDrop.gotoAndStop(1);
sceneNr = sceneSample.bgDrop.currentFrame;
};
} else {
if (_local2 == "btnUp"){
if (sceneSample.bgDrop.currentFrame > 1){
sceneSample.bgDrop.gotoAndStop((sceneSample.bgDrop.currentFrame - 1));
sceneNr = sceneSample.bgDrop.currentFrame;
} else {
sceneSample.bgDrop.gotoAndStop(lastBgFrame);
sceneNr = sceneSample.bgDrop.currentFrame;
};
};
};
};
};
};
};
};
};
};
};
};
if (_local2 == "btnGameStart"){
stage.removeEventListener(MouseEvent.CLICK, charSelecting);
if (bConsoleEnabled == true){
if (p1n.text.length > 1){
char1name = p1n.text;
} else {
char1name = "Katie";
};
if (p2n.text.length > 1){
char2name = p2n.text;
} else {
char1name = "Elli";
};
};
gotoAndStop(2);
};
}
function frame1(){
stop();
r1 = 0xFF;
g1 = 200;
b1 = 200;
r2 = 0xFF;
g2 = 200;
b2 = 20;
sceneNr = 1;
lastBgFrame = 3;
char1name = "Katie";
char2name = "Elli";
hairOffset = 0;
bConsoleEnabled = false;
a = ["ve", "e", "i", "r", "s", "z", "l", "lo", "he", "is", "t"];
this.loaderInfo.addEventListener(ProgressEvent.PROGRESS, onProgress);
this.loaderInfo.addEventListener(Event.COMPLETE, onComplete);
}
function frame2(){
stop();
health = 150;
myInterval = setInterval(myTimer, 200);
secInterval = setInterval(secTimer, 100);
seconds = 0;
phaseFrame = 2;
passerByCountdown = 0;
endCounter = 10;
iRound = 1;
klaffiCountdown = 0;
mudOffset = 0;
actionCountdown = (Math.floor((Math.random() * 8)) + 4);
timeOutCountdown = 0;
bOppMoving = false;
turn = 1;
p1End = health;
p2End = health;
bPaused = false;
bGameOver = false;
memoryPhaseFrame = 0;
speedArr = [20, 20, 20];
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]];
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]];
skinColor = new ColorTransform(0, 0, 0, 1, r1, g1, b1, 0);
hairColor = new ColorTransform(0, 0, 0, 1, r2, g2, b2, 0);
applyColour();
bg.alpha = 1;
bg.bgDrop.gotoAndStop(sceneNr);
bgTrees.alpha = 1;
console.alpha = 0;
btnConsole.alpha = 0.5;
stage.addEventListener(MouseEvent.CLICK, mouseClicked);
frameGameOver.alpha = 0;
cancelButtons();
bg.nameStrip.p1Name.text = char1name;
bg.nameStrip.p2Name.text = char2name;
showFrame(phaseFrame, false);
showKlaffi();
console.labelFrame.text = (phaseFrame / 2);
passerby.scaleX = 1;
passerByTween = new Tween(passerby, "x", None.easeNone, 727, 200, 6, true);
passerByTween.FPS = 40;
passerByTween.addEventListener(TweenEvent.MOTION_FINISH, passerByFinished);
myMouse = new cursorSprite();
cpuMouse = new cursorSprite();
myMouse.x = 0;
myMouse.y = 0;
cpuMouse.x = 800;
cpuMouse.y = 300;
myMouse.gotoAndStop(2);
cpuMouse.gotoAndStop(3);
stage.addChild(myMouse);
stage.addChild(cpuMouse);
myMouse.mouseEnabled = false;
cpuMouse.mouseEnabled = false;
stage.addEventListener(Event.ENTER_FRAME, customMouseCursor);
Mouse.hide();
}
function frame3(){
stop();
btnPonyTails.gotoAndStop(2);
cir1.mouseEnabled = false;
cir2.mouseEnabled = false;
cir3.mouseEnabled = false;
cir4.mouseEnabled = false;
cir5.mouseEnabled = false;
cir6.mouseEnabled = false;
cir1.x = (510 + r1);
cir2.x = (510 + g1);
cir3.x = (510 + b1);
cir4.x = (510 + r2);
cir5.x = (510 + g2);
cir6.x = (510 + b2);
stage.addEventListener(MouseEvent.CLICK, 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