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

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

party.swf

This is the info page for
Flash #85711

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


ActionScript [AS1/AS2]
Combined Code
movieClip 127 Initialization { #initclip function Mixer() { this.init(); } function Timer() { this.init(); } function Sequencer() { this.init(); } Mixer.prototype = new Object(); Mixer.prototype.init = function () { var v3 = 0; this.ChannelsNum = 8; this.MasterVolume = 100; this.Channels = new Array(); v3 = 0; while (v3 < this.ChannelsNum) { var v4 = {'Num': v3, 'Mixer': this, 'Clip': _root.createEmptyMovieClip('ch' + v3, v3 - 59990), 'SoundObj': new Sound('_root.ch' + v3), 'Volume': 100, 'GlobalVolume': 100, 'Queue': new Array(), 'OnSoundComplete': undefined}; this.Channels.push(v4); v4.SoundObj.parent = this.Channels[v3]; v4.SoundObj.isPlaying = false; ++v3; } }; Mixer.prototype.PlaySound = function (ASoundName, AChannel, AStartPos, ALoopsNum) { var v2 = this.Channels[AChannel].SoundObj; v2.stop(); v2.attachSound(ASoundName); v2.start(AStartPos, ALoopsNum); v2.onSoundComplete = this.OnSoundComplete; v2.isPlaying = true; }; Mixer.prototype.StopSound = function (AChannel) { if (AChannel == undefined) { var v2 = 0; while (v2 < this.ChannelsNum) { var v3 = this.Channels[v2]; v3.SoundObj.stop(); v3.Queue = []; v3.SoundObj.isPlaying = false; ++v2; } } else { var v3 = this.Channels[AChannel]; v3.SoundObj.stop(); v3.Queue = []; v3.SoundObj.isPlaying = false; } }; Mixer.prototype.OnSoundComplete = function () { var v3 = this.parent; var v4 = v3.Queue; v3.onSoundComplete(); this.isPlaying = false; if (v4.length > 0) { var v2 = v4.shift(); this.attachSound(v2.Name); this.start(v2.Pos, v2.Loops); this.isPlaying = true; } }; Mixer.prototype.QueueSound = function (ASoundName, AChannel, AStartPos, ALoopsNum) { var v3 = this.Channels[AChannel]; var v5 = v3.Queue; var v2 = v3.SoundObj; var v4 = {'Name': ASoundName, 'Pos': AStartPos, 'Loops': ALoopsNum}; if (v2.isPlaying) { v5.push(v4); } else { v2.onSoundComplete = this.OnSoundComplete; v2.attachSound(ASoundName); v2.start(AStartPos, ALoopsNum); v2.isPlaying = true; } }; Mixer.prototype.SetChannelVolume = function (AChannel, AVolume) { if (AVolume > 100) { AVolume = 100; } if (AVolume < 0) { AVolume = 0; } this.Channels[AChannel].Volume = AVolume; var v4 = this.MasterVolume * this.Channels[AChannel].GlobalVolume * AVolume / 10000; this.Channels[AChannel].SoundObj.setVolume(v4); }; Mixer.prototype.SetChannelGlobalVolume = function (AChannel, AVolume) { if (AVolume > 100) { AVolume = 100; } if (AVolume < 0) { AVolume = 0; } this.Channels[AChannel].GlobalVolume = AVolume; var v4 = this.MasterVolume * this.Channels[AChannel].Volume * AVolume / 10000; this.Channels[AChannel].SoundObj.setVolume(v4); }; Mixer.prototype.UpdateMasterVolume = function () { var v2; var v4 = this.MasterVolume; v2 = 0; while (v2 < this.ChannelsNum) { var v3 = this.Channels[v2].GlobalVolume * this.Channels[v2].Volume * v4 / 10000; this.Channels[v2].SoundObj.setVolume(v3); ++v2; } }; Mixer.prototype.SetMasterVolume = function (AVolume) { this.MasterVolume = AVolume; this.UpdateMasterVolume(); }; Timer.prototype = new Object(); Timer.prototype.init = function () { this.Interval = 500; this.Auto = false; }; Timer.prototype.SetTimer = function (Time, AutoCount) { this.Interval = Time - 5; this.now = getTimer(); this.ID = setInterval(this, 'TimerEvent', 5, this); this.Auto = AutoCount; }; Timer.prototype.TimerEvent = function (ATimer) { var v2 = getTimer(); if (v2 - ATimer.now >= ATimer.Interval) { ATimer.now = v2; if (!ATimer.Auto) { ATimer.StopTimer(); } ATimer.OnTimeout(); } }; Timer.prototype.StopTimer = function () { this.Auto = false; clearInterval(this.ID); }; Sequencer.prototype = new Object(); Sequencer.prototype.init = function () { this.AMixer = new Mixer(); this.AMixer.parent = this; this.ATimer = new Timer(); this.ATimer.parent = this; this.LoopSets = new Array(); this.Sequence = new Array(); this.FX = new Array(4); this.CurrentFX = new Array(0, 0, 0, 0); this.Position = 0; this.AMixer.Channels[0].onSoundComplete = this.LoopComplete; this.ATimer.OnTimeout = this.OnTimeout; }; Sequencer.prototype.LoopComplete = function () { var v3 = this.Mixer.parent; ++v3.Position; var v2 = 0; while (v2 < v3.CurrentFX.length) { v3.CurrentFX[v2] = v3.Sequence[v3.Position].fx[v2]; ++v2; } v3.OnLoopComplete(); if (v3.Position >= v3.Sequence.length) { v3.OnSequenceComplete(); } }; Sequencer.prototype.OnTimeout = function () { with (this.parent) { var n = Sequence[Position].fx.length; var i = 0; while (i < n) { if (CurrentFX[i] == -1) { CurrentFX[i] = random(FX.length); } var fx_num = CurrentFX[i]; FX[fx_num](i); ++i; } } }; Sequencer.prototype.Start = function () { var i; var PlaySet = new Array(4); var APos = this.Position; i = 0; while (i < this.AMixer.ChannelsNum) { this.CurrentFX[i] = this.Sequence[APos].fx[i]; var v = this.Sequence[APos].ch[i].vol; if (v == undefined) { v = 100; } this.AMixer.SetChannelVolume(i, v); ++i; } while (APos < this.Sequence.length) { var maxbars = 0; var rec = this.Sequence[APos]; var LS = rec.LoopSet; var Snd; i = 0; while (i < 4) { PlaySet[i] = new Object(); with (this) { var CurChSet = LoopSets[LS][i]; if (rec.ch[i].num == -1) { Snd = CurChSet[random(CurChSet.length)]; } else { Snd = CurChSet[rec.ch[i].num]; } if (maxbars < Snd.Bars) { maxbars = Snd.Bars; } PlaySet[i].Name = Snd.Name; PlaySet[i].Bars = Snd.Bars; if (PlaySet[i].Name == undefined) { PlaySet[i].Name = 'EmptyBar'; } if (PlaySet[i].Bars == undefined) { PlaySet[i].Bars = 1; } } ++i; } i = 0; while (i < 4) { this.AMixer.QueueSound(PlaySet[i].Name, i, 0, maxbars / PlaySet[i].Bars); ++i; } ++APos; } }; #endinitclip frame 1 { 0; } } frame 1 { function preloadSite() { var v3 = _root.getBytesLoaded(); var v2 = _root.getBytesTotal(); var v4 = Math.round((v3 / v2) * 100); redloadingbar_mc._xscale = v4; percent_text.text = v4 + '%'; if (v3 >= v2) { clearInterval(loadingCall); gotoAndStop(2); } } stop(); loadingbar_mc._xscale = 1; webmasters_mc.gotoAndStop(1); var loadingCall = setInterval(preloadSite, 50); } movieClip 131 { } frame 2 { function doscene() { if (scene == 0) { dolab(); } else { if (scene == 1) { dotitle(); } else { if (scene == 2) { doshower(); } else { if (scene == 3) { doschool(); } else { if (scene == 4) { dogym(); } else { if (scene == 5) { dodress(); } else { if (scene == 6) { dogame(); } else { if (scene == 7) { dosaloon(); } else { if (scene == 8) { screen = 9; dobath(); } else { if (scene == 9) { screen = 10; dobed1(); } else { if (scene == 10) { screen = 11; dobed2(); } else { if (scene == 11) { screen = 12; if (room5level >= 1) { dobed3(); } else { if (ssay < 120) { dosaloon(); } else { dobed3(); } } } else { if (scene == 12) { screen = 6; do12(); } else { if (scene == 13) { screen = 13; donavi(); } else { if (scene == 14) { screen = 14; docredits(); } } } } } } } } } } } } } } } } function domon() { if (!debug) { mon0_mc._x = -10000; return undefined; } mon0_mc.mon0_txt.text = mon0 + '\r' + mon1 + '\r' + mon2 + '\r' + mon3 + '\r' + mon4 + '\r' + mon5 + '\r' + mon6 + '\r' + mon7; mon0_mc._x = 210; if (scene == 8) { mon0_mc.gotoAndStop(2); } else { mon0_mc.gotoAndStop(1); } mon0_mc.swapDepths(22902); } function dokeys() { if (debug || secretunlocked) { if (Key.isDown(27) && scene != 13) { goblack = 10; if (!part1 && scene == 7) { newgame(); masterlevel = 1; level = 1; scene = 13; ssay = 0; } if (scene == 12 && debug) { if (room1level == 1) { jenny1done = 1; } if (room1level == 2) { jenny2done = 1; } if (room1level == 3) { jenny3done = 1; } if (room1level == 4) { jenny4done = 1; } if (room1level == 5) { jenny5done = 1; } } if (scene == 8 && debug) { if (room2level == 1) { bath1done = 1; } if (room2level == 2) { bath2done = 1; } if (room2level == 3) { bath3done = 1; } if (room2level == 4) { bath4done = 1; } if (room2level == 5) { bath5done = 1; } } if (scene == 9 && debug) { if (room3level == 1) { jana1done = 1; } if (room3level == 2) { jana2done = 1; } if (room3level == 3) { jana3done = 1; } if (room3level == 4) { jana4done = 1; } if (room3level == 5) { jana5done = 1; } } if (scene == 10 && debug) { if (room4level == 1) { cindy1done = 1; } if (room4level == 2) { cindy2done = 1; } if (room4level == 3) { cindy3done = 1; } if (room4level == 4) { cindy4done = 1; } if (room4level == 5) { cindy5done = 1; } } if (scene == 11 && debug) { if (room5level == 1) { kat1done = 1; } if (room5level == 2) { kat2done = 1; } if (room5level == 3) { kat3done = 1; } if (room5level == 4) { kat4done = 1; } if (room5level == 5) { kat5done = 1; } } } } if (!Key.isDown(68)) { drel = 1; } if (Key.isDown(68) && drel && secretunlocked) { if (debug) { debug = 0; } else { debug = 1; } drel = 0; } if (debug || secretunlocked) { if (!Key.isDown(83)) { srel = 1; } if (Key.isDown(83) && srel) { srel = 0; if (part1) { if (scene == 6) { if (ssay < 41) { phase = 2; stoploop(); ssay = 41; return undefined; } else { scene = 0; } } else { ++scene; if (scene >= scenes) { scene = 0; } } } else { if (masterlevel > 0) { newgame(); scene = 7; ssay = 0; masterlevel = 0; level = 0; } else { newgame(); masterlevel = 1; level = 1; scene = 13; ssay = 0; } } hideall(); phase = 0; scenestarted = 0; } } if (debug) { if (!Key.isDown(78)) { nrel = 1; } if (Key.isDown(78) && nrel) { nrel = 0; if (noisy) { noisy = 0; } else { noisy = 1; trace('sound report on say:' + say); } } if (Key.isDown(87) && scene != 2) { if (Key.isDown(39)) { ++wadjx; } if (Key.isDown(37)) { --wadjx; } if (Key.isDown(38)) { --wadjy; } if (Key.isDown(40)) { ++wadjy; } } if (Key.isDown(90) && scene != 2) { if (Key.isDown(39)) { ++zadjx; } if (Key.isDown(37)) { --zadjx; } if (Key.isDown(38)) { --zadjy; } if (Key.isDown(40)) { ++zadjy; } } if (Key.isDown(70)) { if (Key.isDown(39)) { ++fadjx; } if (Key.isDown(37)) { --fadjx; } if (Key.isDown(38)) { --fadjy; } if (Key.isDown(40)) { ++fadjy; } } if (Key.isDown(81)) { if (Key.isDown(39)) { ++qadjx; } if (Key.isDown(37)) { --qadjx; } if (Key.isDown(38)) { --qadjy; } if (Key.isDown(40)) { ++qadjy; } } if (Key.isDown(65)) { if (Key.isDown(39)) { ++adjx; } if (Key.isDown(37)) { --adjx; } if (Key.isDown(38)) { --adjy; } if (Key.isDown(40)) { ++adjy; } } else { if (Key.isDown(86)) { if (Key.isDown(39)) { ++vscale; } if (Key.isDown(37)) { --vscale; } } else { if (Key.isDown(83)) { if (Key.isDown(39)) { ++xscroll; } if (Key.isDown(37)) { --xscroll; } if (Key.isDown(38)) { --yscroll; } if (Key.isDown(40)) { ++yscroll; } } } } } kk = Key.getCode(); if (keyseq == 0 && kk == 88) { keyseq = 1; } else { if (keyseq == 1) { if (kk == 88) { } else { if (kk == 72) { keyseq = 2; rkeyrel = 0; } else { keyseq = 0; } } } else { if (keyseq == 2) { if (!Key.isDown(73)) { rkeyrel = 1; } if (Key.isDown(73) && rkeyrel) { secretunlocked = 1; highestscene = 10; keyseq = 0; sayfile('harp.mp3', 30); if (part1) { pausing = 9; } else { pausing = 11; } } else { if (kk != 72) { keyseq = 0; } } } } } mon1 = 'a:' + adjx + ' ' + adjy + ' f:' + fadjx + ' ' + fadjy + ' z:' + zadjx + ' ' + zadjy + ' q:' + qadjx + ' ' + qadjy + ' w:' + wadjx + ' ' + wadjy; } function sine(deg) { rad = deg * Math.PI / 180; return Math.sin(rad); } function cosine(deg) { rad = deg * Math.PI / 180; return Math.cos(rad); } function rad2deg(rad) { deg = rad * 180 / Math.PI; return deg; } function deg2rad(deg) { rad = deg * Math.PI / 180; return rad; } function abs(n) { return Math.abs(n); } function floor(n) { return Math.floor(n); } function rnd(range) { r = floor(Math.random() * range); return r; } function rnd1() { r = rnd(65536); if (r < 32768) { return 0; } else { return 1; } } function finddistance(x1, y1, x2, y2) { distance = Math.sqrt((x2 - x1) * (x2 - x1) + (y2 - y1) * (y2 - y1)); return distance; } function dobubble() { plate2_mc.swapDepths(23530); plate2_mc._x = platex; plate2_mc._y = platey; plate2_mc._alpha = platealpha; plate_mc.swapDepths(23531); if (platealpha) { plate_mc._x = platex; } else { plate_mc._x = -10000; } plate_mc._y = platey; plate_mc._alpha = platealpha; if (speaking) { bubble_mc.swapDepths(24017); bubble_mc._x = 320 + bubblex; bubble_mc._y = 240 + bubbly; --speakdelay; if (speakdelay <= 0) { speaking = 0; whospeaking = 0; } } else { bubble_mc.swapDepths(-16384); } } function resay() { if (speaking) { if (language == 0) { words = English[savwordindex]; typ = English[savwordindex + 1]; } else { if (language == 1) { words = German[savwordindex]; typ = German[savwordindex + 1]; } else { if (language == 2) { words = French[savwordindex]; typ = French[savwordindex + 1]; } else { if (language == 3) { words = Italian[savwordindex]; typ = Italian[savwordindex + 1]; } else { if (language == 4) { words = Spanish[savwordindex]; typ = Spanish[savwordindex + 1]; } else { if (language == 5) { words = Russian[savwordindex]; typ = Russian[savwordindex + 1]; } } } } } } bubble_mc.gotoAndStop(typ); bubble_mc.txt.text = words; } } function saythisl(wordsnum, delay, typ, bblx, bbly) { w = wordsnum * 2; if (language == 5) { saythis(Russian[w], delay, Russian[w + 1], bblx, bbly); } else { if (language == 4) { saythis(Spanish[w], delay, Spanish[w + 1], bblx, bbly); } else { if (language == 3) { saythis(Italian[w], delay, Italian[w + 1], bblx, bbly); } else { if (language == 2) { saythis(French[w], delay, French[w + 1], bblx, bbly); } else { if (language == 1) { saythis(German[w], delay, German[w + 1], bblx, bbly); } else { saythis(English[w], delay, English[w + 1], bblx, bbly); } } } } } savwordindex = w; if (testbubble >= 0) { mon5 = English[w]; mon6 = Russian[w]; } } function saythis(words, delay, typ, bblx, bbly) { speaking = 1; speakdelay = delay; bubble_mc._xscale = 100; bubble_mc._yscale = 100; bubble_mc.gotoAndStop(typ); bubble_mc.txt.text = words; bubblex = bblx; bubbly = bbly; } function saythisbig(words, delay, typ, bblx, bbly) { speaking = 1; speakdelay = delay * framerate; bubble_mc._xscale = 150; bubble_mc._yscale = 150; bubble_mc.gotoAndStop(typ); bubble_mc.txt.text = words; bubblex = bblx; bubbly = bbly; bubble_mc._x = bblx; bubble_mc._y = bbly; } function saythismed(words, delay, typ, bblx, bbly) { speaking = 1; speakdelay = delay * framerate; bubble_mc._xscale = 125; bubble_mc._yscale = 125; bubble_mc.gotoAndStop(typ); bubble_mc.txt.text = words; bubblex = bblx; bubbly = bbly; } function dofade() { sheet_mc._x = 320; sheet_mc._y = 230; if (goblack) { sheet_mc.gotoAndStop(1); if (goblack >= 100) { scenechange(); goblack = 0; unblack = 99; sheet_mc._alpha = 100; return undefined; } else { if (goblack < 100) { goblack += 10; if (!stoploop) { if (mmax > 0) { mmax -= 5; if (mmax < 0) { mmax = 0; } loopvol = mmax; yesSound.setVolume(loopvol); } } } sheet_mc._alpha = goblack; sheet_mc.swapDepths(26000); } } if (goblackslow > 0) { sheet_mc.gotoAndStop(1); if (goblackslow >= 100) { scenechange(); goblackslow = 0; unblack = 99; sheet_mc._alpha = 100; return undefined; } else { if (goblackslow < 100) { goblackslow += 1; } sheet_mc._alpha = goblackslow; sheet_mc.swapDepths(26000); } } if (gowhiteslow > 0) { sheet_mc.gotoAndStop(2); if (gowhiteslow >= 100) { hideall(); scenechange(); gowhiteslow = 0; unwhite = 99; sheet_mc._alpha = 100; return undefined; } else { if (gowhiteslow < 100) { gowhiteslow += 1; yesSound.setVolume(100 - gowhiteslow); } sheet_mc._alpha = gowhiteslow; sheet_mc.swapDepths(26000); } } if (unblack < 100) { sheet_mc.gotoAndStop(1); if (unblack == 0) { goblack = 0; goblackslow = 0; gowhiteslow = 0; unblack = 100; } else { if (unblack == 99) { unblack = 90; } else { if (unblack < 100) { unblack -= 10; } } sheet_mc._alpha = unblack; sheet_mc.swapDepths(21000); } } if (unwhite < 100) { sheet_mc.gotoAndStop(2); if (unwhite == 0) { goblack = 0; goblackslow = 0; gowhiteslow = 0; unwhite = 100; } else { if (unwhite == 99) { unwhite = 90; } else { if (unwhite < 100) { unwhite -= 10; } } sheet_mc._alpha = unwhite; sheet_mc.swapDepths(21000); } } } function scenechange() { if (!part1 && scene == 14) { scene = 7; phase = 0; ssay = 0; scenestarted = 0; newgame(); } else { if (teaser && scene > 1) { scene = 0; scenestarted = 0; newgame(); teasecount = 0; } else { if (part1 && scene == 6 && ssay == 41) { scene = 0; scenestarted = 0; newgame(); } else { if (goscene > 0) { scene = goscene; scenestarted = 0; goscene = 0; } else { if (scene == 7 && ssay == 119) { scene = 11; ssay = 120; scenestarted = 0; } else { if (scene == 12 && ssay == 40 && level == 5) { scenestarted = 0; ssay = 41; } else { if (scene == 12 && ssay == 21) { scenestarted = 0; ssay = 22; } else { if (level >= 1) { if (jenny5done) { scene = 14; scenestarted = 0; } else { scene = 13; scenestarted = 0; } } else { if (scene == 3 && phase == 0) { scene = 3; scenestarted = 0; phase = 1; } else { if (scene == 3 && phase == 1) { scene = 3; scenestarted = 0; phase = 2; } else { if (scene == 3 && phase == 2) { scene = 3; scenestarted = 0; phase = 3; } else { if (scene == 3 && phase == 3) { scene = 3; scenestarted = 0; phase = 4; } else { if (scene == 3 && phase == 4) { scene = 3; scenestarted = 0; phase = 5; } else { if (scene == 3 && phase == 5) { scene = 4; scenestarted = 0; phase = 0; } else { if (scene == 4 && phase == 3) { scene = 4; hideall(); phase = 4; wait = 20; } else { if (scene == 5) { scene = 6; scenestarted = 0; phase = 0; } else { if (scene == 6 && phase == 0) { hideall(); phase = 1; ssay = 32; wait = 40; bg2alpha = 0; attach = 1; lookmirror = 3; titsqueeze = 0; tinabraoff = 0; } else { if (scene == 11 && level >= 1) { scene = 13; scenestarted = 0; } else { if (scene == 11 && ssay == 119) { hideall(); stoploop(); ssay = 120; scenestarted = 0; } else { if (scene == 11 && ssay == 131) { hideall(); scene = 13; ssay = 0; scenestarted = 0; } else { if (scene == 12 && ssay == 14) { hideall(); stoploop(); scene = 7; ssay = 0; scenestarted = 0; } else { if (scene == 1) { hideall(); stoploop(); scene = 2; ssay = 0; scenestarted = 0; } else { if (level >= 1) { scene = 13; scenestarted = 0; } else { if (scene == 0) { scene = 1; scenestarted = 0; } else { if (scene == 4 && phase == 0) { scene = 4; phase = 1; } else { if (scene == 4 && ssay == 28) { scene = 4; hideall(); ssay = 29; wait = 60; } else { if (scene == 4 && ssay == 34) { scene = 4; hideall(); phase = 3; ssay = 34; wait = 60; } else { if (scene == 4 && phase == 4) { scene = 4; hideall(); phase = 5; ssay = 38; wait = 60; } else { if (scene == 4 && phase == 5) { hideall(); scene = 5; phase = 0; scenestarted = 0; } else { if (scene == 5) { scene = 6; scenestarted = 0; phase = 0; } else { if (scene == 6 && phase == 0) { phase = 1; ssay = 32; wait = 40; bg2alpha = 0; attach = 1; lookmirror = 3; titsqueeze = 0; tinabraoff = 0; stoploop(); } else { if (scene == 6 && phase == 1) { phase = 2; ssay = 38; wait = 90; bg2alpha = 0; crowdloop(); } else { if (part1 && scene == 6 && ssay < 41) { phase = 2; stoploop(); ssay = 41; } else { if (scene == 7 && ssay == 60) { ssay = 61; screen = 2; bg4alpha = 0; bg3alpha = 0; bg2alpha = 0; spritefade = 0; loops = 0; song = 0; looptime = 0; nomute = 0; ChangeTheme(Theme1); sprite9_mc._alpha = 0; sprite8_mc._alpha = 0; } else { if (scene == 7) { scene = 8; scenestarted = 0; } else { if (scene == 8 && level < 1) { scene = 9; scenestarted = 0; } else { if (scene == 9 && level < 1) { scene = 7; scenestarted = 0; } else { if (scene == 10) { scene = 7; scenestarted = 0; } else { if (scene == 8 && level >= 1) { scene = 13; scenestarted = 0; } else { if (scene == 11 && level >= 1) { scene = 13; scenestarted = 0; } else { if (scene == 2) { scene = 3; phase = 0; scenestarted = 0; hideall(); phase = 0; stoploop(); } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } function checkmouse() { if (mousex != oldmousex && mousey > 20) { showpop = 10; showpoptype = 2; } else { if (showpop) { --showpop; } } oldmousex = mousex; } function dopop() { if (!buttonpress) { plinkrel = 1; } if (showpop) { if (mousey > 433 && mousex < 128) { showpoptype = 4; } else { showpoptype = 10; } if (showpoptype == 10) { pop_mc._x = 64; pop_mc._y = 456; } else { pop_mc._x = 100; pop_mc._y = 434; if (buttonpress && plinkrel) { getURL('http://pusooy.net', '_blank'); plinkrel = 0; } if (!buttonpress) { plinkrel = 1; } } pop_mc.gotoAndStop(showpoptype); pop_mc.swapDepths(25609); } else { pop_mc._x = -10000; } } function hideall(flag) { flag1_mc.gotoAndStop(10); flag2_mc.gotoAndStop(10); flag3_mc.gotoAndStop(10); flag4_mc.gotoAndStop(10); flag5_mc.gotoAndStop(10); flag6_mc.gotoAndStop(10); flag6_mc._x = -10000; flag5_mc._x = -10000; flag4_mc._x = -10000; flag3_mc._x = -10000; flag2_mc._x = -10000; flag1_mc._x = -10000; teasecount = 0; webmasters_mc._alpha = 0; webmasters_mc._x = -10000; news_mc._x = -10000; news_mc.gotoAndStop(5); mon6 = ''; mon5 = ''; mon4 = ''; mon3 = ''; mon2 = ''; mon1 = ''; mon0 = ''; startbutton_mc._x = -10000; bar2_mc._x = -10000; bar1_mc._x = -10000; meter2_mc._x = -10000; meter1_mc._x = -10000; jumbo2_mc._x = -10000; jumbo_mc._x = -10000; if (flag == 2) { } else { stoploop(); } showpop = 0; speaking = 0; oldmousex = mousex; plate2_mc._x = -10000; plate_mc._x = -10000; platex = -10000; adjy = 0; adjx = 0; attacharrow = 0; attach = 0; arrowcursor = 0; arrowx = -10000; arrow_mc._x = arrowx; i = 0; while (i < 26) { ii = i + 1; _root['sprite' + ii + '_mc']._x = -10000; _root['sprite' + ii + '_mc']._alpha = 100; _root['sprite' + ii + '_mc']._xscale = 100; _root['sprite' + ii + '_mc']._yscale = 100; _root['sprite' + ii + '_mc']._rotation = 0; _root['sprite' + ii + '_mc'].gotoAndStop(8); if (i < 20) { _root['sperm' + i + '_mc']._x = -10000; _root['sperm' + i + '_mc']._alpha = 0; _root['sperm' + i + '_mc'].gotoAndStop(9); } ++i; } bg3_mc._x = -10000; bg4_mc._x = -10000; bg3_mc._alpha = 0; bg4_mc._alpha = 0; } function doarrow() { if (arrowcursor) { if (arrowangle == 1) { arrow_mc.gotoAndStop(8); } else { if (arrowangle == 2) { ssqq = time / 4 & 3; arrow_mc.gotoAndStop(16 + ssqq); } else { if (arrowangle == 3) { arrow_mc.gotoAndStop(17); } else { arrow_mc.gotoAndStop(20 + arrowcolor); } } } arrow_mc._x = mousex; arrow_mc._y = mousey; arrow_mc._rotation = arrowangle; hidemouse = 1; } else { arrow_mc.gotoAndStop(10 + arrowcolor); arrow_mc._rotation = 0; if (attacharrow) { arrow_mc._x = 320 + arrowx; if (time / 4 & 4) { arrow_mc._x = 320 + arrowx; } else { arrow_mc._x = -10000; } hidemouse = 0; } else { arrow_mc._x = -10000; hidemouse = 0; } arrow_mc._y = 240 + arrowy; arrow_mc._yscale = 100; } arrow_mc.swapDepths(20003); } function doscenebar() { scenebar_mc._x = 585; scenebar_mc._y = 6; if (scene < 0.5) { bscene = 1; } else { if (scene < 1) { bscene = 2; } else { if (scene < 4) { bscene = scene + 2; } else { if (scene <= 6) { bscene = scene + 1; } else { if (scene == 6.5) { bscene = 7; } else { bscene = scene + 1; } } } } } scenebar_mc.gotoAndStop(bscene + 1); scenebar_mc.swapDepths(26531); } function showplate(who, saywhat, px, py) { platex = px; platey = py; strlen = saywhat.length; if (language == 5) { if (strlen > 180) { plate_mc.gotoAndStop(11); } else { if (strlen > 130) { plate_mc.gotoAndStop(10); } else { plate_mc.gotoAndStop(9); } } } else { if (strlen > 180) { plate_mc.gotoAndStop(8); } else { if (strlen > 130) { plate_mc.gotoAndStop(7); } else { plate_mc.gotoAndStop(6); } } } plate_mc.nam.text = who; plate_mc.txt.text = saywhat; plate2_mc.gotoAndStop(5); plate_mc._xscale = 100; plate_mc._yscale = 100; } function shownameplate(saywhati, px, py) { if (language == 5) { saywhat = Russian[saywhati * 2]; } else { if (language == 4) { saywhat = Spanish[saywhati * 2]; } else { if (language == 3) { saywhat = Italian[saywhati * 2]; } else { if (language == 2) { saywhat = French[saywhati * 2]; } else { if (language == 1) { saywhat = German[saywhati * 2]; } else { saywhat = English[saywhati * 2]; } } } } } platex = px; platey = py; strlen = saywhat.length; plate_mc.gotoAndStop(1); plate_mc.txt.text = saywhat; plate_mc.txt2.text = saywhat; plate2_mc.gotoAndStop(2); plate_mc._xscale = 75; plate_mc._yscale = 75; } function newgame() { jenny1done = 0; jenny2done = 0; jenny3done = 0; jenny4done = 0; jana1done = 0; jana2done = 0; jana3done = 0; jana4done = 0; cindy1done = 0; cindy2done = 0; cindy3done = 0; cindy4done = 0; bath1done = 0; bath2done = 0; bath3done = 0; bath4done = 0; kat1done = 0; kat2done = 0; kat3done = 0; kat4done = 0; level = 0; masterlevel = 0; ssay = 0; room1level = 0; room2level = 0; room3level = 0; room4level = 0; room5level = 0; } function dotestbubbles() { if (part1) { if (testbubble > 172) { testbubble = 0; } } else { if (testbubble < 173) { testbubble = 403; } if (testbubble > 403) { testbubble = 173; } } if (!Key.isDown(39)) { rtrel = 1; } if (Key.isDown(39) && rtrel) { rtrel = 0; ++testbubble; saythisl(testbubble, 60, 0, 0, 0); } if (!Key.isDown(37)) { lfrel = 1; } if (Key.isDown(37) && lfrel) { lfrel = 0; if (testbubble > 0) { --testbubble; } else { testbubble = 403; } saythisl(testbubble, 60, 0, 0, 0); } if (!Key.isDown(38)) { uprel = 1; } if (Key.isDown(38) && uprel) { testbubble -= 50; if (testbubble < 0) { testbubble = English.length / 2 - 1; } } if (!Key.isDown(40)) { dnrel = 1; } if (Key.isDown(40) && dnrel) { testbubble += 50; if (testbubble >= English.length / 2) { testbubble = 0; } } dobubble(); mon4 = 'testbub:' + testbubble; } function doshowpause() { pop_mc._x = 320; pop_mc._y = 400; if (pausing >= 9) { pop_mc.gotoAndStop(pausing); } else { pop_mc.gotoAndStop(17); if (language == 5) { pop_mc.txt.text = Russian[112]; } else { if (language == 4) { pop_mc.txt.text = Spanish[112]; } else { if (language == 3) { pop_mc.txt.text = Italian[112]; } else { if (language == 2) { pop_mc.txt.text = French[112]; } else { if (language == 0) { pop_mc.txt.text = English[112]; } else { pop_mc.txt.text = German[112]; } } } } } sp = 64; tx = floor((cmousex + 192) / 64); ty = cmousey - 171; if (tx >= 0 && tx < 6 && ty >= 0 && ty < 40) { flag = tx; } else { flag = -1; } flag1_mc._x = 160 + fadjx; flag1_mc._y = 430 + fadjy; flag1_mc.swapDepths(25560); flag1_mc.gotoAndStop(1); if (flag == 0) { flag1_mc._alpha = 100; } else { flag1_mc._alpha = 50; } flag2_mc._x = 160 + sp * 1 + fadjx; flag2_mc._y = 430 + fadjy; flag2_mc.swapDepths(25561); flag2_mc.gotoAndStop(2); if (flag == 1) { flag2_mc._alpha = 100; } else { flag2_mc._alpha = 50; } flag3_mc._x = 160 + sp * 2 + fadjx; flag3_mc._y = 430 + fadjy; flag3_mc.swapDepths(25562); flag3_mc.gotoAndStop(3); if (flag == 2) { flag3_mc._alpha = 100; } else { flag3_mc._alpha = 50; } flag4_mc._x = 160 + sp * 3 + fadjx; flag4_mc._y = 430 + fadjy; flag4_mc.swapDepths(25563); flag4_mc.gotoAndStop(4); if (flag == 3) { flag4_mc._alpha = 100; } else { flag4_mc._alpha = 50; } flag5_mc._x = 160 + sp * 4 + fadjx; flag5_mc._y = 430 + fadjy; flag5_mc.swapDepths(25564); flag5_mc.gotoAndStop(5); if (flag == 4) { flag5_mc._alpha = 100; } else { flag5_mc._alpha = 50; } flag6_mc._x = 160 + sp * 5 + fadjx; flag6_mc._y = 430 + fadjy; flag6_mc.swapDepths(25565); flag6_mc.gotoAndStop(6); if (flag == 5) { flag6_mc._alpha = 100; } else { flag6_mc._alpha = 50; } if (flag == 0) { pop_mc.txt.text = English[112]; if (buttonpress) { language = flag; resay(); } } else { if (flag == 1) { pop_mc.txt.text = German[112]; if (buttonpress) { language = flag; resay(); } } else { if (flag == 2) { pop_mc.txt.text = French[112]; if (buttonpress) { language = flag; resay(); } } else { if (flag == 3) { pop_mc.txt.text = 'Italian is not yet available'; } else { if (flag == 4) { pop_mc.txt.text = Spanish[112]; if (buttonpress) { language = flag; resay(); } } else { if (flag == 5) { pop_mc.txt.text = Russian[112]; if (buttonpress) { language = flag; resay(); } } } } } } } } pop_mc.swapDepths(25559); } function isaloon() { hideall(); ay = 0; zx = 0; bg4alpha = 0; bg3alpha = 0; bg2alpha = 0; phase = 0; wait = 0; tablewait = 0; if (scene == 11) { ssay = 100; wait = 20; } else { ssay = 0; } omscreen = -1; oscreen = 0; screen = 0; mutedelay = 0; jenbob = 0; jenfr = 0; time5 = time; time4 = time5; time3 = time4; time2 = time3; time1 = time2; dancetime = 0; slowch = 0; sloal = 0; slodir = 4; mikefade = 0; spritefade = 0; spritefade2 = 0; coat2fade = 0; coat1fade = 0; coatfall = 0; cfadd = 0; song = 0; loops = 0; ChangeTheme(Theme1, 0); song = 0; musicvol = 40; SetChannelGlobalVolume(0, musicvol); SetChannelGlobalVolume(1, musicvol); SetChannelGlobalVolume(2, musicvol); SetChannelGlobalVolume(3, musicvol); SetChannelGlobalVolume(4, 0); mrel = 0; mmax = 30; swigs = 0; swigrel = 0; xscroll = 0; hiphop = 0; wchyell = 0; dancefade2 = 0; dancefade1 = 0; fwait = 0; ja = 0; jaadd = 20; ttfa = 0; tfa = 0; moveadd = 0; umoveadd = 0; fspeed = 0; slowjack = 0; skfall = 0; sfadd = 0.5; katdoorx = 0; katdoory = 0; katfade2 = 0; katfade1 = 0; katscale2 = 100; katscale = 100; karma = 0; kreset = 0; rattles = 0; atdoor = 0; switchdoor = 0; dooropen = 0; opendoorx = -10000; opendoory = 0; warp = 0; boodel = 0; lookcindy = 0; easter = 0; easter1started = 0; easter2started = 0; easter3started = 0; easter4started = 0; easter5started = 0; easter6started = 0; scenestarted = 1; if (0 && scene == 7) { ssay = 7; screen = 3; ssay = 10; screen = 4; ssay = 17; screen = 4; ssay = 18; screen = 0; ssay = 35; screen = 2; ssay = 44; screen = 4; ssay = 50; screen = 3; nomute = 1; omscreen = 0; ssay = 52; screen = 3; } if (level >= 1) { ssay = 93.84999999999999; bg3alpha = 100; bg4alpha = 0; spritefade = 0; bg2alpha = 0; bg_mc.gotoAndStop(43); skfall = 301; screen = 6; warp = 1; } } function dosaloon() { if (!scenestarted) { isaloon(); } if (easter) { if (easter == 1) { doeaster1(); } if (easter == 2) { doeaster2(); } return undefined; } else { mon4 = ''; } doscroll(); dolights(); dopartysay(); saloon_arrow(); scrn1 = screen & 1; if (scrn1 == 0) { if (bg2alpha > 0) { bg2alpha -= 5; } if (screen == 8 && ssay == 66.5) { bg3alpha = 100 - bg2alpha; } if (screen == 6 && ssay >= 93.75) { xscroll = 0; } else { if (bg4alpha > 0) { bg4alpha -= 5; } } if (screen == 6 && ssay < 93.75) { spritefade = bg4alpha; } if (screen == 0 && ssay == 17) { ssay = 18; } if (screen == 2 && ssay == 19) { ssay = 20; } if (ssay == 107 && screen == 4) { sprite9_mc._alpha = 0; } if (mikefade > 0) { mikefade -= 5; } } else { if (ssay == 10 && bg4alpha > 0) { if (boodel) { --boodel; } else { if (bg4alpha > 0) { bg4alpha -= 5; } } } if (bg2alpha < 100) { bg2alpha += 5; } if (ssay >= 68 && screen == 3 && ssay < 93) { if (mikefade < 100) { mikefade += 5; } } if (ssay >= 93.2) { } else { if (ssay >= 79 && screen == 3) { if (bg4alpha < 100) { bg4alpha += 5; } if (spritefade2 < 100) { spritefade2 += 5; spritefade = spritefade2; } if (mikefade < 100 && screen == 3 && ssay < 93) { mikefade += 5; } if (ssay >= 93) { spritefade = 0; } } } if (bg3alpha > 0) { bg3alpha -= 5; } if (ssay == 16) { ssay = 17; } if (screen == 1 && ssay == 18) { ssay = 19; } if (ssay == 34) { ssay = 35; } } bg_mc.swapDepths(0); bg3_mc.swapDepths(1); bg2_mc.swapDepths(10000); if (ssay >= 50 && ssay < 54) { bg4_mc.swapDepths(20002); } else { bg4_mc.swapDepths(10002); } if (screen == 0) { if (ssay >= 100) { bg_mc.gotoAndStop(59); } else { if (ssay >= 19) { bg_mc.gotoAndStop(1); } else { if (ssay == 18) { bg_mc.gotoAndStop(17); hotx = -144; hoty = 18; dx = cmousex - hotx; dy = cmousey - hoty; mon4 = 'dxy:' + dx + ' ' + dy; if (abs(dx < 5) && abs(dy) < 5 && !easter2started && buttonpress) { easter = 2; } } else { if (ssay >= 7) { bg_mc.gotoAndStop(11); hotx = -144; hoty = 18; dx = cmousex - hotx; dy = cmousey - hoty; if (abs(dx < 5) && abs(dy) < 5 && !easter1started && buttonpress) { easter = 1; } } else { bg_mc.gotoAndStop(1); } } } } } if (screen == 1) { bg2_mc.gotoAndStop(2 + (time5 & 1)); if (ssay == 54) { bg4_mc.gotoAndStop(28); } } if (screen == 2) { if (ssay >= 100) { bg_mc.gotoAndStop(61); bg3alpha = 0; } else { if (ssay >= 65) { bg_mc.gotoAndStop(31); } else { if (ssay >= 61) { bg_mc.gotoAndStop(29); } else { if (ssay >= 47) { bg_mc.gotoAndStop(24); } else { if (ssay >= 35) { bg_mc.gotoAndStop(21); } else { if (ssay >= 23) { bg_mc.gotoAndStop(20); } else { if (ssay >= 20) { bg_mc.gotoAndStop(18); } else { if (ssay >= 7) { bg_mc.gotoAndStop(10); } else { bg_mc.gotoAndStop(5); } } } } } } } } if (ssay >= 62) { bg3_mc.gotoAndStop(30); } else { if (ssay >= 47) { bg3_mc.gotoAndStop(25); } else { if (ssay >= 21) { bg3_mc.gotoAndStop(19); } else { bg3_mc.gotoAndStop(9); } } } } if (screen == 3) { if (ssay >= 105) { bg2_mc.gotoAndStop(89); } else { if (ssay >= 79) { bg4_mc.gotoAndStop(34); } else { if (ssay >= 69) { bg4_mc.gotoAndStop(34); } else { if (ssay >= 50 && ssay < 65) { bg2_mc.gotoAndStop(26); if (ssay >= 52) { bg4_mc.gotoAndStop(27); } } else { bg2_mc.gotoAndStop(6); bg4_mc.gotoAndStop(13); } } } } } if (screen == 4) { if (ssay >= 100) { bg_mc.gotoAndStop(62); } else { if (ssay >= 65) { bg_mc.gotoAndStop(33); } else { if (ssay >= 35) { bg_mc.gotoAndStop(22); } else { if (ssay >= 17) { bg_mc.gotoAndStop(16); } else { bg_mc.gotoAndStop(7); } } } } if (ssay >= 46) { bg3_mc.gotoAndStop(23); } } if (screen == 5) { if (ssay >= 100) { bg2_mc.gotoAndStop(60); } else { if (ssay == 66.5) { bg2_mc.gotoAndStop(49); } else { if (ssay >= 79) { bg2_mc.gotoAndStop(35); } else { if (ssay > 65) { bg2_mc.gotoAndStop(32); } else { if (ssay >= 17) { bg2_mc.gotoAndStop(15); } else { if (ssay >= 7) { bg2_mc.gotoAndStop(14); } else { bg2_mc.gotoAndStop(8); } } } } } } } if (screen == 6) { if (ssay < 93.73) { bg_mc.gotoAndStop(36); } } if (screen == 8) { bg_mc.gotoAndStop(48); if (ssay < 100) { bg3_mc.gotoAndStop(50); } } bg4_mc._x = 320 - xscroll; bg3_mc._x = 320; bg_mc._x = 320; bg4_mc._y = 240; bg3_mc._y = 240; bg_mc._y = 240; bg_mc._xscale = 100; bg_mc._yscale = 100; bg2_mc._x = 320 - xscroll; bg2_mc._y = 240; bg2_mc._xscale = 100; bg2_mc._yscale = 100; bg_mc._alpha = 100; bg2_mc._alpha = bg2alpha; bg3_mc._alpha = bg3alpha; bg4_mc._alpha = bg4alpha; beta_mc.swapDepths(21005); beta_mc._x = 599; beta_mc._y = 481; music_mc.swapDepths(20015); music_mc._x = 1; music_mc._y = 479; music2_mc.swapDepths(20016); music2_mc._y = 479; mon2 = 'screen:' + screen + ' b2a:' + bg2alpha + ' b3a:' + bg3alpha + ' b4a:' + bg4alpha + ' sf2:' + spritefade2 + ' wt:' + wait; } function doscroll() { if (ssay == 70 && wait == 0) { if (xscroll < 108) { if (dx < 0.25) { dx = 0.25; } dx *= 1.5; xscroll += dx; } else { dx = 216 - xscroll; if (dx / 8 < 0.25) { ssay = 71; wait = 20; } else { xscroll += dx / 8; } } } if (ssay == 74 && wait == 0 || ssay >= 92.90000000000001 && wait == 0) { dx = -xscroll; if (dx / 8 > -0.1) { if (ssay < 92) { ssay = 75; wait = 20; } } else { xscroll += dx / 8; } } } function dolights() { l1x = 620; l1y = 146; l2x = 320; l2y = 269; l3x = 320; l3y = 78; step = 1; time1 += step; time2 += step; time3 += step; time4 += step; if (rnd(100) < 50) { time2 += step; } if (rnd(100) < 50) { time3 += step; } if (rnd(100) < 50) { time4 += step; } --dancetime; if (dancetime <= 0) { dancetime = 8 + rnd(8); ++time5; } if (ssay < 54 || ssay == 54 & bg4alpha == 0 || ssay >= 61) { if ((time1 & 31) < 16) { l1a = 100; } else { if (l1a > 0) { l1a -= 20; } } l1b = l1a; l2r = l1a; l2a = l1a; if (l2a > bg2alpha) { l2a = bg2alpha; } if ((time2 & 31) < 16) { l3a = 100; } else { if (l3a > 0) { l3a -= 20; } } l3r = l3a; if (l3a > bg2alpha) { l3a = bg2alpha; } if ((time3 & 31) < 16) { l4a = 100; } else { if (l4a > 0) { l4a -= 20; } } l4r = l4a; if (l4a > bg2alpha) { l4a = bg2alpha; } if ((time4 & 31) < 16) { l5a = 100; } else { if (l5a > 0) { l5a -= 20; } } l5b = l5a; l5r = l5a; if (l5a > bg2alpha) { l5a = bg2alpha; } if (rnd(100) < 55) { beamr = rnd(100) - 50; } } else { slomax = 100; slostep = 3; sloal += slodir; if (sloal >= slomax) { slodir = -slostep; } else { if (sloal < 0) { slodir = slostep; ++slowch; if (slowch > 3) { slowch = 0; } } } if (slowch == 0) { l2r = sloal; l5r = 0; l4r = 0; l3r = 0; } else { if (slowch == 1) { l3r = sloal; l5r = 0; l4r = 0; l2r = 0; } else { if (slowch == 2) { l4r = sloal; l5r = 0; l2r = 0; l3r = 0; } else { if (slowch == 3) { l5r = sloal; l2r = 0; l4r = 0; l3r = 0; } } } } } if (screen == 0) { sprite1_mc.gotoAndStop(2); sprite1_mc._x = l1x; sprite1_mc._y = l1y; sprite1_mc.swapDepths(2000); sprite1_mc._alpha = l1a; sprite7_mc.gotoAndStop(7); sprite7_mc._x = l1x + 241; sprite7_mc._y = l1y + 135; sprite7_mc.swapDepths(2001); sprite7_mc._alpha = l5b; } else { if (screen == 2) { sprite7_mc.gotoAndStop(4); sprite7_mc._x = l1x - 773; sprite7_mc._y = l1y + 135; sprite7_mc.swapDepths(2001); sprite7_mc._alpha = l1b; } else { sprite7_mc._alpha = 0; sprite1_mc._alpha = 0; } } if (screen == 1) { sprite2_mc.gotoAndStop(4); sprite2_mc._x = l2x; sprite2_mc._y = l2y; sprite2_mc._xscale = 100; sprite2_mc._yscale = 100; sprite2_mc.swapDepths(11000); sprite2_mc._alpha = l2r; sprite3_mc.gotoAndStop(5); sprite3_mc._x = l2x; sprite3_mc._y = l2y; sprite3_mc._xscale = 100; sprite3_mc._yscale = 100; sprite3_mc.swapDepths(11001); sprite3_mc._alpha = l3r; sprite4_mc.gotoAndStop(6); sprite4_mc._x = l2x; sprite4_mc._y = l2y; sprite4_mc._xscale = 100; sprite4_mc._yscale = 100; sprite4_mc.swapDepths(11002); sprite4_mc._alpha = l4r; sprite5_mc.gotoAndStop(7); sprite5_mc._x = l2x; sprite5_mc._y = l2y; sprite5_mc._xscale = 100; sprite5_mc._yscale = 100; sprite5_mc.swapDepths(11003); sprite5_mc._alpha = l5r; } else { if (screen != 8) { yx = 0; xs = 164; ay = 15 + screen; sprite2_mc.gotoAndStop(4); sprite2_mc._x = l2x; sprite2_mc._y = l2y + yx; sprite2_mc._xscale = xs; sprite2_mc._yscale = -100; sprite2_mc.swapDepths(11000); sprite2_mc._alpha = l2r / ay; sprite3_mc.gotoAndStop(5); sprite3_mc._x = l2x; sprite3_mc._y = l2y + yx; sprite3_mc._xscale = xs; sprite3_mc._yscale = -100; sprite3_mc.swapDepths(11001); sprite3_mc._alpha = l3r / ay; sprite4_mc.gotoAndStop(6); sprite4_mc._x = l2x; sprite4_mc._y = l2y + yx; sprite4_mc._xscale = xs; sprite4_mc._yscale = -100; sprite4_mc.swapDepths(11002); sprite4_mc._alpha = l4r / ay; sprite5_mc.gotoAndStop(7); sprite5_mc._x = l2x; sprite5_mc._y = l2y + yx; sprite5_mc._xscale = xs; sprite5_mc._yscale = -100; sprite5_mc.swapDepths(11003); sprite5_mc._alpha = l5r / ay; } } if (screen < 3 && (ssay < 54 || ssay == 54 & bg4alpha == 0 || ssay >= 61)) { sprite6_mc.gotoAndStop(3); if (screen == 1) { sprite6_mc._x = l3x; } else { if (screen == 0) { sprite6_mc._x = l3x + 620; } else { if (screen == 2) { sprite6_mc._x = l3x - 620; } } } sprite6_mc._y = l3y; sprite6_mc._yscale = 140 + fadjy; sprite6_mc._rotation = beamr; sprite6_mc.swapDepths(11004); if (screen == 1) { sprite6_mc._alpha = bg2alpha - 30; } else { sprite6_mc._alpha = 70; } } else { sprite6_mc._alpha = 0; } if (screen == 3) { if (ssay >= 92.3) { sprite13_mc.gotoAndStop(32); } else { sprite13_mc.gotoAndStop(33); } sprite13_mc._x = 322 - xscroll + 377; sprite13_mc._y = 402; sprite13_mc._xscale = 100; sprite13_mc._yscale = 100; sprite13_mc.swapDepths(10019); sprite13_mc._alpha = mikefade; } sprite13_mc._alpha = mikefade; if (screen == 6) { sprite13_mc._alpha = 0; sprite12_mc._alpha = 0; sprite11_mc._alpha = 0; sprite10_mc._alpha = 0; if (ssay < 93.79000000000001) { sprite9_mc._alpha = spritefade; } if (ssay >= 93.79000000000001 && ssay < 93.81999999999999) { if (slowjack) { fspeed = 6; } else { fspeed = 10 + strokes * 10 / 10; if (fspeed > 60) { fspeed = 60; } } rtbx = 280; if (ja < 180) { if (fspeed >= 30) { if (mousex != omousex) { movereset = 2; } } else { if (slowjack) { movereset = 2; fspeed = 6; } else { if (!movereset) { if (mousex < rtbx) { movereset = 1; } } else { if (movereset == 1) { if (mousex > rtbx) { movereset = 2; } } } } } if (movereset >= 2) { dx = fspeed - moveadd; moveadd += dx / 2; } else { if (fspeed > 30) { moveadd -= moveadd / 6; } else { if (fspeed > 20) { moveadd -= moveadd / 6; } else { moveadd -= moveadd / 8; } } } omousex = mousex; } else { dx = fspeed - moveadd; moveadd += dx / 4; if (mousex < rtbx) { movereset = 1; } } umoveadd = moveadd; ja += umoveadd; if (ja >= 180 && oja < 180) { movereset = 0; ++strokes; if (strokes == 58) { sayfile('mlove7.wav', 30); } } oja = ja; if (ja >= 360) { ja -= 360; } mon3 = ' spd:' + fspeed + ' strokes:' + strokes; jax = 200; jay = 234; jaa = sine(ja) * 37 / 10 - 3.7; jha = sine(ja) * 40 / 10; rda = sine(ja) * 16 / 10; jaoa = 144; jarad = 99.90000000000001; xadd = sine(jaoa + jaa) * jarad; yadd = -cosine(jaoa + jaa) * jarad; jhx = jax + xadd; jhy = jay + yadd; sprite8_mc.gotoAndStop(37); sprite8_mc._x = jax; sprite8_mc._y = jay; sprite8_mc._rotation = 45 + jaa; sprite8_mc.swapDepths(10024); sprite8_mc._alpha = spritefade; sprite9_mc.gotoAndStop(38); sprite9_mc._x = jhx; sprite9_mc._y = jhy; sprite9_mc._rotation = 45 + jaa + jha; sprite9_mc.swapDepths(10025); sprite9_mc._alpha = spritefade; sprite10_mc.gotoAndStop(40); sprite10_mc._x = jhx; sprite10_mc._y = jhy; sprite10_mc._rotation = 45 + jaa + jha; sprite10_mc.swapDepths(10027); sprite10_mc._alpha = spritefade; sprite11_mc.gotoAndStop(39); sprite11_mc._x = 269 + adjx; sprite11_mc._y = 326 + adjy; sprite11_mc._rotation = 45 + rda - 3.3; sprite11_mc.swapDepths(10026); sprite11_mc._alpha = spritefade; } } else { if (screen == 3 && ssay >= 100) { sprite12_mc._alpha = 0; sprite11_mc._alpha = 0; sprite10_mc._alpha = 0; sprite9_mc._alpha = 0; sprite8_mc._alpha = 0; } else { if (screen == 3 && ssay >= 93.2) { jenfr += 0.07000000000000001; jenbob = floor(jenfr & 1); sprite8_mc.gotoAndStop(24 + jenbob); sprite8_mc._alpha = spritefade2; sprite9_mc.gotoAndStop(35); sprite9_mc._x = 322 + xscroll - 32; sprite9_mc._y = 227; sprite9_mc._xscale = 100; sprite9_mc.swapDepths(10024); sprite9_mc._alpha = spritefade; } else { if (screen == 3 && ssay >= 87) { jenfr += 0.07000000000000001; jenbob = floor(jenfr & 1); shx = 35; shy = 0; sprite8_mc.gotoAndStop(24 + jenbob); sprite8_mc._x = 296 + shx - xscroll; sprite8_mc._y = 232 + shy; sprite8_mc._xscale = 100; sprite8_mc.swapDepths(10022); sprite8_mc._alpha = spritefade2; sprite9_mc.gotoAndStop(23); if (ssay >= 92) { sprite9_mc._x = -10000; } else { sprite9_mc._x = 905 - xscroll; } sprite9_mc._y = 272; sprite9_mc._xscale = 100; sprite9_mc.swapDepths(10024); sprite9_mc._alpha = spritefade; if (ssay >= 89) { if (ssay >= 92.40000000000001) { sprite10_mc.gotoAndStop(34); } else { if (ssay >= 92.2) { sprite10_mc.gotoAndStop(30); } else { sprite10_mc.gotoAndStop(26); } } if (ssay >= 92.40000000000001) { sprite10_mc._x = 322 - xscroll + 377; sprite10_mc._y = 402; } else { sprite10_mc._x = 905 - xscroll - 278; sprite10_mc._y = 422; } sprite10_mc._xscale = 100; sprite10_mc.swapDepths(10025); sprite10_mc._alpha = 100 - spritefade; if (ssay >= 93 && screen == 3) { sprite10_mc._alpha = 0; } if (ssay >= 92.3) { sprite11_mc.gotoAndStop(31); } else { if (ssay >= 92.09999999999999) { sprite11_mc.gotoAndStop(29); } else { sprite11_mc.gotoAndStop(27); } } sprite11_mc._x = 905 - xscroll - 278; sprite11_mc._y = 422; sprite11_mc._xscale = 100; sprite11_mc.swapDepths(10027); sprite11_mc._alpha = coat1fade; sprite12_mc.gotoAndStop(28); sprite12_mc._x = 905 - xscroll - 278; sprite12_mc._y = 422 + coatfall * 1.5; sprite12_mc._xscale = 100; sprite12_mc._yscale = 100 - coatfall; sprite12_mc.swapDepths(10026); sprite12_mc._alpha = coat2fade; sprite14_mc.gotoAndStop(346); sprite14_mc._x = 905 - xscroll - 278 - 88 + adjx; sprite14_mc._y = 140 + adjy; sprite14_mc._xscale = 100; sprite14_mc._yscale = 100; sprite14_mc.swapDepths(10009); sprite14_mc._alpha = lookcindy; } } else { if (screen == 3 && ssay >= 70) { jenfr += 0.065; jenbob = jenfr & 1; shy = 0; shx = 0; sprite9_mc.gotoAndStop(21 + jenbob); sprite9_mc._x = 296 + shx - xscroll; sprite9_mc._y = 232 + shy; if (ssay >= 76) { sprite8_mc.gotoAndStop(21 + jenbob); sprite8_mc._x = 296 + shx - xscroll; sprite8_mc._y = 232 + shy; } sprite9_mc._xscale = 100; sprite9_mc.swapDepths(10022); sprite9_mc._alpha = spritefade2; sprite8_mc._alpha = spritefade; } else { if (screen == 3 && ssay >= 69) { sprite8_mc.gotoAndStop(20); sprite8_mc._x = 322; sprite8_mc._y = 264; sprite8_mc._xscale = 100; sprite8_mc.swapDepths(10021); sprite8_mc._alpha = spritefade; } else { if (screen == 3 && (ssay < 50 || ssay >= 65)) { jenfr += 0.25; jenbob = jenfr & 3; if (jenbob == 3) { jenbob = 1; } jbx = 284; jby = 265; sprite8_mc.gotoAndStop(9 + jenbob); sprite8_mc._x = jbx; sprite8_mc._y = jby; sprite8_mc._xscale = 100; sprite8_mc.swapDepths(10001); if (ssay >= 66) { sprite8_mc._alpha = 100 - spritefade; } else { sprite8_mc._alpha = bg2alpha; } sprite9_mc.gotoAndStop(19); sprite9_mc._x = jbx; sprite9_mc._y = jby; sprite9_mc._xscale = 100; sprite9_mc.swapDepths(10007); sprite9_mc._alpha = spritefade; } else { if (screen == 1 && ssay >= 53) { if (ssay < 56) { dance = 12 + (time5 & 1); sprite8_mc.gotoAndStop(dance); sprite8_mc._x = 320; sprite8_mc._y = 480; sprite8_mc._xscale = 100; sprite8_mc.swapDepths(10011); sprite8_mc._alpha = 100 - spritefade; sprite9_mc.gotoAndStop(14); sprite9_mc._x = 320; sprite9_mc._y = 480; sprite9_mc._xscale = 100; sprite9_mc.swapDepths(10012); sprite9_mc._alpha = spritefade; } else { sprite8_mc.gotoAndStop(15); fadespeed = 3.5; if (ssay == 56) { spritefade -= 5; if (spritefade <= 0) { ssay = 57; sprite9_mc.gotoAndStop(16); fadeadd = fadespeed; } sprite8_mc._alpha = 100 - spritefade; sprite9_mc._alpha = spritefade; } else { if (ssay == 57 || ssay == 58) { spritefade += fadeadd; if (spritefade >= 100) { fadeadd = -fadespeed; } else { if (spritefade <= 0) { fadeadd = fadespeed; if (ssay == 58) { sprite9_mc.gotoAndStop(17); ssay = 59; } } } sprite8_mc._alpha = bg2alpha; sprite9_mc._alpha = spritefade; } else { if (ssay == 59) { if (spritefade < 100) { spritefade += fadeadd; } sprite8_mc._alpha = 100 - spritefade; sprite9_mc._alpha = spritefade; } } } } } else { if (screen == 8 && ssay >= 100) { sprite8_mc.gotoAndStop(123); sprite8_mc._x = katdoorx1; sprite8_mc._y = katdoory1; if (atdoor == 3) { sprite8_mc._xscale = -katscale; } else { sprite8_mc._xscale = katscale; } sprite8_mc._yscale = katscale; sprite8_mc.swapDepths(10011); sprite8_mc._alpha = katfade1; sprite8_mc._rotation = 0; sprite9_mc.gotoAndStop(124); sprite9_mc._x = katdoorx1; sprite9_mc._y = katdoory1; if (atdoor == 3) { sprite9_mc._rotation = 45 - karma; } else { sprite9_mc._rotation = -45 + karma; } if (atdoor == 3) { sprite9_mc._xscale = -katscale; } else { sprite9_mc._xscale = katscale; } sprite9_mc._yscale = katscale; sprite9_mc.swapDepths(10010); sprite9_mc._alpha = katfade1; sprite10_mc.gotoAndStop(123); sprite10_mc._x = katdoorx2; sprite10_mc._y = katdoory2; if (atdoor == 2) { sprite10_mc._xscale = -katscale2; } else { sprite10_mc._xscale = katscale2; } sprite10_mc._yscale = katscale2; sprite10_mc.swapDepths(10013); sprite10_mc._alpha = katfade2; sprite10_mc._rotation = 0; sprite11_mc.gotoAndStop(124); sprite11_mc._x = katdoorx2; sprite11_mc._y = katdoory2; if (atdoor == 2) { sprite11_mc._rotation = 45 - karma; } else { sprite11_mc._rotation = -45 + karma; } if (atdoor == 2) { sprite11_mc._xscale = -katscale2; } else { sprite11_mc._xscale = katscale2; } sprite11_mc._yscale = katscale2; sprite11_mc.swapDepths(10012); sprite11_mc._alpha = katfade2; sprite12_mc.gotoAndStop(125); sprite12_mc._x = opendoorx; sprite12_mc._y = opendoory; sprite12_mc.swapDepths(10008); sprite12_mc._alpha = katfade1; } else { if ((screen == 2 || screen == 4) && oscreen == 3 && ssay < 100) { sprite8_mc._alpha = bg2alpha; if (ssay >= 76) { sprite9_mc._alpha = bg2alpha; } } else { sprite8_mc._alpha = 0; } } } } } } } } } } } function saloon_arrow() { if (!buttonpress) { arel = 1; } if (speaking || ssay >= 21 && ssay < 34 || ssay >= 1 && ssay < 7 || ssay >= 11 && ssay < 16 || ssay >= 37 && ssay < 44 || ssay >= 45 && ssay < 47 || ssay >= 50 && ssay < 65 || ssay >= 67 && ssay < 76 || (ssay == 77 || ssay == 78) || ssay >= 80 && ssay < 87 || ssay >= 88 && ssay < 100 || screen == 2 && ssay == 48 || screen == 3 && ssay >= 100 && ssay < 107 || screen == 0 && ssay >= 100 && ssay < 105 || screen == 3 && ssay == 7 || screen == 3 && ssay == 8 || screen == 3 && ssay >= 36 && ssay <= 43) { arrowx = -10000; } else { if (mousey < 20 && screen == 5 && (ssay == 66 || ssay == 107)) { arrowx = 320; arrowy = 5; arrowdir = 0; if (buttonpress && arel) { oscreen = screen; screen = 8; arel = 0; if (ssay == 66) { ssay = 66.5; } else { ssay = 108; } mmax = 10; loopvol = 10; if (!mute) { yesSound.setVolume(loopvol); } } } else { if (mousex < 20 && mousey < 450 && screen > 0) { if (ssay == 79 && screen == 2 || screen == 5 && ssay == 66 || screen == 1 && ssay >= 105 || screen >= 3 && ssay >= 105 || screen == 2 && ssay == 49) { arrowx = -10000; } else { arrowx = 5; arrowy = 240; arrowdir = -90; if (buttonpress && arel) { oscreen = screen; if (screen == 6 && ssay == 100) { screen = 2; arel = 0; } else { if (screen == 5 && ssay == 87) { screen = 3; xscroll = 290; ssay = 88; wait = 90; } else { if (screen == 8 && ssay == 66.5) { screen = 5; arel = 0; } else { --screen; arel = 0; } } } } } } else { if (mousex > 620 && screen < 5) { if (ssay == 76 && screen == 3 || ssay == 100 || ssay == 35 || ssay == 47 && screen == 3) { arrowx = -10000; } else { if (ssay >= 44 && ssay < 65 && screen == 4) { } else { arrowx = 635; arrowy = 260; arrowdir = 90; if (buttonpress && arel) { oscreen = screen; ++screen; arel = 0; } } } } else { arrowx = -10000; } } } } arrow_mc.gotoAndStop(1); arrow_mc._x = arrowx; arrow_mc._y = arrowy; arrow_mc._rotation = arrowdir; arrow_mc.swapDepths(21004); } function dopartysay() { if (ssay == 0) { hotscreen = 2; hotx = 70; hoty = -70; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); mon4 = 'dxy:' + dx + ' ' + dy; tx = 103; ty = -74; if (dx < 15 && dy < 15 && screen == hotscreen) { saythisl(401, 70, bub4l, tx, ty); wait = 80; ssay = 1; } } else { if (ssay == 1) { if (wait) { --wait; } else { saythisl(402, 80, bub4l, tx, ty); ssay = 2; wait = 100; } } else { if (ssay == 2) { if (wait) { --wait; } else { saythisl(403, 70, bub4l, tx, ty); ssay = 3; } } else { if (ssay == 3) { hotscreen = 2; hotx = 5; hoty = -82; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); mon4 = 'dxy:' + dx + ' ' + dy; tx = -8; ty = -104; if (dx < 15 && dy < 15 && screen == hotscreen) { saythisl(174, 70, bub4r, tx, ty); wait = 80; ssay = 4; } } else { if (ssay == 4) { if (wait) { --wait; } else { tx = -130; ty = -94; saythisl(175, 70, bub4r, tx, ty); ssay = 5; } } else { if (ssay == 5) { hotscreen = 2; hotx = 70; hoty = -70; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); mon4 = 'dxy:' + dx + ' ' + dy; tx = -8; ty = -104; if (dx < 15 && dy < 15 && screen == hotscreen) { wait = 0; ssay = 6; } } else { if (ssay == 6) { if (bg3alpha < 100) { bg3alpha += 10; } else { tx = 110; ty = -109; saythisl(176, 70, bub4l, tx, ty); ssay = 7; } } else { if (ssay == 7) { hotscreen = 3; hotx = 2; hoty = -111; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); mon4 = 'dxy:' + dx + ' ' + dy; tx = 28; ty = -143; if (dx < 15 && dy < 15 && screen == hotscreen) { saythisl(177, 70, bub4l, tx, ty); wait = 80; ssay = 8; } } else { if (ssay == 8) { if (wait) { --wait; } else { tx = -66; ty = -84; saythisl(178, 70, bub4r, tx, ty); wait = 80; ssay = 9; } } else { if (ssay == 9) { if (wait) { --wait; if (wait < 10) { if (bg4alpha < 100) { bg4alpha += 10; } } } else { tx = 18; ty = -143; saythisl(179, 70, bub4l, tx, ty); ssay = 10; boodel = 80; } } else { if (ssay == 10) { hotscreen = 4; hotx = -57; hoty = -92; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); mon4 = 'dxy:' + dx + ' ' + dy; tx = -86; ty = -99; if (dx < 15 && dy < 15 && screen == hotscreen) { saythisl(180, 70, bub4r, tx, ty); wait = 80; ssay = 11; } } else { if (ssay == 11) { hotscreen = 4; hotx = 80; hoty = -90; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); mon4 = 'dxy:' + dx + ' ' + dy; tx = 101; ty = -90; if (dx < 15 && dy < 15 && screen == hotscreen) { saythisl(181, 70, bub4l, tx, ty); wait = 80; ssay = 12; } } else { if (ssay == 12) { hotscreen = 4; hotx = -57; hoty = -92; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); mon4 = 'dxy:' + dx + ' ' + dy; tx = -86; ty = -99; if (dx < 15 && dy < 15 && screen == hotscreen) { saythisl(182, 70, bub4r, tx, ty); wait = 80; ssay = 13; } } else { if (ssay == 13) { if (wait) { --wait; } else { saythisl(183, 70, bub4r, tx, ty); wait = 80; ssay = 14; } } else { if (ssay == 14) { if (wait) { --wait; } else { saythisl(184, 70, bub4r, tx, ty); wait = 90; ssay = 15; } } else { if (ssay == 15) { if (wait) { --wait; } else { saythisl(185, 70, bub4r, tx, ty); wait = 80; ssay = 16; } } else { if (ssay == 20) { hotscreen = 2; hotx = -91; hoty = -79; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); mon4 = 'dxy:' + dx + ' ' + dy + 'b3a:' + bg3alpha; tx = -86; ty = -110; if (dx < 15 && dy < 15 && screen == hotscreen) { ssay = 21; } } else { if (ssay == 21) { if (bg3alpha < 100) { bg3alpha += 10; } else { saythisl(186, 70, bub4l, tx, ty); wait = 80; ssay = 22; } } else { if (ssay == 22) { hotscreen = 2; hotx = -180; hoty = 0; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); mon4 = 'dxy:' + dx + ' ' + dy; tx = -86; ty = -110; if (dx < 15 && dy < 15 && screen == hotscreen) { ssay = 23; } } else { if (ssay == 23) { if (bg3alpha > 0) { bg3alpha -= 10; } else { tx = -164; ty = -23; saythisl(187, 70, bub4r, tx, ty); wait = 80; ssay = 24; } } else { if (ssay == 24) { if (wait) { --wait; } else { saythisl(188, 70, bub4r, tx, ty); wait = 80; ssay = 25; } } else { if (ssay == 25) { if (wait) { --wait; } else { saythisl(189, 70, bub4r, tx, ty); wait = 80; ssay = 26; } } else { if (ssay == 26) { if (wait) { --wait; } else { saythisl(190, 70, bub4r, tx, ty); wait = 80; ssay = 27; } } else { if (ssay == 27) { if (wait) { --wait; } else { saythisl(191, 70, bub4r, tx, ty); wait = 110; ssay = 28; } } else { if (ssay == 28) { if (wait) { --wait; } else { saythisl(192, 70, bub4r, tx, ty); wait = 100; ssay = 29; } } else { if (ssay == 29) { if (wait) { --wait; } else { jx = -127; jy = -69; saythisl(193, 70, bub4r, jx, jy); wait = 80; ssay = 30; } } else { if (ssay == 30) { if (wait) { --wait; } else { saythisl(194, 70, bub4r, tx, ty); wait = 100; ssay = 31; } } else { if (ssay == 31) { if (wait) { --wait; } else { jx = -127; jy = -69; saythisl(195, 70, bub4r, jx, jy); wait = 90; ssay = 33; } } else { if (ssay == 33) { if (wait) { --wait; } else { saythisl(196, 70, bub4r, tx, ty); wait = 100; ssay = 34; } } else { if (ssay == 35) { hotscreen = 3; hotx = 2; hoty = -111; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); mon4 = 'dxy:' + dx + ' ' + dy; tx = 28; ty = -143; if (dx < 15 && dy < 15 && screen == hotscreen) { saythisl(197, 70, bub4l, tx, ty); wait = 80; ssay = 36; } } else { if (ssay == 36) { hotscreen = 3; hotx = -30; hoty = -67; if (wait) { --wait; } else { dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); mon4 = 'dxy:' + dx + ' ' + dy; if (dx < 15 && dy < 15 && screen == hotscreen) { tx = -66; ty = -84; saythisl(198, 70, bub4r, tx, ty); wait = 100; ssay = 37; } } } else { if (ssay == 37) { if (wait) { --wait; } else { saythisl(199, 70, bub4r, tx, ty); wait = 80; ssay = 38; } } else { if (ssay == 38) { if (wait) { --wait; } else { saythisl(200, 70, bub4r, tx, ty); wait = 80; ssay = 39; } } else { if (ssay == 39) { if (wait) { --wait; } else { rx = 28; ry = -143; saythisl(201, 70, bub4l, rx, ry); wait = 100; ssay = 40; } } else { if (ssay == 40) { if (wait) { --wait; } else { saythisl(202, 70, bub4r, tx, ty); wait = 80; ssay = 41; } } else { if (ssay == 41) { if (wait) { --wait; } else { saythisl(203, 70, bub4r, tx, ty); wait = 80; ssay = 42; } } else { if (ssay == 42) { if (wait) { --wait; } else { rx = 28; ry = -143; saythisl(204, 70, bub4l, rx, ry); wait = 80; ssay = 43; } } else { if (ssay == 43) { if (wait) { --wait; } else { saythisl(205, 70, bub4r, tx, ty); wait = 80; ssay = 44; } } else { if (ssay == 44) { hotscreen = 4; hotx = -57; hoty = -92; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); mon4 = 'dxy:' + dx + ' ' + dy; tx = -86; ty = -99; if (dx < 15 && dy < 15 && screen == hotscreen) { saythisl(206, 70, bub4r, tx, ty); wait = 80; ssay = 45; } } else { if (ssay == 45) { hotscreen = 4; hotx = 5; hoty = 44; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); mon4 = 'dxy:' + dx + ' ' + dy; tx = -86; ty = -99; if (dx < 15 && dy < 15 && screen == hotscreen) { ssay = 46; } } else { if (ssay == 46) { if (bg3alpha < 100) { bg3alpha += 10; } else { saythisl(207, 70, bub4r, tx, ty); wait = 80; ssay = 47; } } else { if (ssay == 47) { hotscreen = 2; hotx = 70; hoty = -70; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); mon4 = 'dxy:' + dx + ' ' + dy; tx = 103; ty = -74; if (dx < 15 && dy < 15 && screen == hotscreen) { saythisl(208, 70, bub4l, tx, ty); wait = 80; ssay = 48; } } else { if (ssay == 48) { hotscreen = 2; hotx = -91; hoty = -79; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); mon4 = 'dxy:' + dx + ' ' + dy; tx = 103; ty = -74; if (dx < 15 && dy < 15 && screen == hotscreen) { ssay = 49; } } else { if (ssay == 49) { if (bg3alpha < 100) { bg3alpha += 10; } else { if (screen == 3) { ssay = 50; nomute = 1; omscreen = 0; } } } else { if (ssay == 50) { hotscreen = 3; hotx = 41; hoty = -130; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); mon4 = 'dxy:' + dx + ' ' + dy; tx = 86; ty = -140; if (dx < 15 && dy < 15 && screen == hotscreen) { saythisl(209, 70, bub4l, tx, ty); wait = 80; ssay = 51; } } else { if (ssay == 51) { hotscreen = 3; hotx = -122; hoty = -87; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); mon4 = 'dxy:' + dx + ' ' + dy; tx = -173; ty = -94; if (dx < 15 && dy < 15 && screen == hotscreen) { saythisl(210, 60, bub4r, tx, ty); wait = 30; ssay = 52; } } else { if (ssay == 52) { if (wait) { --wait; } else { if (bg4alpha < 100) { bg4alpha += 10; } else { ssay = 53; wait = 60; } } } else { if (ssay == 53) { if (wait) { --wait; } else { screen = 1; nomute = 1; if (bg4alpha > 0) { bg4alpha -= 2; } else { ssay = 54; wait = 140; pct = 100; } } } else { if (ssay == 54) { if (wait) { --wait; if (wait == 52) { ChangeTheme(Theme2); } } else { if (bg4alpha < 100) { bg4alpha += 2; spritefade += 2; } else { ssay = 55; wait = 80; } } } else { if (ssay == 55) { if (wait) { --wait; } else { ssay = 56; wait = 1080; } } else { if (ssay == 57) { if (wait) { --wait; } else { ssay = 58; wait = 200; } } else { if (ssay == 59) { if (wait) { --wait; } else { goblackslow = 1; ssay = 60; } } else { if (ssay == 61) { nomute = 0; hotscreen = 2; hotx = -15; hoty = 45; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); mon4 = 'dxy:' + dx + ' ' + dy; tx = -173; ty = -94; if (dx < 15 && dy < 15 && screen == hotscreen) { ssay = 62; } } else { if (ssay == 62) { if (bg3alpha < 100) { bg3alpha += 5; } else { tx = 38; ty = -139; saythisl(211, 70, bub4l, tx, ty); ssay = 63; wait = 80; } } else { if (ssay == 63) { if (wait) { --wait; } else { saythisl(212, 50, bub4l, tx, ty); ssay = 64; wait = 50; } } else { if (ssay == 64) { if (wait) { --wait; } else { tx = 129; ty = -79; saythisl(213, 70, bub4l, tx, ty); ssay = 65; wait = 80; } } else { if (ssay == 65) { if (screen == 5) { ssay = 66; swigs = 0; swigrel = 0; } } else { if (ssay == 66) { } else { if (ssay == 66.5) { hotscreen = 3; hotx = 29; hoty = 107; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); tx = -173; ty = -94; if (dx < 15 && dy < 15 && screen == hotscreen) { ssay = 67; wait = 40; swigrel = 0; } } else { if (ssay == 67) { if (spritefade < 100) { spritefade += 10; } else { if (wait) { --wait; } else { ssay = 68; } } } else { if (ssay == 68) { if (spritefade > 0) { spritefade -= 10; } else { ++swigs; if (swigs == 2) { hiphop = 1; ChangeTheme(JennyTheme); song = 1; tablewait = 160; } if (swigs < 3) { ssay = 66.5; } else { ssay = 68.5; wait = 40; } if (tablewait) { --tablewait; } } } else { if (ssay == 68.5) { if (tablewait) { --tablewait; } else { if (wait) { --wait; } else { wait = 40; ssay = 69; } } } else { if (ssay == 69) { if (bg4alpha < 100) { bg4alpha += 10; spritefade += 10; } if (wait) { --wait; if (wait == 20) { yell(); } } else { bg2_mc.gotoAndStop(34); bg4alpha = 0; ssay = 70; wait = 60; dx = 0.25; } } else { if (ssay == 70) { if (spritefade2 < 100) { spritefade2 += 10; spritefade = 100 - spritefade2; } if (wait) { --wait; if (wait == 2) { yell(); } } else {} } else { if (ssay == 71) { if (wait) { --wait; } else { tx = 232; ty = -96; saythisl(214, 70, bub4r, tx, ty); ssay = 72; wait = 80; } } else { if (ssay == 72) { if (wait) { --wait; } else { tx = -177; ty = -177; saythisl(215, 70, bub4l, tx, ty); ssay = 73; wait = 80; } } else { if (ssay == 73) { if (wait) { --wait; } else { tx = -177; ty = -177; saythisl(216, 70, bub4l, tx, ty); ssay = 74; wait = 70; } } else { if (ssay == 74) { if (wait) { --wait; } } else { if (ssay == 75) { yell(); ssay = 76; wait = 100; } else { if (ssay == 76) { if (wait) { --wait; } else { yell(); wait = 120; ssay = 76; } if (screen == 2) { ssay = 77; } } else { if (ssay == 77) { hotscreen = 2; hotx = -22; hoty = -84; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); tx = -173; ty = -94; if (dx < 15 && dy < 15 && screen == hotscreen) { tx = -5; ty = -100; saythisl(217, 70, bub4l, tx, ty); ssay = 78; wait = 70; } } else { if (ssay == 78) { hotscreen = 2; hotx = -76; hoty = -61; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); if (wait) { --wait; } if (dx < 15 && dy < 15 && screen == hotscreen && wait < 50) { tx = -134 + adjx; ty = -92; saythisl(218, 70, bub4r, tx, ty); ssay = 79; wait = 10; spritefade2 = 0; } } else { if (ssay == 79) { hotscreen = 5; hotx = 41; hoty = -49; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); if (wait) { --wait; } else { if (dx < 15 && dy < 15 && screen == hotscreen) { tx = 6; ty = -59; saythisl(219, 70, bub4r, tx, ty); ssay = 80; wait = 80; } } } else { if (ssay == 80) { hotscreen = 5; hotx = 150; hoty = -59; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); if (wait) { --wait; } else { if (dx < 15 && dy < 15 && screen == hotscreen) { tx = 171; ty = -72; saythisl(220, 70, bub4l, tx, ty); ssay = 81; wait = 80; } } } else { if (ssay == 81) { if (wait) { --wait; } else { tx = 40 + adjx; ty = -88 + adjy; saythisl(221, 70, bub4r, tx, ty); ssay = 82; wait = 80; } } else { if (ssay == 82) { if (wait) { --wait; } else { tx = 171; ty = -72; saythisl(222, 70, bub4l, tx, ty); ssay = 83; wait = 80; } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } if (ssay == 83) { if (wait) { --wait; } else { tx = 171; ty = -72; saythisl(223, 70, bub4l, tx, ty); ssay = 84; wait = 80; } } else { if (ssay == 84) { if (wait) { --wait; } else { tx = 171; ty = -72; saythisl(224, 70, bub4l, tx, ty); ssay = 85; wait = 120; } } else { if (ssay == 85) { if (wait) { --wait; } else { tx = 171; ty = -72; saythisl(225, 70, bub4l, tx, ty); ssay = 86; wait = 90; } } else { if (ssay == 86) { if (wait) { --wait; } else { tx = 40; ty = -88; saythisl(226, 70, bub4r, tx, ty); wait = 80; ssay = 87; bg4_mc.gotoAndStop(47); } } else { if (ssay == 87) { if (bg4alpha < 100) { bg4alpha += 5; } } else { if (ssay == 88) { if (wait) { --wait; } else { saythisl(227, 70, bub4r, 246, -138); wait = 90; ssay = 89; } } else { if (ssay == 89) { if (wait) { --wait; } else { wait = 30; ssay = 90; } } else { if (ssay == 90) { if (spritefade > 0) { spritefade -= 10; } if (coat1fade < 100) { coat1fade += 10; } coat2fade = coat1fade; if (wait) { --wait; } else { tx = 200; ty = -94; saythisl(228, 70, bub4l, tx, ty); wait = 90; ssay = 91; } } else { if (ssay == 91) { if (wait) { --wait; } else { if (coat1fade > 0) { coat1fade -= 20; } else { ssay = 92; wait = 40; } } } else { if (ssay == 92) { if (wait) { --wait; } else { coatfall += cfadd; cfadd += 0.1; if (coatfall > 200) { ssay = 92.09999999999999; coat2fade = 0; coat1fade = 0; wait = 40; } } } else { if (ssay == 92.09999999999999) { if (lookcindy < 100) { lookcindy += 25; } if (fwait) { --fwait; if (fwait == 0) { ssay = 92.2; } } else { if (wait) { --wait; } else { if (coat1fade < 100) { coat1fade += 10; } if (spritefade < 100) { spritefade += 10; } else { fwait = 80; } } } } else { if (ssay == 92.2) { if (lookcindy > 0) { lookcindy -= 25; } if (wait) { --wait; if (wait == 0) { ssay = 92.3; } } if (coat1fade > 0) { coat1fade -= 10; if (coat1fade == 0) { wait = 80; } } spritefade = coat1fade; } else { if (ssay == 92.3) { if (fwait) { --fwait; if (fwait == 0) { ssay = 92.40000000000001; } } else { if (coat1fade < 100) { coat1fade += 10; } if (spritefade < 100) { spritefade += 10; } else { fwait = 80; } } } else { if (ssay == 92.40000000000001) { if (fwait) { --fwait; if (fwait == 0) { ssay = 92.5; wait = 10; } } else { if (coat1fade > 0) { coat1fade -= 10; } if (spritefade > 0) { spritefade -= 10; } else { fwait = 30; } } } else { if (ssay == 92.5) { if (lookcindy < 100) { lookcindy += 25; } if (wait) { --wait; } else { saythisl(229, 70, bub4r, -2, 14); ssay = 92.59999999999999; wait = 80; } } else { if (ssay == 92.59999999999999) { if (wait) { --wait; } else { saythisl(230, 70, bub4r, 120, -79); ssay = 92.7; wait = 90; } } else { if (ssay == 92.7) { if (lookcindy > 0) { lookcindy -= 25; } if (wait) { --wait; } else { saythisl(231, 70, bub4r, 120, -79); ssay = 92.8; wait = 80; } } else { if (ssay == 92.8) { if (wait) { --wait; } else { saythisl(232, 70, bub4r, 120, -79); ssay = 92.90000000000001; wait = 80; } } else { if (ssay == 92.90000000000001) { if (wait) { --wait; } else { if (spritefade < 100) { spritefade += 20; } if (mikefade > 0) { mikefade -= 20; } if (xscroll < 1 && spritefade >= 100 && mikefade <= 0) { ssay = 93; } } } else { if (ssay == 93) { spritefade = 0; if (wait) { --wait; } else { saythisl(233, 60, bub4r, -142, -72); wait = 60; ssay = 93.09999999999999; } } else { if (ssay == 93.09999999999999) { if (wait) { --wait; } else { saythisl(234, 60, bub4l, 142, -72); wait = 60; ssay = 93.2; } } else { if (ssay == 93.2) { if (wait) { --wait; } else { if (spritefade < 100) { spritefade += 10; } spritefade2 = 100 - spritefade; if (spritefade == 100) { saythisl(235, 60, bub4l, 52, -99); ssay = 93.3; wait = 80; } } } else { if (ssay == 93.3) { if (wait) { --wait; } else { saythisl(236, 60, bub4l, 52, -99); ssay = 93.40000000000001; wait = 80; } } else { if (ssay == 93.40000000000001) { if (wait) { --wait; } else { tx = 20; ty = -174; saythisl(237, 60, bub4l, tx, ty); ssay = 93.5; wait = 80; } } else { if (ssay == 93.5) { if (wait) { --wait; } else { saythisl(238, 60, bub4l, tx, ty); ssay = 93.59999999999999; wait = 80; } } else { if (ssay == 93.59999999999999) { if (wait) { --wait; if (wait == 60) { yell(); } } else { ty = -174; saythisl(239, 60, bub4l, tx, ty); ssay = 93.7; wait = 80; } } else { if (ssay == 93.7) { if (wait) { --wait; } else { screen = 6; yell(); ssay = 93.70999999999999; wait = 80; } } else { if (ssay == 93.70999999999999) { if (wait) { --wait; } else { tx = 170; ty = -180; saythisl(240, 60, bub4l, tx, ty); ssay = 93.72; wait = 80; bg3_mc.gotoAndStop(37); } } } } } } } } } } } } } } } } } } } } } } } } } } } } } if (ssay == 93.72) { if (wait) { --wait; if (wait < 12) { if (bg3alpha < 100) { bg3alpha += 10; } } } else { bg_mc.gotoAndStop(37); bg3alpha = 0; tx = 163; ty = -33; saythisl(241, 60, bub4l, tx, ty); ssay = 93.73; wait = 80; } } else { if (ssay == 93.73) { if (wait) { --wait; } else { tx = 163; ty = -33; saythisl(242, 60, bub4l, tx, ty); ssay = 93.74; wait = 80; } } else { if (ssay == 93.74) { if (wait) { --wait; if (wait < 12) { bg3_mc.gotoAndStop(38); if (bg3alpha < 100) { bg3alpha += 10; } } } else { tx = 163; ty = -33; saythisl(243, 60, bub4l, tx, ty); ssay = 93.75; wait = 120; } } else { if (ssay == 93.75) { if (wait) { --wait; if (wait < 12) { bg4_mc.gotoAndStop(39); if (bg4alpha < 100) { bg4alpha += 10; } } } else { tx = 163; ty = -33; yell(); saythisl(244, 60, bub4l, tx, ty); ssay = 93.76000000000001; wait = 100; } } else { if (ssay == 93.76000000000001) { if (wait) { --wait; if (wait < 12) { bg3_mc.gotoAndStop(40); if (bg4alpha > 0) { bg4alpha -= 10; } } } else { tx = 163; ty = -33; yell(); saythisl(245, 60, bub4l, tx, ty); ssay = 93.77; wait = 80; } } else { if (ssay == 93.77) { if (wait) { --wait; } else { tx = 163; ty = -33; yell(); saythisl(246, 60, bub4l, tx, ty); ssay = 93.78; wait = 20; } } else { if (ssay == 93.78) { hotscreen = 6; hotx = 19; hoty = 44; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); if (wait) { --wait; } else { if (dx < 15 && dy < 15 && screen == hotscreen) { ssay = 93.79000000000001; wait = 80; fspeed = 4; intensity = 50; moveadd = 0; movereset = 0; strokes = 0; } } } else { if (ssay == 93.79000000000001) { bg4_mc.gotoAndStop(41); if (bg4alpha < 100) { bg4alpha += 10; } spritefade = bg4alpha; if (strokes >= 60) { tx = 121; ty = -71; saythisl(247, 60, bub4l, tx, ty); slowjack = 1; ssay = 93.8; bg3_mc.gotoAndStop(41); bg3alpha = 100; bg4_mc.gotoAndStop(42); wait = 80; } } else { if (ssay == 93.8) { if (wait) { --wait; if (wait == 40) { yell(); } } else { bg_mc.gotoAndStop(43); ssay = 93.81; wait = 40; } } else { if (ssay == 93.81) { if (bg4alpha > 0) { bg4alpha -= 10; } spritefade = bg4alpha; bg3alpha = spritefade; if (wait) { --wait; } else { saythisl(248, 70, bub4r, -164, -54); ssay = 93.81999999999999; wait = 80; bg4_mc.gotoAndStop(44); } } else { if (ssay == 93.81999999999999) { if (wait) { --wait; if (wait == 10) { saythisl(249, 70, bub4r, 82, -182); } if (wait == 1) { yell(); } } else { if (bg4alpha < 100) { bg4alpha += 10; } else { ssay = 93.83; wait = 120; } } } else { if (ssay == 93.83) { if (wait) { --wait; if (wait == 60) { saythisl(250, 70, bub4r, 82, -182); } } else { if (bg4alpha > 0) { bg4alpha -= 10; } else { saythisl(251, 70, bub4r, 82, -182); ssay = 93.84; wait = 80; bg4_mc.gotoAndStop(45); sprite8_mc.gotoAndStop(41); sprite8_mc._x = 496; sprite8_mc._y = 194; sprite8_mc.swapDepths(10011); sprite8_mc._alpha = bg4alpha; } } } else { if (ssay == 93.84) { sprite8_mc.gotoAndStop(41); sprite8_mc._x = 496; sprite8_mc._y = 194; sprite8_mc._rotation = 0; sprite8_mc.swapDepths(10011); sprite8_mc._alpha = bg4alpha; if (wait) { --wait; } else { if (bg4alpha < 100) { bg4alpha += 10; } else { saythisl(252, 70, bub4r, 82, -182); ssay = 93.84999999999999; wait = 80; } } } else { if (ssay == 93.84999999999999) { if (wait < 25) { sprite8_mc.gotoAndStop(43); skfall += sfadd; sfadd += 0.5; } else { if (wait < 55) { sprite8_mc.gotoAndStop(42); } else { sprite8_mc.gotoAndStop(41); } } sprite8_mc._x = 496; sprite8_mc._y = 194 + skfall; sprite8_mc._rotation = 0; sprite8_mc.swapDepths(10011); sprite8_mc._alpha = bg4alpha; if (wait) { --wait; } else { if (skfall > 300) { saythisl(253, 70, bub4r, 82, -182); ssay = 93.86; wait = 80; sprite8_mc._alpha = 0; bg3_mc.gotoAndStop(46); bg3alpha = 100; } } } else { if (ssay == 93.86) { if (bg4alpha > 0) { bg4alpha -= 10; } if (wait) { --wait; } else { ssay = 100; } } else { if (ssay == 100) { hotscreen = 0; hotx = -112; hoty = 0; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); if (wait) { --wait; } else { if (dx < 15 && dy < 15 && screen == hotscreen) { tx = -134; ty = -2; saythisl(254, 70, bub4r, tx, ty); ssay = 101; wait = 80; } } } else { if (ssay == 101) { if (wait) { --wait; } else { bdx = 45; bdy = -33; saythisl(255, 70, bub4l, bdx, bdy); ssay = 102; wait = 80; } } else { if (ssay == 102) { if (wait) { --wait; } else { saythisl(256, 70, bub4l, bdx, bdy); ssay = 103; wait = 80; } } else { if (ssay == 103) { if (wait) { --wait; } else { saythisl(257, 70, bub4l, bdx, bdy); ssay = 104; wait = 80; } } else { if (ssay == 104) { if (wait) { --wait; } else { saythisl(258, 70, bub4r, tx, ty); ssay = 105; } } else { if (ssay == 105) { if (screen > 0 && speakdelay > 1) { speakdelay = 1; } hotscreen = 3; hotx = -106; hoty = -40; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); if (dx < 15 && dy < 15 && screen == hotscreen) { tx = -157; ty = -45; saythisl(259, 70, bub4r, tx, ty); ssay = 106; wait = 80; } } else { if (ssay == 106) { if (wait) { --wait; } else { tx = -94; ty = -78; saythisl(260, 70, bub4r, tx, ty); ssay = 107; katdoorx1 = 135; katdoory1 = 247; karma = -27; } } else { if (ssay == 107 || ssay == 108) { if (screen > 3 && speakdelay > 1) { speakdelay = 1; } katfade1 = 100 - bg2alpha; hotx = -203; hoty = 45; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); if (dx < 6 && dy < 6) { ssay = 109; rmousex = mousex; rmousey = mousey + 20; kreset = 0; rattles = 0; adx = 0; wait = 0; atdoor = 0; katfade2 = 0; } } else { if (ssay == 109 || ssay == 110) { dy = rmousey - mousey; if (dy < 0) { dy = 0; } adx += (dy - adx) / 4; karma = -27 + adx / 2; if (karma > 3) { karma = 3; if (ssay == 109) { ssay = 110; } kreset = 1; } if (ssay == 110 && karma < -3) { karma = -3; if (kreset) { kreset = 0; ++rattles; if (rattles == 2) { if (atdoor == 3) { dooropen = 1; tx = katdoorx1 - 309; ty = katdoory1 - 258; saythisl(262, 70, bub4r, tx, ty); wait = 80; } else { tx = katdoorx1 - 309; ty = katdoory1 - 258; saythisl(261, 70, bub4l, tx, ty); wait = 80; } } } } if (wait) { --wait; if (wait == 0) { if (atdoor < 3) { switchdoor = 1; } else { if (!goblack) { goblack = 1; ssay = 119; } } } } if (switchdoor) { if (switchdoor == 1) { switchdoor = 5; } karma -= karma / 4; if (switchdoor < 100) { switchdoor += 5; katfade1 = 100 - switchdoor; katfade2 = switchdoor; } else { ++atdoor; switchdoor = 0; katdoorx1 = katdoorx2; katdoory1 = katdoory1; katfade1 = 100; katfade2 = 0; katscale = katscale2; rmousex = katdoorx1 - 27; adx = 0; rattles = 0; } } if (atdoor == 0) { katdoorx2 = 256; katdoory2 = 247; katscale2 = 95; rmousey = 304; } else { if (atdoor == 1) { katdoorx2 = 465; katdoory2 = 247; katscale2 = 79; rmousey = 308; } else { if (atdoor == 2) { katdoorx2 = 594; katdoory2 = 247; katscale2 = 79; rmousey = 312; } else { if (atdoor == 3) { katdoorx2 = 10; rmousey = 316; } } } } katdoory2 = 247 + adjy; if (dooropen) { opendoorx = 605; opendoory = 265; } } } } } } } } } } } } } } } } } } } } } } } } } mon5 = 'sw:' + swigs; } function doeaster1() { mon4 = 'easter:' + easter + ' ' + eggphase + ' 3a:' + bg3a + ' ' + bg4a; if (!easter1started) { wait = 20; tinaegg4 = 0; tinaegg3 = 0; eggphase = 0; drinks4 = 0; drinks3 = 0; bg4a = 0; bg3a = 0; easter1started = 1; } if (eggphase == 0) { if (bg3a < 100) { bg3a += 10; } else { if (wait) { --wait; } else { eggphase = 1; wait = 40; drinks4 = 1; tinaegg4 = 1; } } } else { if (eggphase == 1) { if (bg4a < 100) { bg4a += 10; } else { if (wait) { --wait; } else { eggphase = 2; wait = 80; drinks3 = 1; } } } else { if (eggphase == 2) { if (bg4a > 0) { bg4a -= 10; } else { if (wait) { if (wait == 59) { saythisl(263, 55, 18, 0, -170); } --wait; } else { wait = 40; eggphase = 3; drinks4 = 2; } } } else { if (eggphase == 3) { if (bg4a < 100) { bg4a += 10; } else { if (wait) { --wait; } else { eggphase = 4; wait = 80; drinks3 = 2; } } } else { if (eggphase == 4) { if (bg4a > 0) { bg4a -= 10; } else { if (wait) { if (wait == 59) { saythisl(264, 55, 18, 0, -170); } --wait; } else { wait = 40; eggphase = 5; drinks4 = 3; } } } else { if (eggphase == 5) { if (bg4a < 100) { bg4a += 10; } else { if (wait) { --wait; } else { eggphase = 6; wait = 70; drinks3 = 3; } } } else { if (eggphase == 6) { if (bg4a > 0) { bg4a -= 10; } else { if (wait) { if (wait == 59) { saythisl(265, 55, 18, 0, -170); } --wait; } else { wait = 40; eggphase = 7; drinks4 = 4; tinaegg4 = 2; } } } else { if (eggphase == 7) { if (bg4a < 100) { bg4a += 10; } else { if (wait) { --wait; } else { eggphase = 8; } } } else { if (eggphase == 8) { if (bg4a > 0) { bg4a -= 10; bg3a = bg4a; } else { easter = 0; sprite23_mc.gotoAndStop(495); sprite24_mc.gotoAndStop(495); } } } } } } } } } } sprite23_mc.swapDepths(20003); sprite23_mc.gotoAndStop(496 + drinks3); sprite23_mc._x = 258 + fadjx; sprite23_mc._y = 354 + fadjy; sprite23_mc._alpha = bg3a; sprite24_mc.swapDepths(20013); sprite24_mc.gotoAndStop(496 + drinks4); sprite24_mc._x = 258 + fadjx; sprite24_mc._y = 354 + fadjy; sprite24_mc._alpha = bg4a; bg3_mc.swapDepths(20002); bg3_mc.gotoAndStop(90 + tinaegg3); bg3_mc._x = 320; bg3_mc._y = 240; bg3_mc._alpha = bg3a; bg4_mc.swapDepths(20012); bg4_mc.gotoAndStop(90 + tinaegg4); bg4_mc._x = 320; bg4_mc._y = 240; bg4_mc._alpha = bg4a; } function doeaster2() { mon4 = 'easter:' + easter + ' ' + eggphase + ' 3a:' + bg3a + ' ' + bg4a; if (!easter2started) { wait = 40; eggphase = 0; bg4a = 0; bg3a = 0; easter2started = 1; } if (eggphase == 0) { if (bg4a < 100) { bg4a += 10; } else { if (wait) { --wait; } else { saythisl(266, 70, bub4r, -59, -172); wait = 90; eggphase = 8; } } } else { if (eggphase == 8) { if (wait) { --wait; } else { if (bg4a > 0) { bg4a -= 10; } else { easter = 0; easter2started = 0; } } } } bg4_mc.swapDepths(20012); bg4_mc.gotoAndStop(93); bg4_mc._x = 320; bg4_mc._y = 240; bg4_mc._alpha = bg4a; } function ibath4() { hideall(); room = 2; roomlevel = room2level; level = roomlevel; bg2alpha = 0; ssay = 0; wait = 60; spritefade = 0; reach = 0; wipe = 0; uwipe = 0; owipe = 0; strokes = 0; tissuefall = 0; tfadd = 0; hframe = 0; sarahjump = 0; sjt = 0; touched = 0; wreset = 0; bg4a = 100; a1 = 100; a2 = 0; sla = 0; slick = 0; slickh = 0; slmod = 1; slspeed = 10; tfuck = 0; tfuckl = 0; divex = 0; t2ya = 0; va2 = 0; va1 = 0; va = 0; strokes = 0; hesitant = 10; sstrokes = 10; umoveadd = 0; moveadd = 0; auto = 0; kill2 = 0; shuddadd = 0; shudder = 0; shang = 0; orgasm = 0; shang = 0; shudder = 0; cummed = 0; squirts = 0; arch = 0; breath = 0; ba = 0; relax = 0; ostr = 102; gush = 0; ooze = [0, 0, 0, 0, 0, 0, 0, 0]; drip = [0, 0, 0, 0, 0, 0, 0, 0]; drips = [0, 0, 0, 0, 0, 0, 0, 0]; ewait = 0; s2sw = 0; if (bath4done) { ssay = 2; bg4a = 0; cummed = 1; orgasm = 2; sspeed = 2; auto = 1; gush = 0.1; ewait = 60; bg2alpha = 100; a2 = bg2alpha; a1 = 100 - a2; } scenestarted = 1; ChangeTheme(TinaTheme); } function dobath4() { if (!scenestarted) { ibath4(); } dospritesbath4(); dobathsay4(); bg_mc.swapDepths(0); bg2_mc.swapDepths(3000); bg4_mc.swapDepths(20000); bg4_mc.gotoAndStop(77); bg_mc.gotoAndStop(78); bg2_mc.gotoAndStop(79); bg_mc._x = 320; bg_mc._y = 240; bg_mc._xscale = 100; bg_mc._yscale = 100; bg2_mc._x = 320; bg2_mc._y = 240; bg2_mc._xscale = 100; bg2_mc._yscale = 100; bg4_mc._x = 320; bg4_mc._y = 240; bg4_mc._xscale = 100; bg4_mc._yscale = 100; bg_mc._alpha = 100; bg2_mc._alpha = bg2alpha; bg4_mc._alpha = bg4a; doarrow(); } function dospritesbath4() { hotx = -36; if (ssay == 2) { hoty = 31; } else { hoty = 0; } if (cummed) { } else { sspeed = 10 + strokes * 0.3; } if (sla < 180) { if (auto) { movereset = 2; } else { if (sspeed >= 10) { if (mousey != omousey) { movereset = 2; } } else { if (!movereset) { if (cmousey < hoty) { movereset = 1; } } else { if (movereset == 1) { if (cmousey > hoty) { movereset = 2; } } } } } if (movereset >= 2) { dx = sspeed - moveadd; moveadd += dx / 2; } else { if (sspeed > 30) { moveadd -= moveadd / 6; } else { if (sspeed > 20) { moveadd -= moveadd / 6; } else { moveadd -= moveadd / 8; } } } omousey = mousey; } else { dx = sspeed - moveadd; moveadd += dx / 4; if (cmousey < hoty) { movereset = 1; } } umoveadd = moveadd; if (shudder) { sla += 12 + adjx; } else { sla += umoveadd; } if (sla >= 360) { sla -= 360; if (strokes == 101 && ssay == 2) { } else { ++strokes; } if (orgasm) { } else { if (sstrokes > 0) { --sstrokes; if (sstrokes <= 0) { if (ssay == 2) { ssay = 1; } else { if (ssay == 1) { ssay = 2; } } say('coh'); sstrokes = 10; } } } if (orgasm) { if (s2sw) { --s2sw; if (s2sw == 0) { ssay = 2; } } if (strokes == ostr + 0 || strokes == ostr + 2 || strokes == ostr + 4 || strokes == ostr + 6 || strokes == ostr + 8 || strokes == ostr + 10 || strokes == ostr + 13 || strokes == ostr + 16) { shudder = 20; ++squirts; if (orgasm == 2) { gush = 0.1; } squirting = 1; usquirt = squirts + 4; if (usquirt > 7) { usquirt -= 7; } moanvol = 20; say('moan'); if (orgasm == 2) { va = 1; } if (squirts >= 7) { if (orgasm == 2) { cummed = 1; sspeed = 2; ewait = 200; } else { orgasm = 2; ostr = strokes + 4; squirts = 0; s2sw = 2; } } } } else { if (strokes == ostr) { orgasm = 1; auto = 1; shudder = 20; squirts = 1; squirting = 1; moanvol = 20; say('moan'); } } } if (sla >= 180 && osla < 180) { movereset = 0; } osla = sla; mon5 = 'sspeed:' + sspeed + ' a:' + auto; slick = sine(sla - 45) * slmod; slickh = sine(sla - 53 - 45) * slmod; slickt = sine(sla + 81 - 120) * slmod; tfuck = sine(sla - 32 - 45) * slmod; tfuckl = sine(sla + 9 - 45) * slmod; if (shudder) { shang += 141; sqdeptab = [0, 1, 2, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 2, 1, 0, 0]; depth = sqdeptab[shudder]; shuddadd = sine(shang) * (depth * 0.07000000000000001); --shudder; } else { shuddadd = 0; } if (va > 0) { va += 8; if (va >= 360) { va = 0; } contract = sine(va) * 100; if (contract < 0) { contract = 0; } va1 = contract * 2; if (contract >= 50) { va2 = (contract - 50) * 2; va1 = 100 - va2; } else { va1 = contract * 2; va2 = 0; } } tpx = 379; tpy = 280; trlx = tpx - 97; trly = tpy + 91; aoa = 157; arad = 84; xadd = sine(aoa + tpa) * arad; yadd = -cosine(aoa + tpa) * arad; tllx = tpx + xadd; tlly = tpy + yadd; aoa = -133; arad = 133; xadd = sine(aoa + tpa) * arad; yadd = -cosine(aoa + tpa) * arad; trlx = tpx + xadd; trly = tpy + yadd; sprite10_mc.gotoAndStop(337); sprite10_mc._x = tpx; sprite10_mc._y = tpy; sprite10_mc._rotation = tpa - 45; sprite10_mc.swapDepths(2020); sprite10_mc._alpha = a1; sprite15_mc.gotoAndStop(339); sprite15_mc._x = tpx; sprite15_mc._y = tpy; sprite15_mc._rotation = tpa - 45; sprite15_mc.swapDepths(2015); sprite15_mc._alpha = a1; sprite13_mc.gotoAndStop(335); sprite13_mc._x = trlx; sprite13_mc._y = trly; sprite13_mc._rotation = trla + 45; sprite13_mc.swapDepths(2040); sprite13_mc._alpha = a1; sprite14_mc.gotoAndStop(336); sprite14_mc._x = tllx; sprite14_mc._y = tlly; sprite14_mc._rotation = tlla - 45; sprite14_mc.swapDepths(2050); sprite14_mc._alpha = a1; sx = tpx + 133 - 8 + adjx; sy = tpy - 232 - 6 + adjy; sx += divex; slhx = tpx + 210; slhy = tpy + 150; slbx = tpx + 0 + fadjx; slby = tpy - 0 + fadjy; aoa = -97; arad = 221; xadd = sine(aoa + sca) * arad; yadd = -cosine(aoa + sca) * arad; shx = sx + xadd; shy = sy + yadd; sprite2_mc.gotoAndStop(340); sprite2_mc._x = sx; sprite2_mc._y = sy; sprite2_mc._rotation = 30 + sca; sprite2_mc.swapDepths(2018); sprite2_mc._alpha = a1; sprite3_mc.gotoAndStop(341); sprite3_mc._x = shx; sprite3_mc._y = shy; sprite3_mc._rotation = 45 + sha; sprite3_mc.swapDepths(2100); sprite3_mc._alpha = a1; sprite4_mc.gotoAndStop(342); sprite4_mc._x = slhx; sprite4_mc._y = slhy; sprite4_mc._rotation = -45 + slha; sprite4_mc.swapDepths(2120); sprite4_mc._alpha = a1; sprite5_mc.gotoAndStop(343); sprite5_mc._x = slhx - 14; sprite5_mc._y = slhy - 17; sprite5_mc._rotation = slha; sprite5_mc.swapDepths(1990); sprite5_mc._alpha = a1; sprite6_mc.gotoAndStop(344); sprite6_mc._x = shx + tox + tgx; sprite6_mc._y = shy + toy + tgy; sprite6_mc._rotation = 45 + sha; sprite6_mc.swapDepths(2025); sprite6_mc._alpha = a1; s2hx = 230; s2hy = 189 + s2ya; aoa = -109; arad = 41; xadd = sine(aoa + s2ha) * arad; yadd = -cosine(aoa + s2ha) * arad; s2llx = s2hx + xadd; s2lly = s2hy + yadd; aoa = 96; arad = 187; xadd = sine(aoa + s2ha) * arad; yadd = -cosine(aoa + s2ha) * arad; s2rlx = s2hx + xadd; s2rly = s2hy + yadd; aoa = 113.2 + wadjx / 10; arad = 112.7 + wadjy / 10; xadd = sine(aoa + s2ha) * arad; yadd = -cosine(aoa + s2ha) * arad; vx = s2hx + xadd; vy = s2hy + yadd; sprite7_mc.gotoAndStop(348); sprite7_mc._x = s2hx; sprite7_mc._y = s2hy; sprite7_mc._rotation = -45 + s2ha; sprite7_mc.swapDepths(3020); sprite7_mc._alpha = a2; sprite8_mc.gotoAndStop(351); sprite8_mc._x = s2llx; sprite8_mc._y = s2lly; sprite8_mc._rotation = 30 + s2lla; sprite8_mc.swapDepths(3038); sprite8_mc._alpha = a2; sprite9_mc.gotoAndStop(352); sprite9_mc._x = s2rlx; sprite9_mc._y = s2rly; sprite9_mc._rotation = -30 + s2rla; sprite9_mc.swapDepths(3040); sprite9_mc._alpha = a2; sprite24_mc.gotoAndStop(353); sprite24_mc._x = s2hx; sprite24_mc._y = s2hy; sprite24_mc._rotation = 0; sprite24_mc.swapDepths(3010); sprite24_mc._alpha = a2; sprite18_mc.gotoAndStop(365); sprite18_mc._x = vx; sprite18_mc._y = vy; sprite18_mc._rotation = +s2ha; sprite18_mc.swapDepths(3021); sprite18_mc._alpha = va1; sprite19_mc.gotoAndStop(366); sprite19_mc._x = vx; sprite19_mc._y = vy; sprite19_mc._rotation = +s2ha; sprite19_mc.swapDepths(3022); sprite19_mc._alpha = va2; t2x = s2hx + 105 + adjx; t2y = s2hy + 283 + t2ya + adjy; t2cha = 0; aoa = -87; arad = 215; xadd = sine(aoa + t2cha) * arad; yadd = -cosine(aoa + t2cha) * arad; t2lax = t2x + xadd; t2lay = t2y + yadd; aoa = 56; arad = 158; xadd = sine(aoa + t2cha) * arad; yadd = -cosine(aoa + t2cha) * arad; t2rax = t2x + xadd; t2ray = t2y + yadd; tbx = t2x - 68; tby = t2y - 21; thdx = t2x + t2hxa; thdy = t2y + t2hya; aoa = -1; arad = 185; xadd = sine(aoa + t2ha) * arad; yadd = -cosine(aoa + t2ha) * arad; tongx = thdx + xadd; tongy = thdy + yadd; sprite20_mc.gotoAndStop(355); sprite20_mc._x = t2x; sprite20_mc._y = t2y; sprite20_mc._rotation = -30; sprite20_mc.swapDepths(3110); sprite20_mc._alpha = a2; sprite21_mc.gotoAndStop(356); sprite21_mc._x = t2lax; sprite21_mc._y = t2lay; sprite21_mc._rotation = -30 + tlaa; sprite21_mc.swapDepths(3120); sprite21_mc._alpha = a2; sprite1_mc.gotoAndStop(359); sprite1_mc._x = t2lax; sprite1_mc._y = t2lay; sprite1_mc._rotation = -65 + tlaa; sprite1_mc.swapDepths(3121); sprite1_mc._alpha = a2; sprite22_mc.gotoAndStop(357); sprite22_mc._x = t2rax; sprite22_mc._y = t2ray + tray; sprite22_mc._rotation = 30 + traa; sprite22_mc.swapDepths(3109); sprite22_mc._alpha = a2; sprite23_mc.gotoAndStop(358); sprite23_mc._x = thdx; sprite23_mc._y = thdy; sprite23_mc._rotation = 45 + t2ha; sprite23_mc.swapDepths(3130); sprite23_mc._alpha = a2; sprite12_mc.gotoAndStop(360); sprite12_mc._x = tongx + tnx; sprite12_mc._y = tongy + tny; sprite12_mc._rotation = 45 + t2ha + tga; sprite12_mc.swapDepths(3129); sprite12_mc._alpha = a2; sprite25_mc.gotoAndStop(362); sprite25_mc._x = tbx; sprite25_mc._y = tby; sprite25_mc._rotation = 0; sprite25_mc.swapDepths(3003); sprite25_mc._alpha = a2; if (kill2) { sprite1_mc.gotoAndStop(8); sprite7_mc.gotoAndStop(8); sprite8_mc.gotoAndStop(8); sprite9_mc.gotoAndStop(8); sprite18_mc.gotoAndStop(8); sprite19_mc.gotoAndStop(8); sprite20_mc.gotoAndStop(8); sprite22_mc.gotoAndStop(8); sprite22_mc.gotoAndStop(8); sprite23_mc.gotoAndStop(8); sprite24_mc.gotoAndStop(8); sprite25_mc.gotoAndStop(8); } if (gush > 0) { if (gush < 99.75) { dx = 100 - gush; gush += dx / 2; } else { gush = 0; ooze[squirts] = 100; drip[squirts] = 0; drips[squirts] = 0.8; } } aoa = 116.2 + wadjx; arad = 114.7 + wadjy; xadd = sine(aoa + s2ha) * arad; yadd = -cosine(aoa + s2ha) * arad; c0x = s2hx + xadd; c0y = s2hy + yadd; sperm0_mc.gotoAndStop(20); sperm0_mc._x = c0x; sperm0_mc._y = c0y; sperm0_mc._yscale = gush; sperm0_mc._xscale = sperm0_mc._yscale; sperm0_mc._rotation = s2ha - 45; sperm0_mc.swapDepths(3023); sperm0_mc._alpha = gush; i = 0; while (i < 8) { if (ooze[i]) { aoa = 116.2 + drip[i] * 0.24; arad = 114.7 + drip[i] * 0.14; xadd = sine(aoa + s2ha) * arad; yadd = -cosine(aoa + s2ha) * arad; oozex = s2hx + xadd; oozey = s2hy + yadd; ii = i + 1; _root['sperm' + ii + '_mc'].gotoAndStop(20); _root['sperm' + ii + '_mc']._x = oozex; _root['sperm' + ii + '_mc']._y = oozey; _root['sperm' + ii + '_mc']._xscale = 100; _root['sperm' + ii + '_mc']._yscale = 100; _root['sperm' + ii + '_mc']._rotation = s2ha - 45; _root['sperm' + ii + '_mc'].swapDepths(3024 + i); _root['sperm' + ii + '_mc']._alpha = ooze[i]; ooze[i] -= 0.5; if (ooze[i] < 100) { drip[i] += drips[i]; if (drips[i] > 0.1) { drips[i] -= 0.01; } } } ++i; } } function dobathsay4() { if (ssay == 0) { if (wait) { --wait; } else { ssay = 2; } } else { if (ssay == 1) { if (bg4a > 0) { bg4a -= 10; } if (bg2alpha > 0) { bg2alpha -= 10; } a1 = 100 - bg2alpha; a2 = bg2alpha; if (bg2alpha == 0) { kill2 = 1; } } else { if (ssay == 2) { kill2 = 0; if (bg4a > 0) { bg4a -= 10; } if (bg2alpha < 100) { bg2alpha += 10; } a2 = bg2alpha; a1 = 100 - a2; } } } sca = slick * 3.1; sha = slickh * -2.3; slha = slick * 1; divex = slick * +qadjx / 10; tox = -13; toy = -5; tgx = slickt * -10.4; tgy = slickt * -11.6; tpfuck = tfuck + shuddadd; tpfuckl = tfuckl + shuddadd; tpa = tpfuck * -2; tlla = -tpfuckl * 0.6; trla = tpfuck * 0.6; t2ha = slickh * 2; t2ya = slick * -2.5; t2hxa = slickh * -4.8; t2hya = slickh * -3.3; tnx = slick * -4.9; tny = slick * -5.2; tga = slickt * -14.1; traa = tfuck * -0.5; tray = slick * 4; tlaa = 10 + tfuck * 0.3; tpfuck = tfuck + shuddadd; s2ha = tpfuck * 1.5; s2lla = -tpfuck * 0; s2rla = tpfuck * -0.6; s2ya = tpfuck * -3; if (ewait) { --ewait; if (ewait == 0) { goblackslow = 1; bath4done = 1; } } if (a2 < va1) { va1 = a2; } if (a2 < va2) { va2 = a2; } if (0 && buttonpress) { strokes = 100; sstrokes = 10; ssay = 1; } mon4 = ' str:' + strokes + ' sstr:' + sstrokes; } function ibath() { hideall(); room = 2; roomlevel = room2level; level = roomlevel; bg2alpha = 0; ssay = 0; wait = 40; spritefade = 0; reach = 0; wipe = 0; uwipe = 0; owipe = 0; strokes = 0; tissuefall = 0; tfadd = 0; hframe = 0; sarahjump = 0; sjt = 0; touched = 0; wreset = 0; yscrolld = 0; yscroll = 0; ysmove = 0; ka = 0; ta = 0; kspeed = 10; kiss = 0; sarahwide = 0; tinabackd = 25; tinaback = 25; moving = 0; tshad = 10; tsha = 10; telad = 34; tela = 34; telam = 0; tsham = 0; sta = 0; stad = 0; stam = 0; hiprotd = 0; hiprot = 0; shad = 0; sha = 0; sham = 0; ppa = 0; sla = 0; syposd = 0; sypos = 0; sxposd = 0; sxpos = 0; schad = 0; scha = 0; if (level == 2) { ssay = 0; } else { if (level == 3) { ssay = 5; } } penergy = 0; kenergy = 0; attacharrow = 0; arrowcursor = 0; tinalookd = 0; tinalook = 0; inzone = 0; stoopd = 0; stoop = 0; bendoverd = 0; bendover = 0; stoopm = 0; rta = 0; lta = 0; tit = 1; tits = 0; strokes = 0; scenestarted = 1; telm = 0; tshm = 0; steps = 0; breset = 1; idle = 0; qa = 0; qv = 0; qamp = 0; quiver = 0; residual = 0; qbend = 0; skipf = 0; auto = 0; stoplicking = 0; warp = 0; bg3_mc._alpha = 0; bg4_mc._alpha = 0; bg2alpha = 0; bg2_mc._alpha = 0; if (level == 1 && bath1done) { ssay = 4; warp = 1; } if (level == 2 && bath2done) { ssay = 5; bendoverd = 17; bendover = 17; stoopd = 72; stoop = 72; tinabackd = 76; tinaback = 76; strokes = 0; tits = 0; tit = 1; telam = 0; tsham = 0; stoopm = 0; } if (level == 3 && bath3done) { yscroll = -180; bendoverd = 43 + adjx; bendover = bendoverd; stoopd = 257 + adjy; stoop = stoopd; tinalookd = 23 + qadjx; tinalook = tinalookd; tshad = 1; tsha = 1; telad = -69; tela = -69; shad = 7 + qadjy; sha = shad; schad = 0; scha = 0; syposd = 9; syspo = 9; ssay = 7; hiprot = 34 + fadjy; hiprotd = hiprot; tsha = 34 + zadjx; tshad = tsha; tela = -49 + zadjy; telad = tela; sha = 28; sla = sha; sypos = 42; syposd = 42; scha = 11; schad = 11; ssay = 8; steps = 10; tinalook = 41 + steps * (-26 + fadjy) / 10; tinalookd = tinalook; sha = 28 + steps * (4 + fadjx) / 10; shad = sha; sta = 15; stad = 15; stoopd = 255 + steps * 50 / 10; stoop = stoopd; tinabackd = 226 + steps * 10 / 10; tinaback = tinabackd; ssay = 11; } ChangeTheme(TinaTheme); } function dobath() { if (room2level == 4) { dobath4(); return undefined; } if (!scenestarted) { ibath(); } if (level >= 2) { if (easter == 5) { doeaster5(); return undefined; } hotx = -30; hoty = -90; dx = cmousex - hotx; dy = cmousey - hoty; if (level == 2 && abs(dx) < 20 && abs(dy < 30) && butrel && buttonpress) { butrel = 0; easter = 5; } dospritesbath2(); dobathsay2(); bg_mc.swapDepths(0); bg_mc.gotoAndStop(67); bg_mc._alpha = 100; bg_mc._x = 320; bg_mc._y = 376 + yscroll; bg_mc._xscale = 100; bg_mc._yscale = 100; } else { dospritesbath(); dobathsay(); bg_mc.swapDepths(0); bg2_mc.swapDepths(10000); bg_mc.gotoAndStop(52); bg_mc._x = 320; bg_mc._y = 240; bg_mc._xscale = 100; bg_mc._yscale = 100; bg2_mc._x = 320; bg2_mc._y = 240; bg2_mc._xscale = 100; bg2_mc._yscale = 100; bg_mc._alpha = 100; bg2_mc._alpha = bg2alpha; } doarrow(); } function dospritesbath() { spx = 293; spy = 299; if (ssay == 4) { spx = 290; spy = 251; sprite1_mc.gotoAndStop(58); } else { sprite1_mc.gotoAndStop(46); } sprite1_mc._x = spx; sprite1_mc._y = spy; sprite1_mc.swapDepths(2000); sprite1_mc._alpha = 100 - spritefade; twx = 429; twy = 247; if (ssay == 4) { sprite10_mc.gotoAndStop(59); } else { sprite10_mc.gotoAndStop(47); } sprite10_mc._x = twx; sprite10_mc._y = twy; sprite10_mc.swapDepths(2020); sprite10_mc._alpha = 100 - spritefade; spx = 290; spy = 251; sprite2_mc.gotoAndStop(48 + sarahjump); sprite2_mc._x = spx; sprite2_mc._y = spy; sprite2_mc.swapDepths(2001); sprite2_mc._alpha = spritefade; twx = 375; twy = 243; tax = twx + 24; tay = twy - 118; taa = -37 + reach + uwipe * 2; aoa = 209; arad = 73; xadd = sine(aoa + taa) * arad; yadd = -cosine(aoa + taa) * arad; tlax = tax + xadd; tlay = tay + yadd; tea = taa + reach + uwipe * -4.3; hoa = 235; hrad = 52; xadd = sine(hoa + tea) * hrad; yadd = -cosine(hoa + tea) * hrad; thx = tlax + xadd; thy = tlay + yadd; tha = qadjx + tea + uwipe * -2; sprite11_mc.gotoAndStop(50); sprite11_mc._x = twx; sprite11_mc._y = twy; sprite11_mc.swapDepths(2021); sprite11_mc._alpha = spritefade; twbx = twx - 48; twby = twy + 51; sprite12_mc.gotoAndStop(51); sprite12_mc._x = twbx; sprite12_mc._y = twby; sprite12_mc.swapDepths(1990); sprite12_mc._alpha = spritefade; sprite13_mc.gotoAndStop(52); sprite13_mc._x = tax; sprite13_mc._y = tay; sprite13_mc._rotation = -45 + taa; sprite13_mc.swapDepths(2030); sprite13_mc._alpha = spritefade; sprite14_mc.gotoAndStop(53); sprite14_mc._x = tlax; sprite14_mc._y = tlay; sprite14_mc._rotation = -45 + tea; sprite14_mc.swapDepths(2031); sprite14_mc._alpha = spritefade; sprite15_mc.gotoAndStop(54 + hframe); sprite15_mc._x = thx; sprite15_mc._y = thy; sprite15_mc._rotation = -45 + tha; sprite15_mc.swapDepths(2032); sprite15_mc._alpha = spritefade; sprite16_mc.gotoAndStop(55); if (tissuefall) { sprite16_mc._x = tfx; sprite16_mc._y = tfy + tissuefall; sprite16_mc._rotation = -45 + tfa; } else { sprite16_mc._x = thx; sprite16_mc._y = thy; sprite16_mc._rotation = -45 + tha; } sprite16_mc.swapDepths(2029); sprite16_mc._alpha = spritefade; } function dobathsay() { if (ssay == 0) { if (wait) { --wait; } else { tx = -104; ty = -82; saythisl(312, 70, bub4r, tx, ty); sayfile('pee1.mp3'); wait = 80; ssay = 1; } } else { if (ssay == 1) { if (wait) { --wait; } else { if (spritefade < 100) { spritefade += 5; } else { ssay = 2; } } } else { if (ssay == 2) { hotx = 66; hoty = 30; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); tx = 98; ty = -161; if (dx < 15 && dy < 15) { saythisl(313, 70, bub4l, tx, ty); ssay = 3; rmousex = mousex; } mon5 = 'dxy:' + dx + ' ' + dy; } else { if (ssay == 3) { if (reach < 23) { dx = rmousex - mousex; if (dx < 0) { dx = 0; } reach = dx / 4; wipe = 0; } else { reach = 23; if (touched == 0) { touched = 1; sarahjump = 1; sayfile('nnh1.mp3', 100); sjt = 20; } dy = thy - mousey; wipe = -dy / 4; if (tissuefall > 1) { if (lim > 1.24) { lim -= 0.01; } } else { lim = 1.5; } if (wipe > lim) { wipe = lim; } if (wipe < -lim) { wipe = -lim; } } dx = wipe - uwipe; uwipe += dx / 2; uwipe = uwipe; if (uwipe > 0 && owipe < 0) { ++strokes; if (strokes == 20) { ssay = 4; sayfile('nnh2.mp3', 100); wait = 60; } } owipe = uwipe; if (tissuefall) { if (uwipe > 1 && wreset) { sarahjump = 0; wreset = 0; } if (uwipe < 0) { wreset = 1; sarahjump = 1; } mon5 = 'rst:' + wreset + ' ' + uwipe; } if (!tissuefall) { if (strokes > 6) { tissuefall = 0.1; tfadd = 0.5; tfx = thx; tfy = thy; tfa = tha; } } else { if (tissuefall < 230) { tissuefall += tfadd; tfadd += 0.75; if (uwipe < 0) { hframe = 2; } else { hframe = 3; } } else { if (uwipe < 0) { hframe = 2; } else { hframe = 3; } } } if (sjt && !tissuefall) { --sjt; if (sjt == 0) { sarahjump = 0; } } } else { if (ssay == 4) { if (spritefade > 0) { spritefade -= 5; } if (wait) { --wait; } else { if (!goblackslow) { goblackslow = 1; bath1done = 1; } } } } } } } mon4 = 'strokes:' + strokes; } function dospritesbath2() { sx = 465 + skissx + sxpos; sy = 335 + skissy + sypos; aoa = 12; arad = 254; xadd = sine(aoa + sca) * arad; yadd = -cosine(aoa + sca) * arad; shdx = sx + xadd; shdy = sy + yadd; aoa = 30; arad = 196; xadd = sine(aoa + sca) * arad; yadd = -cosine(aoa + sca) * arad; sax = sx + xadd; sarmy = sy + yadd; saa = 0; aoa = 158; arad = 73; xadd = sine(aoa + sta + stam) * arad; yadd = -cosine(aoa + sta + stam) * arad; shlx = sx + xadd; shly = sy + yadd; aoa = 18.4; arad = 88.40000000000001; xadd = sine(aoa + sca) * arad; yadd = -cosine(aoa + sca) * arad; ltx = sx + xadd; lty = sy + yadd; aoa = 18.4; arad = 88.40000000000001; xadd = sine(aoa + sca) * arad; yadd = -cosine(aoa + sca) * arad; rtx = sx + xadd; rty = sy + yadd; aoa = 226; arad = 55; xadd = sine(aoa + sha + ppa) * arad; yadd = -cosine(aoa + sha + ppa) * arad; srlx = shlx + xadd; srly = shly + yadd; aoa = 164; arad = 56; xadd = sine(aoa + sha + ppa) * arad; yadd = -cosine(aoa + sha + ppa) * arad; sllx = shlx + xadd; slly = shly + yadd; sprite1_mc._x = sx; sprite1_mc._y = sy + yscroll; sprite1_mc._rotation = -45 + sca; sprite1_mc.gotoAndStop(172); sprite1_mc.swapDepths(2010); sprite1_mc._alpha = 100; sprite2_mc._x = sx; sprite2_mc._y = sy + yscroll; sprite2_mc._rotation = -45 + sta + stam; sprite2_mc.gotoAndStop(183); sprite2_mc.swapDepths(2005); sprite2_mc._alpha = 100; sprite8_mc._x = shlx; sprite8_mc._y = shly + yscroll; sprite8_mc._rotation = -45 + sha + ppa; sprite8_mc.gotoAndStop(173); sprite8_mc.swapDepths(2000); sprite8_mc._alpha = 100; sprite22_mc._x = shlx; sprite22_mc._y = shly + yscroll; sprite22_mc._rotation = -45 + sha + ppa; sprite22_mc.gotoAndStop(189); sprite22_mc.swapDepths(2218); if (level == 2) { sprite22_mc._alpha = 0; } else { sprite22_mc._alpha = 100; } sprite3_mc._x = shdx; sprite3_mc._y = shdy + yscroll; sprite3_mc._rotation = -45 + shda; sprite3_mc.gotoAndStop(174); sprite3_mc.swapDepths(2020); sprite3_mc._alpha = 100; sprite5_mc._x = shdx; sprite5_mc._y = shdy + yscroll; sprite5_mc._rotation = -45 + shda; if (tinaback && ssay < 2) { sface = 0; } else { if (sarahwide) { --sarahwide; sface = 2; } else { sface = 1; } } sprite5_mc.gotoAndStop(176 + sface); sprite5_mc.swapDepths(2021); sprite5_mc._alpha = 100; sprite4_mc._x = sax; sprite4_mc._y = sarmy + yscroll; sprite4_mc._rotation = -30 + saa; sprite4_mc.gotoAndStop(175); sprite4_mc.swapDepths(2030); sprite4_mc._alpha = 100; sprite6_mc._x = ltx; sprite6_mc._y = lty + yscroll; sprite6_mc._rotation = -45 + lta; sprite6_mc.gotoAndStop(181); sprite6_mc.swapDepths(2011); sprite6_mc._alpha = 100; sprite7_mc._x = rtx; sprite7_mc._y = rty + yscroll; sprite7_mc._rotation = -45 + rta; sprite7_mc.gotoAndStop(182); sprite7_mc.swapDepths(2012); sprite7_mc._alpha = 100; sprite20_mc._x = srlx; sprite20_mc._y = srly + yscroll; sprite20_mc._rotation = -30 + sla; sprite20_mc.gotoAndStop(163); sprite20_mc.swapDepths(1999); sprite20_mc._alpha = 100; sprite21_mc._x = sllx; sprite21_mc._y = slly + yscroll; sprite21_mc._rotation = -30 + sla; sprite21_mc.gotoAndStop(187); sprite21_mc.swapDepths(2001); sprite21_mc._alpha = 100; tx = 203 + kissx - stoplicking; ty = 406 + kissy; aoa = 198; arad = 111; xadd = sine(aoa + tha) * arad; yadd = -cosine(aoa + tha) * arad; trlx = tx + xadd; trly = ty + yadd; trla = 0; aoa = 214; arad = 122; xadd = sine(aoa + tha) * arad; yadd = -cosine(aoa + tha) * arad; tllx = tx + xadd; tlly = ty + yadd; tlla = 0; aoa = 28; arad = 255; xadd = sine(aoa + tta) * arad; yadd = -cosine(aoa + tta) * arad; thx = tx + xadd; thy = ty + yadd; azoa = 26.6; arad = 205; xadd = sine(aoa + tta) * arad; yadd = -cosine(aoa + tta) * arad; tshx = tx + xadd; tshy = ty + yadd; aoa = 164; arad = 174; xadd = sine(aoa + tsha + tshm) * arad; yadd = -cosine(aoa + tsha + tshm) * arad; telx = tshx + xadd; tely = tshy + yadd; sprite10_mc._x = tx; sprite10_mc._y = ty + yscroll; sprite10_mc._rotation = -45 + tta; sprite10_mc.gotoAndStop(165); sprite10_mc.swapDepths(2200); sprite10_mc._alpha = 100; sprite11_mc._x = tx; sprite11_mc._y = ty + yscroll; sprite11_mc._rotation = 45 + tha; sprite11_mc.gotoAndStop(166); sprite11_mc.swapDepths(2190); sprite11_mc._alpha = 100; sprite12_mc._x = tllx; sprite12_mc._y = tlly + yscroll; sprite12_mc._rotation = 45 + tlla; sprite12_mc.gotoAndStop(167); sprite12_mc.swapDepths(2180); sprite12_mc._alpha = 0; sprite13_mc._x = trlx; sprite13_mc._y = trly + yscroll; sprite13_mc._rotation = 45 + trla; sprite13_mc.gotoAndStop(168); sprite13_mc.swapDepths(2210); sprite13_mc._alpha = 0; if (ssay >= 8 && yscroll < -50) { if (h2a < 100) { h2a += 10; } else { if (h1a > 0) { h1a -= 10; } } } else { h1a = 100; h2a = 0; } sprite14_mc._x = thx; sprite14_mc._y = thy + yscroll; sprite14_mc._rotation = -30 + thda; sprite14_mc.gotoAndStop(169); sprite14_mc.swapDepths(2231); sprite14_mc._alpha = h1a; sprite18_mc._x = thx; sprite18_mc._y = thy + yscroll; sprite18_mc._rotation = -30 + thda; sprite18_mc.gotoAndStop(188); sprite18_mc.swapDepths(2232); sprite18_mc._alpha = h2a; sprite15_mc._x = tshx; sprite15_mc._y = tshy + yscroll; sprite15_mc._rotation = 45 + tsha + tshm; sprite15_mc.gotoAndStop(170); sprite15_mc.swapDepths(2230); sprite15_mc._alpha = 100; sprite16_mc._x = telx; sprite16_mc._y = tely + yscroll; sprite16_mc._rotation = 45 + tela + telm; if (ssay >= 7) { sprite16_mc.gotoAndStop(185); } else { sprite16_mc.gotoAndStop(171); } sprite16_mc.swapDepths(2240); sprite16_mc._alpha = 100; sprite17_mc._x = thx - 9 + frenchx; sprite17_mc._y = thy + frenchy + yscroll; sprite17_mc._rotation = -30 + thda; if (ssay >= 4) { tonguetype = 1; } else { tonguetype = 0; } sprite17_mc.gotoAndStop(179 + tonguetype); sprite17_mc.swapDepths(2217); sprite17_mc._alpha = 100; } function dobathsay2() { kmod = 1; if (ssay == 10) { kspeed = 10 + kenergy * 0.09; } else { kspeed = 10 + tits * 2; } ka += kspeed; ta += kspeed * 4; rkiss = sine(ka) * kmod; rpump = sine(ka + 48) * kmod; rpump2 = sine(ka - 48) * kmod; rtongue = sine(ta) * kmod; kiss = 0; pump = 0; pump2 = 0; energy = (kenergy + penergy) / 2; tkiss = rkiss * energy / 100; skiss = rkiss * energy / 100; tpump = rpump * energy / 100; spump = rpump2 * energy / 100; tongue = rtongue * fenergy / 100; if (ssay == 9) { kissx = 191 + bounce * 1.6; kissy = -24 + bounce * 2.3; thda = -42 + bounce * 1.8; tta = -28 + bounce * -1.5; tshm = bounce * -0.8; telm = bounce * 0.1; } else { if (ssay == 10) { kissx = 191 + bounce * 1.6; kissy = -24 + bounce * 2.3; thda = -42 + bounce * 1.8; tta = -28 + bounce * -1.5; tshm = bounce * -0.8; telm = bounce * 0.1; if (!stoplicking) { stopmod = 1; } else { tmp = stoplicking; if (tmp > 5) { tmp = 5; } stopmod = (5 - tmp) / 5; } kissx += tpump * 2.8 * stopmod; thda += tpump * -2.8 * stopmod; thda += skiss * -2.3 * stopmod; kissx += skiss * -3.6 * stopmod; tta += skiss * -1.1 * stopmod; if (stoplicking) { frenchx = 5 - stoplicking; } else { frenchx = -tpump * -3.2; frenchy = 0; frenchx += 5; frenchy += -2; } } else { kissx = 192 + tpump * 1.5; kissy = -24 + tkiss * -2.3; thda = -42 + tkiss * 2.5; tta = -28 + skiss * -1; } } kissx += -6; kissy += 3 + stoop; kissx -= tinaback; tha = -17 + pump * 2; thda += tinalook; tta += bendover; tha += hiprot; shda = 20 + tkiss * 1.7; if (ssay >= 8) { skissx = 0; ppa = +(skiss * (29 + zadjy) / 10); stam = skiss * (20 + zadjx) / 10; sca = -3; sca -= quiver / 1.5; sca -= qbend; sca += spump * -0.5; sca += scha; ppa += quiver * 1.5; ppa += qbend * 2; } else { sca = -3 + skiss * -0.6; sca += spump * -0.5; sca += scha; skissx = +(spump * 3.7); } skissy = 0; if (ssay >= 10) { } else { if (ssay >= 5) { frenchx = -10; lta -= lta / 8; rta -= rta / 8; } else { if (ssay == 4) { if (debug && buttonpress) { penergy = 125; kenergy = 125; } frenchx = -tpump * 2.6; frenchy = -tpump * 3.7; frenchx += 6; frenchy += -8; lick = sine(ka - 183) * 5; if (tit == 1) { fx = lick - 1.9; if (fx < 0) { fx = 0; } lta = fx * 1.5; } else { if (tit == 2) { fx = lick - 1.9; if (fx < 0) { fx = 0; } rta = fx * 1.5; } } tshm = spump * -2; telm = spump * 0.3; } else { frenchx = tongue * 5; if (spump >= 0) { frenchx -= 10; } if (frenchx > 1 && !sarahwide) { sarahwide = 12; } frenchy = 0; } } } dx = tshad - tsha; if (abs(dx) > 0.25) { if (abs(tsham) < abs(dx / 8)) { tsha += tsham; if (dx > 0) { tsham += 0.25; } else { tsham -= 0.25; } } else { tsha += dx / 8; } } dx = telad - tela; if (abs(dx) > 0.25) { if (abs(telam) < abs(dx / 8)) { tela += telam; if (dx > 0) { telam += 0.25; } else { telam -= 0.25; } } else { tela += dx / 8; } } dx = tinalookd - tinalook; if (abs(dx) > 0.25) { tinalook += dx / 8; } dx = bendoverd - bendover; if (abs(dx) > 0.25) { bendover += dx / 8; } dx = hiprotd - hiprot; if (abs(dx) > 0.25) { hiprot += dx / 8; } dx = stoopd - stoop; if (abs(dx) > 0.25) { if (abs(stoopm) < abs(dx / 8)) { stoop += stoopm; if (dx > 0) { stoopm += 0.25; } else { stoopm -= 0.25; } } else { stoop += dx / 8; } } if (ssay >= 4) { dx = tinabackd - tinaback; if (abs(dx) > 0.25) { tinaback += dx / 8; } } dx = shad - sha; if (abs(dx) > 0.25) { if (abs(sham) < abs(dx / 8)) { sha += sham; if (dx > 0) { sham += 0.25; } else { sham -= 0.25; } } else { sha += dx / 8; } } dx = stad - sta; if (abs(dx) > 0.25) { sta += dx / 8; } dx = schad - scha; if (abs(dx) > 0.25) { scha += dx / 8; } dx = syposd - sypos; if (abs(dx) > 0.25) { sypos += dx / 8; } dx = sxposd - sxpos; if (abs(dx) > 0.25) { sxpos += dx / 8; } if (yscroll > yscrolld) { if (yscroll > yscrolld / 2) { yscroll += ysmove; ysmove -= 0.25; } else { dx = yscrolld - yscroll; yscroll += dx / 8; } } qv += 102; qvib = sine(qv); if (qa) { qa += 5; if (qa >= 128) { qa = 0; } else { if (residual < 10) { ++residual; } } qamp = sine(qa); qbend = qamp * adjy / 10; quiver = (qvib * qamp / 1) * 0.2; quiver += (qvib * residual / 10) * 0.1; } else { if (stoplicking) { if (residual < 15) { ++residual; } } else { if (residual) { residual -= 0.25; } } quiver = (qvib * residual / 10) * 0.1; } if (ssay == 0) { hotx = 77; hoty = -139; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); tx = 103; ty = -74; mmx = mousex - omousex; omousex = mousex; if (dx < 15 && dy < 15 && mmx > 0) { moving = 0.25; tshad = 7; telad = -14; telam = 0; tsham = 0; } if (moving > 0) { tinaback -= moving; moving += 0.25; if (tinaback <= 0) { tinaback = 0; ssay = 1; kenergy = 30; } } } else { if (ssay == 1) { hotx = 116; hoty = -145; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); mmx = mousex - omousex; omousex = mousex; if (dx < 60 && cmousey < -90 && abs(mmx > 4)) { kmoving = 4; kenergy += 1.8; if (penergy >= 80) { kmax = 125; } else { kmax = 100; } if (kenergy > kmax) { kenergy -= 2; } } else { kenergy -= 0.1; if (kenergy < 0) { kenergy = 0; } if (kmoving) { --kmoving; } } if (kenergy >= 50 && dx < 60 && cmousey >= 140) { pmoving = 4; penergy += 1.8; if (kenergy >= 80) { pmax = 125; } else { pmax = 100; } if (penergy > pmax) { penergy -= 2; } } else { penergy -= 0.1; if (penergy < 0) { penergy = 0; } if (pmoving) { --pmoving; } } if (kmoving || pmoving) { arrowcursor = 1; if (cmousex > 116) { arrowangle = 270; } else { arrowangle = 90; } } else { if (arrowcursor) { Mouse.show(); } arrowcursor = 0; } if (kenergy >= 75 && penergy >= 75) { fenergy = (kenergy + penergy - 150) * 2.25; if (fenergy > 150) { fenergy = 150; } } else { fenergy = 0; } if (kenergy >= 120 && penergy >= 120) { ++inzone; } if (debug && buttonpress) { ssay = 4; strokes = 0; tits = 0; } if (inzone > 40) { ssay = 2; moving = 0.25; fenergy = 0; tinalookd = 14; wait = 80; Mouse.show(); arrowcursor = 0; } } else { if (ssay == 2) { hold = 20; if (kenergy > hold) { kenergy -= 2; } if (penergy > hold) { penergy -= 2; } if (tinaback < 25) { tinaback += moving; moving += 0.25; } else { dx = 50 - tinaback; tinaback += dx / 8; } if (wait) { --wait; } else { tinalookd = 46; ssay = 3; } } else { if (ssay == 3) { hotx = 74; hoty = -102; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); mmy = mousey - omousey; omousey = mousey; if (dx < 15 && dy < 15 && mmy > 0) { moving = 0.25; bendoverd = 17; stoopd = 72; tinabackd = 76; ssay = 4; strokes = 0; tits = 0; tit = 1; telam = 0; tsham = 0; stoopm = 0; } } else { if (ssay == 4) { if (ka > 360) { ka -= 360; if (kenergy >= 80) { ++strokes; stmx = 8 - tits / 2; if (stmx < 2) { stmx = 2; } if (strokes >= stmx) { strokes = 0; ++tits; if (tits >= 8) { ssay = 5; wait = 80; stoopm = 0; } else { if (tit == 1) { tit = 2; } else { tit = 1; } telam = 0; tsham = 0; stoopm = 0; } } } } bendoverd = 17; tinalookd = 46; if (tit == 1) { stoopd = 68 + qadjy; tinabackd = 78 + qadjx; tshad = 33 + adjx; telad = -31 + adjy; } else { if (tit == 2) { stoopd = 68 + qadjy; tinabackd = 116 + qadjx; tshad = 21 + adjx; telad = -30 + adjy; } } hotx = 120; hoty = -18; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); mmx = mousex - omousex; omousex = mousex; if (dx < 160 && dy < 130 && abs(mmx > 4)) { kmoving = 4; kenergy += 1.8; kmax = 125; if (kenergy > kmax) { kenergy -= 2; } } else { kenergy -= 0.1; if (kenergy < 0) { kenergy = 0; } if (kmoving) { --kmoving; } } penergy = kenergy; if (kmoving || pmoving) { arrowcursor = 1; if (cmousex > 116) { arrowangle = 270; } else { arrowangle = 90; } } else { if (arrowcursor) { Mouse.show(); } arrowcursor = 0; } } else { if (ssay == 5) { if (arrowcursor) { Mouse.show(); arrowcursor = 0; } tits = 0; if (level == 2) { if (kenergy > 20) { kenergy -= 1; } penergy = kenergy; } else { if (level == 3) { kenergy = 20; penergy = 20; } } bendoverd = 8; tinalookd = -2; stoopd = 68; tinabackd = 116; tshad = 12 + fadjx; telad = 25 + fadjy; if (level == 3) { bendover = bendoverd; tinalook = tinalookd; stoop = stoopd; tinaback = tinabackd; tsha = tshad; tela = telad; } if (wait) { --wait; } else { if (level == 2 && !goblackslow) { goblackslow = 1; bath2done = 1; } else { if (level == 3) { ssay = 6; omousey = mousey; telam = 0; tsham = 0; stoopm = 0; } } } } else { if (ssay == 6) { hotx = 23; hoty = -74; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); mmy = mousey - omousey; omousey = mousey; if (dx < 15 && dy < 15 && mmy > 0 || skipf) { moving = 0.25; bendoverd = 17; stoopd = 72; tinabackd = 76; ysmove = -0.25; telam = 0; tsham = 0; sham = 0; stoopm = 0; ssay = 7; } } else { if (ssay == 7) { kenergy -= kenergy / 8; penergy -= penergy / 8; bendoverd = 43 + adjx; stoopd = 257 + adjy; tinabackd = 196 + fadjx; hiprotd = 34 + fadjy; tinalookd = 23 + qadjx; tshad = 1; telad = -69; shad = 7 + qadjy; schad = 0; syposd = 9; yscrolld = -180; hotx = 193; hoty = 141; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); mmx = mousex - omousex; omousex = mousex; if (dx < 15 && dy < 15 && mmx < 0 || skipf) { ssay = 8; telam = 0; tsham = 0; sham = 0; say('gasp'); } } else { if (ssay == 8) { tinabackd = 223 + fadjx; hiprotd = 34 + fadjy; tinalookd = 41; tshad = 34 + zadjx; telad = -49 + zadjy; shad = 28; sla = sha; stad = 15; syposd = 42; schad = 11; if (sha >= 27) { ssay = 9; steps = 0; bouncing = 1; bka = 270; bounce = 0; } } else { if (ssay == 9) { if (steps >= 10) { ++idle; } if (bouncing) { bka += 10 + steps; if (steps >= 10 && idle >= 40 && bka >= 180 || skipf) { steps = 10; bka = 180; ssay = 10; pstrokes = 0; say('gasp'); } else { if (bka >= 360) { bka = 0; bouncing = 0; ++steps; if (steps >= 10) { steps = 10; } if (rand(0, 100) < 30) { say('nnh'); } } } bounce = sine(bka + 90); } if (!bouncing) { hotx = 63; hoty = 38 + steps * 5; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); if (cmousex < hotx) { breset = 1; } mmx = mousex - omousex; omousex = mousex; if (dx < 45 && dy < 45 && mmx > 0 && breset && cmousex > hotx) { bka = 0; bouncing = 1; qa = 1; breset = 0; if (steps >= 10 && idle >= 40) { } else { idle = 0; } } } stoopd = 257 + steps * 50 / 10; tinabackd = 223 + steps * 10 / 10; tinalookd = 41 + steps * (-26 + fadjy) / 10; shad = 28 + steps * (4 + fadjx) / 10; stad = 15; } else { if (ssay == 10) { stoopd = 257 + steps * 50 / 10; tinabackd = 223 + steps * 10 / 10; tinabackd += 3; stoopd += -2; if (stoplicking) { if (stoplicking < 20) { stoplicking += 0.5; } else { if (!goblackslow) { goblackslow = 1; bath3done = 1; } } } if (ka >= 360) { ka -= 360; if (rand(0, 100) < 30) { say('nnh'); } if (pstrokes < 100 && kenergy >= 100) { ++pstrokes; if (!qa) { qa = 1; } if (pstrokes >= 40 && !stoplicking) { stoplicking = 1; } } } hotx = 64; hoty = 77; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); mmx = mousex - omousex; omousex = mousex; if (dx < 160 && dy < 90 && abs(mmx > 2) && !stoplicking) { kmoving = 4; kenergy += 1.2; if (kenergy > 150) { kenergy -= 2; } } else { if (auto) { } else { if (stoplicking) { kenergy -= 2; } else { if (kenergy > 125) { kenergy -= 1; } else { if (kenergy > 75) { kenergy -= 0.5; } else { kenergy -= 0.3; } } } } if (kenergy < 10) { kenergy = 10; } if (kmoving) { --kmoving; } } penergy = kenergy; if (kmoving || pmoving) { arrowcursor = 1; if (cmousex > hotx) { arrowangle = 270; } else { arrowangle = 90; } } else { if (arrowcursor) { Mouse.show(); } arrowcursor = 0; } mon5 = 'energy:' + floor(kenergy) + ' str:' + pstrokes; } else { if (ssay == 11) { if (!goblackslow) { goblackslow = 1; } } } } } } } } } } } } } } function doeaster5() { mon4 = 'easter:' + easter + ' ' + eggphase + ' 4a:' + bg4a; if (!easter5started) { wait = 40; eggphase = 0; bg4a = 0; bg3a = 0; easter5started = 1; } if (eggphase == 0) { if (bg4a < 100) { bg4a += 10; } else { if (buttonpress && butrel) { eggphase = 8; } } } else { if (eggphase == 8) { if (bg4a > 0) { bg4a -= 10; } else { easter = 0; easter5started = 0; } } } bg4_mc.swapDepths(20012); bg4_mc.gotoAndStop(94); bg4_mc._x = 320; bg4_mc._y = 240; bg4_mc._alpha = bg4a; } function ijana3() { hideall(); ssay = 0; wait = 0; wait2 = 0; sf1 = 100; sf2 = 0; sfec1 = 0; bg2alpha = 0; scenestarted = 1; attached = 0; a1 = 100; a2 = 0; b1 = 100; p1 = 100; p2 = 0; h1 = 100; h2 = 0; grab = 0; bra2 = 0; bra1 = 0; pan2 = 0; pan1 = 0; b1 = 100; b2 = 0; rta = 0; lta = 0; rtrst = 0; ltrst = 0; rtrubs = 0; ltrubs = 0; godown = 0; ady = 0; adx = 0; pantydrop = 0; ja = 0; jwiggle = 0; jmod = 0; spa = 0; spasm = 0; ec = 0; strokes = 0; warp = 0; ChangeTheme(JanaTheme); if (jana3done) { ssay = 2; ssay = 12; a2 = 100; a1 = 0; fx = 289; rmx = 289; fy = 252; rmy = 252; attached = 1; godown = 1; ssay = 13; ssay = 21; bra1 = 4; pantydrop = 300; strokes = 31; warp = 1; wait2 = 40; } } function dojana3() { if (!scenestarted) { ijana3(); } dosay_jana3(); dosprites_jana3(); bg_mc.swapDepths(0); bg2_mc.swapDepths(10000); bg_mc.gotoAndStop(75); bg2_mc.gotoAndStop(75); bg_mc._x = 320; bg_mc._y = 240; bg_mc._xscale = 100; bg_mc._yscale = 100; bg2_mc._x = 320; bg2_mc._y = 240; bg2_mc._xscale = 100; bg2_mc._yscale = 100; bg_mc._alpha = 100; bg2_mc._alpha = bg2alpha; } function dosprites_jana3() { bx = 403; by = 248; hipa = 0; handa = 0; uax = bx - 41 + fadjx; uay = by - 151 + fadjy; uoa = -1.3; shrad = 153.6; loa = 0; elrad = 114; felrad = 200; hoa = -10; fx = 289; fy = 252; if (warp) { fingerx = 371; fingery = 352; } else { if (!attached) { fingerx = fx; fingery = fy; ady = 0; adx = 0; } else { mdx = mousex - rmx; mdy = mousey - rmy; tx = mdx; ty = mdy; dx = tx - adx; adx += dx / 2; dy = ty - ady; ady += dy / 2; fingerx = fx + adx; fingery = fy + ady; lim = 280 + (fingerx - 350) * -4 / 10; if (godown == 0) { if (fingery > lim) { fingery = lim; } } lim = 303 + (fingerx - 156) * 8 / 10; if (fingery > lim) { fingery = lim; } if (fingery < 180) { fingery = 180; } if (fingerx < 150) { fingerx = 150; } } } dist2point = finddistance(uax, uay, fingerx, fingery); ang2point = rad2deg(-Math.atan2(uax - fingerx, uay - fingery)); point2arm = ang2point + 180; a = felrad; b = shrad; c = dist2point; reach = felrad + shrad; if (dist2point >= reach) { uaa = ang2point; laa = ang2point + hoa; } else { angleA = rad2deg(Math.acos((b * b + c * c - a * a) / 2 * b * c)); angleB = rad2deg(Math.acos((a * a + c * c - b * b) / 2 * a * c)); uaa = ang2point - angleA; laa = point2arm + angleB + 180 + hoa; } xadd = sine(uoa + uaa) * shrad; yadd = -cosine(uoa + uaa) * shrad; lax = uax + xadd; lay = uay + yadd; xadd = sine(loa + laa) * elrad; yadd = -cosine(loa + laa) * elrad; hx = lax + xadd; hy = lay + yadd; sprite3_mc.gotoAndStop(275); sprite3_mc._x = bx; sprite3_mc._y = by; sprite3_mc._rotation = 0; sprite3_mc.swapDepths(11000); sprite3_mc._alpha = sf1; sprite4_mc.gotoAndStop(278); sprite4_mc._x = uax; sprite4_mc._y = uay; sprite4_mc._rotation = -45 + uaa; sprite4_mc.swapDepths(13100); sprite4_mc._alpha = sf1; sprite5_mc.gotoAndStop(279); sprite5_mc._x = lax; sprite5_mc._y = lay; sprite5_mc._rotation = -45 + laa; sprite5_mc.swapDepths(13110); sprite5_mc._alpha = sf1; if (grab) { if (h2 < 100) { h2 += 50; } else { if (h1 > 0) { h1 -= 50; } } } else { if (h1 < 100) { h1 += 50; } else { if (h2 > 0) { h2 -= 50; } } } sprite6_mc.gotoAndStop(280); sprite6_mc._x = hx; sprite6_mc._y = hy; sprite6_mc._rotation = -45 + (laa + 152) + handa; sprite6_mc.swapDepths(13120); sprite6_mc._alpha = h1; sprite7_mc.gotoAndStop(281); sprite7_mc._x = hx; sprite7_mc._y = hy; sprite7_mc._rotation = -45 + (laa + 152) + handa; sprite7_mc.swapDepths(13121); sprite7_mc._alpha = h2; jmod = (5 + strokes) / 30; jspeed = 10; if (ja > 0) { ja += jspeed; if (ja >= 180) { ja = 0; } } jwiggle = sine(ja) * jmod; smod = sine(ja) * jmod; spa += 90 + zadjx; spasm = sine(spa) * smod; jx = 290; jy = 279; jax = jx - 77; jay = jy + 2; hipa = jwiggle * -1.3; hipa -= spasm * 0.2; la = jwiggle * 0.4; cha = jwiggle * 1.4; cha += spasm * 0.25; faa = jwiggle * -1.3; baa = jwiggle * 5; eoa = 198; erad = 63; xadd = sine(eoa + hipa) * erad; yadd = -cosine(eoa + hipa) * erad; rlx = jx + xadd; rly = jy + yadd; eoa = 142; erad = 70; xadd = sine(eoa + hipa) * erad; yadd = -cosine(eoa + hipa) * erad; llx = jx + xadd; lly = jy + yadd; eoa = -46 + qadjx / 1; erad = 77 + qadjy / 1; xadd = sine(eoa + cha) * erad; yadd = -cosine(eoa + cha) * erad; ltx = jx + xadd; lty = jy + yadd; eoa = -83.5; erad = 94.90000000000001; xadd = sine(eoa + cha) * erad; yadd = -cosine(eoa + cha) * erad; rtx = jx + xadd; rty = jy + yadd; eoa = -65; erad = 94 + qadjy / 1; xadd = sine(eoa + cha) * erad; yadd = -cosine(eoa + cha) * erad; baox = jx + xadd; baoy = jy + yadd; eoa = -99; erad = 153; xadd = sine(eoa + cha) * erad; yadd = -cosine(eoa + cha) * erad; faox = jx + xadd; faoy = jy + yadd; sprite10_mc.gotoAndStop(283); sprite10_mc._x = jx; sprite10_mc._y = jy; sprite10_mc._rotation = 45 + hipa; sprite10_mc.swapDepths(12100); sprite10_mc._alpha = sf1; sprite11_mc.gotoAndStop(284); sprite11_mc._x = jx; sprite11_mc._y = jy; sprite11_mc._rotation = -30 + cha; sprite11_mc.swapDepths(12090); sprite11_mc._alpha = sf1; sprite24_mc.gotoAndStop(282); sprite24_mc._x = jx; sprite24_mc._y = jy; sprite24_mc._rotation = -30 + cha; sprite24_mc.swapDepths(12091); sprite24_mc._alpha = sfec1; sprite12_mc.gotoAndStop(285); sprite12_mc._x = jax; sprite12_mc._y = jay; sprite12_mc._rotation = 0; sprite12_mc.swapDepths(12080); sprite12_mc._alpha = a1; sprite13_mc.gotoAndStop(286); sprite13_mc._x = baox; sprite13_mc._y = baoy; sprite13_mc._rotation = 30 + baa; sprite13_mc.swapDepths(12081); sprite13_mc._alpha = a2; sprite14_mc.gotoAndStop(287); sprite14_mc._x = jax; sprite14_mc._y = jay; sprite14_mc._rotation = 0; sprite14_mc.swapDepths(12122); sprite14_mc._alpha = a1; sprite15_mc.gotoAndStop(288); sprite15_mc._x = faox; sprite15_mc._y = faoy; sprite15_mc._rotation = 30 + faa; sprite15_mc.swapDepths(12123); sprite15_mc._alpha = a2; sprite16_mc.gotoAndStop(293 + bra1); sprite16_mc._x = jx; sprite16_mc._y = jy; sprite16_mc._rotation = +cha; sprite16_mc.swapDepths(12115); sprite16_mc._alpha = b1; sprite20_mc.gotoAndStop(293 + bra2); sprite20_mc._x = jx; sprite20_mc._y = jy; sprite20_mc._rotation = +cha; sprite20_mc.swapDepths(12116); sprite20_mc._alpha = b2; sprite17_mc.gotoAndStop(301 + pan1); sprite17_mc._x = jx + pantydrop; sprite17_mc._y = jy + pantydrop; sprite17_mc._rotation = +hipa; sprite17_mc.swapDepths(12117); sprite17_mc._alpha = p1; sprite23_mc.gotoAndStop(301 + pan2); sprite23_mc._x = jx; sprite23_mc._y = jy; sprite23_mc._rotation = +hipa; sprite23_mc.swapDepths(12118); sprite23_mc._alpha = p2; sprite18_mc.gotoAndStop(291); sprite18_mc._x = rlx; sprite18_mc._y = rly; sprite18_mc._rotation = 45 + la; sprite18_mc.swapDepths(12114); sprite18_mc._alpha = sf1; sprite19_mc.gotoAndStop(292); sprite19_mc._x = llx; sprite19_mc._y = lly; sprite19_mc._rotation = 45 + la; sprite19_mc.swapDepths(12095); sprite19_mc._alpha = sf1; sprite21_mc.gotoAndStop(298); sprite21_mc._x = ltx; sprite21_mc._y = lty; sprite21_mc._rotation = -45 + lta; sprite21_mc.swapDepths(12112); sprite21_mc._alpha = sf1; sprite22_mc.gotoAndStop(299); sprite22_mc._x = rtx; sprite22_mc._y = rty; sprite22_mc._rotation = -45 + rta; sprite22_mc.swapDepths(12113); sprite22_mc._alpha = sf1; } function dosay_jana3() { if (ssay == 0) { hotx = -69; hoty = -123; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); if (dx < 15 && dy < 15) { btx = -27; bty = -143; saythisl(334, 60, bub4l, btx, bty); ssay = 1; wait = 70; } } else { if (ssay == 1) { if (wait) { --wait; } else { saythisl(335, 70, bub4l, btx, bty); ssay = 2; wait = 100; } } else { if (ssay == 2) { if (wait) { --wait; } else { if (a2 < 100) { a2 += 10; } else { if (a1 > 0) { a1 -= 20; } else { ssay = 3; } } } } else { if (ssay == 3) { hotx = -26; hoty = 7; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); if (dx < 10 && dy < 10) { attached = 1; rmx = mousex; rmy = mousey; ssay = 4; } } else { if (ssay == 4) { hotx = 248; hoty = 247; dx = abs(fingerx - hotx); dy = abs(fingery - hoty); mmx = mousex - omousex; omousex = mousex; if (dx < 15 && dy < 10) { grab = 1; } else { grab = 0; } mon5 = 'fxy:' + fingerx + ' ' + fingery + ' b1 2:' + b1 + ' ' + b2; if (dx < 10 && dy < 5 && mmx > 2) { ssay = 5; bra2 = 1; } } else { if (ssay == 5) { if (b2 < 100) { b2 += 50; } else { if (b1 > 0) { b1 -= 20; } else { b1 = 100; b2 = 0; grab = 0; bra1 = 1; ssay = 6; } } } else { if (ssay == 6) { hotx = 217; hoty = 276; dx = abs(fingerx - hotx); dy = abs(fingery - hoty); mmy = mousey - omousey; omousey = mousey; if (dx < 10 && dy < 15) { grab = 1; } else { grab = 0; } if (dx < 10 && dy < 10 && mmy > 2) { ssay = 7; bra2 = 2; } } else { if (ssay == 7) { if (b2 < 100) { b2 += 50; } else { if (b1 > 0) { b1 -= 20; } else { b1 = 100; b2 = 0; bra1 = 2; ssay = 8; } } } else { if (ssay == 8) { hotx = 219; hoty = 239; dx = abs(fingerx - hotx); dy = abs(fingery - hoty); mmy = omousey - mousey; omousey = mousey; if (dx < 8 && dy < 15) { grab = 1; } else { grab = 0; } if (dx < 10 && dy < 15 && mmy > 2) { ssay = 9; bra2 = 3; } } else { if (ssay == 9) { if (b2 < 100) { b2 += 50; } else { if (b1 > 0) { b1 -= 20; } else { b1 = 100; b2 = 0; bra1 = 3; ssay = 10; } } } else { if (ssay == 10) { hotx = 211; hoty = 278; dx = abs(fingerx - hotx); dy = abs(fingery - hoty); mmy = mousey - omousey; omousey = mousey; if (dx < 8 && dy < 15) { grab = 1; } else { grab = 0; } if (dx < 10 && dy < 15 && mmy > 2) { ssay = 11; bra2 = 4; } } else { if (ssay == 11) { if (b2 < 100) { b2 += 50; } else { if (b1 > 0) { b1 -= 20; } else { b1 = 100; b2 = 0; bra1 = 4; ssay = 12; grab = 0; } } } else { if (ssay == 12) { bra1 = 4; hotx = 237; hoty = 215; dx = abs(fingerx - hotx); dy = abs(fingery - hoty); mmx = omousex - mousex; omousex = mousex; mmy = omousey - mousey; omousey = mousey; step = 2; if (dx < 15 && dy < 10) { if (mmx > 1) { lta -= step; } if (mmx < -1) { lta += step; } if (abs(mmx) > 1) { ltrubs += 0.25; } } else { lta -= lta / 4; } hotx = 190; hoty = 262; dx = abs(fingerx - hotx); dy = abs(fingery - hoty); if (dx < 10 && dy < 15) { if (mmy > 1) { rta += step; } if (mmy < -1) { rta -= step; } if (abs(mmy) > 1) { rtrubs += 0.25; } } else { rta -= rta / 4; } if (rtrubs >= 14 && ltrubs >= 14) { godown = 1; ssay = 13; } } else { if (ssay == 13) { hotx = 287; hoty = 355; dx = abs(fingerx - hotx); dy = abs(fingery - hoty); mmx = mousex - omousex; omousex = mousex; mmy = mousey - omousey; omousey = mousey; if (dx < 15 && dy < 15) { grab = 1; } else { grab = 0; } if (grab && mmx > 1 && mmy > 1) { ssay = 14; pan2 = 1; } } else { if (ssay == 14) { if (p2 < 100) { p2 += 50; } else { if (p1 > 0) { p1 -= 20; } else { p1 = 100; p2 = 0; grab = 0; pan1 = 1; ssay = 15; } } } else { if (ssay == 15) { hotx = 372; hoty = 319; dx = abs(fingerx - hotx); dy = abs(fingery - hoty); mmx = mousex - omousex; omousex = mousex; mmy = mousey - omousey; omousey = mousey; if (dx < 15 && dy < 15) { grab = 1; } else { grab = 0; } if (grab && mmx > 1 && mmy > 1) { ssay = 16; pan2 = 2; } } else { if (ssay == 16) { if (p2 < 100) { p2 += 50; } else { if (p1 > 0) { p1 -= 20; } else { p1 = 100; p2 = 0; grab = 0; pan1 = 2; ssay = 17; } } } else { if (ssay == 17) { hotx = 315; hoty = 388; dx = abs(fingerx - hotx); dy = abs(fingery - hoty); mmx = mousex - omousex; omousex = mousex; mmy = mousey - omousey; omousey = mousey; if (dx < 15 && dy < 15) { grab = 1; } else { grab = 0; } if (grab && mmx > 1 && mmy > 1) { ssay = 18; pan2 = 3; } } else { if (ssay == 18) { if (p2 < 100) { p2 += 50; } else { if (p1 > 0) { p1 -= 20; } else { p1 = 100; p2 = 0; grab = 0; pan1 = 3; ssay = 19; } } } else { if (ssay == 19) { hotx = 412; hoty = 338; dx = abs(fingerx - hotx); dy = abs(fingery - hoty); mmx = mousex - omousex; omousex = mousex; mmy = mousey - omousey; omousey = mousey; if (dx < 15 && dy < 15) { grab = 1; } else { grab = 0; } if (grab && mmx > 1 && mmy > 1) { ssay = 20; pan2 = 4; } } else { if (ssay == 20) { if (p2 < 100) { p2 += 50; } else { if (p1 > 0) { p1 -= 20; } else { p1 = 100; p2 = 0; grab = 0; pan1 = 4; ssay = 21; pda = 0; } } } else { if (ssay == 21) { if (pantydrop < 300) { pantydrop += pda; pda += 0.5; if (p1 > 0) { --pa; } } hotx = 371; hoty = 352; dx = abs(fingerx - hotx); dy = abs(fingery - hoty); mmx = mousex - omousex; omousex = mousex; mmy = mousey - omousey; omousey = mousey; if (dx < 10 && dy < 15 && abs(mmy) > 1 || jana3done && warp < 5) { if (warp) { ++warp; } if (ja == 0) { if (warp) { ++warp; } ++strokes; ja = 1; ec = 1; if (!goblackslow) { say('nnhvib'); } if (strokes == 30 && !warp) { btx = -27; bty = -143; saythisl(336, 60, bub4l, btx, bty); wait = 70; } } } if (ec) { if (sfec1 < 100) { sfec1 += 5; } } if (strokes >= 30) { if (wait2) { if (wait2 > 1) { --wait2; } else { if (goblackslow == 0) { goblackslow = 1; jana3done = 1; } } } else { if (wait) { --wait; } else { if (warp) { wait2 = 10; } else { btx = -168 + adjx; bty = 41; saythisl(337, 60, 6, btx, bty); wait2 = 60; } } } } } } } } } } } } } } } } } } } } } } } } } } mon5 = 'fxy:' + floor(fingerx) + ' ' + floor(fingery) + ' mxy:' + mmx + ' warp:' + warp; mon4 = 'ltr:' + floor(ltrubs) + ' rtr:' + floor(rtrubs) + ' str:' + strokes; if (attached) { hidemouse = 1; } else { hidemouse = 0; } if (Key.isDown(78)) { goblack = 10; } } function ijana4() { hideall(); ssay = 0; wait = 0; sf1 = 100; sf2 = 0; bg2alpha = 0; scenestarted = 1; inserta = 0; imod = 1; tries = 0; reacta = 0; rmod = 1; goingin = 0; cmousex = -320; auto = 0; trying = 0; backoff = 10; retreat = 0; doit = 1; cherrypop = 0; oplunge = 0; plunge = 0; lower = 0; jface = 0; f1 = 100; f3 = 0; f2 = 0; strokes = 0; intensity = 0; jxa = 0; slam = 0; shaddadd = 0; shang = 0; shudder = 0; arch = 0; cummed = 0; cumming = 0; squirts = 0; stretch = 0; xstretch = 0; tba = 0; tbounce = 0; bounce = 0; raa = 0; if (jana4done) { cummed = 1; cumming = 1; ssay = 5; trying = 4; cherrypop = 1; inserta = 180; backoff = 0; plunge = 20; jface = 2; tries = 10; lower = 10; wait = 0; ospeed = 5; fspeed = 5; reacta = 0; } ChangeTheme(CindyTheme); } function dojana4() { if (scenestarted != 1) { ijana4(); } dosay_jana4(); dosprites_jana4(); bg_mc.swapDepths(0); bg2_mc.swapDepths(10000); bg_mc.gotoAndStop(80); bg2_mc.gotoAndStop(80); bg_mc._x = 320; bg_mc._y = 240; bg_mc._xscale = 100; bg_mc._yscale = 100; bg2_mc._x = 320; bg2_mc._y = 240; bg2_mc._xscale = 100; bg2_mc._yscale = 100; bg_mc._alpha = 100; bg2_mc._alpha = bg2alpha; } function dosprites_jana4() { bx = 470 + bxa - 3; by = 177 + bya; eoa = -65; erad = 261; xadd = sine(eoa + bcha) * erad; yadd = -cosine(eoa + bcha) * erad; lax = bx + xadd; lay = by + yadd; eoa = 148; erad = 184; xadd = sine(eoa + bsha) * erad; yadd = -cosine(eoa + bsha) * erad; lelx = lax + xadd; lely = lay + yadd; eoa = -174; erad = 173; xadd = sine(eoa + bela) * erad; yadd = -cosine(eoa + bela) * erad; lhdx = lelx + xadd; lhdy = lely + yadd; eoa = -58; erad = 274; xadd = sine(eoa + bcha) * erad; yadd = -cosine(eoa + bcha) * erad; rax = bx + xadd; ray = by + yadd; eoa = 91; erad = 103; xadd = sine(eoa + bha) * erad; yadd = -cosine(eoa + bha) * erad; rlx = bx + xadd; rly = by + yadd; eoa = 96.90000000000001; erad = 87.5; xadd = sine(eoa + bha) * erad; yadd = -cosine(eoa + bha) * erad; llx = bx + xadd; lly = by + yadd; eoa = 131; erad = 86; xadd = sine(eoa + bha) * erad; yadd = -cosine(eoa + bha) * erad; bdx = bx + xadd; bdy = by + yadd; sprite1_mc.gotoAndStop(391); sprite1_mc._x = bx; sprite1_mc._y = by; sprite1_mc._rotation = -45 + bha; sprite1_mc.swapDepths(1020); sprite1_mc._alpha = sf1; sprite2_mc.gotoAndStop(392); sprite2_mc._x = bx; sprite2_mc._y = by; sprite2_mc._rotation = 45 + bcha; sprite2_mc.swapDepths(1000); sprite2_mc._alpha = sf1; sprite3_mc.gotoAndStop(394); sprite3_mc._x = lax; sprite3_mc._y = lay; sprite3_mc._rotation = 45 + bsha; sprite3_mc.swapDepths(1030); sprite3_mc._alpha = sf1; sprite4_mc.gotoAndStop(395); sprite4_mc._x = lelx; sprite4_mc._y = lely; sprite4_mc._rotation = 45 + bela; sprite4_mc.swapDepths(1040); sprite4_mc._alpha = sf1; sprite5_mc.gotoAndStop(396); sprite5_mc._x = lhdx; sprite5_mc._y = lhdy; sprite5_mc._rotation = 45 + bhnda; sprite5_mc.swapDepths(1050); sprite5_mc._alpha = sf1; sprite6_mc.gotoAndStop(397); sprite6_mc._x = rax; sprite6_mc._y = ray; sprite6_mc._rotation = 45 + rarma; sprite6_mc.swapDepths(790); sprite6_mc._alpha = sf1; sprite7_mc.gotoAndStop(398); sprite7_mc._x = rlx; sprite7_mc._y = rly; sprite7_mc._rotation = 45 + bla; sprite7_mc.swapDepths(795); sprite7_mc._alpha = sf1; sprite8_mc.gotoAndStop(399); sprite8_mc._x = llx; sprite8_mc._y = lly; sprite8_mc._rotation = 45 + bla; sprite8_mc.swapDepths(1060); sprite8_mc._alpha = sf1; sprite9_mc.gotoAndStop(400); sprite9_mc._x = bdx; sprite9_mc._y = bdy; sprite9_mc._rotation = -45 + da; sprite9_mc.swapDepths(810); sprite9_mc._alpha = sf1; sprite24_mc.gotoAndStop(410); sprite24_mc._x = 216 + xstretchsp; sprite24_mc._y = 501; adjy; sprite24_mc._yscale = 100 + stretch; sprite24_mc._rotation = 0; sprite24_mc.swapDepths(102); sprite24_mc._alpha = sf1; sprite23_mc.gotoAndStop(411); sprite23_mc._x = 668; sprite23_mc._y = 501; sprite23_mc._xscale = 100 + xstretch; sprite23_mc._rotation = 0; sprite23_mc.swapDepths(101); sprite23_mc._alpha = sf1; jx = 393 + jxa; jy = 316; eoa = 74; erad = 52; xadd = sine(eoa + jha) * erad; yadd = -cosine(eoa + jha) * erad; jllx = jx + xadd; jlly = jy + yadd; eoa = 99; erad = 48; xadd = sine(eoa + jha) * erad; yadd = -cosine(eoa + jha) * erad; jrlx = jx + xadd; jrly = jy + yadd; eoa = -78.63; erad = 237; xadd = sine(eoa + jua) * erad; yadd = -cosine(eoa + jua) * erad; jfx = jx + xadd; jfy = jy + yadd; eoa = -114; erad = 131; xadd = sine(eoa + jua) * erad; yadd = -cosine(eoa + jua) * erad; jtx = jx + xadd; jty = jy + yadd; eoa = -97; erad = 190; xadd = sine(eoa + jua) * erad; yadd = -cosine(eoa + jua) * erad; jrax = jx + xadd; jray = jy + yadd; sprite10_mc.gotoAndStop(403); sprite10_mc._x = jx; sprite10_mc._y = jy; sprite10_mc._rotation = 45 + jha; sprite10_mc.swapDepths(820); sprite10_mc._alpha = sf1; sprite11_mc.gotoAndStop(404); sprite11_mc._x = jx; sprite11_mc._y = jy; sprite11_mc._rotation = -45 + jua; sprite11_mc.swapDepths(800); sprite11_mc._alpha = sf1; sprite12_mc.gotoAndStop(405); sprite12_mc._x = jrlx; sprite12_mc._y = jrly; sprite12_mc._rotation = 45 + jrla; sprite12_mc.swapDepths(1100); sprite12_mc._alpha = sf1; sprite13_mc.gotoAndStop(406); sprite13_mc._x = jllx; sprite13_mc._y = jlly; sprite13_mc._rotation = 30 + jlla; sprite13_mc.swapDepths(600); sprite13_mc._alpha = sf1; sprite16_mc.gotoAndStop(407 + jface); sprite16_mc._x = jfx; sprite16_mc._y = jfy; sprite16_mc._rotation = -45 + jua; sprite16_mc.swapDepths(801); sprite16_mc._alpha = sf1; sprite14_mc.gotoAndStop(412); sprite14_mc._x = jtx; sprite14_mc._y = jty; sprite14_mc._rotation = -45 + jua + ta; sprite14_mc.swapDepths(802); sprite14_mc._alpha = sf1; sprite17_mc.gotoAndStop(413); sprite17_mc._x = jrax; sprite17_mc._y = jray; sprite17_mc._rotation = -45 + jua + raa; sprite17_mc.swapDepths(803); sprite17_mc._alpha = sf1; } function dosay_jana4() { btx = -75; bty = -124; jtx = -174; jty = 45; mmx = mousex - omousex; omousex = mousex; hotx = 170; mon3 = 'str:' + strokes + ' slam:' + slam; mon4 = 'i:' + intensity + ' fspd:' + fspeed + ' ospd:' + ospeed; mon5 = 'ia:' + inserta + ' gin:' + goingin + ' ra:' + reacta; if (cherrypop >= 3) { if (cummed) { fspeed = 2; } else { if (intensity < 250) { fspeed = 10 + strokes * 0.5; if (fspeed > 50) { fspeed = 50; } ospeed = 10 + strokes * 0.25; } } slam = fspeed - 25; if (slam < 0) { slam = 0; } dx = 10 - lower; if (dx > 4) { dx = 4; } lower += dx / 8; if (cherrypop == 3) { --tries; if (tries <= 0) { tries = 0; cherrypop = 4; fspeed = 10; ospeed = 10; } } else { if (goingin) { if (!shudder) { inserta += fspeed; } if (inserta >= 1 && reacta == 0 && !cummed) { reacta = 1; } if (inserta >= 110 && oinserta < 110) { if (rand(0, 100) < 20 && !cumming) { say('joh'); } else { if (!cumming) { say('slap'); } } } oinserta = inserta; if (inserta >= 180) { inserta = 180; ++strokes; bounce = slam - 5; if (bounce > 20) { bounce = 20; } if (bounce < 0) { bounce = 0; } tba = 0; if (intensity < 150) { intensity += 10; } if (fspeed >= 50) { if (intensity < 250) { intensity += 4; } } if (intensity >= 250) { if (!cumming) { ospeed -= 15; huffvol = 50; say('huff2'); if (ospeed <= 15) { ospeed = 15; cumming = 1; } } if (cumming && !cummed) { ospeed = 15 - squirts; shudder = 20; ++squirts; say('nnhvib'); borg = 'mlove' + squirts + '.wav'; sayfile2(borg, 30); if (squirts >= 8) { cummed = 1; } } } goingin = 0; } } else { if (cummed) { ospeed = 2; } if (inserta > 0) { if (shudder) { } else { inserta -= ospeed; } if (inserta < 0) { inserta = 0; } } else { goingin = 1; } } } } else { if (cherrypop == 1 || cherrypop == 2) { if (cherrypop == 1) { if (tries < 10) { ++tries; } if (tries >= 10 && reacta == 0) { cherrypop = 2; } } else { dx = 20 + adjx - plunge; plunge += dx / 8; if (plunge >= 8 && oplunge < 8) { reacta = 1; } oplunge = plunge; if (plunge > 19.75 && reacta == 0) { cherrypop = 3; goingin = 0; jface = 2; sayfile2('coh4.mp3', 100); } } } else { if (trying == 0 || trying == 2 || trying == 4) { if (retreat) { backoff += 0.5; if (backoff >= 4) { backoff = 4; retreat = 0; } } else { if (doit && mmx < 0) { backoff -= 0.5; if (backoff <= 0) { backoff = 0; ++trying; tries = 0; } } } } else { if (goingin) { if (mmx < 0 || auto) { goingin = 2; } if (goingin > 1) { inserta += 10; } if (inserta >= 90 && reacta == 0 && trying != 5 && !cummed) { reacta = 1; jface = 1; say('ow'); } if (inserta >= 180) { inserta = 180; if (trying == 5) { cherrypop = 1; say('ow'); } else { ++tries; goingin = 0; } } } else { if (reacta < 90 && reacta > 0) { } else { if (inserta > 0) { inserta -= 10; if (inserta < 0) { inserta = 0; } } } if (inserta == 0) { if (trying == 1 && tries == 8) { trying = 2; retreat = 1; saythisl(338, 60, bub4l, btx, bty); ssay = 1; doit = 0; wait = 70; } else { if (trying == 3 && tries == 5) { trying = 4; retreat = 1; ssay = 4; doit = 0; wait = 10; } else { if (cmousex >= hotx) { goingin = 1; } } } } } } } } if (reacta > 0) { if (cherrypop >= 3) { if (shudder) { } else { if (reacta < 180) { reacta += fspeed; } else { reacta += ospeed; } } } else { if (cherrypop) { reacta += 5; } else { reacta += 20; } } if (reacta >= 360) { reacta = 0; if (jface == 1) { jface = 0; } } } if (bounce) { --bounce; } tba += 40 + qadjx; tbounce = sine(tba); insert = sine(inserta - 90) * imod; react = (sine(reacta - 90) + 1) * rmod; nreact = sine(reacta - 90) * rmod; if (nreact > 0) { nreact = 0; } preact = sine(reacta - 90) * rmod; if (preact < 0) { preact = 0; } insert += backoff * -0.5; insert += plunge * 0.5; insert += shuddadd * 1; bha = +(insert * 2); bcha = +(insert * -0.4); bxa = insert * -1.5; rarma = +(insert * -0.8); bsha = +(insert * -0.8); bela = +(insert * -0.2); bhnda = +(insert * 0); bxa += lower * 1.3; bya = lower * 1.7; da = 4 + lower * (23 + fadjx) / 10; bsha += lower * -0.7; bela += lower * 1.1; rarma += lower * 0.7; bla = lower * -0.4; bsha += preact * (slam / 50) * 1; bela += preact * (slam / 50) * -1; stretch = preact * (slam / 50) * -3; xstretchsp = preact * (slam / 50) * -2; xstretch = preact * (slam / 50) * 0.5; if (trying < 3) { jha = +(react * 1.2); jua = +(react * -0.4); jrla = +(react * -0.9); jlla = +(react * -0.9); } else { if (cherrypop < 4) { jha = +(react * -1.2); jua = +(react * 0.4); jrla = +(react * 0.9); jlla = +(react * 0.9); } else { jha = +(react * -0.6); jua = +(react * 0.1); jrla = +(react * 0.4); jlla = +(react * 0.4); nreact = react; jxa = preact * (slam / 50) * -4; jha += arch * -2.1; jua += arch * 1.2; raa = +(react * -0.5); } } ta = tbounce * bounce / 20; if (cherrypop < 4) { imod = 1 + tries / 10; rmod = 1 + tries / 10; } else { imod = 1 + intensity / 100; rmod = 1 + intensity / 100; } if (shudder) { shang += 141; sqdeptab = [0, 1, 2, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 2, 1, 0, 0]; depth = sqdeptab[shudder]; shuddadd = sine(shang) * (depth * 0.07000000000000001); --shudder; arch = sine(shudder * 9) + shuddadd * 0.5; } else { shuddadd = 0; } if (ssay == 1) { if (wait) { --wait; } else { saythisl(339, 60, 5, jtx, jty); wait = 70; ssay = 2; } } else { if (ssay == 2) { if (wait) { --wait; } else { saythisl(340, 60, 5, jtx, jty); wait = 20; ssay = 3; } } else { if (ssay == 3) { if (wait) { --wait; } else { doit = 1; } } else { if (ssay == 4) { if (wait) { --wait; } else { saythisl(341, 60, 5, jtx, jty); wait = 70; ssay = 5; } } else { if (ssay == 5) { if (wait) { --wait; } else { doit = 1; } if (cummed) { ++cummed; if (cummed == 110) { goblackslow = 1; jana4done = 1; } reacta = 0; } } } } } } if (Key.isDown(82)) { } } function ibed1() { hideall(); room = 3; roomlevel = room3level; level = roomlevel; if (level == 2) { ijana2(); return undefined; } bg2alpha = 0; ssay = 0; wait = 40; spritefade = 0; rfeel = 0; handmovex = 0; adx = 0; handmove = 0; ady = 0; uhuh = 0; rhandmove = 0; rreset = 0; jaa = 0; jla = 0; jlaa = 0; pushdown = 0; defenseless = 0; feeltits = 0; destx = 0; squeezetit = 0; squeeze = 0; sqa = 0; sqmod = 0; holdltit = 0; hreset = 0; kissa = 0; kissmod = 0; french = 0; tonguex = 0; frencha = 0; frenchx = 0; freset = 0; janaoh = 0; shake = 0; squeezes = 0; skirtlift = 0; skirtnotch = 0; sreset = 0; pussytouch = 0; scenestarted = 1; if (jana1done) { ssay = 2; wait = 60; handmovex = 0; handmove = 0; rmousey = 300; defenseless = 20; jla = defenseless; skirtnotch = 3; skirtlift = 3; pussytouch = 7; } ChangeTheme(JanaTheme); } function dobed1() { if (room3level == 2) { room = 3; level = 2; roomlevel = 2; dojana2(); return undefined; } if (room3level == 3) { room = 3; level = 3; roomlevel = 3; dojana3(); return undefined; } if (room3level == 4) { room = 4; level = 4; roomlevel = 4; dojana4(); return undefined; } if (!scenestarted) { ibed1(); } dospritesbed1(); dobed1say(); bg_mc.swapDepths(0); bg2_mc.swapDepths(10000); bg_mc.gotoAndStop(53); bg_mc._x = 320; bg_mc._y = 240; bg_mc._xscale = 100; bg_mc._yscale = 100; bg2_mc._x = 320; bg2_mc._y = 240; bg2_mc._xscale = 100; bg2_mc._yscale = 100; bg_mc._alpha = 100; bg2_mc._alpha = bg2alpha; } function dospritesbed1() { bjx = 372; bjy = 266; sprite1_mc.gotoAndStop(76); sprite1_mc._x = bjx; sprite1_mc._y = bjy; sprite1_mc.swapDepths(1990); sprite1_mc._alpha = 100 - spritefade; sprite13_mc.gotoAndStop(78); sprite13_mc._x = bjx; sprite13_mc._y = bjy; sprite13_mc.swapDepths(1992); sprite13_mc._alpha = 100 - spritefade; jtx = bjx - 81; jty = bjx - 117 + shake; sprite14_mc.gotoAndStop(79); sprite14_mc._x = jtx; sprite14_mc._y = jty; sprite14_mc._rotation = -45; sprite14_mc.swapDepths(1991); sprite14_mc._alpha = 100 - spritefade; sprite15_mc.gotoAndStop(80); sprite15_mc._x = jtx + 24; sprite15_mc._y = jty - 26; sprite15_mc._rotation = jlaa; sprite15_mc.swapDepths(1998); sprite15_mc._alpha = 100 - spritefade; sprite16_mc.gotoAndStop(81); sprite16_mc._x = bjx; sprite16_mc._y = bjy; if (skirtlift == 3) { sprite16_mc.swapDepths(2061); } else { sprite16_mc.swapDepths(1993); } sprite16_mc._alpha = 100 - spritefade; sprite17_mc.gotoAndStop(82 + skirtnotch); sprite17_mc._x = bjx - 82; sprite17_mc._y = bjy + 19; sprite17_mc.swapDepths(1997); sprite17_mc._alpha = 100 - spritefade; if (skirtlift) { baa = handmove + handmovex; bea = handmovex * 1.4; bea += (handmove + 20) * -0.5; if (skirtlift == 3) { bea += handmovex * adjx / 10; } bha = handmovex * 2; baa += cosine(sqa) * sqmod; } else { baa = handmove + handmovex; bea = handmove * -1.5; if (handmove <= -20) { bea += (handmove + 20) * -1.9; } else { bea += (handmove + 20) * -0.5; } bha = handmove * -2.2; bha += sine(sqa) * sqmod; baa += cosine(sqa) * sqmod; } blshx = bjx + 8; blshy = bjy - 124; eoa = 183; erad = 77; xadd = sine(eoa + baa) * erad; yadd = -cosine(eoa + baa) * erad; blelx = blshx + xadd; blely = blshy + yadd; hoa = 199; hrad = 64.59999999999999; xadd = sine(hoa + bea) * hrad; yadd = -cosine(hoa + bea) * hrad; blhx = blelx + xadd; blhy = blely + yadd; sprite2_mc.gotoAndStop(61); sprite2_mc._x = blshx; sprite2_mc._y = blshy; sprite2_mc._rotation = -45 + baa; sprite2_mc.swapDepths(2020); sprite2_mc._alpha = 100 - spritefade; sprite3_mc.gotoAndStop(62); sprite3_mc._x = blelx; sprite3_mc._y = blely; sprite3_mc._rotation = -45 + bea; sprite3_mc.swapDepths(2040); sprite3_mc._alpha = 100 - spritefade; if (squeezetit) { sprite4_mc.gotoAndStop(68 + squeezetit); } else { if (feeltits) { sprite4_mc.gotoAndStop(69); } else { sprite4_mc.gotoAndStop(63); } } sprite4_mc._x = blhx; sprite4_mc._y = blhy; sprite4_mc._rotation = -45 + bha; sprite4_mc.swapDepths(2060); sprite4_mc._alpha = 100 - spritefade; brhx = bjx - 114; brhy = bjy - 14 + rhandmove; if (rhandmove < -15) { sprite5_mc.gotoAndStop(65); sprite5_mc._x = brhx; sprite5_mc._y = brhy; } else { sprite5_mc.gotoAndStop(64); sprite5_mc._x = brhx - 3; sprite5_mc._y = brhy - 1; } sprite5_mc._rotation = -45; if (rhandmove < -15) { sprite5_mc.swapDepths(1950); } else { sprite5_mc.swapDepths(2010); } sprite5_mc._alpha = 100 - spritefade; if (rhandmove < -15) { sprite6_mc.gotoAndStop(66); } else { sprite6_mc.gotoAndStop(59); } sprite6_mc._x = brhx; sprite6_mc._y = brhy; sprite6_mc._rotation = -45; sprite6_mc.swapDepths(2095); sprite6_mc._alpha = 100 - spritefade; juax = bjx - 120; juay = bjy - 91 + shake; sprite7_mc.gotoAndStop(68); sprite7_mc._x = juax; sprite7_mc._y = juay; sprite7_mc._rotation = -45 + jaa; sprite7_mc.swapDepths(2018); sprite7_mc._alpha = 100 - spritefade; loa = 183; lrad = 69; xadd = sine(loa + jaa) * lrad; yadd = -cosine(loa + jaa) * lrad; jlax = juax + xadd; jlay = juay + yadd; sprite8_mc.gotoAndStop(67); sprite8_mc._x = jlax; sprite8_mc._y = jlay; sprite8_mc._rotation = -45 + jla; if (uhuh == 0) { handprio = 2019; } else { handprio = 2091; } sprite8_mc.swapDepths(handprio); sprite8_mc._alpha = 100 - spritefade; if (french) { if (frenchx < 0.6) { frenchx += 0.1; } } else { if (frenchx > 0) { frenchx -= 0.1; } } frencha += 28; tonguex = sine(frencha) * (frenchx * 5); kaj -= frenchx * 7; kab += frenchx * 4; sprite9_mc.gotoAndStop(73); sprite9_mc._x = bjx - 102; sprite9_mc._y = bjy - 134 + shake; sprite9_mc._rotation = -45 + kaj; sprite9_mc.swapDepths(2005); sprite9_mc._alpha = 100 - spritefade; sprite10_mc.gotoAndStop(72); sprite10_mc._x = bjx - 39 + frenchx + 0.6; sprite10_mc._y = bjy - 148 - frenchx - 0.6; qqqqqqqqq; sprite10_mc._rotation = -45 + kab; sprite10_mc.swapDepths(2008); sprite10_mc._alpha = 100 - spritefade; sprite11_mc.gotoAndStop(74); sprite11_mc._x = sprite10_mc._x - tonguex + 7 - frenchx * 4; sprite11_mc._y = sprite10_mc._y; sprite11_mc._rotation = -45 + kab; sprite11_mc.swapDepths(2006); sprite11_mc._alpha = 100 - spritefade; sprite12_mc.gotoAndStop(75); sprite12_mc._x = bjx - 102; sprite12_mc._y = bjy - 134 + shake; sprite12_mc._rotation = -45 + kaj; sprite12_mc.swapDepths(2007); sprite12_mc._alpha = 100 - spritefade; } function dobed1say() { if (debug && Key.isDown(70)) { defenseless += 5; } kissmod = 0.5 + defenseless * adjx / 100; kissa += 10; kaj = sine(kissa) * kissmod; kab = sine(kissa + 153 + adjy) * kissmod; hotx = -24; hoty = -122; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); if (dx < 15 && dy < 15) { if (freset) { french = 60; freset = 0; } } else { if (french) { --french; } if (french < 1) { freset = 1; } } if (janaoh) { --janaoh; if (janaoh <= 10) { jam = janaoh; } else { jam = 20 - janaoh; } if (!skirtlift) { jaa = jam; } if (shake < 1) { shake += 0.25; } else { t = janaoh & 3; if (t == 3) { t = 1; } shake = 1 + t / 4; } } else { if (shake > 0) { shake -= 0.25; if (shake < 0) { shake = 0; } } } if (ssay == 0) { if (defenseless > 0) { defenseless -= 0.05; jla = defenseless; } if (rhandmove < 0) { rhandmove += 0.1; if (rhandmove > 0) { rhandmove = 0; } } hotx = 30; hoty = 57; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); if (dx < 15 && dy < 15) { rfeel = 0; rmousey = mousey; ssay = 1; ady = 0; } hotx = -70; hoty = 34; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); if (dx < 15 && dy < 15) { rfeel = 1; rmousey = mousey; ssay = 1; ady = 0; rreset = 0; } } else { if (ssay == 1) { if (defenseless > 0) { defenseless -= 0.05; jla = defenseless; } if (uhuh >= 2 && handmovex) { dx = -handmovex; handmovex += dx / 8; } hotx = -24; hoty = -122; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); if (dx < 15 && dy < 15) { french = 40; } else { if (french) { --french; } } if (!rfeel) { if (!uhuh) { if (feeltits) { if (cmousey > -55) { dx = rmousex - mousex; if (dx < 0) { dx = 0; } if (dx > 27) { dx = 27; } if (holdltit) { --holdltit; } else { adx += (dx - adx) / 8; } handmovex = adx; } sqa += 15; hmx = floor(handmovex); if (!holdltit && hmx > 20) { hreset = 1; } if (hmx == 3 && hreset) { holdltit = 40; hreset = 0; } if (hmx <= 5 && hmx > 0) { if (hmx == 4) { squeezetit = 2; } else { if (hmx == 5) { squeezetit = 1; } else { squeezetit = hmx; } } if (squeezetit == 3 && french > 0 && janaoh == 0) { janaoh = 20; say('nnhvib'); ++squeezes; } if (sqmod < 1.8) { sqmod += 0.1; } } else { if (handmovex >= 22) { thandmovex = handmovex; if (thandmovex > 24) { thandmovex = 24; } squeezetit = floor(thandmovex - 21); if (squeezetit == 3 && french > 0 && janaoh == 0) { janaoh = 20; say('nnhvib'); ++squeezes; } if (sqmod < 1.8) { sqmod += 0.1; } } else { if (sqmod > 0) { sqmod -= 0.1; } } } if (squeezes > 8) { ssay = 2; } } else { dy = mousey - rmousey; if (dy > 0) { dy = 0; } if (dy < -70) { dy = -70; } ady += (dy - ady) / 8; handmove = ady / 2; if (handmove <= -32.5) { feeltits = 1; rmousex = mousex; handmovex = 0; hreset = 1; holdltit = 0; } } if (handmove <= -30 && defenseless < 1) { defenseless = 0; uhuh = 1; feeltits = 0; bhandymax = handmove; dx = -60 - jla; } } else { if (uhuh == 1) { dx = -60 - jla; jla += dx / 4; if (jla < -58) { uhuh = 2; pushdown = 0; padd = 0.1; } } else { if (uhuh == 2) { if (pushdown < 60) { if (pushdown < 30) { pushdown += padd; padd += 0.1; } else { dx = 61 - pushdown; pushdown += dx / 8; } jla = -50 + pushdown; handmove = bhandymax + pushdown * 0.25; if (pushdown >= 36) { jaa = (pushdown - 36) * -0.7; handmove -= (pushdown - 36) * -0.21; } } else { uhuh = 3; } } else { if (uhuh == 3) { if (handmove < 0) { ++handmove; if (handmove > 0) { handmove = 0; } } dx = -jla; jla += dx / 8; dy = -jaa; jaa += dy / 8; if (dx < 0.25 && dy < 0.25) { uhuh = 0; ssay = 0; } } } } } } else { dy = mousey - rmousey; if (dy > 0) { dy = 0; } if (dy < -160) { dy = -160; } ady += (dy - ady) / 8; rhandmove = ady / 2; if (rhandmove < -15) { rreset = 1; } if (rhandmove > -2 && rreset) { rfeel = 0; ssay = 0; } if (rhandmove <= -30 && dy != ody) { if (french) { if (defenseless < 20) { defenseless += 0.5; } } else { if (defenseless < 5) { defenseless += 0.1; } } } ody = dy; } } else { if (ssay == 2) { if (french || skirtnotch >= 3) { if (jla < 44) { ++jla; } } else { if (jla > 10) { --jla; } } if (jaa < 17) { ++jaa; } if (skirtlift >= 3 && french || pussytouch >= 3) { if (jlaa > -20) { --jlaa; } } else { if (jlaa < 0) { ++jlaa; } } if (feeltits) { dx = rmousex - mousex; if (dx < 0) { dx = 0; } if (dx > 27) { dx = 27; } adx += (dx - adx) / 8; handmovex = adx; if (handmovex < 1) { handmovex = 0; feeltits = 0; } } else { if (!skirtlift) { dy = mousey - rmousey; if (dy > 0) { dy = 0; } if (dy < -70) { dy = -70; } ady += (dy - ady) / 8; handmove = ady / 2; if (handmove > -0.25) { skirtlift = 1; rmousex = 353; adx = 0; sreset = 1; } } else { if (skirtlift) { if (skirtlift == 1) { if (mousex >= rmousex + 8) { skirtlift = 2; } } else { if (skirtlift >= 2) { if (jana1done && pussytouch == 7) { dx = 24; } else { dx = (rmousex - mousex) / 2; if (dx < 0) { dx = 0; } if (dx > 41) { dx = 41; } if (skirtlift < 3 && !french && dx > 29) { dx = 29; } if (skirtlift == 3 && !french && dx > 12 && pussytouch < 3) { dx = 12; } if (skirtlift == 3 && dx > 24) { dx = 24; } } adx += (dx - adx) / 8; if (skirtlift == 3 && adx >= 23) { if (sreset) { say('nnhvib'); sreset = 0; ++pussytouch; janaoh = 20; if (pussytouch == 8) { goblackslow = 1; jana1done = 1; } } } handmovex = adx / 2; if (handmovex > 16 + skirtnotch * 2 && sreset) { if (skirtnotch < 3) { ++skirtnotch; say('nnhvib'); janaoh = 20; } sreset = 0; } xlim = 2; if (pussytouch >= 3) { xlim = 10; } if (handmovex < xlim) { sreset = 1; if (skirtnotch == 3 && jla >= 44) { skirtlift = 3; } } mon3 = 'hmx:' + handmovex + ' sklift:' + skirtlift + ' dx:' + dx; } } } } } } } } mon4 = 'handmove:' + handmove + ' push:' + pushdown + ' rmove:' + floor(rhandmove); mon5 = 'feeltits:' + feeltits + ' rfeel:' + rfeel + ' def:' + defenseless + ' jaa:' + jaa; } function ijana2() { hideall(); ssay = 0; wait = 60; sf2 = 0; sf1 = 0; hsf2 = 0; hsf1 = 0; hdsf1 = 0; hdsf2 = 0; sham = 0; shad = 0; sha = 0; elam = 0; elad = 0; ela = 0; chad = -7; cha = -7; cham = 0; movedone = 0; fast = 0; squeeze = 0; sreset = 0; squeezes = 0; strokes = 0; rub = 0; ra = 0; rubspeed = 0; brubmod = 0; rubmod = 0; rubmodd = 0; blla = 0; brla = 0; bha = 0; bcha = 0; zipper = 0; bg2alpha = 0; scenestarted = 1; if (jana2done) { wait = 1; bg2alpha = 100; ssay = 4; ssay = 12; hsf1 = 100; hsf2 = 0; hdsf1 = 100; hdsf2 = 0; btx = 111; tx = 111; bty = -118; ty = -118; ssay = 20; ssay = 25; hdsf1 = 0; hdsf2 = 1000; rubspeed = 12; rubmod = 10; ra = 0; strokes = 8; chad = 0; cha = 0; shad = -18; cha = -18; elad = -40; ela = -40; ssay = 36; zipper = 3; sha = -24 + adjx; shad = sha; ela = -40 + adjy; elad = ela; cha = +fadjx; chad = cha; elam = 0; sham = 0; cham = 0; ssay = 37; strokes = 36; } ChangeTheme(JanaTheme); } function dojana2() { if (!scenestarted) { ijana2(); } dosay_jana2(); dosprites_jana2(); bg_mc.swapDepths(0); bg2_mc.swapDepths(10000); bg_mc.gotoAndStop(69); bg2_mc.gotoAndStop(70); bg_mc._x = 320; bg_mc._y = 240; bg_mc._xscale = 100; bg_mc._yscale = 100; bg2_mc._x = 320; bg2_mc._y = 240; bg2_mc._xscale = 100; bg2_mc._yscale = 100; bg_mc._alpha = 100; bg2_mc._alpha = bg2alpha; } function dosprites_jana2() { movedone = 0; dx = shad - sha; if (abs(dx) > 0.25) { if (abs(sham) < abs(dx / 8) && !fast) { sha += sham; if (dx > 0) { sham += 0.125; } else { sham -= 0.125; } } else { sha += dx / 8; } } else { ++movedone; } dx = elad - ela; if (abs(dx) > 0.25) { if (abs(elam) < abs(dx / 8) && !fast) { ela += elam; if (dx > 0) { elam += 0.125; } else { elam -= 0.125; } } else { ela += dx / 8; } } else { ++movedone; } dx = chad - cha; if (abs(dx) > 0.25) { if (abs(cham) < abs(dx / 8) && !fast) { cha += cham; if (dx > 0) { cham += 0.125; } else { cham -= 0.125; } } else { cha += dx / 8; } } else { ++movedone; } dfx = 323; dfy = 122; sprite1_mc.gotoAndStop(191); sprite1_mc._x = dfx; sprite1_mc._y = dfy; sprite1_mc.swapDepths(1990); if (buttonpress) { sprite1_mc._alpha = 0; } else { sprite1_mc._alpha = sf1; } sprite2_mc.gotoAndStop(192); sprite2_mc._x = dfx; sprite2_mc._y = dfy; sprite2_mc.swapDepths(1991); if (buttonpress) { sprite2_mc._alpha = 0; } else { sprite2_mc._alpha = sf2; } bx = 329; by = 302; eoa = 199; erad = 16; xadd = sine(eoa + bha) * erad; yadd = -cosine(eoa + bha) * erad; brlx = bx + xadd; brly = by + yadd; eoa = 112; erad = 57; xadd = sine(eoa + bha) * erad; yadd = -cosine(eoa + bha) * erad; bllx = bx + xadd; blly = by + yadd; sprite3_mc.gotoAndStop(193); sprite3_mc._x = bx; sprite3_mc._y = by; sprite3_mc._rotation = 30 + bcha; sprite3_mc.swapDepths(11000); sprite3_mc._alpha = bg2alpha; sprite8_mc.gotoAndStop(204); sprite8_mc._x = bx; sprite8_mc._y = by; sprite8_mc._rotation = 30 + bcha; sprite8_mc.swapDepths(11100); sprite8_mc._alpha = bg2alpha; sprite4_mc.gotoAndStop(206 + zipper); sprite4_mc._x = bx; sprite4_mc._y = by; sprite4_mc._rotation = 45 + bha; sprite4_mc.swapDepths(11010); sprite4_mc._alpha = bg2alpha; sprite5_mc.gotoAndStop(195); sprite5_mc._x = bx; sprite5_mc._y = by; sprite5_mc._rotation = 30 + bcha; sprite5_mc.swapDepths(11020); sprite5_mc._alpha = hdsf1; sprite9_mc.gotoAndStop(196); sprite9_mc._x = bx; sprite9_mc._y = by; sprite9_mc._rotation = 30 + bcha; sprite9_mc.swapDepths(11021); sprite9_mc._alpha = hdsf2; sprite6_mc.gotoAndStop(202); sprite6_mc._x = brlx; sprite6_mc._y = brly; sprite6_mc._rotation = 45 + brla; sprite6_mc.swapDepths(11040); sprite6_mc._alpha = bg2alpha; sprite7_mc.gotoAndStop(203); sprite7_mc._x = bllx; sprite7_mc._y = blly; sprite7_mc._rotation = 45 + blla; sprite7_mc.swapDepths(11030); sprite7_mc._alpha = bg2alpha; jx = 249; jy = 315; eoa = 6.2; erad = 127.2; xadd = sine(eoa + cha) * erad; yadd = -cosine(eoa + cha) * erad; jshx = jx + xadd; jshy = jy + yadd; eoa = 202.2; erad = 114.9; xadd = sine(eoa + sha) * erad; yadd = -cosine(eoa + sha) * erad; jelx = jshx + xadd; jely = jshy + yadd; sprite10_mc.gotoAndStop(197); sprite10_mc._x = jx; sprite10_mc._y = jy; sprite10_mc._rotation = 0; sprite10_mc.swapDepths(12100); sprite10_mc._alpha = bg2alpha; sprite11_mc.gotoAndStop(198); sprite11_mc._x = jx; sprite11_mc._y = jy; sprite11_mc._rotation = 30 + cha; sprite11_mc.swapDepths(12000); sprite11_mc._alpha = bg2alpha; sprite12_mc.gotoAndStop(199); sprite12_mc._x = jshx; sprite12_mc._y = jshy; sprite12_mc._rotation = 45 + sha; sprite12_mc.swapDepths(12110); sprite12_mc._alpha = bg2alpha; if (ela < -15) { sprite13_mc.gotoAndStop(145); sprite13_mc._rotation = +ela; } else { sprite13_mc.gotoAndStop(200); sprite13_mc._rotation = 30 + ela; } sprite13_mc._x = jelx; sprite13_mc._y = jely; sprite13_mc.swapDepths(12120); sprite13_mc._alpha = hsf1; if (ssay >= 29) { if (ela < -15) { sprite14_mc.gotoAndStop(147); } else { sprite14_mc.gotoAndStop(205); } } else { if (ela < -15) { sprite14_mc.gotoAndStop(146); } else { sprite14_mc.gotoAndStop(201); } } sprite14_mc._x = jelx; sprite14_mc._y = jely; if (ela < -15) { sprite14_mc._rotation = +ela; } else { sprite14_mc._rotation = 30 + ela; } sprite14_mc.swapDepths(12121); sprite14_mc._alpha = hsf2; } function dosay_jana2() { if (ssay == 0) { if (wait) { --wait; } else { if (sf1 < 100) { sf1 += 10; } tx = 57; ty = -149; saythisl(314, 70, bub4l, tx, ty); wait = 80; ssay = 1; } } else { if (ssay == 1) { if (sf1 < 100) { sf1 += 10; } if (wait) { --wait; } else { saythisl(315, 70, bub4l, tx, ty); wait = 90; ssay = 2; } } else { if (ssay == 2) { if (wait) { --wait; if (wait < 20) { if (sf2 < 100) { sf2 += 10; } sf1 = 100 - sf2; } } else { jx = -54; jy = -122; saythisl(316, 70, bub4r, jx, jy); wait = 90; ssay = 3; } } else { if (ssay == 3) { if (wait) { --wait; if (wait < 20) { if (sf1 < 100) { sf1 += 10; } sf2 = 100 - sf1; } } else { saythisl(317, 70, bub4l, tx, ty); ssay = 4; wait = 90; } } else { if (ssay == 4) { if (wait) { --wait; if (wait < 20) { if (bg2alpha < 100) { bg2alpha += 10; } } } else { btx = 111; tx = 111; bty = -118; ty = -118; saythisl(318, 70, bub4l, tx, ty); ssay = 5; wait = 20; } hsf1 = bg2alpha; hsf2 = 0; hdsf1 = bg2alpha; hdsf2 = 0; } else { if (ssay == 5) { if (wait) { --wait; } else { hotx = -43; hoty = 135; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); mmx = mousex - omousex; omousex = mousex; if (dx < 15 && dy < 15 && mmx > 0) { chad = +fadjx; shad = -18 + adjx; elad = -40 + adjy; ssay = 6; } } } else { if (ssay == 6) { if (movedone >= 3) { fast = 1; chad = -7; shad = 0; elad = 0; ssay = 7; wait = 20; } } else { if (ssay == 7) { if (movedone >= 3) { if (wait) { --wait; } else { saythisl(319, 70, bub4l, tx, ty); wait = 20; ssay = 8; } } } else { if (ssay == 8) { if (wait) { --wait; } else { hotx = -43; hoty = 135; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); mmx = mousex - omousex; omousex = mousex; if (dx < 15 && dy < 15 && mmx > 0) { fast = 0; chad = +fadjx; shad = -18 + adjx; elad = -40 + adjy; elam = 0; sham = 0; cham = 0; ssay = 9; } } } else { if (ssay == 9) { if (movedone >= 3) { ssay = 10; } } else { if (ssay == 10) { chad = +(squeeze / 4); hotx = 52; hoty = 72; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); if (dx < 15 && dy < 15) { if (squeeze < 4) { ++squeeze; } sreset = 1; } else { if (squeeze) { --squeeze; } if (sreset) { sreset = 0; ++squeezes; if (squeezes >= 4) { fast = 0; chad = -7; shad = 0; elad = 0; elam = 0; sham = 0; cham = 0; saythisl(320, 60, bub4l, tx, ty); wait = 60; ssay = 11; } } } if (squeeze < 2) { if (hsf1 < 100) { hsf1 += 10; } else { if (hsf2 > 0) { hsf2 -= 10; } } } else { if (hsf2 < 100) { hsf2 += 10; } else { if (hsf1 > 0) { hsf1 -= 10; } } } } else { if (ssay == 11) { if (wait) { --wait; } else { jx = -54; jy = -122; saythisl(321, 70, bub4r, jx, jy); wait = 80; ssay = 12; } } else { if (ssay == 12) { if (wait) { --wait; } else { saythisl(322, 70, bub4l, tx, ty); wait = 20; ssay = 13; } } else { if (ssay == 13) { hotx = -43; hoty = 135; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); mmx = mousex - omousex; omousex = mousex; if (dx < 15 && dy < 15 && mmx > 0) { fast = 0; chad = +fadjx; shad = -18 + adjx; elad = -40 + adjy; elam = 0; sham = 0; cham = 0; ssay = 14; } } else { if (ssay == 14) { if (movedone >= 2) { ssay = 15; rubspeed = 5; rubmod = 10; ra = 0; } } else { if (ssay == 15) { ra -= rubspeed; rub = sine(ra) * rubmod; elad = -40 + rub; chad = +(rub * -0.1); if (ra < -630) { fast = 0; chad = -7; shad = 0; elad = 0; elam = 0; sham = 0; cham = 0; saythisl(323, 60, bub4r, -54, -122); wait = 60; ssay = 16; } } else { if (ssay == 16) { if (wait) { --wait; } else { saythisl(324, 60, bub4l, btx, bty); wait = 60; ssay = 17; } } else { if (ssay == 17) { if (wait) { --wait; } else { saythisl(325, 70, bub4r, -54, -122); wait = 80; ssay = 18; } } else { if (ssay == 18) { if (wait) { --wait; } else { saythisl(326, 60, bub4l, btx, bty); wait = 60; ssay = 19; } } else { if (ssay == 19) { if (wait) { --wait; } else { saythisl(327, 60, bub4r, -54, -122); wait = 60; ssay = 20; } } else { if (ssay == 20) { if (wait) { --wait; } else { saythisl(328, 70, bub4l, btx, bty); wait = 70; ssay = 21; } } else { if (ssay == 21) { hotx = -43; hoty = 135; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); mmx = mousex - omousex; omousex = mousex; if (dx < 15 && dy < 15 && mmx > 0) { fast = 0; shad = -18 + adjx; elad = -40 + adjy; chad = +fadjx; elam = 0; sham = 0; cham = 0; ssay = 22; } } else { if (ssay == 22) { if (movedone >= 2) { ssay = 23; rubspeed = 8; rubmod = 10; ra = 0; } } else { if (ssay >= 23 && ssay < 28 || ssay == 38) { if (ssay == 38) { if (strokes == 40 && !goblackslow) { goblackslow = 1; jana2done = 1; } if (rubmod < rubmodd) { rubmod += 0.1; brubmod = rubmod; } ss = strokes; if (ss > 24) { ss = 24; } if (ss > rubspeed) { rubspeed = ss; } if (strokes >= 20) { brubmod = 8 + (strokes - 20) / 2; if (brubmod > 20) { brubmod = 20; } } } else { brubmod = rubmod; } mon5 = 'brm:' + brubmod; ra -= rubspeed; if (ra < 0) { ra += 360; ++strokes; if (ssay >= 24 && rand(0, 100) < 40) { say('ooo'); } } rub = sine(ra) * rubmod; brub = sine(ra) * brubmod; bha = brub * -0.11; bcha = brub * -0.03; brla = brub * 0.03; blla = brub * 0.03; if (ssay == 38) { elad = -42 + adjy + rub; } else { elad = -40 + rub; } chad = +(rub * -0.1); if (ssay == 23 && strokes == 3) { saythisl(329, 70, bub4l, btx, bty); rubspeed = 12; ssay = 24; } if (ssay == 24) { if (hdsf2 < 100) { hdsf2 += 10; } else { if (hdsf1 > 0) { hdsf1 -= 10; } } } if (strokes >= 10 && ssay == 24) { hotx = 62; hoty = -113; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); if (dx < 15 && dy < 15) { saythisl(330, 40, bub4l, btx, bty); ssay = 25; wait = 40; sreset = 0; } } if (ssay == 25) { if (wait) { --wait; } else { saythisl(331, 60, bub4r, -54, -122); rubspeed = 4; ssay = 26; } } if (ssay == 26) { if (rubspeed < 15) { rubspeed += 0.1; } hotx = 62; hoty = -113; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); if (dx > 15 || dy > 15) { sreset = 1; } if (dx < 15 && dy < 15 && sreset) { saythisl(332, 60, bub4l, btx, bty); ssay = 27; wait = 120; } } if (ssay == 27) { if (wait) { --wait; } else { if (rubmod > 0) { rubmod -= 0.25; } else { ssay = 28; } if (rubspeed > 4) { rubspeed -= 0.1; } } } } else { if (ssay == 28) { fast = 0; shad = -14 + adjx; elad = -46 + adjy; chad = 1 + fadjx; elam = 0; sham = 0; cham = 0; ssay = 29; } else { if (ssay == 29) { if (movedone >= 3) { if (hsf2 < 100) { hsf2 += 10; } else { if (hsf1 > 0) { hsf1 -= 10; } else { ssay = 30; } } } } else { if (ssay == 30) { zipper = 1; fast = 1; shad = -8 + adjx; elad = -39 + adjy; chad = -4 + fadjx; hotx = 16; hoty = 67; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); mmx = mousex - omousex; omousex = mousex; if (dx < 15 && dy < 15 && mmx > 0) { fast = 0; shad = -14 + adjx; elad = -46 + adjy; chad = 1 + fadjx; elam = 0; sham = 0; cham = 0; ssay = 31; } } else { if (ssay == 31) { zipper = 1; if (movedone >= 3) { shad = -14 + adjx; elad = -30 + adjy; chad = 1 + fadjx; elam = 0; sham = 0; cham = 0; ssay = 32; } } else { if (ssay == 32) { if (ela > -38) { zipper = 2; } if (movedone >= 3) { fast = 1; shad = -8 + adjx; elad = -39 + adjy; chad = -4 + fadjx; ssay = 33; } } else { if (ssay == 33) { hotx = 16; hoty = 67; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); mmx = mousex - omousex; omousex = mousex; if (dx < 15 && dy < 15 && mmx > 0) { fast = 0; shad = -29 + adjx; elad = -46 + adjy; chad = 1 + fadjx; elam = 0; sham = 0; cham = 0; ssay = 34; } } else { if (ssay == 34) { if (sha < -26) { zipper = 3; } if (movedone >= 3) { fast = 1; shad = -8 + adjx; elad = -39 + adjy; chad = -4 + fadjx; ssay = 35; wait = 40; } } else { if (ssay == 35) { if (wait) { --wait; } else { saythisl(333, 60, bub4l, btx, bty); ssay = 36; } } else { if (ssay == 36) { hotx = 16; hoty = 67; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); mmx = mousex - omousex; omousex = mousex; if (dx < 15 && dy < 15 && mmx > 0 || jana2done) { fast = 0; shad = -24 + adjx; elad = -40 + adjy; chad = +fadjx; elam = 0; sham = 0; cham = 0; ssay = 37; } } else { if (ssay == 37) { if (hsf1 < 100) { hsf1 += 10; } else { if (hsf2 > 0) { hsf2 -= 10; } } if (movedone >= 3) { fast = 1; if (jana2done) { strokes = 36; } else { strokes = 9; } rubspeed = 12; rubmod = 0; rubmodd = 8; ra = 0; ssay = 38; } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } mon4 = 'str:' + strokes + ' ra:' + floor(ra); } function icindy3() { room = 4; level = 3; roomlevel = 3; if (scenestarted == 0) { hideall(); } wait = 0; ssay = 0; sub = 0; moverm = 0; moverd = 0; mover = 0; sf1 = 100; bg2alpha = 0; may = 0; maa = 0; mpy = 0; mpx = 0; mlay = 0; mlaa = 0; mlla = 0; mrla = 0; fa = 90; fspeed = 10; fuck = 0; fmod = 0; fda = 0; faa = 0; frla = 0; flla = 0; fcha = 0; fha = 0; fapy = 0; fapx = 0; fyp = 0; fxp = 0; ccha = 0; cfaa = 0; cfha = 0; cfyp = 0; cfxp = 0; chaa = 0; cypa = 0; cxpa = 0; smay = 0; smaa = 0; thmba = 0; fmadd = 0; strokes = 0; intensity = 0; moveadd = 0; movereset = 0; nowait = 0; larm2 = 0; thmba = 3; sub5adj = 0; scenestarted = 1; xstrokes = 0; af = 100; paf = 100; showpussyf = 1; ada = 0; rarma = 0; fucking = 0; fast = 0; wince = 0; winceadd = 0; cfa = 0; cfspeed = 7; cfuck = 0; cfmod = 0; cffaa = 0; cfm = 0; sync = 0; rarma1 = 100; rarma2 = 0; bg2alpha = 100; sub = 1; moverd = 100; moverm = 0; mover = 0; smaa = -29.7; smay = -42.2; smpx = 35.5; smpy = -21.6; smrla = -14.4; smlla = 11.5; ssay = 3; sub = 5; strokes = 50; larm2 = 1; smpx = 103.3; smpy = -52.5; smaal = -22.7; smayl = -34.2; smrla = -14.4; smlla = 11.5; sub5adj = -23; chaa = 8; cxpa = 5; cypa = 10; moverd = 100; moverm = 0; mover = 100; auto = 0; warp = 0; if (cindy3done) { smpx = 59.4; smpy = -38.5; smaal = -37.7; smayl = 13.8; smrla = -8.970000000000001; smlla = 4.998; schaa = -1.98; scxpa = 4; scypa = 37.94; sccha = -6.9; sada = 6.9; ssay = 7; tries = 7; af = 0; cheekf = 100; showpussyf = 0; fucking = 1; auto = 1; sync = 1; warp = 1; rarma1 = 0; rarma2 = 100; } ChangeTheme(CindyTheme); } function docindy3() { if (scenestarted != 1) { icindy3(); } dosprites_cindy3(); dosay_cindy3(); bg_mc.swapDepths(0); bg2_mc.swapDepths(10000); bg_mc.gotoAndStop(71); bg2_mc.gotoAndStop(72); bg_mc._x = 320; bg_mc._y = 240; bg_mc._xscale = 100; bg_mc._yscale = 100; bg2_mc._x = 320; bg2_mc._y = 240; bg2_mc._xscale = 100; bg2_mc._yscale = 100; bg_mc._alpha = 100; bg2_mc._alpha = bg2alpha; } function dosprites_cindy3() { dx = moverd - mover; if (abs(dx) > 0.25) { if (abs(moverm) < abs(dx / 8)) { mover += moverm; if (dx > 0) { moverm += 0.25; } else { moverm -= 0.25; } } else { if (fast) { mover += dx / 4; } else { mover += dx / 8; } } } mix = 12; miy = -6; mux = 192; muy = -305; mix += mux * mover / 100; miy += muy * mover / 100; sprite1_mc.gotoAndStop(212); sprite1_mc._x = mix; sprite1_mc._y = miy; sprite1_mc._rotation = 0; sprite1_mc.swapDepths(1990); sprite1_mc._alpha = sf1; mhx = 74 + mpx + fxp; mhy = 169 + mpy + fyp; mha = +fha; mcha = +fcha; mllaa = mlla + flla; mrlaa = mrla + frla; marmsa = 30 + faa + rarma; marmsal = 30 + faa; mda = +fda + ada; eoa = 178; erad = 124; xadd = sine(eoa + mha) * erad; yadd = -cosine(eoa + mha) * erad; mrlx = mhx + xadd; mrly = mhy + yadd; eoa = 21; erad = -104; xadd = sine(eoa + mha) * erad; yadd = -cosine(eoa + mha) * erad; mllx = mhx + xadd; mlly = mhy + yadd; eoa = 160; erad = 153; xadd = sine(eoa + mha) * erad; yadd = -cosine(eoa + mha) * erad; mdx = mhx + xadd; mdy = mhy + yadd; eoa = 208; erad = -310; xadd = sine(eoa + mcha) * erad; yadd = -cosine(eoa + mcha) * erad; mshx = mhx + xadd + fapx; mshy = mhy + yadd + fapy; mshyl = mshy; mshy += may; marmsa += maa; mshyl += mayl; marmsal += maal; eoa = 185.6; erad = 343.1; xadd = sine(eoa + marmsal) * erad; yadd = -cosine(eoa + marmsal) * erad; thmbx = mshx + xadd; thmby = mshyl + yadd; sprite10_mc.gotoAndStop(213); sprite10_mc._x = mhx; sprite10_mc._y = mhy; sprite10_mc._rotation = 45 + mha; sprite10_mc.swapDepths(11200); sprite10_mc._alpha = bg2alpha; sprite11_mc.gotoAndStop(214); sprite11_mc._x = mrlx; sprite11_mc._y = mrly; sprite11_mc._rotation = 45 + mrlaa; sprite11_mc.swapDepths(11220); sprite11_mc._alpha = bg2alpha; sprite12_mc.gotoAndStop(215); sprite12_mc._x = mllx; sprite12_mc._y = mlly; sprite12_mc._rotation = 45 + mllaa; sprite12_mc.swapDepths(11100); sprite12_mc._alpha = bg2alpha; sprite13_mc.gotoAndStop(216); sprite13_mc._x = mhx; sprite13_mc._y = mhy; sprite13_mc._rotation = -45 + mcha; sprite13_mc.swapDepths(11198); sprite13_mc._alpha = bg2alpha; sprite14_mc.gotoAndStop(217); sprite14_mc._x = mshx; sprite14_mc._y = mshy; sprite14_mc._rotation = 30 + marmsa; sprite14_mc.swapDepths(11240); sprite14_mc._alpha = rarma1; sprite18_mc.gotoAndStop(312); sprite18_mc._x = mshx; sprite18_mc._y = mshy; sprite18_mc._rotation = 30 + marmsa; sprite18_mc.swapDepths(11241); sprite18_mc._alpha = rarma2; if (larm2) { sprite15_mc.gotoAndStop(220); } else { sprite15_mc.gotoAndStop(218); } sprite15_mc._x = mshx; sprite15_mc._y = mshyl; sprite15_mc._rotation = 48 + marmsal; if (larm2) { sprite15_mc.swapDepths(11195); } else { sprite15_mc.swapDepths(10001); } sprite15_mc._alpha = bg2alpha; sprite17_mc.gotoAndStop(221); sprite17_mc._x = thmbx; sprite17_mc._y = thmby; sprite17_mc._rotation = 48 + marmsal + thmba; sprite17_mc.swapDepths(11196); if (larm2) { sprite17_mc._alpha = bg2alpha; } else { sprite17_mc._alpha = 0; } sprite16_mc.gotoAndStop(219); sprite16_mc._x = mdx; sprite16_mc._y = mdy; sprite16_mc._rotation = 45 + mda; sprite16_mc.swapDepths(11192); sprite16_mc._alpha = bg2alpha; chx = 384 + cfxp + cxpa; chy = 231 + cfyp + cypa; cha = +cfha + chaa; caa = +cfaa + cffaa; eoa = 98; erad = 217; xadd = sine(eoa + ccha) * erad; yadd = -cosine(eoa + ccha) * erad; crshx = chx + xadd; crshy = chy + yadd; eoa = 88; erad = 135; xadd = sine(eoa + ccha) * erad; yadd = -cosine(eoa + ccha) * erad; clshx = chx + xadd; clshy = chy + yadd; sprite2_mc.gotoAndStop(222); sprite2_mc._x = chx; sprite2_mc._y = chy; sprite2_mc._rotation = 45 + cha; sprite2_mc.swapDepths(10100); sprite2_mc._alpha = bg2alpha; if (showpussyf == 0) { sprite3_mc.gotoAndStop(225); sprite3_mc._x = chx; sprite3_mc._y = chy; sprite3_mc._rotation = 45 + cha; sprite3_mc.swapDepths(11193); sprite3_mc._alpha = paf; } else { sprite3_mc.gotoAndStop(223); sprite3_mc._x = chx; sprite3_mc._y = chy; sprite3_mc._rotation = 45 + cha; sprite3_mc.swapDepths(11193); sprite3_mc._alpha = paf; } sprite9_mc.gotoAndStop(224); sprite9_mc._x = chx; sprite9_mc._y = chy; sprite9_mc._rotation = 45 + cha; sprite9_mc.swapDepths(11197); sprite9_mc._alpha = af; sprite6_mc.gotoAndStop(226); sprite6_mc._x = chx; sprite6_mc._y = chy; sprite6_mc._rotation = 45 + ccha; sprite6_mc.swapDepths(10090); sprite6_mc._alpha = bg2alpha; sprite7_mc.gotoAndStop(227); sprite7_mc._x = clshx; sprite7_mc._y = clshy; sprite7_mc._rotation = 45 + caa; sprite7_mc.swapDepths(10080); sprite7_mc._alpha = bg2alpha; sprite8_mc.gotoAndStop(228); sprite8_mc._x = crshx; sprite8_mc._y = crshy; sprite8_mc._rotation = -45 + caa; sprite8_mc.swapDepths(10095); sprite8_mc._alpha = bg2alpha; } function dosay_cindy3() { if (ssay == 3) { if (sub == 5) { if (sub5adj > -23) { --sub5adj; } mpx = smpx + +adjx * mover / 100; mpy = smpy + (-4 + adjy) * mover / 100; maal = smaal + -1 * mover / 100; mayl = smayl + (9 + fadjy) * mover / 100; chaa = 8 * mover / 100; cxpa = (5 + wadjx) * mover / 100; cypa = (10 + wadjy) * mover / 100; thmba = (-34 + fadjx) * strokes / 50; mayl += 35 * strokes / 50; } fha = fuck * 5; fcha = fuck * 2; flla = fuck * -2.6; frla = fuck * -2.7; faa = fuck * -1.3; fapx = fuck * -9.5; if (sub < 5) { fapy = fuck * -6.3; } else { fapy = fuck * (-63 + sub5adj) / 10; } fda = 0; fxp = fuck * -10; fyp = fuck * 3.2; pfuck = fuck; if (pfuck > -0.5) { pfuck = -0.5; } cfxp = pfuck * -3.3; cfyp = 0; cfha = pfuck * -0.9; cfaa = pfuck * -0.9; hotx = -79; rtbx = 241; if (sub < 5) { fspeed = 10 + strokes * 0.2; } else { fspeed = 14; } if (fa < 180) { if (sub == 5) { movereset = 2; } else { if (fspeed >= 18) { if (mousex != omousex) { movereset = 2; } } else { if (!movereset) { if (mousex < rtbx) { movereset = 1; } } else { if (movereset == 1) { if (mousex > rtbx) { movereset = 2; } } } } } if (movereset >= 2) { dx = fspeed - moveadd; moveadd += dx / 2; } else { if (fspeed > 30) { moveadd -= moveadd / 6; } else { if (fspeed > 20) { moveadd -= moveadd / 6; } else { moveadd -= moveadd / 8; } } } omousex = mousex; } else { dx = fspeed - moveadd; moveadd += dx / 4; if (mousex < rtbx) { movereset = 1; } } umoveadd = moveadd; fa += umoveadd; intensity = strokes; ui = (intensity / 100) * 0.3; fmod = 1 + ui; fuck = sine(fa + 90) * fmod; if (fa >= 360) { fa -= 360; ++strokes; if (sub < 5) { if (strokes > 100) { strokes = 100; } } else { ++xstrokes; if (xstrokes >= 5) { sub = 6; ssay = 4; smpx = mpx; smpy = mpy; smaal = maal; smayl = mayl; schaa = chaa; scxpa = cxpa; scypa = cypa; smrla = mrla; smlla = mlla; mover = 0; moverd = 100; moverm = 0; } if (strokes > 50) { strokes = 50; } } } if (fa >= 180 && ofa < 180) { movereset = 0; } ofa = fa; } else { if (ssay == 4) { mpx = smpx + (-44 + adjx) * mover / 100; mpy = smpy + (18 + adjy) * mover / 100; maal = smaal + (-7 + fadjx) * mover / 100; mayl = smayl + (-18 + fadjy) * mover / 100; mrla = smrla + (-9 + qadjx) * mover / 100; mlla = smlla + (5 + qadjy) * mover / 100; chaa = schaa; cxpa = scxpa; cypa = scypa; if (mover >= 99.75) { smpx = mpx; smpy = mpy; smaal = maal; smayl = mayl; smrla = mrla; smlla = mlla; schaa = chaa; scxpa = cxpa; scypa = cypa; mover = 0; fast = 1; moverd = 100; ssay = 5; } } else { if (ssay == 5) { if (showpussyf) { if (paf > 0) { paf -= 10; } else { showpussyf = 0; } } else { if (paf < 100) { paf += 10; } } mpx = smpx + +adjx * mover / 100; mpy = smpy + +adjy * mover / 100; maal = smaal + (4 + fadjx) * mover / 100; mayl = smayl + (-19 + fadjy) * mover / 100; mrla = smrla + +qadjx * mover / 100; mlla = smlla + +qadjy * mover / 100; chaa = schaa; cxpa = scxpa; cypa = scypa; if (mover >= 99.75) { hotx = -78; hoty = -84; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); mmx = mousex - omousex; omousex = mousex; if (dx < 15 && dy < 15 && mmx > 2) { smpx = mpx; smpy = mpy; smaal = maal; smayl = mayl; smrla = mrla; smlla = mlla; schaa = chaa; scxpa = cxpa; scypa = cypa; af = 0; cheekf = 100; mover = 0; moverm = 7; fast = 1; moverd = 100; ssay = 5.5; } } } else { if (ssay == 5.5) { mpx = smpx + +adjx * mover / 100; mpy = smpy + +adjy * mover / 100; maal = smaal + (-11 + fadjx) * mover / 100; mayl = smayl + (-3 + fadjy) * mover / 100; mrla = smrla + +qadjx * mover / 100; mlla = smlla + +qadjy * mover / 100; ada = +(+zadjy * mover / 100); chaa = schaa + +zadjx * mover / 100; cxpa = scxpa + +wadjx * mover / 100; cypa = scypa + +wadjy * mover / 100; if (mover >= 99.75) { hotx = 0; hoty = -95; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); mmy = mousey - omousey; omousey = mousey; if (dx < 15 && dy < 15 && mmy > 2) { smpx = mpx; smpy = mpy; smaal = maal; smayl = mayl; smrla = mrla; smlla = mlla; sada = ada; schaa = chaa; scxpa = cxpa; scypa = cypa; mover = 0; moverm = 7; moverd = 100; ssay = 6; insert = 0; } } } else { if (ssay == 6) { mpx = smpx + +adjx * mover / 100; mpy = smpy + +adjy * mover / 100; maal = smaal + +fadjx * mover / 100; mayl = smayl + (44 + fadjy) * mover / 100; mrla = smrla + +qadjx * mover / 100; mlla = smlla + +qadjy * mover / 100; ada = +((7 + zadjy) * mover / 100); rarma = 5 * mover / 100; chaa = schaa + -10 * mover / 100; cxpa = scxpa + (-1 + wadjx) * mover / 100; cypa = scypa + (28 + wadjy) * mover / 100; ccha = (-7 + zadjx) * mover / 100; if (mover >= 99.75) { smpx = mpx; smpy = mpy; smaal = maal; smayl = mayl; smrla = mrla; smlla = mlla; sada = ada; srarma = rarma; schaa = chaa; scxpa = cxpa; scypa = cypa; sccha = ccha; mover = 0; moverm = 6; moverd = 100; ssay = 7; insert = 0; fa = 0; fspeed = 10; tries = 0; if (nowait) { tries = 6; } } } else { if (ssay == 7) { hotx = -54; dx = abs(cmousex - hotx); mmx = mousex - omousex; omousex = mousex; if (fa == 0 && dx < 15 && mmx > 2 && !sync) { fa = 1; if (tries < 7) { ++tries; } if (fucking == 2 && !sync) { sync = 1; fspeed = cfspeed - 0.6; } } mpx = smpx + 72 * insert / 100; mpy = smpy + -23 * insert / 100; maal = smaal + 13 * insert / 100; mayl = smayl + 13 * insert / 100; mrla = smrla + 12 * insert / 100; mlla = smlla + (18 + qadjy) * insert / 100; if (fucking == 2 && sync == 2) { if (rarma > -2) { rarma -= 0.5; } if (rarma2 < 100) { rarma2 += 20; } else { if (rarma1 > 0) { rarma1 -= 20; } } } ada = sada; chaa = schaa + +zadjx * insert / 100; cxpa = scxpa + +wadjx * insert / 100; cypa = scypa + +wadjy * insert / 100; ccha = sccha; chaa += winceadd; cxpa += winceadd * 4; ccha += winceadd * -1; chaa += cfuck; cxpa += cfuck * 4; ccha += cfuck * -1.7; cffaa = cfuck * 1.2; maal += cfuck * -0.7; if (wince && fa < 190) { if (wince < 7) { ++wince; } } winceadd = wince * 0.1; if (wait) { --wait; if (wait == 0) { fucking = 2; sinsert = insert; fspeed = 6; fa = 0; if (auto) { sync = 1; } sayfile('Moaning10.wav'); } } else { if (fa > 0 || sync == 2) { if (fa >= 170 && ofa <= 170 && fucking == 2) { say('mslap'); } if (fa >= 170 && fa <= 190 && fucking == 0) { fa += 2; } else { fa += fspeed; } if (fa >= 160 && ofa < 160 && tries < 7) { say('gasp'); wince = 1; } ofa = fa; if (tries == 7 && fa >= 180 && !fucking) { fucking = 1; tx = 0; ty = -235; saythisl(343, 60, 18, tx, ty); wait = 20; } if (fa >= 190 && wince) { --wince; } if (fa >= 360) { fa = 0; } } } fuck = 1 + sine(fa - 90); if (fucking < 2) { insert = fuck * (tries * 3 + 5); } else { insert = sinsert + fuck * 30; } cfmmax = 20 + tries * 2; if (tries >= 7) { cfmmax = 40; } if (cfm < cfmmax) { ++cfm; } cfmod = cfm / 100; cfa += cfspeed; cfuck = sine(cfa) * cfmod; if (cfa >= 360) { cfa -= 360; if (sync == 2) { cfspeed += 0.5; fspeed = cfspeed; if (fspeed >= 10 && !goblackslow) { goblackslow = 1; cindy3done = 1; } } } if (sync == 1) { trig = 90; if (fa == 0 && cfa >= trig && ocfa < trig) { fa = 1; sync = 2; fspeed = cfspeed; } } ocfa = cfa; } } } } } } if (Key.isDown(82)) { scenestarted = 2; } if (Key.isDown(76)) { tries = 6; } mon4 = 'sub:' + sub + ' spd:' + floor(fspeed) + ' fmod:' + fmod + ' mvr:' + mover + ' cfa:' + cfa; mon6 = 'tries:' + tries + 'f:' + fucking + ' w:' + wince + ' sync:' + sync; } function icindy4() { room = 4; level = 4; roomlevel = 4; if (scenestarted == 0) { hideall(); } wait = 40; ssay = 0; sub = 0; moverm = 0; moverd = 0; mover = 0; sf1 = 100; bg2alpha = 0; scenestarted = 1; jack = 0; ja = 0; jmod = 1; jspeed = 0; fuck = 0; fa = 0; tfmod = 0.6; fmod = 0.6; fspeed = 0; ospeed = 0; deeper = 0; faster = 0; strokes = 0; looka = 0; iffa = 9; ifhx = 15; depth = 0; fdepth = 1; tbounce = 0; bounce = 0; tba = 0; shudder = 0; shuddadd = 0; shang = 0; arch = 0; squirts = 0; cummed = 0; cumming = 0; gooa = 0; slowing = 0; moanreq = 0; if (cindy4done) { ssay = 10; bg2alpha = 100; faster = 1; deeper = 1; fmod = 1.5; slowing = 1; cummed = 1; fspeed = 2; ospeed = 2; } ChangeTheme(CindyTheme); } function docindy4() { if (scenestarted != 1) { icindy4(); } dosprites_cindy4(); dosay_cindy4(); bg_mc.swapDepths(0); bg2_mc.swapDepths(1000); bg_mc.gotoAndStop(81); bg2_mc.gotoAndStop(82); bg_mc._x = 320; bg_mc._y = 240; bg_mc._xscale = 100; bg_mc._yscale = 100; bg2_mc._x = 320; bg2_mc._y = 240; bg2_mc._xscale = 100; bg2_mc._yscale = 100; bg_mc._alpha = 100; bg2_mc._alpha = bg2alpha; } function dosprites_cindy4() { sprite25_mc.gotoAndStop(436); sprite25_mc._x = 0; sprite25_mc._y = 240; sprite25_mc._rotation = 0; sprite25_mc._xscale = 100 + bedbounce; sprite25_mc.swapDepths(10001); sprite25_mc._alpha = bg2alpha; cax = 332 + cxm; cay = 347 + cym; eoa = -78; erad = 107; xadd = sine(eoa + cha) * erad; yadd = -cosine(eoa + cha) * erad; crlx = cax + xadd; crly = cay + yadd; eoa = -118.2; erad = 110; xadd = sine(eoa + cha) * erad; yadd = -cosine(eoa + cha) * erad; cllx = cax + xadd; clly = cay + yadd; eoa = 1; erad = 57; xadd = sine(eoa + ccha) * erad; yadd = -cosine(eoa + ccha) * erad; crhx = cax + xadd + jhx - 16 - 6 + 9; crhy = cay + yadd + jhy - 3; eoa = -103; erad = 51; xadd = sine(eoa + rha) * erad; yadd = -cosine(eoa + rha) * erad; cfx = crhx + xadd; cfy = crhy + yadd; max = 79 + mmx + 14; may = 425 + mmy; eoa = -8; erad = 205; xadd = sine(eoa + mba) * erad; yadd = -cosine(eoa + mba) * erad; mrax = max + xadd; mray = may + yadd; eoa = -7; erad = 141; xadd = sine(eoa + crla) * erad; yadd = -cosine(eoa + crla) * erad; mlax = crlx + xadd; mlay = crly + yadd; eoa = -1; erad = 5; xadd = sine(eoa + mba) * erad; yadd = -cosine(eoa + mba) * erad; mrlx = max + xadd; mrly = may + yadd; eoa = -11; erad = 85; xadd = sine(eoa + mba) * erad; yadd = -cosine(eoa + mba) * erad; mllx = max + xadd; mlly = may + yadd; eoa = 57; erad = 73; xadd = sine(eoa + mba) * erad; yadd = -cosine(eoa + mba) * erad; mdx = max + xadd; mdy = may + yadd; eoa = 59; erad = 87; xadd = sine(eoa + mba) * erad; yadd = -cosine(eoa + mba) * erad; mbx = max + xadd; mby = may + yadd; sprite10_mc.gotoAndStop(415); sprite10_mc._x = max; sprite10_mc._y = may; sprite10_mc._rotation = -45 + mba; sprite10_mc.swapDepths(10198); sprite10_mc._alpha = bg2alpha; sprite11_mc.gotoAndStop(416); sprite11_mc._x = mlax; sprite11_mc._y = mlay; sprite11_mc._rotation = -45 + mlaa; sprite11_mc.swapDepths(10197); sprite11_mc._alpha = bg2alpha; sprite12_mc.gotoAndStop(417); sprite12_mc._x = mrax; sprite12_mc._y = mray; sprite12_mc._rotation = 45 + mraa; sprite12_mc.swapDepths(11320); sprite12_mc._alpha = bg2alpha; sprite13_mc.gotoAndStop(418); sprite13_mc._x = mllx; sprite13_mc._y = mlly; sprite13_mc._rotation = 45 + mlla; sprite13_mc.swapDepths(10040); sprite13_mc._alpha = bg2alpha; sprite14_mc.gotoAndStop(419); sprite14_mc._x = mrlx; sprite14_mc._y = mrly; sprite14_mc._rotation = 45 + mrla; sprite14_mc.swapDepths(11240); sprite14_mc._alpha = bg2alpha; sprite18_mc.gotoAndStop(420); sprite18_mc._x = mdx; sprite18_mc._y = mdy; sprite18_mc._rotation = 45 + mda; sprite18_mc.swapDepths(10098); sprite18_mc._alpha = bg2alpha; sprite19_mc.gotoAndStop(421); sprite19_mc._x = mbx; sprite19_mc._y = mby; sprite19_mc._rotation = 45 + mda; sprite19_mc.swapDepths(10097); sprite19_mc._alpha = bg2alpha; sprite15_mc.gotoAndStop(434); sprite15_mc._x = mdx; sprite15_mc._y = mdy; sprite15_mc._rotation = 45 + mda; sprite15_mc.swapDepths(10099); sprite15_mc._alpha = gooa; sprite1_mc.gotoAndStop(423); sprite1_mc._x = cax; sprite1_mc._y = cay; sprite1_mc._rotation = -45 + cha; sprite1_mc.swapDepths(10100); sprite1_mc._alpha = bg2alpha; sprite2_mc.gotoAndStop(424); sprite2_mc._x = crlx; sprite2_mc._y = crly; sprite2_mc._rotation = -45 + crla; sprite2_mc.swapDepths(10050); sprite2_mc._alpha = bg2alpha; sprite3_mc.gotoAndStop(425); sprite3_mc._x = cllx; sprite3_mc._y = clly; sprite3_mc._rotation = 45 + clla; sprite3_mc.swapDepths(10200); sprite3_mc._alpha = bg2alpha; sprite4_mc.gotoAndStop(426); sprite4_mc._x = cax; sprite4_mc._y = cay; sprite4_mc._rotation = 45 + ccha; sprite4_mc.swapDepths(10090); sprite4_mc._alpha = bg2alpha; sprite5_mc.gotoAndStop(427); sprite5_mc._x = crhx; sprite5_mc._y = crhy; sprite5_mc._rotation = -45 + rha; sprite5_mc.swapDepths(10110); sprite5_mc._alpha = bg2alpha; sprite6_mc.gotoAndStop(428); sprite6_mc._x = cfx; sprite6_mc._y = cfy; sprite6_mc._rotation = -45 + ffa; sprite6_mc.swapDepths(10120); sprite6_mc._alpha = bg2alpha; sprite7_mc.gotoAndStop(429); sprite7_mc._x = crhx; sprite7_mc._y = crhy; sprite7_mc._rotation = -45 + rha; sprite7_mc.swapDepths(10140); sprite7_mc._alpha = bg2alpha; sprite8_mc.gotoAndStop(430); sprite8_mc._x = cax + fax; sprite8_mc._y = cay + fay; sprite8_mc._rotation = +ccha; sprite8_mc.swapDepths(10108); sprite8_mc._alpha = bg2alpha; sprite9_mc.gotoAndStop(431); sprite9_mc._x = cax; sprite9_mc._y = cay; sprite9_mc._rotation = 45 + cha; sprite9_mc.swapDepths(10091); sprite9_mc._alpha = looka; sprite20_mc.gotoAndStop(432); sprite20_mc._x = cax + titx; sprite20_mc._y = cay + tity; sprite20_mc._rotation = 45 + ccha; sprite20_mc.swapDepths(10109); sprite20_mc._alpha = bg2alpha; sprite21_mc.gotoAndStop(433); sprite21_mc._x = cax; sprite21_mc._y = cay; sprite21_mc._rotation = -45 + cha; sprite21_mc.swapDepths(10121); sprite21_mc._alpha = bg2alpha; sprite22_mc.gotoAndStop(435); sprite22_mc._x = cax; sprite22_mc._y = cay; sprite22_mc._rotation = -45 + cha; sprite22_mc.swapDepths(10101); sprite22_mc._alpha = gooa; } function dosay_cindy4() { if (ssay == 0) { if (wait) { --wait; } else { ssay = 1; } } else { if (ssay == 1) { if (bg2alpha < 100) { bg2alpha += 10; } else { hotx = 223; hoty = -18; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); if (dx < 15 && dy < 15) { wait = 77; ssay = 2; } } } else { if (ssay == 2) { if (looka < 100) { looka += 20; } else { if (wait) { if (wait == 72) { tx = 201; ty = -41; saythisl(344, 60, bub4r, tx, ty); } --wait; } else { saythisl(345, 60, bub4r, tx, ty); wait = 90; ssay = 3; } } } else { if (ssay == 3) { if (wait) { --wait; } else { ssay = 3.5; wait = 20; } } else { if (ssay == 3.5) { iffa -= iffa / 8; ifhx -= ifhx / 8; if (looka > 0) { looka -= 20; } else { if (wait) { --wait; } else { jspeed = 7; saythisl(346, 60, bub4r, tx, ty); wait = 10; ssay = 4; } } } else { if (ssay == 4) { iffa -= iffa / 8; if (iffa < 0.25) { iffa = 0; } ifhx -= ifhx / 8; if (ifhxa < 0.25) { ifhx = 0; } if (wait) { --wait; } else { hotx = -171; hoty = 144; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); mmx = mousex - omousex; omousex = mousex; if (dx < 15 && dy < 15 && mmx > 0) { ospeed = 5; fspeed = 5; ssay = 5; } } } else { if (ssay == 5) { if (strokes == 5) { saythisl(347, 60, bub4r, tx, ty); ssay = 6; jspeed = 10; } } else { if (ssay == 6) { if (strokes == 8) { saythisl(348, 60, bub4r, tx, ty); ssay = 7; jspeed = 14; } } else { if (ssay == 7) { if (strokes == 10) { saythisl(349, 60, bub4r, tx, ty); ssay = 8; jspeed = 19; } } else { if (ssay == 8) { if (strokes == 11) { saythisl(350, 60, bub4r, tx, ty); ssay = 9; jspeed = 25; } } else { if (ssay == 9) { if (strokes == 12) { deeper = 1; } jspeed = 25 + depth * 20; if (depth >= 1) { saythisl(351, 60, bub4r, tx, ty); ssay = 10; faster = 1; } } else { if (ssay == 10) { if (cummed) { jspeed = 0; if (iffa < 9) { iffa += 0.5; } if (ifhx < 15) { ifhx += 0.5; } } else { jspeed = 33 + fspeed / 2; } } } } } } } } } } } } } if (shudder) { shang += 141; sqdeptab = [0, 1, 2, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 2, 1, 0, 0]; shdepth = sqdeptab[shudder]; shuddadd = sine(shang) * (shdepth * 0.07000000000000001); --shudder; arch = sine(shudder * 9) + shuddadd * 0.5; } else { shuddadd = 0; } ja += jspeed; jack = sine(ja) * jmod; jackd = sine(ja + 57) * jmod; if (shudder) { } else { if (fa <= 180) { fa += fspeed; } else { fa += ospeed; } } fuck = sine(fa - 90) * fmod; fuckd = sine(fa - 60 - 90) * fmod; fuck += shuddadd * 0.2; fuckd += shuddadd * 0.2; pfuck = fuck; if (pfuck < 0) { pfuck = 0; } ppfuck = fuck; if (ppfuck < 0.6) { ppfuck = 0.6; } ppfuck -= 0.6; ppffuck = sine(fa - 90) + shuddadd * 0.2; if (ppffuck < 0.6) { ppffuck = 0.6; } ppffuck -= 0.6; if (bounce) { --bounce; } tba += 35; tbounce = sine(tba); titx = tbounce * (bounce / 20) * 3; tity = tbounce * (bounce / 20) * -1.5; if (fa >= 360) { fa -= 360; ++strokes; if (moanreq) { moanvol = 30; say('moan'); moanreq = 0; } } if (fa >= 180 && ofa < 180) { if (!cumming && fspeed >= 49) { slowing = 1; ospeed -= 5; huffvol = 50; say('huff2'); if (ospeed <= 15) { ospeed = 15; cumming = 1; } } if (cumming && !cummed) { ospeed = 15 - squirts; shudder = 20; ++squirts; moanreq = 1; saycum(0, squirts); gooa = squirts * 12.5; if (squirts >= 8) { cummed = 1; fspeed = 2; ospeed = 2; } } } if (fa >= 90 && ofa < 90) { if (cumming || slowing) { } else { if (cummed) { ospeed = 2; fspeed = 2; } else { if (faster) { if (fspeed < 50) { dx = (50 - fspeed) / 24; if (dx > 1) { dx = 1; } fspeed += dx; } if (fspeed < 49) { ospeed = fspeed / 1.5; if (ospeed < 5) { ospeed = 5; } } if (depth > 0) { depth -= 0.05; } else { depth = 0; } tfmod = 0.6 + depth; fdepth = (1 - depth) * 10; bounce = fspeed - 5; if (bounce > 20) { bounce = 20; } tba = 180; intensity = fspeed * 4; say('slap'); } else { if (deeper == 1) { if (depth < 1) { depth += 0.1; } tfmod = 0.6 + depth; } } } } } if (slowing) { tfmod = 1; } if (fmod < tfmod) { fmod += 0.01; } else { if (fmod > tfmod) { fmod -= 0.01; } } ofa = fa; mba = fuck * (-19 + zadjy) / 10; mlaa = 0; mraa = fuck * 2.7; mlla = fuck * -2.9; mrla = fuck * 3.5; mda = 0; mmx = fdepth + fuck * (150 + zadjx) / 10; mmx += arch * 5; mba += arch * -2.3; mmy = arch * -2.7; cfuckd = fuckd; cfuck = fuck; if (faster) { speedmod = (fspeed - 5) / 60; ispeedmod = 1 - speedmod; cfuckd = fuckd * ispeedmod; cfuck = fuck * ispeedmod; } cha = cfuck * 1.1; ccha = cfuckd * -1.3; crla = cfuck * -1.1; clla = cfuck * -1.5; rha = jack * 0.9; ffa = iffa + jackd * -1; jhx = ifhx + jack * 1.7; jhy = 0; fax = jhx / 2; fay = 0; if (faster) { fasterdepth = 1; cxm = ppffuck * fasterdepth * (100 + fadjx) / 10; } else { cxm = ppfuck * depth * (100 + fadjx) / 10; } bedbounce = cxm * 0.1; cxm += arch * 5; ccha += arch * 2; cym = arch * -2.7; if (cummed) { ++cummed; if (cummed == 110) { goblackslow = 1; cindy4done = 1; } } } function ibed2() { hideall(); room = 4; roomlevel = room4level; level = roomlevel; bg2alpha = 0; ssay = 0; wait = 40; spritefade = 0; mspritefade = 0; spritefade2 = 100; spritefade3 = 0; la = 0; lickmod = 1; sf3c1 = 0; sf3c2 = 0; sfx2 = 0; sfx1 = 0; moveadd = 0; movereset = 0; strokes = 0; intensity = 0; orgasm = 0; shang = 0; shudder = 0; cummed = 0; squirts = 0; arch = 0; breath = 0; ba = 0; relax = 0; scenestarted = 1; warp = 0; if (cindy1done) { bg2alpha = 100; ssay = 11; cummed = 2; fspeed = 0; relax = 5; warp = 1; } ChangeTheme(CindyTheme); } function dobed2() { if (room4level == 2) { docindy2(); return undefined; } if (room4level == 3) { docindy3(); return undefined; } if (room4level == 4) { docindy4(); return undefined; } if (!scenestarted) { ibed2(); } if (easter == 6) { doeaster6(); return undefined; } if (ssay >= 11) { dospriteslick(); } else { dospritesbed2(); } dobed2say(); bg_mc.swapDepths(0); bg2_mc.swapDepths(10000); if (ssay >= 8) { bg_mc.gotoAndStop(56); } else { bg_mc.gotoAndStop(54); } if (ssay >= 11) { bg2_mc.gotoAndStop(57); } else { bg2_mc.gotoAndStop(55); } bg_mc._x = 320; bg_mc._y = 240; bg_mc._xscale = 100; bg_mc._yscale = 100; bg2_mc._x = 320; bg2_mc._y = 240; bg2_mc._xscale = 100; bg2_mc._yscale = 100; bg_mc._alpha = 100; bg2_mc._alpha = bg2alpha; } function clearsprites2() { i = 1; while (i < 25) { ii = i + 1; _root['sprite' + ii + '_mc']._x = -10000; ++i; } } function dospriteslick() { ui = (intensity / 100) * 3; lickmod = 1 + ui; chipx = 356; chipy = 343 + lick * 1.2; cha = +(lick * 1.1); ccha = +(lick * -0.5); ccha -= arch * 24 / 10; cha += arch * 39 / 10; chipy += arch * 30 / 10; ccha += breath * 0.3; cha += breath * -0.4; ccha += relax; hoa = 60; hrad = -94; xadd = sine(hoa + cha) * hrad; yadd = -cosine(hoa + cha) * hrad; clx = chipx + xadd; cly = chipy + yadd; hoa = 165; hrad = -158; xadd = sine(hoa + cha) * hrad; yadd = -cosine(hoa + cha) * hrad; crlx = chipx + xadd; crly = chipy + yadd; hoa = 82; hrad = 176; xadd = sine(hoa + ccha) * hrad; yadd = -cosine(hoa + ccha) * hrad; cax = chipx + xadd; cay = chipy + yadd; hoa = 28; hrad = 58; xadd = sine(hoa + ccha) * hrad; yadd = -cosine(hoa + ccha) * hrad; crax = chipx + xadd; cray = chipy + yadd; hoa = 63; hrad = 202; xadd = sine(hoa + ccha) * hrad; yadd = -cosine(hoa + ccha) * hrad; chx = chipx + xadd; chy = chipy + yadd; caa = -1 + lick * -1.7; cea = 27 + lick * 1.8; cla = +(lick * -0.8); caa += breath * 0.4; hoa = 89; hrad = -145; xadd = sine(hoa + caa) * hrad; yadd = -cosine(hoa + caa) * hrad; cex = cax + xadd; cey = cay + yadd; sprite10_mc.gotoAndStop(118); sprite10_mc._x = chipx; sprite10_mc._y = chipy; sprite10_mc._rotation = -45 + cha; sprite10_mc.swapDepths(12000); sprite10_mc._alpha = bg2alpha; sprite24_mc.gotoAndStop(119); sprite24_mc._x = chipx; sprite24_mc._y = chipy; sprite24_mc._rotation = -45 + cha; sprite24_mc.swapDepths(12081); sprite24_mc._alpha = bg2alpha; sprite8_mc.gotoAndStop(120); sprite8_mc._x = chipx; sprite8_mc._y = chipy; sprite8_mc._rotation = 45 + ccha; sprite8_mc.swapDepths(12002); sprite8_mc._alpha = bg2alpha; sprite7_mc.gotoAndStop(121); sprite7_mc._x = crax; sprite7_mc._y = cray; sprite7_mc._rotation = -45 + ccha + lick * 2; sprite7_mc.swapDepths(12001); sprite7_mc._alpha = bg2alpha; sprite11_mc.gotoAndStop(107); sprite11_mc._x = clx; sprite11_mc._y = cly; sprite11_mc._rotation = -45 + cla; sprite11_mc.swapDepths(12110); sprite11_mc._alpha = bg2alpha; sprite9_mc.gotoAndStop(117); sprite9_mc._x = crlx; sprite9_mc._y = crly; sprite9_mc._rotation = -45 + cla; sprite9_mc.swapDepths(11990); sprite9_mc._alpha = bg2alpha; sprite12_mc.gotoAndStop(108); sprite12_mc._x = cax; sprite12_mc._y = cay; sprite12_mc._rotation = -45 + caa; sprite12_mc.swapDepths(12120); sprite12_mc._alpha = bg2alpha; sprite13_mc.gotoAndStop(109); sprite13_mc._x = cex; sprite13_mc._y = cey; sprite13_mc._rotation = -45 + cea; sprite13_mc.swapDepths(12130); sprite13_mc._alpha = bg2alpha; sprite14_mc.gotoAndStop(110); sprite14_mc._x = chx; sprite14_mc._y = chy; sprite14_mc._rotation = -45; sprite14_mc.swapDepths(12140); sprite14_mc._alpha = bg2alpha; mlx = 127 + lick * (28 + qadjx) / 10; mly = 253 + lick2 * (9 + qadjy) / 10; max = mlx + 3; may = mly - 5; mhx = mlx + 88; mhy = mly + 12; maa = -2 + lick * 1.3; mea = -3 + lick * 0.6; lickn = lick3; if (lickn > 0) { lickn *= 0.5; } zzadjx = ui * (intensity / 10); mha = -14 + lickn * (-17 + zzadjx) / 10; hoa = 213; hrad = 170; xadd = sine(hoa + maa) * hrad; yadd = -cosine(hoa + maa) * hrad; mex = max + xadd; mey = may + yadd; mtnx = mhx + lick4 * 6; mtny = mhy + lick4 * 12; sprite20_mc.gotoAndStop(111); sprite20_mc._x = mlx; sprite20_mc._y = mly; sprite20_mc._rotation = 45; sprite20_mc.swapDepths(12050); sprite20_mc._alpha = bg2alpha; sprite21_mc.gotoAndStop(112); sprite21_mc._x = max; sprite21_mc._y = may; sprite21_mc._rotation = 45 + maa; sprite21_mc.swapDepths(12060); sprite21_mc._alpha = bg2alpha; sprite22_mc.gotoAndStop(113); sprite22_mc._x = mex; sprite22_mc._y = mey; sprite22_mc._rotation = 45 + mea; sprite22_mc.swapDepths(12082); sprite22_mc._alpha = bg2alpha; sprite23_mc.gotoAndStop(114); sprite23_mc._x = mhx; sprite23_mc._y = mhy; sprite23_mc._rotation = -45 + mha; sprite23_mc.swapDepths(12080); sprite23_mc._alpha = bg2alpha; sprite25_mc.gotoAndStop(116); sprite25_mc._x = mtnx - 4; sprite25_mc._y = mtny - 9; sprite25_mc._rotation = -45 + mha; sprite25_mc.swapDepths(12079); if (warp) { sprite25_mc._alpha = 0; } else { sprite25_mc._alpha = bg2alpha; } } function dospritesbed2() { if (ssay >= 8) { cx = 229; cy = 257; sprite1_mc.gotoAndStop(104); sprite1_mc._x = cx; sprite1_mc._y = cy; sprite1_mc.swapDepths(2000); sprite1_mc._alpha = 100 - spritefade; sprite2_mc.gotoAndStop(105); sprite2_mc._x = cx; sprite2_mc._y = cy; sprite2_mc.swapDepths(2000); sprite2_mc._alpha = spritefade2; } else { cx = 320; cy = 234; mix = 161; miy = 240; sprite1_mc.gotoAndStop(87); sprite1_mc._x = cx; sprite1_mc._y = cy; sprite1_mc.swapDepths(2000); sprite1_mc._alpha = 100 - spritefade; } if (ssay >= 9) { return undefined; } if (ssay >= 8) { sprite2_mc.gotoAndStop(59); } else { if (ssay >= 3) { sprite2_mc.gotoAndStop(91); } else { sprite2_mc.gotoAndStop(89); } } sprite2_mc._x = mix; sprite2_mc._y = miy; sprite2_mc.swapDepths(2010); sprite2_mc._alpha = 100 - mspritefade; sprite3_mc.gotoAndStop(88); sprite3_mc._x = cx; sprite3_mc._y = cy; sprite3_mc.swapDepths(2001); sprite3_mc._alpha = spritefade; sprite4_mc.gotoAndStop(90); sprite4_mc._x = mix; sprite4_mc._y = miy; sprite4_mc.swapDepths(2011); sprite4_mc._alpha = mspritefade; cx = 281; cy = 235; sf2 = spritefade2; if (bg2alpha < sf2) { sf2 = bg2alpha; } spritefade3 = 100 - spritefade2; sf3 = spritefade3; if (bg2alpha < sf3) { sf3 = bg2alpha; } sprite10_mc.gotoAndStop(92); sprite10_mc._x = cx; sprite10_mc._y = cy; sprite10_mc.swapDepths(12000); sprite10_mc._alpha = sfx1; sprite18_mc.gotoAndStop(100); sprite18_mc._x = cx; sprite18_mc._y = cy; sprite18_mc.swapDepths(12002); sprite18_mc._alpha = sfx2; sprite11_mc.gotoAndStop(93); sprite11_mc._x = cx; sprite11_mc._y = cy; sprite11_mc.swapDepths(12001); sprite11_mc._alpha = sf3; mha = lick * 43 / 10 - 3; cta = 5 + lick * 1.4; mtx = cx + 20 - 3; mty = cy + 77 - 15; mta = -1 + lick2 * 17 / 10; hoa = -192; hrad = -123; xadd = sine(hoa + mta) * hrad; yadd = -cosine(hoa + mta) * hrad; mhx = mtx + xadd; mhy = mty + yadd; sha = -19 + lick2 * 1.9; ela = -7 + lick2 * 0; hoa = 153; hrad = -92; xadd = sine(hoa + mta) * hrad; yadd = -cosine(hoa + mta) * hrad; muax = mtx + xadd; muay = mty + yadd; hoa = 176; hrad = 87; xadd = sine(hoa + sha) * hrad; yadd = -cosine(hoa + sha) * hrad; mlax = muax + xadd; mlay = muay + yadd; sprite12_mc.gotoAndStop(94); sprite12_mc._x = mhx; sprite12_mc._y = mhy; sprite12_mc._rotation = -45 + mha; sprite12_mc.swapDepths(12030); sprite12_mc._alpha = sf3; sprite13_mc.gotoAndStop(95); sprite13_mc._x = cx + 54; sprite13_mc._y = cy - 34; sprite13_mc._rotation = -45 + cta; sprite13_mc.swapDepths(12010); sprite13_mc._alpha = sf3c1; toa = 152; trad = -62; l2p = lick2; if (l2p < 0) { l2p = 0; } ctta = l2p * 11; xadd = sine(toa + cta) * trad; yadd = -cosine(toa + cta) * trad; ctx = sprite13_mc._x + xadd; cty = sprite13_mc._y + yadd; sprite14_mc.gotoAndStop(96); sprite14_mc._x = ctx; sprite14_mc._y = cty; sprite14_mc._rotation = -45 + ctta; sprite14_mc.swapDepths(12011); sprite14_mc._alpha = sf3c1; sprite19_mc.gotoAndStop(101); sprite19_mc._x = cx + 54; sprite19_mc._y = cy - 34; sprite19_mc._rotation = -45 + ctta; sprite19_mc.swapDepths(12012); sprite19_mc._alpha = sf3c2; sprite20_mc.gotoAndStop(102); sprite20_mc._x = cx + 54; sprite20_mc._y = cy - 34; sprite20_mc._rotation = -45 + ctta; sprite20_mc.swapDepths(12033); sprite20_mc._alpha = sf3c2; sprite15_mc.gotoAndStop(97); sprite15_mc._x = mtx; sprite15_mc._y = mty; sprite15_mc._rotation = 45 + mta; sprite15_mc.swapDepths(12020); sprite15_mc._alpha = sf3; sprite16_mc.gotoAndStop(98); sprite16_mc._x = muax; sprite16_mc._y = muay; sprite16_mc._rotation = 45 + sha; sprite16_mc.swapDepths(12022); sprite16_mc._alpha = sf3; sprite17_mc.gotoAndStop(99); sprite17_mc._x = mlax; sprite17_mc._y = mlay; sprite17_mc._rotation = 45 + ela; sprite17_mc.swapDepths(12024); sprite17_mc._alpha = sf3; } function dobed2say() { if (ssay == 0) { hotx = -48; hoty = -160; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); if (dx < 15 && dy < 15) { ssay = 1; } } else { if (ssay == 1) { if (spritefade < 100) { spritefade += 5; } else { hotx = -50; hoty = 116; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); if (dx < 15 && dy < 15) { ssay = 2; } } } else { if (ssay == 2) { if (mspritefade < 100) { mspritefade += 5; } else { hotx = -87; hoty = 35; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); if (dx < 15 && dy < 15) { ssay = 3; } } } else { if (ssay == 3) { if (mspritefade > 0) { mspritefade -= 5; } else { hotx = -97; hoty = -111; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); if (dx < 15 && dy < 15) { ssay = 4; } } } else { if (ssay == 4) { sfx2 = 0; sfx1 = 100; if (bg2alpha < 100) { bg2alpha += 10; } else { hotx = -21; hoty = 10; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); if (dx < 15 && dy < 15) { ssay = 5; } } } else { if (ssay == 5) { if (sfx1 > 0) { sfx1 -= 5; } if (sfx2 < 100) { sfx2 += 5; } else { hotx = -105; hoty = -142; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); if (dx < 15 && dy < 15) { ssay = 6; } } } else { if (ssay == 6 || ssay == 7) { if (spritefade2 > 0) { spritefade2 -= 5; } sfx2 = spritefade2; hotx = -110; hoty = -89; dx = cmousex - hotx; dy = cmousey - hoty; mon4 = 'dxy:' + dx + ' ' + dy + ' ' + butrel; if (abs(dx) < 20 && abs(dy < 12) && butrel && buttonpress) { butrel = 0; easter = 6; } if (ssay == 6) { sf3c1 = sf3; sf3c2 = 0; } else { if (fspeed < 0.25) { if (sf3c2 < 100) { sf3c2 += 10; } if (sf3c1 > 0) { sf3c1 -= 5; } } } if (ssay == 6) { fspeed = 10 + strokes * 0.7; } else { fspeed -= fspeed / 4; } rtbx = 297; if (la < 180) { if (ssay == 7) { movereset = 0; } else { if (!movereset) { if (mousex < rtbx) { movereset = 1; } } else { if (movereset == 1) { if (mousex > rtbx) { movereset = 2; } } } } if (movereset >= 2) { dx = fspeed - moveadd; moveadd += dx / 2; } else { if (fspeed > 30) { moveadd -= moveadd / 6; } else { if (fspeed > 20) { moveadd -= moveadd / 6; } else { moveadd -= moveadd / 8; } } } omousex = mousex; } else { dx = fspeed - moveadd; moveadd += dx / 4; if (mousex < rtbx) { movereset = 1; } } umoveadd = moveadd; la += umoveadd; lick = sine(la) * lickmod; lick2 = sine(la - 128) * lickmod; if (la >= 180 && ola < 180) { movereset = 0; ++strokes; if (strokes >= 30) { ssay = 7; } } ola = la; if (la >= 360) { la -= 360; } if (ssay == 7) { mon5 = 'dxy:' + dx + ' ' + dy; hotx = -74; hoty = -126; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); if (dx < 15 && dy < 15) { ssay = 8; } } mon4 = 'spd:' + floor(fspeed) + ' strokes:' + strokes + 'la:' + floor(la); } else { if (ssay == 8) { if (bg2alpha > 0) { bg2alpha -= 5; sfx2 = bg2alpha; sfx1 = sfx2; sf3c2 = sfx1; sf3c1 = sf3c2; spritefade2 = 0; spritefade = 0; mspritefade = 0; sprite2_mc.gotoAndStop(59); } else { ssay = 9; clearsprites2(); } } else { if (ssay == 9) { hotx = -13; hoty = -51; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); if (dx < 15 && dy < 15) { ssay = 10; strokes = 0; } } else { if (ssay == 10) { if (spritefade < 100) { spritefade += 5; } if (spritefade2 < 100) { spritefade2 += 5; } else { hotx = -54; hoty = 210; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); if (dx < 15 && dy < 15) { ssay = 11; } } } else { if (ssay == 11) { if (bg2alpha < 100) { bg2alpha += 5; } if (cummed) { if (cummed == 1) { if (la >= 270) { cummed = 2; } } else { fspeed = 0; } ba += 10; breath = sine(ba); if (relax < 7) { relax += 0.04; } else { if (!goblackslow) { goblackslow = 1; cindy1done = 1; } } } else { if (ssay == 11) { fspeed = 10 + strokes * 0.2; } else { fspeed -= fspeed / 4; } } rtbx = 255; if (la < 180) { if (orgasm) { movereset = 2; } else { if (fspeed >= 25) { if (mousex != omousex) { movereset = 2; } } else { if (!movereset) { if (mousex < rtbx) { movereset = 1; } } else { if (movereset == 1) { if (mousex > rtbx) { movereset = 2; } } } } } if (movereset >= 2) { dx = fspeed - moveadd; moveadd += dx / 2; } else { if (fspeed > 30) { moveadd -= moveadd / 6; } else { if (fspeed > 20) { moveadd -= moveadd / 6; } else { moveadd -= moveadd / 8; } } } omousex = mousex; } else { dx = fspeed - moveadd; moveadd += dx / 4; if (mousex < rtbx) { movereset = 1; } } umoveadd = moveadd; mon4 = 'spd:' + fspeed + ' strokes:' + strokes + 'rlx:' + relax; if (shudder) { la += 2; } else { la += umoveadd; } lick = sine(la) * lickmod; lick2 = cosine(la) * lickmod; lick3 = sine(la + 0) * lickmod; if (orgasm) { lick4 = sine(la - 30) * 1; } else { lick4 = sine(la + 38) * 1; } lick += shuddadd; lick2 += shuddadd; if (la >= 180 && ola < 180) { movereset = 0; } if (la >= 90 && ola < 90) { say('squish'); } depthn = 120; uggla = la + 100; if (uggla >= 360) { uggla -= 360; } if (uggla >= depthn && ouggla < depthn) { ++strokes; intensity = strokes; if (strokes > 120) { strokes = 120; } if (orgasm) { if (strokes == 100 || strokes == 102 || strokes == 104 || strokes == 106 || strokes == 108 || strokes == 110 || strokes == 113 || strokes == 116) { shudder = 20; ++squirts; if (testing) { } squirting = 1; usquirt = squirts + 4; if (usquirt > 7) { usquirt -= 7; } moanvol = 20; say('moan'); if (squirts >= 7) { cummed = 1; fspeed = 2; } } } else { if (strokes == 100) { orgasm = 1; shudder = 20; squirts = 1; squirting = 1; say('coh'); } } } ola = la; ouggla = uggla; if (la >= 360) { la -= 360; } if (shudder) { shang += 141 + adjy; sqdeptab = [0, 1, 2, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 2, 1, 0, 0]; depth = sqdeptab[shudder]; shuddadd = sine(shang) * (depth * 0.07000000000000001); --shudder; arch = sine(shudder * 9); if (whiplash < 10) { whiplash += 2.5; } } else { shuddadd = 0; } } } } } } } } } } } } } function doeaster6() { mon4 = 'easter:' + easter + ' ' + eggphase + ' 4a:' + bg4a; if (!easter6started) { wait = 60; eggphase = 0; bg4a = 0; bg3a = 0; easter6started = 1; sayfile('squirrel.mp3', 50); } if (eggphase == 0) { if (bg4a < 100) { bg4a += 10; } else { if (wait) { --wait; } else { eggphase = 8; } if (buttonpress && butrel) { eggphase = 8; } } } else { if (eggphase == 8) { if (bg4a > 0) { bg4a -= 25; } else { easter = 0; easter6started = 0; } } } bg4_mc.swapDepths(20012); bg4_mc.gotoAndStop(95); bg4_mc._x = 320; bg4_mc._y = 240; bg4_mc._alpha = bg4a; bg3_mc.swapDepths(20013); bg3_mc.gotoAndStop(96); bg3_mc._x = 424 + fadjx; bg3_mc._y = 203 + fadjy; bg3_mc._alpha = bg3a; if (eggphase == 8) { bg3a = 0; } else { --sqfuck; if (sqfuck < 0) { sqfuck = 1 + adjx; if (bg3a > 0) { bg3a = 0; } else { bg3a = bg4a; } } } } function icindy2() { room = 4; level = 2; roomlevel = 2; if (scenestarted == 0) { hideall(); } wait = 0; ssay = 0; sub = 0; moverm = 0; moverd = 0; mover = 0; sf1 = 100; bg2alpha = 0; maal = 0; mayl = 0; may = 0; maa = 0; mpy = 0; mpx = 0; mlay = 0; mlaa = 0; mlla = 0; mrla = 0; mayl = 0; smay = 0; smayl = 0; smay = 0; smaal = 0; smaa = 0; fa = 90; fspeed = 10; fuck = 0; fmod = 0; fda = 0; faa = 0; frla = 0; flla = 0; fcha = 0; fha = 0; fapy = 0; fapx = 0; fyp = 0; fxp = 0; cfaa = 0; cfha = 0; cfyp = 0; cfxp = 0; chaa = 0; cypa = 0; cxpa = 0; smay = 0; smaa = 0; thmba = 0; fmadd = 0; strokes = 0; intensity = 0; moveadd = 0; movereset = 0; nowait = 0; larm2 = 0; thmba = 3; sub5adj = 0; scenestarted = 1; if (cindy2done) { bg2alpha = 100; sub = 1; moverd = 100; moverm = 0; mover = 0; smaa = -29.7; smay = -42.2; smpx = 35.5; smpy = -21.6; smrla = -14.4; smlla = 11.5; ssay = 3; sub = 5; strokes = 50; larm2 = 1; smpx = 103.3; smpy = -52.5; smaal = -22.7; smayl = -34.2; smrla = -14.4; smlla = 11.5; sub5adj = -23; chaa = 8; cxpa = 5; cypa = 10; moverd = 100; moverm = 0; mover = 100; } ChangeTheme(CindyTheme); } function docindy2() { if (scenestarted != 1) { icindy2(); } dosprites_cindy2(); dosay_cindy2(); bg_mc.swapDepths(0); bg2_mc.swapDepths(10000); bg_mc.gotoAndStop(71); bg2_mc.gotoAndStop(72); bg_mc._x = 320; bg_mc._y = 240; bg_mc._xscale = 100; bg_mc._yscale = 100; bg2_mc._x = 320; bg2_mc._y = 240; bg2_mc._xscale = 100; bg2_mc._yscale = 100; bg_mc._alpha = 100; bg2_mc._alpha = bg2alpha; } function dosprites_cindy2() { fast = 0; dx = moverd - mover; if (abs(dx) > 0.25) { if (abs(moverm) < abs(dx / 8) && !fast) { mover += moverm; if (dx > 0) { moverm += 0.25; } else { moverm -= 0.25; } } else { mover += dx / 8; } } mix = 12; miy = -6; mux = 192; muy = -305; mix += mux * mover / 100; miy += muy * mover / 100; sprite1_mc.gotoAndStop(212); sprite1_mc._x = mix; sprite1_mc._y = miy; sprite1_mc._rotation = 0; sprite1_mc.swapDepths(1990); sprite1_mc._alpha = sf1; mhx = 74 + mpx + fxp; mhy = 169 + mpy + fyp; mha = +fha; mcha = +fcha; mllaa = mlla + flla; mrlaa = mrla + frla; marmsa = 30 + faa; marmsal = 30 + faa; mda = +fda; eoa = 178; erad = 124; xadd = sine(eoa + mha) * erad; yadd = -cosine(eoa + mha) * erad; mrlx = mhx + xadd; mrly = mhy + yadd; eoa = 21; erad = -104; xadd = sine(eoa + mha) * erad; yadd = -cosine(eoa + mha) * erad; mllx = mhx + xadd; mlly = mhy + yadd; eoa = 160; erad = 153; xadd = sine(eoa + mha) * erad; yadd = -cosine(eoa + mha) * erad; mdx = mhx + xadd; mdy = mhy + yadd; eoa = 208; erad = -310; xadd = sine(eoa + mcha) * erad; yadd = -cosine(eoa + mcha) * erad; mshx = mhx + xadd + fapx; mshy = mhy + yadd + fapy; mshyl = mshy; mshy += may; marmsa += maa; mshyl += mayl; marmsal += maal; mon5 = ' a:' + marmsa + ' ' + maa; eoa = 185.6; erad = 343.1; xadd = sine(eoa + marmsal) * erad; yadd = -cosine(eoa + marmsal) * erad; thmbx = mshx + xadd; thmby = mshyl + yadd; sprite10_mc.gotoAndStop(213); sprite10_mc._x = mhx; sprite10_mc._y = mhy; sprite10_mc._rotation = 45 + mha; sprite10_mc.swapDepths(11200); sprite10_mc._alpha = bg2alpha; sprite11_mc.gotoAndStop(214); sprite11_mc._x = mrlx; sprite11_mc._y = mrly; sprite11_mc._rotation = 45 + mrlaa; sprite11_mc.swapDepths(11220); sprite11_mc._alpha = bg2alpha; sprite12_mc.gotoAndStop(215); sprite12_mc._x = mllx; sprite12_mc._y = mlly; sprite12_mc._rotation = 45 + mllaa; sprite12_mc.swapDepths(11100); sprite12_mc._alpha = bg2alpha; sprite13_mc.gotoAndStop(216); sprite13_mc._x = mhx; sprite13_mc._y = mhy; sprite13_mc._rotation = -45 + mcha; sprite13_mc.swapDepths(11198); sprite13_mc._alpha = bg2alpha; sprite14_mc.gotoAndStop(217); sprite14_mc._x = mshx; sprite14_mc._y = mshy; sprite14_mc._rotation = 30 + marmsa; sprite14_mc.swapDepths(11240); sprite14_mc._alpha = bg2alpha; if (larm2) { sprite15_mc.gotoAndStop(220); } else { sprite15_mc.gotoAndStop(218); } sprite15_mc._x = mshx; sprite15_mc._y = mshyl; sprite15_mc._rotation = 48 + marmsal; if (larm2) { sprite15_mc.swapDepths(11195); } else { sprite15_mc.swapDepths(10001); } sprite15_mc._alpha = bg2alpha; sprite17_mc.gotoAndStop(221); sprite17_mc._x = thmbx; sprite17_mc._y = thmby; sprite17_mc._rotation = 48 + marmsal + thmba; sprite17_mc.swapDepths(11196); if (larm2) { sprite17_mc._alpha = bg2alpha; } else { sprite17_mc._alpha = 0; } sprite16_mc.gotoAndStop(219); sprite16_mc._x = mdx; sprite16_mc._y = mdy; sprite16_mc._rotation = 45 + mda; sprite16_mc.swapDepths(11192); sprite16_mc._alpha = bg2alpha; chx = 384 + cfxp + cxpa; chy = 231 + cfyp + cypa; cha = +cfha + chaa; ccha = 0; caa = +cfaa; eoa = 98; erad = 217; xadd = sine(eoa + ccha) * erad; yadd = -cosine(eoa + ccha) * erad; crshx = chx + xadd; crshy = chy + yadd; eoa = 88; erad = 135; xadd = sine(eoa + ccha) * erad; yadd = -cosine(eoa + ccha) * erad; clshx = chx + xadd; clshy = chy + yadd; sprite2_mc.gotoAndStop(222); sprite2_mc._x = chx; sprite2_mc._y = chy; sprite2_mc._rotation = 45 + cha; sprite2_mc.swapDepths(10100); sprite2_mc._alpha = bg2alpha; sprite3_mc.gotoAndStop(223); sprite3_mc._x = chx; sprite3_mc._y = chy; sprite3_mc._rotation = 45 + cha; sprite3_mc.swapDepths(11193); sprite3_mc._alpha = bg2alpha; sprite9_mc.gotoAndStop(229); sprite9_mc._x = chx; sprite9_mc._y = chy; sprite9_mc._rotation = 45 + cha; sprite9_mc.swapDepths(11197); sprite9_mc._alpha = bg2alpha; sprite6_mc.gotoAndStop(226); sprite6_mc._x = chx; sprite6_mc._y = chy; sprite6_mc._rotation = 45; sprite6_mc.swapDepths(10090); sprite6_mc._alpha = bg2alpha; sprite7_mc.gotoAndStop(227); sprite7_mc._x = clshx; sprite7_mc._y = clshy; sprite7_mc._rotation = 45 + caa; sprite7_mc.swapDepths(10080); sprite7_mc._alpha = bg2alpha; sprite8_mc.gotoAndStop(228); sprite8_mc._x = crshx; sprite8_mc._y = crshy; sprite8_mc._rotation = -45 + caa; sprite8_mc.swapDepths(10095); sprite8_mc._alpha = bg2alpha; } function dosay_cindy2() { if (ssay == 0) { hotx = 146; hoty = -28; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); if (dx < 15 && dy < 15) { moverd = 100; ssay = 1; } } else { if (ssay == 1) { moverd = 100; if (mover >= 99) { if (bg2alpha < 100) { bg2alpha += 10; } else { ssay = 2; mpx = 0; mpy = 0; maa = 0; may = 0; } } } else { if (ssay == 2) { if (bg2alpha < 100) { bg2alpha += 10; } hotx = -215; hoty = 65; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); mmx = mousex - omousex; omousex = mousex; if (dx < 15 && dy < 15 && mmx > 4 || nowait) { moverd = 0; mover = 0; moverd = 100; moverm = 6; sub = 0; bg2alpha = 100; ssay = 3; } } else { if (ssay == 3) { if (sub == 0) { maa = -31 * mover / 100; may = -44 * mover / 100; maal = -31 * mover / 100; mayl = -44 * mover / 100; mpx = 37 * mover / 100; mpy = -22.5 * mover / 100; mrla = -15 * mover / 100; mlla = 12 * mover / 100; if (mover >= 95.75) { hotx = -78; hoty = 19; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); mmx = mousex - omousex; omousex = mousex; if (dx < 15 && dy < 15 && mmx > 4 || nowait) { sub = 1; moverd = 100; moverm = 0; mover = 0; smaa = maa; smay = may; smpx = mpx; smpy = mpy; smrla = mrla; smlla = mlla; } } } else { if (sub == 1) { mpx = smpx + (68 + adjx) * mover / 100; mpy = smpy + (-31 + adjy) * mover / 100; maa = smaa + (7 + fadjx) * mover / 100; may = smay + (5 + fadjy) * mover / 100; maal = smaa + (7 + fadjx) * mover / 100; mayl = smay + (5 + fadjy) * mover / 100; mrla = smrla + 22 * mover / 100; mlla = smlla + -3 * mover / 100; if (mover >= 99.75) { smpx = mpx; smpy = mpy; smaa = maa; smaal = maa; smay = may; moverm = 0; moverd = 0; mover = 0; sub = 2; fmod = 1; fa = 90; strokes = 0; } } else { if (sub == 2) { if (strokes >= 100) { tx = 277; ty = 28; saythisl(342, 70, bub4r, tx, ty); sub = 3; larmmove = 0; strokes = 20; } } else { if (sub == 3) { if (larmmove < 19) { larmmove += 2; } maal = smaal + larmmove; if (larmmove >= 18) { smaal = maal; larm2 = 1; mover = 0; moverd = 100; moverm = 0; moverm = 6; sub = 4; } } else { if (sub == 4) { maa = smaa + (28 + qadjx) * mover / 100; may = smay + (-43 + qadjy) * mover / 100; maal = smaal + (-18 + fadjx) * mover / 100; mayl = smay + (3 + fadjy) * mover / 100; chaa = 0; if (mover >= 99.75) { smaa = maa; smay = may; smaal = maal; smayl = mayl; moverm = 0; mover = 0; moverd = 100; strokes = 0; sub = 5; } } else { if (sub == 5) { if (sub5adj > -23) { --sub5adj; } mpx = smpx + +adjx * mover / 100; mpy = smpy + (-4 + adjy) * mover / 100; maal = smaal + -1 * mover / 100; mayl = smayl + (-2 + fadjy) * mover / 100; chaa = 8 * mover / 100; cxpa = (5 + wadjx) * mover / 100; cypa = (10 + wadjy) * mover / 100; thmba = (-26 + fadjx) * strokes / 50; mayl += 35 * strokes / 50; } } } } } } fha = fuck * 5; fcha = fuck * 2; flla = fuck * -2.6; frla = fuck * -2.7; faa = fuck * -1.3; fapx = fuck * -9.5; if (sub < 5) { fapy = fuck * -6.3; } else { fapy = fuck * (-63 + sub5adj) / 10; } fda = 0; fxp = fuck * -10; fyp = fuck * 3.2; pfuck = fuck; if (pfuck > -0.5) { pfuck = -0.5; } cfxp = pfuck * -3.3; cfyp = 0; cfha = pfuck * -0.9; cfaa = pfuck * -0.9; hotx = -79; rtbx = 241; if (sub < 5) { fspeed = 10 + strokes * 0.2; } else { fspeed = 14; } if (fa < 180) { if (cindy2done) { movereset = 2; } else { if (fspeed >= 18) { if (mousex != omousex) { movereset = 2; } } else { if (!movereset) { if (mousex < rtbx) { movereset = 1; } } else { if (movereset == 1) { if (mousex > rtbx) { movereset = 2; } } } } } if (movereset >= 2) { dx = fspeed - moveadd; moveadd += dx / 2; } else { if (fspeed > 30) { moveadd -= moveadd / 6; } else { if (fspeed > 20) { moveadd -= moveadd / 6; } else { moveadd -= moveadd / 8; } } } omousex = mousex; } else { dx = fspeed - moveadd; moveadd += dx / 4; if (mousex < rtbx) { movereset = 1; } } umoveadd = moveadd; fa += umoveadd; intensity = strokes; ui = (intensity / 100) * 0.3; fmod = 1 + ui; fuck = sine(fa + 90) * fmod; if (fa >= 360) { fa -= 360; ++strokes; if (sub < 5) { if (strokes > 100) { strokes = 100; } } else { if (strokes > 50) { strokes = 50; if (!goblackslow) { goblackslow = 1; cindy2done = 1; } } } } if (fa >= 180 && ofa < 180) { movereset = 0; say('mslap'); } ofa = fa; } } } } if (Key.isDown(82)) { scenestarted = 2; } } function ibucky1() { if (scenestarted == 0) { hideall(); } bg2alpha = 0; sf1 = 100; ssay = 0; wait = 40; scenestarted = 1; head = 0; bh1 = 100; h1 = 100; bh2 = 0; h2 = 0; bcha = 0; raa = 0; laa = 0; rela = 0; bda = 23; hand = 0; kva = 0; allowvision = 0; easter = 0; easter4started = 0; zoomy = 0; zoomx = 0; zoom = 0; eggreset = 0; fmod = 0; fuck = 0; fa = 0; fspeed = 10; intensity = 0; strokes = 0; moveadd = 0; moverd = 0; moverm = 0; mover = 0; hmod = 0; ha = 0; hump = 0; hipx = 0; humpmax = 0; done = 0; } function dobucky1() { if (scenestarted != 1) { ibucky1(); } if (easter == 4) { doeaster4(); return undefined; } dospritesbucky1(); dobucky1say(); bg_mc.swapDepths(0); bg2_mc.swapDepths(10000); bg_mc.gotoAndStop(73); bg2_mc.gotoAndStop(58); bg_mc._x = 320; bg_mc._y = 240; bg_mc._xscale = 100; bg_mc._yscale = 100; bg2_mc._x = 320; bg2_mc._y = 240; bg2_mc._xscale = 100; bg2_mc._yscale = 100; bg_mc._alpha = 100; bg2_mc._alpha = 0; } function dospritesbucky1() { fast = 0; dx = moverd - mover; if (abs(dx) > 0.25) { if (abs(moverm) < abs(dx / 8) && !fast) { mover += moverm; if (dx > 0) { moverm += 0.25; } else { moverm -= 0.25; } } else { mover += dx / 8; } } sprite1_mc.gotoAndStop(241); sprite1_mc._x = 372; sprite1_mc._y = 390; sprite1_mc.swapDepths(11000); sprite1_mc._alpha = sf1; bx = 517 + hipx; by = 401; eoa = 5; erad = -2.4; xadd = sine(eoa + bcha) * erad; yadd = -cosine(eoa + bcha) * erad; hx = bx + xadd; hy = by + yadd; eoa = -73; erad = 61; xadd = sine(eoa + bcha) * erad; yadd = -cosine(eoa + bcha) * erad; bdx = bx + xadd; bdy = by + yadd; eoa = 2; erad = 227; xadd = sine(eoa + bcha) * erad; yadd = -cosine(eoa + bcha) * erad; lax = bx + xadd; lay = by + yadd; eoa = -1; erad = 260; xadd = sine(eoa + bcha) * erad; yadd = -cosine(eoa + bcha) * erad; rax = bx + xadd; ray = by + yadd; eoa = -130; erad = 133; xadd = sine(eoa + raa) * erad; yadd = -cosine(eoa + raa) * erad; rex = rax + xadd; rey = ray + yadd; sprite2_mc.gotoAndStop(230); sprite2_mc._x = bx; sprite2_mc._y = by; sprite2_mc._rotation = -45; sprite2_mc.swapDepths(1000); sprite2_mc._alpha = sf1; sprite3_mc.gotoAndStop(231); sprite3_mc._x = bx; sprite3_mc._y = by; sprite3_mc._rotation = 45 + bcha; sprite3_mc.swapDepths(2000); sprite3_mc._alpha = sf1; sprite4_mc.gotoAndStop(232); sprite4_mc._x = hx; sprite4_mc._y = hy; sprite4_mc._rotation = 45 + bcha; sprite4_mc.swapDepths(990); sprite4_mc._alpha = bh1; sprite11_mc.gotoAndStop(233); sprite11_mc._x = hx; sprite11_mc._y = hy; sprite11_mc._rotation = 45 + bcha; sprite11_mc.swapDepths(991); sprite11_mc._alpha = bh2; sprite5_mc.gotoAndStop(234); sprite5_mc._x = bx; sprite5_mc._y = by; sprite5_mc._rotation = 0; sprite5_mc.swapDepths(1500); sprite5_mc._alpha = sf1; sprite6_mc.gotoAndStop(235); sprite6_mc._x = bdx; sprite6_mc._y = bdy; sprite6_mc._rotation = 45 + bda; sprite6_mc.swapDepths(1400); sprite6_mc._alpha = sf1; sprite7_mc.gotoAndStop(236); sprite7_mc._x = lax; sprite7_mc._y = lay; sprite7_mc._rotation = -45 + laa; sprite7_mc.swapDepths(2100); sprite7_mc._alpha = sf1; sprite8_mc.gotoAndStop(237); sprite8_mc._x = rax; sprite8_mc._y = ray; sprite8_mc._rotation = +raa; sprite8_mc.swapDepths(1100); sprite8_mc._alpha = sf1; sprite9_mc.gotoAndStop(238); sprite9_mc._x = rex; sprite9_mc._y = rey; sprite9_mc._rotation = +rela; sprite9_mc.swapDepths(1120); sprite9_mc._alpha = h1; sprite12_mc.gotoAndStop(239); sprite12_mc._x = rex; sprite12_mc._y = rey; sprite12_mc._rotation = +rela; sprite12_mc.swapDepths(1121); sprite12_mc._alpha = h2; sprite10_mc.gotoAndStop(240); sprite10_mc._x = rex; sprite10_mc._y = rey; sprite10_mc._rotation = +rela; sprite10_mc.swapDepths(1401); sprite10_mc._alpha = h2; sprite20_mc.gotoAndStop(502); sprite20_mc._x = 323 + fadjx; sprite20_mc._y = 177 + fadjy; sprite20_mc.swapDepths(2401); sprite20_mc._alpha = kva; } function dobucky1say() { if (ssay == 0) { hotx = 122; hoty = -162; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); mmx = mousex - omousex; omousex = mousex; if (dx < 25 && dy < 25 && mmx > 4) { head = 1; ssay = 1; } } else { if (ssay == 1) { if (bh2 < 100) { bh2 += 10; } if (bh2 >= 80) { if (bh1 > 0) { bh1 -= 50; } else { ssay = 2; } } } else { if (ssay == 2) { hotx = 127; hoty = 118; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); mmx = mousex - omousex; omousex = mousex; if (dx < 15 && dy < 15 && mmx > 4) { ssay = 3; mover = 0; moverm = 5; moverd = 100; } } else { if (ssay == 3) { laa = -16 * mover / 100; bcha = 3 * mover / 100; if (laa < -3) { bda -= bda / 3; } if (mover >= 99.5) { hotx = -37; hoty = 18; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); mmx = mousex - omousex; omousex = mousex; if (dx < 15 && dy < 15 && mmx > 4) { ssay = 4; mover = 0; moverm = 6; moverd = 100; sbcha = bcha; } } } else { if (ssay >= 4) { bcha = sbcha + 12 * mover / 100; raa = (-43 + fadjx) * mover / 100; rela = (-10 + fadjy) * mover / 100; if (!done) { if (raa < -42) { hand = 1; if (h2 < 100) { h2 += 20; } if (h1 > 0) { h1 -= 20; } else { ssay = 5; } } } else { h1 = 100; h2 = 0; if (bh1 < 100) { bh1 += 10; } if (bh2 > 0) { bh2 -= 10; } dx = 26 - bda; bda += dx / 4; laa = -16 * mover / 100; if (mover <= 0.25) { if (!goblack) { goblack = 1; kat1done = 1; } } } if (ssay == 5) { if (done) { if (intensity > 0) { intensity -= 10; } } else { if (intensity < 100) { ++intensity; } } fmod = intensity / 100; rela += fuck * 6.2; if (!done) { bda = fuck * 1.2; } if (fa < 180) { if (mousex != omousex) { movereset = 2; } if (movereset >= 2 && !done) { dx = fspeed - moveadd; moveadd += dx / 2; if (humpmax < 100) { humpmax += 4; } } else { if (fspeed > 30) { moveadd -= moveadd / 6; } else { if (fspeed > 20) { moveadd -= moveadd / 6; } else { moveadd -= moveadd / 8; } } if (humpmax > 0) { humpmax -= 4; } } omousex = mousex; } else { dx = fspeed - moveadd; moveadd += dx / 4; if (mousex < rtbx) { movereset = 1; } } umoveadd = moveadd; fa += umoveadd; if (strokes >= 50) { fmod -= strokes / 400; } if (done) { fmod = 0; } fuck = sine(fa + 90) * fmod; if (fa >= 180 && ofa < 180) { say('slap'); } ofa = fa; if (fa >= 360) { fa -= 360; strokes += 2; if (strokes == 50) { saythisl(276, 40, bub4r, 178, -160); allowvision = 1; } if (strokes > 100) { if (done == 0) { done = 1; moverd = 0; moverm = -5; } strokes = 100; } } if (fa >= 180 && ofa < 180) { movereset = 0; } ofa = fa; fspeed = 20 + 30 * strokes / 100; hmod = strokes / 100; ha += 10; hump = sine(ha) * hmod * humpmax / 100; bcha += hump * 1; hipx = hump * -1.2; raa += hump * 1.5; } if (allowvision && !speaking) { hotx = 231; hoty = -199; dx = cmousex - hotx; dy = cmousey - hoty; if (abs(dx) < 15 && abs(dy) < 15 && eggreset && !done) { if (kva < 100) { kva += 2; if (kva >= 100) { eggreset = 0; easter = 4; zoom = 0; bg4a = 0; } } } else { if (kva > 0) { kva -= 2; } } if (abs(dx) < 15 && abs(dy)) { } else { eggreset = 1; } } } } } } } mon4 = ' ers:' + eggreset; if (debug && Key.isDown(82)) { scenestarted = 2; } } function doeaster4() { mon4 = 'easter:' + easter + ' ' + eggphase + ' 3a:' + bg3a + ' ' + bg4a + ' ers:' + eggreset; if (!easter4started) { eggphase = 0; bg4a = 0; bg3a = 0; easter4started = 1; zoom = 0; butrel = 0; } if (eggphase == 0) { if (bg4a < 100) { bg4a += 2; } else { kva = 0; sprite20_mc._alpha = kva; if (zoom < 40) { zoom += 0.5; if (zoom >= 40) { eggphase = 1; } } } } else { if (eggphase == 1) { if (zoom < 60) { zoom += 0.5; } if (bg4a > 0) { bg4a -= 2; } else { easter = 0; easter4started = 0; } } } zoomx = zoom * -3.8; zoomy = zoom * 4.3; sprite24_mc.swapDepths(11028); sprite24_mc.gotoAndStop(503); sprite24_mc._x = 320 + zoomx; sprite24_mc._y = 240 + zoomy; sprite24_mc._xscale = 57 + zoom; sprite24_mc._yscale = 57 + zoom; sprite24_mc._alpha = bg4a; } function ibucky2() { if (scenestarted == 0) { hideall(); } bg2alpha = 100; sf1 = 100; ssay = 0; wait = 40; scenestarted = 1; sf1 = 100; sf2 = 0; lm1 = 0; head = 0; bh1 = 100; h1 = 100; bh2 = 0; h2 = 0; bcha = 0; raa = 0; laa = 0; rela = 0; bda = 23; hand = 0; fmod = 0; fuck = 0; fa = 0; fspeed = 10; intensity = 0; strokes = 0; moveadd = 0; moverd = 0; moverm = 0; mover = 0; hmod = 0; ha = 0; hump = 0; hipx = 0; humpmax = 0; done = 0; kh2 = 0; kh1 = 0; kf1 = 100; lmla = 0; lmua = 0; grab = 0; quick = 0; uphead = 0; khdu = 0; khdd = 0; } function dobucky2() { if (scenestarted != 1) { ibucky2(); } dospritesbucky2(); dobucky2say(); bg_mc.swapDepths(0); bg2_mc.swapDepths(10000); bg_mc.gotoAndStop(73); bg2_mc.gotoAndStop(74); bg_mc._x = 320; bg_mc._y = 240; bg_mc._xscale = 100; bg_mc._yscale = 100; bg2_mc._x = 320; bg2_mc._y = 240; bg2_mc._xscale = 100; bg2_mc._yscale = 100; bg_mc._alpha = 100; bg2_mc._alpha = bg2alpha; } function dospritesbucky2() { fast = 0; dx = moverd - mover; if (abs(dx) > 0.25) { if (abs(moverm) < abs(dx / 8) && !fast) { mover += moverm; if (dx > 0) { moverm += 0.25; } else { moverm -= 0.25; } } else { mover += dx / 8; } } sprite21_mc.gotoAndStop(243); sprite21_mc._x = 474; sprite21_mc._y = 149; sprite21_mc.swapDepths(12000); sprite21_mc._alpha = sf2; sprite1_mc.gotoAndStop(241); sprite1_mc._x = 372; sprite1_mc._y = 390; sprite1_mc.swapDepths(9000); sprite1_mc._alpha = sf1; bx = 517 + hipx; by = 401; eoa = 5; erad = -2.4; xadd = sine(eoa + bcha) * erad; yadd = -cosine(eoa + bcha) * erad; hx = bx + xadd; hy = by + yadd; eoa = -73; erad = 61; xadd = sine(eoa + bcha) * erad; yadd = -cosine(eoa + bcha) * erad; bdx = bx + xadd; bdy = by + yadd; eoa = 2; erad = 227; xadd = sine(eoa + bcha) * erad; yadd = -cosine(eoa + bcha) * erad; lax = bx + xadd; lay = by + yadd; eoa = -1; erad = 260; xadd = sine(eoa + bcha) * erad; yadd = -cosine(eoa + bcha) * erad; rax = bx + xadd; ray = by + yadd; eoa = -130; erad = 133; xadd = sine(eoa + raa) * erad; yadd = -cosine(eoa + raa) * erad; rex = rax + xadd; rey = ray + yadd; sprite2_mc.gotoAndStop(230); sprite2_mc._x = bx; sprite2_mc._y = by; sprite2_mc._rotation = -45; sprite2_mc.swapDepths(1000); sprite2_mc._alpha = sf1; sprite3_mc.gotoAndStop(231); sprite3_mc._x = bx; sprite3_mc._y = by; sprite3_mc._rotation = 45 + bcha; sprite3_mc.swapDepths(2000); sprite3_mc._alpha = sf1; sprite4_mc.gotoAndStop(232); sprite4_mc._x = hx; sprite4_mc._y = hy; sprite4_mc._rotation = 45 + bcha; sprite4_mc.swapDepths(990); sprite4_mc._alpha = bh1; sprite11_mc.gotoAndStop(257); sprite11_mc._x = hx; sprite11_mc._y = hy; sprite11_mc._rotation = 45 + bcha; sprite11_mc.swapDepths(991); sprite11_mc._alpha = bh2; sprite5_mc.gotoAndStop(234); sprite5_mc._x = bx; sprite5_mc._y = by; sprite5_mc._rotation = 0; sprite5_mc.swapDepths(1500); sprite5_mc._alpha = sf1; sprite6_mc.gotoAndStop(235); sprite6_mc._x = bdx; sprite6_mc._y = bdy; sprite6_mc._rotation = 45 + bda; sprite6_mc.swapDepths(1400); sprite6_mc._alpha = sf1; sprite7_mc.gotoAndStop(236); sprite7_mc._x = lax; sprite7_mc._y = lay; sprite7_mc._rotation = -45 + laa; sprite7_mc.swapDepths(2100); sprite7_mc._alpha = sf1; sprite8_mc.gotoAndStop(237); sprite8_mc._x = rax; sprite8_mc._y = ray; sprite8_mc._rotation = +raa; sprite8_mc.swapDepths(1100); sprite8_mc._alpha = sf1; sprite9_mc.gotoAndStop(238); sprite9_mc._x = rex; sprite9_mc._y = rey; sprite9_mc._rotation = +rela; sprite9_mc.swapDepths(1120); sprite9_mc._alpha = h1; sprite12_mc.gotoAndStop(239); sprite12_mc._x = rex; sprite12_mc._y = rey; sprite12_mc._rotation = +rela; sprite12_mc.swapDepths(1121); sprite12_mc._alpha = h2; sprite10_mc.gotoAndStop(240); sprite10_mc._x = rex; sprite10_mc._y = rey; sprite10_mc._rotation = +rela; sprite10_mc.swapDepths(1401); sprite10_mc._alpha = h2; sprite13_mc.gotoAndStop(247); sprite13_mc._x = 640; sprite13_mc._y = 480; sprite13_mc.swapDepths(899); sprite13_mc._alpha = 100; kx = 437; ky = 267; sprite14_mc.gotoAndStop(244); sprite14_mc._x = kx; sprite14_mc._y = ky; sprite14_mc._rotation = 0; sprite14_mc.swapDepths(800); sprite14_mc._alpha = kf1; sprite15_mc.gotoAndStop(245); sprite15_mc._x = kx; sprite15_mc._y = ky; sprite15_mc._rotation = 0; sprite15_mc.swapDepths(801); sprite15_mc._alpha = kh1; sprite16_mc.gotoAndStop(246); sprite16_mc._x = kx; sprite16_mc._y = ky; sprite16_mc._rotation = 0; sprite16_mc.swapDepths(802); sprite16_mc._alpha = kh2; ky += 91; kuax = kx - 92; kuay = ky - 154; kuaa = 17 + lmua; klaa = -12 + lmla; eoa = 172.1; erad = 109.4; xadd = sine(eoa + kuaa) * erad; yadd = -cosine(eoa + kuaa) * erad; klax = kuax + xadd; klay = kuay + yadd; sprite17_mc.gotoAndStop(248); sprite17_mc._x = kx; sprite17_mc._y = ky; sprite17_mc._rotation = 0; sprite17_mc.swapDepths(804); sprite17_mc._alpha = lm1; sprite21_mc.gotoAndStop(254 + uphead); sprite21_mc._x = kx; sprite21_mc._y = ky; sprite21_mc._rotation = 0; sprite21_mc.swapDepths(805); sprite21_mc._alpha = khdu; sprite22_mc.gotoAndStop(255); sprite22_mc._x = kx; sprite22_mc._y = ky; sprite22_mc._rotation = 0; sprite22_mc.swapDepths(806); sprite22_mc._alpha = khdd; sprite18_mc.gotoAndStop(250); sprite18_mc._x = kuax; sprite18_mc._y = kuay; sprite18_mc._rotation = 45 + kuaa; sprite18_mc.swapDepths(808); sprite18_mc._alpha = lm1; sprite19_mc.gotoAndStop(251 + grab); sprite19_mc._x = klax; sprite19_mc._y = klay; sprite19_mc._rotation = 20 + klaa; if (grab) { sprite19_mc.swapDepths(1399); sprite19_mc._rotation = 20 + klaa; } else { sprite19_mc.swapDepths(1402); sprite19_mc._rotation = 45 + klaa; } sprite19_mc._alpha = lm1; sprite20_mc.gotoAndStop(253); sprite20_mc._x = klax; sprite20_mc._y = klay; sprite20_mc._rotation = 20 + klaa; sprite20_mc.swapDepths(1407); if (grab) { sprite20_mc._alpha = lm1; } else { sprite20_mc._alpha = 0; } } function dobucky2say() { if (ssay == 0) { hotx = 132; hoty = -173; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); mmx = mousex - omousex; omousex = mousex; if (dx < 15 && dy < 15) { ssay = 1; } } else { if (ssay == 1) { if (sf2 < 100) { sf2 += 10; } else { ktx = 151; kty = -171; saythisl(277, 20, bub4l, ktx, kty); wait = 20; ssay = 2; } } else { if (ssay == 2) { if (wait) { --wait; } else { btx = -11; bty = -119; saythisl(278, 30, bub4r, btx, bty); wait = 30; ssay = 3; } } else { if (ssay == 3) { if (wait) { --wait; } else { saythisl(279, 60, bub4l, ktx, kty); wait = 70; ssay = 4; } } else { if (ssay == 4) { if (wait) { --wait; } else { saythisl(280, 70, bub4l, ktx, kty); wait = 70; ssay = 5; } } else { if (ssay == 5) { if (wait) { --wait; } else { btx = -11; bty = -119; saythisl(281, 70, bub4r, btx, bty); wait = 80; ssay = 6; } } else { if (ssay == 6) { if (wait) { --wait; } else { saythisl(282, 70, bub4l, ktx, kty); wait = 70; ssay = 7; } } else { if (ssay == 7) { if (wait) { --wait; } else { saythisl(283, 70, bub4l, ktx, kty); wait = 70; ssay = 8; } } else { if (ssay == 8) { if (wait) { --wait; } else { if (bg2alpha > 0) { bg2alpha -= 10; sf2 = bg2alpha; kh1 = 100; kh2 = 0; } else { wait = 40; ssay = 9; } } } else { if (ssay == 9) { if (wait) { --wait; } else { ktx = 17 + adjx; kty = -166 + adjy; saythisl(284, 60, bub4r, ktx, kty); wait = 70; ssay = 10; } } else { if (ssay == 10) { if (wait) { --wait; } else { if (kh2 < 100) { kh2 += 10; } else { if (kh1 > 0) { kh1 -= 20; } else { saythisl(285, 60, bub4r, ktx, kty); wait = 70; ssay = 11; } } } } else { if (ssay == 11) { if (wait) { --wait; } else { ktx = 17 + adjx; kty = -166 + adjy; saythisl(286, 70, bub4r, ktx, kty); wait = 70; ssay = 12; } } else { if (ssay == 12) { if (quick) { wait = 0; } if (wait) { --wait; } else { if (lm1 < 100) { lm1 += 10; khdu = lm1; } else { if (kf1 > 0) { kf1 -= 20; kh2 = kf1; kh1 = kh2; } else { ssay = 13; } } } } else { if (ssay == 13) { hotx = 81; hoty = 130; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); mmx = mousex - omousex; omousex = mousex; if (dx < 15 && dy < 15 && mmx > 4) { ktx = 17; kty = -75; saythisl(287, 70, bub4r, ktx, kty); ssay = 14; moverd = 100; moverm = 6; } } else { if (ssay == 14) { if (khdd < 100) { khdd += 10; } else { if (khdu > 0) { khdu -= 20; } } lmua = (-12 + adjx) * mover / 100; lmla = (-15 + adjy) * mover / 100; laa = -16 * mover / 100; bcha = 3 * mover / 100; if (laa < -3) { bda -= bda / 3; } if (mover >= 70) { grab = 1; } if (mover >= 99.5) { slmua = lmua; slmla = lmla; sbcha = bcha; ssay = 15; mover = 0; moverd = 100; moverm = 0; } } else { if (ssay == 15) { lmua = slmua + (4 + adjx) * mover / 100; lmla = slmla + (-15 + adjy) * mover / 100; bcha = sbcha + (17 + fadjx) * mover / 100; hipx = (-9 + fadjy) * mover / 100; raa = (-31 + qadjx) * mover / 100; rela = +qadjy * mover / 100; bda = (11 + wadjx) * mover / 100; if (mover >= 99.5) { ssay = 16; slmua = lmua; slmla = lmla; sbda = bda; sbcha = bcha; shipx = hipx; mover = 0; moverd = 0; uphead = 2; strokes = 0; } } else { if (ssay == 16) { if (bh2 < 100) { bh2 += 10; } else { if (bh1 > 0) { bh1 -= 20; } } if (intensity < 100) { intensity += 5; } fmod = intensity / 100; fa += fspeed; if (fa >= 180 && ofa < 180) { say('slap'); } ofa = fa; if (fa >= 360) { fa -= 360; ++strokes; fspeed = 10 + strokes * 1; if (strokes >= 30 && !goblackslow) { goblackslow = 1; kat2done = 1; } if (strokes == 7) { ktx = 17; kty = -85; saythisl(288, 70, bub4r, ktx, kty); } } if (strokes >= 15) { if (khdd < 100) { khdd += 10; } else { if (khdu > 0) { khdu -= 20; } } } else { if (strokes >= 6) { if (khdu < 100) { khdu += 20; } else { if (khdd > 0) { khdd -= 10; } } } } fuck = sine(fa + 90) * fmod; lmua = slmua + fuck * (-14 + adjx) / 10; lmla = slmla + fuck * (65 + adjy) / 10; bda = sbda + fuck * (-33 + fadjx) / 10; str = strokes; if (str > 10) { str = 10; } strmod = str / 10; bcha = sbcha + fuck * -0.4 * strmod; hipx = shipx + fuck * 0.5 * strmod; } } } } } } } } } } } } } } } } } mon4 = ' s:' + strokes + ' spd:' + fspeed; if (debug && buttonpress) { strokes = 96; } if (debug && Key.isDown(82)) { scenestarted = 2; } } function ibucky3() { if (scenestarted == 0) { hideall(); } bg2alpha = 0; sf1 = 100; ssay = 0; wait = 40; scenestarted = 1; sf1 = 100; sf2 = 0; lm1 = 0; head = 0; bh1 = 100; h1 = 100; bh2 = 0; h2 = 0; bcha = 19; hipx = -10; raa = -35 + zadjx; rela = 7 + zadjy; laa = -14; bda = 4; klaa = 0; klea = 0; kxa = 0; kya = 0; kta = 0; hand = 0; fmod = 0; fuck = 0; fa = 0; fspeed = 10; intensity = 0; jmod = 0; jack = 0; ja = 0; jspeed = 20; strokes = 0; moveadd = 0; moverd = 0; moverm = 0; mover = 0; hmod = 0; ha = 0; hump = 0; humpmax = 0; done = 0; kh2 = 0; kh1 = 0; kf1 = 100; lmla = 0; lmua = 0; grab = 0; quick = 0; uphead = 0; khdu = 100; khdd = 0; a1 = 100; a2 = 0; sk1 = 100; sk2 = 0; ruby = 0; rubx = 0; rry = 0; rrx = 0; dry = 0; drx = 0; srela = 0; sraa = 0; skta = 0; sklaa = 0; sklea = 0; kt1 = 100; kt2 = 0; smile = 0; kp1 = 0; } function dobucky3() { if (scenestarted != 1) { ibucky3(); } dospritesbucky3(); dobucky3say(); bg_mc.swapDepths(0); bg2_mc.swapDepths(10000); bg_mc.gotoAndStop(73); bg2_mc.gotoAndStop(74); bg_mc._x = 320; bg_mc._y = 240; bg_mc._xscale = 100; bg_mc._yscale = 100; bg2_mc._x = 320; bg2_mc._y = 240; bg2_mc._xscale = 100; bg2_mc._yscale = 100; bg_mc._alpha = 100; bg2_mc._alpha = bg2alpha; } function dospritesbucky3() { fast = 0; dx = moverd - mover; if (abs(dx) > 0.25) { if (abs(moverm) < abs(dx / 8) && !fast) { mover += moverm; if (dx > 0) { moverm += 0.25; } else { moverm -= 0.25; } } else { mover += dx / 8; } } sprite1_mc.gotoAndStop(241); sprite1_mc._x = 372; sprite1_mc._y = 390; sprite1_mc.swapDepths(9000); sprite1_mc._alpha = sf1; bx = 517 + hipx; by = 401; eoa = 5; erad = -2.4; xadd = sine(eoa + bcha) * erad; yadd = -cosine(eoa + bcha) * erad; hx = bx + xadd; hy = by + yadd; eoa = -73; erad = 61; xadd = sine(eoa + bcha) * erad; yadd = -cosine(eoa + bcha) * erad; bdx = bx + xadd; bdy = by + yadd; eoa = 2; erad = 227; xadd = sine(eoa + bcha) * erad; yadd = -cosine(eoa + bcha) * erad; lax = bx + xadd; lay = by + yadd; eoa = -1; erad = 260; xadd = sine(eoa + bcha) * erad; yadd = -cosine(eoa + bcha) * erad; rax = bx + xadd; ray = by + yadd; eoa = -130; erad = 133; xadd = sine(eoa + raa) * erad; yadd = -cosine(eoa + raa) * erad; rex = rax + xadd + rubx; rey = ray + yadd + ruby; sprite2_mc.gotoAndStop(230); sprite2_mc._x = bx; sprite2_mc._y = by; sprite2_mc._rotation = -45; sprite2_mc.swapDepths(1000); sprite2_mc._alpha = sf1; sprite3_mc.gotoAndStop(231); sprite3_mc._x = bx; sprite3_mc._y = by; sprite3_mc._rotation = 45 + bcha; sprite3_mc.swapDepths(2000); sprite3_mc._alpha = sf1; sprite4_mc.gotoAndStop(232); sprite4_mc._x = hx; sprite4_mc._y = hy; sprite4_mc._rotation = 45 + bcha; sprite4_mc.swapDepths(990); sprite4_mc._alpha = bh1; sprite11_mc.gotoAndStop(258); sprite11_mc._x = hx; sprite11_mc._y = hy; sprite11_mc._rotation = 45 + bcha; sprite11_mc.swapDepths(991); sprite11_mc._alpha = bh2; sprite5_mc.gotoAndStop(234); sprite5_mc._x = bx; sprite5_mc._y = by; sprite5_mc._rotation = 0; sprite5_mc.swapDepths(1500); sprite5_mc._alpha = sf1; sprite6_mc.gotoAndStop(235); sprite6_mc._x = bdx; sprite6_mc._y = bdy; sprite6_mc._rotation = 45 + bda; sprite6_mc.swapDepths(1400); sprite6_mc._alpha = sf1; sprite7_mc.gotoAndStop(259); sprite7_mc._x = lax; sprite7_mc._y = lay; sprite7_mc._rotation = -45 + laa; sprite7_mc.swapDepths(2100); sprite7_mc._alpha = sf1; sprite8_mc.gotoAndStop(237); sprite8_mc._x = rax; sprite8_mc._y = ray; sprite8_mc._rotation = +raa; sprite8_mc.swapDepths(1100); sprite8_mc._alpha = sf1; sprite9_mc.gotoAndStop(238); sprite9_mc._x = rex; sprite9_mc._y = rey; sprite9_mc._rotation = +rela; sprite9_mc.swapDepths(1120); sprite9_mc._alpha = h1; sprite12_mc.gotoAndStop(270); sprite12_mc._x = rex; sprite12_mc._y = rey; sprite12_mc._rotation = -45 + rela; sprite12_mc.swapDepths(1121); sprite12_mc._alpha = h2; sprite10_mc.gotoAndStop(240); sprite10_mc._x = rex; sprite10_mc._y = rey; sprite10_mc._rotation = +rela; sprite10_mc.swapDepths(1401); sprite10_mc._alpha = 0; sprite13_mc.gotoAndStop(247); sprite13_mc._x = 640; sprite13_mc._y = 480; sprite13_mc.swapDepths(899); sprite13_mc._alpha = 100; kx = 346 + kxa; ky = 202 + kya; ktx = kx - 39; kty = ky - 12; skx = kx + 1; sky = ky + 43; eoa = -15.4; erad = 91.5; xadd = sine(eoa + kta) * erad; yadd = -cosine(eoa + kta) * erad; rax = ktx + xadd; ray = kty + yadd; eoa = -22; erad = 134.4; xadd = sine(eoa + kta) * erad; yadd = -cosine(eoa + kta) * erad; rax2 = ktx + xadd; ray2 = kty + yadd; eoa = 31.2; erad = 171.9; xadd = sine(eoa + kta) * erad; yadd = -cosine(eoa + kta) * erad; lax = ktx + xadd; lay = kty + yadd; eoa = 165; erad = 109; xadd = sine(eoa + klaa) * erad; yadd = -cosine(eoa + klaa) * erad; lex = lax + xadd; ley = lay + yadd; eoa = 187; erad = 119; xadd = sine(eoa + klea) * erad; yadd = -cosine(eoa + klea) * erad; handx = lex + xadd; handy = ley + yadd; sprite24_mc.gotoAndStop(272); sprite24_mc._x = kpx; sprite24_mc._y = kpy; sprite24_mc._rotation = 0; sprite24_mc.swapDepths(803); sprite24_mc._alpha = kp1; sprite25_mc.gotoAndStop(273); sprite25_mc._x = kpx; sprite25_mc._y = kpy; sprite25_mc._rotation = 0; sprite25_mc.swapDepths(804); sprite25_mc._alpha = smile; sprite14_mc.gotoAndStop(268); sprite14_mc._x = kx; sprite14_mc._y = ky; sprite14_mc._rotation = 0; sprite14_mc.swapDepths(800); sprite14_mc._alpha = kf1; sprite15_mc.gotoAndStop(269); sprite15_mc._x = ktx; sprite15_mc._y = kty; sprite15_mc._rotation = -45 + kta; sprite15_mc.swapDepths(801); sprite15_mc._alpha = kt1; sprite16_mc.gotoAndStop(271); sprite16_mc._x = ktx; sprite16_mc._y = kty; sprite16_mc._rotation = -45 + kta; sprite16_mc.swapDepths(802); sprite16_mc._alpha = kt2; sprite17_mc.gotoAndStop(261); sprite17_mc._x = skx; sprite17_mc._y = sky; sprite17_mc._rotation = 0; sprite17_mc.swapDepths(821); sprite17_mc._alpha = sk1; sprite18_mc.gotoAndStop(262); sprite18_mc._x = skx; sprite18_mc._y = sky; sprite18_mc._rotation = 0; sprite18_mc.swapDepths(820); sprite18_mc._alpha = sk2; sprite19_mc.gotoAndStop(263); sprite19_mc._x = rax; sprite19_mc._y = ray; sprite19_mc._rotation = 0; sprite19_mc.swapDepths(830); sprite19_mc._alpha = a1; sprite20_mc.gotoAndStop(264); sprite20_mc._x = rax2; sprite20_mc._y = ray2; sprite20_mc._rotation = -30 + kta; sprite20_mc.swapDepths(831); sprite20_mc._alpha = a2; sprite21_mc.gotoAndStop(265); sprite21_mc._x = lax; sprite21_mc._y = lay; sprite21_mc._rotation = 0; sprite21_mc.swapDepths(790); sprite21_mc._alpha = a1; sprite22_mc.gotoAndStop(266); sprite22_mc._x = lax; sprite22_mc._y = lay; sprite22_mc._rotation = -45 + klaa; sprite22_mc.swapDepths(791); sprite22_mc._alpha = a2; sprite23_mc.gotoAndStop(267); sprite23_mc._x = lex; sprite23_mc._y = ley; sprite23_mc._rotation = -45 + klea; sprite23_mc.swapDepths(1125); sprite23_mc._alpha = a2; } function dobucky3say() { if (ssay == 0) { bcha = 19; hipx = -10; raa = -27; rela = 0; laa = -14; bda = 4; hotx = 31; hoty = -200; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); if (dx < 15 && dy < 15) { ktx = -23; kty = -190; saythisl(289, 60, bub4r, ktx, kty); wait = 70; ssay = 1; } } else { if (ssay == 1) { if (wait) { --wait; } else { btx = 230; bty = -116; saythisl(290, 60, 6, btx, bty); wait = 60; ssay = 2; } } else { if (ssay == 2) { if (wait) { --wait; } else { btx = 230; bty = -116; saythisl(291, 60, 6, btx, bty); wait = 60; ssay = 3; } } else { if (ssay == 3) { if (wait) { --wait; } else { btx = 230; bty = -116; saythisl(292, 50, 6, btx, bty); wait = 50; ssay = 4; } } else { if (ssay == 4) { if (wait) { --wait; } else { btx = 230; bty = -116; saythisl(293, 60, 6, btx, bty); wait = 60; ssay = 5; } } else { if (ssay == 5) { if (wait) { --wait; } else { hotx = 79; hoty = -56; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); mmy = mousey - omousey; omousey = mousey; if (dx < 15 && dy < 15 && mmy > 4) { ssay = 6; } } } else { if (ssay == 6) { if (a2 < 100) { a2 += 20; } else { if (a1 > 0) { a1 -= 25; } else { wait = 2; ssay = 6.1; } } } else { if (ssay == 6.1) { if (wait) { --wait; if (wait == 0) { moverm = 6; moverd = 100; } } else { klea = +((-9 + adjx) * mover / 100); klaa = +((17 + adjy) * mover / 100); kta = +((12 + fadjx) * mover / 100); if (mover >= 99.75) { sklea = klea; sklaa = klaa; skta = kta; sraa = raa; srela = rela; mover = 0; moverd = 100; ssay = 7; sk2 = 100; } } } else { if (ssay == 7) { if (h2 < 100) { h2 += 10; } else { if (h1 > 0) { h1 -= 20; } } sk1 = 100 - mover; klea = sklea + (2 + adjx) * mover / 100; klaa = sklaa + (-5 + adjy) * mover / 100; kta = skta + (-3 + fadjx) * mover / 100; raa = sraa + (1 + qadjx) * mover / 100; rela = srela + (6 + qadjy) * mover / 100; if (mover >= 99.75) { hotx = 90; hoty = 33; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); mmy = mousey - omousey; omousey = mousey; if (dx < 15 && dy < 15 && mmy < 4 || quick) { ssay = 6; sklea = klea; sklaa = klaa; skta = kta; sraa = raa; srela = rela; mover = 0; moverd = 100; ssay = 8; } } } else { if (ssay == 8) { if (bh2 < 100) { bh2 += 10; } else { if (bh1 > 0) { bh1 -= 20; } } klea = sklea + (15 + adjx) * mover / 100; klaa = sklaa + (-6 + adjy) * mover / 100; kta = skta + (-2 + fadjx) * mover / 100; raa = sraa + (8 + qadjx) * mover / 100; rela = srela + (2 + qadjy) * mover / 100; if (mover >= 99.75) { ktx = -23 + wadjx; kty = -190 + wadjy; saythisl(294, 60, bub4r, ktx, kty); hreset = 0; ssay = 9; } } else { if (ssay == 9) { hotx = 71; hoty = 21; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); mmy = mousey - omousey; omousey = mousey; if (cmousey > 50) { hreset = 1; } if (dx < 15 && dy < 15 && mmy < 4 && hreset || quick) { sklea = klea; sklaa = klaa; skta = kta; sraa = raa; srela = rela; mover = 0; moverd = 100; ssay = 10; } } else { if (ssay == 10) { klea = sklea + (6 + adjx) * mover / 100; klaa = sklaa + +adjy * mover / 100; kta = skta + (-2 + fadjx) * mover / 100; raa = sraa + (7 + qadjx) * mover / 100; rela = srela + +qadjy * mover / 100; if (mover >= 99.75) { rrx = handx; rry = handy; sklea = klea; sklaa = klaa; skta = kta; sraa = raa; srela = rela; mover = 0; moverd = 100; ssay = 11; } } else { if (ssay == 11) { if (strokes >= 60) { intensity -= intensity / 4; } else { if (intensity < 100) { intensity += 2; } } fmod = intensity / 100; laa = -14 + (32 + adjx) * mover / 100; laa += jack * 0.9; bda = 4; bda += jack * -1.9; klea = sklea + +adjx * mover / 100; klaa = sklaa + +adjy * mover / 100; kta = skta + +fadjx * mover / 100; raa = sraa + (-7 + qadjx) * mover / 100; rela = srela + (4 + qadjy) * mover / 100; klaa += fuck * 1.3; klea += cofuck * -2.1; kta += fuck * 0.4; rdx = handx - rrx; rdy = handy - rry; rubx = rdx; ruby = rdy; if (strokes >= 60 && intensity < 0.5) { sklea = klea; sklaa = klaa; skta = kta; sraa = raa; srela = rela; slaa = laa; mover = 0; moverd = 100; ssay = 12; wait = 20; } } else { if (ssay == 12) { laa = slaa + +zadjx * mover / 100; bda = 4; klea = sklea + (-16 + adjx) * mover / 100; klaa = sklaa + (3 + adjy) * mover / 100; kta = skta + (3 + fadjx) * mover / 100; raa = sraa + (-15 + qadjx) * mover / 100; rela = srela + +qadjy * mover / 100; if (wait) { --wait; } else { if (kt2 < 100) { kt2 += 10; } else { if (kt1 > 0) { kt1 -= 20; } else { ssay = 13; wait = 20; sklea = klea; sklaa = klaa; skta = kta; sraa = raa; srela = rela; slaa = laa; sbcha = bcha; shipx = hipx; mover = 0; moverd = 0; } } } } else { if (ssay == 13) { if (wait) { --wait; } else { ktx = -23; kty = -180; saythisl(295, 60, bub4r, ktx, kty); ssay = 14; wait = 40; wait2 = 65; } } else { if (ssay == 14) { if (wait) { --wait; if (wait == 0) { moverd = 100; } } else { if (h1 < 100) { h1 += 10; } else { if (h2 > 0) { h2 -= 20; } } klea = sklea; klaa = sklaa; raa = sraa + (33 + qadjx) * mover / 100; rela = srela + (-10 + qadjy) * mover / 100; bcha = sbcha + (-17 + fadjx) * mover / 100; hipx = shipx + +fadjy * mover / 100; laa = slaa + (-20 + zadjx) * mover / 100; if (bh1 < 100) { bh1 += 10; } else { if (bh2 > 0) { bh2 -= 20; } } kpx = kx + 39 + adjx; kpy = ky + 3 + adjy; if (kp1 < 100) { kp1 += 10; } else { if (kf1 > 0) { kf1 -= 10; } } a2 = kf1; a1 = a2; sk2 = a1; sk1 = sk2; kt2 = sk1; kt1 = kt2; } if (wait2) { --wait2; } else { ktx = -23; kty = -180; saythisl(296, 60, bub4r, ktx, kty); ssay = 15; wait = 70; sklea = klea; sklaa = klaa; skta = kta; sraa = raa; srela = rela; slaa = laa; sbcha = bcha; shipx = hipx; mover = 0; moverd = 0; } } else { if (ssay == 15) { if (wait) { --wait; } else { ktx = -23; kty = -180; saythisl(297, 60, bub4r, ktx, kty); ssay = 16; wait = 70; } } else { if (ssay == 16) { if (wait) { --wait; } else { btx = 164; bty = -141; saythisl(298, 60, bub4l, btx, bty); ssay = 16.5; wait = 80; } } else { if (ssay == 16.5) { if (wait) { --wait; } else { btx = 164; bty = -141; saythisl(299, 60, bub4l, btx, bty); ssay = 17; wait = 80; } } else { if (ssay == 17) { if (wait) { --wait; } else { btx = 164; bty = -141; saythisl(300, 70, bub4l, btx, bty); ssay = 18; wait = 80; } } else { if (ssay == 18) { if (wait) { --wait; } else { btx = 164; bty = -141; saythisl(301, 70, bub4l, btx, bty); ssay = 19; wait = 100; } } else { if (ssay == 19) { if (smile < 100) { smile += 10; } if (wait) { --wait; } else { ktx = -23; kty = -180; saythisl(302, 60, bub4r, ktx, kty); ssay = 20; wait = 40; } } else { if (ssay == 20) { if (wait) { --wait; } else { if (goblackslow == 0) { goblackslow = 1; kat3done = 1; } } } } } } } } } } } } } } } } } } } } } } } } } if (ssay == 11) { fa += fspeed; } if (fa >= 360) { fa -= 360; ++strokes; ktx = -23; kty = -180; if (strokes == 10) { saythisl(303, 60, bub4r, ktx, kty); } if (strokes == 20) { saythisl(304, 60, bub4r, ktx, kty); } if (strokes == 30) { saythisl(305, 60, bub4r, ktx, kty); } if (strokes == 40) { saythisl(306, 60, bub4r, ktx, kty); } if (strokes == 50) { saythisl(307, 60, bub4r, ktx, kty); } } fspeed = 10 + strokes * 0.45; fuck = sine(fa) * fmod; delay = -44; cofuck = cosine(fa + delay) * fmod; jspeed = fspeed / 2; ja += jspeed; jack = sine(ja) * fmod * 2.2; mon4 = ' s:' + strokes + ' spd:' + fspeed; if (debug && Key.isDown(82)) { scenestarted = 2; } } function ibucky4() { if (scenestarted == 0) { hideall(); } bg2alpha = 100; sf1 = 100; bg1alpha = 100; ssay = 0; wait = 10; scenestarted = 1; moverm = 0; moverd = 0; mover = 0; h1 = 100; h2 = 0; kmy = 0; kmx = 0; skmy = 0; skmx = 0; skha = 0; kha = 0; srba = 0; rba = 0; sbda = 0; bda = 0; skta = 0; kta = 0; sfmo = 0; fmo = 0; sfmr = 0; fmr = 0; mwait = 0; fast = 0; sucks = 0; wchball = 0; grab = 0; lick = 0; slick = 0; la = 0; liy = 0; lix = 0; blick = 0; bla = 0; suck = 0; sa = 0; tsmod = 0; smod = 0; sspeed = 10; goingup = 0; lmod = 1; dlicks = 0; licks = 0; tiplicks = 0; stoplick = 0; bang = 0; handa = 100; graba = 100; eyesopen = 0; mouthopen = 0; strokes = 0; arch = 0; aa = 0; aspeed = 3; bangl = 0; bmy = 0; shudder = 0; shuddadd = 0; shang = 0; sarch = 0; squirts = 0; cummed = 0; cumming = 0; dgooa = 0; gooa = 0; mcumalpha = 0; cumalpha = 0; dripy = 0; dripyscale = 0; dripxscale = 0; drips = 0; moanreq = 0; } function dobucky4() { if (scenestarted != 1) { ibucky4(); } dospritesbucky4(); dobucky4say(); bg_mc.swapDepths(20000); bg2_mc.swapDepths(10000); bg_mc.gotoAndStop(83); bg2_mc.gotoAndStop(84); bg_mc._x = 320; bg_mc._y = 240; bg_mc._xscale = 100; bg_mc._yscale = 100; bg2_mc._x = 320; bg2_mc._y = 240; bg2_mc._xscale = 100; bg2_mc._yscale = 100; bg_mc._alpha = bg1alpha; bg2_mc._alpha = bg2alpha; } function dospritesbucky4() { if (shudder) { shang += 141; sqdeptab = [0, 1, 2, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 2, 1, 0, 0]; shdepth = sqdeptab[floor(shudder)]; shuddadd = sine(shang) * (shdepth * 0.07000000000000001); if (squirts == 7 && shudder <= 8) { shudder -= 0.25; } else { --shudder; } sarch = sine(shudder * 9); } else { shuddadd = 0; } if (aa > 0) { aa += aspeed; if (aa >= 180) { aa = 0; } } if (strokes < 50) { arch = sine(aa); } else { arch = nsuck; arch += shuddadd * 0.3; arch += sarch; } utiplicks = tiplicks; if (utiplicks > 26) { utiplicks = 26; } if (stoplick) { lspd -= lspd / 16; } else { lspd = 4 + (licks / 20) * 8 + (utiplicks / 20) * 12; } if (wait) { } else { if (goingup) { bla += lspd; } else { bla += lspd * 2; } } blick = sine(bla) * lmod; if (bla >= 360) { bla -= 360; if (licks < 23) { ++licks; } else { ++tiplicks; } if (tiplicks >= 50) { stoplick = 1; } } if (bla >= 270 && obla < 270) { if (!stoplick) { la = 1; } goingup = 1; } if (bla >= 90 && obla < 90) { la = 91; goingup = 0; } obla = bla; if (la > 0) { if (la < 90) { la += 10 + lspd; if (la >= 90) { la = 90; } } else { if (la > 90) { la += 10 + lspd; if (la >= 180) { la = 0; slick = 0; } } } slick = sine(la); pslick = slick; if (pslick < 0) { pslick = 0; } } if (mwait) { } else { dx = moverd - mover; if (abs(dx) > 0.25) { if (abs(moverm) < abs(dx / 8)) { mover += moverm; if (dx > 0) { moverm += 0.25; } else { moverm -= 0.25; } } else { if (fast) { mover += dx / 4; } else { mover += dx / 8; } } } } sf2 = sf1; bchx = 522; bchy = 473; bx = bchx; by = bchy + bmy; bcha = bang / 2; sprite1_mc.gotoAndStop(441); sprite1_mc._x = -23; sprite1_mc._y = 498; sprite1_mc.swapDepths(19000); sprite1_mc._alpha = sf2; sprite25_mc.gotoAndStop(442); sprite25_mc._x = 523; sprite25_mc._y = 473; sprite25_mc._rotation = 45 + bcha; sprite25_mc.swapDepths(19001); sprite25_mc._alpha = sf2; eoa = -57; erad = 181; xadd = sine(eoa + bang) * erad; yadd = -cosine(eoa + bang) * erad; bdx = bx + xadd; bdy = by + yadd; eoa = -60; erad = 175; xadd = sine(eoa + bang) * erad; yadd = -cosine(eoa + bang) * erad; bbx = bx + xadd; bby = by + yadd; eoa = -66.40000000000001 + qadjx / 10; erad = 110.4 + qadjy / 10; xadd = sine(eoa + bang) * erad; yadd = -cosine(eoa + bang) * erad; bllx = bx + xadd; blly = by + yadd; eoa = 18; erad = 353; xadd = sine(eoa + bang) * erad; yadd = -cosine(eoa + bang) * erad; bax = bx + xadd; bay = by + yadd; eoa = -75 + fmo; erad = 208 + fmr; xadd = sine(eoa + bang) * erad; yadd = -cosine(eoa + bang) * erad; fingerx = bx + xadd; fingery = by + yadd; sprite2_mc.gotoAndStop(440); sprite2_mc._x = bx; sprite2_mc._y = by; sprite2_mc._rotation = -30 + bang; sprite2_mc.swapDepths(11001); sprite2_mc._alpha = sf1; sprite8_mc.gotoAndStop(448); sprite8_mc._x = bchx; sprite8_mc._y = bchy; sprite8_mc._rotation = -30 + bcha; sprite8_mc.swapDepths(11000); sprite8_mc._alpha = sf1; sprite3_mc.gotoAndStop(443); sprite3_mc._x = bllx; sprite3_mc._y = blly; sprite3_mc._rotation = -30 - bangl; sprite3_mc.swapDepths(11500); sprite3_mc._alpha = sf1; sprite4_mc.gotoAndStop(444); sprite4_mc._x = bdx; sprite4_mc._y = bdy; sprite4_mc._rotation = -45 + bang; sprite4_mc.swapDepths(11330); sprite4_mc._alpha = sf1; sprite5_mc.gotoAndStop(445); sprite5_mc._x = bdx; sprite5_mc._y = bdy; sprite5_mc._rotation = -10 + bang + bda; sprite5_mc.swapDepths(11324); sprite5_mc._alpha = sf1; sprite19_mc.gotoAndStop(464); sprite19_mc._x = bdx; sprite19_mc._y = bdy; sprite19_mc._rotation = -10 + bang + bda; sprite19_mc.swapDepths(11325); dgooa = squirts * 14.28571428571429; if (gooa < dgooa) { gooa += 0.5; } sprite19_mc._alpha = gooa; if (wchball == 0) { arba = sine(rba) * 21; alba = arba / 2; } else { alba = sine(rba) * 21; arba = alba / 2; } sprite6_mc.gotoAndStop(446); sprite6_mc._x = bbx; sprite6_mc._y = bby; sprite6_mc._rotation = -45 + bang + alba; sprite6_mc.swapDepths(11310); sprite6_mc._alpha = sf1; sprite7_mc.gotoAndStop(447); sprite7_mc._x = bbx; sprite7_mc._y = bby; sprite7_mc._rotation = -45 + bang + arba; if (wchball == 1) { sprite7_mc.swapDepths(11200); } else { sprite7_mc.swapDepths(11300); } sprite7_mc._alpha = sf1; sprite9_mc.gotoAndStop(439); sprite9_mc._x = bax; sprite9_mc._y = bay; sprite9_mc._rotation = 0; sprite9_mc.swapDepths(10999); sprite9_mc._alpha = sf1; kx = 163 + kmx; ky = 345 + kmy; elrad = 257; hoa = 0; shrad = 155; dist2point = finddistance(kx, ky, fingerx, fingery); ang2point = rad2deg(-Math.atan2(kx - fingerx, ky - fingery)); point2arm = ang2point + 180; a = shrad; b = elrad; c = dist2point; reach = elrad + shrad; if (dist2point >= reach) { uaa = ang2point; laa = ang2point + hoa; } else { angleA = rad2deg(Math.acos((b * b + c * c - a * a) / 2 * b * c)); angleB = rad2deg(Math.acos((a * a + c * c - b * b) / 2 * a * c)); uaa = ang2point + angleB; laa = point2arm - angleA + 180 + hoa; } xadd = sine(hoa + uaa) * shrad; yadd = -cosine(hoa + uaa) * shrad; kelx = kx + xadd; kely = ky + yadd; eoa = 45; erad = 85; xadd = sine(eoa + kta) * erad; yadd = -cosine(eoa + kta) * erad; khx = kx + xadd; khy = ky + yadd; sprite10_mc.gotoAndStop(450); sprite10_mc._x = kx; sprite10_mc._y = ky; sprite10_mc._rotation = -45 + kta; sprite10_mc.swapDepths(11100); sprite10_mc._alpha = sf1; sprite11_mc.gotoAndStop(451); sprite11_mc._x = kx; sprite11_mc._y = ky; sprite11_mc._rotation = uaa; sprite11_mc.swapDepths(11400); sprite11_mc._alpha = sf1; if (grab == 4) { sprite12_mc.gotoAndStop(467); sprite12_mc._rotation = laa + 0; } else { if (grab >= 3) { sprite12_mc.gotoAndStop(456); sprite12_mc._rotation = laa + 0; } else { sprite12_mc.gotoAndStop(452); sprite12_mc._rotation = laa + 25; } } sprite12_mc._x = kelx; sprite12_mc._y = kely; sprite12_mc.swapDepths(11410); sprite12_mc._alpha = handa; if (grab == 4) { sprite13_mc.gotoAndStop(467); sprite13_mc._rotation = laa + 0; } else { if (grab > 0 && grab < 4) { sprite13_mc.gotoAndStop(457); sprite13_mc._rotation = laa + 0; } else { sprite13_mc.gotoAndStop(453); sprite13_mc._rotation = laa + 25; } } sprite13_mc._x = kelx; sprite13_mc._y = kely; sprite13_mc.swapDepths(11600); sprite13_mc._alpha = graba; sprite14_mc.gotoAndStop(454); sprite14_mc._x = khx; sprite14_mc._y = khy; sprite14_mc._rotation = 45 + kta + kha; sprite14_mc.swapDepths(11201); sprite14_mc._alpha = sf1; if (lick) { sprite15_mc.gotoAndStop(458); } else { sprite15_mc.gotoAndStop(455); } sprite15_mc._x = khx; sprite15_mc._y = khy; sprite15_mc._rotation = 45 + kta + kha; sprite15_mc.swapDepths(11203); sprite15_mc._alpha = h2; sprite16_mc.gotoAndStop(459); sprite16_mc._x = khx + lix; sprite16_mc._y = khy + liy; sprite16_mc._rotation = 45 + kta + kha; sprite16_mc.swapDepths(11202); if (lick) { sprite16_mc._alpha = h2; } else { sprite16_mc._alpha = 0; } if (eyesopen) { sprite17_mc.gotoAndStop(460); sprite17_mc._x = khx; sprite17_mc._y = khy - 1; sprite17_mc._rotation = 45 + kta + kha; sprite17_mc.swapDepths(11204); if (eyesopen) { sprite17_mc._alpha = 100; } else { sprite17_mc._alpha = 0; } } else { sprite17_mc.gotoAndStop(461); sprite17_mc._x = khx; sprite17_mc._y = khy - 1; sprite17_mc._rotation = 45 + kta + kha; sprite17_mc.swapDepths(11204); sprite17_mc._alpha = mouthopen; } sprite18_mc.gotoAndStop(462); sprite18_mc._x = khx; sprite18_mc._y = khy - 1; sprite18_mc._rotation = 45 + kta + kha; sprite18_mc.swapDepths(11326); sprite18_mc._alpha = mouthopen; sprite21_mc._x = khx; sprite21_mc._y = khy - 1; sprite21_mc._rotation = 45 + kta + kha; sprite21_mc.gotoAndStop(465); sprite21_mc.swapDepths(11327); sprite21_mc._alpha = mcumalpha; cdx = khx + 112 + adjx; cdy = khy + 57 + adjy; sprite22_mc._x = cdx; sprite22_mc._y = cdy + dripy; sprite22_mc._yscale = dripyscale; sprite22_mc._rotation = 0; sprite22_mc.gotoAndStop(466); sprite22_mc.swapDepths(11328); sprite22_mc._alpha = cumalpha; } function dobucky4say() { if (ssay == 0) { if (wait) { --wait; } else { ssay = 1; } } else { if (ssay == 1) { hotx = 24; hoty = -70; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); if (dx < 15 && dy < 15) { tx = -37; ty = -88; saythisl(308, 60, bub4r, tx, ty); wait = 77; ssay = 2; } } else { if (ssay == 2) { if (wait) { --wait; } else { saythisl(309, 60, bub4r, tx, ty); wait = 77; ssay = 3; } } else { if (ssay == 3) { hotx = 25; hoty = 56; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); if (dx < 15 && dy < 15) { ssay = 4; wait = 20; } } else { if (ssay == 4) { if (bg1alpha > 0) { bg1alpha -= 5; } if (wait) { --wait; } else { bg1alpha = 0; mover = 0; moverd = 100; moverm = 0; hma = 4; ssay = 5; } } else { if (ssay == 5) { kmx = 13 * mover / 100; kmy = 21 * mover / 100; bda = 7 * mover / 100; if (mover >= 99) { mover = 0; moverd = 100; moverm = 0; skmx = kmx; skmy = kmy; sbda = bda; ssay = 6; wait = 1; } } else { if (ssay == 6) { if (h2 < 100) { h2 += 20; } else { if (h1 > 0) { h1 -= 50; } } kmx = skmx + -4 * mover / 100; kmy = skmy + -3 * mover / 100; kha = skha + -hma * mover / 100; rba = srba + (90 + zadjx) * mover / 100; bda = sbda + -7 * mover / 100; if (mover >= 98) { skmx = kmx; skmy = kmy; skha = kha; srba = rba; sbda = bda; if (sucks >= 8) { mover = 0; moverm = 0; moverd = 100; mwait = 1; fast = 1; ssay = 8; } else { mover = 0; moverm = 5; moverd = 100; mwait = 1; fast = 1; ssay = 7; } } } else { if (ssay == 7) { if (h2 > 0) { h2 -= 50; } else { if (srba > 0) { srba -= 20; if (srba <= 0) { srba = 0; ++sucks; if ((sucks & 1) == 0) { wchball += 1; wchball &= 1; if (wchball == 0) { hma = 4; } else { hma = 6; } } } } rba = srba; if (rba == 0) { mwait = 0; kmx = skmx + 4 * mover / 100; kmy = skmy + 3 * mover / 100; kha = skha + hma * mover / 100; bda = sbda + 7 * mover / 100; if (mover >= 99) { skmx = kmx; skmy = kmy; skha = kha; sbda = bda; moverm = 0; mover = 0; moverd = 100; fast = 0; ssay = 6; } } } } else { if (ssay == 8) { if (h2 > 0) { h2 -= 50; } else { if (srba > 0) { srba -= 20; if (srba <= 0) { srba = 0; ++sucks; if ((sucks & 1) == 0) { wchball += 1; wchball &= 1; if (wchball == 0) { hma = 4; } else { hma = 6; } } } } rba = srba; if (rba == 0) { mwait = 0; if (mover > 30 && grab == 0) { graba -= 25; if (graba <= 0) { grab = 1; graba = 0; } } else { if (grab == 1) { if (graba < 100) { graba += 25; if (graba >= 100) { grab = 2; } } } else { if (grab == 2) { if (handa > 0) { handa -= 50; if (handa <= 0) { grab = 3; } } } else { if (grab == 3) { if (handa < 100) { handa += 50; if (handa > 100) { handa = 100; } } } } } } kmx = skmx + (29 + adjx) * mover / 100; kmy = skmy + (1 + adjy) * mover / 100; kha = skha + (4 + fadjx) * mover / 100; kta = skta + (-16 + fadjy) * mover / 100; fmo = sfmo + (29 + qadjx) * mover / 100; fmr = sfmr + (-40 + qadjy) * mover / 100; bda = sbda; if (mover >= 99) { skmx = kmx; skmy = kmy; skha = kha; skta = kta; sfmo = fmo; sfmr = fmr; sbda = bda; moverm = 0; mover = 0; moverd = 100; fast = 0; ssay = 9; } } } } else { if (ssay == 9) { mwait = 0; fmo = sfmo + (-2 + qadjx) * mover / 100; fmr = sfmr + (5 + qadjy) * mover / 100; bda = sbda + -19 * mover / 100; if (mover >= 99) { skmx = kmx; skmy = kmy; skha = kha; skta = kta; sfmo = fmo; sfmr = fmr; sbda = bda; moverm = 0; mover = 0; moverd = 0; fast = 0; ssay = 10; la = 0; bla = 0; wait = 10; } } else { if (ssay == 10) { if (wait) { --wait; if (wait == 0) { la = 1; } } lick = 1; if (h2 < 100) { h2 += 50; } lix = slick * 3.2; liy = slick * 6.4; kmx = skmx + blick * 6; kmy = skmy + blick * -12; kha = skha + blick * -4.1; kta = skta + blick * -1.1; bda = sbda + blick * 3.8; if (dlicks < licks) { dlicks += 0.1; } kmx += dlicks * ((60 - fadjy) / 100); kmy -= dlicks * 2; if (!stoplick) { lmod = 1 - licks * ((3.8 + fadjx) / 100); } else { lmod -= lmod / 8; if (lmod < 0.01) { lmod = 0; skmx = kmx; skmy = kmy; skha = kha; skta = kta; sfmo = fmo; sfmr = fmr; sbda = bda; eyesopen = 1; ssay = 11; moverm = 0; mover = 0; moverd = 100; } } bda += slick * (10 + qadjx) / 10; if (tiplicks >= 45) { if (bang < 3) { bang += 0.05; } bda += bang * wadjy / 10; } } else { if (ssay == 11) { kmx = skmx + (-11 + fadjx) * mover / 100; kmy = skmy + (39 + fadjy) * mover / 100; kha = skha + (-3 + qadjx) * mover / 100; kta = skta + (-20 + qadjy) * mover / 100; bda = sbda + (-4 + wadjx) * mover / 100; if (mover > 80) { if (bg1alpha < 100) { bg1alpha += 5; } else { skmx = kmx; skmy = kmy; skha = kha; skta = kta; sfmo = fmo; sfmr = fmr; sbda = bda; tx = -37; ty = -88; saythisl(310, 60, bub4r, tx, ty); wait = 20; ssay = 12; } } } else { if (ssay == 12) { if (wait) { --wait; } else { hotx = 24; hoty = -70; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); if (dx < 15 && dy < 15) { eyesopen = 1; tx = -37; ty = -88; saythisl(311, 60, bub4r, tx, ty); wait = 77; ssay = 13; } } } else { if (ssay == 13) { if (wait) { --wait; } else { if (bg1alpha > 0) { bg1alpha -= 10; } else { ssay = 14; fast = 1; mover = 0; moverm = 0; moverd = 100; } } } else { if (ssay == 14) { kmx = skmx + (12 + fadjx) * mover / 100; kmy = skmy + (-63 + fadjy) * mover / 100; kha = skha + (25 + qadjx) * mover / 100; kta = skta + (8 + qadjy) * mover / 100; bda = sbda + (-23 + wadjx) * mover / 100; fmo = sfmo + (-2 + zadjx) * mover / 100; fmr = sfmr + (7 + zadjy) * mover / 100; if (mover >= 99.75) { skmx = kmx; skmy = kmy; skha = kha; skta = kta; sfmo = fmo; sfmr = fmr; sbda = bda; mover = 0; moverm = 0; moverd = 100; ssay = 15; } } else { if (ssay == 15) { kmx = skmx + (2 + fadjx) * mover / 100; kmy = skmy + (5 + fadjy) * mover / 100; kha = skha + (3 + qadjx) * mover / 100; kta = skta + +qadjy * mover / 100; bda = sbda + (-4 + wadjx) * mover / 100; fmo = sfmo + +zadjx * mover / 100; fmr = sfmr + +zadjy * mover / 100; mouthopen = mover; if (mover >= 99) { skmx = kmx; skmy = kmy; skha = kha; skta = kta; sfmo = fmo; sfmr = fmr; sbda = bda; mover = 0; moverm = 0; moverd = 100; ssay = 16; } } else { if (ssay == 16) { mouthopen = 100; kmx = skmx + (-4 + fadjx) * mover / 100; kmy = skmy + (8 + fadjy) * mover / 100; kha = skha + (1 + qadjx) * mover / 100; kta = skta + +qadjy * mover / 100; bda = sbda + (-7 + wadjx) * mover / 100; fmo = sfmo + (-24 + zadjx) * mover / 100; fmr = sfmr + (4 + zadjy) * mover / 100; if (mover > 5 && grab == 3) { graba -= 25; if (graba <= 0) { grab = 4; graba = 0; } } else { if (grab == 4) { if (graba < 100) { graba += 50; if (graba >= 100) { grab = 0; } if (handa > 0) { handa -= 50; } } } else { if (grab == 0) { if (handa < 100) { handa += 50; if (handa > 100) { handa = 100; } } } } } if (mover >= 99) { skmx = kmx; skmy = kmy; skha = kha; skta = kta; sfmo = fmo; sfmr = fmr; sbda = bda; smod = 0; tsmod = 0.2; ssay = 17; } } else { if (ssay == 17) { if (smod < tsmod) { smod += 0.01; } if (smod > tsmod) { smod -= 0.01; } if (!shudder) { sa += sspeed; } if (sa >= 360) { sa -= 360; if (deep) { aa = 1; } } if (sa >= 90 && osa < 90) { if (strokes == 70 && !cumming) { cumming = 1; } if (cumming && !cummed) { ++squirts; shudder = 20; squirts1 = squirts + 0; saycum(2, squirts); if (squirts >= 7) { cummed = 1; } } if (moanreq > 0) { say('muhh'); --moanreq; } else { if (strokes >= 50) { if (rand(0, 100) < 40) { huffvol = 20; say('huff'); } } } } if (sa >= 270 && osa < 270) { if (cummed) { skmx = kmx; skmy = kmy; skha = kha; skta = kta; sfmo = fmo; sfmr = fmr; sbda = bda; fast = 0; moverm = 0; mover = 0; moverd = 100; ssay = 18; } ++strokes; if (strokes <= 8) { tsmod = 0.2 + strokes / 10; } if (strokes == 8) { tsmod = 1; deep = 1; sspeed = 5; moanreq = 3; } else { if (strokes == 11) { deep = 0; sspeed = 15; } else { if (strokes == 17) { deep = 1; sspeed = 3; moanreq = 2; } else { if (strokes == 19) { deep = 0; sspeed = strokes; } } } } if (rand(0, 100) < 40) { say('suck'); } } osa = sa; if (cummed) { sspeed = 2; } else { if (strokes >= 50) { deep = 1; tsmod = 0.25 + (strokes - 50) * 0.05; if (tsmod > 1) { tsmod = 1; } sspeed = 40 - (strokes - 50) - squirts; } else { if (strokes >= 22) { sspeed = strokes; if (sspeed > 40) { sspeed = 40; } tsmod = 1 - (strokes - 22) / 30; if (tsmod < 0.25) { tsmod = 0.25; } } } } suck = (sine(sa) + 1) * smod; nsuck = sine(sa) * (smod / 2); if (nsuck < 0) { nsuck = 0; } kmx = skmx + suck * -31 / 10; kmy = skmy + suck * 70 / 10; kha = skha + suck * -34 / 10; kta = skta + suck * 57 / 10; bda = sbda + suck * (-33 + wadjx) / 10; fmo = sfmo; fmr = sfmr; if (deep) { kmx = skmx + suck * 24 / 10; kmy = skmy + suck * 193 / 10; kha = skha + suck * -47 / 10; kta = skta + suck * 64 / 10; bda = sbda + suck * (-33 + wadjx) / 10; fmo += arch * -7.8; } kta += arch * (27 + qadjy) / 10; kmx += arch * (139 + fadjx) / 10; if (cumming) { kmy += arch * -10; kmx += arch * -2.7; } if (strokes >= 50) { bmy = arch * -5; } bang = 3 + arch * 2; bangl = arch * 4; mcumalpha = squirts * 14.28571428571429 / 2; } else { if (ssay == 18) { kmx = skmx + (-32 + fadjx) * mover / 100; kmy = skmy + (7 + fadjy) * mover / 100; kha = skha + +qadjx * mover / 100; kta = skta + (-8 + qadjy) * mover / 100; bda = sbda + (-4 + wadjx) * mover / 100; if (bang > 0) { bang -= 0.05; } sbda -= 0.01; if (mover >= 99.75) { if (cumalpha < 60) { cumalpha += 2; } if (mcumalpha < 100) { ++mcumalpha; } if (dripxscale < 100) { dripxscale += 4; dripyscale += 4; } else { if (dripyscale < 150) { ++dripyscale; dripadd = 0; } else { dripy += dripadd; dripadd += 1; if (dripy > 400) { dripxscale = 0; dripyscale = 0; dripy = 0; dripadd = 0; ++drips; if (drips >= 1 && !goblackslow) { goblackslow = 1; kat4done = 1; } } } } mon6 = ' dys:' + dripyscale + ' dy:' + dripy + ' ' + dripadd; } } } } } } } } } } } } } } } } } } } } mon4 = ' m:' + mover + ' licks:' + licks + ' ' + tiplicks; mon5 = ' str:' + strokes + ' sspeed:' + sspeed + ' smod:' + smod; if (debug && Key.isDown(82)) { scenestarted = 2; } } function ibed3() { hideall(); bg2alpha = 0; ssay = 120; wait = 40; spritefade = 0; mspritefade = 0; spritefade2 = 100; spritefade3 = 0; wait2 = 0; scenestarted = 1; buckfade = 0; bf2 = 0; SetXFadeRate(0.5); ChangeTheme(SilentTheme); SetXFadeRate(0.1); } function dobed3() { if (room5level == 1) { dobucky1(); return undefined; } else { if (room5level == 2) { dobucky2(); return undefined; } else { if (room5level == 3) { dobucky3(); return undefined; } else { if (room5level == 4) { dobucky4(); return undefined; } } } } if (!scenestarted) { ibed3(); } dospritesbed3(); dobed3say(); bg_mc.swapDepths(0); bg2_mc.swapDepths(10000); bg_mc.gotoAndStop(63); bg2_mc.gotoAndStop(58); bg_mc._x = 320; bg_mc._y = 240; bg_mc._xscale = 100; bg_mc._yscale = 100; bg2_mc._x = 320; bg2_mc._y = 240; bg2_mc._xscale = 100; bg2_mc._yscale = 100; bg_mc._alpha = 100; bg2_mc._alpha = bg2alpha; } function dospritesbed3() { sprite1_mc.gotoAndStop(126); sprite1_mc._x = 310; sprite1_mc._y = 245; sprite1_mc.swapDepths(11000); ubuckfade = buckfade; if (bg2alpha < ubuckfade) { ubuckfade = bg2alpha; } sprite1_mc._alpha = ubuckfade; sprite2_mc.gotoAndStop(127); sprite2_mc._x = 310; sprite2_mc._y = 245; sprite2_mc.swapDepths(11001); ubuckfade = bf2; if (bg2alpha < bf2) { ubuckfade = bg2alpha; } sprite2_mc._alpha = ubuckfade; } function dobed3say() { if (ssay == 120) { if (wait) { --wait; } else { if (bg2alpha < 100) { bg2alpha += 20; } else { ssay = 121; wait = 40; } } } else { if (ssay == 121) { if (wait) { --wait; } else { if (bg2alpha > 0) { bg2alpha -= 20; } else { tx = 133; ty = -88; saythisl(267, 40, bub4r, tx, ty); ssay = 122; wait = 40; buckfade = 0; } } } else { if (ssay == 122) { if (wait) { --wait; } else { if (bg2alpha < 100) { bg2alpha += 20; } else { if (buckfade < 100) { buckfade += 20; } else { bx = 53; by = -115; saythisl(268, 40, bub4l, bx, by); ssay = 123; wait = 30; } } } } else { if (ssay == 123) { if (wait) { --wait; } else { if (bg2alpha > 0) { bg2alpha -= 20; } else { saythisl(269, 60, bub4r, tx, ty); ssay = 124; wait = 60; } } } else { if (ssay == 124) { if (wait) { --wait; } else { saythisl(270, 50, bub4r, tx, ty); ssay = 125; wait = 55; } } else { if (ssay == 125) { if (wait) { --wait; } else { saythisl(271, 70, bub4r, tx, ty); ssay = 126; wait = 80; } } else { if (ssay == 126) { if (wait) { --wait; } else { if (bg2alpha < 100) { bg2alpha += 20; } else { tx = 133; ty = -88; saythisl(272, 70, bub4l, bx, by); ssay = 127; wait = 80; wait2 = 20; } } } else { if (ssay == 127) { if (wait) { --wait; } else { if (buckfade > 0) { buckfade -= 20; } else { if (wait2) { --wait2; } else { ssay = 128; wait = 40; } } } } else { if (ssay == 128) { if (buckfade < 100) { buckfade += 20; } else { if (wait) { --wait; } else { saythisl(273, 70, bub4l, bx, by); ssay = 129; wait = 80; } } } else { if (ssay == 129) { if (wait) { --wait; } else { if (bf2 < 100) { bf2 += 20; } else { saythisl(274, 70, bub4l, bx, by); ssay = 130; wait = 80; } } } else { if (ssay == 130) { if (wait) { --wait; if (wait < 40) { if (bf2 > 0) { bf2 -= 20; } } } else { if (bg2alpha > 0) { bg2alpha -= 20; } else { saythisl(275, 70, bub4r, tx, ty); ssay = 131; wait = 80; } } } else { if (ssay == 131) { if (wait) { --wait; } else { if (!goblack) { goblack = 10; } } } } } } } } } } } } } } mon4 = ' b2a:' + bg2alpha + ' bf2:' + bf2; } function ijenny4() { level = room1level; if (scenestarted == 0) { hideall(); } bg2alpha = 0; ssay = 0; wait = 20; spritefade = 0; sf = 0; sfn = 0; sfnn = 0; sfjn = 0; sfjnn = 0; guyhanda = 0; fa = 0; fmod = 1; fspeed = 10; strokes = 0; finalstrokes = 0; permission = 0; dintensity = 0; intensity = 0; moveadd = 0; movereset = 0; shudder = 0; whoa = 0; ppush = 0; pdx = 0; lookup = 0; smile = 0; pull = 0; eda = -37; brieffall = 0; bfadd = 0.1; brafall = 0; holdtit = 0; nudefuck = 0; ta = 0; tremble = 0; tremadd = 0; headup = 0; permission = 0; cumming = 0; shuddadd = 0; shang = 0; shudder = 0; cummed = 0; squirts = 0; squirting = 0; sqstretch = 0; splatoa = [-28, -27, -29, -25, -36, -43, -46, -77]; splatrad = [219, 190, 181, 210, 167, 158, 156, 141]; splatwch = [3, 1, 2, 6, 0, 2, 3, 0]; splatrot = [5, 84, 87, 45, 76, -86, 107, 0]; splaton = [0, 0, 0, 0, 0, 0, 0, 0]; editor = 0; oqadjx = -11111; jenref = 0; e2ha = 0; g3aa = 0; scenestarted = 1; warp = 0; nude = 1; sfjn = 100; sfn = 100; sf = 100; brafall = 400; brieffall = 400; eda = -24; pull = 6; smile = 1; holdtit = 1; nudefuck = 1; guyhanda = 100; ppush = 1; intensity = 0; tfuck = 0; pfuck = 0; fuck = 0; cummed = 1; cumming = 1; i = 0; while (i < 8) { if (i == 3) { splaton[i] = 0; } else { splaton[i] = 1; } ++i; } jrhx = 443; jrhy = 200.1; chinsplatx = 388.2; chinsplaty = 215; moverm = 0; moverd = 0; mover = 0; fast = 0; droop = 0; sink = 0; sinkadd = 0; sinkrl = 0; sinkll = 0; lean = 0; leanadd = 0; eba = 0; ebreath = 0; emod = 0; emod100 = 0; guy1x = 0; redx = 0; shpush = 0; elpush = 0; sheadup = 0; splaty = 0; sdroop = 0; if (jenny4done) { sink = 160; lean = 19; guy1x = 77; redx = 153; ssay = 7; sdroop = 25; droop = 25; ssay = 22; scenestarted = 0; } ChangeTheme(JennyTheme); } function dojenny4() { if (ssay >= 22) { dojenny4f(); return undefined; } if (scenestarted != 1) { ijenny4(); } dospritesj4(); dosayj4(); bg_mc.swapDepths(0); bg2_mc.swapDepths(10000); bg_mc.gotoAndStop(66); bg2_mc.gotoAndStop(65); bg_mc._x = 320; bg_mc._y = 240; bg_mc._xscale = 100; bg_mc._yscale = 100; bg2_mc._x = 320; bg2_mc._y = 240; bg2_mc._xscale = 100; bg2_mc._yscale = 100; bg_mc._alpha = 100; bg2_mc._alpha = bg2alpha; } function dospritesj4() { dx = moverd - mover; if (abs(dx) > 0.25) { if (abs(moverm) < abs(dx / 8)) { mover += moverm; if (dx > 0) { moverm += 0.25; } else { moverm -= 0.25; } } else { if (fast) { mover += dx / 4; } else { mover += dx / 8; } } } if (sink) { ebreath = sine(eba) * emod; eba += 10; if (ssay >= 9) { if (emod100 > 0) { --emod100; } } else { if (emod100 < 50) { ++emod100; } } emod = emod100 / 100; } splaty = headup * -1.1; jx = 456; jy = 374; jx += -6; jy += 50; jba = fuck * -2.5; jba += 11; jsha = -11; jela = -39; jsha += shpush; jela += elpush; if (fuck >= 0) { jta = fuck * -3.3; } else { jta = fuck * -8; } hoa = 166; hrad = -224; xadd = sine(hoa + jba) * hrad; yadd = -cosine(hoa + jba) * hrad; jhx = jx + xadd; jhy = jy + yadd; jhdx = jhx - jrhx; jhdy = jhy - jrhy + splaty; hoa = 122; hrad = -95; xadd = sine(hoa + jba) * hrad; yadd = -cosine(hoa + jba) * hrad; jtx = jx + xadd; jty = jy + yadd; jtx += pfuck * -4.8; jty += pfuck * 5.4; hoa = -13; hrad = 145; xadd = sine(hoa + jba) * hrad; yadd = -cosine(hoa + jba) * hrad; jshx = jx + xadd; jshy = jy + yadd; hoa = 173; hrad = 187; xadd = sine(hoa + jsha) * hrad; yadd = -cosine(hoa + jsha) * hrad; jelx = jshx + xadd; jely = jshy + yadd; ex = 286; ey = 274 + sink; ex += fuck * -6.5; ey += fuck * 10; ex -= ppush * 13.9; if (fuck > 0) { eha = tfuck * 4.3; } else { eha = tfuck * 5; } eha += -6; eca = 20 * (intensity / 100); eca += lean + ebreath; ella = fuck * -2.2; erla = fuck * -2.2; erla += -8; ella += ppush * -3.7; erla += ppush * 3.5; ella += sinkll; erla += sinkrl; hoa = 168; hrad = 46; xadd = sine(hoa + eha) * hrad; yadd = -cosine(hoa + eha) * hrad; ellx = ex + xadd; elly = ey + yadd; hoa = 200; hrad = 57; xadd = sine(hoa + eha) * hrad; yadd = -cosine(hoa + eha) * hrad; erlx = ex + xadd; erly = ey + yadd; hoa = -20; hrad = -106; xadd = sine(hoa + eha) * hrad; yadd = -cosine(hoa + eha) * hrad; ecx = ex + xadd; ecy = ey + yadd; eda = -13; eda += droop; sprite2_mc.gotoAndStop(138); sprite2_mc._x = jx; sprite2_mc._y = jy; sprite2_mc._rotation = 45 + jba; sprite2_mc.swapDepths(11001); sprite2_mc._alpha = sfjnn; sprite9_mc.gotoAndStop(140); sprite9_mc._x = jx; sprite9_mc._y = jy; sprite9_mc._rotation = 45 + jba; sprite9_mc.swapDepths(11002); sprite9_mc._alpha = sfjn; sprite11_mc.gotoAndStop(142); sprite11_mc._x = jx; sprite11_mc._y = jy + brafall; sprite11_mc._rotation = 45 + jba; sprite11_mc.swapDepths(11175); sprite11_mc._alpha = sfjn; if (smile) { sprite3_mc.gotoAndStop(139); } else { sprite3_mc.gotoAndStop(132); } sprite3_mc._x = jhx; sprite3_mc._y = jhy; sprite3_mc._rotation = 45 + lookup + headup; sprite3_mc.swapDepths(11190); sprite3_mc._alpha = sf; sprite4_mc.gotoAndStop(133); sprite4_mc._x = jshx; sprite4_mc._y = jshy; sprite4_mc._rotation = -45 + jsha; sprite4_mc.swapDepths(11170); sprite4_mc._alpha = sf; sprite5_mc.gotoAndStop(134); sprite5_mc._x = jelx; sprite5_mc._y = jely; sprite5_mc._rotation = -45 + jela; sprite5_mc.swapDepths(11180); sprite5_mc._alpha = sf; sprite6_mc.gotoAndStop(135); sprite6_mc._x = jx; sprite6_mc._y = jy; sprite6_mc._rotation = 0; sprite6_mc.swapDepths(11160); sprite6_mc._alpha = sf; sprite7_mc.gotoAndStop(136); sprite7_mc._x = jtx; sprite7_mc._y = jty; sprite7_mc._rotation = -45 + jta; sprite7_mc.swapDepths(11150); sprite7_mc._alpha = sfjnn; sprite10_mc.gotoAndStop(141); sprite10_mc._x = jtx; sprite10_mc._y = jty; sprite10_mc._rotation = -45 + jta; sprite10_mc.swapDepths(11151); sprite10_mc._alpha = sfjn; sprite8_mc.gotoAndStop(137); sprite8_mc._x = jx; sprite8_mc._y = jy; sprite8_mc._rotation = 0; sprite8_mc.swapDepths(11000); sprite8_mc._alpha = sf; sprite12_mc.gotoAndStop(150); sprite12_mc._x = ex; sprite12_mc._y = ey; sprite12_mc._rotation = -45 + eha; sprite12_mc.swapDepths(11110); sprite12_mc._alpha = sfnn; sprite18_mc.gotoAndStop(155); sprite18_mc._x = ex; sprite18_mc._y = ey; sprite18_mc._rotation = -45 + eha; sprite18_mc.swapDepths(11111); sprite18_mc._alpha = sfn; sprite13_mc.gotoAndStop(151); sprite13_mc._x = ex; sprite13_mc._y = ey; sprite13_mc._rotation = 30 + eca; sprite13_mc.swapDepths(11130); sprite13_mc._alpha = sf; sprite14_mc.gotoAndStop(152); sprite14_mc._x = ex; sprite14_mc._y = ey; sprite14_mc._rotation = -45 + eha; sprite14_mc.swapDepths(11140); sprite14_mc._alpha = sfnn; sprite19_mc.gotoAndStop(156); sprite19_mc._x = ex; sprite19_mc._y = ey + brieffall; sprite19_mc._rotation = -45 + eha; sprite19_mc.swapDepths(11141); sprite19_mc._alpha = sfn; sprite15_mc.gotoAndStop(153); sprite15_mc._x = ellx; sprite15_mc._y = elly; sprite15_mc._rotation = -30 + ella; sprite15_mc.swapDepths(11100); sprite15_mc._alpha = sf; sprite16_mc.gotoAndStop(154); sprite16_mc._x = erlx; sprite16_mc._y = erly; sprite16_mc._rotation = -30 + erla; sprite16_mc.swapDepths(11120); sprite16_mc._alpha = sf; sprite17_mc.gotoAndStop(155); sprite17_mc._x = ex; sprite17_mc._y = ey; sprite17_mc._rotation = 0; sprite17_mc.swapDepths(10007); sprite17_mc._alpha = 0; sprite20_mc.gotoAndStop(157); sprite20_mc._x = ecx; sprite20_mc._y = ecy; sprite20_mc._rotation = -45 + eda; sprite20_mc.swapDepths(11115); sprite20_mc._alpha = sfn; sprite21_mc.gotoAndStop(158); sprite21_mc._x = ecx; sprite21_mc._y = ecy; sprite21_mc._rotation = -45 + eha; sprite21_mc.swapDepths(11116); sprite21_mc._alpha = sfn; e2ha += 32; g3aa += 26; sprite22_mc.gotoAndStop(160); sprite22_mc._x = 120; sprite22_mc._y = 342; sprite22_mc._rotation = -45 + sine(e2ha) * 23 / 10; sprite22_mc.swapDepths(9000); sprite22_mc._alpha = guyhanda; sprite23_mc.gotoAndStop(161); sprite23_mc._x = -41; sprite23_mc._y = 348; sprite23_mc._rotation = -45 + sine(g3aa) * 3 / 10; sprite23_mc.swapDepths(9001); sprite23_mc._alpha = guyhanda; sprite24_mc.gotoAndStop(313); sprite24_mc._x = guy1x; sprite24_mc._y = 528 + fadjy; sprite24_mc._rotation = 0; sprite24_mc.swapDepths(13002); sprite2_mc._alpha = 100; sprite25_mc.gotoAndStop(314); sprite25_mc._x = redx; sprite25_mc._y = 509; sprite25_mc._rotation = 0; sprite25_mc.swapDepths(13001); sprite25_mc._alpha = 100; } function dosayj4() { if (ssay == 0) { moverd = 100; ssay = 1; } else { if (ssay == 1) { ppush = 3 * mover / 100; droop = 25 * mover / 100; if (mover >= 99.5) { sppush = ppush; sdroop = droop; if (sink < 160) { sink += sinkadd; ++sinkadd; sinkll = sink * -0.1; sinkrl = -sink * -0.1; } else { if (lean < 19) { lean += leanadd; leanadd += 0.125; wait = 20; } else { lean = 19; if (wait) { --wait; } else { tx = -216; ty = -134; saythisl(369, 38, bub4l, tx, ty); ssay = 2; wait = 40; mover = 0; moverd = 0; } } } } } else { if (ssay == 2) { if (wait) { --wait; } else { tx = -156; ty = -176; saythisl(370, 40, bub4l, tx, ty); ssay = 3; wait = 40; } } else { if (ssay == 3) { if (wait) { --wait; } else { tx = -156; ty = -176; saythisl(371, 60, bub4l, tx, ty); ssay = 4; wait = 10; } } else { if (ssay == 4) { if (wait) { --wait; } else { tx = 77; dx = tx - guy1x; guy1x += tx / 20; if (guy1x >= 75) { tx = -256; ty = -161; saythisl(372, 60, bub4l, tx, ty); ssay = 5; wait = 30; } } } else { if (ssay == 5) { if (wait) { --wait; } else { tx = 152; dx = tx - redx; redx += tx / 20; if (redx >= 150) { tx = -208; ty = -119; saythisl(373, 50, bub4l, tx, ty); ssay = 6; wait = 55; } } } else { if (ssay == 6) { if (wait) { --wait; } else { tx = -208; ty = -119; saythisl(374, 50, bub4l, tx, ty); ssay = 7; wait = 80; } } else { if (ssay == 7) { if (wait) { --wait; } else { tx = 90; ty = -43; saythisl(375, 70, bub4l, tx, ty); ssay = 8; wait = 80; } } else { if (ssay == 8) { if (wait) { --wait; } else { tx = 90; ty = -43; saythisl(376, 70, bub4l, tx, ty); ssay = 9; wait = 20; moverd = 100; mover = 0; } } else { if (ssay == 9) { shpush = 15 * mover / 100; elpush = 57 * mover / 100; if (mover >= 99.75) { sshpush = shpush; selpush = elpush; mover = 0; moverd = 100; ssay = 10; } } else { if (ssay == 10) { lean = 19 + -18 * mover / 100; shpush = sshpush + 8 * mover / 100; elpush = selpush + 1 * mover / 100; if (mover >= 99.75) { tx = 90; ty = -43; saythisl(377, 60, bub4l, tx, ty); ssay = 9; wait = 70; slean = lean; sshpush = shpush; selpush = elpush; mover = 0; moverd = 0; ssay = 11; } } else { if (ssay == 11) { if (wait) { --wait; } else { tx = 90; ty = -43; saythisl(378, 70, bub4l, tx, ty); ssay = 12; wait = 80; moverd = 0; mover = 0; } } else { if (ssay == 12) { if (wait) { --wait; if (wait == 0) { moverd = 100; } } else { headup = (6 + adjx) * mover / 100; shpush = sshpush + (3 + fadjx) * mover / 100; elpush = selpush + fadjy * mover / 100; lean = slean + (-3 + adjy) * mover / 100; if (mover >= 99.75) { tx = 90; ty = -43; saythisl(379, 60, bub4l, tx, ty); ssay = 13; wait = 70; slean = lean; sshpush = shpush; selpush = elpush; sheadup = headup; mover = 0; moverd = 0; ssay = 13; } } } else { if (ssay == 13) { if (wait) { --wait; } else { tx = -57; ty = -59; saythisl(380, 70, bub4r, tx, ty); ssay = 14; wait = 80; } } else { if (ssay == 14) { if (wait) { --wait; } else { saythisl(381, 70, bub4r, tx, ty); ssay = 15; wait = 80; } } else { if (ssay == 15) { if (wait) { --wait; } else { saythisl(382, 70, bub4r, tx, ty); ssay = 16; wait = 80; } } else { if (ssay == 16) { if (wait) { --wait; } else { tx = 90; ty = -43; saythisl(383, 70, bub4l, tx, ty); ssay = 17; wait = 80; } } else { if (ssay == 17) { if (wait) { --wait; } else { tx = 90; ty = -43; saythisl(384, 70, bub4l, tx, ty); ssay = 18; wait = 80; } } else { if (ssay == 18) { if (wait) { --wait; if (wait == 0) { moverd = 100; } } else { headup = sheadup + (-15 + adjx) * mover / 100; if (mover >= 99.75) { sheadup = headup; moverd = 0; mover = 0; tx = 90; ty = -43; saythisl(385, 70, bub4l, tx, ty); ssay = 19; wait = 80; } } } else { if (ssay == 19) { if (wait) { --wait; if (wait == 0) { moverd = 100; } } else { shpush = sshpush + (-40 + qadjx) * mover / 100; elpush = selpush + (-53 + qadjy) * mover / 100; if (mover >= 99.75) { sshpush = shpush; selpush = elpush; mover = 0; moverd = 100; ssay = 20; } } } else { if (ssay == 20) { if (wait) { --wait; if (wait == 0) { moverd = 100; } } else { shpush = sshpush + +qadjx * mover / 100; elpush = selpush + (2 + qadjy) * mover / 100; sink = 160 + (-21 + adjy) * mover / 100; droop = sdroop + (-27 + adjx) * mover / 100; if (mover >= 99.75) { saythisl(386, 70, bub4l, tx, ty); ssay = 21; wait = 50; } } } else { if (ssay == 21) { if (wait) { --wait; } else { if (!goblack) { goblack = 10; } } } } } } } } } } } } } } } } } } } } } } } } mon4 = ' m:' + mover + ' wait:' + wait; if (Key.isDown(82)) { scenestarted = 2; } cum(); } function ijenny4f() { level = room1level; if (scenestarted == 0) { hideall(); } bg2alpha = 0; wait = 20; spritefade = 0; sf = 100; scenestarted = 1; fa = 0; fuck = 0; fmod = 1; fspeed = 10; intensity = 0; eym = 0; exm = 0; jmx = 0; strokes = 0; ra = 0; la = 0; ra2 = 0; la2 = 0; rmod = 0; lmod = 0; rm10 = 0; lm10 = 0; rmod2 = 0; lmod2 = 0; rm102 = 0; lm102 = 0; speedy = 0; head1 = 331; head2 = 332; h1 = 100; h2 = 0; yoyo = 0; xoxo = 0; if (jenny4done) { h1 = 0; h2 = 100; ssay = 32; intensity = 120; speedy = 5; dintense = 120; wait = 60; } } function dojenny4f() { if (scenestarted != 1) { ijenny4f(); } dospritesj4f(); dosayj4f(); bg_mc.swapDepths(0); bg2_mc.swapDepths(10000); bg_mc.gotoAndStop(76); bg2_mc.gotoAndStop(76); bg_mc._x = 320; bg_mc._y = 240; bg_mc._xscale = 100; bg_mc._yscale = 100; bg2_mc._x = 320; bg2_mc._y = 240; bg2_mc._xscale = 100; bg2_mc._yscale = 100; bg_mc._alpha = 100; bg2_mc._alpha = bg2alpha; } function dospritesj4f() { fmod = intensity / 25; fa += fspeed; fuck = sine(fa) * fmod; pfuck = fuck; if (pfuck < 0) { pfuck = 0; } nfuck = fuck; if (nfuck > 0) { nfuck /= 8; } dx = moverd - mover; if (abs(dx) > 0.25) { if (abs(moverm) < abs(dx / 8)) { mover += moverm; if (dx > 0) { moverm += 0.25; } else { moverm -= 0.25; } } else { if (fast) { mover += dx / 4; } else { mover += dx / 8; } } } jx = 428 + xoxo; jy = 390 + yoyo; jx += jmx; hoa = -103; hrad = 120; xadd = sine(hoa + jcha) * hrad; yadd = -cosine(hoa + jcha) * hrad; jrtx = jx + xadd; jrty = jy + yadd; hoa = -80; hrad = 124; xadd = sine(hoa + jcha) * hrad; yadd = -cosine(hoa + jcha) * hrad; jltx = jx + xadd; jlty = jy + yadd; hoa = -165; hrad = 72; xadd = sine(hoa + jcha) * hrad; yadd = -cosine(hoa + jcha) * hrad; jax = jx + xadd; jay = jy + yadd; hoa = -83.59999999999999 + wadjx / 10; hrad = 202 + wadjy; xadd = sine(hoa + jcha) * hrad; yadd = -cosine(hoa + jcha) * hrad; jhdx = jx + xadd; jhdy = jy + yadd; sprite1_mc.gotoAndStop(316); sprite1_mc._x = jx; sprite1_mc._y = jy; sprite1_mc._rotation = 45 + jha; sprite1_mc.swapDepths(11001); sprite1_mc._alpha = sf; sprite2_mc.gotoAndStop(317); sprite2_mc._x = jx; sprite2_mc._y = jy; sprite2_mc._rotation = -45 + jcha; sprite2_mc.swapDepths(11100); sprite2_mc._alpha = sf; sprite3_mc.gotoAndStop(318); sprite3_mc._x = jax; sprite3_mc._y = jay; sprite3_mc._rotation = 45 + jraa; sprite3_mc.swapDepths(11510); sprite3_mc._alpha = sf; sprite4_mc.gotoAndStop(319); sprite4_mc._x = jx; sprite4_mc._y = jy; sprite4_mc._rotation = 45 + jha; sprite4_mc.swapDepths(11520); sprite4_mc._alpha = sf; sprite5_mc.gotoAndStop(320); sprite5_mc._x = jrtx; sprite5_mc._y = jrty; sprite5_mc._rotation = -45 + rta; sprite5_mc.swapDepths(11130); sprite5_mc._alpha = sf; sprite6_mc.gotoAndStop(321); sprite6_mc._x = jltx; sprite6_mc._y = jlty; sprite6_mc._rotation = -45 + lta; sprite6_mc.swapDepths(11000); sprite6_mc._alpha = sf; sprite24_mc.gotoAndStop(head1); sprite24_mc._x = jhdx; sprite24_mc._y = jhdy; sprite24_mc._rotation = -45; sprite24_mc.swapDepths(11102); sprite24_mc._alpha = h1; sprite25_mc.gotoAndStop(head2); sprite25_mc._x = jhdx; sprite25_mc._y = jhdy; sprite25_mc._rotation = -45; sprite25_mc.swapDepths(11103); sprite25_mc._alpha = h2; ex = 525 + xoxo; ey = 223 + yoyo; ex += exm; ey += eym; hoa = 131; hrad = 73; xadd = sine(hoa + eha) * hrad; yadd = -cosine(hoa + eha) * hrad; elx = ex + xadd; ely = ey + yadd; hoa = 141; hrad = 103; xadd = sine(hoa + eha) * hrad; yadd = -cosine(hoa + eha) * hrad; erx = ex + xadd; ery = ey + yadd; hoa = -31; hrad = 190; xadd = sine(hoa + echa) * hrad; yadd = -cosine(hoa + echa) * hrad; elax = ex + xadd; elay = ey + yadd; hoa = -36; hrad = 229; xadd = sine(hoa + echa) * hrad; yadd = -cosine(hoa + echa) * hrad; erax = ex + xadd; eray = ey + yadd; sprite12_mc.gotoAndStop(324); sprite12_mc._x = ex; sprite12_mc._y = ey; sprite12_mc._rotation = -45 + eha; sprite12_mc.swapDepths(11410); sprite12_mc._alpha = sf; sprite13_mc.gotoAndStop(325); sprite13_mc._x = elx; sprite13_mc._y = ely; sprite13_mc._rotation = -45 + ella; sprite13_mc.swapDepths(11430); sprite13_mc._alpha = sf; sprite14_mc.gotoAndStop(326); sprite14_mc._x = ex; sprite14_mc._y = ey; sprite14_mc._rotation = 45 + echa; sprite14_mc.swapDepths(11405); sprite14_mc._alpha = sf; sprite15_mc.gotoAndStop(327); sprite15_mc._x = elax; sprite15_mc._y = elay; sprite15_mc._rotation = -45 + elaa; sprite15_mc.swapDepths(11440); sprite15_mc._alpha = sf; sprite16_mc.gotoAndStop(328); sprite16_mc._x = erax; sprite16_mc._y = eray; sprite16_mc._rotation = -45 + eraa; sprite16_mc.swapDepths(11400); sprite16_mc._alpha = sf; sprite17_mc.gotoAndStop(329); sprite17_mc._x = erx; sprite17_mc._y = ery; sprite17_mc._rotation = -45 + ella; sprite17_mc.swapDepths(11404); sprite17_mc._alpha = sf; } function dosayj4f() { if (ssay >= 22) { if (ssay == 22) { hotx = 279; hoty = 19; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); mmx = mousex - omousex; omousex = mousex; if (dx < 25 && dy < 25 && mmx < -2) { if (intensity == 0) { fa = 0; intensity = 5; dintense = 20; } else { dintense = intensity + 10; } ssay = 23; sayfile('huff1.wav', 6); } } else { if (ssay == 23) { if (intensity < dintense) { intensity += 0.5; } else { hotx = -15; hoty = 89; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); if (dx < 25 && dy < 25) { sayfile('huff2.wav', 6); if (intensity < 100) { ssay = 22; } else { ssay = 24; } } } } else { if (ssay == 24) { if (h2 < 100) { h2 += 20; } else { if (h1 > 0) { h1 -= 20; } else { head1 = 333; tx = -110; ty = 76; saythisl(387, 60, bub4l, tx, ty); wait = 70; ssay = 25; } } } else { if (ssay == 25) { if (wait) { --wait; } else { tx = -51; ty = -156; saythisl(388, 60, 5, tx, ty); wait = 70; ssay = 26; } } else { if (ssay == 26) { if (wait) { --wait; } else { saythisl(389, 60, 6, tx, ty); wait = 70; ssay = 27; } } else { if (ssay == 27) { if (wait) { --wait; } else { saythisl(390, 60, 6, tx, ty); wait = 70; ssay = 28; } } else { if (ssay == 28) { if (wait) { --wait; } else { saythisl(391, 60, 6, tx, ty); wait = 70; ssay = 29; } } else { if (ssay == 29) { if (wait) { --wait; } else { tx = -110; ty = 76; saythisl(392, 40, bub4l, tx, ty); llsaythis('\rOooo!', 40, bub4l, tx, ty); wait = 40; ssay = 30; } } else { if (ssay == 30) { if (wait) { --wait; } else { tx = -128; ty = 76; saythisl(393, 70, bub4l, tx, ty); wait = 10; ssay = 31; } } else { if (ssay == 31) { if (h1 < 100) { h1 += 20; } else { if (h2 > 0) { h2 -= 20; } } if (wait) { --wait; } else { dintense = 120; wait = 90; ssay = 32; } } else { if (ssay == 32) { if (intensity < dintense) { intensity += 0.125; } if (speedy < 5) { speedy += 0.125; } if (wait) { --wait; } else { if (!goblackslow && intensity >= 120) { goblackslow = 1; jenny4done = 1; } } } } } } } } } } } } } fspeed = 10 + intensity / 10; if (ssay == 32) { fspeed += speedy; } qnfuck = fuck; qm = 1.09; if (qnfuck > qm) { qnfuck = qm; } jcha = 0; jha = +(nfuck * 1.2); jraa = -10 + nfuck * 0.5; jmx = +(qnfuck * (17 + qadjy) / 10); if (fa >= 360) { fa -= 360; ++strokes; } xpoint = 200 + qadjx; if (fa >= xpoint && ofa < xpoint) { say('slap'); if (strokes & 1) { lm10 = intensity / 10; rm10 = intensity / 10; la = 0; ra = 0; } else { lm102 = intensity / 10; rm10 = intensity / 10; la2 = 0; ra2 = 0; } } else { if (lm10 > 0) { lm10 -= 0.25; } if (rm10 > 0) { rm10 -= 0.25; } if (lm102 > 0) { lm102 -= 0.25; } if (rm102 > 0) { rm102 -= 0.25; } } ofa = fa; lmod = lm10 / 10; rmod = rm10 / 10; lmod2 = lm102 / 10; rmod2 = rm102 / 10; la += 30; ra += 28; la2 += 29; ra2 += 26; lta = sine(la) * 4 * lmod; rta = sine(ra) * 4 * rmod; lta += sine(la2) * 4 * lmod2; rta += sine(ra2) * 4 * rmod2; if (fuck > 0) { eha = +(fuck * -1); } else { eha = +(fuck * -3.6); } echa = +(fuck * 0.9); elaa = +(fuck * 0.8); elaa += +(pfuck * 0.4); eraa = +(fuck * 0.8); eraa += +(pfuck * 0.8); ella = +(fuck * 1.5); exm = +(fuck * (41 + zadjx) / 10); eym = +(fuck * (18 + zadjy) / 10); } mon4 = ' i:' + intensity + ' sp:' + fspeed; if (Key.isDown(82)) { scenestarted = 2; } } function calcFPS() { ++numFrames; now = getTimer(); elapsedSeconds = (now - startTime) / 1000; tfps = numFrames / elapsedSeconds; fpstab[fpsi] = tfps; ++fpsi; if (fpsi >= 4) { fpsi = 0; } fps = (fpstab[0] + fpstab[1] + fpstab[2] + fpstab[3]) / 4; if (fps >= 19.5) { fps = 20; } if (fps >= 20) { speedadj = 1; } else { speedadj = 1 + (20 - fps) / 10; } mon5 = 'fps:' + floor(fps); } function ijenny5() { startTime = getTimer(); numFrames = 0; fps = 30; speedadj = 1; level = room1level; if (scenestarted == 0) { if (ssay == 41 || ssay == 46) { hideall(2); } else { hideall(); } } bg1alpha = 0; bg2alpha = 100; wait = 20; spritefade = 0; sf = 100; scenestarted = 1; fa = 0; fuck = 0; fmod = 1; fspeed = 10; intensity = 0; eym = 0; exm = 0; jmx = 0; strokes = 0; ra = 0; la = 0; ra2 = 0; la2 = 0; rmod = 0; lmod = 0; rm10 = 0; lm10 = 0; rmod2 = 0; lmod2 = 0; rm102 = 0; lm102 = 0; speedy = 0; head1 = 331; head2 = 332; h1 = 100; h2 = 0; yoyo = 0; xoxo = 0; moverd = 0; moverm = 0; mover = 0; bukkake = 0; ewait = 0; sf = 100; shang = 0; shuddadd = 0; shudder = 0; sarch = 0; squirtreq = 0; rxa = 0; rjack = 0; rja = 0; rjmod = 0; rjspeed = 25; rpump = 0; rpa = 0; rpmod = 1; rpspeed = 10; rstrokes = 22; rsquirts = 0; rcummed = 0; rcumming = 0; squirtreq = 0; exa = 0; ejack = 0; eja = 0; ejmod = 0; ejspeed = 25; epump = 0; epa = 0; epmod = 1; epspeed = 10; estrokes = 28; esquirts = 0; ecummed = 0; ecumming = 0; esquirtreq = 0; eshang = 0; eshuddadd = 0; eshudder = 0; esarch = 0; cxa = 0; cjack = 0; cja = 0; cjmod = 0; cjspeed = 26; cpump = 0; cpa = 0; cpmod = 1; cpspeed = 11; cstrokes = 24; csquirts = 0; ccummed = 0; ccumming = 0; csquirtreq = 0; cshang = 0; cshuddadd = 0; cshudder = 0; csarch = 0; gxa = 0; gjack = 0; gja = 0; gjmod = 0; gjspeed = 27; gpump = 0; gpa = 0; gpmod = 1; gpspeed = 12; gstrokes = 19; gsquirts = 0; gcummed = 0; gcumming = 0; gsquirtreq = 0; gshang = 0; gshuddadd = 0; gshudder = 0; gsarch = 0; eewait = 0; vbx = 320; vby = 240; gotone = 0; ilanded = -1; if (bukkake == 3) { xoxoxo = -320; this_quality = 'low'; estrokes = 28; cstrokes = 24; gstrokes = 19; } else { if (ssay == 41) { bukkake = 1; isquirts(); bg2alpha = 0; xoxoxo = 0; } else { ssay = 33; wait = 60; } } if (ssay == 41 || ssay == 46) { } else { ChangeTheme(JennyTheme); } } function dojenny5() { if (scenestarted != 1) { ijenny5(); } calcFPS(); if (!bukkake) { dospritesj4f(); dosayj5(); } else { if (ssay >= 42) { if (bukkake == 3) { fuckmove(); dospritesbuk3(); dotwoguys(); dosquirts(); } else { dotwoguys(); } } else { if (bukkake == 1) { fuckmove(); dospritesj5(); dosayj5b(); dosquirts(); } } } bg_mc.swapDepths(50); if (bukkake == 3) { bg_mc.gotoAndStop(88); } else { if (bukkake == 1) { bg_mc.gotoAndStop(86); } else { bg_mc.gotoAndStop(76); } } if (bukkake) { bg2_mc.gotoAndStop(87); } else { bg2_mc.gotoAndStop(85); } bg_mc._x = 320; bg_mc._y = 240; bg_mc._xscale = 100; bg_mc._yscale = 100; if (bukkake) { bg2_mc._x = 320 + xoxoxo; bg2_mc._y = 240; bg2_mc.swapDepths(20000); } else { bg2_mc._x = 216 + xoxo; bg2_mc._y = 114 + yoyo; bg2_mc.swapDepths(10000); } bg2_mc._xscale = 100; bg2_mc._yscale = 100; bg_mc._alpha = 100; bg2_mc._alpha = bg2alpha; } function fuckmove() { qnfuck = fuck; qm = 1.09; if (qnfuck > qm) { qnfuck = qm; } jcha = 0; jha = +(nfuck * 1.2); jraa = -10 + nfuck * 0.5; jmx = +(qnfuck * (17 + qadjy) / 10); if (fa >= 360) { fa -= 360; ++strokes; } xpoint = 200 + qadjx; if (fa >= xpoint && ofa < xpoint) { say('slap'); if (strokes & 1) { lm10 = intensity / 10; rm10 = intensity / 10; la = 0; ra = 0; } else { lm102 = intensity / 10; rm10 = intensity / 10; la2 = 0; ra2 = 0; } } else { if (lm10 > 0) { lm10 -= 0.25; } if (rm10 > 0) { rm10 -= 0.25; } if (lm102 > 0) { lm102 -= 0.25; } if (rm102 > 0) { rm102 -= 0.25; } } ofa = fa; lmod = lm10 / 10; rmod = rm10 / 10; lmod2 = lm102 / 10; rmod2 = rm102 / 10; la += 30; ra += 28; la2 += 29; ra2 += 26; lta = sine(la) * 4 * lmod; rta = sine(ra) * 4 * rmod; lta += sine(la2) * 4 * lmod2; rta += sine(ra2) * 4 * rmod2; if (fuck > 0) { eha = +(fuck * -1); } else { eha = +(fuck * -3.6); } echa = +(fuck * 0.9); elaa = +(fuck * 0.8); elaa += +(pfuck * 0.4); eraa = +(fuck * 0.8); eraa += +(pfuck * 0.8); ella = +(fuck * 1.5); exm = +(fuck * (41 + zadjx) / 10); eym = +(fuck * (18 + zadjy) / 10); } function dospritesj5() { domover(); if (shudder) { shang += 141; sqdeptab = [0, 1, 2, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 2, 1, 0, 0]; shdepth = sqdeptab[floor(shudder)]; shuddadd = sine(shang) * (shdepth * 0.02); if (squirts == 7 && shudder <= 8) { shudder -= 0.25; } else { --shudder; } sarch = sine(shudder * 9); sarch += shuddadd; if (shudder == 0 && rsquirts == 5 && !rcummed) { rcummed = 1; ewait = 100; } } else { shuddadd = 0; } fmod = intensity / 25; if (slowfuck) { fa += 5; } else { fa += fspeed * speedadj; } fuck = sine(fa) * fmod; pfuck = fuck; if (pfuck < 0) { pfuck = 0; } nfuck = fuck; if (nfuck > 0) { nfuck /= 8; } jbmx = +(qnfuck * 0.7); jbmy = +(qnfuck * 0.4); jx = 233 + jbmx; jy = 476 + jbmy; rtx = jx; rty = jy; ltx = jx + 204; lty = jy - 10; jrta = rta / 3; jlta = lta / 3; rtoa = 69; hrad = 149; xadd = sine(rtoa + jrta) * hrad; yadd = -cosine(rtoa + jrta) * hrad; rtpx = rtx + xadd; rtpy = rty + yadd; ltoa = 13; ltprad = 103; xadd = sine(ltoa + jlta) * ltprad; yadd = -cosine(ltoa + jlta) * ltprad; ltpx = ltx + xadd; ltpy = lty + yadd; sprite1_mc.gotoAndStop(470); sprite1_mc._x = jx; sprite1_mc._y = jy; sprite1_mc._rotation = 45; sprite1_mc.swapDepths(11100); sprite1_mc._alpha = sf; sprite2_mc.gotoAndStop(471); sprite2_mc._x = rtx; sprite2_mc._y = rty; sprite2_mc._rotation = 45 + jrta; sprite2_mc.swapDepths(11101); sprite2_mc._alpha = sf; sprite3_mc.gotoAndStop(472); sprite3_mc._x = ltx; sprite3_mc._y = lty; sprite3_mc._rotation = 45 + jlta; sprite3_mc.swapDepths(11102); sprite3_mc._alpha = sf; rx = 583 + rxa + 27; ry = 179; hoa = -60; hrad = 99; xadd = sine(hoa + rba) * hrad; yadd = -cosine(hoa + rba) * hrad; rchx = rx + xadd; rchy = ry + yadd; hoa = -51; hrad = 122; xadd = sine(hoa + rba) * hrad; yadd = -cosine(hoa + rba) * hrad; rrax = rx + xadd; rray = ry + yadd; hoa = 199; hrad = 135; xadd = sine(hoa + rba) * hrad; yadd = -cosine(hoa + rba) * hrad; rdx = rx + xadd; rdy = ry + yadd; hoa = -69 + qadjx / 1; hrad = 76 + qadjy; xadd = sine(hoa + rda) * hrad; yadd = -cosine(hoa + rda) * hrad; dpx = rdx + xadd; dpy = rdy + yadd; hoa = -133; hrad = 72; xadd = sine(hoa + rba) * hrad; yadd = -cosine(hoa + rba) * hrad; rrlx = rx + xadd; rrly = ry + yadd; hoa = 156; hrad = 102; xadd = sine(hoa + rba) * hrad; yadd = -cosine(hoa + rba) * hrad; rllx = rx + xadd; rlly = ry + yadd; sprite4_mc.gotoAndStop(474); sprite4_mc._x = rx; sprite4_mc._y = ry; sprite4_mc._rotation = rba; sprite4_mc.swapDepths(11001); sprite4_mc._alpha = sf; sprite5_mc.gotoAndStop(475); sprite5_mc._x = rchx; sprite5_mc._y = rchy; sprite5_mc._rotation = 0; sprite5_mc.swapDepths(11020); sprite5_mc._alpha = sf; sprite6_mc.gotoAndStop(476); sprite6_mc._x = rrax; sprite6_mc._y = rray + rramy; sprite6_mc._rotation = -45 + rraa; sprite6_mc.swapDepths(11010); sprite6_mc._alpha = sf; sprite7_mc.gotoAndStop(477); sprite7_mc._x = rrax; sprite7_mc._y = rray + rramy; sprite7_mc._rotation = -45 + rraa; sprite7_mc.swapDepths(11050); sprite7_mc._alpha = sf; sprite8_mc.gotoAndStop(478); sprite8_mc._x = rdx; sprite8_mc._y = rdy; sprite8_mc._rotation = -45 + rda; sprite8_mc.swapDepths(11049); sprite8_mc._alpha = sf; sprite9_mc.gotoAndStop(479); sprite9_mc._x = rdx; sprite9_mc._y = rdy; sprite9_mc._rotation = 0; sprite9_mc.swapDepths(11009); sprite9_mc._alpha = sf; sprite10_mc.gotoAndStop(480); sprite10_mc._x = rrlx; sprite10_mc._y = rrly; sprite10_mc._rotation = -45 + rrla; sprite10_mc.swapDepths(11000); sprite10_mc._alpha = sf; sprite11_mc.gotoAndStop(481); sprite11_mc._x = rllx; sprite11_mc._y = rlly; sprite11_mc._rotation = -45 + rlla; sprite11_mc.swapDepths(11063); sprite11_mc._alpha = sf; } function dosayj5() { if (ssay == 33) { speedy = 5; intensity = 120; dintense = 120; h1 = 100; h2 = 0; fspeed = 10 + intensity / 10; fspeed += speedy; if (wait) { --wait; } else { ssay = 34; moverd = 100; } } else { if (ssay == 34) { xoxo = 100 * mover / 100; yoyo = 122 * mover / 100; if (mover >= 99) { tx = -169 + adjx; ty = -141 + adjy; saythisl(394, 60, bub4l, tx, ty); ssay = 35; wait = 70; } } else { if (ssay == 35) { if (wait) { --wait; } else { tx = -107; ty = -130; saythisl(395, 60, bub4r, tx, ty); ssay = 36; wait = 70; } } else { if (ssay == 36) { if (wait) { --wait; } else { saythisl(396, 60, bub4r, tx, ty); ssay = 37; wait = 70; } } else { if (ssay == 37) { if (wait) { --wait; } else { saythisl(397, 60, bub4r, tx, ty); ssay = 38; wait = 70; } } else { if (ssay == 38) { if (wait) { --wait; } else { ssay = 39; sxoxo = xoxo; syoyo = yoyo; mover = 0; moverm = 0; moverd = 100; } } else { if (ssay == 39) { xoxo = sxoxo - 100 * mover / 100; yoyo = syoyo - 122 * mover / 100; if (mover >= 99.75 && !goblack) { goblack = 1; ssay = 40; } } } } } } } } fuckmove(); if (Key.isDown(82)) { scenestarted = 2; } } function dosayj5b() { speedy = 5; intensity = 120; dintense = 120; fspeed = 10 + intensity / 10; fspeed += speedy; if (rcummed) { if (rpspeed > 5) { rpspeed -= 1; } if (rjspeed > 7) { rjspeed -= 1; } if (rpmod > 0.1) { rpmod -= 0.05; } if (ewait) { --ewait; } else { if (bg2alpha < 100) { bg2alpha += 5; } else { ssay = 42; } } } else { if (rjmod < 0.75) { rjmod += 0.05; } } rja += rjspeed; rjack = sine(rja) * rjmod; if (rjack > 0) { rjack *= 1 + (76 + zadjx) / 100; } rraa = +(rjack * 3.5); rda = +(rjack * -1.9); rramy = +(rjack * -2.1); if (!shudder) { rpa += rpspeed; } if (rpa >= 360) { rpa -= 360; ++rstrokes; if (!rcummed) { rjspeed = 25 + rstrokes * (6 + adjx) / 10; if (rjspeed > 50) { rjspeed = 50; } } if (rcummed) { } else { if (rcumming) { rpspeed = 10 - rsquirts / 2; } else { rpspeed = 10 + rstrokes * (2 + adjy) / 10; if (rpspeed > 20) { rpspeed = 20; } } } if (rcummed) { } else { rpmod = 0.1 + 0.9 * rstrokes / 20; if (rpmod > 1) { rpmod = 1; } } if (!rcumming && rstrokes == 30) { rcumming = 1; squirtreq = 1; } } if (rpa >= 180 && orpa < 180) { if (squirtreq) { if (rsquirts < 5) { ++rsquirts; shudder = 20; startsquirt(0, rsquirts); } } } orpa = rpa; rpump = sine(rpa - 90) * rpmod; rpump += sarch * 0.5; rba = rpump * 2.1; rlla = rpump * -1.9; rrla = rlla; rxa = rpump * -5.8; rraa += rpump * 2.6; mon4 = ' rstr:' + rstrokes + ' sq:' + rsquirts + ' cmd:' + rcummed; if (buttonpress) { rstrokes = 28; } if (Key.isDown(82)) { scenestarted = 2; } } function dospritesbuk3() { domover(); if (eshudder) { eshang += 141; esqdeptab = [0, 1, 2, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 2, 1, 0, 0]; eshdepth = esqdeptab[floor(eshudder)]; eshuddadd = sine(eshang) * (eshdepth * 0.02); --eshudder; esarch = sine(eshudder * 9); esarch += eshuddadd; if (eshudder == 0 && esquirts == 5 && !ecummed) { ecummed = 1; } } else { eshuddadd = 0; } if (cshudder) { cshang += 141; csqdeptab = [0, 1, 2, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 2, 1, 0, 0]; cshdepth = csqdeptab[floor(cshudder)]; cshuddadd = sine(cshang) * (cshdepth * 0.02); --cshudder; csarch = sine(cshudder * 9); csarch += cshuddadd; if (cshudder == 0 && csquirts == 5 && !ccummed) { ccummed = 1; } } else { cshuddadd = 0; } if (gshudder) { gshang += 141; gsqdeptab = [0, 1, 2, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 2, 1, 0, 0]; gshdepth = gsqdeptab[floor(gshudder)]; gshuddadd = sine(gshang) * (gshdepth * 0.02); --gshudder; gsarch = sine(gshudder * 9); gsarch += gshuddadd; if (gshudder == 0 && gsquirts == 5 && !gcummed) { gcummed = 1; } } else { gshuddadd = 0; } if (gcummed && ccummed && ecummed) { ++eewait; if (eewait > 90 && !goblackslow) { goblackslow = 1; jenny5done = 1; } } fmod = intensity / 25; if (slowfuck) { fa += 5; } else { fa += fspeed; } fuck = sine(fa) * fmod; pfuck = fuck; if (pfuck < 0) { pfuck = 0; } nfuck = fuck; if (nfuck > 0) { nfuck /= 8; } jbmx = +(qnfuck * 0.7); jbmy = +(qnfuck * 0.4); jx = 233 + jbmx; jy = 476 + jbmy; rtx = jx; rty = jy; ltx = jx + 204; lty = jy - 10; jrta = rta / 3; jlta = lta / 3; rtoa = 69; hrad = 149; xadd = sine(rtoa + jrta) * hrad; yadd = -cosine(rtoa + jrta) * hrad; rtpx = rtx + xadd; rtpy = rty + yadd; ltoa = 13; ltprad = 103; xadd = sine(ltoa + jlta) * ltprad; yadd = -cosine(ltoa + jlta) * ltprad; ltpx = ltx + xadd; ltpy = lty + yadd; sprite1_mc.gotoAndStop(470); sprite1_mc._x = jx; sprite1_mc._y = jy; sprite1_mc._rotation = 45; sprite1_mc.swapDepths(14100); sprite1_mc._alpha = sf; sprite2_mc.gotoAndStop(471); sprite2_mc._x = rtx; sprite2_mc._y = rty; sprite2_mc._rotation = 45 + jrta; sprite2_mc.swapDepths(14101); sprite2_mc._alpha = sf; sprite3_mc.gotoAndStop(472); sprite3_mc._x = ltx; sprite3_mc._y = lty; sprite3_mc._rotation = 45 + jlta; sprite3_mc.swapDepths(14102); sprite3_mc._alpha = sf; rx = 583 + rxa + 27; ry = 179; hoa = -60; hrad = 99; xadd = sine(hoa + rba) * hrad; yadd = -cosine(hoa + rba) * hrad; rchx = rx + xadd; rchy = ry + yadd; hoa = -51; hrad = 122; xadd = sine(hoa + rba) * hrad; yadd = -cosine(hoa + rba) * hrad; rrax = rx + xadd; rray = ry + yadd; hoa = 199; hrad = 135; xadd = sine(hoa + rba) * hrad; yadd = -cosine(hoa + rba) * hrad; rdx = rx + xadd; rdy = ry + yadd; hoa = -69 + qadjx / 1; hrad = 76 + qadjy; xadd = sine(hoa + rda) * hrad; yadd = -cosine(hoa + rda) * hrad; edpx = rdx + xadd; edpy = rdy + yadd; hoa = -133; hrad = 72; xadd = sine(hoa + rba) * hrad; yadd = -cosine(hoa + rba) * hrad; rrlx = rx + xadd; rrly = ry + yadd; hoa = 156; hrad = 102; xadd = sine(hoa + rba) * hrad; yadd = -cosine(hoa + rba) * hrad; rllx = rx + xadd; rlly = ry + yadd; sprite4_mc.gotoAndStop(491); sprite4_mc._x = rx; sprite4_mc._y = ry; sprite4_mc._rotation = rba; sprite4_mc.swapDepths(13001); sprite4_mc._alpha = sf; sprite5_mc.gotoAndStop(475); sprite5_mc._x = rchx; sprite5_mc._y = rchy; sprite5_mc._rotation = 0; sprite5_mc.swapDepths(13020); sprite5_mc._alpha = sf; sprite6_mc.gotoAndStop(476); sprite6_mc._x = rrax; sprite6_mc._y = rray + rramy; sprite6_mc._rotation = -45 + rraa; sprite6_mc.swapDepths(13010); sprite6_mc._alpha = sf; sprite7_mc.gotoAndStop(477); sprite7_mc._x = rrax; sprite7_mc._y = rray + rramy; sprite7_mc._rotation = -45 + rraa; sprite7_mc.swapDepths(13050); sprite7_mc._alpha = sf; sprite8_mc.gotoAndStop(493); sprite8_mc._x = rdx; sprite8_mc._y = rdy; sprite8_mc._rotation = -45 + rda; sprite8_mc.swapDepths(13049); sprite8_mc._alpha = sf; sprite9_mc.gotoAndStop(480); sprite9_mc._x = rrlx; sprite9_mc._y = rrly; sprite9_mc._rotation = -45 + rrla; sprite9_mc.swapDepths(13000); sprite9_mc._alpha = sf; sprite10_mc.gotoAndStop(481); sprite10_mc._x = rllx; sprite10_mc._y = rlly; sprite10_mc._rotation = -45 + rlla; sprite10_mc.swapDepths(13063); sprite10_mc._alpha = sf; g3x = 320 + g3xa + 153 + adjx; g3y = 144 + adjy; hoa = -60; hrad = 99; xadd = sine(hoa + g3ba) * hrad; yadd = -cosine(hoa + g3ba) * hrad; g3chx = g3x + xadd; g3chy = g3y + yadd; hoa = -51; hrad = 122; xadd = sine(hoa + g3ba) * hrad; yadd = -cosine(hoa + g3ba) * hrad; g3rax = g3x + xadd; g3ray = g3y + yadd; hoa = 199; hrad = 135; xadd = sine(hoa + g3ba) * hrad; yadd = -cosine(hoa + g3ba) * hrad; g3dx = g3x + xadd; g3dy = g3y + yadd; hoa = -69; hrad = 76; xadd = sine(hoa + g3da) * hrad; yadd = -cosine(hoa + g3da) * hrad; g3dpx = g3dx + xadd; g3dpy = g3dy + yadd; hoa = -133; hrad = 72; xadd = sine(hoa + g3ba) * hrad; yadd = -cosine(hoa + g3ba) * hrad; g3rlx = g3x + xadd; g3rly = g3y + yadd; hoa = 156; hrad = 102; xadd = sine(hoa + g3ba) * hrad; yadd = -cosine(hoa + g3ba) * hrad; g3llx = g3x + xadd; g3lly = g3y + yadd; sprite11_mc.gotoAndStop(492); sprite11_mc._x = g3x; sprite11_mc._y = g3y; sprite11_mc._rotation = g3ba; sprite11_mc.swapDepths(12001); sprite11_mc._alpha = sf; sprite12_mc.gotoAndStop(475); sprite12_mc._x = g3chx; sprite12_mc._y = g3chy; sprite12_mc._rotation = 0; sprite12_mc.swapDepths(12020); sprite12_mc._alpha = sf; sprite13_mc.gotoAndStop(476); sprite13_mc._x = g3rax; sprite13_mc._y = g3ray + g3ramy; sprite13_mc._rotation = -45 + g3raa; sprite13_mc.swapDepths(12010); sprite13_mc._alpha = sf; sprite14_mc.gotoAndStop(477); sprite14_mc._x = g3rax; sprite14_mc._y = g3ray + g3ramy; sprite14_mc._rotation = -45 + g3raa; sprite14_mc.swapDepths(12050); sprite14_mc._alpha = sf; sprite15_mc.gotoAndStop(493); sprite15_mc._x = g3dx; sprite15_mc._y = g3dy; sprite15_mc._rotation = -45 + g3da; sprite15_mc.swapDepths(12049); sprite15_mc._alpha = sf; sprite16_mc.gotoAndStop(480); sprite16_mc._x = g3rlx; sprite16_mc._y = g3rly; sprite16_mc._rotation = -45 + g3rla; sprite16_mc.swapDepths(12000); sprite16_mc._alpha = sf; sprite17_mc.gotoAndStop(481); sprite17_mc._x = g3llx; sprite17_mc._y = g3lly; sprite17_mc._rotation = -45 + g3lla; sprite17_mc.swapDepths(12063); sprite17_mc._alpha = sf; g1x = 140 + fadjx; g1y = 192 + fadjy; hoa = 22; hrad = 290; xadd = sine(hoa + g1ba) * hrad; yadd = -cosine(hoa + g1ba) * hrad; g1lax = g1x + xadd; g1lay = g1y + yadd; hoa = -19; hrad = 272; xadd = sine(hoa + g1ba) * hrad; yadd = -cosine(hoa + g1ba) * hrad; g1rax = g1x + xadd; g1ray = g1y + yadd; hoa = 180; hrad = 60; xadd = sine(hoa + g1ba) * hrad; yadd = -cosine(hoa + g1ba) * hrad; g1dx = g1x + xadd; g1dy = g1y + yadd; hoa = 51; hrad = 69; xadd = sine(hoa + g1da) * hrad; yadd = -cosine(hoa + g1da) * hrad; g1dpx = g1dx + xadd; g1dpy = g1dy + yadd; vbx = g1dpx; vby = g1dpy; hoa = -113; hrad = 73; xadd = sine(hoa + g1ba) * hrad; yadd = -cosine(hoa + g1ba) * hrad; g1rlx = g1x + xadd; g1rly = g1y + yadd; hoa = 131; hrad = 47; xadd = sine(hoa + g1ba) * hrad; yadd = -cosine(hoa + g1ba) * hrad; g1llx = g1x + xadd; g1lly = g1y + yadd; sprite18_mc.gotoAndStop(483); sprite18_mc._x = g1x; sprite18_mc._y = g1y; sprite18_mc._rotation = g1ba; sprite18_mc.swapDepths(11001); sprite18_mc._alpha = sf; sprite19_mc.gotoAndStop(484); sprite19_mc._x = g1rlx; sprite19_mc._y = g1rly; sprite19_mc._rotation = g1rla; sprite19_mc.swapDepths(11020); sprite19_mc._alpha = sf; sprite20_mc.gotoAndStop(485); sprite20_mc._x = g1llx; sprite20_mc._y = g1lly; sprite20_mc._rotation = g1lla; sprite20_mc.swapDepths(11000); sprite20_mc._alpha = sf; sprite21_mc.gotoAndStop(486); sprite21_mc._x = g1dx; sprite21_mc._y = g1dy; sprite21_mc._rotation = -45 + g1da; sprite21_mc.swapDepths(11050); sprite21_mc._alpha = sf; sprite22_mc.gotoAndStop(487); sprite22_mc._x = g1rax; sprite22_mc._y = g1ray; sprite22_mc._rotation = 45 + g1raa - 3 + zadjx; sprite22_mc.swapDepths(11049); sprite22_mc._alpha = sf; sprite23_mc.gotoAndStop(488); sprite23_mc._x = g1rax; sprite23_mc._y = g1ray; sprite23_mc._rotation = 45 + g1raa - 3 + zadjx; sprite23_mc.swapDepths(11151); sprite23_mc._alpha = sf; sprite24_mc.gotoAndStop(490); sprite24_mc._x = g1lax; sprite24_mc._y = g1lay; sprite24_mc._rotation = 0; sprite24_mc.swapDepths(11014); sprite24_mc._alpha = sf; } function dotwoguys() { speedy = 5; intensity = 120; dintense = 120; fspeed = 10 + intensity / 10; fspeed += speedy; domover(); if (ssay == 42) { tx = -169 + adjx; ty = -141 + adjy; saythisl(398, 60, bub4r, tx, ty); ssay = 43; wait = 70; } else { if (ssay == 43) { if (wait) { --wait; } else { tx = 165 + adjx; ty = -122 + adjy; saythisl(399, 60, bub4l, tx, ty); ssay = 44; wait = 70; } } else { if (ssay == 44) { if (wait) { --wait; } else { mover = 0; moverm = 5; moverd = 100; ssay = 45; } } else { if (ssay == 45) { xoxoxo = -320 * mover / 100; if (mover >= 99) { tx = 117 + adjx; ty = -122 + adjy; saythisl(400, 60, bub4r, tx, ty); ssay = 46; wait = 70; } } else { if (ssay == 46) { if (wait) { --wait; } else { scenestarted = 0; ijenny5(); bukkake = 3; ssay = 47; } } else { if (ssay == 47) { if (bg2alpha > 0) { bg2alpha -= 10; } if (ecummed) { if (epspeed > 5) { epspeed -= 1; } if (ejspeed > 7) { ejspeed -= 1; } if (erpmod > 0.1) { epmod -= 0.05; } } else { if (ejmod < 0.75) { ejmod += 0.05; } } eja += ejspeed * speedadj; ejack = sine(eja) * ejmod; if (ejack > 0) { ejack *= 1 + (76 + zadjx) / 100; } rraa = +(ejack * 3.5); rda = +(ejack * -1.9); rramy = +(ejack * -2.1); if (!eshudder) { epa += rpspeed * speedadj; } if (epa >= 360) { epa -= 360; ++estrokes; if (!ecummed) { ejspeed = 25 + estrokes * (6 + adjx) / 10; if (ejspeed > 50) { ejspeed = 50; } } if (ecummed) { } else { if (ecumming) { epspeed = 10 - esquirts / 2; } else { epspeed = 10 + estrokes * (2 + adjy) / 10; if (epspeed > 20) { epspeed = 20; } } } if (ecummed) { } else { epmod = 0.1 + 0.9 * estrokes / 20; if (epmod > 1) { epmod = 1; } } if (!ecumming && estrokes == 30) { ecumming = 1; esquirtreq = 1; } } if (epa >= 180 && oepa < 180) { if (esquirtreq) { if (esquirts < 5) { ++esquirts; eshudder = 20; startsquirt(1, esquirts); } } } oepa = epa; epump = sine(epa - 90) * epmod; epump += esarch * 0.5; rba = epump * 2.1; rlla = epump * -1.9; rrla = rlla; rxa = epump * -5.8; rraa += epump * 2.6; if (ccummed) { if (cpspeed > 5) { cpspeed -= 1; } if (cjspeed > 7) { cjspeed -= 1; } if (cpmod > 0.1) { cpmod -= 0.05; } } else { if (cjmod < 0.75) { cjmod += 0.05; } } cja += cjspeed * speedadj; cjack = sine(cja) * cjmod; if (cjack > 0) { cjack *= 1 + (76 + zadjx) / 100; } g3raa = +(cjack * 3.5); g3da = +(cjack * -1.9); g3ramy = +(cjack * -2.1); if (!cshudder) { cpa += cpspeed * speedadj; } if (cpa >= 360) { cpa -= 360; ++cstrokes; if (!ccummed) { cjspeed = 26 + cstrokes * (6 + adjx) / 10; if (cjspeed > 52) { cjspeed = 52; } } if (ccummed) { } else { if (ccumming) { cpspeed = 10.5 - csquirts / 2; } else { cpspeed = 10.5 + cstrokes * (2 + adjy) / 10; if (cpspeed > 21) { cpspeed = 21; } } } if (ccummed) { } else { cpmod = 0.1 + 0.9 * cstrokes / 20; if (cpmod > 1) { cpmod = 1; } } if (!ccumming && cstrokes == 30) { ccumming = 1; csquirtreq = 1; } } if (cpa >= 180 && ocpa < 180) { if (csquirtreq) { if (csquirts < 5) { ++csquirts; cshudder = 20; startsquirt(2, csquirts); } } } ocpa = cpa; cpump = sine(cpa - 90) * cpmod; cpump += csarch * 0.5; g3ba = cpump * 2.1; g3lla = cpump * -1.9; g3rla = g3lla; g3xa = cpump * -5.8; g3raa += cpump * 2.6; if (gcummed) { if (gpspeed > 5) { gpspeed -= 1; } if (gjspeed > 7) { gjspeed -= 1; } if (gpmod > 0.1) { gpmod -= 0.05; } } else { if (gjmod < 0.7) { gjmod += 0.05; } } gja += gjspeed * speedadj; gjack = sine(gja) * gjmod; if (gjack > 0) { gjack *= 1 + (76 + zadjx) / 100; } g1raa = +(gjack * 3.5); g1da = +(gjack * -1.9); g1ramy = +(gjack * -2.1); if (!gshudder) { gpa += gpspeed * speedadj; } if (gpa >= 360) { gpa -= 360; ++gstrokes; if (!gcummed) { gjspeed = 27 + gstrokes * (6 + adjx) / 10; if (gjspeed > 542) { gjspeed = 54; } } if (gcummed) { } else { if (gcumming) { gpspeed = 10.5 - gsquirts / 2; } else { gpspeed = 10.5 + gstrokes * (2 + adjy) / 10; if (gpspeed > 21) { gpspeed = 21; } } } if (gcummed) { } else { gpmod = 0.1 + 0.9 * gstrokes / 20; if (gpmod > 1) { gpmod = 1; } } if (!gcumming && gstrokes == 30) { gcumming = 1; gsquirtreq = 1; } } if (gpa >= 180 && ogpa < 180) { if (gsquirtreq) { if (gsquirts < 5) { ++gsquirts; gshudder = 20; startsquirt(3, gsquirts); } } } ogpa = gpa; gpump = sine(gpa - 90) * gpmod; gpump += gsarch * 0.5; g1ba = gpump * 2.1; g1lla = gpump * -1.9; g1rla = g1lla; g1xa = gpump * -5.8; g1raa += gpump * 2.6; } } } } } } } function startsquirt(who, num) { saycum(who, num); num -= 1; i = 0; while (i < 20) { if (sq_stat[i] == 0) { sq_who[i] = who; sq_num[i] = num; if (who == 0) { sq_x[i] = dpx; sq_y[i] = dpy; } else { if (who == 1) { sq_x[i] = edpx; sq_y[i] = edpy; } else { if (who == 2) { sq_x[i] = g3dpx; sq_y[i] = g3dpy; } else { sq_x[i] = g1dpx; sq_y[i] = g1dpy; } } } sqenergy = 6 - rsquirts; if (sqenergy < 2) { sqenergy = 2; } xsqen = [8.699999999999999, 7.5, 6, 4.5, 4, 3, 3, 3]; x1sqen = [8, 7.2, 6.3, 4.7, 4, 3, 3, 3]; x2sqen = [10, 9, 7.5, 7, 9.5, 3, 3, 3]; x3sqen = [-5, -4.6, -3.9, -4.8, -3.5, 3, 3, 3]; ysqen = [-1.8, -1.5, -1.2, -0.9, -0.6, -0.6, 0, 0]; if (who == 3) { sq_xv[i] = x3sqen[num]; } else { if (who == 2) { sq_xv[i] = x2sqen[num]; } else { if (who == 1) { sq_xv[i] = x1sqen[num]; } else { sq_xv[i] = xsqen[num]; } } } sq_ya[i] = ysqen[num]; sq_f[i] = 1; sq_r[i] = 0; sq_stat[i] = 1; sq_fly[i] = 0; return undefined; } ++i; } return 0; } function dosquirts() { i = 0; while (i < 20) { ii = i % 8; w = sq_who[i]; if (sq_stat[i] == 1) { ++sq_fly[i]; sq_x[i] -= sq_xv[i] * speedadj; sq_y[i] += sq_ya[i] * speedadj; landed = sqland(i); if (!landed) { sq_ya[i] += 1 * speedadj; } if (sq_who[i] == 3) { sq_r[i] = sq_ya[i] * 3.4; } else { sq_r[i] = -sq_ya[i] * 3.4; } usqx = sq_x[i]; usqy = sq_y[i]; } else { if (sq_stat[i] == 2) { usqx = sq_x[i] + jbmx; usqy = sq_y[i] + jbmy; if (sq_f[i] < 4) { ++sq_f[i]; if (sq_f[i] >= 4) { sq_f[i] = 30 + ii; sq_r[i] = 0; } } } else { if (sq_stat[i] == 4) { if (sq_f[i] < 4) { sq_f[i] += 2; if (sq_f[i] >= 4) { sq_f[i] = 30 + ii; } } xadd = sine(sq_oa[i] + jlta) * sq_rad[i]; yadd = -cosine(sq_oa[i] + jlta) * sq_rad[i]; sq_x[i] = ltx + xadd; sq_y[i] = lty + yadd; if (sq_f[i] >= 30) { sq_r[i] = jlta; } usqx = sq_x[i]; usqy = sq_y[i]; } else { if (sq_stat[i] == 3) { if (sq_f[i] < 4) { sq_f[i] += 2; if (sq_f[i] >= 4) { sq_f[i] = 30 + ii; } } xadd = sine(sq_oa[i] + jrta) * sq_rad[i]; yadd = -cosine(sq_oa[i] + jrta) * sq_rad[i]; sq_x[i] = rtx + xadd; sq_y[i] = rty + yadd; if (sq_f[i] >= 30) { sq_r[i] = jrta; } usqx = sq_x[i]; usqy = sq_y[i]; } } } } if (sq_stat[i] > 0) { ++sq_fly[i]; _root['sperm' + i + '_mc']._x = usqx; _root['sperm' + i + '_mc']._y = usqy; if (sq_f[i] < 30) { siz = 46 + adjy; _root['sperm' + i + '_mc']._xscale = -siz; _root['sperm' + i + '_mc']._yscale = siz; } else { if (w == 3) { _root['sperm' + i + '_mc']._xscale = -54; } else { _root['sperm' + i + '_mc']._xscale = 54; } _root['sperm' + i + '_mc']._yscale = 54; } _root['sperm' + i + '_mc']._rotation = sq_r[i]; _root['sperm' + i + '_mc']._alpha = 60; _root['sperm' + i + '_mc'].gotoAndStop(sq_f[i]); flydep = [11048, 13048, 12048, 11048]; if (sq_fly[i] <= 6) { idep = flydep[w]; } else { idep = 15100 + i; } _root['sperm' + i + '_mc'].swapDepths(idep); } ++i; } } function sqland(i) { landed = 0; w = sq_who[i]; if (sq_who[i] < 2) { d2lt = finddistance(ltpx, ltpy, sq_x[i], sq_y[i]); d2ltb = finddistance(ltx, lty, sq_x[i], sq_y[i]); d2rt = finddistance(rtpx, rtpy, sq_x[i], sq_y[i]); if (d2lt < 50 && d2ltb > ltprad) { d2p = finddistance(ltx, lty, sq_x[i], sq_y[i]); a2p = rad2deg(-Math.atan2(ltx - sq_x[i], lty - sq_y[i])); a2p -= lta; sq_oa[i] = a2p; sq_rad[i] = d2p; sq_stat[i] = 4; } else { if (d2rt < 50) { d2p = finddistance(rtx, rty, sq_x[i], sq_y[i]); a2p = rad2deg(-Math.atan2(rtx - sq_x[i], rty - sq_y[i])); a2p -= jrta; sq_oa[i] = a2p; sq_rad[i] = d2p; sq_stat[i] = 3; } else { if (sq_y[i] > 440) { landed = 2; sq_stat[i] = landed; } } } return landed; } n = sq_num[i]; if (w == 2) { ay = sq_y[i] - 242; xadjtab = [0, 45, 0, 35, 25]; xxadj = xadjtab[n]; if (sq_x[i] < 200 + ay + xxadj) { landed = 2; sq_stat[i] = landed; } return landed; } ay = sq_y[i] - 242; xadjtab2 = [0, 10, 10, 0, 0]; xxadj = xadjtab2[n]; if (sq_x[i] < 222 + ay + xxadj) { landed = 2; sq_stat[i] = landed; } return landed; } function isquirts() { i = 0; while (i < 20) { sq_stat[i] = 0; _root['sperm' + i + '_mc'].swapDepths(i); ++i; } rsquirts = 0; } function domover() { dx = moverd - mover; if (abs(dx) > 0.25) { if (abs(moverm) < abs(dx / 8)) { mover += moverm; if (dx > 0) { moverm += 0.25; } else { moverm -= 0.25; } } else { if (fast) { mover += dx / 4; } else { mover += dx / 8; } } } } function i12() { level = room1level; hideall(); bg2alpha = 0; ssay = 0; wait = 20; spritefade = 0; youemofade = 0; sf = 0; sfn = 0; sfnn = 0; sfjn = 0; sfjnn = 0; guyhanda = 0; fa = 0; fmod = 1; fspeed = 10; strokes = 0; finalstrokes = 0; permission = 0; dintensity = 0; intensity = 0; moveadd = 0; movereset = 0; shudder = 0; whoa = 0; ppush = 0; pdx = 0; lookup = 0; smile = 0; pull = 0; eda = -37; brieffall = 0; bfadd = 0.1; brafall = 0; holdtit = 0; nudefuck = 0; ta = 0; tremble = 0; tremadd = 0; headup = 0; permission = 0; cumming = 0; shuddadd = 0; shang = 0; shudder = 0; cummed = 0; squirts = 0; squirting = 0; sqstretch = 0; splatoa = [-28, -27, -29, -25, -36, -43, -46, -77]; splatrad = [219, 190, 181, 210, 167, 158, 156, 141]; splatwch = [3, 1, 2, 6, 0, 2, 3, 0]; splatrot = [5, 84, 87, 45, 76, -86, 107, 0]; splaton = [0, 0, 0, 0, 0, 0, 0, 0]; editor = 0; oqadjx = -11111; jenref = 0; e2ha = 0; g3aa = 0; scenestarted = 1; warp = 0; if (room1level == 1) { ssay = 0; wait = 40; if (jenny1done) { wait = 10; ssay = 1; } } else { if (room1level == 3) { ssay = 15; nude = 1; sfjn = 100; sfn = 100; sf = 100; brafall = 400; brieffall = 400; eda = -24; pull = 6; smile = 1; holdtit = 1; nudefuck = 1; guyhanda = 100; ppush = 1; } } if (room1level == 2 && jenny2done) { ssay = 13; eda = -20; jsha = -13; jela = -8; pull = 6; brieffall = 400; brafall = 400; ppush = 1; guyhanda = 100; bg2alpha = 0; spritefade = 0; sf = 100 - spritefade; sfnn = sf; sfjnn = sf; sfnn = 0; sfjnn = 0; sfn = 100; sfjn = 100; pfuck = 0; fuck = 0; warp = 1; wait = 90; } if (room1level == 3 && jenny3done) { cummed = 1; cumming = 1; i = 0; while (i < 8) { splaton[i] = 1; ++i; } jrhx = 443; jrhy = 200.1; chinsplatx = 388.2; chinsplaty = 215; fspeed = 2; squirts = 8; nudefuck = 1; dintensity = 20; intensity = 20; warp = 1; } ChangeTheme(JennyTheme); } function do12() { if (room1level == 4) { dojenny4(); return undefined; } if (room1level == 5) { dojenny5(); return undefined; } if (!scenestarted) { i12(); } dosprites12(); if (room1level == 1) { dojenlev1(); } else { dosay12(); } bg_mc.swapDepths(0); bg2_mc.swapDepths(10000); if (ssay >= 10) { bg_mc.gotoAndStop(66); } else { bg_mc.gotoAndStop(64); } bg2_mc.gotoAndStop(65); bg_mc._x = 320; bg_mc._y = 240; bg_mc._xscale = 100; bg_mc._yscale = 100; bg2_mc._x = 320; bg2_mc._y = 240; bg2_mc._xscale = 100; bg2_mc._yscale = 100; bg_mc._alpha = 100; bg2_mc._alpha = bg2alpha; } function docum() { if (finalstrokes == 2 || finalstrokes == 4 || finalstrokes == 6 || finalstrokes == 8 || finalstrokes == 10 || finalstrokes == 13 || finalstrokes == 16) { shudder = 20; ++squirts; if (fspeed > 20) { --fspeed; } squirting = 1; usquirt = squirts + 4; if (usquirt > 7) { usquirt -= 7; } say('emoan'); if (squirts >= 7) { cummed = 1; fspeed = 2; } } } function cum() { hoa = 48; hrad = 70; xadd = sine(hoa + eda) * hrad; yadd = -cosine(hoa + eda) * hrad; sqx = ecx + xadd; sqy = ecy + yadd; sscale = 60; if (squirting) { if (squirting == 1) { squirtx = sqx; squirty = sqy; sqframe = 0; squirtstop = 0; sqa = eda - 51; sqtoptab = [0, 71, 60, 55, 75, 45, 20, 15, 10, 100, 100]; sqxspdtab = [0, 4, 7, 6, 6, 5, 2, 2, 3.5, 7, 7]; sqyspdtab = [0, 14, 14, 12, 14, 10, 4, 4, 7, 14, 14]; sqytop = squirty - sqtoptab[squirts]; sqxspd = sqxspdtab[squirts]; sqyspd = -sqyspdtab[squirts]; sqstretch = 0; squirting = 2; } else { if (squirting == 2) { sqstretch += 10; squirtx += sqxspd; squirty += sqyspd; if (squirty <= sqytop) { squirting = 3; squity = sqytop; sqstretch = 0; } } else { if (squirting == 3) { ++sqframe; if (sqframe == 4 || squirts > 1) { splaton[squirts - 1] = 1; squirting = 0; if (squirts == 1 && jenref == 0) { jrhx = jhx; jrhy = jhy; chinsplatx = squirtx; chinsplaty = squirty; jenref = 1; } if (testing && squirts >= 7) { finalstrokes = 0; squirts = 0; splaton[0] = 0; splaton[1] = 0; splaton[2] = 0; splaton[3] = 0; splaton[4] = 0; splaton[5] = 0; splaton[6] = 0; delevation = 0; } } } } } } sperm0_mc._x = squirtx; sperm0_mc._y = squirty; sperm0_mc._xscale = sscale + sqstretch; sperm0_mc._yscale = sscale; sperm0_mc._rotation = sqa; if (squirts == 1) { sperm0_mc.gotoAndStop(1 + sqframe); } else { sperm0_mc.gotoAndStop(5 + sqframe); } if (sqframe) { sperm0_mc.swapDepths(11191); } else { sperm0_mc.swapDepths(11114); } if (squirting) { sqalpha = 60; } else { sqalpha = 0; } sperm0_mc._alpha = sqalpha; editor = 0; if (editor && qadjx != oqadjx && qadjx >= 0 && qadjx < 8) { i = qadjx; adjx = splatoa[i]; adjy = splatrad[i]; fadjx = splatwch[i]; fadjy = splatrot[i]; } oqadjx = qadjx; i = 0; while (i < 7) { ii = i + 1; if (editor && qadjx == i) { splatoa[i] = adjx; splatrad[i] = adjy; splatwch[i] = fadjx; splatrot[i] = fadjy; } if (editor) { splaton[i] = 1; } xadd = sine(splatoa[i] + jba) * splatrad[i]; yadd = -cosine(splatoa[i] + jba) * splatrad[i]; splx = jx + xadd; sply = jy + yadd; wch = splatwch[i]; rot = splatrot[i]; if (i == 0) { splx = chinsplatx + jhdx; sply = chinsplaty + jhdy; } _root['sperm' + ii + '_mc']._x = splx; _root['sperm' + ii + '_mc']._y = sply; _root['sperm' + ii + '_mc']._xscale = 60; _root['sperm' + ii + '_mc']._yscale = 30; _root['sperm' + ii + '_mc']._rotation = rot; _root['sperm' + ii + '_mc'].gotoAndStop(10 + wch); _root['sperm' + ii + '_mc'].swapDepths(11292 + i); splalpha = 50; if (splaton[i]) { } else { splalpha = 0; } _root['sperm' + ii + '_mc']._alpha = splalpha; ++i; } } function dosprites12() { if (ssay < 9) { sprite1_mc.gotoAndStop(129); sprite1_mc._x = 315; sprite1_mc._y = 281; sprite1_mc.swapDepths(10900); sprite1_mc._alpha = spritefade; sprite24_mc.gotoAndStop(131); sprite24_mc._x = 501; sprite24_mc._y = 227; sprite24_mc.swapDepths(10901); sprite24_mc._alpha = youemofade; } else { sprite1_mc.gotoAndStop(130); sprite1_mc._x = 435; sprite1_mc._y = 353; sprite1_mc.swapDepths(10900); sprite1_mc._alpha = spritefade; sprite24_mc._alpha = 0; } if (ssay >= 10) { jx = 456; jy = 374; if (nudefuck) { jx += -6; jy += 50; jba = fuck * -2.5; jba += 11; } else { jba = fuck * 0.9; } if (ssay == 13 && pull) { if (pull == 1) { tx = -20; ty = 10; } else { if (pull == 2) { tx = -34; ty = -17; } else { if (pull == 3) { tx = -25; ty = 33; } else { if (pull == 4) { tx = -43; ty = -8; } else { if (pull == 5) { } } } } } if (pull < 6) { ontarget = 0; dx = tx - jsha; if (abs(dx) > 0.5) { jsha += dx / 8; } else { ++ontarget; } dx = ty - jela; if (abs(dx) > 0.5) { jela += dx / 8; } else { ++ontarget; } if (ontarget >= 2) { ++pull; } } } else { if (ssay == 15) { tx = -52; ty = -19; jsha = tx + fuck * -0.6; jela = ty + fuck * -2.2; } else { jsha = 8 + fuck * 4.4; jela = 9 + fuck * 2.4; jsha += ppush * 4.4; } } if (nudefuck) { if (fuck >= 0) { jta = fuck * -3.3; } else { jta = fuck * -8; } } else { jta = pfuck * -4.5; } jba += lookup * 0.3; hoa = 166; hrad = -224; xadd = sine(hoa + jba) * hrad; yadd = -cosine(hoa + jba) * hrad; jhx = jx + xadd; jhy = jy + yadd; jhdx = jhx - jrhx; jhdy = jhy - jrhy; hoa = 122; hrad = -95; xadd = sine(hoa + jba) * hrad; yadd = -cosine(hoa + jba) * hrad; jtx = jx + xadd; jty = jy + yadd; if (!nudefuck) { jtx += -5; jtx += pfuck * -3; jty += pfuck * 0; } else { jtx += pfuck * -4.8; jty += pfuck * 5.4; } hoa = -13; hrad = 145; xadd = sine(hoa + jba) * hrad; yadd = -cosine(hoa + jba) * hrad; jshx = jx + xadd; jshy = jy + yadd; hoa = 173; hrad = 187; xadd = sine(hoa + jsha) * hrad; yadd = -cosine(hoa + jsha) * hrad; jelx = jshx + xadd; jely = jshy + yadd; ex = 286; ey = 274; if (nudefuck) { ex += fuck * -6.5; ey += fuck * 10; } else { ex += fuck * -2.3; ey += fuck * 1.2; } if (level < 3) { ex -= ppush * 24.9; } else { ex -= ppush * 13.9; } if (nudefuck) { if (fuck > 0) { eha = tfuck * 4.3; } else { eha = tfuck * 5; } eha += -6; eca = 20 * (intensity / 100); chestmod = -72 * (intensity / 100); chestmod += 36; eca += tfuck * chestmod / 10; ella = fuck * -2.2; erla = fuck * -2.2; erla += -8; } else { eha = fuck * 6.6; eca = fuck * -2.1; ella = fuck * -2.2; erla = fuck * -2.2; } ella += ppush * -3.7; erla += ppush * 3.5; hoa = 168; hrad = 46; xadd = sine(hoa + eha) * hrad; yadd = -cosine(hoa + eha) * hrad; ellx = ex + xadd; elly = ey + yadd; hoa = 200; hrad = 57; xadd = sine(hoa + eha) * hrad; yadd = -cosine(hoa + eha) * hrad; erlx = ex + xadd; erly = ey + yadd; hoa = -20; hrad = -106; xadd = sine(hoa + eha) * hrad; yadd = -cosine(hoa + eha) * hrad; ecx = ex + xadd; ecy = ey + yadd; if (nudefuck) { eda = -13; eda += pfuck * 6.3; } sprite2_mc.gotoAndStop(138); sprite2_mc._x = jx; sprite2_mc._y = jy; sprite2_mc._rotation = 45 + jba; sprite2_mc.swapDepths(11001); sprite2_mc._alpha = sfjnn; sprite9_mc.gotoAndStop(140); sprite9_mc._x = jx; sprite9_mc._y = jy; sprite9_mc._rotation = 45 + jba; sprite9_mc.swapDepths(11002); sprite9_mc._alpha = sfjn; sprite11_mc.gotoAndStop(142); sprite11_mc._x = jx; sprite11_mc._y = jy + brafall; sprite11_mc._rotation = 45 + jba; sprite11_mc.swapDepths(11175); sprite11_mc._alpha = sfjn; if (smile) { sprite3_mc.gotoAndStop(139); } else { sprite3_mc.gotoAndStop(132); } sprite3_mc._x = jhx; sprite3_mc._y = jhy; sprite3_mc._rotation = 45 + lookup + headup; sprite3_mc.swapDepths(11190); sprite3_mc._alpha = sf; sprite4_mc.gotoAndStop(133); sprite4_mc._x = jshx; sprite4_mc._y = jshy; sprite4_mc._rotation = -45 + jsha; sprite4_mc.swapDepths(11170); sprite4_mc._alpha = sf; if (holdtit) { sprite5_mc.gotoAndStop(143); } else { sprite5_mc.gotoAndStop(134); } sprite5_mc._x = jelx; sprite5_mc._y = jely; sprite5_mc._rotation = -45 + jela; sprite5_mc.swapDepths(11180); sprite5_mc._alpha = sf; sprite6_mc.gotoAndStop(135); sprite6_mc._x = jx; sprite6_mc._y = jy; sprite6_mc._rotation = 0; sprite6_mc.swapDepths(11160); sprite6_mc._alpha = sf; sprite7_mc.gotoAndStop(136); sprite7_mc._x = jtx; sprite7_mc._y = jty; sprite7_mc._rotation = -45 + jta; sprite7_mc.swapDepths(11150); sprite7_mc._alpha = sfjnn; sprite10_mc.gotoAndStop(141); sprite10_mc._x = jtx; sprite10_mc._y = jty; sprite10_mc._rotation = -45 + jta; sprite10_mc.swapDepths(11151); sprite10_mc._alpha = sfjn; sprite8_mc.gotoAndStop(137); sprite8_mc._x = jx; sprite8_mc._y = jy; sprite8_mc._rotation = 0; sprite8_mc.swapDepths(11000); sprite8_mc._alpha = sf; sprite12_mc.gotoAndStop(150); sprite12_mc._x = ex; sprite12_mc._y = ey; sprite12_mc._rotation = -45 + eha; sprite12_mc.swapDepths(11110); sprite12_mc._alpha = sfnn; sprite18_mc.gotoAndStop(155); sprite18_mc._x = ex; sprite18_mc._y = ey; sprite18_mc._rotation = -45 + eha; sprite18_mc.swapDepths(11111); sprite18_mc._alpha = sfn; sprite13_mc.gotoAndStop(151); sprite13_mc._x = ex; sprite13_mc._y = ey; sprite13_mc._rotation = 30 + eca; sprite13_mc.swapDepths(11130); sprite13_mc._alpha = sf; sprite14_mc.gotoAndStop(152); sprite14_mc._x = ex; sprite14_mc._y = ey; sprite14_mc._rotation = -45 + eha; sprite14_mc.swapDepths(11140); sprite14_mc._alpha = sfnn; sprite19_mc.gotoAndStop(156); sprite19_mc._x = ex; sprite19_mc._y = ey + brieffall; sprite19_mc._rotation = -45 + eha; sprite19_mc.swapDepths(11141); sprite19_mc._alpha = sfn; sprite15_mc.gotoAndStop(153); sprite15_mc._x = ellx; sprite15_mc._y = elly; sprite15_mc._rotation = -30 + ella; sprite15_mc.swapDepths(11100); sprite15_mc._alpha = sf; sprite16_mc.gotoAndStop(154); sprite16_mc._x = erlx; sprite16_mc._y = erly; sprite16_mc._rotation = -30 + erla; sprite16_mc.swapDepths(11120); sprite16_mc._alpha = sf; sprite17_mc.gotoAndStop(155); sprite17_mc._x = ex; sprite17_mc._y = ey; sprite17_mc._rotation = 0; sprite17_mc.swapDepths(10007); sprite17_mc._alpha = 0; sprite20_mc.gotoAndStop(157); sprite20_mc._x = ecx; sprite20_mc._y = ecy; sprite20_mc._rotation = -45 + eda; sprite20_mc.swapDepths(11115); sprite20_mc._alpha = sfn; sprite21_mc.gotoAndStop(158); sprite21_mc._x = ecx; sprite21_mc._y = ecy; sprite21_mc._rotation = -45 + eha; sprite21_mc.swapDepths(11116); sprite21_mc._alpha = sfn; e2ha += 2 + 30 * strokes / 100; g3aa += 3 + 23 * strokes / 100; sprite22_mc.gotoAndStop(160); sprite22_mc._x = 120; sprite22_mc._y = 342; sprite22_mc._rotation = -45 + sine(e2ha) * 23 / 10; sprite22_mc.swapDepths(9000); sprite22_mc._alpha = guyhanda; sprite23_mc.gotoAndStop(161); sprite23_mc._x = -41; sprite23_mc._y = 348; sprite23_mc._rotation = -45 + sine(g3aa) * 3 / 10; sprite23_mc.swapDepths(9001); sprite23_mc._alpha = guyhanda; } } function dosay12() { if (ssay == 0) { if (wait) { --wait; } else { hotx = 137; hoty = -205; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); tx = 98; ty = -183; saythisl(352, 70, bub4r, tx, ty); ssay = 1; wait = 80; } } else { if (ssay == 1) { if (wait) { --wait; } else { saythisl(353, 70, bub4r, tx, ty); ssay = 2; wait = 20; } } else { if (ssay == 2) { if (wait) { --wait; } else { hotx = 40; hoty = 31; dx = abs(cmousex - hotx); dy = abs(cmousey - hoty); if (dx < 15 && dy < 15) { saythisl(354, 70, bub4r, tx, ty); ssay = 3; wait = 80; } } } else { if (ssay == 3) { if (youemofade < 100) { youemofade += 20; } if (wait) { --wait; if (wait < 60) { if (spritefade < 100) { spritefade += 5; } } } else { saythisl(355, 70, bub4r, tx, ty); ssay = 4; wait = 80; } } else { if (ssay == 4) { if (wait) { --wait; } else { saythisl(356, 70, bub4r, tx, ty); ssay = 5; wait = 80; } } else { if (ssay == 5) { if (wait) { --wait; } else { saythisl(357, 70, bub4r, tx, ty); ssay = 6; wait = 120; } } else { if (ssay == 6) { if (wait) { --wait; } else { saythisl(358, 70, bub4r, tx, ty); ssay = 7; wait = 80; } } else { if (ssay == 7) { if (wait) { --wait; } else { if (spritefade > 0) { spritefade -= 5; youemofade = spritefade; } if (bg2alpha < 100) { bg2alpha += 5; } else { tx = 161 + adjx; ty = -112 + adjy; saythisl(359, 70, bub4l, tx, ty); ssay = 8; wait = 80; } } } else { if (ssay == 8) { if (wait) { --wait; } else { saythisl(360, 70, bub4l, tx, ty); ssay = 9; wait = 80; } } else { if (ssay == 9) { if (spritefade < 100) { spritefade += 5; } if (wait) { --wait; } else { ssay = 10; } } else { if (ssay == 10) { if (bg2alpha > 0) { bg2alpha -= 5; } if (spritefade > 0) { spritefade -= 5; } sf = 100 - spritefade; sfnn = sf; sfjnn = sf; guyhanda = sfnn; if (whoa) { fspeed -= fspeed / 8; if (fspeed < 0.25) { ssay = 11; saythisl(361, 70, bub4l, 52, -83); wait = 20; ppush = 0; pdx = 0.01; } } else { fspeed = 10 + strokes * 0.4; } rtbx = 209; if (fa < 180) { if (whoa) { movereset = 0; } else { if (fspeed >= 25) { if (mousex != omousex) { movereset = 2; } } else { if (!movereset) { if (mousex < rtbx) { movereset = 1; } } else { if (movereset == 1) { if (mousex > rtbx) { movereset = 2; } } } } } if (movereset >= 2) { dx = fspeed - moveadd; moveadd += dx / 2; } else { if (fspeed > 30) { moveadd -= moveadd / 6; } else { if (fspeed > 20) { moveadd -= moveadd / 6; } else { moveadd -= moveadd / 8; } } } omousex = mousex; } else { dx = fspeed - moveadd; moveadd += dx / 4; if (mousex < rtbx) { movereset = 1; } } umoveadd = moveadd; if (shudder) { fa += 2; } else { fa += umoveadd; } ui = (intensity / 50) * 0.4; fmod = 0.4 + ui; fuck = sine(fa + 45) * fmod; pfuck = fuck; if (pfuck > 0) { pfuck = 0; } if (fa >= 180 && ofa < 180) { movereset = 0; } mon4 = 'spd:' + fspeed + ' strokes:' + strokes; mon5 = 'intensity:' + intensity + ' whoa:' + whoa; depthn = 120; uggfa = fa + 100; depthn = 20; uggfa = fa + 0; if (uggfa >= 360) { uggfa -= 360; } if (whoa) { intensity -= intensity / 8; } else { if (uggfa >= depthn && ouggfa < depthn) { ++strokes; intensity = strokes; if (strokes > 50) { strokes = 50; if (!whoa) { saythisl(361, 70, bub4l, 52, -83); whoa = 1; } } } } ofa = fa; ouggfa = uggfa; if (fa >= 360) { fa -= 360; } } else { if (ssay == 11) { if (ppush < 0.5) { ppush += pdx; pdx += 0.01; } else { dx = 1 - ppush; ppush += dx / 8; } if (ppush > 0.995) { if (wait) { --wait; } else { saythisl(362, 70, bub5, -38, -201); ssay = 12; wait = 30; lookup = 0; } } mon5 = ' ppush:' + ppush; } else { if (ssay == 12) { if (wait) { --wait; } else { dx = 25 - lookup; lookup += dx / 8; smile = 1; if (lookup > 24.8) { ssay = 13; wait = 40; eda = -37; pull = 0; sjsha = jsha; sjela = jela; } } } else { if (ssay == 13) { if (warp) { jsha = -29; jela = -36; } if (wait) { --wait; } else { dx = -lookup; lookup += dx / 8; if (lookup < 25) { if (pull == 0) { pull = 1; } if (pull >= 2) { if (sfn < 100) { sfn += 5; } if (sfnn > 0) { sfnn -= 5; } if (sfn == 100) { dx = -20 - eda; eda += dx / 8; if (brieffall == 0) { bfadd = 0.25; brieffall += bfadd; tx = 66; ty = -83; saythisl(363, 70, bub4l, tx, ty); } else { if (brieffall < 400) { brieffall += bfadd; bfadd += 0.25; } } if (pull >= 4) { if (sfjn < 100) { sfjn += 5; } if (sfjnn > 0) { sfjnn -= 5; } if (sfjn == 100) { if (brafall == 0) { bfadd = 0.25; brafall += bfadd; } else { if (brafall < 400) { brafall += bfadd; bfadd += 0.25; } } } if (pull == 6) { nude = 1; if (goblackslow == 0) { goblackslow = 1; jenny2done = 1; } } } } } } } mon5 = ' pull:' + pull + ' eda:' + eda + ' bfall:' + brieffall + ' ' + bfadd; } else { if (ssay == 14) { } else { if (ssay == 15) { if (permission == 1) { if (debug && buttonpress) { cumming = 1; permission = 0; fspeed = 30; } if (fspeed >= 5) { fspeed -= 1; if (fspeed <= 5) { fspeed = 5; permission = 2; saythisl(364, 70, bub5l, 133, -149); wait = 80; } } } else { if (permission == 2) { if (tremble < 100) { ++tremble; } if (wait) { --wait; } else { saythisl(365, 70, bub5l, 133, -149); wait = 40; permission = 3; adx = 0.25; } } else { if (permission == 3) { if (tremble < 100) { ++tremble; } if (wait) { --wait; } else { dx = 30 - headup; if (dx > 15) { headup += adx; adx += 0.25; } else { if (headup < 30) { headup += dx / 8; } } if (headup >= 29.5) { saythisl(366, 70, bub4r, 14, -83); headup = 30; permission = 4; wait = 80; } } } else { if (permission == 4) { if (wait) { --wait; } else { headup -= headup / 8; if (headup < 0.25) { tspeed = 30; if (fspeed < tspeed) { ++fspeed; } else { cumming = 1; permission = 0; } } } } else { if (cummed) { } else { fspeed = 10 + strokes * 0.2; } } } } } rtbx = 337; if (fa < 180) { if (permission || cumming) { movereset = 2; } else { if (whoa) { movereset = 0; } else { if (fspeed >= 18) { if (mousex != omousex) { movereset = 2; } } else { if (!movereset) { if (mousex < rtbx) { movereset = 1; } } else { if (movereset == 1) { if (mousex > rtbx) { movereset = 2; } } } } } } if (movereset >= 2) { dx = fspeed - moveadd; moveadd += dx / 2; } else { if (fspeed > 30) { moveadd -= moveadd / 6; } else { if (fspeed > 20) { moveadd -= moveadd / 6; } else { moveadd -= moveadd / 8; } } } omousex = mousex; } else { dx = fspeed - moveadd; moveadd += dx / 4; if (mousex < rtbx) { movereset = 1; } } umoveadd = moveadd; if (shudder) { fa += 2; } else { fa += umoveadd; } if (cummed) { ui = (dintensity / 100) * 0.3; } else { ui = (intensity / 100) * 0.3; } fmod = 0.4 + ui; fuck = sine(fa + 45) * fmod; rawfuck = sine(fa); pfuck = fuck; if (pfuck > 0) { pfuck = 0; } if (fa >= 180 && ofa < 180) { movereset = 0; } mon4 = 'spd:' + fspeed + ' strokes:' + strokes; depthn = 120; uggfa = fa + 100; if (uggfa >= 360) { uggfa -= 360; } if (fa >= 230 && ofa < 230) { ++strokes; if (!cummed) { intensity = strokes; } if (strokes > 100) { strokes = 100; if (!permission && !cumming) { permission = 1; } } if (cumming) { ++finalstrokes; docum(); } } ofa = fa; ouggfa = uggfa; if (fa >= 360) { fa -= 360; } if (cummed) { if (dintensity > 10) { dintensity -= 0.5; } else { if (goblackslow == 0) { goblackslow = 1; jenny3done = 2; } } } else { dintensity = intensity; } if (shudder) { shang += 141; sqdeptab = [0, 1, 2, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 2, 1, 0, 0]; shdepth = sqdeptab[shudder]; shuddadd = sine(shang) * (shdepth * 0.02); --shudder; arch = sine(shudder * 9); } else { shuddadd = 0; } ta += 104; tremadd = sine(ta) * (0.04 * (tremble / 100)) * rawfuck; tfuck = fuck + tremadd + shuddadd; mon5 = 'cum:' + cumming + 'fstro:' + finalstrokes + ' shudder:' + shudder + ' sq:' + squirts + ' mu:' + mute + ' talk:' + talking; mon6 = ' dint:' + dintensity; if (debug && buttonpress) { strokes = 99; } } } } } } } } } } } } } } } } } cum(); } function dojenlev1() { if (ssay == 0) { if (wait) { --wait; } else { tx = 98; ty = -183; saythisl(367, 70, bub4r, tx, ty); ssay = 1; wait = 80; } } else { if (ssay == 1) { if (wait) { --wait; } else { tx = 98; ty = -183; saythisl(368, 70, bub4r, tx, ty); ssay = 2; wait = 80; } } else { if (ssay == 2) { if (wait) { --wait; } else { if (!goblack) { goblack = 1; } jenny1done = 1; } } } } } function inavi() { hideall(); bg2alpha = 0; goroom = 0; eclicks = 0; entertime = 0; scenestarted = 1; fmx = 34; fmy = 12; hx = 0; hy = 0; if (masterlevel < 1) { masterlevel = 1; } level = masterlevel; gokat = 0; weba = 100; done4 = 0; done3 = 0; done2 = 0; done1 = 0; if (masterlevel == 1) { if (jenny1done) { jenlev = 1; done1 = 1; } else { jenlev = 0; } if (bath1done) { bathlev = 1; done2 = 1; } else { bathlev = 0; } if (jana1done) { janalev = 1; done3 = 1; } else { janalev = 0; } if (cindy1done) { cindylev = 1; done4 = 1; } else { cindylev = 0; } if (jenny1done && bath1done && jana1done && cindy1done && kat1done) { done4 = 0; done3 = 0; done2 = 0; done1 = 0; masterlevel = 2; } else { if (jenny1done && bath1done && jana1done && cindy1done) { gokat = 1; } } } if (masterlevel == 2) { if (jenny2done) { jenlev = 2; done1 = 2; } else { jenlev = 1; } if (bath2done) { bathlev = 2; done2 = 2; } else { bathlev = 1; } if (jana2done) { janalev = 2; done3 = 2; } else { janalev = 1; } if (cindy2done) { cindylev = 2; done4 = 2; } else { cindylev = 1; } if (jenny2done && bath2done && jana2done && cindy2done && kat2done) { done4 = 0; done3 = 0; done2 = 0; done1 = 0; masterlevel = 3; } else { if (jenny2done && bath2done && jana2done && cindy2done) { gokat = 1; } } } if (masterlevel == 3) { if (jenny3done) { jenlev = 3; done1 = 3; } else { jenlev = 2; } if (bath3done) { bathlev = 3; done2 = 3; } else { bathlev = 2; } if (jana3done) { janalev = 3; done3 = 3; } else { janalev = 2; } if (cindy3done) { cindylev = 3; done4 = 3; } else { cindylev = 2; } if (jenny3done && bath3done && jana3done && cindy3done && kat3done) { done4 = 0; done3 = 0; done2 = 0; done1 = 0; masterlevel = 4; } else { if (jenny3done && bath3done && jana3done && cindy3done) { gokat = 1; } } } if (masterlevel == 4) { if (jenny4done) { jenlev = 4; done1 = 4; } else { jenlev = 3; } if (bath4done) { bathlev = 4; done2 = 4; } else { bathlev = 3; } if (jana4done) { janalev = 4; done3 = 4; } else { janalev = 3; } if (cindy4done) { cindylev = 4; done4 = 4; } else { cindylev = 3; } if (jenny4done && bath4done && jana4done && cindy4done && kat4done) { masterlevel = 5; room1level = masterlevel; scene = 12; hidemouse = 0; scenestarted = 0; unblack = 99; return undefined; } else { if (jenny4done && bath4done && jana4done && cindy4done) { gokat = 1; } } } else { if (masterlevel == 5) { room1level = masterlevel; scene = 12; hidemouse = 0; scenestarted = 0; unblack = 99; return undefined; } } SetXFadeRate(0.5); ChangeTheme(SilentTheme); SetXFadeRate(0.1); lwait = 100; } function donavi() { if (!scenestarted) { inavi(); } if (easter == 3) { doeaster3(); } if (debug || secretunlocked) { if (Key.isDown(49)) { newgame(); masterlevel = 1; scenestarted = 0; } else { if (Key.isDown(50)) { newgame(); masterlevel = 2; scenestarted = 0; jenny1done = 1; jana1done = 1; cindy1done = 1; bath1done = 1; kat1done = 1; } else { if (Key.isDown(51)) { newgame(); masterlevel = 3; scenestarted = 0; jenny1done = 1; jenny2done = 1; jana1done = 1; jana2done = 1; cindy1done = 1; cindy2done = 1; bath1done = 1; bath2done = 1; kat1done = 1; kat2done = 1; } else { if (Key.isDown(52)) { newgame(); masterlevel = 4; scenestarted = 0; jenny1done = 1; jenny2done = 1; jenny3done = 1; jana1done = 1; jana2done = 1; jana3done = 1; cindy1done = 1; cindy2done = 1; cindy3done = 1; bath1done = 1; bath2done = 1; bath3done = 1; kat1done = 1; kat2done = 1; kat3done = 1; } else { if (Key.isDown(53)) { masterlevel = 5; scenestarted = 0; jenny1done = 1; jenny2done = 1; jenny3done = 1; jenny4done = 1; jana1done = 1; jana2done = 1; jana3done = 1; jana4done = 1; cindy1done = 1; cindy2done = 1; cindy3done = 1; cindy4done = 1; bath1done = 1; bath2done = 1; bath3done = 1; bath4done = 1; kat1done = 1; kat2done = 1; kat3done = 1; kat4done = 1; } } } } } } bg_mc.swapDepths(0); bg2_mc.swapDepths(10000); bg_mc.gotoAndStop(68); bg2_mc.gotoAndStop(68); bg_mc._x = 320; bg_mc._y = 240; bg_mc._xscale = 100; bg_mc._yscale = 100; bg2_mc._x = 320; bg2_mc._y = 240; bg2_mc._xscale = 100; bg2_mc._yscale = 100; bg_mc._alpha = 100; bg2_mc._alpha = bg2alpha; beta_mc.swapDepths(20005); beta_mc._x = 599; beta_mc._y = 481; if (easter == 0) { doenterkey(); } if (cmousex < -286 || cmousex > 194 || cmousey < -228 || cmousey > 66) { hidemouse = 0; } else { hidemouse = 1; } if (hidemouse) { hx = cmousex + 286; hy = cmousey + 228; fmx = mousex; fmy = mousey; if (fmx - 320 < -286) { fmx = 34; } if (fmx - 320 > 194) { fmx = 514; } if (fmy - 240 < -228) { fmy = 12; } if (fmy - 240 > 66) { fmy = 306; } fmx = mousex + 33; if (fmx < 0) { fmx = 0; } if (fmx > 486) { fmx = 486; } fmy = mousey + 10; if (fmy < 0) { fmy = 0; } if (fmy > 306) { fmy = 306; } qx = 0; if (fmx >= 276) { qx = 1; } qy = 0; if (fmy >= 163) { qy = 2; } quad = qy + qx; } else { if (cmousex >= 180 && cmousey >= 140) { quad = 4; } else { quad = -1; } } if (quad >= 0) { goroom = quad + 1; } else { goroom = 0; } mon3 = 'fmx:' + mousex + ' ' + mousey + ' quad:' + quad; nhx = fadjx + 519 + hx * 0.1; nhy = fadjy + 410 + hy * 0.1; sprite3_mc.gotoAndStop(308); sprite3_mc._x = nhx; sprite3_mc._y = nhy; sprite3_mc._rotation = 45; sprite3_mc.swapDepths(11000); sprite3_mc._alpha = 100; sprite16_mc.gotoAndStop(310); sprite16_mc._x = nhx; sprite16_mc._y = nhy; sprite16_mc._rotation = 45; sprite16_mc.swapDepths(11001); sprite16_mc._alpha = 100; sprite4_mc.gotoAndStop(309); sprite4_mc._x = fmx; sprite4_mc._y = fmy; sprite4_mc._rotation = 45; sprite4_mc.swapDepths(11029); sprite4_mc._alpha = 100; sprite5_mc.gotoAndStop(307); sprite5_mc._x = 275; sprite5_mc._y = 171; sprite5_mc._rotation = 0; sprite5_mc.swapDepths(11030); sprite5_mc._alpha = 100; sx1 = 155; sy1 = 89; sprite6_mc.gotoAndStop(370 + jenlev); sprite6_mc._x = sx1; sprite6_mc._y = sy1; sprite6_mc._rotation = 0; sprite6_mc.swapDepths(11027); sprite6_mc._alpha = 100; sx2 = 396; sy2 = 89; sprite7_mc.gotoAndStop(375 + bathlev); sprite7_mc._x = sx2; sprite7_mc._y = sy2; sprite7_mc._rotation = 0; sprite7_mc.swapDepths(11026); sprite7_mc._alpha = 100; sx3 = 155; sy3 = 239; sprite8_mc.gotoAndStop(380 + janalev); sprite8_mc._x = sx3; sprite8_mc._y = sy3; sprite8_mc._rotation = 0; sprite8_mc.swapDepths(11025); sprite8_mc._alpha = 100; sx4 = 396; sy4 = 239; sprite9_mc.gotoAndStop(385 + cindylev); sprite9_mc._x = sx4; sprite9_mc._y = sy4; sprite9_mc._rotation = 0; sprite9_mc.swapDepths(11024); sprite9_mc._alpha = 100; cm1x = 261 + adjx; cm1y = 23 + adjy; cm2x = 504 + fadjx; cm2y = 23 + adjy; cm3x = 261 + adjx; cm3y = 177 + fadjy; cm4x = 504 + fadjx; cm4y = 177 + fadjy; sprite10_mc.gotoAndStop(368); sprite10_mc._x = cm1x; sprite10_mc._y = cm1y; sprite10_mc._xscale = 50; sprite10_mc._yscale = 50; sprite10_mc._rotation = 0; sprite10_mc.swapDepths(11124); if (done1) { sprite10_mc._alpha = 100; } else { sprite10_mc._alpha = 0; } sprite11_mc.gotoAndStop(368); sprite11_mc._x = cm2x; sprite11_mc._y = cm2y; sprite11_mc._xscale = 50; sprite11_mc._yscale = 50; sprite11_mc._rotation = 0; sprite11_mc.swapDepths(11125); if (done2) { sprite11_mc._alpha = 100; } else { sprite11_mc._alpha = 0; } sprite12_mc.gotoAndStop(368); sprite12_mc._x = cm3x; sprite12_mc._y = cm3y; sprite12_mc._xscale = 50; sprite12_mc._yscale = 50; sprite12_mc._rotation = 0; sprite12_mc.swapDepths(11126); if (done3) { sprite12_mc._alpha = 100; } else { sprite12_mc._alpha = 0; } sprite13_mc.gotoAndStop(368); sprite13_mc._x = cm4x; sprite13_mc._y = cm4y; sprite13_mc._xscale = 50; sprite13_mc._yscale = 50; sprite13_mc._rotation = 0; sprite13_mc.swapDepths(11127); if (done4) { sprite13_mc._alpha = 100; } else { sprite13_mc._alpha = 0; } if (goroom && buttonpress && butrel && easter == 0) { SetXFadeRate(0.1); butrel = 0; if (debug && Key.isDown(75)) { gokat = 1; } if (goroom == 1) { JennyTheme.StartPos = 7.7; room1level = masterlevel; scene = 12; hidemouse = 0; scenestarted = 0; unblack = 99; } else { if (goroom == 2) { room2level = masterlevel; scene = 8; hidemouse = 0; scenestarted = 0; unblack = 99; } else { if (goroom == 3) { room3level = masterlevel; scene = 9; hidemouse = 0; scenestarted = 0; unblack = 99; } else { if (goroom == 4) { room4level = masterlevel; scene = 10; hidemouse = 0; scenestarted = 0; unblack = 99; } else { if (goroom == 5 && gokat) { room5level = masterlevel; scene = 11; hidemouse = 0; scenestarted = 0; unblack = 99; } } } } } } webmasters_mc.swapDepths(20005); webmasters_mc._x = 280; webmasters_mc._y = 163; webmasters_mc._alpha = 100; webmasters_mc.gotoAndStop(7); webmasters_mc.txt.text = 'Level: ' + masterlevel; if (goroom) { mon5 = ' go room:' + goroom; } else { mon5 = ''; } if (masterlevel == 1) { mon6 = ' Level:' + masterlevel + ' jen:' + jenny1done + ' bath:' + bath1done + ' jana:' + jana1done + ' cin:' + cindy1done + ' kat:' + kat1done; } else { if (masterlevel == 2) { mon6 = ' Level:' + masterlevel + ' jen:' + jenny2done + ' bath:' + bath2done + ' jana:' + jana2done + ' cin:' + cindy2done + ' kat:' + kat2done; } else { if (masterlevel == 3) { mon6 = ' Level:' + masterlevel + ' jen:' + jenny3done + ' bath:' + bath3done + ' jana:' + jana3done + ' cin:' + cindy3done + ' kat:' + kat3done; } else { if (masterlevel == 4) { mon6 = ' Level:' + masterlevel + ' jen:' + jenny4done + ' bath:' + bath4done + ' jana:' + jana4done + ' cin:' + cindy4done + ' kat:' + kat4done; } else { if (masterlevel == 5) { mon6 = ' Level:' + masterlevel + ' jen:' + jenny5done + ' bath:' + bath5done + ' jana:' + jana5done + ' cin:' + cindy5done + ' kat:' + kat5done; } } } } } } function doeaster3() { mon4 = 'easter:' + easter + ' ' + eggphase + ' 3a:' + bg3a + ' ' + bg4a; if (!easter3started) { wait = 40; eggphase = 0; bg4a = 0; bg3a = 0; easter3started = 1; butrel = 0; } if (eggphase == 0) { if (bg4a < 100) { bg4a += 10; } else { if (buttonpress && butrel) { eggphase = 8; butrel = 0; } } } else { if (eggphase == 8) { if (bg4a > 0) { bg4a -= 10; } else { eclicks = 0; entertime = 0; easter = 0; easter3started = 0; } } } sprite24_mc.swapDepths(11028); sprite24_mc.gotoAndStop(501); sprite24_mc._x = 287 + fadjx; sprite24_mc._y = 160 + fadjy; sprite24_mc._alpha = bg4a; } function doenterkey() { hotx = -16; hoty = 186; dx = cmousex - hotx; dy = cmousey - hoty; mon4 = 'enter dxy:' + dx + ' ' + dy + ' et:' + entertime + ' ec:' + eclicks + ' br:' + butrel; if (abs(dx) < 8 && abs(dy) < 8 && butrel && buttonpress) { butrel = 0; if (eclicks == 0) { entertime = 40; } ++eclicks; if (eclicks >= 3) { easter = 3; } } else { if (entertime) { --entertime; if (entertime <= 0) { entertime = 0; eclicks = 0; } } } } function icredits() { newsbit = -1; newswait = 0; newsfade = 2; nalpha = 5; hideall(); bg2alpha = 0; dimmer = 0; scenestarted = 1; weba = 0; if (language == 5) { webmasters_mc.gotoAndStop(8); webmasters_mc.txt.text = credits_text_Russian[0]; } else { webmasters_mc.gotoAndStop(6); webmasters_mc.txt.text = credits_text_English[0]; } webmasters_mc.swapDepths(26431); wchcred = 0; rolls = 1; startframe = 0; hidemouse = 0; wait = 60; fadeio = 1; ChangeTheme(Theme1); } function docredits() { if (!scenestarted) { icredits(); } if (weba < 100 && fadeio) { ++weba; } donews(); if (dimmer < 45) { ++dimmer; if (dimmer == 45) { wait = 100; } } if (fadeio > 0) { ++weba; if (weba >= 100) { weba = 100; fadeio = 0; } } else { if (wait) { --wait; if (wait == 0) { fadeio = -1; } } else { if (fadeio < 0) { weba -= 10; if (weba <= 0) { fadeio = 1; ++wch_cred; if (wch_cred >= credits_text_English.length) { wch_cred = 0; ++rolls; } wait = 100; if (language == 5) { webmasters_mc.txt.text = credits_text_Russian[wch_cred]; } else { if (language == 4) { webmasters_mc.txt.text = credits_text_Spanish[wch_cred]; } else { if (language == 3) { webmasters_mc.txt.text = credits_text_Italian[wch_cred]; } else { if (language == 2) { webmasters_mc.txt.text = credits_text_French[wch_cred]; } else { if (language == 1) { webmasters_mc.txt.text = credits_text_German[wch_cred]; } else { webmasters_mc.txt.text = credits_text_English[wch_cred]; } } } } } } } } } webmasters_mc._x = 320; webmasters_mc._y = 240; webmasters_mc._alpha = weba; if (rolls < 2) { startbutton_mc._x = -10000; } else { startbutton_mc._x = 320; } startbutton_mc._y = 449 + adjy; startbutton_mc.swapDepths(27009); startbutton_mc.gotoAndStop(startframe); sheet_mc._alpha = dimmer; sheet_mc.swapDepths(26000); bg_mc.swapDepths(0); bg2_mc.swapDepths(10000); bg_mc.gotoAndStop(68); bg2_mc.gotoAndStop(68); bg_mc._x = 320; bg_mc._y = 240; bg_mc._xscale = 100; bg_mc._yscale = 100; bg2_mc._x = 320; bg2_mc._y = 240; bg2_mc._xscale = 100; bg2_mc._yscale = 100; bg_mc._alpha = 100; bg2_mc._alpha = bg2alpha; beta_mc.swapDepths(20005); beta_mc._x = 599; beta_mc._y = 481; nhx = fadjx + 519; nhy = fadjy + 410; sprite3_mc.gotoAndStop(308); sprite3_mc._x = nhx; sprite3_mc._y = nhy; sprite3_mc._rotation = 45; sprite3_mc.swapDepths(11000); sprite3_mc._alpha = 100; sprite16_mc._alpha = 0; sprite4_mc.gotoAndStop(309); sprite4_mc._x = fmx; sprite4_mc._y = fmy; sprite4_mc._rotation = 45; sprite4_mc.swapDepths(11028); sprite4_mc._alpha = 100; sprite5_mc.gotoAndStop(307); sprite5_mc._x = 275; sprite5_mc._y = 171; sprite5_mc._rotation = 0; sprite5_mc.swapDepths(11029); sprite5_mc._alpha = 100; sx1 = 155; sy1 = 89; sprite6_mc.gotoAndStop(370 + jenlev); sprite6_mc._x = sx1; sprite6_mc._y = sy1; sprite6_mc._rotation = 0; sprite6_mc.swapDepths(11027); sprite6_mc._alpha = 100; sx2 = 396; sy2 = 89; sprite7_mc.gotoAndStop(375 + bathlev); sprite7_mc._x = sx2; sprite7_mc._y = sy2; sprite7_mc._rotation = 0; sprite7_mc.swapDepths(11026); sprite7_mc._alpha = 100; sx3 = 155; sy3 = 239; sprite8_mc.gotoAndStop(380 + janalev); sprite8_mc._x = sx3; sprite8_mc._y = sy3; sprite8_mc._rotation = 0; sprite8_mc.swapDepths(11025); sprite8_mc._alpha = 100; sx4 = 396; sy4 = 239; sprite9_mc.gotoAndStop(385 + cindylev); sprite9_mc._x = sx4; sprite9_mc._y = sy4; sprite9_mc._rotation = 0; sprite9_mc.swapDepths(11024); sprite9_mc._alpha = 100; } function donews() { mon4 = ' fade:' + newsfade + ' nb:' + newsbit + ' ' + news_text_English.length + ' weba:' + weba + ' fio:' + fadeio; if (newsfade == 1) { if (nalpha < 100) { nalpha += 5; if (nalpha >= 100) { newsfade = 0; } } news_mc._alpha = nalpha; } else { if (newsfade == 2) { if (nalpha > 0) { nalpha -= 5; news_mc._alpha = nalpha; if (nalpha <= 0) { ++newsbit; if (newsbit >= news_text_English.length) { newsbit = 0; } news_mc.gotoAndStop(1); if (language == 5) { news_mc.txt.text = news_text_Russian[newsbit]; } else { if (language == 4) { news_mc.txt.text = news_text_Spanish[newsbit]; } else { if (language == 3) { news_mc.txt.text = news_text_Italian[newsbit]; } else { if (language == 2) { news_mc.txt.text = news_text_French[newsbit]; } else { if (language == 1) { news_mc.txt.text = news_text_German[newsbit]; } else { news_mc.txt.text = news_text_English[newsbit]; } } } } } if (news_text_English[newsbit].length < 5) { newswait = 20; } else { newswait = 60; } newsfade = 1; } } } else { --newswait; if (newswait <= 0) { newsfade = 2; } } } news_mc._x = 320 + adjx; news_mc._y = 374 + adjy; news_mc._rotation = 0; news_mc.swapDepths(26433); } function initsound() { InitSound(); SetXFadeRate(0.01); Theme1 = new Object(); Theme2 = new Object(); JennyTheme = new Object(); CindyTheme = new Object(); JanaTheme = new Object(); SilentTheme = new Object(); TinaTheme = new Object(); Theme1.Sequenced = true; Theme1.LoopSets = [[[{'Name': 'BassDrum1', 'Bars': 1}, {'Name': 'BassDrum2', 'Bars': 1}], [{'Name': 'Drums1', 'Bars': 1}, {'Name': 'Drums2', 'Bars': 1}], [{'Name': 'Rythm1', 'Bars': 4}, {'Name': 'Rythm2', 'Bars': 4}, {'Name': 'Rythm3', 'Bars': 4}, {'Name': 'Rythm4', 'Bars': 2}, {'Name': 'Melody1', 'Bars': 6}], []], [[{'Name': 'BassDrum3', 'Bars': 1}, {'Name': 'BassDrum4', 'Bars': 2}, {'Name': 'BassDrum2', 'Bars': 1}], [{'Name': 'Drums3', 'Bars': 1}, {'Name': 'Drums4', 'Bars': 1}, {'Name': 'Drums1', 'Bars': 1}, {'Name': 'Drums2', 'Bars': 1}, {'Name': 'Drums5', 'Bars': 1}], [{'Name': 'Rythm2', 'Bars': 4}, {'Name': 'Rythm3', 'Bars': 4}], [{'Name': 'Rythm1', 'Bars': 4}, {'Name': 'Rythm4', 'Bars': 2}]]]; Theme1.Sequence = [{'LoopSet': 0, 'ch': [{'num': 0, 'vol': 0}, {'num': -1, 'vol': 0}, {'num': -1, 'vol': 0}, {}], 'fx': [1, 1, 1, 1]}, {'LoopSet': 1, 'ch': [{'num': -1, 'vol': 100}, {'num': -1, 'vol': 0}, {'num': 0, 'vol': 100}, {}], 'fx': [0, 1, 0, 0]}, {'LoopSet': 1, 'ch': [{}, {'num': -1, 'vol': 100}, {'num': -1}, {'num': -1}], 'fx': [0, 0, 1, 2]}, {'LoopSet': 1, 'ch': [{'num': -1}, {'num': -1}, {'num': -1}, {'num': -1}], 'fx': [0, -1, -1, 1]}, {'LoopSet': 0, 'ch': [{'num': -1, 'vol': 100}, {'num': -1, 'vol': 100}, {'num': -1, 'vol': 80}, {}], 'fx': [0, 0, 0, 0]}, {'LoopSet': 1, 'ch': [{'num': -1}, {'num': -1}, {'num': -1}, {}], 'fx': [-1, 0, -1, 0]}]; Theme1.Loops = 99; Theme2.Sequenced = false; Theme2.Name = 'jil.mp3'; Theme2.Channel = 4; Theme2.Loops = 1; JennyTheme.Sequenced = false; JennyTheme.Name = 'jenny.wav'; JennyTheme.Channel = 4; JennyTheme.Loops = 99; JennyTheme.StartPos = 7.7; CindyTheme.Sequenced = false; CindyTheme.Name = 'cindy.wav'; CindyTheme.Channel = 4; CindyTheme.Loops = 99; JanaTheme.Sequenced = false; JanaTheme.Name = 'Jana-Brad_theme.mp3'; JanaTheme.Channel = 4; JanaTheme.Loops = 99; SilentTheme.Sequenced = false; SilentTheme.Name = 'EmptyBar'; SilentTheme.Channel = 3; SilentTheme.Loops = 99; TinaTheme.Sequenced = false; TinaTheme.Name = 'Tina-Sarah_theme_1lo.mp3'; TinaTheme.Channel = 4; TinaTheme.Loops = 99; soundstarted = 1; } function rand(low, high) { range = high - low; t = Math.floor(Math.random() * range) + low; return t; } function hallloop() { stoplooping = 0; what = 'hall2.wav'; SetChannelVolume(6, loopvol); PlaySound(what, 6, 0, 100); } function crowdloop() { stoplooping = 0; what = 'crowd.mp3'; SetChannelVolume(6, loopvol); PlaySound(what, 6, 0, 100); } function showerloop() { stoplooping = 0; SetChannelVolume(6, loopvol); what = 'shower.mp3'; PlaySound(what, 6, 0, 100); } function stoploop() { stoplooping = 1; Seq.AMixer.StopSound([6]); } function yell() { what = yells[wchyell]; sayfile(what, 20); ++wchyell; if (wchyell > 2) { wchyell = 0; } } function sayfile(what, sfvol) { if (sfvol == undefined) { } else { Seq.AMixer.SetChannelVolume(7, sfvol); } talking = Seq.AMixer.Channels[7].SoundObj.isPlaying; if (!talking) { PlaySound(what, 7, 0, 1); if (noisy) { if (sfvol == undefined) { trace('Say1: ' + what); } else { trace('Say1: ' + what + ' ' + floor(sfvol)); } } } } function sayvol(vol) { if (noisy) { trace('vol1: ' + vol); } Seq.AMixer.SetChannelVolume(7, vol); } function sayfile2(what, sf2vol) { if (sf2vol == undefined) { } else { Seq.AMixer.SetChannelVolume(6, sf2vol); } talking = Seq.AMixer.Channels[6].SoundObj.isPlaying; if (!talking) { PlaySound(what, 6, 0, 1); if (noisy) { if (sf2vol == undefined) { trace('Say2: ' + what); } else { trace('Say2: ' + what + ' ' + floor(sf2vol)); } } } } function sayvol2(vol) { if (noisy) { trace('vol2: ' + vol); } Seq.AMixer.SetChannelVolume(6, vol); } function say(what) { talking = Seq.AMixer.Channels[7].SoundObj.isPlaying; if (what == 'emoan') { if (talking) { return undefined; } yessnd = 'emoan' + squirts + '.mp3'; sayfile(yessnd); sayvol(50); } if (what == 'ow') { if (talking) { return undefined; } ++ow; t = (ow & 3) + 1; yessnd = 'ow' + t + '.wav'; sayfile(yessnd, 50); } if (what == 'joh') { ++coh; cohr = coh + rand(0, 3); t = (cohr & 3) + 1; yessnd = 'coh' + t + '.mp3'; sayfile(yessnd, 100); } if (what == 'coh') { if (talking) { return undefined; } ++coh; t = (coh & 3) + 1; yessnd = 'coh' + t + '.mp3'; sayfile(yessnd, 100); } if (what == 'nnhvib') { if (talking) { return undefined; } ++nnh; if (level >= 1) { t = rand(1, 3); nnh += t; if (nnh > 7) { nnh -= 8; } } else { ++nnh; } t = (nnh & 7) + 1; yessnd = 'nnh' + t + '.mp3'; sayfile(yessnd, 100); talking = 1; } if (what == 'nnh') { if (talking) { return undefined; } ++nnh; t = rand(1, 8); if (t < 5) { yessnd = 'snnh' + t + '.wav'; } else { yessnd = 'nnh' + (t - 4) + '.mp3'; } sayfile(yessnd, 100); talking = 1; } if (what == 'suck') { suka = rand(1, 3); ++sucks; if (sucks > 3) { sucks = 0; } usucks = sucks + suka; if (usucks > 3) { usucks -= 4; } yessnd = 'suck' + (usucks + 1) + '.wav'; if (usucks == 0) { suckvol = 20; } else { if (usucks == 1) { suckvol = 10; } else { if (usucks == 2) { suckvol = 5; } else { suckvol = 10; } } } sayfile2(yessnd, suckvol); } if (what == 'huff') { hufa = rand(1, 4); uhuff = huffs + hufa; if (uhuff > 9) { uhuff -= 10; } if (uhuff == lasthuff) { --uhuff; if (uhuff < 0) { uhuff = 9; } } yessnd = 'u' + uhuff + '.wav'; sayfile(yessnd, huffvol); lasthuff = uhuff; ++huffs; if (huffs > 9) { huffs = 0; } } if (what == 'huff2') { hufa = rand(1, 4); uhuff = huffs + hufa; if (uhuff > 9) { uhuff -= 10; } if (uhuff == lasthuff) { --uhuff; if (uhuff < 0) { uhuff = 9; } } yessnd = 'u' + uhuff + '.wav'; sayfile2(yessnd, huffvol); lasthuff = uhuff; ++huffs; if (huffs > 9) { huffs = 0; } } if (what == 'muhh') { if (talking) { return undefined; } if (muhhs == 0) { i = 1; while (i < 11) { muhhdone[i] = 0; ++i; } muhhs = 10; } muhh = rand(1, 10); if (muhhdone[uhh] == 1) { muhh = rand(1, 10); } if (muhhdone[muhh] == 1) { muhh = rand(1, 10); } if (uhhdone[muhh] == 1) { muhh = rand(1, 10); } if (muhhdone[muhh] == 1) { i = 1; while (i < 11) { if (muhhdone[i] == 0) { muhh = i; i == 11; break; } ++i; } } muhhdone[muhh] = 1; --muhhs; yessnd = 'muhh' + muhh + '.wav'; lastmuhh = muhh; sayfile(yessnd, 5); } if (what == 'moan') { if (moans == 0) { i = 1; while (i < 11) { moandone[i] = 0; ++i; } moans = 10; } moan = rand(1, 10); if (moandone[moan] == 1) { moan = rand(1, 10); } if (moandone[moan] == 1) { moan = rand(1, 10); } if (moandone[moan] == 1) { moan = rand(1, 10); } if (moandone[moan] == 1) { i = 1; while (i < 11) { if (moandone[i] == 0) { moan = i; i == 11; break; } ++i; } } moandone[moan] = 1; --moans; yessnd = 'Moaning' + moan + '.wav'; lastmoan = moan; sayfile2(yessnd, moanvol); } if (what == 'gasp') { g = rand(1, 4); nosnd = 'gasp' + g + '.mp3'; sayfile(nosnd, 10); } if (what == 'slap') { wchslap = floor(rand(1, 4)); mmmsnd = 'slap' + wchslap + '.wav'; slapvol = intensity * 0.25; sayfile(mmmsnd, slapvol); } if (what == 'mslap') { wchslap = floor(rand(1, 4)); mmmsnd = 'slap' + wchslap + '.wav'; slapvol = 10 + intensity * 0.5; sayfile(mmmsnd, slapvol); } if (what == 'squish') { if (scene == 10) { squishvol = 20 + intensity / 7; } else { squishvol = 10 + intensity / 7; } sayfile('squish.wav', squishvol); } if (what == 'ooo') { wchooo = floor(rand(1, 4)); mmmsnd = 'ooo' + wchooo + '.wav'; sayfile(mmmsnd, 30); } } function saycum(cumwho, csquirt) { if (csquirt >= 5) { csquirt -= 5; } if (cumwho == 0 || cumwho == 3) { yessnd = 'mcum' + (csquirt + 1) + '.mp3'; } else { if (cumwho == 1) { yessnd = 'morg' + (csquirt + 1) + '.wav'; } else { yessnd = 'mlove' + (csquirt + 3) + '.wav'; } } sayfile(yessnd, 30); } function doloopmusic() { force = 0; if (ssay == 120 && scene == 11) { if (amusicvol > 0) { amusicvol -= amusicvol / 4; if (amusicvol < 1) { amusicvol = 0; } tmusicvol = amusicvol; force = 1; screen = omscreen; mute = omute; } } if (screen != omscreen) { musicmaxvol = music_max[screen]; if (nomute) { amusicvol = musicmaxvol; tmusicvol = amusicvol; } else { if (mute == 3) { tmusicvol = musicmaxvol; amusicvol = tmusicvol; } else { if (mute == 2) { tmusicvol = musicmaxvol / 3; amusicvol = tmusicvol; } else { if (mute == 1) { tmusicvol = 5; amusicvol = 5; } else { tmusicvol = 0; amusicvol = 0; } } } } omscreen = screen; force = 1; } if (mute != omute) { musicmaxvol = music_max[screen]; if (mute == 3) { tmusicvol = musicmaxvol; amusicvol = tmusicvol; } else { if (mute == 2) { tmusicvol = musicmaxvol / 3; amusicvol = tmusicvol; } else { if (mute == 1) { tmusicvol = 5; amusicvol = 5; } else { tmusicvol = 0; amusicvol = 0; } } } SetChannelGlobalVolume(0, amusicvol); SetChannelGlobalVolume(1, amusicvol); SetChannelGlobalVolume(2, amusicvol); SetChannelGlobalVolume(3, amusicvol); SetChannelGlobalVolume(4, amusicvol); omute = mute; force = 1; } mon6 = 'music:' + mute + ' am:' + floor(amusicvol) + ' tm:' + floor(tmusicvol); if (amusicvol != tmusicvol || force) { if (tmusicvol > amusicvol) { dx = ttmusicvol - amusicvol; if (dx < 0.5) { amusicvol += dx / 8; } else { amusicvol = tmusicvol; } } else { dx = tmusicvol - amusicvol; if (abs(dx) > 0.125) { amusicvol += dx / 32; } else { amusicvol = tmusicvol; } } SetChannelGlobalVolume(0, amusicvol); SetChannelGlobalVolume(1, amusicvol); SetChannelGlobalVolume(2, amusicvol); SetChannelGlobalVolume(3, amusicvol); SetChannelGlobalVolume(4, amusicvol); } } part1 = 0; teaser = 0; teasecount = 0; langver = _root.langver; if (langver != undefined) { language = langver; } else { language = 0; } version1 = '2.03 Beta'; version2 = '2.03 Beta'; debug = 0; testbubble = -1; beta_mc.gotoAndStop(1); if (teaser) { beta_mc.txt.text = 'teaser version'; } else { if (part1) { beta_mc.txt.text = '\rVersion:' + version1 + ' '; } else { beta_mc.txt.text = '\rVersion:' + version2 + ' '; } } pop_mc.gotoAndStop(10); Stage.showMenu = false; ssay = 0; masterlevel = 0; room1level = 0; room2level = 0; room3level = 0; room4level = 0; room5level = 0; scenes = 7; if (part1) { scene = 0; level = 0; if (testbubble >= 0) { hideall(); bg_mc.gotoAndStop(1); bg2_mc.gotoAndStop(1); } } else { level = 0; scene = 7; } phase = 0; goscene = 0; scenestarted = 0; time = 0; framerate = 20; pusooypop = 0; showpop = 0; unblack = 99; gowhiteslow = 0; goblackslow = 0; goblack = 0; pausing = 0; pauserel = 0; delay = 0; slomo = 0; walk = 1; wait = 0; games = 0; noisy = 0; secretunlocked = 0; highestscene = 0; keyseq = 0; fadjy = 0; fadjx = 0; adjy = 0; adjx = 0; qadjy = 0; qadjx = 0; zadjy = 0; zadjx = 0; wadjy = 0; wadjx = 0; sheet_mc._x = -10000; hideall(); bubble_mc.gotoAndStop(1); arrow_mc.gotoAndStop(1); gamesave = SharedObject.getLocal('trainsave'); if (gamesave.data.scene != undefined) { oldscene = gamesave.data.scene; if (gamesave.data.phase != undefined) { oldphase = gamesave.data.phase; } else { oldphase = 0; } } else { oldscene = -1; oldphase = 0; } butrel = 0; _root.createEmptyMovieClip('mousebutton', 1); _root.onMouseDown = function () { buttonpress = 1; }; _root.onMouseUp = function () { buttonpress = 0; butrel = 1; }; hidemouse = 0; mousemove = 0; _root.onMouseMove = function () { mousemove = 15; if (mousex < 20 || mousex > 620 || mousey < 12 || mousey > 460) { Mouse.show(); } else { if (hidemouse) { Mouse.hide(); } else { Mouse.show(); } } }; bg_mc.gotoAndStop(1); newgame(); _root.onEnterFrame = function () { ++time; blinker = time & 8; mousex = _root._xmouse; mousey = _root._ymouse; if (!soundstarted) { initsound(); } if (scene > highestscene) { highestscene = scene; gamesave.data.scene = scene; gamesave.data.phase = phase; } dokeys(); if (pausing) { if (amusicvol > 0) { amusicvol = 0; SetChannelGlobalVolume(0, amusicvol); SetChannelGlobalVolume(1, amusicvol); SetChannelGlobalVolume(2, amusicvol); SetChannelGlobalVolume(3, amusicvol); SetChannelGlobalVolume(4, amusicvol); } doshowpause(); if (Key.isDown(32) & pauserel) { pausing = 0; pauserel = 0; slomo = 0; flag1_mc.gotoAndStop(10); flag2_mc.gotoAndStop(10); flag3_mc.gotoAndStop(10); flag4_mc.gotoAndStop(10); flag5_mc.gotoAndStop(10); flag6_mc.gotoAndStop(10); pop_mc.gotoAndStop(10); flag6_mc._x = -10000; flag5_mc._x = -10000; flag4_mc._x = -10000; flag3_mc._x = -10000; flag2_mc._x = -10000; flag1_mc._x = -10000; pop_mc._x = -10000; } } else { if (Key.isDown(32) & pauserel) { pausing = 1; pauserel = 0; slomo = 0; } else { if (testbubble >= 0) { dotestbubbles(); } else { if (debug && Key.isDown(86) || slomo) { ++delay; if (delay >= 25) { delay = 0; doscene(); dobubble(); dofade(); if (highestscene || secretunlocked) { doscenebar(); } dopop(); } } else { if (teaser && scene > 1) { ++teasecount; if (teasecount > 200 && !goblackslow) { goblackslow = 1; } else { if (teasecount > 100) { } } } doscene(); if (!part1) { doloopmusic(); } dobubble(); dofade(); dolives(); if (highestscene || secretunlocked) { doscenebar(); } dopop(); } } } } if (!Key.isDown(32)) { pauserel = 1; } cmousex = mousex - 320; cmousey = mousey - 240; mon0 = 'mx:' + cmousex + ' my:' + cmousey + ' phase:' + phase + ' scene:' + scene + ' say:' + ssay + ' level:' + masterlevel + ' ' + language; domon(); }; mon7 = ''; mon6 = ''; mon5 = ''; mon4 = ''; mon3 = ''; mon2 = ''; mon1 = ''; var mon0 = ''; var PI = Math.PI; speakdelay = 0; speaking = 0; platex = -10000; platey = 422; bubbly = 0; bubblex = 0; bub4l = 12; bub4r = 13; bub5l = 20; bub5r = 21; bub5lw = 22; bub5rw = 23; bub6l = 22; bub6r = 23; b4l = 12; b4r = 13; bub3r = 3; bub3l = 4; bub2l = 11; bub2r = 10; bub5 = 5; bub6 = 6; bub18 = 18; showpoptype = 2; plinkrel == 0; arrowcolor = 0; arrowcursor = 0; arrowangle = 0; attacharrow = 0; arrowy = 0; arrowx = 0; beta_mc.onEnterFrame = function () { if (this.hitTest(_root._xmouse, _root._ymouse, true)) { onbeta = 1; } else { onbeta = 0; betarel = 1; } }; platealpha = 0; platedelay = 0; beta_mc.onEnterFrame = function () { if (this.hitTest(_root._xmouse, _root._ymouse, true)) { onbeta = 1; if (!teaser) { beta_mc.gotoAndStop(2); } else { beta_mc.gotoAndStop(3); } } else { if (onbeta) { beta_mc.gotoAndStop(1); if (teaser) { beta_mc.txt.text = 'teaser version'; } else { if (part1) { beta_mc.txt.text = '\rVersion:' + version1 + ' '; } else { beta_mc.txt.text = '\rVersion:' + version2 + ' '; } } } onbeta = 0; betarel = 1; } }; webmasters_mc.onEnterFrame = function () { if (scene == 13 || scene == 14) { } else { if (teaser) { if (teasecount >= 100) { webmasters_mc._x = 320; webmasters_mc._y = 240; if (webmasters_mc._alpha < 100) { webmasters_mc._alpha += 2; } webmasters_mc.gotoAndStop(3); webmasters_mc.swapDepths(26431); } } else { if (part1) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && !teaser) { webmasters_mc.gotoAndStop(2); } else { webmasters_mc.gotoAndStop(1); } } else { webmasters_mc.gotoAndStop(5); } } } }; music_mc.onEnterFrame = function () { if (this.hitTest(_root._xmouse, _root._ymouse, true) && !teaser && !nomute) { music2_mc.gotoAndStop(10); if (mousex >= 96) { music2_mc._x = 96 + fadjy; if (buttonpress) { mute = 3; } } else { if (mousex >= 64) { music2_mc._x = 70 + fadjx; if (buttonpress) { mute = 2; } } else { if (mousex >= 32) { music2_mc._x = 39 + adjy; if (buttonpress) { mute = 1; } } else { music2_mc._x = 6 + adjx; if (buttonpress) { mute = 0; } } } } music_mc.gotoAndStop(2 + mute); } else { music_mc.gotoAndStop(1); music2_mc.gotoAndStop(6); } }; startbutton_mc.onEnterFrame = function () { h = this.hitTest(_root._xmouse, _root._ymouse, true); if (scene == 14) { if (h) { startframe = 3; if (buttonpress && !goblack) { goblack = 1; } } else { startframe = 1; } } else { if (scene == 1 && ssay == 41) { if (h) { startframe = 2; if (buttonpress && !goblack) { goblack = 1; } } else { startframe = 1; } } else { if (h) { if (language > 0) { startframe = 3; } else { startframe = 2; } } else { startframe = 1; } if (h && buttonpress) { goblack = 1; } } } }; l1a = 0; l5a = 0; l4a = 0; l3a = 0; l2a = 0; 0; sqfuck = 0; fpsi = 0; fpstab = [20, 20, 20, 20]; sq_stat = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]; sq_x = []; sq_y = []; sq_r = []; sq_f = []; sq_xv = []; sq_ya = []; sq_fly = []; sq_tit = []; sq_oa = []; sq_rad = []; sq_who = []; sq_num = []; testing = 0; wch_cred = 0; soundstarted = 0; lastyes = 0; lastgiggle = 0; hiphop = 0; wchyell = 0; dancefade2 = 0; dancefade1 = 0; moanvol = 0; huffvol = 0; sucks = 0; omute = 3; mute = 3; amusicvol = 50; tmusicvol = 50; nomute = 0; songchannel = 0; song = 0; ow = 0; stoplooping = 1; loopvol = 100; yells = ['woohoo1.mp3', 'yeah1.mp3', 'yeah2.mp3']; lastmmm = 0; lastoh = 1; lastswish = 1; cricket2 = 0; cricket1 = 0; talking = 0; lastswing = 1; lasthurt = 0; lastmoan = 0; moans = 0; moandone = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]; muhhs = 0; muhhdone = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]; huffs = 0; lasthuff = 0; nnh = 0; coh = 0; music_max = [50, 60, 50, 50, 50, 40, 50, 10, 10, 30, 50, 50, 50, 50, 50]; _global.InitSound = function () { Seq = new Sequencer(); Seq.SaveOnTimeout = Seq.OnTimeout; Seq.XFadeRate = 0.01; Seq.FX[1] = function (ch) { with (Seq.AMixer.Channels[ch]) { ++Volume; if (Volume > 100) { Volume = 100; } Seq.AMixer.SetChannelVolume(ch, Volume); } }; Seq.FX[2] = function (ch) { with (Seq.AMixer.Channels[ch]) { --Volume; if (Volume < 0) { Volume = 0; } Seq.AMixer.SetChannelVolume(ch, Volume); } }; Seq.Values = new Array(0, 0, 0, 0); Seq.FX[3] = function (ch) { with (Seq.AMixer.Channels[ch]) { Seq.Values[ch] += 0.1; Volume = (Math.sin(Seq.Values[ch]) + 1) * 50; Seq.AMixer.SetChannelVolume(ch, Volume); } }; Seq.FX[4] = function (ch) { with (Seq.AMixer.Channels[ch]) { Seq.Values[ch] += 0.1; Volume = (Math.sin(Math.PI + Seq.Values[ch]) + 1) * 50; Seq.AMixer.SetChannelVolume(ch, Volume); } }; StartXFade = function (Channels) { Seq.XFadeVol = 0; Seq.XFadeCh = Channels; Seq.PChns = []; Seq.PVols = []; with (Seq.AMixer) { var i = 0; while (i < ChannelsNum) { if (Channels[i].SoundObj.isPlaying) { Seq.PChns.push(i); Seq.PVols.push(Channels[i].Volume); } ++i; } for (var i in Channels) { StopSound(Channels[i]); } } Seq.ATimer.OnTimeout = XFade; }; XFade = function () { for (var v1 in Seq.PChns) { Seq.AMixer.SetChannelVolume(Seq.PChns[v1], (1 - Seq.XFadeVol) * Seq.PVols[v1]); } for (v1 in Seq.XFadeCh) { Seq.AMixer.SetChannelVolume(Seq.XFadeCh[v1], Seq.XFadeVol * 100); } Seq.XFadeVol += Seq.XFadeRate; if (Seq.XFadeVol >= 1) { Seq.XFadeVol = 1; for (v1 in Seq.PChns) { Seq.AMixer.StopSound(Seq.PChns[v1]); } Seq.ATimer.OnTimeout = Seq.SaveOnTimeout; } }; Seq.OnSequenceComplete = function () { Seq.Position = 0; Seq.Start(); }; Seq.ATimer.SetTimer(50, true); Seq.OnLoopComplete = function () { var v1 = 0; while (v1 < Seq.AMixer.ChannelsNum) { var v2 = Seq.Sequence[Seq.Position].ch[v1].vol; if (v2 != undefined) { Seq.AMixer.SetChannelVolume(v1, v2); } ++v1; } }; }; _global.SetXFadeRate = function (ARate) { Seq.XFadeRate = ARate; }; _global.ChangeTheme = function (theme, effect) { if (Seq.Theme == theme) { return undefined; } Seq.PrevTheme = Seq.Theme; Seq.Theme = theme; if (theme.Sequenced) { songchannel = 0; Seq.LoopSets = theme.LoopSets; Seq.Sequence = theme.Sequence; Seq.Position = 0; if (!Seq.PrevTheme.Sequenced) { StartXFade([0, 1, 2, 3]); Seq.Start(); } } else { songchannel = theme.Channel; StartXFade([theme.Channel]); Seq.AMixer.PlaySound(theme.Name, theme.Channel, theme.StartPos, theme.Loops); Seq.AMixer.Channels[theme.Channel].OnSoundComplete = theme.OnThemeComplete; } }; _global.PlaySound = function (ASound, AChannel, APos, ALoops) { Seq.AMixer.PlaySound(ASound, AChannel, APos, ALoops); }; _global.StopSound = function (AChannel) { Seq.AMixer.StopSound(AChannel); }; _global.IsPlaying = function (AChannel) { return Seq.AMixer.Channels[AChannel].SoundObj.isPlaying; }; _global.SetMasterVolume = function (AVolume) { Seq.AMixer.SetMasterVolume(AVolume); }; _global.SetChannelVolume = function (AChannel, AVolume) { Seq.AMixer.SetChannelVolume(AChannel, AVolume); }; _global.SetChannelGlobalVolume = function (AChannel, AVolume) { Seq.AMixer.SetChannelGlobalVolume(AChannel, AVolume); }; English = ['I don\'t think I can wait until Saturday.', 3, 'How about a little preview?', 3, '\rI\'m just too horny', 2, '\rIn here.', 2, '\rSo, am I getting that A in Biology?', 2, '\rUhhhhh...', 2, 'If you keep at it you should get a good grade.', 2, 'x', 2, 'y', 13, 'z', 3, '\rSo, is that worth the fifty bucks?', b4r, 'Oh yeah.\rI can\'t wait to get home and watch it all!', bub4l, 'How did\r you do it? You\'re a techno genius!', bub4l, 'So the party\ris at your house after the game?', bub4l, '\rYes.\r It\'s all ready', bub4r, 'I got\ra keg of beer and a case of tequila.', bub4r, 'A case?\rThis is going to be one wild party!', bub4l, '', 0, '', 0, '', 0, 'If i didn\'t know better, I\'d think you were in love!', 13, 'He\'s just so dreamy.', 11, 'You haven\'t even met Brad yet!', 10, '\rMan! She\'s so hot!', 13, 'The most awesome babe in school by far.', 12, '\rWhat\'s her name?', 3, 'It\'s "Jana." She\'s in my history class.', 11, '\rJana, mmmmm.', 3, '', 0, '', 0, '\rOh. Hi Cindy.', 13, '\rCindy!', 13, '\rWhat\'s that all over your skirt?', 13, '\rThat Cindy is such a scuzz.', 13, '\rEvery school has it\'s super slut.', 12, 'Ours just happens to be the "head" cheerleader.', 12, 'That was great work on Cindy!', 10, 'Uh, thanks, I guess.', 11, 'Why don\'t\ryou go over and talk to Brad?', 13, 'I think he\'s interested.', 10, 'Oh! Lord no! I\'m too shy.', 11, 'I would be petrified. I... I... I\'d die!', 12, '\rOh well, time to go.', 3, 'Uh, hi. You\'re the new girl arent you?', 3, '\rIs he talking to me?', 15, '\rOh no!', 15, '\rLate for class.', 15, '\rWhat the...', 3, '\rI\'m so stupid!\rI\'m so stupid!', 16, 'Why do I have to be so shy!', 11, 'I just really blew it.', 11, 'After School', 0, 'Before the Game', 0, 'Victory!', 0, 'See you at the party!', 0, 'Click here to play part 1 again', 0, 'Press the space bar again to continue playing.', 0, '', 0, '', 0, '', 0, 'Well if it isn\'t\rthe big bad\rquarterback!', bub4l, '\rJenny!', bub4r, 'Are you ready\rto lose to X High tonight?', bub4l, '\rHa! You wish!', bub4r, 'Aren\'t you at the wrong school?', bub2l, 'I just\rcame by early to check out the field.', bub4r, '\rWhere\'s that big bad boyfriend of yours?', bub4r, 'He always\rseems to be right there, guarding you.', bub4r, 'Boyfriend?\rWhat boyfriend?', bub2l, 'That creep is off in Afghanistan now.', bub2l, 'I hope he gets his pecker shot off!', bub2l, 'So you\'re free then?', bub2r, 'Honey, ain\'t nothin\' is free!', bub2l, 'I just got\ra full scholarship to State.', bub4r, 'That\'s about as free as it gets.', bub2r, 'I guess\r when you have enough talent,', bub4r, 'Things just fall at your feet.', bub2r, 'And baby you gots lots of talent!', bub2r, '\rYou at my feet?', bub3l, 'Baby, I\'m begging.', bub2r, 'Keys to the equipment room.', bub3l, 'It\'s legendary around here.', bub3l, 'Mmmmm,\r hard as a rock.', bub3r, 'Ooooo,\r arms of steel!', bub3r, 'Mmmmm,\r abs like granite!', bub3r, '\rHey. What is this?', bub3r, '\rY\'all got a corncob in your pants?', bub4r, 'Haha,\rButter it up baby.', bub3l, 'Okay.\rGo ahead.\rI know you\'re dying for them.', bub4r, '\rThey fit my hands perfectly!', bub4l, 'It\'s like holding a pair of footballs!', bub3l, '\rWhoa there cowboy!', bub4r, '\rI want to fuck your tits again.', bub4r, '\rThis time make me cum.', bub4r, 'Lick it!', bub6, 'Now suck it!', bub6, 'So. Where are you taking me after the game?.', bub4l, 'Oh, sorry baby.\rI already got a date after the game.', bub4r, '\r Fucker!', bub4l, '', 0, '\rHey, Sarah, it\'s all ok? What\'s up?', bub4l, '\rN-no, well.. Or.. Yes.. I mean...', bub4l, '\rIt\'s just this zipper I.. I can\'t...', bub4l, 'There.\r Easier than you could imagine.', bub4l, 'Th-thank you Tina... I would have been lost without you.', bub4r, 'I sense there is something wrong. What\'s going on?', bub4l, 'Nothing!\r Absolut... Oh, well, I... I...', bub4r, 'It\'s... It\'s the same old story. You all look so cute, so perfect,', bub4r, 'While I\'m... I\'m a weirdo. What am I doing here? I don\'t belong here.', bub4r, 'Stop saying those silly things. Here. Look in the mirror.', bub4l, 'Here we are.\r Now tell me,\rwhat do you see?', bub4l, 'I see...\r Me...\rMe in undies..', bub4r, 'NO!\r I see a pretty girl,', bub4l, 'That every boy in school would like to hold in his arms.', bub4l, 'I see a beautiful slim body like a fashion model,', bub4l, 'A sexy body that many girls would envy.', bub4l, 'But...\rBut I\'m not like you... Or Jenny...', bub4r, 'No?\r Well, I just think you ARE.', bub4l, 'Mmmm, they are so deliciously squeezable.', bub4l, '\rJust like these.', bub4l, 'There is nothing wrong with your body, honey.', bub4l, 'We must love and be proud of our bodies, they are so cute.', bub4l, 'Boys certainly desire to touch and caress them.', bub4l, '\rMany girls too.', bub4l, 'Here,\r go ahead and feel my tits.', bub4l, '\rJust as lovely as yours.', bub4l, '\rOoooooo...', bub4r, '', 0, '', 0, '', 0, '\rHey you two!', bub4r, 'Hurry up!\r The game is going to start!', bub4r, 'Oh!\r Cindy left her purse here.', bub4l, '\rBut she\'s on the field already.', bub4r, '\rI just saw her Dad. I\'ll give it to him.', bub4r, 'Hey,\rwhere are Tina and Sarah?', bub4l, 'The game is almost going to start!', bub4l, '\rI\'ll go check on them', bub4r, 'Oh!\r But you\'ll miss the big show!', bub4l, 'Look!\r It\'s starting.', bub4l, 'Oh!\rMy!\rGod!', bub4r, 'Delicious!\r Isn\'t it?', bub4l, '', 0, '', 0, '', 0, '', 0, '', 0, '', 0, '', 0, '', 0, 'Computer whiz and voyeur. His father is an executive at a big software company. $$$ ', 0, 'Hot little latina firecracker. She lurks behind demure glasses.', 0, 'A shy bookworm. Her parents pushed her into trying out for cheerleader hoping to break her out of her shell.', 0, 'The new girl in school. She does not yet know where she fits into the social order at Xavier high. She has vowed to remain a virgin until marriage.', 0, 'As long as anyone can remember Jenny was involved with her older boyfriend. He graduated and joined the army and was shipped off to Afghanistan. He dumped her when she pushed to get married before he left.', 0, 'Head cheerleader, strong and dominating. Academics is not her strong suit though.', 0, 'Star athlete and every girls dream guy.', 0, 'Brad\'s buddy, but also his rival, both on and off the althletic field.', 0, 'Small in size, but full of surprises.', 0, '', 0, '5 minutes to game time', 0, 'Welcome to Lucas field', 0, 'For tonight\'s homcoming super battle', 0, 'Xavier High vs Lincoln High', 0, 'Featuring the two top quarterbacks in the state', 0, 'X high\'s own Brad White', 0, '', 0, 'vs Lincoln\'s Tony Ballermo', 0, '', 0, 'Tonight\'s matchup pits the two top teams in the state', 0, 'In a game to remember!', 0, 'Now a word from our sponsors', 0, 'One moment please... We are experiencing technical difficulties.', 0, '', 0, '\rUm...\r Okay. ', bub4r, '\rI don\'t drink.', bub4r, '\rI\'ll get some drinks.', bub4l, '\rYou have your own bottle?', bub4l, '\rWooo!\rYeah!', bub4r, '\rMe and my Boo\rwe\'re real tight.', bub4l, 'Go ahead,\r ask Jana to dance!', bub4r, 'I don\'t know.\rI think she doesn\'t like me.', bub4l, 'Bullshit!\r All the girls like you!', bub4r, '\rYou’re the top dog around here.', bub4r, '\rYou can have any girl you want.', bub4r, 'You need a\rdrink for courage. I’ll get you a double.', bub4r, '\rOh!\rNo! ', bub4l, '\rListen.', bub4r, '\rIt looks as though it will be you,', bub4r, 'That is going to have to make the first move with Brad.', bub4r, 'You kind of\r blew it this afternoon in school.', bub4r, '\rNow he\'s afraid to talk to you.', bub4r, '\rYou like him\rright?', bub4r, '\rOh yes!', bub4r, 'You want\r to meet him\rright?', bub4r, '\rOh yes!\r I want him!', bub4r, 'Okay then,\rDrink!\rFor courage.', bub4r, 'Hey,\rwhere is Cindy?', bub4l, '\rOh!\rYou didn\'t hear?', bub4r, '\rCindy got busted by her Dad. ', bub4r, 'Seems he\rfound a box of condoms in her purse. ', bub4r, '\rWoooo! ', bub4l, '\rIt was a twenty four pack, ', bub4r, '\rAnd there was only one left!', bub4r, '\rHa ha ha! ', bub4l, '\rNow she\'s grounded for life.', bub4r, 'Drink up my man,\r You\'re about to go\rinto battle.', bub4r, '\rGo on,\rAsk her to dance.', bub4r, 'Go on,\r Ask him to dance!', bub4l, 'Um....\r do you want to dance?', bub4l, '\rYes.', bub4r, '\rHeehee.\rI have to pee.', bub4l, '\rWhere is the....', bub4l, '\rI\'ll help you find it.', bub4l, 'Jenny,You\'re drunk. Don\'t be embarrassing.', bub4r, '\rOh shut up lonely boy.', bub4l, '\rJust enjoy the show.', bub4l, '\rIt sure is getting noisy in here.', bub4l, 'Can we go somewhere quieter?', bub4r, '\rCindy!', bub4r, '\rI managed to sneak out.', bub4l, '\rWhat\'s with the coat?', bub4r, 'My dear Dad\rlocked all of my clothes in the closet,', bub4l, '\rso I wouldn’t sneak out.', bub4l, 'I stashed one of Mom’s coats under the bed though.', bub4l, '\rYou two sure look... horny.', bub4l, '\rHey Cindy,\rGot any condoms?', bub4r, '\rHumh!', bub4r, '\rCindy,\rGo away!', bub4l, '\rGot anything there for me?', bub4r, 'I\'m surprised,\rbut the dog\'s got a bone!', bub4r, '\rYou want to?', bub4r, '\rLet\'s go upstairs.', bub4r, '\rTake it off!', bub4r, '\rTake it off!', bub4l, 'Jenny\r you have the most awesome tits!', bub4l, '\rShow them to us.\rPlease!', bub4l, '\rOh you want to see them do you?', bub4l, '\rOkay, no problem.', bub4l, 'But,\ryou have to show me yours first!', bub4l, 'No boy!\r I want to see your thang.', bub4l, '\rI ain\'t showin\' you nothin\'', bub4l, 'Not until you\'re buck naked and stroking your dick.', bub4l, '\rYou want to jack off on these?', bub4l, '\rCome on now.\r Let’s see it.', bub4l, '\rIf you want to see my tits', bub4l, '\rJack off for me.', bub4l, 'Whoa!\rNot so quick!', bub4l, '\rLet\'s see them!', bub4r, '\rSure!', bub4r, '\rBut...', bub4r, 'If you want me naked, then y\'all gotta be naked too!', bub4r, '\rCome on now.\rDon\'t be shy.', bub4r, '\rLet\'s see those dicks.', bub4r, 'Ummm...\rWhere is the bathroom?', bub4r, 'It\'s been\r locked for about half an hour.', bub4l, 'I think\r some one\'s getting busy in there.', bub4l, '\rTry upstairs.', bub4l, '\rOkay,\rThanks.', bub4r, 'Hey,\rWhere\'s Buckman?', bub4r, 'Yeah.\r He\'s missing the best party ever!', bub4r, '\r Locked!', bub4l, '\r Ahhh!', bub4r, 'Maybe just one more shot to get them loose.', 18, 'Sarah is almost ready!\rMaybe one more.', 18, 'There.\rThat should get her panties down!', 18, 'Allright Brad!\r Let\'s be sure you\'re up for the task.', bub4r, '\rOh!\rSorry! ', bub4r, '\rHuh?', bub4l, '\rI was looking for a bathroom.', bub4r, '\rI desperately have to pee!', bub4r, 'And the\rbathrooms are all locked or lost or something!', bub4r, 'Jeez!\rI thought I locked that door!', bub4l, 'Okay.\rThere\'s one in here.', bub4l, '\rOver there.', bub4l, '\rOooooo thanks!', bub4r, '\rOooo,\rShe\'s so cute! ', bub4r, '\rOh! God!', bub4l, '\rHuh!', bub4r, '\rThat is just so hot!', bub4l, 'I’m feeling\ra tingle just looking at it.', bub4l, '\rI didn\'t hear you come in.', bub4r, '\rCan I watch?', bub4l, '\rPlease?', bub4l, '\rOh...\rI see.', bub4r, '\rDon\'t worry Sweetie.', bub4r, '\rIt’s all right.\rI’m turned on too.', bub4r, '\rLet me do this.', bub4r, '\rIs that good?', bub4r, '\rDo you like me?', bub4r, 'Ohhhh yeah,\r but...', 6, 'I\'m busy now.\rI need to...', 6, 'This is important!', 6, 'I can\'t,\rnot now.', 6, '\rDo you want to feel my pussy?', bub4r, 'Oh look!\rBrad and Jana moved!', bub4r, 'You need\rto pan over to get them in frame!', bub4r, 'Yes.\r Now zoom in a little.', bub4r, '\rWow!\r You get it!', bub4l, '\rThe party is really getting wild now!', bub4l, '\rI really need to do this right now.', bub4l, 'We can...\rUmmmm...\rSome other time.', bub4l, '\rI understand.', bub4r, '\rOh, you\'re making me so hot now!', bub4r, '\rCan you feel how wet it is?', bub4r, 'Your penis\rwould slide right in so easily.', bub4r, 'Oh,\r I want it!\rI want it now!', bub4r, 'Let\'s do it.\rDo you want to fuck?', bub4r, '\rJust keep your eye on the monitor,', bub4r, '\rI\'ll take care of things down here.', bub4r, 'How does that feel?\rAre you almost there?', bub4r, '\rDo you want to cum in my mouth?', bub4r, '\rOh my God!\r Jussst in t-time!!', bub4r, '\rHere,\rLet me.', bub4l, '\rI want you to feel me.', bub4l, '\rFeel my...', bub4l, '\rOh!\r But I\'ve never...', bub4r, '\rPlease...', bub4l, '\rTouch it.', bub4l, 'Again.\rThis time squeeze it a little.', bub4l, '\rFeel how hard it is?', bub4l, '\rUh huh.', bub4r, '\rNow feel how long it is.', bub4l, '\rOoooo.', bub4r, '\rDo you like it?', bub4l, '\rUhh...\rUh huh.', bub4r, 'It\rfeels so good\rwhen you touch it.', bub4l, '\rYou like it?', bub4l, '\rOh yes!', bub4l, '\rOh yes!\r Like that.', bub4l, '\rUnbutton my pants.', bub4l, '\rOh!', bub4r, '\rPlease!', bub4l, '\rRub it.\rPlease!', bub4l, '\rCome on now.', bub4l, 'You\r don\'t need to be shy anymore.', bub4l, '\rDo you want to...', bub4l, 'Oooo yes.\rI want you inside me.', 6, '\rIt won\'t go in!', bub4l, '\rNo! It has to fit!', 5, '\rTry again.', 5, 'No!\r Put it in!', 5, '\rIs that the best you can do?', bub4r, '\rOkay?', 18, '\rI don\'t know why I like it,', bub4r, '\rBut your cock feels so good in my ass!', bub4r, '\rFuck it slow,\rvery slow.', bub4r, '\rOooo \ryes.', bub4r, '\rCan you feel it squeezing you?', bub4r, '\rOoohhh\ryes.', bub4r, '\rNow deeper.', bub4r, '\rOohhhh!\rFaster!', bub4r, '\rIs that it?', bub4r, 'I only see\r one skinny little white thing.', bub4r, '\rYou!', bub4r, '\rWhat you hiding?', bub4r, '\rCome on Emo.\rDon\'t be shy.', bub4r, '\rLet\'s see it.', bub4r, 'Okay.\rLooks like you\'re gonna need a little help.', bub4r, '\rYou know,\r you’re real cute!', bub4r, '\rCome here honey.', bub4l, '\rWhoa!\r That\'s enough.', bub4l, 'God,\ryour hair smells great!', bub5, '\rOoo!\rThat\'s cute too!', bub4l, 'Uhh...\rI\'m going to cum.', bub4l, 'Umm...\rIs that alright?', bub4l, '\rYou are so sweet!', bub4r, '\rI\'m waiting!', bub4r, 'Y\'all gonna get naked, or do I go home?', bub4r, '\rMe next!', bub4l, '\rNo me!', bub4l, '\rI want to fuck your tits too!', bub4l, 'Jenny!\rSuck my cock!', bub4l, '\rJenny!\rJenny!', bub4l, 'Let me\rfuck you while you suck his cock!', bub4l, 'Ain\'t none of y\'all sticking nothing in side of me!', bub4l, '\rExcept Junebug here.', bub4l, '\rHe can have it.', bub4l, '\rI think I\'m in love!', bub4l, 'You want\r to be my new boyfriend?', bub4l, '\rHuh?', bub4r, '\rWow!\rSure!', bub4r, '\rWhat do I have to do?', bub4r, '\rI want you to fuck me.', bub4l, '\rFuck me hard and long.', bub4l, '\rYour pecker up for it?', bub4l, '\rMmmmm.', bub4l, '\rGetting tired yet?', bub4l, 'You don\'t have to worry about me getting tired.', 5, 'I\'m a distance runner.', 6, 'I can keep this pace for hours.', 6, 'As long as you need, or want.', 6, '\rOooo!', bub4l, '\rI love my new boyfriend!', bub4l, 'Looks like\rwe\'re not getting any of that!', bub4l, '\rFuck no!', bub4r, '\rLook at those fucking tits!', bub4r, '\rI want to cum on those babies!!', bub4r, 'Fuck!\rNow I want to cum on her face.', bub4r, '\rFuck!\rMe too!', bub4l, 'Those\rsugar tits need more frosting!', bub4r, '\rCome on!\r It’s a party! ', bub4l, 'Let loose\rand have some fun!', bub4l, '\rLet me get you both a drink.', bub4l, '', 0]; news_text_English = ['Local news headlines:', 'Science teacher arrested for allegedly having sex with a student at school.', 'Since the un-named girl was of legal age, no criminal charges were filed.', 'The girl was expelled and will not graduate. The teacher was fired.', 'Lincoln High\'s star quarterback fingered for using steroids, loses scholarship.', 'An anonymous person sent proof of the abuse to the school board.', 'Local soldier and Xavier High grad injured in Afghanistan.', 'He reportedly suffered a devastating groin injury from small arms fire.', '', 'Xavier High news and gossip:', 'Xavier wins State championship!', 'Inspite of their underdog status, Xavier easily defeated Lincoln in the final.', 'Star QB Brad W. and new head cheerleader Jana J. announce plans to wed in June.', 'Rumors swirl about the rushed decision.', 'Backup QB Mike D. was spotted sneaking into the free clinic recently.', 'This reporter can easily guess why after the recent party.', 'Wayne Buckman named class valedictorian, but steps down in voyeurism controversy.', 'Girlfriend Katrina P. was second in line and assumes the honor.', 'Former Cheerleader Jennifer B. gets big recording contract with local band.', 'The band: "Junebug" will begin recording their first album in LA this summer.', 'The carrier single will be: "I\'m Not Emo (but I think your hair\'s cute)"', 'Cheerleaders Tina F. and Sarah P. to appear on national talk show.', 'The topic of discussion: Teen Girls in Love.', '', 'News flash sponsored by Tony-Angelos Pizza,', 'Where their slogan is: Eat a pie today!', '']; credits_text_English = ['Cheerleaders Party\r\r copyright 2009\rAll rights reserved', 'Game design by Puso\r\rDialog by Lucaboo2 & Puso', 'Music seqencer & sound code by Virtualex\r\r All other code by Puso', '\'Jana In Love\'\r (Brad & Jana\'s slow dance)\r Vocal by Vera Poletaeva\r Words & music by Puso', 'All other music by Virtualex', '2D & 3D art by Puso\r\r All 3D characters created using Daz 3dstudio', 'Thanks to the Pusooy Mods as design consultants:\r\rCodo, Harryvh, Lucaboo2, Pawpaw, Superbookey, Ut1stgear, Virtualex, Zadok23', 'Thanks also to the beta testers:\r\rDante101, Flashfiend, Forquer73, Olesbuch, Ramses, Sorrowson, Soursage, Ursulak', 'German translation by: Arnulf and Profhastig', 'Secret unlock code: xhi']; German = ['Ich glaube nicht,\rdass ich noch bis Samstag warten kann.', bub4r, 'Wie wär\'s mit\reiner kleinen Kostprobe?', bub4r, 'Ich bin viel\rzu geil auf dich.', 2, '\rHier rein!', 2, 'Und? Bekomme ich jetzt die Eins in Biologie?', 2, '\rUhhhhh...', 2, '\rWenn du so weitermachst, sollst du eine gute Note bekommen.', bub5r, '', 0, '', 0, '', 0, 'Und?\rIst das die fünfzig Dollar wert?', b4r, 'Oh ja!\r Ich kann\'s\rnicht erwarten, nach Hause zu kommen und mir alles anzusehen.', bub5lw, 'Wie hast du das gemacht? Du bist ja ein Technik-Genie!', bub4l, 'Die Party\rnach dem Spiel ist also bei dir zu Hause?', bub4l, 'Ja,\r es ist alles vorbereitet.', bub4r, 'Ich habe ein Fässchen Bier und einen Karton Tequila.', bub4l, 'Einen ganzen Karton? Das wird ja eine wilde Party!', bub4l, '', 0, '', 0, '', 0, 'Wenn ich es\rnicht besser wüsste, könnte ich meinen, du bist verliebt!', bub5r, 'Er ist aber auch so traumhaft.', 11, 'Du hast doch\rnicht gerade Brad getoffen!', bub4r, '\rMann! Die ist so scharf!', 13, 'Weitaus das atemberaubendste Mädchen an der Schule.', 12, '\rWie heißt sie?', 3, 'Jana. Sie geht in den selben Geschichtskurs wie ich.', bub4l, 'Jana,\rmmmmm.', 3, '', 0, '', 0, '\rOh. Hallo Cindy.', 13, '\rCindy!', 13, 'Was ist denn\rdas hier überall auf deinem Rock?', 13, '\rDiese Cindy ist so ein Miststück.', 13, '\rJede Schule hat ihre Superschlampe.', 12, '\rUnsere ist zufällig Cheerleader-Chefin.', bub5l, 'Das mit Cindy war großartig!', 10, 'Uh, kann sein, Danke.', 11, 'Warum gehst du nicht hin und sprichtst mit Brad?', 13, 'Ich glaube,\rer mag Dich.', 10, 'Oh! Gott nein! Ich bin zu schüchtern.', 11, 'Ich würde vor Angst erstarren. Ich..ich..ich würde sterben!', 12, '\rNa gut, wir müssen jetzt gehen.', bub4r, 'Uh, hallo.\rDu bist doch die Neue, nicht?', bub4r, '\rRedet er mit mir?', 15, '\rOh nein!', 15, '\rHöchste Zeit für den Kurs.', 15, '\rWas zum....', 3, '\rIch bin so blöd!\rIch bin so blöd!', 16, 'Warum muss ich nur so schüchtern sein!', bub4l, '\rIch hab\'s regelrecht vermasselt.', bub4l, 'Nach der Schule', 0, 'Vor dem Spiel', 0, 'Sieg!', 0, 'Wir treffen uns auf der Party!', 0, 'Zum Neustart von Teil 1\rhier klicken', 0, 'Zur Fortsetzung des Spiels bitte nochmals die Abstand-Taste drücken.', 0, '', 0, '', 0, '', 0, 'Na, wenn das bloß nicht der große böse Quarterback ist!', bub4l, '\rJenny!', bub4r, '\rBist du bereit\rheute Abend gegen die X High zu verlieren?', bub5l, 'Ha!\rDas hättest du wohl gerne!', bub4r, 'Bist du nicht an der falschen Schule?', bub2l, 'Ich bin nur\rso früh, um den Platz zu checken.', bub4r, 'Wo ist denn\rdein grosser lästiger Freund?', bub4r, 'Er scheint\r immer plötzlich aufzutauchen um auf dich aufzupassen.', bub5r, 'Freund? was für Freund?', bub2l, 'Der Mistkerl ist\r weg und jetzt in Afghanistan.', bub4l, 'Ich hoffe, sie schießen ihm dort die Eier weg!', bub4l, 'Dann bist du also jetzt frei?', bub2r, 'Nein, Süßer, nichts ist frei!', bub2l, 'Ich habe ein staatliches Vollstipendium.', bub4r, '\rDas ist ungefähr so frei, wie es nur geht.', bub4r, '\rWenn du begabt genug bist,', bub4r, 'liegt dir alles zu Füßen.', bub2r, 'Und Baby,\rdu hast eine Menge Begabungen.', bub5r, 'Du liegst mir zu Füßen?', bub3l, 'Baby, ich bettle darum.', bub2r, 'Schlüssel für den Zeugraum.', bub3l, 'Der ist hier schulbekannt.', bub3l, '\r Mmmmm, steinhart.', bub3r, 'Ooooo, Arme aus Stahl.', bub3r, 'Mmmmm,\rBauchmuskeln wie Granit.', bub4r, '\rHeh, was ist das?', bub3r, 'Hast du auch\rnoch einen Maiskolben in deiner Hose?', bub4r, 'Haha,\rsei gut zu ihm, Baby.', bub4l, 'Also gut.\r Fang an. Ich weiß, du stirbst dafür.', bub4r, 'Sie passen\rperfekt in meine Hände.', bub4l, 'Es ist, als hätte\rich zwei Bälle in der Hand.', bub4l, '\rGanz ruhig,\rdu Cowboy!', bub4r, 'Ich will\rwieder deine Titten ficken.', bub4r, '\rDiesmal bring mich zum Abspritzen.', bub4r, 'Leck ihn!', bub6, 'Jetzt saug dran!', bub6, 'Und?\r Wohin nimmst du mich nach dem Spiel mit?', bub4l, 'Tut mir leid,\r Baby, aber ich bin schon Verabredet.', bub4r, '\rScheißkerl!', bub4l, '', 0, 'Heh, Sarah,\r ist alles in Ordnung? Was gibt\'s?', bub4l, 'N..nein, gut..oder..Ja.. ich meine..', bub4l, 'Es ist nur dieser Reissverschluss, Ich..Ich kann nicht...', bub4l, 'Da.\rLeichter als du gedacht hast.', bub4l, 'D..danke, Tina. Ohne dich wäre ich verloren gewesen.', bub4r, 'Ich spüre doch, du hast irgend etwas. Was ist los?', bub4l, 'Nichts!\r Wirklich..Na gut, Ich...Ich...', bub4r, 'Es ist...\rEs ist immer\rdieselbe alte Geschichte. Ihr alle seht immer so gut aus, so perfekt,', bub5rw, 'ich dagegen...\rIch bin eine komische Aussenseiterin. Ich gehöre nicht hierher.', bub5rw, 'Hör auf so\rdummes Zeug zu reden. Da. Schau in den Spiegel.', bub5l, 'Da sind wir. Jetzt sag mir, was du siehst.', bub4l, 'Ich sehe...mich...mich im Höschen..', bub4r, '\rNEIN!\rIch sehe ein hübsches Mädchen,', bub5l, '\rdas jeder Junge\ran der Schule gerne in seinen Armen halten würde.', bub5l, '\rIch sehe einen\rschönen schlanken Körper wie von einem Model.', bub5l, '\rEinen sexy Körper,\rum den dich viele Mädels beneiden würden.', bub5l, 'Aber...Aber ich\rbin nicht so wie du...Oder Jenny...', bub4r, 'Nein? Na, ich glaube aber DOCH!', bub4l, '\rMmmm, die sind so schön anzufassen.', bub4l, '\rGenau wie diese', bub4l, 'Es ist überhaupt nichts falsch mit deinem Körper, Süße.', bub4l, '\rWir müssen unsere\rKörper lieben und stolz auf sie sein. Sie sehen wirklich gut aus.', bub5lw, '\rDie Jungs sehnen\rsich sicher danach, sie zu berühren und zu streicheln.', bub5l, '\rViele Mädchen auch.', bub4l, 'Da,\rkomm und fühl meine Brüste.', bub4l, '\rGenauso schön wie deine.', bub4l, '\rOoooooo...', bub4r, '', 0, '', 0, '', 0, '\rHeh, ihr zwei!', bub4r, 'Beeilt euch!\rDas Spiel fängt gleich an!', bub4r, 'Oh! Cindy hat ihre Tasche hier gelassen.', bub4l, '\rAber sie ist schon auf dem Spielfeld.', bub4r, 'Ich habe eben\rihren Vater gesehen. Ich werde sie ihm geben.', bub5r, 'Heh,\rwo sind Tina und Sarah?', bub4l, '\rDas Spiel fängt ja gleich an!', bub4l, '\rIch geh nach ihnen schauen.', bub4r, 'Oh, aber du wirst die große Show verpassen!', bub4l, '\rSchau! Es fängt an.', bub4l, '\rOh!\rMein! Gott!', bub4r, '\rSuper!\r Nicht wahr?', bub4l, '', 0, '', 0, '', 0, '', 0, '', 0, '', 0, '', 0, '', 0, 'Computergenie und Voyeur. Sein Vater ist Geschäftsführer einer großen Softwarefirma. $$$', 0, 'Scharfer Latina-Knallfrosch. Sie lauert hinter ihrer sittsamen Brille.', 0, 'Schüchterner Bücherwurm. Ihre Eltern haben sie gedrängt, am Cheerleader-Training teilzunehmen in der Hoffnung, sie aus ihrem Schneckenhaus zu locken.', 0, 'Das neue Mädchen an der Schule. Sie weiß noch nicht, an welche Stelle sie in der sozialen Hierarchie an der Xavier High passt. Sie hat sich geschworen, bis zu ihrer Hochzeit Jungfrau zu bleiben.', 0, 'Solange jeder zurückdenken kann, war sie mit ihrem älteren Freund zusammen. Nach seinem Schulabschluss ging er zur Army und wurde nach Afghanistan versetzt. Als sie ihn gedrängt hat, sie vor seiner Versetzung zu heiraten, hat er mit ihr Schluss gemacht.', 0, 'Cheerleader-Chefin, energisch und dominant. Studieren ist aber nicht ihre starke Seite.', 0, 'Sportstar und der Traum jeden Mädchens.', 0, 'Brads Freund, aber auch Konkurrent, sowohl auf dem Sportplatz als auch darüber hinaus.', 0, 'Klein, aber voll Überraschungen.', 0, '', 0, '5 Minuten bis Spielbeginn', 0, 'Willkommen im Lucas Stadion', 0, 'Zur Heimspiel-Superschlacht heute Abend', 0, 'Xavier High gegen Lincoln High', 0, 'Mit den beiden besten Quarterbacks im Staat', 0, 'Aus X High\'s eigener Schülermannschaft Brad White', 0, '', 0, 'gegen Lincoln\'s: Tony Ballermo', 0, '', 0, 'Die Entscheidung heute Abend führt die beiden besten Teams des Staates gegeneinander.', 0, 'In einem denkwürdigen Spiel', 0, 'Nun\rein Wort unserer Sponsoren', 0, 'Einen Augenblick bitte....wir haben ein technisches Problem.', 0, '', 0, '\rHm...\r Na gut. ', bub4r, '\rIch trinke nicht.', bub4r, 'Ich werde euch jetzt die Drinks holen.', bub4l, 'Du hast eine Flasche für dich allein?', bub4l, '\rBuuuh!\rJaaa!', bub4r, 'Ich und mein Fläschchen,\rwir gehören jetzt zusammen.', bub5l, 'Los,\r frag Jana, ob sie mit dir tanzt!', bub4r, 'Ich weiß nicht.\rwahrscheinlich mag sie mich gar nicht,', bub4l, 'Blödsinn!\r Alle Mädels mögen dich!', bub4r, '\rDu bist hier der Platzhirsch.', bub4r, '\rDu kannst jedes Mädchen haben.', bub4r, 'Du musst dir\rMut antrinken. Ich hol dir einen Doppelten.', bub4r, 'Oh!\rNein! ', bub4l, '\rPass auf,', bub4r, '\res schaut aus, als läge es jetzt an dir,', bub4r, 'Du musst jetzt\rden ersten Schritt auf Brad zu machen.', bub4r, 'Du hast es \rheute Nachmittag in der Schule mehr oder weniger verpatzt.', bub5r, 'Jetzt ist er zu verunsichert um dich anzusprechen.', bub5r, '\rDu magst ihn.\rRichtig?', bub4r, '\rOh Ja!', bub4r, 'Du willst ihn treffen.\rRichtig?', bub4r, '\rOh ja!\r Ich will ihn!', bub4r, 'Gut,\rdann trink!\rDamit du mutiger wirst.', bub4r, 'Heh,\rwo ist Cindy?', bub4l, 'Oh!\rhast du es nicht gehört?', bub4r, '\rIhr Vater hat Cindy erwischt. ', bub4r, 'Sieht so aus,\rals hätte er in ihrer Tasche eine Packung Kondome gefunden. ', bub5r, '\rWuuii! ', bub4l, 'Es war eine Vierundzwanziger-\rpackung', bub4r, '\rund es war nur mehr eines übrig!', bub4r, '\rHa ha ha! ', bub4l, 'Jetzt hat sie unbefristeten Hausarrest.', bub4r, 'Trink aus,\r du Held. Du ziehst gleich in die Schlacht.', bub4r, 'Los!\rFordere sie zum Tanzen auf!.', bub4r, 'Los,\r frag ihn, ob er mit dir tanzt!', bub4l, 'Hm....\r Willst du tanzen?', bub4l, '\rJa.', bub4r, '\rHeehee.\rIch muss mal!', bub4l, '\rWo ist die....', bub4l, '\rIch helfe dir suchen.', bub4l, 'Jenny,du bist betrunken. Hör auf, sonst wird\'s peinlich.', bub4r, '\rAch Schnauze, Lonely Boy!', bub4l, '\rSchau einfach zu und genieße.', bub4l, '\rLangsam wird\'s richtig laut hier.', bub4l, 'Können wir\rwohin gehen, wo es ruhiger ist?', bub4r, '\rCindy!', bub4r, 'Ich konnte heimlich abhauen.', bub4l, '\rWas ist denn das für ein Mantel?', bub4r, 'Mein lieber Vater hat alle meine Sachen weggesperrt, ', bub5l, '\rdamit ich nicht fort kann.', bub4l, 'Ich konnte trotzdem einen Mantel meiner Mutter unter dem Bett verstecken.', bub6l, 'Ihr beide seht aus....so richtig scharf aufeinander.', bub5l, 'Heh Cindy,\rHast du noch Kondome?', bub4r, '\rMpfff!', bub4r, '\rCindy,\rverschwinde!', bub4l, 'Gibt\'s hier ingendwas für mich?', bub4r, 'ich wundere\rmich, aber die Hunde haben da einen Knochen!', bub5r, '\rWillst du?', bub4r, '\rGeh\'n wir nach oben.', bub4r, '\rAusziehen!', bub4r, '\rAusziehen!', bub4l, 'Jenny\r Du hast die geilsten Titten!', bub4l, '\rZeig sie her!\rBitte!', bub4l, '\rAch, ihr wollt sie sehen? Wirklich?', bub4l, '\rGut, kein Problem.', bub4l, 'Aber,\rihr müsst mir erst eures zeigen!', bub4l, 'Nein, Bubi!\r ich will dein Gehänge sehen.', bub4l, '\rIch zeig überhaupt nichts her,', bub4l, 'solange du nicht nackt vor mir deinen Schwanz wichst.', bub4l, 'Du willst dir da drauf einen runterholen?', bub4l, '\rAlso los jetzt.\r Zeig\'s uns.', bub4l, 'Wenn du\r meine Titten sehen willst,', bub4l, '\rhol dir für mich einen runter.', bub4l, 'Haaalt!\rNicht so schnell!', bub4l, '\rHerzeigen!', bub4r, '\rAber sicher!', bub4r, '\rAber...', bub4r, 'Menn iher mich nackt haben wollt, dann müsst ihr auch alle nackt sein!', bub5r, 'Los.\rZiert euch nicht.', bub4r, '\rRaus mit euren Schwänzen!', bub4r, 'Hmmm...\rWo ist der Waschraum?', bub4r, 'Der ist\rschon eine halbe Stunde besetzt.', bub4l, 'Ich glaube, da\r drin sind welche sehr beschäftigt.', bub4l, '\rVersuche es oben.', bub4l, '\rGut,\rDanke.', bub4r, 'Hey,\rWo ist Buckman?', bub4r, 'Ja!\r Er versäumt die Party seines Lebens!', bub4r, '\r zu!', bub4l, '\r Ahhh!', bub4r, 'Vielleicht noch einen Schluck zur Entspannung.', 18, 'Sarah ist schon fast so weit\rVielleicht noch einen.', 19, 'So.\rDas sollte ihr das Höschen ausziehen!', 19, 'Sehr gut Brad,\r du musst jetzt fit sein für die Herausforderung.', bub5r, '\rOh!\rVerzeihung! ', bub4r, '\rHuh?', bub4l, '\rIch suche einen Waschraum.', bub4r, '\rIch muss furchtbar dringend!', bub4r, 'Und die\rWaschräume sind alle besetzt oder ausser Betrieb oder sonst was!', bub6r, 'Ihhh!\rIch war mir sicher, ich hätte zugesperrt!', bub5l, 'Also gut.\rDa drinnen ist einer.', bub4l, '\rDa vorbei!', bub4l, '\rOooooo Danke!', bub4r, '\rOooo,\rSie ist so toll! ', bub4r, '\rOh! Gott!', bub4l, '\rHuh!', bub4r, '\rDas ist wirklich scharf!', bub4l, 'Mich kribbelt\'s\rschon allein beim Zuschauen.', bub4l, 'Ich hab dich gar nicht kommen hören.', bub4r, '\rDarf ich zuschauen?', bub4l, '\rBitte?', bub4l, '\rOh...\rAch so!', bub4r, '\rNur keine Panik, Süßer.', bub4r, 'Ist schon in Ordnung.\rMich macht es ja auch an.', bub4r, '\rLass mich das machen.', bub4r, '\rGut so?', bub4r, '\rMagst du mich?', bub4r, 'Ohhhh jaa,\r aber...', 6, 'ich hab jetzt keine Zeit.\rIch muss...', 6, 'Das ist wichtig!', 6, 'Ich kann nicht,\rnicht jetzt.', 6, '\rWillst du meine Muschi anfassen?', bub4r, 'Schau doch!\rBei Brad und Jana tut sich was!', bub4r, 'Du musst\rsie in diesen Rahmen hinüberziehen!', bub5r, 'Ja.\r Jetzt ein bischen heranzoomen.', bub4r, 'Wao!\r Jetzt hast du\'s!', bub4l, '\rDie Party wird jetzt echt wild!', bub4l, 'Ich muss das aber jetzt wirklich machen .', bub4l, 'Wir können...\rHmmmm...\rein anderes Mal.', bub4l, '\rIch verstehe.', bub4r, '\rAh! Du machst mich so heiß!', bub4r, '\rFühlst du, wie nass sie ist?', bub4r, 'Dein Schwanz würde so richtig leicht reinflutschen.', bub4r, 'Oh,\r Ich will es!\rJetzt!', bub4r, 'Machen wir\'s.\rWillst du mich ficken?', bub4r, '\rBehalte nur deinen Monitor im Auge,', bub5r, '\rIch kümmere mich um das da unten.', bub4r, 'Wie fühlt sich\'s an??\rBist du schon fast soweit?', bub4r, '\rWillst du in meinen Mund abspritzen?', bub4r, '\rOh Gott!\r Gerade noch!!', bub4r, 'Hier,\rLass mich das machen.', bub4l, '\rIch möchte, dass du mich spürst.', bub4l, '\rFühl meinen...', bub4l, 'Oh!\r Aber...ich hab noch nie...', bub4r, '\rBitte...', bub4l, '\rGreif ihn an.', bub4l, 'Noch einmal.\rDiesmal drück ihn ein wenig.', bub4l, '\rSpürst du, wie hart er ist?', bub4l, '\rUh huh.', bub4r, '\rJetzt fühl, wie lang er ist.', bub4l, '\rOoooo.', bub4r, '\rMagst du das?', bub4l, '\rUhh...\rUh huh.', bub4r, 'Es ist so gut\rwenn du ihn anfasst.', bub4l, '\rDu magst das?', bub4l, '\rOh ja!', bub4l, '\rOh ja!\r Genau so.', bub4l, '\rMach mir die Hose auf.', bub4l, '\rOh!', bub4r, '\rBitte!', bub4l, '\rJetzt reib ihn.\rBitte!', bub4l, '\rKomm jetzt.', bub4l, 'Du musst dich überhaupt nicht mehr zieren.', bub4l, '\rWillst du...', bub4l, 'Oooo ja. ich möchte dich jetzt in mir haben.', 26, '\rEr geht nicht rein!', bub4l, 'Nein! Er muss hineingehen!', 5, '\rProbiers nochmal.', 5, 'Nein!\r Steck ihn rein!', 5, '\rist das alles, was du drauf hast?', bub4r, '\rGut?', 18, 'Ich weiß nicht, warum ich das so mag,', bub4r, 'aber dein\rSchwanz in meinem Arsch fühlt sich so gut an!', bub5r, 'Fick mich jetzt langsam,\rganz langsam.', bub4r, '\rOooo \rJaaa.', bub4r, '\rSpürst du, wie es dich massiert?', bub4r, '\rOoohhh\rjaaa.', bub4r, '\rJetzt tiefer.', bub4r, '\rOohhhh!\rschneller!', bub4r, '\rWas soll das sein?', bub4r, 'Ich sehe nur\r ein kleines blasses weißes Etwas.', bub4r, '\rDu!', bub4r, '\rWas versteckst du da?', bub4r, '\rLos Emo.\rsei nicht feig.', bub4r, '\rZeig ihn her.', bub4r, 'Aha. Schaut aus, als bräuchtest du ein bisschen Hilfe.', bub4r, 'Weißt du,\rdu siehst wirklich gut aus!', bub4r, '\rKomm her, Liebling.', bub4l, '\rBuuuh!\r Das reicht!', bub4l, 'Gott,\rdein Haar riecht wunderbar!', bub5, 'Ooo!\rdas ist auch lieb von dir!', bub4l, 'Uhh...\rmir kommt\'s gleich!', bub5l, 'Hmm...\rist es dir Recht??', bub5l, '\rDu bist so süß!', bub4r, '\rIch warte!', bub4r, 'Ihr alle zieht euch nackt aus, oder soll ich nach Hause gehen?', bub5r, '\rJetzt ich!', bub4l, '\rNein, ich', bub4l, '\rIch will auch deine Titten ficken!', bub4l, 'Jenny!\rBlas mir einen!', bub4l, '\rJenny!\rJenny!', bub4l, 'Lass mich\rdich ficken, während du ihm einen bläst!', bub5l, 'Keiner von euch allen steckt ingendwas in mich hinein!', bub5l, 'Ausgenommen mein Junikäfer hier.', bub4l, '\rEr darf es haben.', bub4l, '\rIch glaube, ich liebe ihn!', bub4l, 'Möchtest du\r mein neuer Freund sein?', bub4l, '\rHa?', bub4r, '\rWao!\rSicher!', bub4r, '\rWas muss ich machen?', bub4r, '\rIch möchte, dass du mich fickst.', bub4l, '\rFick mich hart und lange.', bub4l, 'Ist dein Schwanz schon steif genug?', bub4l, '\rMmmmm.', bub4l, '\rWirst du schon müde?', bub4l, 'Du musst nicht fürchten, dass ich müde werden könnte.', 25, 'Ich bin ein Langstreckenkäufer.', 26, 'Ich kann dieses Tempo stundenlang durchhalten.', 26, 'So lange du\r es brauchst oder willst.', 26, '\rOooo!', bub4l, '\rIch liebe meinen neuen Freund!', bub4l, 'Sieht so aus,\rals würden wir überhaupt nichts mehr davon abbekommen!', bub6l, '\rScheiße, nein!', bub4r, 'Schau dir\r nur diese Traumtitten an!', bub4r, 'Ich will\r auf diese Babies abspritzen!!', bub4r, 'Verdammt!\rJetzt will ich in ihr Gesicht spritzen.', bub4r, '\rTeufel!\rIch auch!', bub4l, 'Solche\rZuckerbrüste brauchen mehr Glasur!', bub4r, '\rLos!\r Es ist Party! ', bub4l, 'Entspann dich\rund gönn Dir deinen Spaß!', bub4l, 'Soll ich euch beiden was zu trinken holen?', bub4l, '', 0]; news_text_German = ['Lokalnachrichten; die Schlagzeilen:', 'Biologielehrer verhaftet wegen des Verdachts des sexuellen Missbrauchs an einer seiner Schülerinnen.', 'Nachdem die betroffene Schülerin (Name der Redaktion bekannt) nicht mehr minderjährig ist, wurde das Verfahren eingestellt.', 'Das Mädchen wurde ohne Abschluss der Schule verwiesen. Der Lehrer wurde fristlos entlassen.', 'Lincoln High\'s Star Quarterback wurde des Dopings überführt. Das Stipendium wurde ihm aberkannt.', 'Der Nachweis der Einnahme verbotener Substanzen ging von anonymer Seite an die Direktion seiner Schule.', 'Gemeindemitbürger und Absolvent der Xavier High als Soldat in Afghanistan verwundet.', 'Laut offiziellem Bericht erlitt er durch einen Treffer leichter Artilleie schwere Unterleibsverletzungen.', '', 'Meldungen und Klatsch aus der Xavier High:', 'Xavier gewinnt Staatsmeisterschaft!', 'Trotz bestehender Unterklassigkeit bezwang Xavier glatt Lincoln im Endspiel.', 'Star QB Brad W. und die neue Cheerleader-Chefin Jana J. geben ihre geplante Hochzeit im Juni bekannt.', 'Gerüchte ranken sich um diesen überraschend kurzfristigen Entchluss.', 'Ersatz-Quarterback Mike D. wurde kürzlich entdeckt, als er versuchte heimlich die Freie Klinik aufzusuchen.', 'Die Redaktion kann sich den Grund dafür leicht vorstellen, nach der kürzlich abgehaltenen Party.', 'Wayne Buckman, designierter Abschiedsredner seiner Klasse, musste wegen gegen ihn gerichteter Vorwürfe des Voyeurismus zurücktreten.', 'Seine Freundin Katrina P. konnte nachrücken und erntet damit diese Ehre.', 'Ehemaliger Cheerleader Jennifer B. erhält einen großen Plattenvertrag mit der örtlichen Band.', 'Die Band: "Junikäfer" wird mit den Aufnahmen für ihr erstes Album in LA noch in diesem Sommer beginnen.', 'Ihre Single-Auskopplung heißt: "I\'m Not Emo (but I think your hair\'s cute)"', 'die Cheerleader Tina F. und Sarah P. treten in der nationalen Talkshow auf.', 'Das Thema der Diskussion: Liebe zwischen Mädchen.', '', 'Die Kurznachrichten wurden präsentiert von Tony-Angelos Pizza,', 'Ihr Wahlspruch: Iss täglich einen Kuchen!', '']; credits_text_German = ['Cheerleaders Party\r\r copyright 2009\rAlle Rechte vorbehalten', 'Spieldesign von Puso\r\rDialoge von Lucaboo2 & Puso', 'Music seqencer & Soundprogrammieung von Virtualex\r\r Alle sonstige Prgrammierung von Puso', '\'Jana In Love\'\r (Brad & Jana\'s langsamer Tanz)\rGesungen von Vera Poletaeva\r Text und Musik von Puso', 'Alle sonstige Musik von Virtualex', '2D & 3D art von Puso\r\r Alle 3D-Figuren entworfen unter Verwendung von Daz 3dstudio', 'Besonderen Dank an die Pusooy Moderatoren als Design-Berater:\r\rCodo, Harryvh, Lucaboo2, Pawpaw, Superbookey, Ut1stgear, Virtualex, Zadok23', 'Besonderen Dank auch an die Beta-Tester:\r\rDante101, Flashfiend, Forquer73, Olesbuch, Ramses, Sorrowson, Soursage, Ursulak', 'Deutschsprachige Übersetzung von: Arnulf and Profhastig', 'Geheimer Entschlüsselungscode: xhi']; French = ['\rje ne pourrai jamais tenir jusque samedi.', bub4r, '\rTu me donnerais un avant goût ?', 3, '\rJ\'en ai trop envie', 2, '\rIci....', 2, '\rAlors ? Je l\'ai, ce 20 en biologie ?', 2, '\rHeu...', 2, 'Continue comme\r ça et tu auras une bonne note.', 2, 'x', 2, 'y', 13, 'z', 3, '\rAlors, content de ton "investissement"?', b4r, 'Oh oui !\rVivement ce soir que je mate tout ça peinard!', bub4l, 'Comment\rt\'as fait ? T\'es un génie, mec!', bub4l, 'Alors ? Après le match, on fait la fête chez toi ?', bub4l, '\rOuais.\r Tout est paré !', bub4r, 'On aura\run fût de bière, une caisse de téquila...', bub4r, 'Une caisse ?\rCa va être l\'orgie, cette soirée !', bub4l, '', 0, '', 0, '', 0, 'A te voir\rcomme ça, je dirais que tu es amoureuse !', 13, 'Ce mec me fait rêver.', 11, '\rMais Tu ne l\'as même pas abordé !', bub4r, '\rQuelle canon ', 13, '\rLa plus mignonne de la fac, et de loin !', 12, '\rEt quel est son nom?', 3, 'C\'est "Jana". je suis en histoire avec elle.', 11, '\rJana, mmmmm.', 3, '', 0, '', 0, '\rOh. Salut Cindy.', 13, '\rCindy!', 13, '\rC\'est quoi ce truc sur ta jupe ?', 13, '\rCette Cindy, quelle Salope.', 13, '\rChaque fac a sa super pétasse.', 12, 'La nôtre ne sait juste plus où "donner de la tête".', 12, 'Ouah, tu l\'as pas ratée !', 10, 'Heu, ouais, merci.', 11, 'Allez...\rEssaie d\'aller parler à Brad.', 13, 'Je crois que tu lui plais.', 10, 'Oh, non ! Je suis trop timide.', 11, '\rJ\'en suis pétrifiée. Je... J\'en mourrais !', 12, '\rBon, c\'est l\'heure.', 3, 'Salut.\rC\'est bien toi, la nouvelle, hein?', 3, '\rIl me parle, là ? A moi ?', 15, '\rOh non!', 15, '\rEn retard...', 15, '\rMais ? Que...', 3, '\rQuelle idiote !\rMais quelle idiote !', 16, 'Mais pourquoi suis-je si timide !', 11, 'Je viens de tout foutre en l\'air.', 11, 'Après les cours', 0, 'Avant le match', 0, 'Victoire!', 0, 'A bientôt pour la fête!', 0, 'Cliquez ici pour rejouer la 1ère partie', 0, 'Pressez la barre d\'espace pour reprendre le jeu.', 0, '', 0, '', 0, '', 0, 'Hé bien,\r n\'est-ce pas le demi de mêlée adverse!', bub4l, '\rJenny!', bub4r, '\rPret à perdre contre nous ce soir ?', bub4l, '\rHa! Tu rêves!', bub4r, 'Sur de ne pas te tromper de camp ?', bub2l, 'Je suis\rjuste venu tâter le gazon, en prévision.', bub4r, 'Et où\r est ton Monsieur Muscle de copain ?', bub4r, 'Il est\rtoujours dans les parages à te surveiller.', bub4r, 'Copain ?\rQuel copain?', bub2l, '\rCe crétin est en Afghanistan maintenant.', bub4l, 'J\'espère qu\'une balle l\'émasculera', bub2l, 'Donc, tu es accessible ?', bub2r, 'Mon chou, tout a un prix, tu sais!', bub2l, '\rJ\'ai tant de\r"connaissances" à partager.', bub4r, '\rCa me semble négociable.', bub4r, 'Je crois\r que lorsque l\'on est doué,', bub4r, '\rnos désirs tombent du ciel à nos pieds.', bub3r, 'Et toi poupée, tu es très douée !', bub2r, '\rToi, à mes pieds ?', bub3l, 'Bébé, je te supplie.', bub2r, '\rLes clés de la salle d\'équipement.', bub4l, '\rUne légende locale.', bub4l, 'Mmmmm,\r Dur comme la pierre .', bub3r, 'Ooooo,\r Bras d\'acier !', bub3r, 'Mmmmh\rDes abdos de granit !', bub3r, '\rMais qu\'est-ce c\'est?', bub3r, '\rY\'a un épi de maïs dans ton jean ?', bub4r, 'Haha,\rAstique-le, poupée', bub3l, 'Ok.\rVas-y.\rTu en meurs d\'envie...', bub4r, '\rIls sont faits pour mes mains !', bub4l, '\rC\'est comme tenir deux ballons de football!', bub4l, '\rTout doux cowboy!', bub4r, '\rJe veux baiser tes seins, encore.', bub4r, '\rFais-moi jouir !', bub4r, 'Lèche-la !', bub6, 'Là, suce-la !', bub6, 'Alors ? Tu m\'emmènes où après le match ?', bub4l, 'Oh, pardon poupée.\rJ\'ai déjà un rencard après le match.', bub3r, '\r Salaud!', bub4l, '', 0, '\rHé, Sarah, Tout va bien ? Dis-moi ?', bub4l, '\rN-non, enfin... Si... Je veux dire...', bub4l, '\rC\'est la fermeture... Je n\'y arrive pas...', bub4l, 'Là.\r Plus facile que tu croyais.', bub4l, 'M-merci Tina...\r Je ne m\'en serais pas sortie sans toi.', bub4r, 'Quelque chose ne va pas. Tu veux m\'en parler ?', bub4l, 'Rien!\r Absolum... Après tout... Je...', bub4r, 'C\'est...\r C\'est toujours pareil : vous êtes mignonnes,\r parfaites', bub5r, 'Alors que je suis bizarre. Qu\'est-ce que je fais là ? Rien à faire là.', bub4r, 'Arrête de dire des âneries, Viens. Regarde dans le miroir.', bub4l, 'On y est.\r Alors, dis-moi.\rQue vois-tu ?', bub4l, 'Je vois...\r Moi...\rEn sous-vêtements..', bub4r, 'NON!\r Je vois une jolie fille,', bub4l, 'Que chaque étudiant aimerait serrer dans ses bras.', bub4l, 'Je vois un beau corps mince comme un mannequin,', bub4l, 'Un corps sexy que beaucoup de filles envieraient.', bub4l, 'Mais...\rJe ne suis ni toi... Ni Jenny...', bub4r, 'Non ?\rJe crois que tu es COMME nous..', bub4l, 'Mmmm, Si délicieusement fermes.', bub4l, '\rComme ceux-ci.', bub4l, 'Il n\'y a rien qui cloche avec ton corps, chérie.', bub4l, 'Nous devons aimer nos corps, être fières de leurs beautés.', bub4l, 'Les mecs désirent nous toucher, nous carresser.', bub4l, '\rPas mal de filles aussi.', bub4l, 'Là,\r Allez vas-y, tâte mes seins.', bub4l, '\rAussi adorables que les tiens.', bub4l, '\rOoooooo...', bub4r, '', 0, '', 0, '', 0, '\rHé vous deux !', bub4r, 'Plus vite!\r Le match va commencer !', bub4r, 'Oh!\rCindy a oublié son sac.', bub4l, '\rEt elle est déjà sur le terrain.', bub4r, '\rJ\'ai croisé son père. Je le lui donnerai.', bub4r, 'Mince,\rOù sont Tina et Sarah?', bub4l, '\rLe match démarre dans 5 minutes !', bub4l, '\rJe vais les chercher', bub4r, 'Oh!\r Tu vas râter le meilleur!', bub4l, '\rRegarde !\r Ca commence.', bub4l, '\rOh!\rMon!\rDieu!', bub4r, '\rDélicieux !\r N\'est-ce pas ?', bub4l, '', 0, '', 0, '', 0, '', 0, '', 0, '', 0, '', 0, '', 0, 'Génie de l\'informatique et voyeur. Son père est cadre dans une grosse entreprise de software. $$$', 0, 'Petite bombe latina. Elle se cache derrière de pudiques lunettes.', 0, 'Timide rat de bibliothèque, ses parents l\'ont inscrite dans l\'équipe dans l\'espoir de la faire s\'épanouir.', 0, 'La nouvelle de l\'école. Elle ne connait pas encore son rang social à la fac. Elle a fait voeu d\'arriver vierge au mariage.', 0, 'Aussi loin que chacun se souvienne, Jenny était en couple avec son petit ami plus âgé. Une fois diplômé, il s\'est engagé et a été envoyé en Afghanistan. Il l\'a larguée quand elle a voulu l\'épouser avant son départ.', 0, 'Capitaine de l\'équipe, forte et dominante. Les études ne sont cependant pas son point fort.', 0, 'Athlète émérite et le rêve de toutes les filles', 0, 'Le pote de Brad, mais aussi son rival, à la fois sur et hors du terrain.', 0, 'Petite par la taille, mais pleine de surprises.', 0, '', 0, 'Match dans 5 minutes', 0, 'Bienvenue à Lucas field', 0, 'Pour notre grand match du jour', 0, 'Xavier High vs Lincoln High', 0, 'Avec les deux meilleurs demis de mêlée de l\'état', 0, 'Brad White de X high', 0, '', 0, 'contre Tony Ballermo de Lincoln', 0, '', 0, 'Ce soir, les deux meilleures équipes de l\'état s\'affronteront', 0, 'Dans un match mémorable!', 0, 'Un petit mot de nos partenaires', 0, 'Nous vous prions de nous excuser pour ces difficultés techniques.', 0, '', 0, '\rhum...\r OK. ', bub4r, '\rJe ne bois pas.', bub4r, '\rJe vais chercher à boire.', bub4l, '\rC\'est ta bouteille perso?', bub4l, '\rHoooo \rOui!', bub4r, '\rElle et moi\rC\'est pour la vie.', bub4l, 'Allez,\r Invite Jana à danser!', bub4r, 'Je ne sais pas.\rJe crois qu\'elle ne m\'aime pas.', bub4l, 'Conneries!\r Toutes les filles t\'aiment!', bub4r, '\rLe dominant, dans le coin, c\'est toi.', bub4r, '\rTu peux avoir celle que tu veux.', bub4r, 'Un verre pour le courage. Et pour toi, ce sera un double.', bub4r, '\rOh !\rNon ! ', bub4l, '\rEcoute.', bub4r, '\rOn dirait que ça va être à toi', bub4r, 'de faire le\rpremier pas... Tu sais, avec Brad.', bub4r, 'Tu vas devoir\rfaire mieux que cet après-midi, à la fac.', bub4r, '\rMaintenant, il a peur de t\'accoster.', bub4r, '\rTu l\'aimes bien,\r non?', bub4r, '\rOh oui!', bub4r, 'Tu veux\rle rencontrer,\r non?', bub4r, '\rOh oui!\r Je le veux, lui!', bub4r, 'OK alors,\rBois !\rPour le courage.', bub4r, 'Hé,\rOù est Cindy?', bub4l, '\rOh !\rT\'as pas entendu?', bub4r, 'Cindy\r s\'est fait prendre par son père.', bub4r, 'Il aurait trouvé\rune boite de capotes dans son sac à main. ', bub4r, '\rOuhou ! ', bub4l, '\rUne boite de vingt quatre, ', bub4r, '\rEt il n\'en restait qu\'une !', bub4r, '\rHa ha ha! ', bub4l, '\rPrivée de sortie... A vie !', bub4r, 'Allez mon pote,\r T\'es sur le point d\'entrer\rsur le ring.', bub4r, '\rVas-y,\rInvite-la à danser.', bub4r, 'Vas-y,\rInvite-le à danser!', bub4l, 'Heu....\r Tu veux danser?', bub4l, '\rOui.', bub4r, 'Héhéhé.\rJe dois aller au p\'tit coin.', bub4l, '\rOù sont les....', bub4l, '\rViens, on y va ensemble.', bub4l, 'Jenny, t\'es saoule. Ne sois pas embarassante.', bub4r, '\rOh tais-toi un peu.', bub4l, '\rEt profite du spectacle.', bub4l, '\rCa devient bien trop bruyant ici.', bub4l, 'Que penses-tu d\'un endroit plus calme?', bub4r, '\rCindy!', bub4r, '\rJ\'ai fait le mur.', bub4l, '\rC\'est quoi ce manteau?', bub4r, 'Mon cher père\ra verrouillé mon dressing,', bub4l, 'pour que je ne puisse pas m\'échapper.', bub4l, 'Dommage pour lui, j\'avais planqué ce manteau sous mon lit.', bub4l, 'Vous avez l\'air chauds... Comme la braise.', bub4l, 'Hé Cindy,\rT\'aurais des capotes?', bub4r, '\rHum!', bub4r, '\rCindy,\rTire-toi !', bub4l, '\rEt là ? Quelque chose pour moi ?', bub4r, 'Quelle surprise,\ron dirait que le chien a son os!', bub4r, '\rCa te dit ?', bub4r, '\rGrimpons au premier.', bub4r, '\rEnlève-la !', bub4r, '\rEnlève-la !', bub4l, 'Jenny\r Tes seins sont magnifiques !', bub4l, '\rMontre-les nous.\rS\'il te plait !', bub4l, '\rOh vous voulez les voir, hein?', bub4l, '\rOk, pas de souci.', bub4l, 'Mais,\rmontrez-moi les votres d\'abord!', bub4l, 'Non p\'tit mec!\r Je veux voir vos queues.', bub4l, '\rJe ne me désapperai pas', bub4l, 'Tant que vous ne serez pas à poil, vous branlant pour moi.', bub4l, '\rTu veux jouir sur moi?', bub4l, 'Allez.\r fais-moi voir un peu.', bub4l, '\rSi tu veux voir mes seins', bub4l, '\rJouis pour moi.', bub4l, 'Whoa !\rPas si vite !', bub4l, '\rA poil !', bub4r, '\rOk !', bub4r, '\rMais...', bub4r, 'Si vous me\rvoulez nue, vous devez tous l\'être aussi !', bub4r, 'Allez les mecs.\rNe soyez pas timides.', bub4r, '\rMontrez-moi vos bites.', bub4r, 'Hum...\rOù sont les toilettes ?', bub4r, 'Verrouillées\r depuis une bonne demie heure.', bub4l, 'Des gens\r doivent y être occupés.', bub4l, '\rEssaie à l\'étage.', bub4l, '\rOk,\rMerci.', bub4r, 'Hé,\roù donc est Buckman?', bub4r, 'Yeah.\r Il râte une de ces fiestas !', bub4r, '\r Fermée !', bub4l, '\r Ahhh !', bub4r, 'Forçons la dose, pour les échauffer un peu.', 18, 'Sarah est presqu\'à point !\rEncore un peu plus.', 19, 'Là...\rCa devrait faire tomber sa culotte!', 18, 'Bon mon p\'tit\rBrad, on va s\'assurer que tu sois en forme.', bub5r, '\rOh !\r Pardon! ', bub4r, '\rHein?', bub4l, '\rJe cherche les toilettes.', bub4r, 'Je dois\r absolument faire pipi !', bub4r, 'Et tous\rles WC sont verrouillés!', bub4r, 'Merde!\rJe croyais avoir fermée celle-ci!', bub4l, 'Ok.\rIl y en a ici.', bub4l, '\rJuste là.', bub4l, '\rOh merci beaucoup!', bub4r, 'Oh,\rQu\'elle est mignonne! ', bub4r, '\rMon dieu !', bub4l, '\rHaa!', bub4r, '\rC\'est trop bon !', bub4l, 'Je me sens\rexcitée rien qu\'à regarder.', bub4l, 'Je ne t\'ai pas entendue approcher.', bub4r, '\rJe peux rester ?', bub4l, '\rS\'il te plait?', bub4l, '\rOh...\rJe vois.', bub4r, '\rNe t\'en fais pas mon chou.', bub4r, '\rNe t\'inquiète pas.\rJ\'en ai envie aussi.', bub4r, '\rLaisse-moi faire.', bub4r, '\rC\'est bon ?', bub4r, '\rTu m\'aimes ?', bub4r, 'Ohhhh Oui,\r mais...', 6, 'Je suis occupé.\rIl faut que...', 6, 'C\'est très important !', 6, 'Non,\rPas maintenant.', 6, '\rTu veux toucher ma chatte ?', bub4r, 'Oh regarde!\rBrad et Jana ont bougé !', bub4r, 'Il faut\rles remettre dans le cadre!', bub4r, 'Oui.\r Un petit coup de zoom.', bub4r, '\rWaho!\r Tu es douée!', bub4l, 'Là,la fête\rdevient vraiment très chaude !', bub4l, 'Il faut\rabsolument que je fasse ça maintenant.', bub5l, 'On pourrait...\rHeu...\rremettre ça.', bub4l, '\rJe comprends.', bub4r, 'Oh,\r je suis trempée maintenant!', bub4r, '\rTu sens combien je mouille?', bub4r, 'Ta queue me défoncerait sans peine.', bub4r, 'Oh,\r Je la veux!\rIci et maintenant!', bub4r, 'Allez.\rTu veux qu\'on baise?', bub4r, '\rContente-toi de regarder l\'écran,', bub4r, '\rJe m\'occupe de toi en dessous.', bub4r, 'Alors, c\'est comment?\rTu vas jouir?', bub4r, '\rTu veux jouir dans ma bouche?', bub4r, '\rOh mon Dieu!\r Jussste à t-temps!!', bub4r, 'Là,\rLaisse-moi guider.', bub4l, '\rJe veux que tu me touches.', bub4l, '\rTouche mon...', bub4l, 'Oh!\r Mais je n\'ai jamais...', bub4r, '\rAllez...', bub4l, '\rTouche-le.', bub4l, 'Encore.\rMais serre-le un peu cette fois.', bub4l, '\rTu sens comme c\'est raide ?', bub4l, '\rOui.', bub4r, 'Et là,\r tu sens comme il est long?', bub4l, '\rOoooh.', bub4r, '\rTu aimes ?', bub4l, '\rHeu...\rOui.', bub4r, 'C\'est\rsi bon quand\rtu me carresses.', bub4l, '\rTu apprécies ?', bub4l, '\rOh oui!', bub4l, '\rOuiii !\r Comme ça.', bub4l, '\rDéboutonne mon pantalon.', bub4l, '\rOh!', bub4r, '\rFais-le!', bub4l, '\rCarresse-moi.\rS\'il te plait!', bub4l, '\rAllez, viens.', bub4l, 'Tu\r n\'as plus à être timide maintenant.', bub4l, '\rVeux-tu qu\'on...', bub4l, 'Oooh oui.\rJe te veux en moi.', 6, '\rCa ne rentrera pas!', bub4l, '\rNon! Ca le doit!', 5, '\rEssaie encore.', 5, 'Non!\rViens en moi !', 5, '\rTu ne peux pas faire mieux ?', bub4r, '\rOk?', 18, '\rJe ne sais pas pourquoi j\'aime ça,', bub4r, 'Mais j\'adore\r sentir ta queue dans mon cul!', bub4r, '\rVas-y doucement,\rTrès lentement.', bub4r, '\rOooh \roui.', bub4r, '\rTu peux le sentir serré autour de toi?', bub4r, '\rOoohhh\roui.', bub4r, '\rPlus profond.', bub4r, '\rOohhhh!\rPlus vite!', bub4r, '\rC\'est tout?', bub4r, 'Je ne vois\rqu\'un petit bout de chair pâle.', bub4r, '\rToi!', bub4r, '\rQu\'\'est-ce que tu caches?', bub4r, 'Hé, le poète.\rNe sois pas timide.', bub4r, '\rMontre-nous.', bub4r, 'Ok.\rJe vais te filer un petit coup "de main".', bub4r, 'On t\'a déjà dit,\rque tu étais très mignon!', bub4r, '\rViens là chéri.', bub4l, '\rWhao!\r Arrête-toi.', bub4l, 'Mmmmh,\rTes cehveux sentent si bons!', bub5, 'Ooh!\rT\'es vraiment trop chou!', bub4l, 'Ha...\rJe vais jouir.', bub4l, 'Hum...\rC\'est bon pour toi?', bub4l, 'Et tellement prévenant\ravec ça !', bub4r, '\rJ\'attends...', bub4r, 'Tous à poil\rou bien je rentre chez moi...', bub4r, '\rMoi, moi!', bub4l, '\rNon moi!', bub4l, '\rJe veux jouir sur tes seins!', bub4l, 'Jenny!\rSuce ma bite!', bub4l, '\rJenny!\rJenny!', bub4l, 'Laisse-moi\rte baiser pendant que tu le suces!', bub4l, 'Aucun de vous n\'a plus le droit de me pénétrer!', bub4l, '\rSinon "Junebug".', bub4l, '\rLui, il peut.', bub4l, 'Je suis en train de tomber amoureuse !', bub4l, 'Ca te dirait d\'être\r Mon nouveau petit ami ?', bub4l, '\rHein ?', bub4r, '\rWaho!\rAbsolument!', bub4r, '\rQue dois-je faire ?', bub4r, '\rJe veux que tu me baises.', bub4l, '\rFort et longtemps.', bub4l, '\rT\'es prèt à remettre ça?', bub4l, '\rHmmmm.', bub4l, '\rDéjà fatigué ?', bub4l, 'Ne t\'inquiète pas à propos de moi.', 5, 'Je suis un coureur de fond :', 6, 'Ca pourrait durer des heures comme ça.', 5, 'Tant que tu en as besoin ou le désires.', 5, '\rOooh!', bub4l, '\rJ\'aime mon nouveau mec !', bub4l, 'On dirait bien\rqu\'on n\'aura rien de tout ça!', bub4l, '\rPutain, non !', bub4r, '\rMais mate-moi ces seins !', bub4r, '\rJe veux jouir dessus !!', bub4r, 'Merde !\rMoi, sur son visage .', bub4r, '\rLa salope !\rMoi aussi!', bub4l, 'Ces deux\rreligieuses ont besoin de plus de glaçage !', bub4r, 'Allez !\rC\'est une fête !', bub4l, 'Lachez-vous !\rAmuse-vous !', bub4l, 'Je vais vous chercher à boire.', bub4l, '', 0]; news_text_French = ['Brèves de la fac :', 'Un professeur arrêté pour avoir eu des relations sexuelles avec une étdudiante.', 'La fille étant majeure, aucune poursuite ne sera engagée.', 'Elle a été renvoyée et interdite d\'examens tandis que le professeur se retrouve sans emploi.', 'Le demi de mêlée star de Lincoln High\'s contrôlé positif aux stéroïdes perd sa bourse.', 'Les preuves ont été communiquées par lettre anonyme.', 'Des bleus blessés en Afghanistan, un ancien de Xavier High blessé.', 'Une blessure massive occasionnée par une arme de poing.', '', 'Rumeurs et bruits de couloirs :', 'Xavier gagne le championnat national!', 'Malgré leur statut d\'outsider, Xavier a facilement battu Lincoln en finale.', 'Brad W., demi de mêlée et Jana J., nouvelle chef des Pom Pom girls annoncent leur mariage pour juin.', 'Les rumeurs vont bon train quant à la précipitation de cette décision.', 'Mike D., demi de mêlée a été vu trainant autour de centre de soins.', 'Après la dernière fête, tout le monde comprendra pourquoi.', 'Wayne Buckman a été nommé délégué des étudiants mais a du céder sa place, pour cause d\'accusations de voyeurisme.', 'Sa petite amie, Katrina P., seconde à l\'élection le remplace.', 'Jennifer B., ancienne Pom Pom girl, décroche un gros contrat d\'enregistrement avec un groupe local.', 'Le groupe : "Junebug" enregistrera son premier album à LA en juin.', 'Le single à venir : "Je ne suis pas un Emo (Mais tes cheveux sentent super bons)"', 'Tina F. et Sarah P. devraient participer à un talk show national.', 'Thème du débat : jeunesse saphique, cacher ou assumer ?.', '', 'Ce flash est sponsorisé par les pizzas Tony-Angelo,', 'voici leur slogan : La tarte, c\'est au poil!', '']; credits_text_French = ['Cheerleaders Party\r\r copyright 2009\rTous droits réservés', 'Conception du jeu par Puso\r\rTextes par Lucaboo2 & Puso', 'Musique & code associé par Virtualex\r\r tout autre code par Puso', '\'Jana In Love\'\r (le slow de Brad & Jana)\r Voix par Vera Poletaeva\r paroles et musique par Puso', 'Toute autre musiqiue par Virtualex', 'graphismes 2D & 3D par Puso\r\r Tous les modèles 3D créés sous Daz 3dstudio', 'Merci pour leurs avis constructifs sur le travail de Pusooy :\r\rCodo, Harryvh, Lucaboo2, Pawpaw, Superbookey, Ut1stgear, Virtualex, Zadok23', 'Merci aussi aux béta testeurs :\r\rDante101, Flashfiend, Forquer73, Olesbuch, Ramses, Sorrowson, Soursage, Ursulak', 'Traduction française par\r Drik127 ^^', 'Code de déblocage: xhi']; Italian = ['Non penso di poter aspettare fino a sabato.', 3, 'Che ne dici di un piccolo antipasto?', 3, '\rSono troppo arrapato.', 2, '\rEntra qui.', 2, '\rPerciò...prenderò quel 10 in Biologia?', 2, '\rUhhhhh...', 2, 'Se continui così dovresti prendere un buon voto.', 2, 'x', 2, 'y', 13, 'z', 3, '\rAllora, li vale quei 50 dollari?', b4r, 'Oh sì. \\Non vedo l\'ora guardarmelo tutto a casa!', bub4l, 'Come ci sei riuscito? \\Sei un mago della tecnologia!', bub4l, 'Quindi la festa è a casa tua dopo la partita?', bub4l, '\rSì. \rE\' tutto pronto', bub4r, 'Ho un bimbo di birra e una cassa di tequila.', bub4r, 'Una cassa?\\Sarà una festa da paura!', bub4l, '', 0, '', 0, '', 0, 'Se non ti conoscessi bene, penserei che tu sia innamorata|', 13, 'E\' così incantevole.', 11, 'Non te l\'hanno ancora nemmeno presentato!!', 10, '\rRagazzi! E\' così sexy', 13, 'Di gran lunga la ragazza più figa della scuola.', 12, '\rCome si chiama?', 3, '"Jana." E\' nel mio corso di storia.', 11, '\rJana, mmmmm.', 3, '', 0, '', 0, '\rOh. Ciao Cindy.', 13, '\rCindy!', 13, '\rCos\'hai sulla gonna?', 13, '\rQuella Cindy è proprio una porca.', 13, '\rOgni scuola ha la sua grande troia', 12, 'Pare che la nostra sia la capo cheerleader.', 12, 'Ben fatto con Cindy!', 10, 'Oh, grazie, credo...', 11, 'Perché non vai a parlare con Brad?', 13, 'Penso che sia interessato.', 10, 'Oddio no! Sono troppo timida.', 11, 'Mi paralizzerei. Io...io...morirei!', 12, '\rVabbè, è ora di andare.', 3, 'Ohi, ciao. Sei la ragazza nuova vero?', 3, '\rSta parlando con me?', 15, '\rOh no!', 15, '\rSono in ritardo per le lezioni.', 15, '\rMa che...', 3, '\rSono così stupida!\rSono così stupida!', 16, 'Perché devo essere così timida?!', 11, 'Ho appena mandato tutto a rotoli.', 11, 'After School', 0, 'Before the Game', 0, 'Victory!', 0, 'See you at the party!', 0, 'Click here to play part 1 again', 0, 'Press the space bar again to continue playing.', 0, '', 0, '', 0, '', 0, 'Che mi prenda un colpo se non è il grande e grosso quarterback!', bub4l, '\rJenny!', bub4r, 'Pronto a perdere contro la X High stasera?', bub4l, '\rAh! Ti piacerebbe!', bub4r, 'Non hai sbagliato scuola?', bub2l, 'Sono solo venuto in anticipo per controllare il campo.', bub4r, 'Dov\'è quel grand\'uomo del tuo ragazzo?', bub4r, 'Sembra sempre che ti stia incollato per controllarti.', bub4r, 'Ragazzo? Quale ragazzo?', bub2l, 'Quello stronzo è in Afganistan adesso.', bub2l, 'Spero che gli facciano saltare il pisello!', bub2l, 'Quindi sei libera?', bub2r, 'Vacci piano dolcezza', bub2l, 'Sai, ho appena ottenuto una\rborsa di studio completa dallo Stato', bub4r, 'Completamente gratuita', bub2r, 'Credo che\rquando hai abbastanza talento,', bub4r, '\rLe cose cadano ai tuoi piedi.', bub2r, 'E tu, ragazza mia, hai talento da vendere!', bub2r, '\rTu ai miei piedi?', bub3l, 'Piccola, ti sto supplicando.', bub2r, 'Le chiavi della stanza degli attrezzi.', bub3l, 'E\' un mito da queste parti.', bub3l, 'Mmmm, \r duro come la roccia.', bub3r, 'Ohhh, \r braccia d\'acciaio!', bub3r, 'Mmmm, \r addominali come il granito!', bub3r, '\rEhi! E questo cos\'è?', bub3r, '\rHai una pannocchia nei pantaloni?', bub4r, 'Ahah,\\imburrala piccola.', bub3l, 'Ok.\rFai pure.\r So che stai morendo per queste.', bub4r, 'Stanno perfettamente tra le mie mani!', bub4l, 'E\' come reggere due palloni da football', bub3l, '\rYuhuu cowboy!', bub4r, '\rVoglio scoparmi le tue tette di nuovo.', bub4r, '\rQuesta volta fammi venire.', bub4r, 'Leccalo!', bub6, 'Ora succhialo!', bub6, 'Allora. Dove mi porti dopo la partita?', bub4l, 'Oh, piccola mi spiace.\rHo già un appuntamento dopo la partita', bub4r, '\r Stronzo!', bub4l, '', 0, '\rEhi Sarah tutto bene? Che succede?', bub4l, '\rN-no, tutto ok...cioè...insomma...voglio dire...', bub4l, '\rE\' per la cerniera. Non...Non riesco...', bub4l, 'Ecco fatto.\rPiù facile di quanto pensavi.', bub4l, 'Gr-grazie Tina... Sarei persa senza di te.', bub4r, 'Sento che c\'è qualcosa che non va. Che sta succedendo?', bub4l, 'Niente!\rAssolutamente... Beh, insomma, io... io...', bub4r, 'E\'...è la solita vecchia storia. Tutte voi sembrate così carine, così perfette,', bub4r, 'Mentre io... io sembro strana. Che ci faccio qui? Non c\'entro nulla.', bub4r, 'Piantala ti dire scemenze. Vieni qui. Guarda nello specchio.', bub4l, 'Ecco qui.\r Ora dimmi, \rcosa vedi?', bub4l, 'Vedo... \r Me stessa \r Me stessa in mutande...', bub4r, 'NO! \rIo vedo una bellissima ragazza,,', bub4l, 'Che ogni ragazzo della scuola vorrebbe stringere tra le sue braccia', bub4l, 'Vedo un fantastico corpo snello degno di una modella,', bub4l, 'Un corpo sexy che molte ragazze invidierebbero', bub4l, 'Ma...\rMa io non sono come te... o Jenny...', bub4r, 'No?\rBeh, io penso di SI invece.', bub4l, 'Mmm, sono così deliziosamente soffici.', bub4l, '\rProprio come queste.', bub4l, 'Non c\'è niente che non vada con il tuo corpo, dolcezza.', bub4l, 'Dobbiamo amarli ed esserne fiere dei nostri corpi! Sono così belli.', bub4l, 'I ragazzi di certo vorrebbero toccarli e accarezzarli.', bub4l, '\rE anche molte ragazze', bub4l, 'Ecco,\rforza toccami le tette', bub4l, '\rAdorabili, proprio come le tue', bub4l, '\rOhhhhh...', bub4r, '', 0, '', 0, '', 0, '\rEhi voi due!', bub4r, 'Forza!\r La partita sta per iniziare!', bub4r, 'Oh!\r Cindy ha lasciato la sua borsa qui.', bub4l, '\rMa è già sul campo.', bub4r, '\rHo appena visto suo padre. La vado a dare a lui.', bub4r, 'Ehi\rdove sono Tina e Sarah?', bub4l, 'La partita sta quasi per iniziare!', bub4l, '\rVado a cercarle', bub4r, 'Oh\r Ma ti perderai il grande spettacolo!', bub4l, 'Guarda!\r Sta iniziando', bub4l, 'Oh! Mio! Dio!', bub4r, 'Splendido!\r No?', bub4l, '', 0, '', 0, '', 0, '', 0, '', 0, '', 0, '', 0, '', 0, 'Genio del computer e guardone. Suo padre è un dirigente di una grande azienda di software $$$ ', 0, 'Una piccola latina bollente e tutto pepe. Si nasconde schiva dietro a degli occhiali.', 0, 'Un timido topo di biblioteca. I suoi genitori l\'hanno convinta a provare a fare la cheerleader sperando di farla uscire dal guscio', 0, 'La nuova ragazza della scuola. Non sa ancora dove si colloca nella scala sociale all\'interno della Xavier. Ha fatto voto di rimanere vergine fino al matrimonio.', 0, 'A memoria di tutti Jenny era impegnata con il suo fidanzato più grande di lei. Lui si è diplomato, è entrato nell\'esercito ed è stato spedito in Afghanistan. L\'ha mollata quando lei ha insistito perché si sposassero prima che lui partisse.', 0, 'Capo cheerleader, forte e dominatrice. Tuttavia i voti a scuola non sono il suo forte.', 0, 'Atleta di successo e sogno di ogni ragazza', 0, 'Amico di Brad, ma anche suo rivale, dentro e fuori dal campo.', 0, 'Piccola di taglia, ma piena di sorprese', 0, '', 0, '5 minuti all\'inizio del match', 0, 'Benvenuti al campo Lucas', 0, 'Per l\'imminente super sfida di stasera', 0, 'Xavier High vs Lincoln High', 0, 'A cui parteciperanno due dei migliori quarterback dello Stato', 0, 'Quello della Xavier Brad White', 0, '', 0, 'contro quello della Lincoln Tony Ballermo', 0, '', 0, 'Stasera saranno faccia a faccia le due migliori squadre del Paese', 0, 'In una partita da ricordare', 0, 'Ed ora una pausa offerta dai nostri sponsor', 0, 'Un momento prego... Stiamo avendo delle difficoltà tecniche.', 0, '', 0, '\rUm...\r Okay. ', bub4r, '\rI don\'t drink.', bub4r, '\rI\'ll get some drinks.', bub4l, '\rYou have your own bottle?', bub4l, '\rWooo!\rYeah!', bub4r, '\rMe and my Boo\rwe\'re real tight.', bub4l, 'Go ahead,\r ask Jana to dance!', bub4r, 'I don\'t know.\rI think she doesn\'t like me.', bub4l, 'Bullshit!\r All the girls like you!', bub4r, '\rYou’re the top dog around here.', bub4r, '\rYou can have any girl you want.', bub4r, 'You need a\rdrink for courage. I’ll get you a double.', bub4r, '\rOh!\rNo! ', bub4l, '\rListen.', bub4r, '\rIt looks as though it will be you,', bub4r, 'That is going to have to make the first move with Brad.', bub4r, 'You kind of\r blew it this afternoon in school.', bub4r, '\rNow he\'s afraid to talk to you.', bub4r, '\rYou like him\rright?', bub4r, '\rOh yes!', bub4r, 'You want\r to meet him\rright?', bub4r, '\rOh yes!\r I want him!', bub4r, 'Okay then,\rDrink!\rFor courage.', bub4r, 'Hey,\rwhere is Cindy?', bub4l, '\rOh!\rYou didn\'t hear?', bub4r, '\rCindy got busted by her Dad. ', bub4r, 'Seems he\rfound a box of condoms in her purse. ', bub4r, '\rWoooo! ', bub4l, '\rIt was a twenty four pack, ', bub4r, '\rAnd there was only one left!', bub4r, '\rHa ha ha! ', bub4l, '\rNow she\'s grounded for life.', bub4r, 'Drink up my man,\r You\'re about to go\rinto battle.', bub4r, '\rGo on,\rAsk her to dance.', bub4r, 'Go on,\r Ask him to dance!', bub4l, 'Um....\r do you want to dance?', bub4l, '\rYes.', bub4r, '\rHeehee.\rI have to pee.', bub4l, '\rWhere is the....', bub4l, '\rI\'ll help you find it.', bub4l, 'Jenny,You\'re drunk. Don\'t be embarrassing.', bub4r, '\rOh shut up lonely boy.', bub4l, '\rJust enjoy the show.', bub4l, '\rIt sure is getting noisy in here.', bub4l, 'Can we go somewhere quieter?', bub4r, '\rCindy!', bub4r, '\rI managed to sneak out.', bub4l, '\rWhat\'s with the coat?', bub4r, 'My dear Dad\rlocked all of my clothes in the closet,', bub4l, '\rso I wouldn’t sneak out.', bub4l, 'I stashed one of Mom’s coats under the bed though.', bub4l, '\rYou two sure look... horny.', bub4l, '\rHey Cindy,\rGot any condoms?', bub4r, '\rHumh!', bub4r, '\rCindy,\rGo away!', bub4l, '\rGot anything there for me?', bub4r, 'I\'m surprised,\rbut the dog\'s got a bone!', bub4r, '\rYou want to?', bub4r, '\rLet\'s go upstairs.', bub4r, '\rTake it off!', bub4r, '\rTake it off!', bub4l, 'Jenny\r you have the most awesome tits!', bub4l, '\rShow them to us.\rPlease!', bub4l, '\rOh you want to see them do you?', bub4l, '\rOkay, no problem.', bub4l, 'But,\ryou have to show me yours first!', bub4l, 'No boy!\r I want to see your thang.', bub4l, '\rI ain\'t showin\' you nothin\'', bub4l, 'Not until you\'re buck naked and stroking your dick.', bub4l, '\rYou want to jack off on these?', bub4l, '\rCome on now.\r Let’s see it.', bub4l, '\rIf you want to see my tits', bub4l, '\rJack off for me.', bub4l, 'Whoa!\rNot so quick!', bub4l, '\rLet\'s see them!', bub4r, '\rSure!', bub4r, '\rBut...', bub4r, 'If you want me naked, then y\'all gotta be naked too!', bub4r, '\rCome on now.\rDon\'t be shy.', bub4r, '\rLet\'s see those dicks.', bub4r, 'Ummm...\rWhere is the bathroom?', bub4r, 'It\'s been\r locked for about half an hour.', bub4l, 'I think\r some one\'s getting busy in there.', bub4l, '\rTry upstairs.', bub4l, '\rOkay,\rThanks.', bub4r, 'Hey,\rWhere\'s Buckman?', bub4r, 'Yeah.\r He\'s missing the best party ever!', bub4r, '\r Locked!', bub4l, '\r Ahhh!', bub4r, 'Maybe just one more shot to get them loose.', 18, 'Sarah is almost ready!\rMaybe one more.', 18, 'There.\rThat should get her panties down!', 18, 'Allright Brad!\r Let\'s be sure you\'re up for the task.', bub4r, '\rOh!\rSorry! ', bub4r, '\rHuh?', bub4l, '\rI was looking for a bathroom.', bub4r, '\rI desperately have to pee!', bub4r, 'And the\rbathrooms are all locked or lost or something!', bub4r, 'Jeez!\rI thought I locked that door!', bub4l, 'Okay.\rThere\'s one in here.', bub4l, '\rOver there.', bub4l, '\rOooooo thanks!', bub4r, '\rOooo,\rShe\'s so cute! ', bub4r, '\rOh! God!', bub4l, '\rHuh!', bub4r, '\rThat is just so hot!', bub4l, 'I’m feeling\ra tingle just looking at it.', bub4l, '\rI didn\'t hear you come in.', bub4r, '\rCan I watch?', bub4l, '\rPlease?', bub4l, '\rOh...\rI see.', bub4r, '\rDon\'t worry Sweetie.', bub4r, '\rIt’s all right.\rI’m turned on too.', bub4r, '\rLet me do this.', bub4r, '\rIs that good?', bub4r, '\rDo you like me?', bub4r, 'Ohhhh yeah,\r but...', 6, 'I\'m busy now.\rI need to...', 6, 'This is important!', 6, 'I can\'t,\rnot now.', 6, '\rDo you want to feel my pussy?', bub4r, 'Oh look!\rBrad and Jana moved!', bub4r, 'You need\rto pan over to get them in frame!', bub4r, 'Yes.\r Now zoom in a little.', bub4r, '\rWow!\r You get it!', bub4l, '\rThe party is really getting wild now!', bub4l, '\rI really need to do this right now.', bub4l, 'We can...\rUmmmm...\rSome other time.', bub4l, '\rI understand.', bub4r, '\rOh, you\'re making me so hot now!', bub4r, '\rCan you feel how wet it is?', bub4r, 'Your penis\rwould slide right in so easily.', bub4r, 'Oh,\r I want it!\rI want it now!', bub4r, 'Let\'s do it.\rDo you want to fuck?', bub4r, '\rJust keep your eye on the monitor,', bub4r, '\rI\'ll take care of things down here.', bub4r, 'How does that feel?\rAre you almost there?', bub4r, '\rDo you want to cum in my mouth?', bub4r, '\rOh my God!\r Jussst in t-time!!', bub4r, '\rHere,\rLet me.', bub4l, '\rI want you to feel me.', bub4l, '\rFeel my...', bub4l, '\rOh!\r But I\'ve never...', bub4r, '\rPlease...', bub4l, '\rTouch it.', bub4l, 'Again.\rThis time squeeze it a little.', bub4l, '\rFeel how hard it is?', bub4l, '\rUh huh.', bub4r, '\rNow feel how long it is.', bub4l, '\rOoooo.', bub4r, '\rDo you like it?', bub4l, '\rUhh...\rUh huh.', bub4r, 'It\rfeels so good\rwhen you touch it.', bub4l, '\rYou like it?', bub4l, '\rOh yes!', bub4l, '\rOh yes!\r Like that.', bub4l, '\rUnbutton my pants.', bub4l, '\rOh!', bub4r, '\rPlease!', bub4l, '\rRub it.\rPlease!', bub4l, '\rCome on now.', bub4l, 'You\r don\'t need to be shy anymore.', bub4l, '\rDo you want to...', bub4l, 'Oooo yes.\rI want you inside me.', 6, '\rIt won\'t go in!', bub4l, '\rNo! It has to fit!', 5, '\rTry again.', 5, 'No!\r Put it in!', 5, '\rIs that the best you can do?', bub4r, '\rOkay?', 18, '\rI don\'t know why I like it,', bub4r, '\rBut your cock feels so good in my ass!', bub4r, '\rFuck it slow,\rvery slow.', bub4r, '\rOooo \ryes.', bub4r, '\rCan you feel it squeezing you?', bub4r, '\rOoohhh\ryes.', bub4r, '\rNow deeper.', bub4r, '\rOohhhh!\rFaster!', bub4r, '\rIs that it?', bub4r, 'I only see\r one skinny little white thing.', bub4r, '\rYou!', bub4r, '\rWhat you hiding?', bub4r, '\rCome on Emo.\rDon\'t be shy.', bub4r, '\rLet\'s see it.', bub4r, 'Okay.\rLooks like you\'re gonna need a little help.', bub4r, '\rYou know,\r you’re real cute!', bub4r, '\rCome here honey.', bub4l, '\rWhoa!\r That\'s enough.', bub4l, 'God,\ryour hair smells great!', bub5, '\rOoo!\rThat\'s cute too!', bub4l, 'Uhh...\rI\'m going to cum.', bub4l, 'Umm...\rIs that alright?', bub4l, '\rYou are so sweet!', bub4r, '\rI\'m waiting!', bub4r, 'Y\'all gonna get naked, or do I go home?', bub4r, '\rMe next!', bub4l, '\rNo me!', bub4l, '\rI want to fuck your tits too!', bub4l, 'Jenny!\rSuck my cock!', bub4l, '\rJenny!\rJenny!', bub4l, 'Let me\rfuck you while you suck his cock!', bub4l, 'Ain\'t none of y\'all sticking nothing in side of me!', bub4l, '\rExcept Junebug here.', bub4l, '\rHe can have it.', bub4l, '\rI think I\'m in love!', bub4l, 'You want\r to be my new boyfriend?', bub4l, '\rHuh?', bub4r, '\rWow!\rSure!', bub4r, '\rWhat do I have to do?', bub4r, '\rI want you to fuck me.', bub4l, '\rFuck me hard and long.', bub4l, '\rYour pecker up for it?', bub4l, '\rMmmmm.', bub4l, '\rGetting tired yet?', bub4l, 'You don\'t have to worry about me getting tired.', 5, 'I\'m a distance runner.', 6, 'I can keep this pace for hours.', 6, 'As long as you need, or want.', 6, '\rOooo!', bub4l, '\rI love my new boyfriend!', bub4l, 'Looks like\rwe\'re not getting any of that!', bub4l, '\rFuck no!', bub4r, '\rLook at those fucking tits!', bub4r, '\rI want to cum on those babies!!', bub4r, 'Fuck!\rNow I want to cum on her face.', bub4r, '\rFuck!\rMe too!', bub4l, 'Those\rsugar tits need more frosting!', bub4r, '\rCome on!\r It’s a party! ', bub4l, 'Let loose\rand have some fun!', bub4l, '\rLet me get you both a drink.', bub4l, '', 0]; news_text_Italian = ['Local news headlines:', 'Science teacher arrested for allegedly having sex with a student at school.', 'Since the un-named girl was of legal age, no criminal charges were filed.', 'The girl was expelled and will not graduate. The teacher was fired.', 'Lincoln High\'s star quarterback fingered for using steroids, loses scholarship.', 'An anonymous person sent proof of the abuse to the school board.', 'Local soldier and Xavier High grad injured in Afghanistan.', 'He reportedly suffered a devastating groin injury from small arms fire.', '', 'Xavier High news and gossip:', 'Xavier wins State championship!', 'Inspite of their underdog status, Xavier easily defeated Lincoln in the final.', 'Star QB Brad W. and new head cheerleader Jana J. announce plans to wed in June.', 'Rumors swirl about the rushed decision.', 'Backup QB Mike D. was spotted sneaking into the free clinic recently.', 'This reporter can easily guess why after the recent party.', 'Wayne Buckman named class valedictorian, but steps down in voyeurism controversy.', 'Girlfriend Katrina P. was second in line and assumes the honor.', 'Former Cheerleader Jennifer B. gets big recording contract with local band.', 'The band: "Junebug" will begin recording their first album in LA this summer.', 'The carrier single will be: "I\'m Not Emo (but I think your hair\'s cute)"', 'Cheerleaders Tina F. and Sarah P. to appear on national talk show.', 'The topic of discussion: Teen Girls in Love.', '', 'News flash sponsored by Tony-Angelos Pizza,', 'Where their slogan is: Eat a pie today!', '']; credits_text_Italian = ['Cheerleaders Party\r\r copyright 2009\rAll rights reserved', 'Game design by Puso\r\rDialog by Lucaboo2 & Puso', 'Music seqencer & sound code by Virtualex\r\r All other code by Puso', '\'Jana In Love\'\r (Brad & Jana\'s slow dance)\r Vocal by Vera Poletaeva\r Words & music by Puso', 'All other music by Virtualex', '2D & 3D art by Puso\r\r All 3D characters created using Daz 3dstudio', 'Thanks to the Pusooy Mods as design consultants:\r\rCodo, Harryvh, Lucaboo2, Pawpaw, Superbookey, Ut1stgear, Virtualex, Zadok23', 'Thanks also to the beta testers:\r\rDante101, Flashfiend, Forquer73, Olesbuch, Ramses, Sorrowson, Soursage, Ursulak', 'Tialian translation by: ', 'Secret unlock code: xhi']; Spanish = ['No creo que pueda esperar hasta el sábado.', 3, '¿Qué tal un pequeño adelanto?', 3, '\rYa estoy demasiado excitado.', 2, '\rAquí mismo.', 2, '¿Así tendré mi sobresaliente en biología?', 2, '\rUhhhhh...', 2, 'Si sigues así seguro que lograrás una buena nota.', 2, 'x', 2, 'y', 13, 'z', 3, '\r¿Se merece esto esos 50 pavos o no?', b4r, '¡Oh, sí!\r¡Qué ganas tengo de llegar a casa para verlo entero!', bub4l, '¿Cómo lo conseguiste?\r¡Eres un genio!', bub4l, 'La fiesta es en tu casa, ¿no?\rDespués del partido.', bub4l, '\rSí.\rYa lo tengo todo preparado.', bub4r, 'Conseguí\rcervezas y una caja de tequila.', bub4r, '¿Una caja?\r¡Va a ser una fiesta salvaje!', bub4l, '', 0, '', 0, '', 0, 'Si no te\rconociera mejor, pensaría que estás enamorada.', 13, 'Es que es un chico tan encantador...', 11, 'Pero si ni siquiera has hablado con Brad.', 10, '\rTío, ¡Qué buena está!...', 13, 'La tía más\rincreíble del instituto, seguro.', 12, '\r¿Cómo se llama?', 3, 'Jana,\rEstá en mi clase de historia.', 11, '\rJana, mmmmm.', 3, '', 0, '', 0, '\rOh. Hola Cindy.', 13, '\r¡Cindy!', 13, '\r¿Con qué te has manchado la falda?', 13, '\rEsa Cindy es una fácilona.', 13, '\rSiempre hay alguna guarrilla en todo instituto.', 12, 'La nuestra\rademás saca "muy buenas" notas.', 12, '¡Eso estuvo muy bien! Wow, como dejaste a Cindy...', bub4r, 'Uh, gracias...supongo', 11, 'Oye, ¿Por qué\rno aprovechas y hablas con Brad?', 13, 'Creo que está bastante interesado.', 10, '¡Oh,Dios,No! Me da mucha vergüenza.', 11, 'Me quedaría en blanco! y me...me...me moriría...!', 12, '\rBueno, ya es la hora.', 3, '\rHey, Hola. Tú eres la nueva, ¿no?', 3, '\r¿Me está hablando a mí?', 15, '\r¡Oh no!', 15, '\r¡Llego tarde a clase!', 15, '\r¿Pero qué...?', 3, '\rSoy tonta\r¡Soy tonta del todo!', 16, '¿Por qué tengo que ser tan tímida?', 11, 'He perdido mi oportunidad.', 11, 'Después de las clases', 0, 'Antes del partido', 0, '¡Victoria!', 0, '¡Nos vemos en la fiesta!', 0, 'Click aquí para jugar la parte 1 otra vez', 0, 'Presiona SPACE para seguir jugando.', 0, '', 0, '', 0, '', 0, '¡Hey,\rel quarterback más malote del equipo contrario!', bub4l, '\r¡Jenny!', bub4r, '¿Estás preparado para perder contra los nuestros hoy?', bub4l, '\r¡HA! ¡Ya te gustaría!', bub4r, '¿Qué haces aquí entonces?', bub2l, 'Solo vine para \rcomprobar el campo antes del partido', bub4r, '\r¿Dónde anda ese terrible novio tuyo?', bub4r, 'Parecía tu guardaespaldas, siempre detrás tuyo.', bub4r, '¿Novio?\r¿Qué novio?', bub2l, 'Le mandaron a Afghanistan.', bub2l, 'Espero que le vuelen las pelotas.', bub2l, 'Entonces,\r¿Estás libre?', bub2r, 'Cariño, libre como un pajarillo.\rPero yo no me lio con cualquiera.', bub4l, 'Acabo de\rconseguir una beca estatal completa.', bub4r, 'Sabrás que esas no se las dan a cualquiera.', bub2r, 'Supongo que cuando tienes suficiente talento...', bub4r, '...las cosas caen a tus pies por si solas.', bub2r, 'Y pequeña, tu tienes muuucho talento.', bub2r, '\r¿Tú a mis pies?', bub3l, 'Me muero por ti, pequeña...', bub2r, 'Las llaves\rdel cuarto de equipamientos.', bub3l, 'Es casi legendario entre los chicos de aquí.', bub3l, 'Mmmmm,\rduro como una piedra', bub3r, 'Ooooo,\r¡brazos de acero!', bub3r, 'Mmmmm,\rabdominales de granito', bub3r, '\rOooo, ¿Y esto?', bub3r, '\r¿Te creció una mazorca de maíz en los pantalones?', bub4r, 'Jeje, Si,\rengrasala bien, ya verás...', bub3l, '\rOk, Venga, sé que te mueres por ellas..', bub4r, 'Umm, caben en mi mano perfectamente...', bub4l, '\r¡Es como coger dos balones!', bub3l, '\r¡Whoa, cowboy!', bub4r, '\rQuiero follarme tus tetas otra vez.', bub4r, '\rEsta vez haz que me corra.', bub4r, 'Usa la lengüita...', bub6, '¡Ahora chupalo!', bub6, 'Bueno, ¿Y dónde me vas a llevar después del partido?', bub4l, 'Oh, lo siento pequeña, pero ya quedé para después.', bub4r, '\r¡Cabrón!', bub4l, '', 0, '\rSarah, ¿Estás bien? ¿Qué pasa?', bub4l, '\rN-no, bu...bueno...o s-sí...esto...', bub4l, '\rEs esta maldita cremallera. No p-puedo....', bub4l, 'Mira.\r¿Ves como no había problema?', bub4l, '\rGr-gracias, Tina. No sé qué haría sin tí.', bub4r, 'Creo que a ti te pasa algo más...¿De qué se trata?', bub4l, '\rNada! Absol...\rB-Bueno...yo...', bub4r, 'Es...es lo de siempre...Todas vosotras sois tan guapas, tan perferctas..', bub5r, 'Y yo...\rSoy un bicho raro...¿Qué hago aquí? Estoy fuera de lugar.', bub5r, 'Deja de decir tonterías. Mírate. Mira el espejo.', bub4l, '\rListo.\rDime que ves.', bub4l, '\rVeo...me...me veo a mi en ropa interior...', bub4r, '¡NO!\rYo veo a una chica preciosa,', bub4l, 'a la que cualquier chico del insti le gustaría tener entre sus brazos.', bub4l, 'Veo un bonito y delgado cuerpo, como el de una modelo,', bub4l, 'un cuerpo sexy que muchas chicas envidiarían.', bub4l, 'P-Pero\ryo no soy como tú...o como Jenny...', bub4r, '¿No?\rPues yo SI creo que lo eres.', bub4l, '\rMmmm, son tan tentadoras....', bub4l, '\rIgual que éstas.', bub4l, 'No hay nada de malo con tu cuerpo, boba.', bub4l, 'Debemos\rquereros y estar orgullosas de nuestros cuerpos, son tan bellos...', bub5l, 'Los chicos desean tanto tocarlos y acariciarlos...', bub4l, '\rY muchas chicas también.', bub4l, 'Mira,\rtoca las mias.', bub4l, '\rIgual de encantadoras que las tuyas.', bub4l, '\rOoooooo...', bub4r, '', 0, '', 0, '', 0, '\r¡Hey, vosotras dos!', bub4r, '¡Daos prisa!\r¡El partido va a empezar!', bub4r, '¡Oh!\rCindy se ha dejado el bolso aquí.', bub4l, '\rPero ella ya está en el campo.', bub4r, 'Acabo de ver a\rsu padre, yo se lo daré a él.', bub4r, '¡Oye!\r¿Dónde están Sarah y Tina?', bub4l, 'El partido\r está a punto de empezar.', bub4l, '\rYo iré a buscarlas.', bub4r, 'Espera,\rte perderás el gran comienzo.', bub4l, '\rMira, ya está empezando.', bub4l, '¡Oh\rDios\r Mío!', bub4r, '\rFantástico, ¿No crees?', bub4l, '', 0, '', 0, '', 0, '', 0, '', 0, '', 0, '', 0, '', 0, 'Friki informático y voyeur. Su padre es ejecutivo de una gran empresa de software. $$$', 0, 'Pequeña y picante latina. Se esconde tras sus gafas de intelectual.', 0, 'Una tímida empollona. Sus padres la presionaron para entrar en el equipo de animadoras intentando que hiciera amigas.', 0, 'La chica nueva. Todavía no sabe dónde encaja en el orden social del Instituto Xavier. Ha hecho voto de permanecer virgen hasta el matrimonio.', 0, 'Jenny llevaba toda la vida con el mismo novio. Hasta que él se graduó, se enroló en el ejército y lo mandaron a Afghanistan. Él la dejo cuando ella le propuso casarse antes de que se fuera', 0, 'Capitana de las animadoras, fuerte y dominante. Aunque pensar no es lo suyo.', 0, 'Estrella deportiva y el chico con el que todas sueñan', 0, 'Amigo de Brad, pero también su rival, tanto en el campo como fuera de él.', 0, 'Pequeña, pero llena de sorpresas.', 0, '', 0, '5 minutos para el partido', 0, 'Bienvenidos al Estadio Lucas Field', 0, 'Esta noche, en la superbatalla que nos aguarda', 0, 'Xavier High contra Lincoln High', 0, 'Con los quarterbacks estrella del Estado', 0, 'Brad White del X High', 0, '', 0, 'Y Tony Ballermo del Lincoln', 0, '', 0, 'Esta noche se enfrentan los mejores equipos del Estado', 0, '¡En un partido que pasará a la historia!', 0, 'Ahora, unas palabras de nuestros sponsors', 0, 'Un momento por favor, estamos experimentando dificultades técnicas', 0, '', 0, '\rUm...\r Ok. ', bub4r, '\rYo no bebo.', bub4r, '\rTraeré unas copas.', bub4l, '¿Tienes una botella para ti sola?', bub4l, '\rWooo!\rYeah!', bub4r, 'Yo y mi pequeña\restamos muy unidas.', bub4l, 'Venga tio,\r sac a Jana a bailar!', bub4r, 'No sé....\rCreo que no le gusto.', bub4l, '¡Tonterías!\r ¡Todas las tías van detrás tuya!', bub4r, '\r Eres el perro alfa.', bub4r, '\rPuedes tener a la tía que quieras.', bub4r, 'Necesitas un\r trago para animarte. Te traeré uno doble.', bub5r, '\rOh!\rNo! ', bub4l, '\rEscucha.', bub4r, '\rParece que vas a tener que ser tú,', bub4r, 'La que dé el primer paso con Brad.', bub4r, 'Antes...\r la cagaste en clase.', bub4r, '\rAhora le da miedo dirigirse a ti.', bub4r, '\rA ti te gusta\r¿verdad?', bub4r, '\r¡Claro!', bub4r, '\rQuieres hablar\rcon él ¿no?', bub4r, '\r¡Por supuesto!\r ¡Le quiero!', bub4r, 'Ok, entonces bebe!\rTe dará valor.', bub4r, 'Hey,\r¿Dónde está Cindy?', bub4l, '\r¡Oh!\r¿No lo sabéis?', bub4r, '\rSu padre la pilló. ', bub4r, 'Encontró una\rcaja de condones en su armario. ', bub4r, '\r¡Woooo! ', bub4l, '\rEra una caja de veinticuatro, ', bub4r, '\r¡Y solo quedaba uno!', bub4r, '\r¡Ha ha ha! ', bub4l, '\rEstará castigada de por vida.', bub4r, 'Bebe colega,\r Estás a punto de entrar en batalla.', bub4r, 'Venga,\rvé y sácala a bailar.', bub4r, 'Adelante,\r ¡Sácala!', bub4l, 'Um....\r ¿Te gustaría bailar?', bub4l, '\rClaro.', bub4r, 'Heehee.\rTengo que ir al baño.', bub4l, '\r¿Dónde está....', bub4l, '\rTe ayudaré a encontrarlo.', bub4l, 'Jenny,estás borracha. No montes un número.', bub4r, '\rOh,callate chico solitario.', bub4l, '\rDisfruta el espectáculo.', bub4l, '\rCada vez hay más escandalo.', bub4l, '¿Podríamos ir a algún sitio más tranquilo?', bub4r, '\r¡Cindy!', bub4r, '\rConseguí escabullirme.', bub4l, '\r¿Y esa gabardina?', bub4r, 'Mi querido padre guardo toda mi ropa bajo llave,', bub4l, 'para que no pudiera escaparme.', bub4l, 'Pero escondí esta gabardina de mi madre bajo la cama.', bub4l, 'Se os ve...\rbastante excitados.', bub4l, 'Hey Cindy,\r¿Tienes algún condón?', bub4r, '\r¡Humph!', bub4r, '¡Cindy,\r Quita de en medio!', bub4l, '\r ¿Tienes algo para mí?', bub4r, 'No te lo creerás,\r¡Pero este perro tiene un hueso!', bub4r, '\r¿Lo quieres?', bub4r, '\rVamos arriba.', bub4r, '\r ¡Quítatelo!', bub4r, '\r ¡Quítatelo!', bub4l, 'Jenny\r tienes las mejores tetas del insti!', bub4l, '\r Enséñanoslas.\r¡Por favor!', bub4l, '\rOh, queréis vérmelas ¿eh?', bub4l, '\rOkay, no problem.', bub4l, 'Pero primero,\r tenéis que enseñarme vosotros algo a mi!', bub5l, 'No tío!\r Quiero verte el tanga.', bub4l, '\rNo vas a ver una mierda', bub4l, 'No hasta que estéis en bolas y machacandooslas.', bub4l, '\r ¿Quieres pajearte en éstas?', bub4l, '\rBien.\r Veamoslo.', bub4l, '\rSi quieres mis tetas', bub4l, '\rMachacatela para mi.', bub4l, 'So!\r¡No tan rápido!', bub4l, '\r ¡Veámoslas!', bub4r, '\r¡Por supuesto!', bub4r, '\rPero...', bub4r, 'Si me queréis desnuda, tendréis que desnudaros todos!', bub4r, '\rVengaaa.\rNo seáis timidos.', bub4r, '\rVeamos esas pollas.', bub4r, 'Ummm...\r¿Dónde está el baño?', bub4r, 'Ha estado\r cerrado más de media hora.', bub4l, 'Creo\r que alguien está muy ocupado hay dentro.', bub4l, '\rPrueba arriba.', bub4l, '\rOk,\rGracias.', bub4r, 'Hey,\r¿Dónde está Buckman?', bub4r, 'Sí. ¡Se está perdiendo la mejor fiesta de todos los tiempos!', bub4r, '\r ¡Está cerrado!', bub4l, '\r ¡Ahhh!', bub4r, 'Quizás con un chupito más se aflojen.', 18, 'Sarah casi está a punto\rUno más...', 18, 'Así.\rEso debería hacer caer sus bragas', 18, 'Muy bien Brad\r Asegurémonos de que estás preparado.', bub4r, '\r¡Oh!\r¡Lo siento! ', bub4r, '\r¿Huh?', bub4l, '\r Estaba buscando el baño...', bub4r, '\r¡Necesito mear urgentemente!', bub4r, 'Y todos\rlos baños están cerrados, o se han perdido, o algo...!', bub5r, 'Joder!\r Creía que había cerrado la puerta!', bub4l, 'Ok.\rHay uno aquí.', bub4l, '\rJusto ahí.', bub4l, '\rOooooo ¡gracias!', bub4r, '\rOooo,\r¡Es tan mona! ', bub4r, '\r¡Oh! ¡Dios!', bub4l, '\r¡Huh!', bub4r, '\r¡Eso está al rojo!', bub4l, '\rMe estoy poniendo tan solo mirando.', bub4l, '\rNo te oi entrar.', bub4r, '\r¿Puedo mirar también?', bub4l, '\r¿Por favor?', bub4l, '\rOh...\rYa veo.', bub4r, '\rNo te preocupes cariño.', bub4r, 'No pasa nada.\rYo también estoy excitada.', bub4r, '\rDejame ayudarte.', bub4r, '\r¿Está bien así?', bub4r, '\r¿Yo te gusto?', bub4r, 'Ohhhh claro,\r pero...', 6, 'Ahora estoy ocupado.\rNecesito...', 6, '¡Esto es importante!', 6, 'No puedo,\rahora no.', 6, '\r¿Te gustaría sentir mi conchita?', bub4r, 'Oh mira!\rBrad y Jana se han movido!', bub4r, '¡Necesitas\renfocar para ponerlos a los dos en pantalla!', bub5r, 'Así.\r Ahora amplia un poco.', bub4r, '\rWow!\r Ahí lo tienes!', bub4l, 'Esta fiesta se está poniendo muy salvaje!', bub4l, 'De verdad necesito hacer esto ahora.', bub4l, 'Podemos...\rUmmmm...\ren otro momento.', bub4l, '\rLo entiendo.', bub4r, 'Oh, me estas poniendo muy caliente ahora mismo!', bub4r, '\r¿Puedes sentir lo húmedo que está?', bub4r, 'Tu polla se deslizaría dentro tan fácilmente...', bub4r, 'Oh,\r La quiero!\rla quiero ahora!', bub4r, '\rHagámoslo.\r¿Quieres follar?', bub4r, '\rTu mantén la vista en el monitor,', bub4r, '\rYo me ocuparé aquí abajo.', bub4r, '\r¿Cómo se siente?\r¿Estás a punto?', bub4r, '\r ¿Quieres correrte en mi boca?', bub4r, '\r¡Oh my God!\r ¡¡Justo a tiempo!!', bub4r, '\rAsí,\rDejame a mi.', bub4l, '\rQuiero que me sientas.', bub4l, '\rSiente mi...', bub4l, 'Oh!\r Pero yo nunca he...', bub4r, '\rPor favor...', bub4l, '\rTocalo.', bub4l, 'Otra vez.\rPero aprieta un poco ahora.', bub4l, '\r ¿Ves lo duro que está?', bub4l, '\rUh huh.', bub4r, '\rAhora siente lo largo que es.', bub4l, '\rOoooo.', bub4r, '\r¿Te gusta?', bub4l, '\rUhh...\rUh huh.', bub4r, '\rSe siente tan bien cuando tu lo tocas.', bub4l, '\r¿Te gusta?', bub4l, '\r¡Oh si!', bub4l, '\r¡Por supuesto!\r Me encanta.', bub4l, '\r Desabrocha el pantalón.', bub4l, '\r¡Oh!', bub4r, '\r¡Por favor!', bub4l, '\rAcaricialo.\r¡Por favor!', bub4l, '\rVenga.', bub4l, '\rNo tienes por qué estar nerviosa ya.', bub4l, '\rQuieres...?', bub4l, 'Oooo si. Te\rquiero dentro de mi.', 5, '\r¡No va a entrar!', bub4l, '\r¡No! ¡Si que cabe!', 5, '\rPrueba otra vez.', 5, '¡No!\r ¡Empuja!', 5, '\r¿Eso es lo mejor que puedes hacer?', bub4r, '\r¿Todo bien?', 18, '\rNo sé por qué me gusta tanto,', bub4r, 'Pero tu polla se siente maravillosa en mi culo!', bub4r, '\rHazlo despacio,\rmuy despacio.', bub4r, '\rOooo \rasí.', bub4r, '\r¿Lo sientes apretandote?', bub4r, '\rOoohhh\rsi.', bub4r, '\rAhora más profundo.', bub4r, '\rOohhhh!\r¡Más rápido!', bub4r, '\r¿Eso es todo?', bub4r, 'Solo veo una cosilla pálida y delgaducha.', bub4r, '\r¡Tú!', bub4r, '\r¿Qué estás escondiendo?', bub4r, '\rVen aquí Emo.\rNo seas tímido.', bub4r, '\rVeamos.', bub4r, 'Bien.\rParece que vas a necesitar un poco de ayuda.', bub4r, '\r¿Sabes? Eres bastante mono!', bub4r, '\rVen aquí dulzura.', bub4l, '\rWhoa!\r Es suficiente.', bub4l, 'Dios,\r¡Tu pelo huele genial!', bub5, '\rOoo!\r¡Qué monada!', bub4l, 'Uhh...\rVoy a correrme.', bub4l, 'Umm...\r¿Puedo?', bub4l, '\r¡Eres tan dulce!', bub4r, '\r¡Estoy esperando!', bub4r, '¿Os vais a desnudar o me tengo que ir a casa?', bub4r, '\r¡Me pido el próximo!', bub4l, '\r¡No yo!', bub4l, '\r¡Yo también quiero una cubana!', bub4l, '¡Jenny!\r¡Chúpamela a mí!', bub4l, '\r¡Jenny!\r¡Jenny!', bub4l, '¡Déjame follarte mientras se la chupas!', bub4l, '¡Ninguno de vosotros me va a tocar un pelo!', bub4l, 'Excepto este encanto, Junebug.', bub4l, '\rÉl puede hacer lo quiera.', bub4l, '\r¡Creo que me he enamorado!', bub4l, '¿Quieres ser mi nuevo novio?', bub4l, '\r¿Qué?', bub4r, '\r¡Wow!\r¡Claro!', bub4r, '\r¿Qué tengo que hacer?', bub4r, '\rQuiero que me folles.', bub4l, '\rFóllame largo y duro.', bub4l, '\r¿Podrás?', bub4l, '\rMmmmm.', bub4l, '\r¿Te estás cansando ya?', bub4l, 'No tienes que preocuparte por eso.', 5, 'Soy corredor de distancia.', 6, 'Puedo mantener este ritmo durante horas.', 5, 'Tanto como tu necesites, o quieras.', 5, '\r¡Oooo!', bub4l, '\r¡Me encanta mi nuevo novio!', bub4l, '¡Parece que nos vamos a quedar sin premio!', bub4l, '\r¡Ni de coña!', bub4r, '\r¡Mira esas pedazo de tetas!', bub4r, '\r¡¡Estoy deseando correrme en ellas!!', bub4r, '¡Joder!\rYo quiero correrme en su cara.', bub4r, '\r¡Mierda!\r, yo también!', bub4l, '¡Esas tetas de caramelo necesitan más cobertura!', bub4r, '\r¡Venga!\r ¡Es una fiesta! ', bub4l, '\r¡Soltaros y a divertirse!', bub4l, '\rYo voy a por las bebidas.', bub4l, '', 0]; news_text_Spanish = ['Titulares locales:', 'Profesor de ciencias detenido por mantener supuestamente relaciones sexuales con una alumna en el instituto.', 'Dado que la chica era mayor de edad, no se imputaron cargos penales.', 'La chica fue expulsada y no se graduará. El profesor fue despedido.', 'EL quarterback estrella del instituto Lincoln High acusado de usar esteroides, se le denegó la beca.', 'Un anónimo envió pruebas al consejo escolar.', 'Un soldado de la localidad, graduado en el Xavier High herido en Afghanistan.', 'Al parecer sufrió una grave lesión en la ingle por el fuego de una pequeña arma.', '', 'Noticias y cotilleos en el Xavier High:', '¡Xavier gana los campeonatos estatales!', 'A pesar de no ser los favoritos, Xavier venció fácilmente al Lincoln en la final.', 'El quarterback estrella Brad W. y la nueva capitana de animadoras Jana J. anuncian planes de boda para Junio.', 'Muchas teorías en cuanto a lo precipitado de la decisión.', 'El quarterback reserva Mike D. fue visto de incognito en el área de ETS del hospital.', 'Este reportero se imagina el porqué después de la fiesta que hemos visto.', 'Al alumno Wayne Buckman se le concede la graduación cum laude, pero al verse envuelto en una controversia de voyeurismo la rechaza.', 'Su novia Katrina P. ostentaba el segundo puesto y finalmente recibe el titulo.', 'La animador Jennifer B. consigue un jugoso contrato de grabación con una banda local.', 'La banda: "Junebug" empezara la grabación de su primer álbum este verano en LA.', 'El primer single se llamará: "No soy EMO (pero me encanta tu pelo)"', 'Las animadoras Tina F. y Sarah P. aparecerán en un talk show a nivel nacional.', 'El tema de discusión: Chicas jóvenes enamoradas.', '', 'Noticias patrocinadas por Tony-Angelos Pizza,', 'Con su eslogan: ¡Comete una tarta hoy!', '']; credits_text_Spanish = ['Cheerleaders Party\r\r copyright 2009\rTodos los derechos reservados', 'Diseño del juego por Puso\r\r Dialogo de Lucaboo2 & Puso', 'Música & sonido por Virtualex\r\r Otros códigos de Puso', '\'Jana In Love\'\r (baile lento de Brad & Jana)\r Vocal de Vera Poletaeva\r Letra & música por Puso', 'Resto de sintonías por Virtualex', 'Arte 2D & 3D de Puso\r\r Todos los personages 3D creados usando Daz 3dstudio', 'Gracias a los moderarores de Pusooy como consultores de diseño:\rCodo, Harryvh, Lucaboo2, Pawpaw, Superbookey, Ut1stgear, Virtualex, Zadok23', 'Gracias a los beta testers:\r\rDante101, Flashfiend, Forquer73, Olesbuch, Ramses, Sorrowson, Soursage, Ursulak', 'Traducción al Español: Budokai', 'Código secreto: xhi']; Russian = ['Жду не дождусь субботы.', 3, 'Как насчёт небольшого аванса?', 3, 'Я слишком возбудился.', 2, '\rПойдём-ка сюда.', 2, '\rТак я получу пятёрку по биологии?', 2, '\rАххххх...', 2, 'Если продолжишь,\rу тебя будет отличная оценка.', 2, 'x', 2, 'y', 13, 'z', 3, '\rНу как, стоит оно пятидесяти баксов?', b4r, 'O да.\rПоскорей бы добраться домой и посмотреть!', bub4l, 'И как ты\r это делаешь? Ты просто гений!', bub4l, '\rТак ты устраиваешь у себя вечеринку после матча или как?', bub5l, '\rУгу.\r Для нее всё готово.', bub4r, 'Я достал\rбочку пива и ящик текилы.', bub4r, 'Ящик?\rДа, чувствую, повеселимся как следует!', bub4l, '', 0, '', 0, '', 0, 'Если бы я\r тебя не знала, я бы сказала, что ты влюбилась!', bub5r, 'Он такой замечательный...', 11, 'Да ты ж ещё даже не встречалась с Бредом!', 10, '\rСлышь! Она такая сексапильная!', 13, 'Самая клёвая девчёнка в школе, кстати.', 12, '\rКак её зовут?', 3, 'Яна. Мы мы вместе на историю ходим.', 11, '\rЯна! Ммммм...', 3, '', 0, '', 0, '\rПривет, Синди.', 13, '\rСинди!', 13, '\rВ чём это у тебя юбка?', 13, '\rЭта Синди - такая грязнуля.', 13, 'В каждой школе есть своя супершлюха', 12, '\rНаша ещё и\r капитан болельщиц по совместительству', bub5l, 'А неплохо ты уделала Синди!', 10, 'Нуу... Типа, спасибо.', 11, 'Почему бы\rтебе не подойти и не поговорить с Брэдом?', 13, 'Похоже, он заинтересовался.', 10, 'Ой! Да не! Стрёмно как-то.', 11, 'У меня дыхание перехватит. Я... да я просто помру на месте!', 12, '\rЧто ж, пора идти.', 3, 'Привет! Ты тут новенькая?', 3, '\rЭто он со мной говорит?', 15, '\rО, нет!', 15, '\rОпаздываю на урок.', 15, '\rКакого...', 3, '\rКакая же я дура!\rКакая же я дура!', 16, 'И почему я так стесняюсь!', 11, 'Я только что всё испортила.', 11, 'После школы', 0, 'Перед игрой', 0, 'Победа!', 0, 'Встретимся на вечеринке!', 0, 'Нажми тут, чтобы сыграть ещё раз', 0, 'Нажми ПРОБЕЛ для продолжения.', 0, '', 0, '', 0, '', 0, 'Да это же\rвеликий и ужасный\rзащитник!', bub4l, '\rДженни!', bub4r, 'Ну что, готов проиграть школе Xavier сегодня вечером?', bub4l, '\rХа! Ещё чего!', bub4r, 'А ты школой-то не ошибся?', bub2l, 'Я просто\rзаглянул пораньше, поле посмотреть.', bub4r, '\rА где же твой великий и ужасный парень?', bub4r, '\rОн раньше всегда где-то поблизости ошивался, тебя пас.', bub5r, 'Парень?\rКакой парень?', bub2l, 'Этот придурок сейчас в Афганистане.', bub2l, 'Чтоб ему там конец отстрелили!', bub2l, 'Так ты, выходит, свободна?', bub2r, 'Дорогуша, за любую свободу надо платить!', bub2l, '\rЯ получаю повышенную стипендию.', bub4r, 'И мне она достаётся практически бесплатно', bub4r, 'Думаю,\r если человек достаточно талантлив,', bub4r, 'Даже звёзды падают к его ногам.', bub2r, 'А ты, детка, очень талантлива!', bub2r, '\rИ ты у моих ног?', bub3l, 'Детка, я тебя умоляю.', bub2r, 'Ключи от складской комнаты.', bub3l, 'Она тут\r пользуется популярностью.', bub3l, 'Ммммм,\r твёрдые как камень.', bub3r, 'Ooooo,\r стальные руки!', bub3r, 'Ммммм,\r гранитный пресс!', bub3r, '\rЭй! А это ещё что?', bub3r, '\rТы чо, туда кукурузину спрятал?', bub4r, 'Хаха, Помасли-ка её, детка.', bub3l, 'Ладно.\rДавай. Знаю же, ты родину за них продашь.', bub4r, '\rТак здорово лежат у меня в руках!', bub4l, 'Как будто держишь пару футбольных мячей!', bub3l, '\rТпрру-у, ковбой!', bub4r, '\rЯ хочу ещё раз трахнуть твои сиськи.', bub4r, '\rНо на сей раз дай мне кончить.', bub4r, 'Лижи!', bub6, 'Теперь возьми его в рот!', bub6, 'Так-с, и куда мы с тобой поедем после игры?.', bub4l, 'Извини, детка.\rПосле игры у меня свидание.', bub4r, '\r Козёл!', bub4l, '', 0, '\rЭй, Сара! Всё хорошо? Что-то случилось?', bub4l, '\rН-нет, Хорошо.. O.. Да.. Я имею в виду...', bub4l, '\rПросто ширинка. Я.. Я не могу...', bub4l, 'Ну вот.\r Проще, чем ты думала.', bub4l, 'Спасибо, Тина... Что бы я без тебя делала.', bub4r, 'Чувствую, что-то всё-таки не так. Что случилось?', bub4l, 'Ничего!\r Абсолютно... Ну, хорошо, Я... Я..', bub4r, 'Это...\r Это долгая история. Вы все такие клёвые, такие красивые,', bub5r, 'А я... Я нескладёха. И что я тут делаю? Мне тут не место.', bub4r, 'Хватит говорить глупости. Вот. Посмотри в зеркало.', bub4l, 'Вот так.\r Теперь скажи,\rчто ты видишь?', bub4l, 'Я вижу...\r Себя...\rСебя в трусах..', bub4r, 'Нет!\r Я вижу красивую девушку,', bub4l, 'Которую все\rпарни в школе хотели бы носить на руках.', bub4l, 'Я вижу красивое стройное тело, прямо как у модели.,', bub4l, 'Сексуальное тело, которому позавидовали бы многие девушки.', bub4l, 'Но...\rНо я не такая, как ты... Или Дженни...', bub4r, 'Разве?\r А я думаю, что ТАКАЯ.', bub4l, 'Мммм,\r они такие аппетитно-упругие.', bub4l, '\rПрямо как вот эти.', bub4l, 'Дорогая, с твоим телом всё в порядке.', bub4l, 'Нужно любить своё тело и гордиться им, ведь оно так прекрасно.', bub4l, 'Конечно, мальчишкам хочется трогать и ласкать его.', bub4l, '\rИ некоторым девчонкам тоже.', bub4l, 'Давай,\r потрогай мои груди.', bub4l, '\rТакие же замечательные, как и твои.', bub4l, '\rОоооооо...', bub4r, '', 0, '', 0, '', 0, '\rЭй, вы двое!', bub4r, 'Поторопитесь!\rИгра вот-вот начнётся!', bub4r, 'О!\r Синди забыла тут свою сумочку.', bub4l, '\rНо она уже на поле.', bub4r, '\rЯ недавно видела её отца. Отдам ему.', bub4r, 'Эй,\rа где Тина и Сара?', bub4l, '\rИгра уже почти началась!', bub4l, '\rПойду посмотрю, где они там.', bub4r, 'O!\r Не пропусти большое шоу!', bub4l, '\rПосмотрите!\r Началось.', bub4l, 'Боже!\rТы!\rМой!', bub4r, '\rВосхитительно!\r Не правда ли?', bub4l, '', 0, '', 0, '', 0, '', 0, '', 0, '', 0, '', 0, '', 0, 'Компьютерный маг и вуайерист. Его отец - генеральный директор крупной компьютерной компании. $$$ ', 0, 'Под маской тихони скрывается настоящий бразильский фейерверк.', 0, 'Стеснительный "книжный червь". Родители отдали её в команду болельщиц в надежде хоть как-то вытащить её из "панциря".', 0, 'Новая девочка в школе. Пока ещё не определила своё место в социальной иерархии школы Xavier. Поклялась до свадьбы сохранить девственность.', 0, 'Все помнят, что Дженни всегда встречалась со старшим по возрасту парнем. Он закончил школу, пошёл в армию и был отправлен в Афганистан. Перед отъездом бросил Дженни, потому как та принуждала его к женитьбе.', 0, 'Капитан болельщиц. Сильная и доминирующая личность. Однако, с учёбой её дела обстоят не слишком хорошо.', 0, 'Атлет, мечта любой девушки.', 0, 'Лучший друг и соперник Брэда. В спорте и не только.', 0, 'Маленькая, да удаленькая.', 0, '', 0, '5 минут до начала игры', 0, 'Добро пожаловать на поле Лукас', 0, 'На предстоящий суперматч', 0, 'школа Xavier против школы Lincoln', 0, 'В командах играют два лучших защитника штата', 0, 'Брэд Уайт из Xavier', 0, '', 0, 'и Тони Балермо из Lincoln', 0, '', 0, 'В сегодняшнем поединке сойдутся две ведущие команды штата!', 0, 'Эта игра запомнится надолго!', 0, 'Теперь слово нашим спонсорам', 0, 'Одну минутку пожалуйста... У нас временные технические неполадки.', 0, '', 0, '\rНу ладно. ', bub4r, '\rЯ не пью.', bub4r, '\rЯ принесу что-нибудь.', bub4l, '\rУ тебя целая бутылка?', bub4l, '\rУфф!\rАга!', bub4r, 'Мы теперь\rс ней друзья навеки.', bub4l, 'Давай,\r пригласи Яну потанцевать!', bub4r, 'Ну, я не знаю.\rПохоже, я ей не нравлюсь.', bub4l, 'Фигня!\r Всем девчёнкам ты нравишься!', bub4r, '\rТы тут у нас главный герой.', bub4r, 'И можешь замутить с любой, с какой захочешь.', bub4r, 'Тебе надо\r принять для храбрости. Я притащу тебе двойной.', bub5r, '\rНе надо! ', bub4l, '\rСлушай.', bub4r, '\rПохоже, именно тебе', bub4r, 'придётся\r проявить инициативу в отношении Брэда.', bub5r, 'Ты же типа облажалась сегодня днём.', bub4r, 'И теперь он боится с тобой заговорить.', bub4r, 'Он же тебе нравится,\rтак?', bub4r, '\rКонечно!', bub4r, 'Ты хочешь\r с ним встречаться,\rтак?', bub4r, '\rДа!\r Я его хочу!', bub4r, 'Вот тогда\rпей!\rДля храбрости.', bub4r, 'Эй,\rа где Синди?', bub4l, '\rА ты разве не слышал?', bub4r, '\rЕё папашка за жопу поймал. ', bub4r, 'Кажется, он нашёл коробку гандонов у неё в сумочке.', bub4r, '\rОго! ', bub4l, '\rЗдоровую, на 24 штуки, ', bub4r, '\rв которой остался только один!', bub4r, '\rХа ха ха! ', bub4l, '\rТеперь она под домашним арестом.', bub4r, 'Давай, мужик, пей.\r Тебе скоро в бой.', bub4r, '\rНу же,\rиди, пригласи её.', bub4r, 'Давай,\r иди, пригласи его!', bub4l, 'Эээ....\r давай потанцуем?', bub4l, '\rДавай.', bub4r, '\rТыр-пыр.\rХочу в сортир.', bub4l, '\rА где тут....', bub4l, '\rЯ помогу найти.', bub4l, 'Дженни, да ты бухая. Стыдно за тебя.', bub4r, '\rЗаткнись, одиночка.', bub4l, '\rНаслаждайся шоу.', bub4l, '\rЧто-то тут шумновато.', bub4l, '\rПойдём, найдём местечко потише?', bub4r, '\rСинди!', bub4r, '\rМне удалось вырваться.', bub4l, '\rА как же плащ?', bub4r, 'Мой любимый\r папочка\rзапер все мои вещи в шкафу,', bub5l, '\rчтобы я не улизнула.', bub4l, 'Однако,\r я стащила мамин плащ - под кроватью нашла.', bub5l, 'А что это вы такие... возбуждённые?', bub4l, 'Синди,\rу тебя резинки остались?', bub4r, '\rХмфф!', bub4r, '\rСинди,\rиди на фиг!', bub4l, '\rЧто тут у тебя для меня есть?', bub4r, 'Я удивлён,\rно у меня стоит, как солдат на параде!', bub4r, '\rХочешь?', bub4r, '\rПошли наверх!.', bub4r, '\rСнимай!', bub4r, '\rСнима-а-а-ай!', bub4l, 'Дженни\r у тебя потрясные сиськи!', bub4l, '\rПокажи их.\rПожалуйста!', bub4l, '\rА, так вы хотите их увидеть?', bub4l, '\rЛадно, не вопрос.', bub4l, 'Но,\rсначала покажите свои!', bub4l, 'Нет уж!\r Я хочу видеть твой конец.', bub4l, '\rИ я ниччо не покажу', bub4l, 'Пока не увижу тебя голышом, гладящим свой член.', bub4l, 'Хочешь подрочить на них?', bub4l, 'Давай же.\r Давай посмотрим.', bub4l, 'Если хочешь увидеть мои сиськи,', bub4l, 'Потрудись для меня.', bub4l, 'Эу!\rНе так быстро!', bub4l, 'Давайте посмотрим на них!', bub4r, '\rКонечно!', bub4r, '\rНо...', bub4r, 'Хотите видеть меня голой? Сначала сами разденьтесь!', bub4r, '\rДавайте, пацаны.\rНе стесняйтесь.', bub4r, '\rПоглядим на ваши пипетки.', bub4r, 'Аыы...\rГде тут туалет?', bub4r, 'Закрыт\r уже с полчаса как.', bub4l, 'Наверно,\r кому-то здорово приспичило.', bub4l, '\rПосмотри наверху.', bub4l, '\rХорошо,\rСпасибо.', bub4r, 'Эй,\rА где Бакман?', bub4r, 'Действительно.\r Такую вечеринку пропускает!', bub4r, '\r Заперто.', bub4l, '\r Оп-па!', bub4r, 'Ну-ка, ещё немного, для лучшего расслабления.', 28, 'Сара почти готова!\rНаверно, ещё чуть.', 19, 'Вот так.\rЭто поможет ей спустить трусики!', 18, 'Ладно, Брэд!\r Для пущей уверенности в успехе.', bub4r, '\rО!\rИзвини! ', bub4r, '\rА?', bub4l, '\rЯ ищу туалет.', bub4r, '\rПросто невтерпёж уже!', bub4r, 'А все\rтуалеты закрыты, заняты и вообще...', bub4r, 'Ё-моё\rЯ думал, я заперся!', bub4l, 'Ну ладно.\rТут есть ещё туалет.', bub4l, '\rВон там.', bub4l, '\rСпасибо тебе!', bub4r, 'Оооо,\rОна такая классная! ', bub4r, '\rНифига себе!', bub4l, '\rА?', bub4r, '\rГорячо тут у тебя!', bub4l, 'У меня аж мурашки по коже от одного взгляда на это!', bub4l, '\rНе слышал, как ты вошла.', bub4r, '\rМожно посмотреть?', bub4l, '\rПожалуйста?', bub4l, '\rПонимаю.', bub4r, '\rНе бойся, мой сладкий.', bub4r, '\rВсё хорошо.\rЯ тоже завелась.', bub4r, '\rДай лучше я.', bub4r, '\rТак хорошо?', bub4r, '\rЯ тебе нравлюсь?', bub4r, 'Да,\r но...', 6, 'Я занят.\rМне надо...', 6, 'Это очень важно!', 6, 'Не могу,\rне сейчас.', 6, '\rХочешь потрогать мою киску?', bub4r, 'Смотри!\rБрэд и Яна сдвинулись!', bub4r, 'Нужно\rпереместить камеру и поймать их в кадр!', bub4r, 'Да.\r Теперь слегка увеличь.', bub4r, '\rУх!\r Соображаешь!', bub4l, '\rВечеринка в самом разгаре!', bub4l, 'Я\r действительно должен это сделать прямо сейчас.', bub5l, 'Мы можем...\rЭмм...\rВ другой раз.', bub4l, '\rПонятно.', bub4r, '\rСлушай, ты так меня заводишь!', bub4r, '\rПотрогай, какая я мокрая там.', bub4r, 'Ты войдёшь\rв меня как по маслу.', bub4r, 'Уф!\r Я хочу!\rХочу прямо сейчас!', bub4r, 'Давай же.\rХочешь трахнуть меня?', bub4r, '\rПросто смотри на монитор,', bub4r, '\rЯ позабочусь о тебе тут, внизу.', bub4r, 'Ну как?\rТы уже на грани?', bub4r, '\rХочешь кончить мне в рот?', bub4r, '\rО, боже!\r Как раз во время!!', bub4r, '\rДай-ка я.', bub4l, '\rПотрогай меня.', bub4l, '\rПотрогай там...', bub4l, '\rОй!\r Но я никогда...', bub4r, '\rПрошу...', bub4l, '\rДотронься.', bub4l, 'Ещё раз.\rСожми его слегка.', bub4l, '\rЧувствуешь, какой твёрдый?', bub4l, '\rУх-ху...', bub4r, '\rЧувствуешь, какой он длинный?', bub4l, '\rOoooo.', bub4r, '\rТебе нравится?', bub4l, '\rА...\rУх-ху.', bub4r, 'Мне нравится,\rкак ты его трогаешь.', bub4l, '\rНравится?', bub4l, '\rРазумеется!', bub4l, '\rКонечно,\r нравится.', bub4l, '\rРасстегни мне брюки.', bub4l, '\rО!', bub4r, '\rПожалуйста!', bub4l, '\rПотри его.\rПожалуйста!', bub4l, '\rДавай же.', bub4l, 'Можешь\r не стесняться.', bub4l, '\rХочешь...', bub4l, 'Оооо, да.\rХочу почувствовать тебя внутри.', 6, '\rНе входит!', bub4l, '\rДолжно получиться!', 5, '\rПопробуй ещё.', 5, 'Ну же!\r Войди в меня!', 5, '\rИ это всё, на что ты способен?', bub4r, '\rНормально?', 18, 'Даже не знаю, почему мне так это нравится,', bub4r, 'Но так приятно чувствовать твой член у себя в заднице!', bub4r, 'Двигайся медленно,\rочень медленно.', bub4r, '\rOooo \rда.', bub4r, '\rЧувствуешь, как я сжимаю его?', bub4r, '\rОооооо\rда.', bub4r, '\rТеперь глубже.', bub4r, '\rОооо!\rБыстрее!', bub4r, '\rИ всё?', bub4r, 'Я вижу\r лишь одну худенькую пипетку.', bub4r, '\rТы!', bub4r, '\rЧто ты там прячешь?', bub4r, '\rДавай, эмо.\rНе стесняйся.', bub4r, '\rДавай, посмотрим.', bub4r, 'Ладно.\rПохоже, тебе нужно слегка помочь.', bub4r, '\rЗнаешь,\r а ты красавчик!', bub4r, '\rИди сюда, солнце.', bub4l, '\rОоу!\r Хватит пока.', bub4l, 'Боже, твои волосы восхитительно пахнут!', 25, '\rО!\rТоже здорово!', bub4l, 'А-а...\rЯ сейчас кончу.', bub4l, 'Эмм...\rЭто ничего?', bub4l, '\rТы такой клёвый!', bub4r, '\rЯ жду!', bub4r, 'Или вы все раздеваетесь, или я пошла домой.', bub4r, '\rДай я!', bub4l, '\rНет, я!', bub4l, 'Я тоже хочу трахнуть твои сиськи!', bub4l, 'Дженни!\rПососи у меня!', bub4l, '\rДженни!\rДженни!', bub4l, 'Давай я буду\r тебя трахать, пока ты будешь ему сосать!', bub5l, 'Никто ничего в меня совать не будет!', bub4l, '\rКроме Майжука.', bub4l, '\rЕму можно.', bub4l, '\rПохоже, я влюбилась!', bub4l, 'Хочешь быть\r моим парнем?', bub4l, '\rА?', bub4r, '\rУх!\rКонечно!', bub4r, '\rА что мне для этого нужно?', bub4r, '\rЯ хочу, чтобы ты трахнул меня.', bub4l, '\rИ трахал сильно и долго.', bub4l, '\rТвой конец уже готов к действию?', bub4l, '\rМмммм.', bub4l, '\rНе устал ещё?', bub4l, 'За меня не беспокойся.', 5, 'Я скорее стайер, чем спринтер.', 6, 'Я могу держать такой темп часами.', 5, 'Пока тебе не надоест.', 6, '\rOooo!', bub4l, '\rМой парень самый лучший!', bub4l, 'Похоже, чуваки, \rмы в пролёте!', bub4l, '\rО, чёрт!', bub4r, '\rПосмотрите на эти грёбаные сиськи!', bub4r, '\rЯ хочу на них кончить!', bub4r, 'Чёрт!\rА я хочу кончить ей на лицо.', bub4r, '\rЧёрт!\rЯ тоже!', bub4l, 'Этим\rсахарным грудкам не хватает ещё немного глазури!', bub5r, 'Ну же!\r Мы же на вечеринке! ', bub4l, 'Давайте оторвёмся, девчонки!', bub4l, 'Я принесу вам что-нибудь выпить.', bub4l, '', 0]; news_text_Russian = ['Свежие новости:', 'Арестован школьный учитель. Предположительно, он регулярно вступал в половую связь с ученицей.', 'Все обвинения сняты, так как девушка оказалась совершеннолетней.', 'Она была отчислена из школы. Учитель уволен.', 'Главный защитник школы Lincoln лишился стипендии за употребление стероидов.', 'Анонимный пользователь опубликовал неопровержимые доказательства на школьном форуме.', 'Выпускник школы Xavier был серьёзно ранен в Афганистане.', 'По свидетельству очевидцев, огнестрельное ранение получено в паховую область.', '', 'Новости и слухи школы Xavier', 'Xavier выигрывает чемпионат Штата!', 'Несмотря на не самую лучшую репутацию, Xavier легко победила Lincoln в финале.', 'Ведущий защитник Бред У. новый капитан болельщиц Яна Д. собираются пожениться в июне.', 'Распространено мнение, что решение преждевременно.', 'Запасной защитник Майк Д. был замечен около местного КВД.', 'После недавней вечеринки стало понятно, почему.', 'Вейн Бакман, выпускник произносящий прощальную речь подозревается в вуайеризме.', 'Теперь на эту должность выбрана его девушка Катрина П.', 'Бывшая болельщица Дженнифер Б. подписывает контракт с местной рок-группой.', 'Группа "Майжук" этим летом начнёт запись своего первого альбома в Лос-Анджелисе.', 'Ведущим синглом будет: "Я не эмо (но у тебя классные волосы)"', 'Болельщицы Тина Ф. и Сара П. снялись в ток-шоу.', 'Тема обсуждения: "Влюблённые девушки-подростки."', '', 'Спонсор новостей - Тони-Анджелос Пицца,', 'Слоган компании - "Съешь этот пирог сегодня!"', '']; credits_text_Russian = ['Cheerleaders Party\r\r copyright 2009\rВсе права защищены', 'Разработка игры: Puso\r\rДиалоги: Lucaboo2 и Puso', 'Музыкальный секвенсер и звуковой движок: Virtualex\r\r Весь прочий код: Puso', '\'Jana In Love\'\r (медленный танец Брэда и Яны)\r Поёт Вера Полетаева\r Слова и музыка: Puso', 'Вся прочая музыка: Virtualex', '2D & 3D графика: Puso\r\r Все 3D персонажи смоделированы в Daz 3dstudio', 'Спасибо модераторам сайта Pusooy за помощь в разработке:\r\rCodo, Harryvh, Lucaboo2, Pawpaw, Superbookey, Ut1stgear, Virtualex, Zadok23', 'Отдельное спасибо бета-тестерам:\r\rDante101, Flashfiend, Forquer73, Olesbuch, Ramses, Sorrowson, Soursage, Ursulak', 'Перевод на русский: Virtualex и Serega', 'Секретный код: xhi']; } movieClip 174 { } movieClip 349 { } movieClip 352 { } movieClip 1225 { } movieClip 1228 { } movieClip 1284 { } movieClip 1286 { } movieClip 1326 { } movieClip 1328 { } movieClip 1337 { } movieClip 1346 { } movieClip 1352 { } movieClip 1356 { } movieClip 1369 { } movieClip 1391 { }




http://swfchan.com/18/85711/info.shtml
Created: 30/3 -2019 19:14:39 Last modified: 30/3 -2019 19:14:39 Server time: 20/04 -2024 13:35:27