Section 1
//Bounce (fl.transitions.easing.Bounce)
package fl.transitions.easing {
public class Bounce {
public static function easeOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{
_arg1 = (_arg1 / _arg4);
if (_arg1 < (1 / 2.75)){
return (((_arg3 * ((7.5625 * _arg1) * _arg1)) + _arg2));
};
if (_arg1 < (2 / 2.75)){
_arg1 = (_arg1 - (1.5 / 2.75));
return (((_arg3 * (((7.5625 * _arg1) * _arg1) + 0.75)) + _arg2));
};
if (_arg1 < (2.5 / 2.75)){
_arg1 = (_arg1 - (2.25 / 2.75));
return (((_arg3 * (((7.5625 * _arg1) * _arg1) + 0.9375)) + _arg2));
};
_arg1 = (_arg1 - (2.625 / 2.75));
return (((_arg3 * (((7.5625 * _arg1) * _arg1) + 0.984375)) + _arg2));
}
public static function easeIn(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{
return (((_arg3 - easeOut((_arg4 - _arg1), 0, _arg3, _arg4)) + _arg2));
}
public static function easeInOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{
if (_arg1 < (_arg4 / 2)){
return (((easeIn((_arg1 * 2), 0, _arg3, _arg4) * 0.5) + _arg2));
};
return ((((easeOut(((_arg1 * 2) - _arg4), 0, _arg3, _arg4) * 0.5) + (_arg3 * 0.5)) + _arg2));
}
}
}//package fl.transitions.easing
Section 2
//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 3
//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 4
//Strong (fl.transitions.easing.Strong)
package fl.transitions.easing {
public class Strong {
public static function easeIn(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{
_arg1 = (_arg1 / _arg4);
return (((((((_arg3 * _arg1) * _arg1) * _arg1) * _arg1) * _arg1) + _arg2));
}
public static function easeOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{
_arg1 = ((_arg1 / _arg4) - 1);
return (((_arg3 * (((((_arg1 * _arg1) * _arg1) * _arg1) * _arg1) + 1)) + _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) * _arg1) * _arg1) * _arg1) + _arg2));
};
_arg1 = (_arg1 - 2);
return ((((_arg3 / 2) * (((((_arg1 * _arg1) * _arg1) * _arg1) * _arg1) + 2)) + _arg2));
}
}
}//package fl.transitions.easing
Section 5
//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 6
//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 7
//acc1_108 (liab2_fla.acc1_108)
package liab2_fla {
import flash.display.*;
public dynamic class acc1_108 extends MovieClip {
public function acc1_108(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 8
//acc2_110 (liab2_fla.acc2_110)
package liab2_fla {
import flash.display.*;
public dynamic class acc2_110 extends MovieClip {
public function acc2_110(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 9
//acc3_109 (liab2_fla.acc3_109)
package liab2_fla {
import flash.display.*;
public dynamic class acc3_109 extends MovieClip {
public function acc3_109(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 10
//accBtn_177 (liab2_fla.accBtn_177)
package liab2_fla {
import flash.display.*;
public dynamic class accBtn_177 extends MovieClip {
public function accBtn_177(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 11
//apple_126 (liab2_fla.apple_126)
package liab2_fla {
import flash.display.*;
public dynamic class apple_126 extends MovieClip {
public function apple_126(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 12
//armaswim_143 (liab2_fla.armaswim_143)
package liab2_fla {
import flash.display.*;
public dynamic class armaswim_143 extends MovieClip {
public function armaswim_143(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 13
//asparagus_124 (liab2_fla.asparagus_124)
package liab2_fla {
import flash.display.*;
public dynamic class asparagus_124 extends MovieClip {
public function asparagus_124(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 14
//asparagus_asparagus_190 (liab2_fla.asparagus_asparagus_190)
package liab2_fla {
import flash.display.*;
public dynamic class asparagus_asparagus_190 extends MovieClip {
public function asparagus_asparagus_190(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 15
//beans_134 (liab2_fla.beans_134)
package liab2_fla {
import flash.display.*;
public dynamic class beans_134 extends MovieClip {
public function beans_134(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 16
//beans_nuts_194 (liab2_fla.beans_nuts_194)
package liab2_fla {
import flash.display.*;
public dynamic class beans_nuts_194 extends MovieClip {
public function beans_nuts_194(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 17
//bg_246 (liab2_fla.bg_246)
package liab2_fla {
import flash.display.*;
public dynamic class bg_246 extends MovieClip {
public function bg_246(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 18
//blackEyedPeas_132 (liab2_fla.blackEyedPeas_132)
package liab2_fla {
import flash.display.*;
public dynamic class blackEyedPeas_132 extends MovieClip {
public function blackEyedPeas_132(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 19
//bottle_9 (liab2_fla.bottle_9)
package liab2_fla {
import flash.display.*;
public dynamic class bottle_9 extends MovieClip {
public function bottle_9(){
addFrameScript(0, frame1, 14, frame15);
}
function frame1(){
stop();
}
function frame15(){
stop();
}
}
}//package liab2_fla
Section 20
//bottleGas_26 (liab2_fla.bottleGas_26)
package liab2_fla {
import flash.display.*;
public dynamic class bottleGas_26 extends MovieClip {
public function bottleGas_26(){
addFrameScript(0, frame1, 16, frame17);
}
function frame1(){
stop();
}
function frame17(){
gotoAndPlay(2);
}
}
}//package liab2_fla
Section 21
//bottlenoz_233 (liab2_fla.bottlenoz_233)
package liab2_fla {
import flash.display.*;
public dynamic class bottlenoz_233 extends MovieClip {
public function bottlenoz_233(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 22
//breastsSwim_60 (liab2_fla.breastsSwim_60)
package liab2_fla {
import flash.display.*;
public dynamic class breastsSwim_60 extends MovieClip {
public function breastsSwim_60(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 23
//broccoli_130 (liab2_fla.broccoli_130)
package liab2_fla {
import flash.display.*;
public dynamic class broccoli_130 extends MovieClip {
public function broccoli_130(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 24
//brocoli_brocoli_195 (liab2_fla.brocoli_brocoli_195)
package liab2_fla {
import flash.display.*;
public dynamic class brocoli_brocoli_195 extends MovieClip {
public function brocoli_brocoli_195(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 25
//btnCellPhone_207 (liab2_fla.btnCellPhone_207)
package liab2_fla {
import flash.display.*;
public dynamic class btnCellPhone_207 extends MovieClip {
public function btnCellPhone_207(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 26
//btnChangeColour_254 (liab2_fla.btnChangeColour_254)
package liab2_fla {
import flash.display.*;
public dynamic class btnChangeColour_254 extends MovieClip {
public function btnChangeColour_254(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 27
//btnChangeGender_252 (liab2_fla.btnChangeGender_252)
package liab2_fla {
import flash.display.*;
public dynamic class btnChangeGender_252 extends MovieClip {
public function btnChangeGender_252(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 28
//btnLoveIt1_183 (liab2_fla.btnLoveIt1_183)
package liab2_fla {
import flash.display.*;
public dynamic class btnLoveIt1_183 extends MovieClip {
public function btnLoveIt1_183(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 29
//btnLoveIt2_184 (liab2_fla.btnLoveIt2_184)
package liab2_fla {
import flash.display.*;
public dynamic class btnLoveIt2_184 extends MovieClip {
public function btnLoveIt2_184(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 30
//btnMilk_259 (liab2_fla.btnMilk_259)
package liab2_fla {
import flash.display.*;
public dynamic class btnMilk_259 extends MovieClip {
public function btnMilk_259(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 31
//btnShop_257 (liab2_fla.btnShop_257)
package liab2_fla {
import flash.display.*;
public dynamic class btnShop_257 extends MovieClip {
public function btnShop_257(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 32
//btnSound_241 (liab2_fla.btnSound_241)
package liab2_fla {
import flash.display.*;
public dynamic class btnSound_241 extends MovieClip {
public function btnSound_241(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 33
//btnStomach_209 (liab2_fla.btnStomach_209)
package liab2_fla {
import flash.display.*;
public dynamic class btnStomach_209 extends MovieClip {
public function btnStomach_209(){
addFrameScript(0, frame1, 1, frame2);
}
function frame1(){
stop();
}
function frame2(){
stop();
}
}
}//package liab2_fla
Section 34
//btnZoomCam_208 (liab2_fla.btnZoomCam_208)
package liab2_fla {
import flash.display.*;
public dynamic class btnZoomCam_208 extends MovieClip {
public function btnZoomCam_208(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 35
//cheese_138 (liab2_fla.cheese_138)
package liab2_fla {
import flash.display.*;
public dynamic class cheese_138 extends MovieClip {
public function cheese_138(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 36
//cheese_cheese_193 (liab2_fla.cheese_cheese_193)
package liab2_fla {
import flash.display.*;
public dynamic class cheese_cheese_193 extends MovieClip {
public function cheese_cheese_193(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 37
//chestpartSwim_48 (liab2_fla.chestpartSwim_48)
package liab2_fla {
import flash.display.*;
public dynamic class chestpartSwim_48 extends MovieClip {
public function chestpartSwim_48(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 38
//eyes_79 (liab2_fla.eyes_79)
package liab2_fla {
import flash.display.*;
public dynamic class eyes_79 extends MovieClip {
public function eyes_79(){
addFrameScript(0, frame1, 8, frame9, 20, frame21, 28, frame29, 40, frame41, 48, frame49);
}
function frame1(){
}
function frame9(){
stop();
}
function frame21(){
}
function frame29(){
stop();
}
function frame41(){
}
function frame49(){
stop();
}
}
}//package liab2_fla
Section 39
//foodHeld_111 (liab2_fla.foodHeld_111)
package liab2_fla {
import flash.display.*;
public dynamic class foodHeld_111 extends MovieClip {
public var pear:MovieClip;
public var tmp:MovieClip;
public var broccoli:MovieClip;
public var garlic:MovieClip;
public var apple:MovieClip;
public var asparagus:MovieClip;
public var icecream:MovieClip;
public var milk:MovieClip;
public var meat:MovieClip;
public var beans:MovieClip;
public var blackEyedPeas:MovieClip;
public var cheese:MovieClip;
public var mushrooms:MovieClip;
public var onion:MovieClip;
public var nuts:MovieClip;
public function foodHeld_111(){
addFrameScript(0, frame1, 17, frame18);
}
function frame1(){
stop();
}
function frame18(){
}
}
}//package liab2_fla
Section 40
//fruit_chips_188 (liab2_fla.fruit_chips_188)
package liab2_fla {
import flash.display.*;
public dynamic class fruit_chips_188 extends MovieClip {
public function fruit_chips_188(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 41
//garlic_114 (liab2_fla.garlic_114)
package liab2_fla {
import flash.display.*;
public dynamic class garlic_114 extends MovieClip {
public function garlic_114(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 42
//garlic_onion_189 (liab2_fla.garlic_onion_189)
package liab2_fla {
import flash.display.*;
public dynamic class garlic_onion_189 extends MovieClip {
public function garlic_onion_189(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 43
//ice_ice_191 (liab2_fla.ice_ice_191)
package liab2_fla {
import flash.display.*;
public dynamic class ice_ice_191 extends MovieClip {
public function ice_ice_191(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 44
//icecream_116 (liab2_fla.icecream_116)
package liab2_fla {
import flash.display.*;
public dynamic class icecream_116 extends MovieClip {
public function icecream_116(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 45
//katteluik_5 (liab2_fla.katteluik_5)
package liab2_fla {
import flash.display.*;
public dynamic class katteluik_5 extends MovieClip {
public function katteluik_5(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 46
//littleMan_12 (liab2_fla.littleMan_12)
package liab2_fla {
import flash.display.*;
public dynamic class littleMan_12 extends MovieClip {
public function littleMan_12(){
addFrameScript(4, frame5, 10, frame11, 43, frame44, 54, frame55, 60, frame61, 93, frame94);
}
function frame5(){
gotoAndPlay(1);
}
function frame11(){
gotoAndPlay(7);
}
function frame44(){
gotoAndPlay(40);
}
function frame55(){
gotoAndPlay(51);
}
function frame61(){
gotoAndPlay(57);
}
function frame94(){
gotoAndPlay(90);
}
}
}//package liab2_fla
Section 47
//littleWoman_11 (liab2_fla.littleWoman_11)
package liab2_fla {
import flash.display.*;
public dynamic class littleWoman_11 extends MovieClip {
public function littleWoman_11(){
addFrameScript(4, frame5, 5, frame6, 10, frame11, 43, frame44, 54, frame55, 55, frame56, 60, frame61, 93, frame94);
}
function frame5(){
gotoAndPlay(1);
}
function frame6(){
}
function frame11(){
gotoAndPlay(7);
}
function frame44(){
gotoAndPlay(40);
}
function frame55(){
gotoAndPlay(51);
}
function frame56(){
}
function frame61(){
gotoAndPlay(57);
}
function frame94(){
gotoAndPlay(90);
}
}
}//package liab2_fla
Section 48
//MainTimeline (liab2_fla.MainTimeline)
package liab2_fla {
import flash.events.*;
import fl.transitions.*;
import fl.transitions.easing.*;
import flash.utils.*;
import flash.media.*;
import flash.display.*;
import flash.text.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.geom.*;
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 pear:MovieClip;
public var btnX:MovieClip;
public var btnStomach:MovieClip;
public var btnCellPhone:MovieClip;
public var body:MovieClip;
public var cloud1:cloudSprite;
public var footRight:MovieClip;
public var littleMan:MovieClip;
public var poo2:MovieClip;
public var box2:MovieClip;
public var cloud2:cloudSprite;
public var pee:MovieClip;
public var littleWoman:MovieClip;
public var endCallWnd:MovieClip;
public var cellPhone:MovieClip;
public var cloud3:cloudSprite;
public var stomach:MovieClip;
public var groundSkirt:MovieClip;
public var cloud4:cloudSprite;
public var sisterWindow:MovieClip;
public var scherm:MovieClip;
public var broccoli:MovieClip;
public var whoLetTheFliesOut:MovieClip;
public var groundNets:MovieClip;
public var groundShirtBlack:MovieClip;
public var cloud5:cloudSprite;
public var bottle:MovieClip;
public var btnIntroStart:introStartButton;
public var garlic:MovieClip;
public var groundSocks:MovieClip;
public var cloud6:cloudSprite;
public var upperLegL:MovieClip;
public var cloud7:cloudSprite;
public var emptyTab:MovieClip;
public var zoomCam:MovieClip;
public var cloud8:cloudSprite;
public var loader_mc:movie_mc;
public var loaded_txt:TextField;
public var shop:MovieClip;
public var btnZoomCam:MovieClip;
public var cloud9:cloudSprite;
public var upperLegR:MovieClip;
public var groundShoes:MovieClip;
public var bottleGas:MovieClip;
public var asparagus:MovieClip;
public var icecream:MovieClip;
public var apple:MovieClip;
public var milk:MovieClip;
public var txtCloudGirl:MovieClip;
public var groundPanties:MovieClip;
public var footLeft:MovieClip;
public var bottleShade:MovieClip;
public var meat:MovieClip;
public var beans:MovieClip;
public var blackEyedPeas:MovieClip;
public var groundBra:MovieClip;
public var peeIn:MovieClip;
public var bgScene:MovieClip;
public var cheese:MovieClip;
public var mushrooms:MovieClip;
public var customization:MovieClip;
public var txtCloudBoy:MovieClip;
public var onion:MovieClip;
public var groundShirtRed:MovieClip;
public var groundSwimsuit:MovieClip;
public var statWindow:MovieClip;
public var nuts:MovieClip;
public var whoLetThe2:MovieClip;
public var strSockHackTxt;
public var strClothHackTxt;
public var strVoreHackTxt;
public var boyLine;
public var bSentenceNegative:Boolean;
public var socksOffset;
public var clothOffset;
public var iTotalCost;
public var iDeliveryCountDown;
public var shopItemArray:Array;
public var shopItemPlacement:Array;
public var truckDisappearCountdown;
public var sndShort1:short1;
public var sndShort2:short2;
public var sndShort3:short3;
public var sndShort4:short4;
public var sndShort5:short5;
public var sndLong1:long1;
public var sndLong2:long2;
public var sndLong3:long3;
public var sndLong4:long4;
public var sndRnd1:rnd1;
public var sndRnd2:rnd2;
public var sndRnd3:rnd3;
public var sndRnd4:rnd4;
public var sndRnd5:rnd5;
public var sndRnd6:rnd6;
public var sndRnd7:rnd7;
public var sndRnd8:rnd8;
public var sndRnd9:rnd9;
public var sndRnd10:rnd10;
public var sndRnd11:rnd11;
public var sndRnd12:rnd12;
public var sndFem1:fem1;
public var sndFem2:fem2;
public var sndMal1:mal1;
public var sndMal2:mal2;
public var myChannel:SoundChannel;
public var myChannel2:SoundChannel;
public var iGirlTextCountDown;
public var iCoughCountDown;
public var grlTextTween:Tween;
public var boyTextTween:Tween;
public var foodTweenX:Tween;
public var foodTweenY:Tween;
public var bounceTimeOut;
public var eyeCooldown;
public var eatingPhase;
public var foodItemEaten;
public var iSisterMood;
public var cloudCounter;
public var bCoughSoundOn;
public var iCrushTimeout;
public var bPreventGasBuildup;
public var bLoveIt;
public var iGirlTextCountUp;
public var playerSkinOffset;
public var heightAdjust;
public var iSisterCooldown;
public var expressionOffset;
public var iUncon;
public var gameOverText;
public var bGameStarted:Boolean;
public var bGameOver;
public var bUnconscious:Boolean;
public var bSoundOn;
public var bVoreMode;
public var bSoftMode;
public var iVoreOffset;
public var iHappiness;
public var iHungerLevel;
public var iGas1;
public var iGas2;
public var iGas3;
public var iPressure;
public var iR1;
public var iG1;
public var iB1;
public var iDiscolorStrength;
public var iR2;
public var iG2;
public var iB2;
public var iPanties;
public var iBra;
public var iSwimsuit;
public var iSkirt;
public var iNets;
public var iSocks;
public var iShoes;
public var iShirtRed;
public var iShirtBlack;
public var fartSize;
public var iTotCalledSister;
public var iTotMoneyGot;
public var iTotFoodBought;
public var iTotFarts;
public var iHighestStench;
public var iTotBottleClosed;
public var iTotSqueezed;
public var iTotHungry;
public var iTotPassedOut;
public var iTotTimeInBottle;
public var iClothingEaten;
public var i;
public var j;
public var k;
public var iOxygen;
public var iStench;
public var bNoFlies;
public var iCredits;
public var likeDislikeArray:Array;
public var itemArray:Array;
public var tvXloc;
public var tvYloc;
public var tvZoom;
public var playerName;
public var actionCountDown;
public var boyFrameCountdown;
public var playerMale;
public var bBottleClosed:Boolean;
public var bPoo:Boolean;
public var bPee:Boolean;
public var bPeePooEnabled;
public var iButtSize;
public var iBreastSize;
public var iBellySize;
public var redHair;
public var greenHair;
public var blueHair;
public var iSkinTypeRndPreset;
public var iKindNess;
public var expressionCooldown;
public var uiCooldown;
public var redSkin;
public var greenSkin;
public var blueSkin;
public var myTween1:Tween;
public var myTween2:Tween;
public var myTween3:Tween;
public var myTimer:uint;
public var breathCounter;
public var strGirlName;
public var strBreastSize;
public var strButtSize;
public var strBellySize;
public var ukNameArray:Array;
public var ebonyNameArray:Array;
public var japNameArray:Array;
public var iMem1;
public var iMem2;
public var iMem3;
public var iMem4;
public var iMem5;
public var iMem6;
public var bd:BitmapData;
public var screenshot:Bitmap;
public function MainTimeline(){
addFrameScript(0, frame1, 1, frame2);
}
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{
gotoAndStop(2);
}
public function showOwnText(_arg1):void{
if (box2.alpha < 0.3){
if (bUnconscious == false){
box2.txtTxt.txt2.text = _arg1;
box2.alpha = 1;
};
};
}
public function processBoyText():void{
var _local2:*;
var _local3:*;
var _local4:*;
var _local5:*;
var _local6:*;
var _local7:*;
var _local8:*;
var _local9:*;
boyLine = txtCloudBoy.txtBoyInput.text;
boyLine = trim(boyLine);
var _local1:* = 0;
if (((((((((a("please")) || (a("pls")))) || (a("plx")))) || (a("pleaze")))) || (a("plz")))){
_local1 = (_local1 + 10);
if (((a("pretty")) || (a("purty")))){
_local1 = (_local1 + 10);
};
};
if (a("beg you")){
_local1 = (_local1 + 10);
};
if (a("sorry")){
_local1 = (_local1 + 10);
};
if (((((a("not")) || (a("don't")))) || (a("dont")))){
_local1 = -(_local1);
};
if (((((a("fuck")) || (a("hate")))) || (a("suck")))){
_local1 = (_local1 - 10);
};
if ((((boyLine.length > 0)) && ((bUnconscious == false)))){
bSentenceNegative = false;
if (!a("/hack")){
txtCloudBoy.prevLine2.text = txtCloudBoy.prevLine1.text;
txtCloudBoy.prevLine1.text = boyLine;
txtCloudBoy.txtBoyInput.text = "";
};
if (a("/hack")){
if (a("vore")){
if (bVoreMode == false){
bVoreMode = true;
doVoreChanges();
strVoreHackTxt = "[hack vore] soft vore\n";
if (a("soft")){
bVoreMode = true;
bSoftMode = true;
iVoreOffset = 0;
strVoreHackTxt = "[hack vore] soft vore\n";
} else {
if (a("hard")){
bVoreMode = true;
bSoftMode = false;
iVoreOffset = 2;
strVoreHackTxt = "[hack vore] hard vore\n";
};
};
} else {
bVoreMode = false;
doVoreChanges();
strVoreHackTxt = "";
};
statWindow.hackWnd.text = ((strVoreHackTxt + strClothHackTxt) + strSockHackTxt);
} else {
if (((((a("fly")) || (a("flies")))) && (a("no")))){
bNoFlies = true;
whoLetTheFliesOut.gotoAndStop(1);
whoLetThe2.alpha = 0;
} else {
if (((a("bottle")) && (a("remove")))){
cellPhone.bottleInside.alpha = 0;
} else {
if (a("gender")){
if (playerMale == 0){
playerMale = 1;
littleMan.alpha = 1;
littleWoman.alpha = 0;
} else {
playerMale = 0;
littleMan.alpha = 0;
littleWoman.alpha = 1;
};
} else {
if (a("sock")){
_local2 = boyLine.slice((boyLine.search("<") + 1), boyLine.search(">"));
_local2 = _local2.replace(" ", "");
_local3 = _local2.substring(0, _local2.search(","));
_local2 = _local2.substring((_local2.search(",") + 1), 100);
_local4 = _local2.substring(0, _local2.search(","));
_local5 = _local2.substring((_local2.search(",") + 1), 100);
hackSocks(Number(_local3), Number(_local4), Number(_local5));
strSockHackTxt = (((((("[hack socks] <" + Number(_local3)) + ",") + Number(_local4)) + ",") + Number(_local5)) + ">");
statWindow.hackWnd.text = ((strVoreHackTxt + strClothHackTxt) + strSockHackTxt);
socksOffset = 10;
} else {
if (a("cloth")){
_local6 = boyLine.slice((boyLine.search("<") + 1), boyLine.search(">"));
_local6 = _local6.replace(" ", "");
_local7 = _local6.substring(0, _local6.search(","));
_local6 = _local6.substring((_local6.search(",") + 1), 100);
_local8 = _local6.substring(0, _local6.search(","));
_local9 = _local6.substring((_local6.search(",") + 1), 100);
hackClothes(Number(_local7), Number(_local8), Number(_local9));
strClothHackTxt = (((((("[hack clothing] <" + Number(_local7)) + ",") + Number(_local8)) + ",") + Number(_local9)) + ">\n");
statWindow.hackWnd.text = ((strVoreHackTxt + strClothHackTxt) + strSockHackTxt);
clothOffset = 10;
};
};
};
};
};
};
txtCloudBoy.txtBoyInput.text = "";
} else {
if (((((((((a("zoom")) || (a("camera")))) || (a("video")))) || (a("view")))) || (((a("pan")) && (((((((a("left")) || (a("right")))) || (a("up")))) || (a("down")))))))){
if (a("out")){
tvZoom = (tvZoom - 0.5);
};
if (a("in")){
tvZoom = (tvZoom + 0.5);
};
if (a("foot")){
tvZoom = 2;
tvXloc = 173;
tvYloc = 456;
};
if (((a("bottle")) || (a("me")))){
tvZoom = 2;
tvXloc = 212;
tvYloc = 411;
};
if (((a("foot")) && (a("right")))){
tvZoom = 2;
tvXloc = 450;
tvYloc = 434;
};
if (((((((((a("butt")) || (a("ass")))) || (a("bottom")))) || (a("behind")))) || (a("bottex")))){
tvZoom = 2;
tvXloc = 212;
tvYloc = 347;
};
if (((((((a("breast")) || (a("chest")))) || (a("tit")))) || (a("nipple")))){
tvZoom = 2;
tvXloc = 161;
tvYloc = 208;
};
if (((((((((((((a("head")) || (a("face")))) || (a("mouth")))) || (a("eye")))) || (a("nose")))) || (a("ear")))) || (a("hair")))){
tvZoom = 2;
tvXloc = 207;
tvYloc = 107;
};
if (((((a("belly")) || (a("abdom")))) || (a("stomach")))){
tvZoom = 2;
tvXloc = 139;
tvYloc = 267;
};
if (((a("1.5")) || (a("1,5")))){
tvZoom = 1.5;
};
if (a("2")){
tvZoom = 2;
};
if (((a("2.5")) || (a("2,5")))){
tvZoom = 2.5;
};
if (a("3")){
tvZoom = 3;
};
if (((a("3.5")) || (a("3,5")))){
tvZoom = 3.5;
};
if (a("4")){
tvZoom = 4;
};
if (tvZoom < 1.5){
tvZoom = 1.5;
};
if (tvZoom > 4){
tvZoom = 4;
};
if (((a("pan")) && (a("left")))){
tvXloc = (tvXloc - 10);
};
if (((a("pan")) && (a("right")))){
tvXloc = (tvXloc + 10);
};
if (((a("pan")) && (a("up")))){
tvYloc = (tvYloc - 10);
};
if (((a("pan")) && (a("down")))){
tvYloc = (tvYloc + 10);
};
if (zoomCam.alpha == 0){
hideAllTabs();
zoomCam.y = 275;
zoomCam.alpha = 1;
btnX.alpha = 1;
btnStomach.alpha = 1;
btnZoomCam.alpha = 1;
btnCellPhone.alpha = 1;
btnStomach.gotoAndStop(1);
btnZoomCam.gotoAndStop(2);
btnCellPhone.gotoAndStop(1);
};
} else {
if (((((a("eat")) || (a("swallow")))) && (a("me")))){
if (bVoreMode == true){
if (eatingPhase == 0){
eatSomething(true);
iGirlTextCountDown = 0;
showGirlText("Heeheehee! Nam! Say goodbye to your miserable existance!", 40);
};
} else {
if (Math.floor((Math.random() * 100)) < (((iHappiness / 2) + (50 - (iKindNess / 2))) + _local1)){
if (eatingPhase == 0){
eatSomething(true);
iGirlTextCountDown = 0;
showGirlText("Ahahah! You definitely deserve to be eaten! Here goes! Hahaha...", 40);
};
} else {
iGirlTextCountDown = 0;
showGirlText("Eat you? You wish!", 40);
};
};
} else {
if (((((a("undress")) || (((a("take")) && (a("off")))))) || (a("remove")))){
if (Math.floor((Math.random() * 100)) < (((iHappiness / 2) + (iKindNess / 2)) + _local1)){
if (((a("swim")) || (a("bathing")))){
unDress("swimsuit", true, false);
} else {
if (((a("pant")) || (a("underwear")))){
unDress("panties", true, false);
} else {
if (a("bra")){
unDress("bra", true, false);
} else {
if (a("skirt")){
unDress("skirt", true, false);
} else {
if (a("shirt")){
unDress("shirt", true, false);
} else {
if (a("shoe")){
unDress("shoes", true, false);
} else {
if (((((((a("nets")) || (a("stocking")))) || (a("pantyho")))) || (a("hose")))){
unDress("nets", true, false);
} else {
if (a("sock")){
unDress("socks", true, false);
} else {
iGirlTextCountDown = 0;
showGirlText("What's that? I'm not wearing anything like that!", 40);
};
};
};
};
};
};
};
};
} else {
iGirlTextCountDown = 0;
showGirlText((("Neh, you would LOVE me to strip, eh? Dirty mind, " + playerName) + "! I want you to beg for that more, perv!"), 40);
};
} else {
if (((a("dress")) || (((a("put")) && (a("on")))))){
if (((a("swim")) || (a("bathing")))){
unDress("swimsuit", false, false);
} else {
if (((a("pant")) || (a("underwear")))){
unDress("panties", false, false);
} else {
if (a("bra")){
unDress("bra", false, false);
} else {
if (a("skirt")){
unDress("skirt", false, false);
} else {
if (a("shirt")){
unDress("shirt", false, false);
} else {
if (a("shoe")){
unDress("shoes", false, false);
} else {
if (((((((a("nets")) || (a("stocking")))) || (a("pantyho")))) || (a("hose")))){
unDress("nets", false, false);
} else {
if (a("sock")){
unDress("socks", false, false);
} else {
iGirlTextCountDown = 0;
showGirlText("What's that? I can't do that.", 40);
};
};
};
};
};
};
};
};
} else {
if (((a("eat")) && (a("shirt")))){
if (Math.floor((Math.random() * 100)) < (((iHappiness / 2) + (iKindNess / 2)) + _local1)){
if (iShirtRed > 0){
unDress("shirt", true, true);
groundShirtRed.alpha = 0;
iShirtRed = 0;
stomach.shirt1_shirt1.alpha = 1;
} else {
if (iShirtBlack > 0){
unDress("shirt", true, true);
groundShirtBlack.alpha = 0;
iShirtBlack = 0;
stomach.shirt2_shirt2.alpha = 1;
};
};
iClothingEaten++;
} else {
iGirlTextCountDown = 0;
showGirlText("Perv! I bet you would LOVE me to eat and digest my shirt, wouldn't you? Too bad. I don't want to right now.", 40);
};
} else {
if (((a("eat")) && (((((((a("nets")) || (a("stocking")))) || (a("pantyho")))) || (a("hose")))))){
if (Math.floor((Math.random() * 100)) < (((iHappiness / 2) + (iKindNess / 2)) + _local1)){
unDress("nets", true, true);
groundNets.alpha = 0;
iNets = 0;
stomach.stockings_stockings.alpha = 1;
iGirlTextCountDown = 0;
showGirlText("Heheh... let's see how you like it when my stockings are digested and the sweat particles farted out over you!", 40);
iClothingEaten++;
} else {
iGirlTextCountDown = 0;
showGirlText("Perv! I bet you would LOVE me to eat and digest my stockings, wouldn't you? Too bad. I don't want to right now.", 40);
};
} else {
if (((a("eat")) && (a("skirt")))){
if (Math.floor((Math.random() * 100)) < (((iHappiness / 2) + (iKindNess / 2)) + _local1)){
unDress("skirt", true, true);
groundSkirt.alpha = 0;
iSkirt = 0;
stomach.skirt_skirt.alpha = 1;
iGirlTextCountDown = 0;
showGirlText("Do you like the fabric of my skirt being digested and changed into another fat fart?", 40);
iClothingEaten++;
} else {
iGirlTextCountDown = 0;
showGirlText("Perv! I bet you would LOVE me to eat and digest my skirt, wouldn't you? Too bad. I don't want to right now.", 40);
};
} else {
if (((a("eat")) && (a("sock")))){
if (Math.floor((Math.random() * 100)) < (((iHappiness / 2) + (iKindNess / 2)) + _local1)){
unDress("socks", true, true);
groundSocks.alpha = 0;
iSocks = 0;
stomach.socks_socks.alpha = 1;
iGirlTextCountDown = 0;
showGirlText("All right! I'm going to digest my dirty socks... and all the stink particles will be coming out in my next farts!", 40);
iClothingEaten++;
} else {
iGirlTextCountDown = 0;
showGirlText("Perv! I bet you would LOVE me to eat and digest my socks, wouldn't you? Too bad. I don't want to right now.", 40);
};
} else {
if (((a("eat")) && (((a("swim")) || (a("bathing")))))){
if (Math.floor((Math.random() * 100)) < (((iHappiness / 2) + (iKindNess / 2)) + _local1)){
unDress("swimsuit", true, true);
groundSwimsuit.alpha = 0;
iSwimsuit = 0;
stomach.swimsuit_swimsuit.alpha = 1;
iGirlTextCountDown = 0;
showGirlText("I'm digesting my swimsuit for you now, changing it into gasses that I'll fart out over you next!", 40);
iClothingEaten++;
} else {
iGirlTextCountDown = 0;
showGirlText("Perv! I bet you would LOVE me to eat and digest my swimsuit, wouldn't you? Too bad. I don't want to right now.", 40);
};
} else {
if (((a("eat")) && (((a("pant")) || (a("underwear")))))){
if (Math.floor((Math.random() * 100)) < (((iHappiness / 2) + (iKindNess / 2)) + _local1)){
unDress("panties", true, true);
groundPanties.alpha = 0;
iPanties = 0;
stomach.panties_panties.alpha = 1;
iGirlTextCountDown = 0;
showGirlText("Does it turn you on? Me digesting my own underwear and then farting the left-over gasses into your bottle?", 40);
iClothingEaten++;
} else {
iGirlTextCountDown = 0;
showGirlText("Perv! I bet you would LOVE me to eat and digest my panties, wouldn't you? Too bad. I don't want to right now.", 40);
};
} else {
if (((a("eat")) && (a("bra")))){
if (Math.floor((Math.random() * 100)) < (((iHappiness / 2) + (iKindNess / 2)) + _local1)){
unDress("bra", true, true);
groundBra.alpha = 0;
iBra = 0;
stomach.bra_bra.alpha = 1;
iGirlTextCountDown = 0;
showGirlText("Does it turn you on? Me digesting my bra and then farting the left-over gasses into your bottle?", 40);
iClothingEaten++;
} else {
iGirlTextCountDown = 0;
showGirlText("Perv! I bet you would LOVE me to eat and digest my bra, wouldn't you? Too bad. I don't want to right now.", 40);
};
} else {
if (((a("eat")) && (a("shoe")))){
if (Math.floor((Math.random() * 100)) < (((iHappiness / 2) + (iKindNess / 2)) + _local1)){
unDress("shoes", true, true);
groundShoes.alpha = 0;
iShoes = 0;
stomach.shoes_shoes.alpha = 1;
iGirlTextCountDown = 0;
showGirlText("Okay, my stomach will do its best to digest my shoes... prepare to have the gasses coming from it pouring over you!", 40);
iClothingEaten++;
} else {
iGirlTextCountDown = 0;
showGirlText("Perv! I bet you would LOVE me to eat and digest my shoess, wouldn't you? Too bad. I don't want to right now.", 40);
};
} else {
if (a("eat")){
if (Math.floor((Math.random() * 100)) < ((100 - iHungerLevel) + _local1)){
eatSomething(false);
};
} else {
if (a("like")){
i = -1;
if (a("milk")){
i = 0;
};
if (a("garlic")){
i = 1;
};
if (((a("ice")) || (a("cream")))){
i = 2;
};
if (a("onion")){
i = 3;
};
if (a("nut")){
i = 4;
};
if (a("shroom")){
i = 5;
};
if (a("asparagus")){
i = 6;
};
if (a("apple")){
i = 7;
};
if (a("pear")){
i = 8;
};
if (a("broccoli")){
i = 9;
};
if (a("pea")){
i = 10;
};
if (a("bean")){
i = 11;
};
if (((((a("meat")) || (a("beef")))) || (a("steak")))){
i = 12;
};
if (a("cheese")){
i = 13;
};
if (i > -1){
returnLike(likeDislikeArray[i]);
} else {
iGirlTextCountDown = 0;
showGirlText("What kind of question is that?", 40);
};
} else {
if (((((((((a("bounce")) && (a("down")))) || (a("drop")))) || (a("lower")))) || (a("down")))){
if (Math.floor((Math.random() * 100)) > ((((iKindNess / 100) * 80) + 10) + _local1)){
bounceGirl(1);
iGirlTextCountDown = 0;
showGirlText("My pleasure! I hope you'll suffocate under my smelly butt in my stinky farts!", 40);
} else {
iGirlTextCountDown = 0;
showGirlText("But... I don't really want to kill you in there!", 40);
};
} else {
if (((((((((a("bounce")) && (a("up")))) || (a("lift")))) || (a("raise")))) || (a("up")))){
if (Math.floor((Math.random() * 100)) < ((((iKindNess / 100) * 80) + 10) + _local1)){
bounceGirl(0);
iGirlTextCountDown = 0;
showGirlText("Okay then, I'll give you a short break... but just a short one!", 40);
} else {
iGirlTextCountDown = 0;
showGirlText("Forget it! You're under my control and I decide when I lift my butt and when not!", 40);
};
} else {
if (((a("poo")) || (a("shit")))){
if ((((((bPeePooEnabled == true)) && (!((iPanties == 1))))) && (!((iSwimsuit == 1))))){
poop();
iGirlTextCountDown = 0;
showGirlText("Well... you asked for it! ", 40);
} else {
iGirlTextCountDown = 0;
showGirlText("EEWW! You dirty pervert! Are you out of your mind? NO way I'm going to do that! Forget it!", 40);
};
} else {
if (a("pee")){
if (bPeePooEnabled == true){
peep();
iGirlTextCountDown = 0;
showGirlText("Well... you asked for it! ", 40);
} else {
iGirlTextCountDown = 0;
showGirlText("EEWW! You dirty pervert! Are you out of your mind? NO way I'm going to do that! Forget it!", 40);
};
} else {
if (((a("show")) && (a("tongue")))){
expressionCooldown = 25;
body.expression.mouth.gotoAndStop(6);
} else {
if (((a("love")) && (a("you")))){
iHappiness = (iHappiness + 2);
} else {
i = Math.floor((Math.random() * 10));
iGirlTextCountDown = 0;
if (i == 0){
showGirlText("You wish!", 40);
} else {
if (i == 1){
showGirlText("Pff... I don't care.", 40);
} else {
if (i == 2){
showGirlText("*shrug*", 40);
} else {
if (i == 3){
showGirlText("You can say whatever you want, I make you inhale all my farts.", 40);
} else {
if (i == 4){
showGirlText("I bet! No way.", 40);
} else {
if (i == 5){
showGirlText("I could do something like that... but I get more excited about denying everything to you!", 40);
} else {
if (i == 6){
showGirlText("Get lost! Oh, wait, you can't, you're trapped in that bottle! Hahaha!", 40);
} else {
if (i == 7){
showGirlText("I only do what I want! So unless I want it... tough luck!", 40);
} else {
if (i == 8){
showGirlText("Nope!", 40);
} else {
if (i == 9){
showGirlText("Shut up! Otherwise I'll just shut you up.", 40);
} else {
showGirlText("Whatever.", 40);
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
}
public function returnLike(_arg1):void{
iGirlTextCountDown = 0;
if (_arg1 < 2){
showGirlText("Oh, I love that! It's one of my favourite foods! Please buy me more of those!", 40);
} else {
if (_arg1 < 4){
showGirlText("Sure, I like that. It's quite tasty.", 40);
} else {
if (_arg1 < 6){
showGirlText("Eh, not specifically. It's sort of okay...", 40);
} else {
if (_arg1 < 8){
showGirlText("Nah, I don't like that type of food much.", 40);
} else {
if (_arg1 < 8){
showGirlText("Yuck, no! You better not buy those for me!", 40);
};
};
};
};
};
trace(likeDislikeArray);
}
public function populateShop():void{
if (iDeliveryCountDown > 0){
endCallWnd.txtEndCall.text = "Your ordered items are on their way. They should arrive shortly.";
endCallWnd.y = shop.y;
endCallWnd.alpha = 1;
} else {
shop.txtGrocer.text = (("Hello " + playerName) + ", I have these items in stock right now.");
shop.txtCredits.text = ("Credits: €" + iCredits);
iTotalCost = 0;
shop.totalCost.text = "€0";
shop.btnSh1.gotoAndStop(1);
shop.btnSh2.gotoAndStop(1);
shop.btnSh3.gotoAndStop(1);
shop.btnSh4.gotoAndStop(1);
shop.btnSh5.gotoAndStop(1);
shop.btnSh6.gotoAndStop(1);
shop.btnSh7.gotoAndStop(1);
shop.btnSh8.gotoAndStop(1);
shop.btnSh9.gotoAndStop(1);
i = 0;
while (i < 9) {
if (shopItemPlacement[i] == 0){
j = 1;
while (j > 0) {
k = Math.floor((Math.random() * 14));
j = shopItemArray[k];
};
shopItemArray[k] = 1;
shopItemPlacement[i] = (k + 1);
};
i++;
};
shop.btnShop1.gotoAndStop(shopItemPlacement[0]);
shop.btnShop2.gotoAndStop(shopItemPlacement[1]);
shop.btnShop3.gotoAndStop(shopItemPlacement[2]);
shop.btnShop4.gotoAndStop(shopItemPlacement[3]);
shop.btnShop5.gotoAndStop(shopItemPlacement[4]);
shop.btnShop6.gotoAndStop(shopItemPlacement[5]);
shop.btnShop7.gotoAndStop(shopItemPlacement[6]);
shop.btnShop8.gotoAndStop(shopItemPlacement[7]);
shop.btnShop9.gotoAndStop(shopItemPlacement[8]);
};
}
public function addRemoveShopItem(_arg1){
var _local2:* = false;
var _local3:* = (shopItemPlacement[(_arg1 - 1)] - 1);
var _local4:* = 1;
if ((((((((((_local3 == 5)) || ((_local3 == 7)))) || ((_local3 == 8)))) || ((_local3 == 10)))) || ((_local3 == 11)))){
_local4 = 2;
};
if (_local3 == 6){
_local4 = 3;
};
if ((((_local3 == 2)) || ((_local3 == 13)))){
_local4 = 4;
};
if ((((_local3 == 4)) || ((_local3 == 12)))){
_local4 = 5;
};
if (_arg1 == 1){
if (shop.btnSh1.currentFrame == 1){
shop.btnSh1.gotoAndStop(2);
_local2 = true;
} else {
shop.btnSh1.gotoAndStop(1);
_local2 = false;
};
} else {
if (_arg1 == 2){
if (shop.btnSh2.currentFrame == 1){
shop.btnSh2.gotoAndStop(2);
_local2 = true;
} else {
shop.btnSh2.gotoAndStop(1);
_local2 = false;
};
} else {
if (_arg1 == 3){
if (shop.btnSh3.currentFrame == 1){
shop.btnSh3.gotoAndStop(2);
_local2 = true;
} else {
shop.btnSh3.gotoAndStop(1);
_local2 = false;
};
} else {
if (_arg1 == 4){
if (shop.btnSh4.currentFrame == 1){
shop.btnSh4.gotoAndStop(2);
_local2 = true;
} else {
shop.btnSh4.gotoAndStop(1);
_local2 = false;
};
} else {
if (_arg1 == 5){
if (shop.btnSh5.currentFrame == 1){
shop.btnSh5.gotoAndStop(2);
_local2 = true;
} else {
shop.btnSh5.gotoAndStop(1);
_local2 = false;
};
} else {
if (_arg1 == 6){
if (shop.btnSh6.currentFrame == 1){
shop.btnSh6.gotoAndStop(2);
_local2 = true;
} else {
shop.btnSh6.gotoAndStop(1);
_local2 = false;
};
} else {
if (_arg1 == 7){
if (shop.btnSh7.currentFrame == 1){
shop.btnSh7.gotoAndStop(2);
_local2 = true;
} else {
shop.btnSh7.gotoAndStop(1);
_local2 = false;
};
} else {
if (_arg1 == 8){
if (shop.btnSh8.currentFrame == 1){
shop.btnSh8.gotoAndStop(2);
_local2 = true;
} else {
shop.btnSh8.gotoAndStop(1);
_local2 = false;
};
} else {
if (shop.btnSh9.currentFrame == 1){
shop.btnSh9.gotoAndStop(2);
_local2 = true;
} else {
shop.btnSh9.gotoAndStop(1);
_local2 = false;
};
};
};
};
};
};
};
};
};
if (_local2 == true){
iTotalCost = (iTotalCost + _local4);
} else {
iTotalCost = (iTotalCost - _local4);
};
shop.totalCost.text = ("€" + iTotalCost);
}
public function doShopPayment():void{
if (iTotalCost <= iCredits){
if (iTotalCost == 0){
endCallWnd.txtEndCall.text = "Thank you for your call. Perhaps next time you would like to order something from us. Have a pleasant day!";
showOwnText("Forget it, I'm not buying you anything, I'll let you starve!");
} else {
endCallWnd.txtEndCall.text = (("The items will be delivered to miss " + strGirlName) + " as agreed. Thanks for your order!");
iDeliveryCountDown = (Math.floor((Math.random() * 20)) + 40);
iCredits = (iCredits - iTotalCost);
if (iCredits > 0){
showOwnText("This cost me almost all my credits, happy now...?");
} else {
showOwnText("Cost me all my credits to buy you food, does it turn you on?");
showGirlText((("Hm... yes, it turns me on a great deal, " + playerName) + "! I love when you spent your last dime to feed me, and then I fart it out in your face!"), 24);
};
if (shop.btnSh1.currentFrame == 2){
iTotFoodBought++;
};
if (shop.btnSh2.currentFrame == 2){
iTotFoodBought++;
};
if (shop.btnSh3.currentFrame == 2){
iTotFoodBought++;
};
if (shop.btnSh4.currentFrame == 2){
iTotFoodBought++;
};
if (shop.btnSh5.currentFrame == 2){
iTotFoodBought++;
};
if (shop.btnSh6.currentFrame == 2){
iTotFoodBought++;
};
if (shop.btnSh7.currentFrame == 2){
iTotFoodBought++;
};
if (shop.btnSh8.currentFrame == 2){
iTotFoodBought++;
};
if (shop.btnSh9.currentFrame == 2){
iTotFoodBought++;
};
};
endCallWnd.y = shop.y;
endCallWnd.alpha = 1;
};
}
public function deliverItems():void{
bgScene.windowTruck.txtWin.txtDelivery.text = (("Your groceries have arrived, beautiful miss " + strGirlName) + ". Enjoy!");
bgScene.windowTruck.alpha = 1;
truckDisappearCountdown = 21;
actionCountDown = (actionCountDown + 20);
showGirlText("", 16);
body.expression.eyes.gotoAndStop((expressionOffset + 12));
eyeCooldown = 18;
if (shop.btnSh1.currentFrame == 2){
deliverItem((shopItemPlacement[0] - 1));
shopItemPlacement[0] = 0;
};
if (shop.btnSh2.currentFrame == 2){
deliverItem((shopItemPlacement[1] - 1));
shopItemPlacement[1] = 0;
};
if (shop.btnSh3.currentFrame == 2){
deliverItem((shopItemPlacement[2] - 1));
shopItemPlacement[2] = 0;
};
if (shop.btnSh4.currentFrame == 2){
deliverItem((shopItemPlacement[3] - 1));
shopItemPlacement[3] = 0;
};
if (shop.btnSh5.currentFrame == 2){
deliverItem((shopItemPlacement[4] - 1));
shopItemPlacement[4] = 0;
};
if (shop.btnSh6.currentFrame == 2){
deliverItem((shopItemPlacement[5] - 1));
shopItemPlacement[5] = 0;
};
if (shop.btnSh7.currentFrame == 2){
deliverItem((shopItemPlacement[6] - 1));
shopItemPlacement[6] = 0;
};
if (shop.btnSh8.currentFrame == 2){
deliverItem((shopItemPlacement[7] - 1));
shopItemPlacement[7] = 0;
};
if (shop.btnSh9.currentFrame == 2){
deliverItem((shopItemPlacement[8] - 1));
shopItemPlacement[8] = 0;
};
updateFloorItems();
bgScene.katteluik.gotoAndPlay(2);
}
public function deliverItem(_arg1):void{
var _local2:*;
itemArray[_arg1] = 1;
shopItemArray[_arg1] = 0;
var _local3:* = 0;
var _local4:* = 0;
if (_arg1 == 0){
_local3 = 25;
_local4 = 366;
_local2 = milk;
};
if (_arg1 == 1){
_local3 = 94;
_local4 = 521;
_local2 = garlic;
};
if (_arg1 == 2){
_local3 = 21;
_local4 = 437;
_local2 = icecream;
};
if (_arg1 == 3){
_local3 = 72;
_local4 = 470;
_local2 = onion;
};
if (_arg1 == 4){
_local3 = 39;
_local4 = 530;
_local2 = nuts;
};
if (_arg1 == 5){
_local3 = 52;
_local4 = 420;
_local2 = mushrooms;
};
if (_arg1 == 6){
_local3 = 105;
_local4 = 482;
_local2 = asparagus;
};
if (_arg1 == 7){
_local3 = 64;
_local4 = 390;
_local2 = apple;
};
if (_arg1 == 8){
_local3 = 15;
_local4 = 402;
_local2 = pear;
};
if (_arg1 == 9){
_local3 = 22;
_local4 = 497;
_local2 = broccoli;
};
if (_arg1 == 10){
_local3 = 59;
_local4 = 447;
_local2 = blackEyedPeas;
};
if (_arg1 == 11){
_local3 = 64;
_local4 = 497;
_local2 = beans;
};
if (_arg1 == 12){
_local3 = 119;
_local4 = 506;
_local2 = meat;
};
if (_arg1 == 13){
_local3 = 31;
_local4 = 473;
_local2 = cheese;
};
myTween1 = new Tween(_local2, "x", Regular.easeIn, 35, _local3, 1, true);
myTween1.FPS = 40;
myTween2 = new Tween(_local2, "y", Regular.easeOut, 250, _local4, 1, true);
myTween2.FPS = 40;
}
public function doSisterTalk(_arg1):void{
var _local4:*;
sisterWindow.btnBeg.alpha = 0;
sisterWindow.btnBlackmail.alpha = 0;
sisterWindow.btnChat.alpha = 0;
var _local2:* = 0;
var _local3:* = 0;
iTotCalledSister++;
if (_arg1 == "beg"){
_local2 = Math.floor((Math.random() * 11));
if (_local2 == 0){
sisterWindow.txtBroCall.text = "Oh, li'l sis! I am in deep trouble here, in such deep shit! Please, I beg you with all my heart, be kind and trans-fer some credits to my account so I can get myself out of this bad mess!";
} else {
if (_local2 == 1){
sisterWindow.txtBroCall.text = "Sis! It is terrible! They kidnapped me and locked me up! Now they are asking me to arrange ransom for my freedom! Help me please! Can you transfer some credits?";
} else {
if (_local2 == 2){
sisterWindow.txtBroCall.text = "My dearest li'l sis! You won't believe this, but somehow the maffia thought I was going to kill one of them! Can you please spare some credits? I JUST don't have enough myself!";
} else {
if (_local2 == 3){
sisterWindow.txtBroCall.text = "I am sorry that I have to bother you with this, but I wanted to take a bus back home and noticed I am out of credits... Can you pretty please transfer some to me...?";
} else {
if (_local2 == 4){
sisterWindow.txtBroCall.text = "Dearest li'l sis... Someone stole my wallet just now and I'm in terrible trouble because I can't get home without cash! Could you please transfer some of your credits...?";
} else {
if (_local2 == 5){
sisterWindow.txtBroCall.text = "Um, sis... I need you to help me... The bank just performed the automatic bill pay-ments and now I have no money left to buy me a bit of food... Give me some please?";
} else {
if (_local2 == 6){
sisterWindow.txtBroCall.text = "Girl, I am so hungry... and I lost all my cash again! P-please be an angel and transfer some of your credits to me so I can buy my-self a little bit of food... I beg you!";
} else {
if (_local2 == 7){
sisterWindow.txtBroCall.text = "Li'l sister! The police just stop-ped me because my light is broken and they say I have to pay them now! I need a few more credits, can you please trans-fer some to me?";
} else {
if (_local2 == 8){
sisterWindow.txtBroCall.text = "EEP, li'l sis! My clothes got stolen while I was swim-ming in the lake! Please give me some credits so I can buy a piece of cloth or so... to hide my naked bits...! I beg you!";
} else {
if (_local2 == 9){
sisterWindow.txtBroCall.text = "I hurt my ankle... now I can't walk back home unless I can pay the doctor here for a bit of treatment, and I don't have enough credits! Please help me out, dear li'l sis!";
} else {
sisterWindow.txtBroCall.text = "You need to help me out, li'l sis! I can't tell you what's up, but I am in deep deep trouble here! Please PLEASE give me some of your credits! As much as you can!";
};
};
};
};
};
};
};
};
};
};
_local4 = Math.floor((Math.random() * 3));
if (Math.floor((Math.random() * 4)) == 0){
if (_local4 == 0){
sisterWindow.txtSisCall.text = "\n\n\n\n\n\n\n\n\n\nNo! I don't want you to take all my hard earned cash!";
} else {
if (_local4 == 1){
sisterWindow.txtSisCall.text = "\n\n\n\n\n\n\n\n\n\nWell, too bad. I just spent all my credits on a dress";
} else {
sisterWindow.txtSisCall.text = "\n\n\n\n\n\n\n\n\n\nNO deal, bro! I ran out of money myself now! Bah!";
};
};
iSisterMood = (iSisterMood - 0.2);
} else {
if (Math.round(iSisterMood) == 2){
_local3 = (Math.floor((Math.random() * 2)) + 2);
iCredits = (iCredits + _local3);
if (_local4 == 0){
sisterWindow.txtSisCall.text = "\n\n\n\n\n\n\n\n\n\n*sigh* Bah, that means I can't go out tonight... here.";
} else {
if (_local4 == 1){
sisterWindow.txtSisCall.text = "\n\n\n\n\n\n\n\n\n\nGeez, can't you help yourself for a change? - Here!";
} else {
sisterWindow.txtSisCall.text = "\n\n\n\n\n\n\n\n\n\nI really don't have much... you don't really deserve...";
};
};
} else {
if (Math.round(iSisterMood) == 3){
_local3 = (Math.floor((Math.random() * 2)) + 3);
iCredits = (iCredits + _local3);
if (_local4 == 0){
sisterWindow.txtSisCall.text = "\n\n\n\n\n\n\n\n\n\nOh no, I won't have enough left for the movies...";
} else {
if (_local4 == 1){
sisterWindow.txtSisCall.text = "\n\n\n\n\n\n\n\n\n\n*crash* that was my piggy-saving bank... *cries*";
} else {
sisterWindow.txtSisCall.text = "\n\n\n\n\n\n\n\n\n\nUm, okay... I have to give you some of my savings...";
};
};
} else {
if (Math.round(iSisterMood) == 4){
_local3 = (Math.floor((Math.random() * 2)) + 4);
iCredits = (iCredits + _local3);
if (_local4 == 0){
sisterWindow.txtSisCall.text = "\n\n\n\n\n\n\n\n\n\nOkay big bro! You are more impor-tant than credits.";
} else {
if (_local4 == 1){
sisterWindow.txtSisCall.text = "\n\n\n\n\n\n\n\n\n\nOkays. I won't get the treat I meant to get myself then";
} else {
sisterWindow.txtSisCall.text = "\n\n\n\n\n\n\n\n\n\nSure, I can help you out. Just be careful out there!";
};
};
} else {
if (Math.round(iSisterMood) == 5){
_local3 = (Math.floor((Math.random() * 2)) + 5);
iCredits = (iCredits + _local3);
if (_local4 == 0){
sisterWindow.txtSisCall.text = "\n\n\n\n\n\n\n\n\n\nDear brother, of course I will help you out... done!";
} else {
if (_local4 == 1){
sisterWindow.txtSisCall.text = "\n\n\n\n\n\n\n\n\n\nAw! That's terrible - Don't worry, I'll save you! - Done!";
} else {
sisterWindow.txtSisCall.text = "\n\n\n\n\n\n\n\n\n\nOkay! Anything for my dear big brother! Love you!";
};
};
};
};
};
};
iSisterMood = (iSisterMood - 0.3);
};
iSisterCooldown = 60;
iTotMoneyGot = (iTotMoneyGot + _local3);
} else {
if (_arg1 == "blackmail"){
_local2 = Math.floor((Math.random() * 8));
if (_local2 == 0){
sisterWindow.txtBroCall.text = "Give me a bunch of credits right now, or I will tell all your friends that when you were young, you let me smell your butt and farted into my face!";
sisterWindow.txtSisCall.text = "\n\n\n\n\n\n\n\n\nEEEH! No! Don't tell them! Quickly, here- here are credits! *sob*";
} else {
if (_local2 == 1){
sisterWindow.txtBroCall.text = "Transfer credits to me now, other-wise I will tell the neighbours that you often parade outside in the back-yard in your naked butt! haha. How about that?";
sisterWindow.txtSisCall.text = "\n\n\n\n\n\n\n\n\nAAAH! NO! NO! Don't! I am giving you the credits right now! Stop!";
} else {
if (_local2 == 2){
sisterWindow.txtBroCall.text = "Remember that picture I took of you where you are showing me your butt? I'm posting it online on my facebook unless you pay up credits now!";
sisterWindow.txtSisCall.text = "\n\n\n\n\n\n\n\n\nHow can you be so mean to me? EEH! I am trans-ferring right now!";
} else {
if (_local2 == 3){
sisterWindow.txtBroCall.text = "Unless you pay me a lot of credits right now, I will tell everyone in the street that at night you don't snore, but you fart loudly out of your butt when you sleep!";
sisterWindow.txtSisCall.text = "\n\n\n\n\n\n\n\n\nEEH! You are so mean! Why are you doing this?\nH-here, credits!";
} else {
if (_local2 == 4){
sisterWindow.txtBroCall.text = "I'll tell everyone lies about you, like that you like to fart over my sandwich before I get to eat my lunch! Unless you pay me a good amount of creds!";
sisterWindow.txtSisCall.text = "\n\n\n\n\n\n\n\n\nYou bastard! That is mean! You're such a perv! Here is the stupid cash!";
} else {
if (_local2 == 5){
sisterWindow.txtBroCall.text = "I'll tell your friends lies about you, like that you sniff your own panties at night and then inhale deeply and sigh and such... unless you pay me credits now!";
sisterWindow.txtSisCall.text = "\n\n\n\n\n\n\n\n\nYou bastard! That is mean! You're such a perv! Here is the stupid cash!";
} else {
if (_local2 == 6){
sisterWindow.txtBroCall.text = "If you don't pay me credits now, I will pin those dirty panties I picked out of the laundry last week to a tree with your picture and a note, 'worn the whole week!'";
sisterWindow.txtSisCall.text = "\n\n\n\n\n\n\n\n\nYOU PERV! You won't! AARGH! I will transfer creds right now! EEEH!";
} else {
sisterWindow.txtBroCall.text = "If you don't pay up credits right now, I will show the neighbour boy that he can watch you in the shower each evening at 7 from the tree outside! heheh...";
sisterWindow.txtSisCall.text = "\n\n\n\n\n\n\n\n\nOMG! You're such a perv! Don't tell him! I will pay up the credits!";
};
};
};
};
};
};
};
iSisterMood = (iSisterMood - 1);
_local3 = (Math.floor((Math.random() * 6)) + 15);
iCredits = (iCredits + _local3);
iTotMoneyGot = (iTotMoneyGot + _local3);
iSisterCooldown = 180;
} else {
_local2 = Math.floor((Math.random() * 5));
if (Math.round(iSisterMood) == 2){
if (_local2 == 0){
sisterWindow.txtBroCall.text = "Sis... Please don't be mad! I didn't want to say all these bad things to you! I... I just - someone is making me do it!";
sisterWindow.txtSisCall.text = "\n\n\n\n\n\n\nWhat a lousy excuse, bro! You can just say 'no' and leave me out of it! Geez, it can't be all that bad!";
iSisterMood = (iSisterMood - 0.5);
} else {
if (_local2 == 1){
sisterWindow.txtBroCall.text = "Li'l sis! Please! I beg you! I am so sorry for mistreat-ing you! I will not do it again, if you promise me to forgive me! I feel so bad about this!";
sisterWindow.txtSisCall.text = "\n\n\n\n\n\n\n\nGood! I want you to feel bad! What you did was really bad of you! I hope you suffer from it!";
iSisterMood = (iSisterMood + 0.3);
} else {
if (_local2 == 2){
sisterWindow.txtBroCall.text = "Li'l sis! I am so sorry for all the credits I extorted from you! Please, let me make it up to you! If you want you can sit on my face with your butt and fart on me a whole day if you feel better then!";
sisterWindow.txtSisCall.text = "\n\n\n\n\n\n\n\n\n\n\nWHA!? You perv! You never change";
iSisterMood = (iSisterMood + -1);
} else {
if (_local2 == 3){
sisterWindow.txtBroCall.text = "I am so sorry, li'l sis! What I did to you was unforgiv-able! Please ac-cept my apology! I will treat you to a diner at the most expensive place in town to make it up to you! Really!";
sisterWindow.txtSisCall.text = "\n\n\n\n\n\n\n\n\n\nHm. I want you to suffer for this! But it's a start, maybe.";
iSisterMood = (iSisterMood + 0.5);
} else {
if (_local2 == 4){
sisterWindow.txtBroCall.text = "Oh li'l sis! What have I done!? To make it up to you, please come up with any way to make me suffer and embarrass me! I don't want to lose your love!";
sisterWindow.txtSisCall.text = "\n\n\n\n\n\n\n\n\nYes, I'll make you suffer and embar-rass you to no end! Count on it!";
iSisterMood = (iSisterMood + 0.8);
};
};
};
};
};
} else {
if (Math.round(iSisterMood) == 3){
if (_local2 == 0){
sisterWindow.txtBroCall.text = "Um, my dearest little sister... would you be very mad if I asked you if I could borrow your unwashed panties...?";
sisterWindow.txtSisCall.text = "\n\n\n\n\n\n\nYou pervert! It's not again about sniffing my butt, is it? Eew! You can be so disgusting sometimes! Yuck!";
iSisterMood = (iSisterMood - 0.5);
} else {
if (_local2 == 1){
sisterWindow.txtBroCall.text = "Eh, li'l sis... I just wanted to call you to apologise for how I have been behaving lately... I hope you don't hate me terribly...";
sisterWindow.txtSisCall.text = "\n\n\n\n\n\n\nWell, you really were unkind, big bro! I should hate you for that! But, thanks for the apologies...";
iSisterMood = (iSisterMood + 5);
} else {
if (_local2 == 2){
sisterWindow.txtBroCall.text = "Dear dear li'l sis! I am such an idiot! I could kick myself for treating my nice lovely sister as I did! Will you please forgive me? I will do anything you aks!";
sisterWindow.txtSisCall.text = "\n\n\n\n\n\n\n\n\nOh, you ARE a big idiot! I am so glad you admit! Maybe some day.";
iSisterMood = (iSisterMood + 8);
} else {
if (_local2 == 3){
sisterWindow.txtBroCall.text = "Hey, li'l sis, I saw this diary with the carebears on the front... I couldn't help thinking of you, would you like to have it?";
sisterWindow.txtSisCall.text = "\n\n\n\n\n\n\nBro! I'm not a kid anymore! I am not interested in care-bears these days! I've grown up, you know?";
iSisterMood = (iSisterMood + 3);
} else {
if (_local2 == 4){
sisterWindow.txtBroCall.text = "Eh, li'l sis... I just wanted to say I am sorry for what I did... I couldn't help it... I hope you still like me...";
sisterWindow.txtSisCall.text = "\n\n\n\n\n\nEh, thanks for the apologies. If you weren't my bro I wouldn't even know you by now. But I guess family can't be chosen.";
iSisterMood = (iSisterMood + 3);
};
};
};
};
};
} else {
if (Math.round(iSisterMood) == 4){
if (_local2 == 0){
sisterWindow.txtBroCall.text = "Hey, sis, how's school?\n\n\n\n\n\n\n\n\n\n\nErr... sorry!";
sisterWindow.txtSisCall.text = "\n\nHow do you mean, how's school? I passed my final examns, boy. I'm not the 'little sis' you have in your mind anymore! People grow up, you know?";
iSisterMood = (iSisterMood + 0.3);
} else {
if (_local2 == 1){
sisterWindow.txtBroCall.text = "How are you, my lovely li'l sis?\n\n\n\n\n\n\n\n\n\nUm, yeah. Sorry! I didn't mean...";
sisterWindow.txtSisCall.text = "\n\nHey, I am not that little girl anymore you have in your mind! Still have that old picture of me in your phone I suppose? I should send you a better one soon!";
iSisterMood = (iSisterMood + 0.3);
} else {
if (_local2 == 2){
sisterWindow.txtBroCall.text = "Hey sis, what you up to these days?\n\n\n\n\n\n\n\n\n\nErr... I'm afraid I'm a little occupied...";
sisterWindow.txtSisCall.text = "\n\nOh! I'm having fun doing all kinds of stuff. Shopping, going to the films with my friends... We should get together some-time, do you have time later today?";
iSisterMood = (iSisterMood + 0.5);
} else {
if (_local2 == 3){
sisterWindow.txtBroCall.text = "What'd you like for your birthday?\n\n\n\n\n\n\n\n\nOf course! I will get back to you about it later!";
sisterWindow.txtSisCall.text = "\n\nEee! You thought of my upcoming birthday! That is so sweet of you! I eh... need to think about that a little more, is that okay, big bro?";
iSisterMood = (iSisterMood + 0.8);
} else {
if (_local2 == 4){
sisterWindow.txtBroCall.text = "Err, sis... I am a bit embarrassed to ask, but... could I please sniff your butt again some-time soon?";
sisterWindow.txtSisCall.text = "\n\n\n\n\n\nEew! You pervert! We aren't kids anymore! It was a one-time experi-ment back then! Yuck! How dare you ask me that!?";
iSisterMood = (iSisterMood - 0.5);
};
};
};
};
};
} else {
if (Math.round(iSisterMood) == 5){
if (_local2 == 0){
sisterWindow.txtBroCall.text = "And I'm so happy to hear you! How wouldd you like to go shopping with me sometime?\n\n\n\n\nI ehr, need to get out of a situation first... I'll need to get back to you...";
sisterWindow.txtSisCall.text = "\n\n\n\n\nOh big bro! That would be SOOO awesome! When do we go?";
iSisterMood = (iSisterMood + 0.8);
} else {
if (_local2 == 1){
sisterWindow.txtBroCall.text = "Um, li'l sis...? I'm a bit embarrassed to ask, but do you still use that stuff with the wings...?\n\n\n\n\n\n\nN-no! S-sorry I asked! Nevermind";
sisterWindow.txtSisCall.text = "\n\n\n\n\n... ! Big bro! What kind of question is that? That's girl's private stuff! You aren't a pervert or so, are you...?!";
iSisterMood = (iSisterMood - 0.5);
} else {
if (_local2 == 2){
sisterWindow.txtBroCall.text = "Um, li'l sis... do you still have that video tape with...\n\n\n\nEhm... y-yes?\n\n\n\n\n\nSo, that tape...?";
sisterWindow.txtSisCall.text = "\n\n\nNot the one with the farting people, you mean, eh?\n\nYou dirty perv! I still regret letting you sniff my butt back when we were kids! Bah!";
iSisterMood = (iSisterMood - 0.5);
} else {
if (_local2 == 3){
sisterWindow.txtBroCall.text = "How are you doin' sis? Having a good time?\n\n\n\n\n\n\n\nErr... I'm afraid I am not able to... I am ... 'occupied'";
sisterWindow.txtSisCall.text = "\n\n\nOh big bro! So nice of you to ask! I'm doing quite well! Say, could you pick me up at the sport park this afternoon?";
iSisterMood = (iSisterMood + 0.5);
} else {
if (_local2 == 4){
sisterWindow.txtBroCall.text = "\n\n\n\n\n\n\nEep... I am sorry, li'l sis... I can't really get away from here now... eep... I would have loved to go!";
sisterWindow.txtSisCall.text = "Good that you called! My friend is sick and I have two concert tickets... I thought maybe you could join me tonight?";
iSisterMood = (iSisterMood + 0.3);
};
};
};
};
};
};
};
};
};
iSisterCooldown = 40;
};
};
if (iSisterMood > 5.4){
iSisterMood = 5.4;
};
if (iSisterMood < 0.8){
iSisterMood = 0.8;
};
}
public function doEndCalls():void{
shop.alpha = 0;
shop.y = -500;
sisterWindow.alpha = 0;
sisterWindow.y = -500;
endCallWnd.alpha = 0;
endCallWnd.y = -500;
stage.focus = txtCloudBoy.txtBoyInput;
}
public function playSound(_arg1):void{
var _local2:* = 0;
if (_arg1 == 0){
_local2 = Math.floor((Math.random() * 5));
if (_local2 == 0){
myChannel = sndShort1.play();
} else {
if (_local2 == 1){
myChannel = sndShort2.play();
} else {
if (_local2 == 2){
myChannel = sndShort3.play();
} else {
if (_local2 == 3){
myChannel = sndShort4.play();
} else {
myChannel = sndShort5.play();
};
};
};
};
} else {
if (_arg1 == 2){
_local2 = Math.floor((Math.random() * 4));
if (_local2 == 0){
myChannel = sndLong1.play();
} else {
if (_local2 == 1){
myChannel = sndLong2.play();
} else {
if (_local2 == 2){
myChannel = sndLong3.play();
} else {
myChannel = sndLong4.play();
};
};
};
} else {
_local2 = Math.floor((Math.random() * 12));
if (_local2 == 0){
myChannel = sndRnd1.play();
};
if (_local2 == 1){
myChannel = sndRnd2.play();
};
if (_local2 == 2){
myChannel = sndRnd3.play();
};
if (_local2 == 3){
myChannel = sndRnd4.play();
};
if (_local2 == 4){
myChannel = sndRnd5.play();
};
if (_local2 == 5){
myChannel = sndRnd6.play();
};
if (_local2 == 6){
myChannel = sndRnd7.play();
};
if (_local2 == 7){
myChannel = sndRnd8.play();
};
if (_local2 == 8){
myChannel = sndRnd9.play();
};
if (_local2 == 9){
myChannel = sndRnd10.play();
};
if (_local2 == 10){
myChannel = sndRnd11.play();
};
if (_local2 == 11){
myChannel = sndRnd12.play();
};
};
};
}
public function playCough():void{
if ((((Math.floor((Math.random() * 3)) == 0)) && ((bUnconscious == false)))){
if (playerMale == 1){
if (iStench < 70){
myChannel2 = sndMal1.play();
} else {
myChannel2 = sndMal2.play();
};
} else {
if (iStench < 70){
myChannel2 = sndFem1.play();
} else {
myChannel2 = sndFem2.play();
};
};
};
}
public function mClicked(_arg1:MouseEvent):void{
var _local3:*;
var _local2:* = _arg1.target.name;
if (_local2 == "bgcol"){
if ((((uiCooldown == 0)) && ((bGameOver == false)))){
uiCooldown = 5;
myTween1 = new Tween(body.butt, "scaleY", Bounce.easeOut, (body.butt.scaleY - 0.1), body.butt.scaleY, 1, true);
myTween1.FPS = 40;
if (body.breasts.alpha == 1){
myTween2 = new Tween(body.breasts, "scaleY", Bounce.easeOut, (body.breasts.scaleY - 0.1), body.breasts.scaleY, 1, true);
myTween2.FPS = 40;
} else {
if (body.midBreast.alpha == 1){
myTween2 = new Tween(body.midBreast, "scaleY", Bounce.easeOut, (body.midBreast.scaleY - 0.1), body.midBreast.scaleY, 1, true);
myTween2.FPS = 40;
} else {
myTween2 = new Tween(body.miniBreast, "scaleY", Bounce.easeOut, (body.miniBreast.scaleY - 0.1), body.miniBreast.scaleY, 1, true);
myTween2.FPS = 40;
};
};
iTotSqueezed++;
showGirlText("", 0);
if (iPressure > 10){
if (Math.floor((Math.random() * 5)) == 0){
fart(iPressure);
};
};
};
} else {
if (_local2 == "btnTakePicture"){
if ((((((uiCooldown == 0)) && ((bGameOver == false)))) && ((bUnconscious == false)))){
uiCooldown = 5;
cellPhone.bottleInside.alpha = 0.4;
if (bBottleClosed == true){
cellPhone.bottleInside.gotoAndStop(2);
cellPhone.picture2.alpha = 1;
cellPhone.picture.alpha = 0;
} else {
cellPhone.bottleInside.gotoAndStop(1);
cellPhone.picture.alpha = 1;
cellPhone.picture2.alpha = 0;
};
iHappiness = (iHappiness - 20);
if (iSwimsuit == 1){
cellPhone.picture.swimsuit.alpha = 1;
cellPhone.picture2.swimsuit.alpha = 1;
} else {
cellPhone.picture.swimsuit.alpha = 0;
cellPhone.picture2.swimsuit.alpha = 0;
};
if (iPanties == 1){
cellPhone.picture.panties.alpha = 1;
cellPhone.picture2.panties.alpha = 1;
} else {
cellPhone.picture.panties.alpha = 0;
cellPhone.picture2.panties.alpha = 0;
};
if (iSkirt == 1){
cellPhone.picture.skirt1.alpha = 1;
cellPhone.picture.skirt2.alpha = 1;
} else {
cellPhone.picture.skirt1.alpha = 0;
cellPhone.picture.skirt2.alpha = 0;
};
_local3 = 0;
if (((!((iPanties == 1))) && (!((iSwimsuit == 1))))){
_local3 = 0;
} else {
_local3 = iDiscolorStrength;
};
cellPhone.picture.discolor.transform.colorTransform = new ColorTransform(0, 0, 0, _local3, iR2, iG2, iB2, 1);
cellPhone.picture2.discolor.transform.colorTransform = new ColorTransform(0, 0, 0, _local3, iR2, iG2, iB2, 1);
if (iHappiness < 0){
iHappiness = 0;
};
i = Math.floor((Math.random() * 4));
if (i == 0){
showGirlText((("EEP! " + playerName) + "! How dare you? Taking pictures of my most private places!"), 12);
cellPhone.picture.rotation = (cellPhone.picture.rotation + 180);
cellPhone.picture2.rotation = (cellPhone.picture2.rotation + 180);
} else {
if (i == 1){
showGirlText((playerName + "! What the hell are you thinking!? Taking pictures of my butt? I will make you pay for that!"), 12);
bounceGirl(1);
cellPhone.picture.scaleX = -(cellPhone.picture.scaleX);
cellPhone.picture2.scaleX = -(cellPhone.picture.scaleX);
} else {
if (i == 2){
showGirlText("What the hell are you making pictures under my butt, you little pest? I'll fart on you!", 12);
if (iPressure > 0){
fart(iPressure);
};
cellPhone.picture.rotation = (cellPhone.picture.rotation + 180);
cellPhone.picture2.rotation = (cellPhone.picture2.rotation + 180);
} else {
showGirlText("HEY! Stop that, you pervert!", 8);
cellPhone.picture.scaleX = -(cellPhone.picture.scaleX);
cellPhone.picture2.scaleX = -(cellPhone.picture.scaleX);
};
};
};
};
} else {
if (_local2 == "btnCallGrocer"){
if (bUnconscious == false){
shop.y = 275;
shop.alpha = 1;
populateShop();
};
} else {
if (_local2 == "btnCallSister"){
if (bUnconscious == false){
if (iSisterCooldown == 0){
sisterWindow.callText.text = "Call ongoing:\nLi'l sis";
sisterWindow.txtBroCall.text = "";
sisterWindow.btnBeg.alpha = 1;
sisterWindow.btnBlackmail.alpha = 1;
sisterWindow.btnChat.alpha = 1;
if (Math.round(iSisterMood) == 1){
sisterWindow.txtSisCall.text = "Leave me alone! Don't call back!";
sisterWindow.btnBeg.alpha = 0;
sisterWindow.btnBlackmail.alpha = 0;
sisterWindow.btnChat.alpha = 0;
} else {
if (Math.round(iSisterMood) == 2){
sisterWindow.txtSisCall.text = "You again! What do you want now?";
} else {
if (Math.round(iSisterMood) == 3){
sisterWindow.txtSisCall.text = "Hm, brother, what is on your mind?";
} else {
if (Math.round(iSisterMood) == 4){
sisterWindow.txtSisCall.text = "Hey there big bro, what's up?";
} else {
if (Math.round(iSisterMood) == 5){
sisterWindow.txtSisCall.text = "Big bro! Nice to hear your voice!";
};
};
};
};
};
sisterWindow.y = 275;
sisterWindow.alpha = 1;
sisterWindow.sisPic.alpha = 1;
} else {
sisterWindow.sisPic.alpha = 0.3;
if (Math.round(iSisterMood) < 2){
sisterWindow.txtBroCall.text = "She seems REALLY upset with me. I hope I can somehow make it up to her, but she's not answering her phone right now.";
sisterWindow.callText.text = "NO ANSWER:\nLi'l sis";
} else {
if (Math.round(iSisterMood) == 2){
sisterWindow.txtBroCall.text = "Hm, she's not answering the phone. Hopefully she's not too angry. I should try again a bit later.";
sisterWindow.callText.text = "NO ANSWER:\nLi'l sis";
} else {
if (Math.round(iSisterMood) == 3){
sisterWindow.txtBroCall.text = "She's not picking up... Maybe went to the toilet or outside or something... should try again later.";
sisterWindow.callText.text = "NO ANSWER:\nLi'l sis";
} else {
if (Math.round(iSisterMood) == 4){
sisterWindow.txtBroCall.text = "The line is busy. I guess she might be talking to one of her friends or something... I should try again later.";
sisterWindow.callText.text = "LINE BUSY:\nLi'l sis";
} else {
sisterWindow.txtBroCall.text = "The line is busy. Probably she's chatting with one of her friends. I should try again a bit later.";
sisterWindow.callText.text = "LINE BUSY:\nLi'l sis";
};
};
};
};
sisterWindow.txtSisCall.text = "";
sisterWindow.btnBeg.alpha = 0;
sisterWindow.btnBlackmail.alpha = 0;
sisterWindow.btnChat.alpha = 0;
sisterWindow.y = 275;
sisterWindow.alpha = 1;
};
};
} else {
if (_local2 == "btnBeg"){
if (sisterWindow.btnBeg.alpha == 1){
doSisterTalk("beg");
};
} else {
if (_local2 == "btnBlackmail"){
if (sisterWindow.btnBlackmail.alpha == 1){
doSisterTalk("blackmail");
};
} else {
if (_local2 == "btnChat"){
if (sisterWindow.btnChat.alpha == 1){
doSisterTalk("chat");
};
} else {
if (_local2 == "btnSh1"){
addRemoveShopItem(1);
} else {
if (_local2 == "btnSh2"){
addRemoveShopItem(2);
} else {
if (_local2 == "btnSh3"){
addRemoveShopItem(3);
} else {
if (_local2 == "btnSh4"){
addRemoveShopItem(4);
} else {
if (_local2 == "btnSh5"){
addRemoveShopItem(5);
} else {
if (_local2 == "btnSh6"){
addRemoveShopItem(6);
} else {
if (_local2 == "btnSh7"){
addRemoveShopItem(7);
} else {
if (_local2 == "btnSh8"){
addRemoveShopItem(8);
} else {
if (_local2 == "btnSh9"){
addRemoveShopItem(9);
} else {
if (_local2 == "btnPay"){
doShopPayment();
} else {
if (_local2 == "btnEndCall"){
doEndCalls();
} else {
if (_local2 == "btnSound"){
if (bSoundOn == true){
statWindow.btnSound.gotoAndStop(1);
bSoundOn = false;
} else {
statWindow.btnSound.gotoAndStop(2);
bSoundOn = true;
};
stage.focus = txtCloudBoy.txtBoyInput;
} else {
if (_local2 == "btnSoundCough"){
if (bCoughSoundOn == true){
statWindow.btnSoundCough.gotoAndStop(1);
bCoughSoundOn = false;
} else {
statWindow.btnSoundCough.gotoAndStop(2);
bCoughSoundOn = true;
};
stage.focus = txtCloudBoy.txtBoyInput;
} else {
if (_local2 == "btnSay"){
processBoyText();
stage.focus = txtCloudBoy.txtBoyInput;
} else {
if (_local2 == "btnChangeGender"){
if (scherm.btnChangeGender.currentFrame == 1){
scherm.btnChangeGender.gotoAndStop(2);
playerMale = 0;
scherm.littleMan2.alpha = 0;
scherm.littleWoman2.alpha = 1;
txtCloudBoy.gotoAndStop(2);
box2.bg.gotoAndStop(1);
} else {
scherm.btnChangeGender.gotoAndStop(1);
playerMale = 1;
scherm.littleWoman2.alpha = 0;
scherm.littleMan2.alpha = 1;
txtCloudBoy.gotoAndStop(1);
box2.bg.gotoAndStop(2);
};
} else {
if (_local2 == "btnChangeColour"){
if (scherm.btnChangeColour.currentFrame == 1){
scherm.btnChangeColour.gotoAndStop(2);
playerSkinOffset = 50;
scherm.littleMan2.gotoAndPlay((playerSkinOffset + 1));
scherm.littleWoman2.gotoAndPlay((playerSkinOffset + 1));
sisterWindow.sisPic.gotoAndStop(2);
} else {
scherm.btnChangeColour.gotoAndStop(1);
playerSkinOffset = 0;
scherm.littleMan2.gotoAndPlay((playerSkinOffset + 1));
scherm.littleWoman2.gotoAndPlay((playerSkinOffset + 1));
sisterWindow.sisPic.gotoAndStop(1);
};
} else {
if (_local2 == "btnIn"){
if (scherm.pName.text.length > 2){
playerName = scherm.pName.text;
scherm.btnIn.alpha = 0;
scherm.btnIn.x = -500;
scherm.btnChangeGender.alpha = 0;
scherm.btnChangeColour.alpha = 0;
scherm.btnChangeGender.x = -500;
scherm.btnChangeColour.x = -500;
scherm.littleMan2.gotoAndStop((playerSkinOffset + 6));
scherm.littleWoman2.gotoAndStop((playerSkinOffset + 6));
myTween1 = new Tween(scherm.littleMan2, "y", None.easeNone, 21, 199, 1, true);
myTween1.FPS = 40;
myTween2 = new Tween(scherm.littleWoman2, "y", None.easeNone, 21, 199, 1, true);
myTween2.FPS = 40;
myTween3 = new Tween(scherm, "alpha", Regular.easeIn, 1, 0, 1.5, true);
myTween3.FPS = 40;
myTween3.addEventListener(TweenEvent.MOTION_FINISH, hideTopScreen);
bottle.alpha = 1;
bottleShade.alpha = 1;
bgScene.y = 0;
bgScene.alpha = 1;
activateEnterAsAccept();
if (playerMale == 1){
littleMan.alpha = 1;
} else {
littleWoman.alpha = 1;
};
stage.focus = txtCloudBoy.txtBoyInput;
emptyTab.txtStatsYourName.text = playerName;
j = 0;
while (j < 4) {
k = Math.floor((Math.random() * 14));
if (likeDislikeArray[k] < 6){
itemArray[k] = 1;
j++;
};
};
updateFloorItems();
iHappiness = 20;
littleMan.gotoAndStop((playerSkinOffset + 6));
littleWoman.gotoAndStop((playerSkinOffset + 6));
bGameStarted = true;
};
} else {
if (_local2 == "btnX"){
hideAllTabs();
doEndCalls();
screenshot.y = -300;
screenshot.alpha = 0;
emptyTab.alpha = 1;
emptyTab.y = 275;
btnStomach.gotoAndStop(1);
btnZoomCam.gotoAndStop(1);
btnCellPhone.gotoAndStop(1);
stage.focus = txtCloudBoy.txtBoyInput;
} else {
if (_local2 == "btnStomach"){
hideAllTabs();
doEndCalls();
screenshot.y = -300;
screenshot.alpha = 0;
stomach.y = 275;
stomach.alpha = 1;
btnStomach.gotoAndStop(2);
btnZoomCam.gotoAndStop(1);
btnCellPhone.gotoAndStop(1);
stage.focus = txtCloudBoy.txtBoyInput;
} else {
if (_local2 == "btnZoomCam"){
hideAllTabs();
doEndCalls();
zoomCam.y = 275;
zoomCam.alpha = 1;
btnStomach.gotoAndStop(1);
btnZoomCam.gotoAndStop(2);
btnCellPhone.gotoAndStop(1);
stage.focus = txtCloudBoy.txtBoyInput;
} else {
if (_local2 == "btnCellPhone"){
hideAllTabs();
screenshot.y = -300;
screenshot.alpha = 0;
cellPhone.y = 275;
cellPhone.alpha = 1;
btnStomach.gotoAndStop(1);
btnZoomCam.gotoAndStop(1);
btnCellPhone.gotoAndStop(2);
stage.focus = txtCloudBoy.txtBoyInput;
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
if (bGameStarted == true){
stage.focus = txtCloudBoy.txtBoyInput;
};
}
public function hideTopScreen(_arg1:TweenEvent):void{
showGirlText((((((("My name is " + strGirlName) + ".\nTouch my skin to squeeze my ") + strButtSize) + " butt and ") + strBreastSize) + " breasts... you will love it!\n(And so will I...) <3"), 16);
myTween3.removeEventListener(TweenEvent.MOTION_FINISH, hideTopScreen);
scherm.alpha = 0;
scherm.x = -500;
txtCloudBoy.alpha = 1;
boyTextTween = new Tween(txtCloudBoy, "y", Strong.easeOut, 560, 462, 1, true);
boyTextTween.FPS = 40;
stomach.alpha = 1;
stomach.y = 275;
btnStomach.alpha = 1;
btnZoomCam.alpha = 1;
btnCellPhone.alpha = 1;
btnX.alpha = 1;
btnStomach.y = 153.5;
btnZoomCam.y = 153.5;
btnCellPhone.y = 153.5;
btnX.y = 153.5;
btnStomach.gotoAndStop(2);
statWindow.y = 55;
statWindow.alpha = 1;
statWindow.meterKind.x = (-48 + iKindNess);
}
public function bounceGirl(_arg1):void{
if (bounceTimeOut == 0){
if (_arg1 == 1){
if ((((bBottleClosed == false)) && ((bUnconscious == false)))){
bounceTimeOut = 10;
bBottleClosed = true;
myTween1 = new Tween(body, "y", Bounce.easeOut, 189, 219, 2, true);
myTween1.FPS = 40;
myTween2 = new Tween(upperLegR, "scaleY", Bounce.easeOut, 1, 0.7, 2, true);
myTween2.FPS = 40;
myTween3 = new Tween(upperLegL, "scaleY", Bounce.easeOut, 1, 0.7, 2, true);
myTween3.FPS = 40;
heightAdjust = 30;
iTotBottleClosed++;
bottleGas.gotoAndStop(1);
if (whoLetTheFliesOut.currentFrame > 80){
showOwnText("Help! Let the flies out! They are all over me 'cause of you!");
};
};
} else {
if (bBottleClosed == true){
bounceTimeOut = 10;
bBottleClosed = false;
myTween1 = new Tween(body, "y", Regular.easeOut, 219, 189, 2, true);
myTween1.FPS = 40;
myTween2 = new Tween(upperLegR, "scaleY", Regular.easeOut, 0.7, 1, 2, true);
myTween2.FPS = 40;
myTween3 = new Tween(upperLegL, "scaleY", Regular.easeOut, 0.7, 1, 2, true);
myTween3.FPS = 40;
heightAdjust = 0;
statWindow.txtOxy.text = "";
statWindow.warningBox.alpha = 0;
bottleGas.gotoAndPlay(2);
};
};
};
}
public function showGirlText(_arg1, _arg2){
if (_arg1.length > 0){
if (iGirlTextCountDown == 0){
iGirlTextCountUp = 0;
iGirlTextCountDown = _arg2;
txtCloudGirl.txtGirl.text = _arg1;
grlTextTween = new Tween(txtCloudGirl, "y", Strong.easeOut, -100, 100, 1, true);
grlTextTween.FPS = 40;
txtCloudGirl.alpha = 1;
};
} else {
iGirlTextCountUp = 40;
txtCloudGirl.txtGirl.text = "";
txtCloudGirl.alpha = 0;
};
}
public function checkFartLevel():void{
if (iPressure == 100){
fart(100);
} else {
if ((((iPressure > 20)) && ((iPressure > iHappiness)))){
if (Math.floor((Math.random() * iHappiness)) < 5){
fart(iPressure);
};
};
};
}
public function peep():void{
if (pee.alpha == 0){
actionCountDown = 25;
bPee = true;
peeIn.alpha = 0.5;
pee.scaleY = 0;
pee.alpha = 0.5;
boyTextTween = new Tween(pee, "scaleY", Regular.easeOut, 0, 1, 6, true);
boyTextTween.FPS = 40;
boyTextTween.addEventListener(TweenEvent.MOTION_FINISH, popPee);
};
}
public function popPee(_arg1:TweenEvent):void{
boyTextTween.removeEventListener(TweenEvent.MOTION_FINISH, popPee);
peeIn.alpha = 0;
}
public function poop():void{
if (poo2.alpha == 0){
actionCountDown = 21;
bPoo = true;
if (bBottleClosed == true){
boyTextTween = new Tween(body.poo, "y", Strong.easeIn, 110, 179, 5, true);
} else {
boyTextTween = new Tween(body.poo, "y", Strong.easeIn, 110, 209, 5, true);
};
boyTextTween.FPS = 40;
boyTextTween.addEventListener(TweenEvent.MOTION_FINISH, popPoo);
};
}
public function popPoo(_arg1:TweenEvent):void{
boyTextTween.removeEventListener(TweenEvent.MOTION_FINISH, popPoo);
body.poo.alpha = 0;
poo2.alpha = 1;
littleMan.scaleX = 1;
littleWoman.scaleX = 1;
littleMan.gotoAndPlay((playerSkinOffset + 40));
littleWoman.gotoAndPlay((playerSkinOffset + 40));
}
public function activateEnterAsAccept():void{
var textInputHandler:Function;
var textInputHandlerOut:Function;
var keyDownHandler:Function;
textInputHandler = function (_arg1:FocusEvent):void{
stage.addEventListener(KeyboardEvent.KEY_DOWN, keyDownHandler);
};
textInputHandlerOut = function (_arg1:FocusEvent):void{
stage.removeEventListener(KeyboardEvent.KEY_DOWN, keyDownHandler);
};
keyDownHandler = function (_arg1:KeyboardEvent):void{
if (_arg1.charCode == 13){
processBoyText();
};
};
txtCloudBoy.txtBoyInput.addEventListener(FocusEvent.FOCUS_IN, textInputHandler);
txtCloudBoy.txtBoyInput.addEventListener(FocusEvent.FOCUS_OUT, textInputHandlerOut);
}
public function trim(_arg1:String):String{
if (_arg1 == null){
return ("");
};
return (_arg1.replace(/^\s+|\s+$/g, ""));
}
public function acidState(_arg1:Boolean):void{
if (_arg1 == true){
stomach.acid_still.alpha = 0;
stomach.acid.alpha = 0.5;
} else {
stomach.acid_still.alpha = 0.5;
stomach.acid.alpha = 0;
};
}
public function updateGauges(){
if (iGas1 > 100){
iGas1 = 100;
};
if (iGas2 > 100){
iGas2 = 100;
};
if (iGas3 > 100){
iGas3 = 100;
};
if (iPressure > 100){
iPressure = 100;
};
stomach.gauge.gas1.scaleX = (iGas1 / 100);
stomach.gauge.gas2.scaleX = (iGas2 / 100);
stomach.gauge.gas3.scaleX = (iGas3 / 100);
stomach.gauge.needle.rotation = (iPressure * 2);
}
public function a(_arg1:String):Boolean{
var _local2:* = boyLine.toLowerCase().search(_arg1.toLowerCase());
if (_local2 != -1){
return (true);
};
return (false);
}
public function updateStats():void{
var _local1:* = 0;
var _local2:* = 0;
var _local3:* = 0;
var _local4 = "";
_local2 = Math.floor((iTotTimeInBottle / 60));
_local3 = Math.floor((iTotTimeInBottle % 60));
if (_local2 > 59){
_local1 = Math.floor((_local2 / 60));
_local2 = Math.floor((_local2 % 60));
};
if (_local1 > 0){
_local4 = (_local1 + ":");
};
if (_local2 < 10){
_local4 = (_local4 + "0");
};
_local4 = ((_local4 + _local2) + ":");
if (_local3 < 10){
_local4 = (_local4 + "0");
};
_local4 = (_local4 + _local3);
emptyTab.txtStats.text = ((((((((((((((((((((iTotCalledSister + " x\n$ ") + iTotMoneyGot) + "\n") + iTotFoodBought) + "\n") + iTotFarts) + "\n") + iHighestStench) + " %\n") + iTotBottleClosed) + " x\n") + iTotSqueezed) + " x\n") + iTotHungry) + " x\n") + iClothingEaten) + "\n") + iTotPassedOut) + " x\n\n") + _local4);
emptyTab.txtFatality.text = gameOverText;
}
public function resetFoodItem(_arg1):void{
itemArray[_arg1] = 0;
if (_arg1 == 0){
milk.alpha = 0;
milk.x = 25;
milk.y = 366;
};
if (_arg1 == 1){
garlic.alpha = 0;
garlic.x = 94;
garlic.y = 521;
};
if (_arg1 == 2){
icecream.alpha = 0;
icecream.x = 21;
icecream.y = 437;
};
if (_arg1 == 3){
onion.alpha = 0;
onion.x = 72;
onion.y = 470;
};
if (_arg1 == 4){
nuts.alpha = 0;
nuts.x = 39;
nuts.y = 530;
};
if (_arg1 == 5){
mushrooms.alpha = 0;
mushrooms.x = 52;
mushrooms.y = 420;
};
if (_arg1 == 6){
asparagus.alpha = 0;
asparagus.x = 105;
asparagus.y = 482;
};
if (_arg1 == 7){
apple.alpha = 0;
apple.x = 64;
apple.y = 390;
};
if (_arg1 == 8){
pear.alpha = 0;
pear.x = 15;
pear.y = 402;
};
if (_arg1 == 9){
broccoli.alpha = 0;
broccoli.x = 22;
broccoli.y = 497;
};
if (_arg1 == 10){
blackEyedPeas.alpha = 0;
blackEyedPeas.x = 59;
blackEyedPeas.y = 447;
};
if (_arg1 == 11){
beans.alpha = 0;
beans.x = 64;
beans.y = 497;
};
if (_arg1 == 12){
meat.alpha = 0;
meat.x = 31;
meat.y = 473;
};
if (_arg1 == 13){
cheese.alpha = 0;
cheese.x = 119;
cheese.y = 506;
};
if (_arg1 == 14){
littleMan.alpha = 0;
bGameOver = true;
gameOverText = "You were digested and farted out!";
};
if (_arg1 == 15){
littleWoman.alpha = 0;
bGameOver = true;
gameOverText = "You were digested and farted out!";
};
}
public function updateExpression():void{
if (eatingPhase == 0){
if (expressionCooldown > 0){
expressionCooldown--;
} else {
if (Math.floor((Math.random() * 5)) == 0){
body.expression.mouth.gotoAndStop((Math.floor((Math.random() * 10)) + 6));
expressionCooldown = (Math.floor((Math.random() * 8)) + 10);
} else {
if (iHappiness < 21){
body.expression.mouth.gotoAndStop(1);
} else {
if (iHappiness < 41){
body.expression.mouth.gotoAndStop(2);
} else {
if (iHappiness < 61){
body.expression.mouth.gotoAndStop(3);
} else {
if (iHappiness < 81){
body.expression.mouth.gotoAndStop(4);
} else {
body.expression.mouth.gotoAndStop(5);
};
};
};
};
expressionCooldown = 4;
};
};
};
if (eyeCooldown > 0){
eyeCooldown--;
} else {
if (Math.floor((Math.random() * 3)) == 0){
body.expression.eyes.gotoAndPlay((expressionOffset + 1));
eyeCooldown = 4;
} else {
body.expression.eyes.gotoAndStop(((expressionOffset + Math.floor((Math.random() * 3))) + 10));
eyeCooldown = 4;
};
};
}
public function eatSomething(_arg1):void{
var _local4:*;
var _local7:*;
var _local2:* = 0;
var _local3:* = 0;
foodItemEaten = -1;
_local3 = 0;
while (_local3 < 14) {
if (itemArray[_local3] > 0){
_local2++;
};
_local3++;
};
if (_arg1 == true){
_local2 = 1;
};
var _local5:* = 0;
var _local6:* = 0;
if (_local2 > 0){
while (foodItemEaten == -1) {
_local3 = Math.floor((Math.random() * 14));
if (_arg1 == false){
if (itemArray[_local3] == 1){
foodItemEaten = _local3;
if (_local3 == 0){
_local4 = milk;
_local5 = 25;
_local6 = 366;
};
if (_local3 == 1){
_local4 = garlic;
_local5 = 94;
_local6 = 521;
};
if (_local3 == 2){
_local4 = icecream;
_local5 = 21;
_local6 = 437;
};
if (_local3 == 3){
_local4 = onion;
_local5 = 72;
_local6 = 470;
};
if (_local3 == 4){
_local4 = nuts;
_local5 = 39;
_local6 = 530;
};
if (_local3 == 5){
_local4 = mushrooms;
_local5 = 52;
_local6 = 420;
};
if (_local3 == 6){
_local4 = asparagus;
_local5 = 105;
_local6 = 482;
};
if (_local3 == 7){
_local4 = apple;
_local5 = 64;
_local6 = 390;
};
if (_local3 == 8){
_local4 = pear;
_local5 = 15;
_local6 = 402;
};
if (_local3 == 9){
_local4 = broccoli;
_local5 = 22;
_local6 = 497;
};
if (_local3 == 10){
_local4 = blackEyedPeas;
_local5 = 59;
_local6 = 447;
};
if (_local3 == 11){
_local4 = beans;
_local5 = 64;
_local6 = 497;
};
if (_local3 == 12){
_local4 = meat;
_local5 = 119;
_local6 = 506;
};
if (_local3 == 13){
_local4 = cheese;
_local5 = 31;
_local6 = 473;
};
};
} else {
if (playerMale == 0){
foodItemEaten = 15;
_local4 = littleWoman;
_local5 = 210;
_local6 = 431;
} else {
foodItemEaten = 14;
_local4 = littleMan;
_local5 = 210;
_local6 = 431;
};
bGameOver = true;
gameOverText = "You were digested and farted out!";
};
};
actionCountDown = 6;
eatingPhase = 1;
foodTweenX = new Tween(_local4, "x", Regular.easeIn, _local5, 197, 1, true);
foodTweenX.FPS = 40;
foodTweenY = new Tween(_local4, "y", Regular.easeOut, _local6, (133 + heightAdjust), 1, true);
foodTweenY.FPS = 40;
foodTweenY.addEventListener(TweenEvent.MOTION_FINISH, grabFoodInHand);
} else {
if (bVoreMode == false){
_local7 = "boy";
if (playerMale == 0){
_local7 = "girl";
};
i = Math.floor((Math.random() * 2));
if (i == 0){
showGirlText((((((("Hey " + playerName) + ", I am hungry! Give me some food, ") + _local7) + "! You're not going to let your lovely ") + strGirlName) + " starve, are you?"), 40);
} else {
if (iCredits == 0){
showGirlText((("Hey " + playerName) + ", I'm hungry! Go call your little sister! I want you to embarrass yourself by begging money out of her, to feed me!"), 40);
} else {
showGirlText((("Hey " + playerName) + ", I'm hungry! Buy me some more food from your credits, that I can then fart out on you again!"), 40);
};
};
} else {
if (playerMale == 0){
foodItemEaten = 15;
_local4 = littleWoman;
_local5 = 210;
_local6 = 431;
} else {
foodItemEaten = 14;
_local4 = littleMan;
_local5 = 210;
_local6 = 431;
};
bGameOver = true;
gameOverText = "You were digested and farted out!";
actionCountDown = 6;
eatingPhase = 1;
foodTweenX = new Tween(_local4, "x", Regular.easeIn, _local5, 197, 1, true);
foodTweenX.FPS = 40;
foodTweenY = new Tween(_local4, "y", Regular.easeOut, _local6, (133 + heightAdjust), 1, true);
foodTweenY.FPS = 40;
foodTweenY.addEventListener(TweenEvent.MOTION_FINISH, grabFoodInHand);
};
};
}
public function grabFoodInHand(_arg1:TweenEvent):void{
foodTweenY.removeEventListener(TweenEvent.MOTION_FINISH, grabFoodInHand);
if ((((((bVoreMode == true)) && (!((foodItemEaten == 14))))) && (!((foodItemEaten == 15))))){
body.foodHeld.gotoAndStop((foodItemEaten + 18));
} else {
body.foodHeld.gotoAndStop((foodItemEaten + 2));
};
actionCountDown = 27;
eatingPhase = 2;
resetFoodItem(foodItemEaten);
actionCountDown = 47;
if ((((((foodItemEaten == 0)) || ((foodItemEaten == 2)))) || ((foodItemEaten > 13)))){
if ((((((bSoftMode == false)) && ((bVoreMode == true)))) && ((foodItemEaten < 14)))){
body.expression.mouth.gotoAndPlay(16);
} else {
body.expression.mouth.gotoAndPlay(120);
};
} else {
if ((((bVoreMode == true)) && ((bSoftMode == true)))){
body.expression.mouth.gotoAndPlay(120);
} else {
body.expression.mouth.gotoAndPlay(16);
};
};
}
public function fillStomach():void{
body.foodHeld.gotoAndStop(1);
if (foodItemEaten == 0){
if (bVoreMode == false){
stomach.milk_yoghurt.gotoAndStop(1);
stomach.milk_yoghurt.scaleX = 1;
stomach.milk_yoghurt.scaleY = 1;
} else {
stomach.milk_yoghurt.gotoAndStop((2 + iVoreOffset));
stomach.milk_yoghurt.scaleX = 1.5;
stomach.milk_yoghurt.scaleY = 1.5;
stomach.milk_yoghurt.rotation = Math.floor((Math.random() * 360));
};
stomach.milk_yoghurt.alpha = 1;
} else {
if (foodItemEaten == 1){
if (bVoreMode == false){
stomach.garlic_onion1.gotoAndStop(1);
stomach.garlic_onion1.scaleX = 1;
stomach.garlic_onion1.scaleY = 1;
} else {
stomach.garlic_onion1.gotoAndStop((2 + iVoreOffset));
stomach.garlic_onion1.rotation = Math.floor((Math.random() * 360));
stomach.garlic_onion1.scaleX = 1.5;
stomach.garlic_onion1.scaleY = 1.5;
};
stomach.garlic_onion1.alpha = 1;
} else {
if (foodItemEaten == 2){
if (bVoreMode == false){
stomach.ice_ice.gotoAndStop(1);
stomach.ice_ice.scaleX = 1;
stomach.ice_ice.scaleY = 1;
} else {
stomach.ice_ice.gotoAndStop((2 + iVoreOffset));
stomach.ice_ice.rotation = Math.floor((Math.random() * 360));
stomach.ice_ice.scaleX = 1.5;
stomach.ice_ice.scaleY = 1.5;
};
stomach.ice_ice.alpha = 1;
} else {
if (foodItemEaten == 3){
if (bVoreMode == false){
stomach.garlic_onion2.gotoAndStop(1);
stomach.garlic_onion2.scaleX = 1;
stomach.garlic_onion2.scaleY = 1;
} else {
stomach.garlic_onion2.gotoAndStop((3 + iVoreOffset));
stomach.garlic_onion2.rotation = Math.floor((Math.random() * 360));
stomach.garlic_onion2.scaleX = 1.5;
stomach.garlic_onion2.scaleY = 1.5;
};
stomach.garlic_onion2.alpha = 1;
} else {
if (foodItemEaten == 4){
if (bVoreMode == false){
stomach.beans_nuts1.gotoAndStop(1);
stomach.beans_nuts1.scaleX = 1;
stomach.beans_nuts1.scaleY = 1;
} else {
stomach.beans_nuts1.gotoAndStop((2 + iVoreOffset));
stomach.beans_nuts1.rotation = Math.floor((Math.random() * 360));
stomach.beans_nuts1.scaleX = 1.5;
stomach.beans_nuts1.scaleY = 1.5;
};
stomach.beans_nuts1.alpha = 1;
} else {
if (foodItemEaten == 5){
if (bVoreMode == false){
stomach.meat_beef2.gotoAndStop(1);
stomach.meat_beef2.scaleX = 1;
stomach.meat_beef2.scaleY = 1;
} else {
stomach.meat_beef2.gotoAndStop((3 + iVoreOffset));
stomach.meat_beef2.rotation = Math.floor((Math.random() * 360));
stomach.meat_beef2.scaleX = 1.5;
stomach.meat_beef2.scaleY = 1.5;
};
stomach.meat_beef2.alpha = 1;
} else {
if (foodItemEaten == 6){
if (bVoreMode == false){
stomach.asparagus_asparagus.gotoAndStop(1);
stomach.asparagus_asparagus.scaleX = 1;
stomach.asparagus_asparagus.scaleY = 1;
} else {
stomach.asparagus_asparagus.gotoAndStop((2 + iVoreOffset));
stomach.asparagus_asparagus.rotation = Math.floor((Math.random() * 360));
stomach.asparagus_asparagus.scaleX = 1.5;
stomach.asparagus_asparagus.scaleY = 1.5;
};
stomach.asparagus_asparagus.alpha = 1;
} else {
if (foodItemEaten == 7){
if (bVoreMode == false){
stomach.fruit_chips1.gotoAndStop(1);
stomach.fruit_chips1.scaleX = 1;
stomach.fruit_chips1.scaleY = 1;
} else {
stomach.fruit_chips1.gotoAndStop((2 + iVoreOffset));
stomach.fruit_chips1.rotation = Math.floor((Math.random() * 360));
stomach.fruit_chips1.scaleX = 1.5;
stomach.fruit_chips1.scaleY = 1.5;
};
stomach.fruit_chips1.alpha = 1;
} else {
if (foodItemEaten == 8){
if (bVoreMode == false){
stomach.fruit_chips2.gotoAndStop(1);
stomach.fruit_chips2.scaleX = 1;
stomach.fruit_chips2.scaleY = 1;
} else {
stomach.fruit_chips2.gotoAndStop((3 + iVoreOffset));
stomach.fruit_chips2.rotation = Math.floor((Math.random() * 360));
stomach.fruit_chips2.scaleX = 1.5;
stomach.fruit_chips2.scaleY = 1.5;
};
stomach.fruit_chips2.alpha = 1;
} else {
if (foodItemEaten == 9){
if (bVoreMode == false){
stomach.brocoli_brocoli.gotoAndStop(1);
stomach.brocoli_brocoli.scaleX = 1;
stomach.brocoli_brocoli.scaleY = 1;
} else {
stomach.brocoli_brocoli.gotoAndStop((2 + iVoreOffset));
stomach.brocoli_brocoli.rotation = Math.floor((Math.random() * 360));
stomach.brocoli_brocoli.scaleX = 1.5;
stomach.brocoli_brocoli.scaleY = 1.5;
};
stomach.brocoli_brocoli.alpha = 1;
} else {
if (foodItemEaten == 10){
if (bVoreMode == false){
stomach.cheese_cheese2.gotoAndStop(1);
stomach.cheese_cheese2.scaleX = 1;
stomach.cheese_cheese2.scaleY = 1;
} else {
stomach.cheese_cheese2.gotoAndStop((3 + iVoreOffset));
stomach.cheese_cheese2.rotation = Math.floor((Math.random() * 360));
stomach.cheese_cheese2.scaleX = 1.5;
stomach.cheese_cheese2.scaleY = 1.5;
};
stomach.cheese_cheese2.alpha = 1;
} else {
if (foodItemEaten == 11){
if (bVoreMode == false){
stomach.beans_nuts2.gotoAndStop(1);
stomach.beans_nuts2.scaleX = 1;
stomach.beans_nuts2.scaleY = 1;
} else {
stomach.beans_nuts2.gotoAndStop((3 + iVoreOffset));
stomach.beans_nuts2.rotation = Math.floor((Math.random() * 360));
stomach.beans_nuts2.scaleX = 1.5;
stomach.beans_nuts2.scaleY = 1.5;
};
stomach.beans_nuts2.alpha = 1;
} else {
if (foodItemEaten == 12){
if (bVoreMode == false){
stomach.meat_beef1.gotoAndStop(1);
stomach.meat_beef1.scaleX = 1;
stomach.meat_beef1.scaleY = 1;
} else {
stomach.meat_beef1.gotoAndStop((2 + iVoreOffset));
stomach.meat_beef1.rotation = Math.floor((Math.random() * 360));
stomach.meat_beef1.scaleX = 1.5;
stomach.meat_beef1.scaleY = 1.5;
};
stomach.meat_beef1.alpha = 1;
} else {
if (foodItemEaten == 13){
if (bVoreMode == false){
stomach.cheese_cheese1.gotoAndStop(1);
stomach.cheese_cheese1.scaleX = 1;
stomach.cheese_cheese1.scaleY = 1;
} else {
stomach.cheese_cheese1.gotoAndStop((2 + iVoreOffset));
stomach.cheese_cheese1.rotation = Math.floor((Math.random() * 360));
stomach.cheese_cheese1.scaleX = 1.5;
stomach.cheese_cheese1.scaleY = 1.5;
};
stomach.cheese_cheese1.alpha = 1;
} else {
if (foodItemEaten == 14){
stomach.me_me1.gotoAndPlay(1);
stomach.me_me1.alpha = 1;
} else {
if (foodItemEaten == 15){
stomach.me_me2.gotoAndPlay(1);
stomach.me_me2.alpha = 1;
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
eatingPhase = 0;
}
public function colorCloud(_arg1, _arg2, _arg3):void{
cloud1.transform.colorTransform = new ColorTransform(0, 0, 0, 0, _arg1, _arg2, _arg3, 1);
cloud2.transform.colorTransform = new ColorTransform(0, 0, 0, 0, _arg1, _arg2, _arg3, 1);
cloud3.transform.colorTransform = new ColorTransform(0, 0, 0, 0, _arg1, _arg2, _arg3, 1);
cloud4.transform.colorTransform = new ColorTransform(0, 0, 0, 0, _arg1, _arg2, _arg3, 1);
cloud5.transform.colorTransform = new ColorTransform(0, 0, 0, 0, _arg1, _arg2, _arg3, 1);
cloud6.transform.colorTransform = new ColorTransform(0, 0, 0, 0, _arg1, _arg2, _arg3, 1);
cloud7.transform.colorTransform = new ColorTransform(0, 0, 0, 0, _arg1, _arg2, _arg3, 1);
cloud8.transform.colorTransform = new ColorTransform(0, 0, 0, 0, _arg1, _arg2, _arg3, 1);
cloud9.transform.colorTransform = new ColorTransform(0, 0, 0, 0, _arg1, _arg2, _arg3, 1);
}
public function setGasColour():void{
var _local1:* = ((iGas1 + iGas2) + iGas3);
var _local2:* = Math.floor(((iGas1 / _local1) * 100));
var _local3:* = Math.floor(((iGas2 / _local1) * 100));
var _local4:* = Math.floor(((iGas3 / _local1) * 100));
iR1 = Math.floor(((((_local2 / 100) * 215) + ((iGas2 / 100) * 90)) + ((iGas3 / 100) * 80)));
iG1 = (215 - Math.floor(((_local4 / 100) * 135)));
iB1 = (50 + Math.floor(((_local4 / 100) * 25)));
stomach.stomachGas.transform.colorTransform = new ColorTransform(0, 0, 0, (iPressure / 150), iR1, iG1, iB1, 1);
bottleGas.alpha = (iStench / 150);
}
public function fart(_arg1):void{
iTotFarts++;
var _local2:* = 1;
iStench = (iStench + _arg1);
if (iStench > 100){
iStench = 100;
};
if (iStench > iHighestStench){
iHighestStench = Math.floor(iStench);
};
if (bCoughSoundOn == true){
iCoughCountDown = (Math.floor((Math.random() * 10)) + 3);
};
iPressure = 0;
if ((iStench / 150) > iDiscolorStrength){
iDiscolorStrength = (iStench / 150);
};
iR2 = iR1;
iG2 = iG1;
iB2 = iB1;
colorCloud(iR1, iG1, iB1);
if (_arg1 < 31){
fartSize = 0;
} else {
if (_arg1 < 71){
fartSize = 1;
} else {
fartSize = 2;
};
};
cloudCounter = 1;
update_clouds();
if (Math.floor((Math.random() * iHappiness)) < (100 - iKindNess)){
bounceGirl(1);
};
if ((((iGas2 > iGas1)) && ((iGas2 > iGas3)))){
_local2 = 2;
};
if ((((iGas3 > iGas1)) && ((iGas3 > iGas2)))){
_local2 = 3;
};
iGas1 = 0;
iGas2 = 0;
iGas3 = 0;
if (iStench > 100){
iStench = 100;
};
if ((iOxygen + iStench) > 125){
iOxygen = (125 - iStench);
};
if (iOxygen < 0){
iOxygen = 0;
};
bottleGas.transform.colorTransform = new ColorTransform(0, 0, 0, (iStench / 150), iR1, iG1, iB1, 1);
if (bSoundOn == true){
if (_arg1 < 31){
playSound(0);
} else {
if (_arg1 < 71){
playSound(1);
} else {
playSound(2);
};
};
};
if (iOxygen < 1){
bUnconscious = true;
};
i = Math.floor((Math.random() * 7));
if (iStench > 75){
if (bLoveIt == true){
if (i == 0){
showOwnText("Oohhh... the stench is so bad! I almost can't breathe!");
} else {
if (i == 1){
showOwnText("WOW! That was a nasty one! I'll stink for a week!");
} else {
if (i == 2){
showOwnText("My lungs are 10% air and 90% of your smelly gasses!");
} else {
if (i == 3){
showOwnText("More! More! I want to suffer in the stench from your butt!");
} else {
if (i == 4){
showOwnText("Please let me suffer in your smell all day! Give me more!");
} else {
if (i == 5){
showOwnText("Please fart on me till I pass out! I want to smell all of it!");
} else {
if (i == 6){
if (iSwimsuit == 1){
showOwnText("Mmm... I love it how the farts discolour your swimsuit!");
} else {
if (iPanties == 1){
showOwnText("Mmm... I love it how the farts discolour your panties!");
} else {
showOwnText("I love it under your butt hole without clothes in between!");
};
};
};
};
};
};
};
};
};
} else {
if (i == 0){
showOwnText("N-no more!... It stinks so bad, I almost can't breathe! Help!");
} else {
if (i == 1){
showOwnText("EEW! That was a nasty one! I'll stink for a week!");
} else {
if (i == 2){
showOwnText("My lungs are 10% air and 90% of your smelly gasses!");
} else {
if (i == 3){
showOwnText("No more! Please! I have learned my lesson! Really!");
} else {
if (i == 4){
showOwnText("I am suffering in your smell all day! Please stop now!");
} else {
if (i == 5){
showOwnText("Please stop! I will soon pass out because of all the smells!");
} else {
if (i == 6){
if (iSwimsuit == 1){
showOwnText("Eew! The farts have dis-coloured your swimsuit!");
} else {
if (iPanties == 1){
showOwnText("Eew! The farts have dis-coloured your panties!");
} else {
showOwnText("It is almost like the farts are worse without clothing on...!");
};
};
};
};
};
};
};
};
};
};
} else {
if (iStench > 50){
if (bLoveIt == true){
if (i == 0){
showOwnText("Aaah... what a lovely smell! Straight out of your butt! mm!");
} else {
if (i == 1){
showOwnText("Mmm... such a nice warm and stinky air in my face! I love it!");
} else {
if (i == 2){
showOwnText("I can't get enough of your farts! They smell so bad!");
} else {
if (i == 3){
showOwnText("More more! The bottle barely half full! Please!");
} else {
if (i == 4){
showOwnText("Oooh! I loved that one. I was just breathing in... mmm!");
} else {
if (i == 5){
showOwnText("Ooh! That felt so good! I can even TASTE the farts here!");
} else {
if (i == 6){
showOwnText("I wish I could place my face right in front of your butt hole!");
};
};
};
};
};
};
};
} else {
if (i == 0){
showOwnText("EEH! I hate being so close to your butt! What a stench!");
} else {
if (i == 1){
showOwnText("EEW! That fart feels WARM... and it smells so bad! Help!");
} else {
if (i == 2){
showOwnText("Eew! Stop it! Enough! I can't take it! It stinks so bad in here!");
} else {
if (i == 3){
showOwnText("Stop! Bottle is already half full! I need my oxygen! Help!");
} else {
if (i == 4){
showOwnText("Eew-YUCK! I just breathed in! A mouthful of your fart!");
} else {
if (i == 5){
showOwnText("Yucky! I can even taste the farts on my tongue! eeww!");
} else {
if (i == 6){
showOwnText("Eew! I wish I had an oxygen tank here... It smells so bad!");
};
};
};
};
};
};
};
};
} else {
if (iStench > 25){
if (bLoveIt == true){
if (i == 0){
showOwnText("Aaah... what a lovely smell! Straight out of your butt! mm!");
} else {
if (i == 1){
showOwnText("Mmm... such a nice warm and stinky air in my face! I love it!");
} else {
if (i == 2){
showOwnText("I can't get enough of your farts! They smell so bad!");
} else {
if (i == 3){
showOwnText("More more! The bottle barely half full! Please!");
} else {
if (i == 4){
showOwnText("Oooh! I loved that one. I was just breathing in... mmm!");
} else {
if (i == 5){
showOwnText("Ooh! That felt so good! I can even TASTE the farts here!");
} else {
if (i == 6){
showOwnText("Fart harder, please! I want to be buried in bad smells!");
};
};
};
};
};
};
};
} else {
if (i == 0){
showOwnText("EEH! I hate being so close to your butt! What a stench!");
} else {
if (i == 1){
showOwnText("EEW! That fart feels WARM... and it smells so bad! Help!");
} else {
if (i == 2){
showOwnText("Eew! Stop it! Enough! I can't take it! It stinks so bad in here!");
} else {
if (i == 3){
showOwnText("Stop! Bottle is already half full! I need my oxygen! Help!");
} else {
if (i == 4){
showOwnText("Eew-YUCK! I just breathed in! A mouthful of your fart!");
} else {
if (i == 5){
showOwnText("Yucky! I can even taste the farts on my tongue! eeww!");
} else {
if (i == 6){
showOwnText("Eew! That one smelled awful! Please don't do it anymore!");
};
};
};
};
};
};
};
};
} else {
if (bLoveIt == true){
if (i == 0){
showOwnText("Ahhh... how delightful to inhale your godly fartlings!");
} else {
if (i == 1){
showOwnText("Mmm... I love the smell... but I would like to smell more!");
} else {
if (i == 2){
showOwnText("Please unload, babe! I will sniff up all your bad farts!");
} else {
if (i == 3){
showOwnText("Is this all you can do? Give me more! Fill the bottle up!");
} else {
if (_local2 == 1){
showOwnText("Ahh! That one smells like de-composing vegetables!");
} else {
if (_local2 == 2){
showOwnText("Mmm... stinks like rotten cabbage, this one! Thanks!");
} else {
showOwnText("Ooh... a strong rotten egg smell is forcing its way in!");
};
};
};
};
};
};
} else {
if (i == 0){
showOwnText("Eew! I can't help inhaling your smelly air! Stop it!");
} else {
if (i == 1){
showOwnText("Ehh... please try not to fart too much on me! P-please?");
} else {
if (i == 2){
showOwnText("Your fart is forcing its way into my lungs! *cough-cough*");
} else {
if (i == 3){
showOwnText("I'm sorry for what I did! Pretty please, stop this! eew!");
} else {
if (_local2 == 1){
showOwnText("Yuck! Smells like decom-posing vegeta-bles! Eeww!");
} else {
if (_local2 == 2){
showOwnText("Yech! A rotten cabbage smell is forcing its way into me!");
} else {
showOwnText("EEW! Stop that, did you eat rotten eggs or something!?");
};
};
};
};
};
};
};
};
};
};
}
public function flyControl():void{
if (bNoFlies == false){
if ((((((whoLetTheFliesOut.currentFrame == 1)) && ((iStench > 75)))) && ((bBottleClosed == false)))){
bounceTimeOut = 16;
whoLetTheFliesOut.gotoAndPlay(2);
};
if ((((((((whoLetTheFliesOut.currentFrame > 88)) && ((whoLetTheFliesOut.currentFrame < 110)))) && ((iStench < 50)))) && ((bBottleClosed == false)))){
bounceTimeOut = 9;
whoLetTheFliesOut.alpha = 1;
whoLetThe2.alpha = 0;
whoLetTheFliesOut.gotoAndPlay(110);
};
};
}
public function unDress(_arg1, _arg2, _arg3):void{
var _local4:*;
if ((((_arg1 == "panties")) && ((iPanties > 0)))){
if (_arg2 == false){
groundPanties.alpha = 0;
iPanties = 1;
if (iSkirt == 1){
body.butt.swim.gotoAndStop((clothOffset + 4));
} else {
body.butt.swim.gotoAndStop((clothOffset + 3));
};
} else {
if ((((askIfSheWantsToUndress(_arg1) == true)) || ((_arg3 == true)))){
groundPanties.alpha = 1;
iPanties = 2;
if (iSkirt == 1){
body.butt.swim.gotoAndStop((clothOffset + 6));
} else {
body.butt.swim.gotoAndStop(0);
};
};
};
} else {
if ((((_arg1 == "bra")) && ((iBra > 0)))){
if (_arg2 == false){
groundBra.alpha = 0;
iBra = 1;
body.breasts.swim.gotoAndStop((clothOffset + 3));
body.miniBreast.swim.gotoAndStop((clothOffset + 3));
body.midBreast.swim.gotoAndStop((clothOffset + 3));
body.arm.swim.gotoAndStop((clothOffset + 3));
} else {
if ((((askIfSheWantsToUndress(_arg1) == true)) || ((_arg3 == true)))){
groundBra.alpha = 1;
iBra = 2;
body.breasts.swim.gotoAndStop(0);
body.miniBreast.swim.gotoAndStop(0);
body.midBreast.swim.gotoAndStop(0);
body.arm.swim.gotoAndStop(0);
};
};
} else {
if ((((_arg1 == "swimsuit")) && ((iSwimsuit > 0)))){
if (_arg2 == false){
groundSwimsuit.alpha = 0;
iSwimsuit = 1;
body.butt.swim.gotoAndStop((clothOffset + 2));
body.breasts.swim.gotoAndStop((clothOffset + 2));
body.miniBreast.swim.gotoAndStop((clothOffset + 2));
body.midBreast.swim.gotoAndStop((clothOffset + 2));
body.chest.swim.gotoAndStop((clothOffset + 2));
body.arm.swim.gotoAndStop((clothOffset + 2));
body.middel.swim.gotoAndStop((clothOffset + 2));
body.belly.swim.gotoAndStop((clothOffset + 2));
} else {
if ((((askIfSheWantsToUndress(_arg1) == true)) || ((_arg3 == true)))){
groundSwimsuit.alpha = 1;
iSwimsuit = 2;
body.butt.swim.gotoAndStop(0);
body.breasts.swim.gotoAndStop(0);
body.miniBreast.swim.gotoAndStop(0);
body.midBreast.swim.gotoAndStop(0);
body.chest.swim.gotoAndStop(0);
body.arm.swim.gotoAndStop(0);
body.middel.swim.gotoAndStop(0);
body.belly.swim.gotoAndStop(0);
};
};
} else {
if ((((_arg1 == "skirt")) && ((iSkirt > 0)))){
if (_arg2 == false){
groundSkirt.alpha = 0;
iSkirt = 1;
if (iPanties == 1){
body.butt.swim.gotoAndStop((clothOffset + 4));
} else {
body.butt.swim.gotoAndStop((clothOffset + 6));
};
} else {
if ((((askIfSheWantsToUndress(_arg1) == true)) || ((_arg3 == true)))){
groundSkirt.alpha = 1;
iSkirt = 2;
if (iPanties == 1){
body.butt.swim.gotoAndStop((clothOffset + 3));
} else {
body.butt.swim.gotoAndStop(0);
};
};
};
} else {
if ((((_arg1 == "nets")) && ((iNets > 0)))){
if (_arg2 == false){
groundNets.alpha = 0;
iNets = 1;
footLeft.socks.gotoAndStop((clothOffset + 2));
footRight.socks.gotoAndStop((clothOffset + 2));
body.crushPos.sock2.gotoAndStop((clothOffset + 2));
} else {
if ((((askIfSheWantsToUndress(_arg1) == true)) || ((_arg3 == true)))){
groundNets.alpha = 1;
iNets = 2;
footLeft.socks.gotoAndStop(0);
footRight.socks.gotoAndStop(0);
body.crushPos.sock2.gotoAndStop(0);
};
};
} else {
if ((((_arg1 == "socks")) && ((iSocks > 0)))){
if (_arg2 == false){
groundSocks.alpha = 0;
iSocks = 1;
if (iShoes == 1){
footLeft.socks.gotoAndStop((clothOffset + 4));
footRight.socks.gotoAndStop((clothOffset + 4));
body.crushPos.sock2.gotoAndStop((clothOffset + 4));
} else {
footLeft.socks.gotoAndStop((clothOffset + 3));
footRight.socks.gotoAndStop((clothOffset + 3));
body.crushPos.sock2.gotoAndStop((clothOffset + 3));
};
} else {
if (iShoes != 1){
if ((((askIfSheWantsToUndress(_arg1) == true)) || ((_arg3 == true)))){
groundSocks.alpha = 1;
iSocks = 2;
footLeft.socks.gotoAndStop(0);
footRight.socks.gotoAndStop(0);
body.crushPos.sock2.gotoAndStop(0);
};
};
};
} else {
if ((((_arg1 == "shoes")) && ((iShoes > 0)))){
if (_arg2 == false){
groundShoes.alpha = 0;
iShoes = 1;
if (iSocks == 1){
footLeft.socks.gotoAndStop((clothOffset + 4));
footRight.socks.gotoAndStop((clothOffset + 4));
body.crushPos.sock2.gotoAndStop((clothOffset + 4));
} else {
footLeft.socks.gotoAndStop((clothOffset + 5));
footRight.socks.gotoAndStop((clothOffset + 5));
body.crushPos.sock2.gotoAndStop((clothOffset + 5));
};
} else {
if ((((askIfSheWantsToUndress(_arg1) == true)) || ((_arg3 == true)))){
groundShoes.alpha = 1;
iShoes = 2;
if (iSocks == 1){
footLeft.socks.gotoAndStop((clothOffset + 3));
footRight.socks.gotoAndStop((clothOffset + 3));
body.crushPos.sock2.gotoAndStop((clothOffset + 3));
} else {
footLeft.socks.gotoAndStop(0);
footRight.socks.gotoAndStop(0);
body.crushPos.sock2.gotoAndStop(0);
};
};
};
} else {
if ((((_arg1 == "shirt")) && ((((iShirtRed > 0)) || ((iShirtBlack > 0)))))){
_local4 = 4;
if (iShirtRed > 0){
_arg1 = "shirtRed";
} else {
_arg1 = "shirtBlack";
_local4 = 5;
};
if (_arg2 == false){
if (_local4 == 4){
groundShirtRed.alpha = 0;
iShirtRed = 1;
} else {
groundShirtBlack.alpha = 0;
iShirtBlack = 1;
};
body.breasts.swim.gotoAndStop((clothOffset + _local4));
body.miniBreast.swim.gotoAndStop((clothOffset + _local4));
body.midBreast.swim.gotoAndStop((clothOffset + _local4));
body.chest.swim.gotoAndStop((clothOffset + _local4));
body.arm.swim.gotoAndStop((clothOffset + _local4));
body.middel.swim.gotoAndStop((clothOffset + _local4));
body.belly.swim.gotoAndStop((clothOffset + _local4));
} else {
if ((((askIfSheWantsToUndress(_arg1) == true)) || ((_arg3 == true)))){
if (_local4 == 4){
groundShirtRed.alpha = 1;
iShirtRed = 2;
} else {
groundShirtBlack.alpha = 1;
iShirtBlack = 2;
};
body.breasts.swim.gotoAndStop(0);
body.miniBreast.swim.gotoAndStop(0);
body.midBreast.swim.gotoAndStop(0);
body.chest.swim.gotoAndStop(0);
body.arm.swim.gotoAndStop(0);
body.middel.swim.gotoAndStop(0);
body.belly.swim.gotoAndStop(0);
};
};
};
};
};
};
};
};
};
};
}
public function askIfSheWantsToUndress(_arg1):Boolean{
if (_arg1 == "panties"){
} else {
if (_arg1 == "bra"){
} else {
if (_arg1 == "swimsuit"){
} else {
if (_arg1 == "skirt"){
} else {
if (_arg1 == "nets"){
} else {
if (_arg1 == "socks"){
} else {
if (_arg1 == "shoes"){
} else {
if (_arg1 == "shirtRed"){
} else {
if (_arg1 == "shirtBlack"){
};
};
};
};
};
};
};
};
};
return (true);
}
public function update_clouds():void{
var _local1:*;
var _local2:*;
var _local3:*;
_local1 = 1;
while (_local1 < 10) {
if (_local1 == 1){
_local2 = cloud1;
};
if (_local1 == 2){
_local2 = cloud2;
};
if (_local1 == 3){
_local2 = cloud3;
};
if (_local1 == 4){
_local2 = cloud4;
};
if (_local1 == 5){
_local2 = cloud5;
};
if (_local1 == 6){
_local2 = cloud6;
};
if (_local1 == 7){
_local2 = cloud7;
};
if (_local1 == 8){
_local2 = cloud8;
};
if (_local1 == 9){
_local2 = cloud9;
};
if (_local2.alpha > 0){
if (_local2.alpha < 0.1){
_local2.alpha = 0;
};
_local2.alpha = (_local2.alpha - 0.1);
_local2.scaleX = (_local2.scaleX + 0.1);
_local2.scaleY = (_local2.scaleY + 0.1);
if (iTotBottleClosed == true){
_local2.y = (_local2.y + 5);
} else {
_local2.y = (_local2.y + 10);
};
};
_local1++;
};
if (cloudCounter < 10){
if (cloudCounter == 1){
_local3 = cloud1;
};
if (cloudCounter == 2){
_local3 = cloud2;
};
if (cloudCounter == 3){
_local3 = cloud3;
};
if (cloudCounter == 4){
_local3 = cloud4;
};
if (cloudCounter == 5){
_local3 = cloud5;
};
if (cloudCounter == 6){
_local3 = cloud6;
};
if (cloudCounter == 7){
_local3 = cloud7;
};
if (cloudCounter == 8){
_local3 = cloud8;
};
if (cloudCounter == 9){
_local3 = cloud9;
};
_local3.x = 220;
if (iTotBottleClosed == true){
_local3.y = 390;
} else {
_local3.y = 360;
};
if (fartSize == 0){
_local3.scaleX = 0.05;
_local3.scaleY = 0.1;
} else {
if (fartSize == 1){
_local3.scaleX = 0.2;
_local3.scaleY = 0.2;
} else {
_local3.scaleX = 0.4;
_local3.scaleY = 0.4;
};
};
_local3.alpha = 0.9;
_local3.gotoAndStop(Math.ceil((Math.random() * 6)));
cloudCounter++;
};
}
public function updateFloorItems():void{
if (itemArray[0] == 1){
milk.alpha = 1;
} else {
milk.alpha = 0;
};
if (itemArray[1] == 1){
garlic.alpha = 1;
} else {
garlic.alpha = 0;
};
if (itemArray[2] == 1){
icecream.alpha = 1;
} else {
icecream.alpha = 0;
};
if (itemArray[3] == 1){
onion.alpha = 1;
} else {
onion.alpha = 0;
};
if (itemArray[4] == 1){
nuts.alpha = 1;
} else {
nuts.alpha = 0;
};
if (itemArray[5] == 1){
mushrooms.alpha = 1;
} else {
mushrooms.alpha = 0;
};
if (itemArray[6] == 1){
asparagus.alpha = 1;
} else {
asparagus.alpha = 0;
};
if (itemArray[7] == 1){
apple.alpha = 1;
} else {
apple.alpha = 0;
};
if (itemArray[8] == 1){
pear.alpha = 1;
} else {
pear.alpha = 0;
};
if (itemArray[9] == 1){
broccoli.alpha = 1;
} else {
broccoli.alpha = 0;
};
if (itemArray[10] == 1){
blackEyedPeas.alpha = 1;
} else {
blackEyedPeas.alpha = 0;
};
if (itemArray[11] == 1){
beans.alpha = 1;
} else {
beans.alpha = 0;
};
if (itemArray[12] == 1){
meat.alpha = 1;
} else {
meat.alpha = 0;
};
if (itemArray[13] == 1){
cheese.alpha = 1;
} else {
cheese.alpha = 0;
};
}
public function setBreastSize(_arg1):void{
if (_arg1 < 0.5){
_arg1 = 0.5;
};
if (_arg1 > 2){
_arg1 = 2;
};
iBreastSize = _arg1;
if (iBreastSize >= 1.4){
body.breasts.scaleX = (_arg1 - 0.4);
body.breasts.scaleY = (_arg1 - 0.4);
body.breasts.alpha = 1;
body.midBreast.alpha = 0;
body.miniBreast.alpha = 0;
} else {
if (iBreastSize >= 1){
body.midBreast.scaleX = (_arg1 - 0.1);
body.midBreast.scaleY = (_arg1 - 0.1);
body.breasts.alpha = 0;
body.midBreast.alpha = 1;
body.miniBreast.alpha = 0;
} else {
body.miniBreast.scaleX = (_arg1 + 0.2);
body.breasts.alpha = 0;
body.midBreast.alpha = 0;
body.miniBreast.alpha = 1;
};
};
}
public function setBellySize(_arg1):void{
if (_arg1 < 0.5){
_arg1 = 0.5;
};
if (_arg1 > 2){
_arg1 = 2;
};
iBellySize = _arg1;
body.belly.scaleX = _arg1;
}
public function setButtSize(_arg1):void{
if (_arg1 < 1){
_arg1 = 1;
};
if (_arg1 > 1.4){
_arg1 = 1.4;
};
iButtSize = _arg1;
body.butt.scaleX = _arg1;
if (_arg1 > 1.3){
body.butt.scaleY = 1.2;
} else {
if (_arg1 > 1.1){
body.butt.scaleY = 1.1;
} else {
body.butt.scaleY = 1;
};
};
}
public function doClickedAction(_arg1, _arg2):void{
if (_arg1 == "btnLbreast"){
iBreastSize = (iBreastSize - 0.1);
setBreastSize(iBreastSize);
} else {
if (_arg1 == "btnRbreast"){
iBreastSize = (iBreastSize + 0.1);
setBreastSize(iBreastSize);
} else {
if (_arg1 == "btnLbelly"){
iBellySize = (iBellySize - 0.1);
setBellySize(iBellySize);
} else {
if (_arg1 == "btnRbelly"){
iBellySize = (iBellySize + 0.1);
setBellySize(iBellySize);
} else {
if (_arg1 == "btnLbutt"){
iButtSize = (iButtSize - 0.1);
setButtSize(iButtSize);
} else {
if (_arg1 == "btnRbutt"){
iButtSize = (iButtSize + 0.1);
setButtSize(iButtSize);
} else {
if (_arg1 == "btnAcceptStart"){
doStartGame();
} else {
if (_arg1 == "red1"){
redHair = _arg2;
customization.arrow1.x = (-117 + _arg2);
setHairColor(redHair, greenHair, blueHair);
} else {
if (_arg1 == "green1"){
greenHair = _arg2;
customization.arrow2.x = (-117 + _arg2);
setHairColor(redHair, greenHair, blueHair);
} else {
if (_arg1 == "blue1"){
blueHair = _arg2;
customization.arrow3.x = (-117 + _arg2);
setHairColor(redHair, greenHair, blueHair);
} else {
if (_arg1 == "red2"){
redSkin = _arg2;
customization.arrow4.x = (-117 + _arg2);
setSkinColor(redSkin, greenSkin, blueSkin);
} else {
if (_arg1 == "green2"){
greenSkin = _arg2;
customization.arrow5.x = (-117 + _arg2);
setSkinColor(redSkin, greenSkin, blueSkin);
} else {
if (_arg1 == "blue2"){
blueSkin = _arg2;
customization.arrow6.x = (-117 + _arg2);
setSkinColor(redSkin, greenSkin, blueSkin);
} else {
if (_arg1 == "btnLoveIt1"){
customization.btnLoveIt1.gotoAndStop(2);
customization.btnLoveIt2.gotoAndStop(1);
bLoveIt = false;
} else {
if (_arg1 == "btnLoveIt2"){
customization.btnLoveIt1.gotoAndStop(1);
customization.btnLoveIt2.gotoAndStop(2);
bLoveIt = true;
} else {
if (_arg1 == "kindBar"){
iKindNess = (mouseX - 27);
if (iKindNess < 0){
iKindNess = 0;
};
if (iKindNess > 100){
iKindNess = 100;
};
customization.kindMeter.x = (-424 + iKindNess);
if (iKindNess < 33){
expressionOffset = 0;
} else {
if (iKindNess < 66){
expressionOffset = 20;
} else {
expressionOffset = 40;
};
};
body.expression.eyes.gotoAndStop((expressionOffset + 1));
} else {
if (_arg1 == "h1"){
body.head1.alpha = 1;
body.head2.alpha = 0;
body.head3.alpha = 0;
} else {
if (_arg1 == "h2"){
body.head1.alpha = 0;
body.head2.alpha = 1;
body.head3.alpha = 0;
} else {
if (_arg1 == "h3"){
body.head1.alpha = 0;
body.head2.alpha = 0;
body.head3.alpha = 1;
} else {
if (_arg1 == "hir1"){
sethairs("hir1");
} else {
if (_arg1 == "hir2"){
sethairs("hir2");
} else {
if (_arg1 == "hir3"){
sethairs("hir3");
} else {
if (_arg1 == "hir4"){
sethairs("hir4");
} else {
if (_arg1 == "hir5"){
sethairs("hir5");
} else {
if (_arg1 == "hir6"){
sethairs("hir6");
} else {
if (_arg1 == "hir7"){
sethairs("hir7");
} else {
if (_arg1 == "hir8"){
sethairs("hir8");
} else {
if (_arg1 == "hir9"){
sethairs("hir9");
} else {
if (_arg1 == "btnTail"){
if (customization.btnTail.currentFrame == 5){
customization.btnTail.gotoAndStop(1);
} else {
customization.btnTail.gotoAndStop((customization.btnTail.currentFrame + 1));
};
body.acc1.gotoAndStop(customization.btnTail.currentFrame);
} else {
if (_arg1 == "btnEars"){
if (customization.btnEars.currentFrame == 5){
customization.btnEars.gotoAndStop(1);
} else {
customization.btnEars.gotoAndStop((customization.btnEars.currentFrame + 1));
};
body.acc2.gotoAndStop(customization.btnEars.currentFrame);
} else {
if (_arg1 == "btnGlass"){
if (customization.btnGlass.currentFrame == 5){
customization.btnGlass.gotoAndStop(1);
} else {
customization.btnGlass.gotoAndStop((customization.btnGlass.currentFrame + 1));
};
body.acc3.gotoAndStop(customization.btnGlass.currentFrame);
} else {
if (_arg1 == "btnOutfit"){
if (customization.btnOutfit.currentFrame == 5){
customization.btnOutfit.gotoAndStop(2);
} else {
customization.btnOutfit.gotoAndStop((customization.btnOutfit.currentFrame + 1));
};
body.butt.swim.gotoAndStop(customization.btnOutfit.currentFrame);
body.breasts.swim.gotoAndStop(customization.btnOutfit.currentFrame);
body.miniBreast.swim.gotoAndStop(customization.btnOutfit.currentFrame);
body.midBreast.swim.gotoAndStop(customization.btnOutfit.currentFrame);
body.chest.swim.gotoAndStop(customization.btnOutfit.currentFrame);
body.arm.swim.gotoAndStop(customization.btnOutfit.currentFrame);
body.middel.swim.gotoAndStop(customization.btnOutfit.currentFrame);
body.belly.swim.gotoAndStop(customization.btnOutfit.currentFrame);
} else {
if (_arg1 == "btnLegs"){
if (customization.btnLegs.currentFrame == 4){
customization.btnLegs.gotoAndStop(2);
} else {
customization.btnLegs.gotoAndStop((customization.btnLegs.currentFrame + 1));
};
footLeft.socks.gotoAndStop(customization.btnLegs.currentFrame);
footRight.socks.gotoAndStop(customization.btnLegs.currentFrame);
body.crushPos.sock2.gotoAndStop(customization.btnLegs.currentFrame);
} else {
if (_arg1 == "btnWings"){
if (customization.btnWings.currentFrame == 5){
customization.btnWings.gotoAndStop(1);
} else {
customization.btnWings.gotoAndStop((customization.btnWings.currentFrame + 1));
};
body.wings.gotoAndStop(customization.btnWings.currentFrame);
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
}
public function mouseClicked(_arg1:MouseEvent):void{
var _local2:*;
var _local3:*;
_local2 = _arg1.target.name;
_local3 = (mouseX - 334);
if (_local3 < 0){
_local3 = 0;
};
if (_local3 > 0xFF){
_local3 = 0xFF;
};
if (_local2 == "btnRandom"){
randomizeShapes();
} else {
doClickedAction(_local2, _local3);
};
}
public function hideAllTabs():void{
stomach.alpha = 0;
stomach.y = -300;
emptyTab.alpha = 0;
emptyTab.y = -300;
zoomCam.alpha = 0;
zoomCam.y = -300;
cellPhone.alpha = 0;
cellPhone.y = -300;
cellPhone.picture.alpha = 0;
cellPhone.picture2.alpha = 0;
cellPhone.bottleInside.alpha = 0;
}
public function randomizeShapes():void{
var _local1:*;
var _local2:*;
setBreastSize(((Math.floor((Math.random() * 15)) + 5) / 10));
setBellySize(((Math.floor((Math.random() * 15)) + 5) / 10));
setButtSize(((Math.floor((Math.random() * 4)) + 10) / 10));
redHair = Math.floor((Math.random() * 0x0100));
greenHair = Math.floor((Math.random() * 0x0100));
blueHair = Math.floor((Math.random() * 0x0100));
setHairColor(redHair, greenHair, blueHair);
iSkinTypeRndPreset = Math.floor((Math.random() * 4));
if (iSkinTypeRndPreset < 2){
redSkin = (Math.floor((Math.random() * 15)) + 240);
greenSkin = (Math.floor((Math.random() * 60)) + 160);
blueSkin = greenSkin;
customization.girlNameField.text = ukNameArray[Math.floor((Math.random() * ukNameArray.length))];
} else {
if (iSkinTypeRndPreset == 2){
redSkin = (Math.floor((Math.random() * 58)) + 65);
greenSkin = 0;
blueSkin = 0;
customization.girlNameField.text = ebonyNameArray[Math.floor((Math.random() * ebonyNameArray.length))];
} else {
redSkin = (Math.floor((Math.random() * 25)) + 167);
greenSkin = (Math.floor((Math.random() * 68)) + 73);
blueSkin = 0;
customization.girlNameField.text = japNameArray[Math.floor((Math.random() * japNameArray.length))];
};
};
setSkinColor(redSkin, greenSkin, blueSkin);
customization.arrow1.x = (-117 + redHair);
customization.arrow2.x = (-117 + greenHair);
customization.arrow3.x = (-117 + blueHair);
customization.arrow4.x = (-117 + redSkin);
customization.arrow5.x = (-117 + greenSkin);
customization.arrow6.x = (-117 + blueSkin);
_local1 = ("hir" + String(Math.ceil((Math.random() * 9))));
sethairs(_local1);
_local2 = Math.floor((Math.random() * 3));
if (_local2 == 0){
body.head1.alpha = 1;
} else {
body.head1.alpha = 0;
};
if (_local2 == 1){
body.head2.alpha = 1;
} else {
body.head2.alpha = 0;
};
if (_local2 == 2){
body.head3.alpha = 1;
} else {
body.head3.alpha = 0;
};
customization.btnTail.gotoAndStop((Math.ceil((Math.random() * 20)) - 15));
body.acc1.gotoAndStop(customization.btnTail.currentFrame);
customization.btnGlass.gotoAndStop((Math.ceil((Math.random() * 20)) - 15));
body.acc3.gotoAndStop(customization.btnGlass.currentFrame);
customization.btnEars.gotoAndStop((Math.ceil((Math.random() * 20)) - 15));
body.acc2.gotoAndStop(customization.btnEars.currentFrame);
customization.btnOutfit.gotoAndStop((Math.ceil((Math.random() * 4)) + 1));
body.butt.swim.gotoAndStop(customization.btnOutfit.currentFrame);
body.breasts.swim.gotoAndStop(customization.btnOutfit.currentFrame);
body.miniBreast.swim.gotoAndStop(customization.btnOutfit.currentFrame);
body.midBreast.swim.gotoAndStop(customization.btnOutfit.currentFrame);
body.chest.swim.gotoAndStop(customization.btnOutfit.currentFrame);
body.arm.swim.gotoAndStop(customization.btnOutfit.currentFrame);
body.middel.swim.gotoAndStop(customization.btnOutfit.currentFrame);
body.belly.swim.gotoAndStop(customization.btnOutfit.currentFrame);
customization.btnLegs.gotoAndStop((Math.ceil((Math.random() * 3)) + 1));
footLeft.socks.gotoAndStop(customization.btnLegs.currentFrame);
body.crushPos.sock2.gotoAndStop(customization.btnLegs.currentFrame);
footRight.socks.gotoAndStop(customization.btnLegs.currentFrame);
customization.btnWings.gotoAndStop((Math.ceil((Math.random() * 20)) - 15));
body.wings.gotoAndStop(customization.btnWings.currentFrame);
iKindNess = Math.floor((Math.random() * 101));
customization.kindMeter.x = (-424 + iKindNess);
if (iKindNess < 33){
expressionOffset = 0;
} else {
if (iKindNess < 66){
expressionOffset = 20;
} else {
expressionOffset = 40;
};
};
body.expression.eyes.gotoAndStop((expressionOffset + 1));
}
public function totFoodItems():uint{
var _local1:*;
_local1 = 0;
i = 0;
while (i < 14) {
_local1 = (_local1 + itemArray[i]);
i++;
};
return (_local1);
}
public function setHairColor(_arg1, _arg2, _arg3):void{
body.hair1.bgcol.transform.colorTransform = new ColorTransform(0, 0, 0, 1, _arg1, _arg2, _arg3, 1);
body.hair2.bgcol.transform.colorTransform = new ColorTransform(0, 0, 0, 1, _arg1, _arg2, _arg3, 1);
body.hair3.bgcol.transform.colorTransform = new ColorTransform(0, 0, 0, 1, _arg1, _arg2, _arg3, 1);
body.hair4.bgcol.transform.colorTransform = new ColorTransform(0, 0, 0, 1, _arg1, _arg2, _arg3, 1);
body.hair5.bgcol.transform.colorTransform = new ColorTransform(0, 0, 0, 1, _arg1, _arg2, _arg3, 1);
body.hair6.bgcol.transform.colorTransform = new ColorTransform(0, 0, 0, 1, _arg1, _arg2, _arg3, 1);
body.hair7.bgcol.transform.colorTransform = new ColorTransform(0, 0, 0, 1, _arg1, _arg2, _arg3, 1);
body.hair8.bgcol.transform.colorTransform = new ColorTransform(0, 0, 0, 1, _arg1, _arg2, _arg3, 1);
body.hair9.bgcol.transform.colorTransform = new ColorTransform(0, 0, 0, 1, _arg1, _arg2, _arg3, 1);
customization.hairColTrack.transform.colorTransform = new ColorTransform(0, 0, 0, 1, _arg1, _arg2, _arg3, 1);
}
public function setSkinColor(_arg1, _arg2, _arg3):void{
footLeft.bgcol.transform.colorTransform = new ColorTransform(0, 0, 0, 1, _arg1, _arg2, _arg3, 1);
footRight.bgcol.transform.colorTransform = new ColorTransform(0, 0, 0, 1, _arg1, _arg2, _arg3, 1);
body.crushPos.bgcol.transform.colorTransform = new ColorTransform(0, 0, 0, 0, _arg1, _arg2, _arg3, 1);
body.butt.bgcol.transform.colorTransform = new ColorTransform(0, 0, 0, 1, _arg1, _arg2, _arg3, 1);
body.middel.bgcol.transform.colorTransform = new ColorTransform(0, 0, 0, 1, _arg1, _arg2, _arg3, 1);
body.chest.bgcol.transform.colorTransform = new ColorTransform(0, 0, 0, 1, _arg1, _arg2, _arg3, 1);
body.arm.bgcol.transform.colorTransform = new ColorTransform(0, 0, 0, 1, _arg1, _arg2, _arg3, 1);
body.neck.bgcol.transform.colorTransform = new ColorTransform(0, 0, 0, 1, _arg1, _arg2, _arg3, 1);
body.belly.bgcol.transform.colorTransform = new ColorTransform(0, 0, 0, 1, _arg1, _arg2, _arg3, 1);
body.miniBreast.bgcol.transform.colorTransform = new ColorTransform(0, 0, 0, 1, _arg1, _arg2, _arg3, 1);
body.midBreast.bgcol.transform.colorTransform = new ColorTransform(0, 0, 0, 1, _arg1, _arg2, _arg3, 1);
body.breasts.bgcol.transform.colorTransform = new ColorTransform(0, 0, 0, 1, _arg1, _arg2, _arg3, 1);
upperLegL.bgcol.transform.colorTransform = new ColorTransform(0, 0, 0, 1, _arg1, _arg2, _arg3, 1);
upperLegR.bgcol.transform.colorTransform = new ColorTransform(0, 0, 0, 1, _arg1, _arg2, _arg3, 1);
body.head1.bgcol.transform.colorTransform = new ColorTransform(0, 0, 0, 1, _arg1, _arg2, _arg3, 1);
body.head2.bgcol.transform.colorTransform = new ColorTransform(0, 0, 0, 1, _arg1, _arg2, _arg3, 1);
body.head3.bgcol.transform.colorTransform = new ColorTransform(0, 0, 0, 1, _arg1, _arg2, _arg3, 1);
customization.skinColTrack.transform.colorTransform = new ColorTransform(0, 0, 0, 1, _arg1, _arg2, _arg3, 1);
cellPhone.picture.girlSkin.bgcol.transform.colorTransform = new ColorTransform(0, 0, 0, 1, _arg1, _arg2, _arg3, 1);
cellPhone.picture2.girlSkin.bgcol.transform.colorTransform = new ColorTransform(0, 0, 0, 1, _arg1, _arg2, _arg3, 1);
scherm.largeHand.bgcol.transform.colorTransform = new ColorTransform(0, 0, 0, 1, _arg1, _arg2, _arg3, 1);
}
public function sethairs(_arg1:String):void{
if (_arg1 == "hir1"){
body.hair1.alpha = 1;
} else {
body.hair1.alpha = 0;
};
if (_arg1 == "hir2"){
body.hair2.alpha = 1;
} else {
body.hair2.alpha = 0;
};
if (_arg1 == "hir3"){
body.hair3.alpha = 1;
} else {
body.hair3.alpha = 0;
};
if (_arg1 == "hir4"){
body.hair4.alpha = 1;
} else {
body.hair4.alpha = 0;
};
if (_arg1 == "hir5"){
body.hair5.alpha = 1;
} else {
body.hair5.alpha = 0;
};
if (_arg1 == "hir6"){
body.hair6.alpha = 1;
} else {
body.hair6.alpha = 0;
};
if (_arg1 == "hir7"){
body.hair7.alpha = 1;
} else {
body.hair7.alpha = 0;
};
if (_arg1 == "hir8"){
body.hair8.alpha = 1;
} else {
body.hair8.alpha = 0;
};
if (_arg1 == "hir9"){
body.hair9.alpha = 1;
} else {
body.hair9.alpha = 0;
};
}
public function doVoreChanges():void{
var _local1:*;
_local1 = 1;
if (bVoreMode == true){
_local1 = 2;
} else {
_local1 = 1;
};
milk.gotoAndStop(_local1);
garlic.gotoAndStop(_local1);
icecream.gotoAndStop(_local1);
onion.gotoAndStop(_local1);
nuts.gotoAndStop(_local1);
mushrooms.gotoAndStop(_local1);
asparagus.gotoAndStop(_local1);
apple.gotoAndStop(_local1);
pear.gotoAndStop(_local1);
broccoli.gotoAndStop(_local1);
blackEyedPeas.gotoAndStop(_local1);
beans.gotoAndStop(_local1);
meat.gotoAndStop(_local1);
cheese.gotoAndStop(_local1);
}
public function updateStomach():void{
var _local1:*;
_local1 = true;
if (stomach.garlic_onion1.alpha > 0){
stomach.garlic_onion1.alpha = (stomach.garlic_onion1.alpha - 0.01);
iGas1 = (iGas1 + 0.4);
iPressure = (iPressure + 0.4);
iHungerLevel = (iHungerLevel + 0.3);
_local1 = false;
};
if (stomach.garlic_onion2.alpha > 0){
stomach.garlic_onion2.alpha = (stomach.garlic_onion2.alpha - 0.01);
iGas2 = (iGas2 + 0.5);
iPressure = (iPressure + 0.5);
iHungerLevel = (iHungerLevel + 0.3);
_local1 = false;
};
if (stomach.milk_yoghurt.alpha > 0){
stomach.milk_yoghurt.alpha = (stomach.milk_yoghurt.alpha - 0.02);
iGas1 = (iGas1 + 1);
iPressure = (iPressure + 1);
iHungerLevel = (iHungerLevel + 0.6);
_local1 = false;
};
if (stomach.cheese_cheese1.alpha > 0){
stomach.cheese_cheese1.alpha = (stomach.cheese_cheese1.alpha - 0.02);
iGas2 = (iGas2 + 0.7);
iGas3 = (iGas3 + 0.7);
iPressure = (iPressure + 1.4);
iHungerLevel = (iHungerLevel + 1);
_local1 = false;
};
if (stomach.cheese_cheese2.alpha > 0){
stomach.cheese_cheese2.alpha = (stomach.cheese_cheese2.alpha - 0.015);
iGas3 = (iGas3 + 1.2);
iPressure = (iPressure + 1.2);
iHungerLevel = (iHungerLevel + 0.4);
_local1 = false;
};
if (stomach.beans_nuts1.alpha > 0){
stomach.beans_nuts1.alpha = (stomach.beans_nuts1.alpha - 0.015);
iGas2 = (iGas2 + 0.9);
iPressure = (iPressure + 0.9);
iHungerLevel = (iHungerLevel + 0.4);
_local1 = false;
};
if (stomach.beans_nuts2.alpha > 0){
stomach.beans_nuts2.alpha = (stomach.beans_nuts2.alpha - 0.015);
iGas3 = (iGas3 + 0.9);
iPressure = (iPressure + 0.9);
iHungerLevel = (iHungerLevel + 0.4);
_local1 = false;
};
if (stomach.fruit_chips1.alpha > 0){
stomach.fruit_chips1.alpha = (stomach.fruit_chips1.alpha - 0.01);
iGas3 = (iGas3 + 0.3);
iPressure = (iPressure + 0.3);
iHungerLevel = (iHungerLevel + 0.6);
_local1 = false;
};
if (stomach.fruit_chips2.alpha > 0){
stomach.fruit_chips2.alpha = (stomach.fruit_chips2.alpha - 0.01);
iGas3 = (iGas3 + 0.3);
iPressure = (iPressure + 0.3);
iHungerLevel = (iHungerLevel + 0.6);
_local1 = false;
};
if (stomach.brocoli_brocoli.alpha > 0){
stomach.brocoli_brocoli.alpha = (stomach.brocoli_brocoli.alpha - 0.01);
iGas3 = (iGas3 + 0.4);
iPressure = (iPressure + 0.4);
iHungerLevel = (iHungerLevel + 0.7);
_local1 = false;
};
if (stomach.asparagus_asparagus.alpha > 0){
stomach.asparagus_asparagus.alpha = (stomach.asparagus_asparagus.alpha - 0.01);
iGas2 = (iGas2 + 0.7);
iPressure = (iPressure + 0.7);
iHungerLevel = (iHungerLevel + 0.7);
_local1 = false;
};
if (stomach.ice_ice.alpha > 0){
stomach.ice_ice.alpha = (stomach.ice_ice.alpha - 0.02);
iGas1 = (iGas1 + 1.4);
iPressure = (iPressure + 1.4);
iHungerLevel = (iHungerLevel + 0.7);
_local1 = false;
};
if (stomach.meat_beef1.alpha > 0){
stomach.meat_beef1.alpha = (stomach.meat_beef1.alpha - 0.01);
iGas3 = (iGas3 + 0.3);
iPressure = (iPressure + 0.3);
iHungerLevel = (iHungerLevel + 2);
_local1 = false;
};
if (stomach.meat_beef2.alpha > 0){
stomach.meat_beef2.alpha = (stomach.meat_beef2.alpha - 0.01);
iGas2 = (iGas2 + 0.5);
iPressure = (iPressure + 0.5);
iHungerLevel = (iHungerLevel + 0.9);
_local1 = false;
};
if (stomach.me_me1.alpha > 0){
stomach.me_me1.alpha = (stomach.me_me1.alpha - 0.005);
iGas3 = (iGas3 + 1);
iGas2 = (iGas2 + 0.1);
iGas2 = (iGas2 + 0.1);
iPressure = (iPressure + 1.2);
iHungerLevel = (iHungerLevel + 2);
_local1 = false;
};
if (stomach.me_me2.alpha > 0){
stomach.me_me2.alpha = (stomach.me_me2.alpha - 0.005);
iGas3 = (iGas3 + 1);
iGas2 = (iGas2 + 0.1);
iGas2 = (iGas2 + 0.1);
iPressure = (iPressure + 1.2);
iHungerLevel = (iHungerLevel + 2);
_local1 = false;
};
if (stomach.shirt1_shirt1.alpha > 0){
stomach.shirt1_shirt1.alpha = (stomach.shirt1_shirt1.alpha - 0.005);
iGas3 = (iGas3 + 0.5);
iPressure = (iPressure + 0.5);
};
if (stomach.shirt2_shirt2.alpha > 0){
stomach.shirt2_shirt2.alpha = (stomach.shirt2_shirt2.alpha - 0.005);
iGas3 = (iGas3 + 0.5);
iPressure = (iPressure + 0.5);
};
if (stomach.stockings_stockings.alpha > 0){
stomach.stockings_stockings.alpha = (stomach.stockings_stockings.alpha - 0.01);
iGas3 = (iGas3 + 0.3);
iPressure = (iPressure + 0.3);
};
if (stomach.skirt_skirt.alpha > 0){
stomach.skirt_skirt.alpha = (stomach.skirt_skirt.alpha - 0.005);
iGas3 = (iGas3 + 0.5);
iPressure = (iPressure + 0.5);
};
if (stomach.socks_socks.alpha > 0){
stomach.socks_socks.alpha = (stomach.socks_socks.alpha - 0.005);
iGas3 = (iGas3 + 1);
iPressure = (iPressure + 1);
};
if (stomach.swimsuit_swimsuit.alpha > 0){
stomach.swimsuit_swimsuit.alpha = (stomach.swimsuit_swimsuit.alpha - 0.005);
iGas3 = (iGas3 + 1);
iPressure = (iPressure + 1);
};
if (stomach.panties_panties.alpha > 0){
stomach.panties_panties.alpha = (stomach.panties_panties.alpha - 0.005);
iGas3 = (iGas3 + 0.75);
iPressure = (iPressure + 0.75);
};
if (stomach.shoes_shoes.alpha > 0){
stomach.shoes_shoes.alpha = (stomach.shoes_shoes.alpha - 0.003);
iGas3 = (iGas3 + 0.3);
iPressure = (iPressure + 0.3);
};
if (stomach.bra_bra.alpha > 0){
stomach.bra_bra.alpha = (stomach.bra_bra.alpha - 0.005);
iGas3 = (iGas3 + 0.3);
iPressure = (iPressure + 0.3);
};
if (_local1 == false){
stomach.acid.alpha = 0.5;
stomach.acid_still.alpha = 0;
} else {
stomach.acid.alpha = 0;
stomach.acid_still.alpha = 0.5;
};
}
public function breathing():void{
var joho:*;
var returnDown:Function;
breathCounter++;
if (actionCountDown > 0){
actionCountDown--;
};
if (bounceTimeOut > 0){
bounceTimeOut--;
};
if (uiCooldown > 0){
uiCooldown--;
};
if (iCrushTimeout > 0){
iCrushTimeout--;
};
if (iSisterCooldown > 0){
iSisterCooldown--;
};
if (iGirlTextCountUp < 40){
iGirlTextCountUp++;
};
if (iGirlTextCountUp == 39){
showGirlText("", 0);
};
if (iCoughCountDown > 0){
iCoughCountDown--;
};
if (iCoughCountDown == 1){
playCough();
};
if (iGirlTextCountDown > 0){
iGirlTextCountDown--;
};
if (iDeliveryCountDown > 0){
iDeliveryCountDown--;
};
if (truckDisappearCountdown > 0){
truckDisappearCountdown--;
};
if (boyFrameCountdown > 0){
boyFrameCountdown--;
};
if (boyFrameCountdown == 0){
if ((((bUnconscious == false)) && ((iOxygen > 20)))){
boyFrameCountdown = (Math.floor((Math.random() * 32)) + 8);
joho = Math.floor((Math.random() * 5));
if (joho == 0){
littleWoman.gotoAndStop((playerSkinOffset + 6));
littleMan.gotoAndStop((playerSkinOffset + 6));
} else {
if (joho == 1){
littleWoman.gotoAndStop((playerSkinOffset + 12));
littleMan.gotoAndStop((playerSkinOffset + 12));
} else {
if (joho == 2){
littleWoman.gotoAndStop((playerSkinOffset + 13));
littleMan.gotoAndStop((playerSkinOffset + 13));
} else {
if (joho == 3){
littleWoman.gotoAndStop((playerSkinOffset + 14));
littleMan.gotoAndStop((playerSkinOffset + 14));
} else {
if (joho == 4){
if (poo2.alpha == 1){
littleWoman.gotoAndPlay((playerSkinOffset + 40));
littleMan.gotoAndPlay((playerSkinOffset + 40));
} else {
littleWoman.gotoAndPlay((playerSkinOffset + 7));
littleMan.gotoAndPlay((playerSkinOffset + 7));
};
littleMan.scaleX = 1;
littleWoman.scaleX = 1;
};
};
};
};
};
if ((((Math.floor((Math.random() * 2)) == 0)) && ((littleMan.currentFrame < (playerSkinOffset + 40))))){
littleMan.scaleX = -(littleMan.scaleX);
littleWoman.scaleX = -(littleWoman.scaleX);
};
} else {
if (bUnconscious == false){
littleWoman.gotoAndStop((playerSkinOffset + 15));
littleMan.gotoAndStop((playerSkinOffset + 15));
};
};
};
if (truckDisappearCountdown == 1){
bgScene.windowTruck.alpha = 0;
};
if (box2.alpha > 0){
box2.alpha = (box2.alpha - 0.05);
};
if (breathCounter == 1){
body.belly.x = (body.belly.x - 1);
} else {
if (breathCounter == 2){
body.belly.x = (body.belly.x - 1);
} else {
if (breathCounter == 8){
body.belly.x = (body.belly.x + 1);
} else {
if (breathCounter == 9){
body.belly.x = (body.belly.x + 1);
} else {
if (breathCounter == 16){
breathCounter = 0;
};
};
};
};
};
if (zoomCam.alpha == 1){
broadCastTv(tvXloc, tvYloc, tvZoom);
};
if (bGameOver == false){
iTotTimeInBottle = (iTotTimeInBottle + 0.25);
};
if (emptyTab.alpha != 0){
updateStats();
};
if ((((bGameStarted == true)) && ((bGameOver == false)))){
if (iHungerLevel > 0){
iHungerLevel = (iHungerLevel - 0.25);
};
if (iHungerLevel > 25){
iHungerLevel = (iHungerLevel - 0.25);
};
if (iHungerLevel > 50){
iHungerLevel = (iHungerLevel - 0.25);
};
if (iHungerLevel > 75){
iHungerLevel = (iHungerLevel - 0.25);
};
if (iHungerLevel < 20){
if (iHappiness > 0){
iHappiness = (iHappiness - 0.1);
};
};
if (iHungerLevel < 20){
if (statWindow.iconApple.currentFrame == 1){
statWindow.iconApple.gotoAndPlay(1);
};
} else {
statWindow.iconApple.gotoAndStop(1);
};
if (iHappiness < 20){
if (statWindow.iconSmilie.currentFrame == 1){
statWindow.iconSmilie.gotoAndPlay(1);
};
} else {
statWindow.iconSmilie.gotoAndStop(1);
};
};
if (bBottleClosed == true){
iOxygen = (iOxygen - 0.4);
if (iOxygen < 0){
iOxygen = 0;
};
} else {
iOxygen = (iOxygen + 1);
if (iOxygen > 100){
iOxygen = 100;
};
iStench = (iStench - 0.5);
if ((((poo2.alpha == 1)) || ((pee.alpha > 0)))){
if (iStench < 24){
iStench = 24;
};
};
if ((iStench + iOxygen) > 125){
iStench = (125 - iOxygen);
};
if (iStench < 0){
iStench = 0;
};
};
if ((((eatingPhase == 2)) && ((actionCountDown == 0)))){
expressionCooldown = 0;
fillStomach();
};
if (eatingPhase == 2){
if (likeDislikeArray[foodItemEaten] < 2){
iHappiness = (iHappiness + 0.2);
} else {
if (likeDislikeArray[foodItemEaten] == 2){
iHappiness = (iHappiness + 0.15);
} else {
if (likeDislikeArray[foodItemEaten] == 3){
iHappiness = (iHappiness + 0.1);
} else {
if (likeDislikeArray[foodItemEaten] == 4){
iHappiness = (iHappiness + 0.05);
} else {
if (likeDislikeArray[foodItemEaten] == 5){
iHappiness = (iHappiness - 0.05);
} else {
if (likeDislikeArray[foodItemEaten] == 6){
iHappiness = (iHappiness - 0.1);
} else {
if (likeDislikeArray[foodItemEaten] == 7){
iHappiness = (iHappiness - 0.15);
} else {
if (likeDislikeArray[foodItemEaten] > 7){
iHappiness = (iHappiness - 0.2);
};
};
};
};
};
};
};
};
};
if (iHungerLevel == 0){
iHappiness = (iHappiness - 0.5);
};
if (iHappiness > 100){
iHappiness = 100;
};
if (iHappiness < 0){
iHappiness = 0;
};
if (iHungerLevel > 100){
iHungerLevel = 100;
};
if (iHungerLevel < 0){
iHungerLevel = 0;
};
if ((((((iHungerLevel < 25)) && ((actionCountDown == 0)))) && ((bGameOver == false)))){
eatSomething(false);
};
if (iOxygen < (iKindNess / 2)){
if (iHappiness > 25){
if (Math.floor((Math.random() * 100)) < iHappiness){
bounceGirl(0);
};
};
};
if ((((((iHappiness > 98)) && ((iHungerLevel > 98)))) && ((bGameOver == false)))){
bGameOver = true;
gameOverText = "No. You win! She's full and happy!";
statWindow.txtOxy.text = "Game Over\n(you win!)";
body.alpha = 0;
footLeft.alpha = 0;
upperLegL.alpha = 0;
upperLegR.alpha = 0;
footRight.alpha = 0;
iPressure = 0;
iGas1 = 0;
iGas2 = 0;
iGas3 = 0;
bPreventGasBuildup = true;
statWindow.warningBox.alpha = 1;
};
if ((((((((iHungerLevel == 0)) && ((iHappiness == 0)))) && ((bGameOver == false)))) && ((totFoodItems() == 0)))){
if (iCrushTimeout == 0){
iCrushTimeout = 90;
} else {
if (iCrushTimeout == 1){
returnDown = function (_arg1:TweenEvent):void{
myTween3.removeEventListener(TweenEvent.MOTION_FINISH, returnDown);
myTween1 = new Tween(body, "y", Bounce.easeOut, 32, 290, 2, true);
myTween1.FPS = 40;
};
bGameOver = true;
body.crushPos.bgcol.alpha = 1;
body.crushPos.alpha = 1;
body.crushPos.sock2.alpha = 1;
footLeft.alpha = 0;
upperLegL.alpha = 0;
upperLegR.alpha = 0;
footRight.alpha = 0;
gameOverText = "You were crushed under her butt.";
statWindow.txtOxy.text = "Game Over";
myTween3 = new Tween(body, "y", Regular.easeOut, 189, 32, 1.5, true);
myTween3.FPS = 40;
myTween3.addEventListener(TweenEvent.MOTION_FINISH, returnDown);
gameOverText = "You were crushed under her butt.";
statWindow.txtOxy.text = "Game Over";
};
};
statWindow.txtOxy.text = (("Food needed in " + Math.floor((iCrushTimeout / 4))) + " seconds...");
statWindow.warningBox.alpha = 1;
} else {
if ((((((iHungerLevel > 0)) || ((iHappiness > 0)))) || ((totFoodItems() > 0)))){
iCrushTimeout = 0;
statWindow.txtOxy.text = "";
statWindow.warningBox.alpha = 0;
};
};
if ((((iOxygen < 1)) && ((bGameOver == false)))){
if (bUnconscious == false){
iTotPassedOut++;
};
bUnconscious = true;
littleMan.gotoAndStop((playerSkinOffset + 16));
littleWoman.gotoAndStop((playerSkinOffset + 16));
doEndCalls();
if (Math.floor((Math.random() * 2000)) < iKindNess){
bounceGirl(0);
iUncon = 0;
} else {
iUncon++;
statWindow.txtOxy.text = (("Oxygen needed\nin " + Math.floor(((70 - iUncon) / 4))) + " seconds!");
statWindow.warningBox.alpha = 1;
if (iUncon > 70){
bGameOver = true;
gameOverText = "You suffocated below her butt.";
statWindow.txtOxy.text = "Game Over";
};
};
} else {
if ((((iOxygen == 100)) && ((bUnconscious == true)))){
bUnconscious = false;
statWindow.txtOxy.text = "";
statWindow.warningBox.alpha = 0;
boyTextTween = new Tween(txtCloudBoy, "y", Strong.easeOut, 560, 462, 1, true);
boyTextTween.FPS = 40;
};
};
if (bGameOver == true){
if (txtCloudBoy.y == 462){
boyTextTween = new Tween(txtCloudBoy, "y", Strong.easeOut, 462, 560, 1, true);
boyTextTween.FPS = 40;
};
};
if (iDeliveryCountDown == 1){
deliverItems();
};
if ((((whoLetTheFliesOut.currentFrame > 65)) && ((whoLetTheFliesOut.currentFrame < 88)))){
if (box2.alpha < 0.5){
if (Math.floor((Math.random() * 2)) == 0){
showOwnText("EEW! Those flies are walking all over me!");
} else {
showOwnText("AAAH! Those flies are molesting me!");
};
};
};
if ((((whoLetTheFliesOut.currentFrame > 88)) && ((whoLetTheFliesOut.currentFrame < 108)))){
whoLetTheFliesOut.alpha = 0;
whoLetThe2.alpha = 1;
whoLetThe2.gotoAndPlay(108);
};
if (bGameStarted == true){
if (bPreventGasBuildup == false){
updateExpression();
checkFartLevel();
if (bGameOver == false){
updateStatWindow();
};
updateStomach();
flyControl();
setGasColour();
};
updateGauges();
update_clouds();
};
if (body.y > 220){
if (bottle.currentFrame == 1){
bUnconscious = true;
littleMan.gotoAndStop((playerSkinOffset + 16));
littleWoman.gotoAndStop((playerSkinOffset + 16));
bottleShade.alpha = 0;
bottle.gotoAndPlay(2);
poo2.alpha = 0;
pee.alpha = 0;
};
};
}
public function updateStatWindow():void{
statWindow.meterHappy.x = (-48 + iHappiness);
statWindow.meterHungry.x = (-48 + iHungerLevel);
statWindow.oxygenBar.scaleX = (iOxygen / 100);
statWindow.stenchBar.scaleX = (iStench / 100);
}
public function hackSocks(_arg1, _arg2, _arg3){
if (_arg1 > 100){
_arg1 = 100;
};
if (_arg2 > 100){
_arg2 = 100;
};
if (_arg3 > 100){
_arg3 = 100;
};
if (_arg1 < 0){
_arg1 = 0;
};
if (_arg2 < 0){
_arg2 = 0;
};
if (_arg3 < 0){
_arg3 = 0;
};
iMem1 = _arg1;
iMem2 = _arg2;
iMem3 = _arg3;
if (footLeft.socks.currentFrame < 10){
footLeft.socks.gotoAndStop((footLeft.socks.currentFrame + 10));
footRight.socks.gotoAndStop((footRight.socks.currentFrame + 10));
body.crushPos.sock2.gotoAndStop((body.crushPos.sock2.currentFrame + 10));
};
footLeft.socks.transform.colorTransform = new ColorTransform(1, 1, 1, 1, _arg1, _arg2, _arg3, 1);
footRight.socks.transform.colorTransform = new ColorTransform(1, 1, 1, 1, _arg1, _arg2, _arg3, 1);
body.crushPos.sock2.transform.colorTransform = new ColorTransform(1, 1, 1, 0, _arg1, _arg2, _arg3, 1);
groundShoes.transform.colorTransform = new ColorTransform(1, 1, 1, 0, _arg1, _arg2, _arg3, 1);
groundSocks.transform.colorTransform = new ColorTransform(1, 1, 1, 0, _arg1, _arg2, _arg3, 1);
groundNets.transform.colorTransform = new ColorTransform(1, 1, 1, 0, _arg1, _arg2, _arg3, 1);
stomach.shoes_shoes.transform.colorTransform = new ColorTransform(1, 1, 1, 0, _arg1, _arg2, _arg3, 1);
stomach.socks_socks.transform.colorTransform = new ColorTransform(1, 1, 1, 0, _arg1, _arg2, _arg3, 1);
}
public function hackClothes(_arg1, _arg2, _arg3){
if (_arg1 > 100){
_arg1 = 100;
};
if (_arg2 > 100){
_arg2 = 100;
};
if (_arg3 > 100){
_arg3 = 100;
};
if (_arg1 < 0){
_arg1 = 0;
};
if (_arg2 < 0){
_arg2 = 0;
};
if (_arg3 < 0){
_arg3 = 0;
};
iMem4 = _arg1;
iMem5 = _arg2;
iMem6 = _arg3;
if (body.butt.swim.currentFrame < 10){
body.butt.swim.gotoAndStop((body.butt.swim.currentFrame + 10));
body.middel.swim.gotoAndStop((body.middel.swim.currentFrame + 10));
body.belly.swim.gotoAndStop((body.belly.swim.currentFrame + 10));
body.arm.swim.gotoAndStop((body.arm.swim.currentFrame + 10));
body.breasts.swim.gotoAndStop((body.breasts.swim.currentFrame + 10));
body.miniBreast.swim.gotoAndStop((body.miniBreast.swim.currentFrame + 10));
body.midBreast.swim.gotoAndStop((body.midBreast.swim.currentFrame + 10));
body.chest.swim.gotoAndStop((body.chest.swim.currentFrame + 10));
cellPhone.picture.swimsuit.gotoAndStop(12);
cellPhone.picture.panties.gotoAndStop(12);
cellPhone.picture.skirt1.gotoAndStop(12);
cellPhone.picture.skirt2.gotoAndStop(12);
cellPhone.picture2.swimsuit.gotoAndStop(12);
cellPhone.picture2.panties.gotoAndStop(12);
};
body.butt.swim.transform.colorTransform = new ColorTransform(1, 1, 1, 1, _arg1, _arg2, _arg3, 1);
body.middel.swim.transform.colorTransform = new ColorTransform(1, 1, 1, 1, _arg1, _arg2, _arg3, 1);
body.belly.swim.transform.colorTransform = new ColorTransform(1, 1, 1, 1, _arg1, _arg2, _arg3, 1);
body.arm.swim.transform.colorTransform = new ColorTransform(1, 1, 1, 1, _arg1, _arg2, _arg3, 1);
body.breasts.swim.transform.colorTransform = new ColorTransform(1, 1, 1, 1, _arg1, _arg2, _arg3, 1);
body.miniBreast.swim.transform.colorTransform = new ColorTransform(1, 1, 1, 1, _arg1, _arg2, _arg3, 1);
body.midBreast.swim.transform.colorTransform = new ColorTransform(1, 1, 1, 1, _arg1, _arg2, _arg3, 1);
body.chest.swim.transform.colorTransform = new ColorTransform(1, 1, 1, 1, _arg1, _arg2, _arg3, 1);
cellPhone.picture.swimsuit.transform.colorTransform = new ColorTransform(1, 1, 1, 1, _arg1, _arg2, _arg3, 1);
cellPhone.picture.panties.transform.colorTransform = new ColorTransform(1, 1, 1, 1, _arg1, _arg2, _arg3, 1);
cellPhone.picture.skirt1.transform.colorTransform = new ColorTransform(1, 1, 1, 1, _arg1, _arg2, _arg3, 1);
cellPhone.picture.skirt2.transform.colorTransform = new ColorTransform(1, 1, 1, 1, _arg1, _arg2, _arg3, 1);
cellPhone.picture2.swimsuit.transform.colorTransform = new ColorTransform(1, 1, 1, 1, _arg1, _arg2, _arg3, 1);
cellPhone.picture2.panties.transform.colorTransform = new ColorTransform(1, 1, 1, 1, _arg1, _arg2, _arg3, 1);
updatePhonePicture();
groundSwimsuit.transform.colorTransform = new ColorTransform(1, 1, 1, 0, _arg1, _arg2, _arg3, 1);
groundSkirt.transform.colorTransform = new ColorTransform(1, 1, 1, 0, _arg1, _arg2, _arg3, 1);
groundPanties.transform.colorTransform = new ColorTransform(1, 1, 1, 0, _arg1, _arg2, _arg3, 1);
groundShirtRed.transform.colorTransform = new ColorTransform(1, 1, 1, 0, _arg1, _arg2, _arg3, 1);
groundShirtBlack.transform.colorTransform = new ColorTransform(1, 1, 1, 0, _arg1, _arg2, _arg3, 1);
stomach.swimsuit_swimsuit.transform.colorTransform = new ColorTransform(1, 1, 1, 0, _arg1, _arg2, _arg3, 1);
stomach.skirt_skirt.transform.colorTransform = new ColorTransform(1, 1, 1, 0, _arg1, _arg2, _arg3, 1);
stomach.panties_panties.transform.colorTransform = new ColorTransform(1, 1, 1, 0, _arg1, _arg2, _arg3, 1);
}
public function doStartGame():void{
var _local1:*;
strGirlName = customization.girlNameField.text;
_local1 = strGirlName.toLowerCase().search("xyzzy");
if (_local1 > -1){
bPeePooEnabled = true;
strGirlName = strGirlName.substring(0, _local1);
strGirlName = trim(strGirlName);
};
if (strGirlName.length > 24){
strGirlName = strGirlName.substring(0, 24);
};
if (strGirlName.length < 2){
strGirlName = ukNameArray[Math.floor((Math.random() * ukNameArray.length))];
};
stage.removeEventListener(MouseEvent.CLICK, mouseClicked);
customization.alpha = 0;
customization.y = -300;
if (iBreastSize < 1){
strBreastSize = "tiny";
} else {
if (iBreastSize < 1.3){
strBreastSize = "cute";
} else {
if (iBreastSize < 1.5){
strBreastSize = "large";
} else {
strBreastSize = "huge";
};
};
};
if (iButtSize == 1){
strButtSize = "nice";
} else {
if (iButtSize != 1.4){
strButtSize = "big";
} else {
strButtSize = "huge";
};
};
if (iBellySize < 1){
strBellySize = "thin";
} else {
if (iBellySize < 1.3){
strBellySize = "big";
} else {
strBellySize = "fat";
};
};
txtCloudGirl.txtGirl.text = (("You did WHAT to me!? As sure as my name is " + strGirlName) + " I will make you pay for that! Back into the bottle you go, tiny slave! Fun is over!");
iGirlTextCountUp = 40;
txtCloudGirl.alpha = 1;
if ((((strGirlName.charAt((strGirlName.length - 1)) == "s")) || ((strGirlName.charAt((strGirlName.length - 1)) == "S")))){
scherm.slaveText.text = (("- also known as " + strGirlName) + "' tiny slave.");
} else {
scherm.slaveText.text = (("- also known as " + strGirlName) + "'s tiny slave.");
};
if (customization.btnOutfit.currentFrame == 2){
iSwimsuit = 1;
} else {
if (customization.btnOutfit.currentFrame == 3){
iPanties = 1;
iBra = 1;
} else {
if (customization.btnOutfit.currentFrame == 4){
iPanties = 1;
iSkirt = 1;
iShirtRed = 1;
} else {
iPanties = 1;
iSkirt = 1;
iShirtBlack = 1;
};
};
};
if (customization.btnLegs.currentFrame == 2){
iNets = 1;
} else {
if (customization.btnLegs.currentFrame == 3){
iSocks = 1;
} else {
iSocks = 1;
iShoes = 1;
};
};
updatePhonePicture();
iHappiness = 30;
body.expression.mouth.gotoAndStop(2);
scherm.alpha = 0;
scherm.x = 300;
myTween1 = new Tween(scherm, "alpha", Regular.easeOut, 0, 1, 2, true);
myTween1.FPS = 40;
txtCloudGirl.y = 100;
txtCloudGirl.alpha = 1;
stage.addEventListener(MouseEvent.CLICK, mClicked);
}
public function updatePhonePicture():void{
if (iSwimsuit == 1){
cellPhone.picture.swimsuit.alpha = 1;
} else {
cellPhone.picture.swimsuit.alpha = 0;
};
if (iPanties == 1){
cellPhone.picture.panties.alpha = 1;
} else {
cellPhone.picture.panties.alpha = 0;
};
if (iSwimsuit == 1){
cellPhone.picture2.swimsuit.alpha = 1;
} else {
cellPhone.picture2.swimsuit.alpha = 0;
};
if (iPanties == 1){
cellPhone.picture2.panties.alpha = 1;
} else {
cellPhone.picture2.panties.alpha = 0;
};
if (iSkirt == 1){
cellPhone.picture.skirt1.alpha = 1;
cellPhone.picture.skirt2.alpha = 1;
} else {
cellPhone.picture.skirt1.alpha = 0;
cellPhone.picture.skirt2.alpha = 0;
};
}
public function broadCastTv(_arg1:Number, _arg2:Number, _arg3):void{
removeChild(screenshot);
bd.draw(stage);
screenshot = new Bitmap(bd);
screenshot.x = 338;
screenshot.y = 183;
screenshot.scaleY = _arg3;
screenshot.scaleX = _arg3;
screenshot.scrollRect = new Rectangle((_arg1 - (110 / _arg3)), (_arg2 - (92 / _arg3)), Math.floor((220 / _arg3)), Math.floor((184 / _arg3)));
addChild(screenshot);
}
function frame1(){
stop();
this.loaderInfo.addEventListener(ProgressEvent.PROGRESS, onProgress);
this.loaderInfo.addEventListener(Event.COMPLETE, onComplete);
}
function frame2(){
strSockHackTxt = "";
strClothHackTxt = "";
strVoreHackTxt = "";
socksOffset = 0;
clothOffset = 0;
box2.alpha = 0;
iTotalCost = 0;
iDeliveryCountDown = 0;
shopItemArray = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0];
shopItemPlacement = [0, 0, 0, 0, 0, 0, 0, 0, 0];
truckDisappearCountdown = 0;
sndShort1 = new short1();
sndShort2 = new short2();
sndShort3 = new short3();
sndShort4 = new short4();
sndShort5 = new short5();
sndLong1 = new long1();
sndLong2 = new long2();
sndLong3 = new long3();
sndLong4 = new long4();
sndRnd1 = new rnd1();
sndRnd2 = new rnd2();
sndRnd3 = new rnd3();
sndRnd4 = new rnd4();
sndRnd5 = new rnd5();
sndRnd6 = new rnd6();
sndRnd7 = new rnd7();
sndRnd8 = new rnd8();
sndRnd9 = new rnd9();
sndRnd10 = new rnd10();
sndRnd11 = new rnd11();
sndRnd12 = new rnd12();
sndFem1 = new fem1();
sndFem2 = new fem2();
sndMal1 = new mal1();
sndMal2 = new mal2();
iGirlTextCountDown = 0;
iCoughCountDown = 0;
customization.btnLoveIt1.gotoAndStop(2);
acidState(false);
scherm.littleWoman2.alpha = 0;
bounceTimeOut = 0;
eyeCooldown = 0;
eatingPhase = 0;
foodItemEaten = -1;
stop();
iSisterMood = 4;
cloudCounter = 1;
cloudCounter = 11;
bCoughSoundOn = false;
iCrushTimeout = 0;
bPreventGasBuildup = false;
bLoveIt = false;
iGirlTextCountUp = 0;
playerSkinOffset = 0;
heightAdjust = 0;
bottle.alpha = 0;
bottleShade.alpha = 0;
littleMan.alpha = 0;
littleWoman.alpha = 0;
bgScene.alpha = 0;
littleMan.gotoAndStop(6);
littleWoman.gotoAndStop(6);
txtCloudBoy.alpha = 0;
scherm.alpha = 0;
poo2.alpha = 0;
peeIn.alpha = 0;
pee.alpha = 0;
statWindow.alpha = 0;
statWindow.iconApple.gotoAndStop(1);
statWindow.iconSmilie.gotoAndStop(1);
body.crushPos.alpha = 0;
statWindow.txtOxy.text = "";
statWindow.warningBox.alpha = 0;
txtCloudGirl.alpha = 0;
iSisterCooldown = 10;
expressionOffset = 0;
iUncon = 0;
gameOverText = "No. (At least not yet!)";
bGameStarted = false;
bGameOver = false;
bUnconscious = false;
bSoundOn = false;
bVoreMode = false;
bSoftMode = true;
iVoreOffset = 0;
iHappiness = 80;
iHungerLevel = 30;
iGas1 = 0;
iGas2 = 0;
iGas3 = 0;
iPressure = 0;
iR1 = 0;
iG1 = 0;
iB1 = 0;
iDiscolorStrength = 0;
iR2 = 0;
iG2 = 0;
iB2 = 0;
iPanties = 0;
iBra = 0;
iSwimsuit = 0;
iSkirt = 0;
iNets = 0;
iSocks = 0;
iShoes = 0;
iShirtRed = 0;
iShirtBlack = 0;
stomach.garlic_onion1.alpha = 0;
stomach.garlic_onion2.alpha = 0;
stomach.milk_yoghurt.alpha = 0;
stomach.cheese_cheese1.alpha = 0;
stomach.cheese_cheese2.alpha = 0;
stomach.beans_nuts1.alpha = 0;
stomach.beans_nuts2.alpha = 0;
stomach.fruit_chips1.alpha = 0;
stomach.fruit_chips2.alpha = 0;
stomach.brocoli_brocoli.alpha = 0;
stomach.asparagus_asparagus.alpha = 0;
stomach.ice_ice.alpha = 0;
stomach.meat_beef1.alpha = 0;
stomach.meat_beef2.alpha = 0;
stomach.shirt1_shirt1.alpha = 0;
stomach.shirt2_shirt2.alpha = 0;
stomach.stockings_stockings.alpha = 0;
stomach.skirt_skirt.alpha = 0;
stomach.socks_socks.alpha = 0;
stomach.swimsuit_swimsuit.alpha = 0;
stomach.panties_panties.alpha = 0;
stomach.shoes_shoes.alpha = 0;
stomach.bra_bra.alpha = 0;
stomach.me_me1.alpha = 0;
stomach.me_me2.alpha = 0;
stomach.me_me1.gotoAndStop(1);
stomach.me_me2.gotoAndStop(1);
body.expression.mouth.gotoAndStop(4);
fartSize = 0;
iTotCalledSister = 0;
iTotMoneyGot = 0;
iTotFoodBought = 0;
iTotFarts = 0;
iHighestStench = 0;
iTotBottleClosed = 0;
iTotSqueezed = 0;
iTotHungry = 0;
iTotPassedOut = 0;
iTotTimeInBottle = 0;
iClothingEaten = 0;
i = 0;
j = 0;
k = 0;
iOxygen = 100;
iStench = 0;
bNoFlies = false;
iCredits = 6;
likeDislikeArray = [99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 0, 0];
i = 0;
while (i < 14) {
j = 99;
while (j == 99) {
k = Math.floor((Math.random() * 14));
if (likeDislikeArray[k] == 99){
if (i < 10){
likeDislikeArray[k] = i;
} else {
if ((((i == 10)) || ((i == 11)))){
likeDislikeArray[k] = (i - 10);
} else {
if ((((i == 12)) || ((i == 13)))){
likeDislikeArray[k] = (i - 4);
};
};
};
j = 1;
};
};
i++;
};
itemArray = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0];
updateFloorItems();
tvXloc = 212;
tvYloc = 411;
tvZoom = 2;
hideAllTabs();
btnStomach.alpha = 0;
btnZoomCam.alpha = 0;
btnCellPhone.alpha = 0;
btnStomach.y = -300;
btnZoomCam.y = -300;
btnCellPhone.y = -300;
btnX.alpha = 0;
btnX.y = -300;
playerName = "";
actionCountDown = 0;
boyFrameCountdown = 20;
playerMale = 1;
bBottleClosed = false;
bPoo = false;
bPee = false;
bPeePooEnabled = false;
iButtSize = 1;
iBreastSize = 1;
iBellySize = 0.5;
redHair = 200;
greenHair = 100;
blueHair = 10;
iSkinTypeRndPreset = 0;
iKindNess = 50;
expressionCooldown = 0;
uiCooldown = 0;
redSkin = 0xFF;
greenSkin = 202;
blueSkin = 202;
myTimer = setInterval(breathing, 250);
breathCounter = 0;
strGirlName = "Daphne";
strBreastSize = "";
strButtSize = "";
strBellySize = "";
setBellySize(0.5);
setBreastSize(1);
setButtSize(1);
body.head2.alpha = 0;
body.head3.alpha = 0;
body.hair2.alpha = 0;
body.hair3.alpha = 0;
body.hair4.alpha = 0;
body.hair5.alpha = 0;
body.hair6.alpha = 0;
body.hair7.alpha = 0;
body.hair8.alpha = 0;
body.hair9.alpha = 0;
ukNameArray = ["Amelia", "Lily", "Emily", "Sophia", "Isabelle", "Sophie", "Olivia", "Jessica", "Chloe", "Mia", "Charlotte", "Grace", "Evie", "Lucy", "Ella", "Holly", "Emma", "Molly", "Annabelle", "Freya", "Ruby", "Scarlett", "Alice", "Daphne", "Layla", "Hannah", "Eva", "Daisy", "Amy", "Zoe", "Megan", "Phoebe", "Maya", "Anna", "Eliza", "Jasmine", "Eleanor", "Elizabeth", "Lola", "Ellie", "Rosie", "Amber", "Bethany", "Rose", "Katie", "Heidi", "Rebecca", "Melanie", "Becky"];
ebonyNameArray = ["Adalia", "Afyia", "Akira", "Alisa", "Althea", "Amber", "Bertrise", "Briona", "Britny", "Candice", "Cassandra", "Chellise", "Cleona", "Dana", "Deisha", "Denisha", "Desiree", "Destiny", "Ebony", "Fawn", "Kiyana", "Kylie", "Lakasha", "Kalisa", "Karlene", "Kasmira", "Keandra", "Kenya", "Kimberly", "Jalicia", "Jatara", "Laticia", "Lavern", "Marisha", "Maurita", "Natalie", "Paulina", "Sapphire", "Serena", "Shauna", "Stephanie", "Tany", "Teana", "Tia", "Trisha", "Velena", "Valeria", "Zola"];
japNameArray = ["Aiko", "Akane", "Aneko", "Ayako", "Chiyo", "Benten", "Eiko", "Fumiki", "Hanae", "Harumi", "Hatsue", "Hiroko", "Hitomi", "Hoshiyo", "Ikuko", "Izumi", "Kaori", "Katsumi", "Keiko", "Kimiko", "Kyoko", "Masae", "Masumi", "Megumi", "Misako", "Miyako", "Mizuki", "Nanako", "Naomi", "Natsumi", "Otsune", "Sakura", "Satomi", "Seiko", "Setsuko", "Shinobu", "Tomoko", "Yoshino", "Yuki", "Yumiko"];
setHairColor(redHair, greenHair, blueHair);
setSkinColor(redSkin, greenSkin, blueSkin);
stage.addEventListener(MouseEvent.CLICK, mouseClicked);
iMem1 = -1;
iMem2 = -1;
iMem3 = -1;
iMem4 = -1;
iMem5 = -1;
iMem6 = -1;
customization.y = 215;
randomizeShapes();
bd = new BitmapData(stage.stageWidth, stage.stageHeight);
bd.draw(stage);
screenshot = new Bitmap(bd);
screenshot.x = 0;
screenshot.y = 0;
screenshot.scrollRect = new Rectangle(1, 1, 1, 1);
addChild(screenshot);
}
}
}//package liab2_fla
Section 49
//meat_136 (liab2_fla.meat_136)
package liab2_fla {
import flash.display.*;
public dynamic class meat_136 extends MovieClip {
public function meat_136(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 50
//meat_beef_192 (liab2_fla.meat_beef_192)
package liab2_fla {
import flash.display.*;
public dynamic class meat_beef_192 extends MovieClip {
public function meat_beef_192(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 51
//middelSwim_44 (liab2_fla.middelSwim_44)
package liab2_fla {
import flash.display.*;
public dynamic class middelSwim_44 extends MovieClip {
public function middelSwim_44(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 52
//milk_112 (liab2_fla.milk_112)
package liab2_fla {
import flash.display.*;
public dynamic class milk_112 extends MovieClip {
public function milk_112(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 53
//milk_yoghurt_cream_187 (liab2_fla.milk_yoghurt_cream_187)
package liab2_fla {
import flash.display.*;
public dynamic class milk_yoghurt_cream_187 extends MovieClip {
public function milk_yoghurt_cream_187(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 54
//miniCloth_52 (liab2_fla.miniCloth_52)
package liab2_fla {
import flash.display.*;
public dynamic class miniCloth_52 extends MovieClip {
public function miniCloth_52(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 55
//mouth_80 (liab2_fla.mouth_80)
package liab2_fla {
import flash.display.*;
public dynamic class mouth_80 extends MovieClip {
public function mouth_80(){
addFrameScript(5, frame6, 15, frame16, 34, frame35, 58, frame59, 82, frame83, 118, frame119, 119, frame120, 143, frame144);
}
function frame6(){
}
function frame16(){
}
function frame35(){
}
function frame59(){
}
function frame83(){
}
function frame119(){
gotoAndPlay(16);
}
function frame120(){
}
function frame144(){
gotoAndPlay(120);
}
}
}//package liab2_fla
Section 56
//mushrooms_122 (liab2_fla.mushrooms_122)
package liab2_fla {
import flash.display.*;
public dynamic class mushrooms_122 extends MovieClip {
public function mushrooms_122(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 57
//nuts_120 (liab2_fla.nuts_120)
package liab2_fla {
import flash.display.*;
public dynamic class nuts_120 extends MovieClip {
public function nuts_120(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 58
//onion_118 (liab2_fla.onion_118)
package liab2_fla {
import flash.display.*;
public dynamic class onion_118 extends MovieClip {
public function onion_118(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 59
//panties_closeup_222 (liab2_fla.panties_closeup_222)
package liab2_fla {
import flash.display.*;
public dynamic class panties_closeup_222 extends MovieClip {
public function panties_closeup_222(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 60
//panties_closeupcopy_232 (liab2_fla.panties_closeupcopy_232)
package liab2_fla {
import flash.display.*;
public dynamic class panties_closeupcopy_232 extends MovieClip {
public function panties_closeupcopy_232(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 61
//pear_128 (liab2_fla.pear_128)
package liab2_fla {
import flash.display.*;
public dynamic class pear_128 extends MovieClip {
public function pear_128(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 62
//rfootshoes_22 (liab2_fla.rfootshoes_22)
package liab2_fla {
import flash.display.*;
public dynamic class rfootshoes_22 extends MovieClip {
public function rfootshoes_22(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 63
//shop_256 (liab2_fla.shop_256)
package liab2_fla {
import flash.display.*;
import flash.text.*;
public dynamic class shop_256 extends MovieClip {
public var btnShop7:MovieClip;
public var btnPay:MovieClip;
public var totalCost:TextField;
public var btnShop4:MovieClip;
public var btnShop5:MovieClip;
public var btnShop2:MovieClip;
public var btnSh1:MovieClip;
public var txtCredits:TextField;
public var btnShop3:MovieClip;
public var btnSh2:MovieClip;
public var btnSh3:MovieClip;
public var btnShop1:MovieClip;
public var btnSh4:MovieClip;
public var btnSh5:MovieClip;
public var btnSh6:MovieClip;
public var btnSh7:MovieClip;
public var btnSh8:MovieClip;
public var btnSh9:MovieClip;
public var btnShop8:MovieClip;
public var btnShop9:MovieClip;
public var txtGrocer:TextField;
public var btnShop6:MovieClip;
public function shop_256(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 64
//sisPic_264 (liab2_fla.sisPic_264)
package liab2_fla {
import flash.display.*;
public dynamic class sisPic_264 extends MovieClip {
public function sisPic_264(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 65
//skirt2_220 (liab2_fla.skirt2_220)
package liab2_fla {
import flash.display.*;
public dynamic class skirt2_220 extends MovieClip {
public function skirt2_220(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 66
//skirtcloseup_223 (liab2_fla.skirtcloseup_223)
package liab2_fla {
import flash.display.*;
public dynamic class skirtcloseup_223 extends MovieClip {
public function skirtcloseup_223(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 67
//sock_147 (liab2_fla.sock_147)
package liab2_fla {
import flash.display.*;
public dynamic class sock_147 extends MovieClip {
public function sock_147(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 68
//sock2_35 (liab2_fla.sock2_35)
package liab2_fla {
import flash.display.*;
public dynamic class sock2_35 extends MovieClip {
public function sock2_35(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 69
//swimButt_65 (liab2_fla.swimButt_65)
package liab2_fla {
import flash.display.*;
public dynamic class swimButt_65 extends MovieClip {
public function swimButt_65(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 70
//swimmidbreast_56 (liab2_fla.swimmidbreast_56)
package liab2_fla {
import flash.display.*;
public dynamic class swimmidbreast_56 extends MovieClip {
public function swimmidbreast_56(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 71
//swimsuit_closeup_221 (liab2_fla.swimsuit_closeup_221)
package liab2_fla {
import flash.display.*;
public dynamic class swimsuit_closeup_221 extends MovieClip {
public function swimsuit_closeup_221(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 72
//swimsuit_closeupcopy_231 (liab2_fla.swimsuit_closeupcopy_231)
package liab2_fla {
import flash.display.*;
public dynamic class swimsuit_closeupcopy_231 extends MovieClip {
public function swimsuit_closeupcopy_231(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 73
//Symbol20_40 (liab2_fla.Symbol20_40)
package liab2_fla {
import flash.display.*;
public dynamic class Symbol20_40 extends MovieClip {
public function Symbol20_40(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 74
//txtCloudBoy_243 (liab2_fla.txtCloudBoy_243)
package liab2_fla {
import flash.display.*;
import flash.text.*;
public dynamic class txtCloudBoy_243 extends MovieClip {
public var btnSay:MovieClip;
public var prevLine2:TextField;
public var prevLine1:TextField;
public var txtBoyInput:TextField;
public function txtCloudBoy_243(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 75
//whoLetTheFliesOut_14 (liab2_fla.whoLetTheFliesOut_14)
package liab2_fla {
import flash.display.*;
public dynamic class whoLetTheFliesOut_14 extends MovieClip {
public function whoLetTheFliesOut_14(){
addFrameScript(0, frame1, 88, frame89, 106, frame107, 109, frame110);
}
function frame1(){
stop();
}
function frame89(){
}
function frame107(){
gotoAndPlay(89);
}
function frame110(){
}
}
}//package liab2_fla
Section 76
//wings_31 (liab2_fla.wings_31)
package liab2_fla {
import flash.display.*;
public dynamic class wings_31 extends MovieClip {
public function wings_31(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package liab2_fla
Section 77
//cloudSprite (cloudSprite)
package {
import flash.display.*;
public dynamic class cloudSprite extends MovieClip {
public function cloudSprite(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package
Section 78
//fem1 (fem1)
package {
import flash.media.*;
public dynamic class fem1 extends Sound {
}
}//package
Section 79
//fem2 (fem2)
package {
import flash.media.*;
public dynamic class fem2 extends Sound {
}
}//package
Section 80
//introStartButton (introStartButton)
package {
import flash.display.*;
public dynamic class introStartButton extends MovieClip {
}
}//package
Section 81
//long1 (long1)
package {
import flash.media.*;
public dynamic class long1 extends Sound {
}
}//package
Section 82
//long2 (long2)
package {
import flash.media.*;
public dynamic class long2 extends Sound {
}
}//package
Section 83
//long3 (long3)
package {
import flash.media.*;
public dynamic class long3 extends Sound {
}
}//package
Section 84
//long4 (long4)
package {
import flash.media.*;
public dynamic class long4 extends Sound {
}
}//package
Section 85
//mal1 (mal1)
package {
import flash.media.*;
public dynamic class mal1 extends Sound {
}
}//package
Section 86
//mal2 (mal2)
package {
import flash.media.*;
public dynamic class mal2 extends Sound {
}
}//package
Section 87
//movie_mc (movie_mc)
package {
import flash.display.*;
public dynamic class movie_mc extends MovieClip {
}
}//package
Section 88
//rnd1 (rnd1)
package {
import flash.media.*;
public dynamic class rnd1 extends Sound {
}
}//package
Section 89
//rnd10 (rnd10)
package {
import flash.media.*;
public dynamic class rnd10 extends Sound {
}
}//package
Section 90
//rnd11 (rnd11)
package {
import flash.media.*;
public dynamic class rnd11 extends Sound {
}
}//package
Section 91
//rnd12 (rnd12)
package {
import flash.media.*;
public dynamic class rnd12 extends Sound {
}
}//package
Section 92
//rnd2 (rnd2)
package {
import flash.media.*;
public dynamic class rnd2 extends Sound {
}
}//package
Section 93
//rnd3 (rnd3)
package {
import flash.media.*;
public dynamic class rnd3 extends Sound {
}
}//package
Section 94
//rnd4 (rnd4)
package {
import flash.media.*;
public dynamic class rnd4 extends Sound {
}
}//package
Section 95
//rnd5 (rnd5)
package {
import flash.media.*;
public dynamic class rnd5 extends Sound {
}
}//package
Section 96
//rnd6 (rnd6)
package {
import flash.media.*;
public dynamic class rnd6 extends Sound {
}
}//package
Section 97
//rnd7 (rnd7)
package {
import flash.media.*;
public dynamic class rnd7 extends Sound {
}
}//package
Section 98
//rnd8 (rnd8)
package {
import flash.media.*;
public dynamic class rnd8 extends Sound {
}
}//package
Section 99
//rnd9 (rnd9)
package {
import flash.media.*;
public dynamic class rnd9 extends Sound {
}
}//package
Section 100
//short1 (short1)
package {
import flash.media.*;
public dynamic class short1 extends Sound {
}
}//package
Section 101
//short2 (short2)
package {
import flash.media.*;
public dynamic class short2 extends Sound {
}
}//package
Section 102
//short3 (short3)
package {
import flash.media.*;
public dynamic class short3 extends Sound {
}
}//package
Section 103
//short4 (short4)
package {
import flash.media.*;
public dynamic class short4 extends Sound {
}
}//package
Section 104
//short5 (short5)
package {
import flash.media.*;
public dynamic class short5 extends Sound {
}
}//package