Combined Code
movieClip 11 story_screen {
frame 1 {
speed = 405;
acceleration = 0.8;
onEnterFrame = function () {
if (speed > 1) {
speed *= acceleration;
} else {
speed = 0;
removeMovieClip(this);
}
_x = _x + speed;
};
}
}
movieClip 13 my_screen {
frame 1 {
speed = 405;
acceleration = 0.8;
onEnterFrame = function () {
if (speed > 1) {
speed *= acceleration;
} else {
speed = 0;
removeMovieClip(this);
}
_x = _x + speed;
};
}
}
movieClip 17 textbox_object {
}
movieClip 19 button {
frame 1 {
stop();
onRollOver = function () {
var v1 = new Sound();
v1.attachSound('button_over');
v1.start();
gotoAndStop(2);
};
onRollOut = function () {
gotoAndStop(1);
};
}
}
movieClip 22 optionOBJ {
frame 1 {
stop();
onRollOver = function () {
var v1 = new Sound();
v1.attachSound('button_over');
v1.start();
gotoAndStop(2);
};
onRollOut = function () {
gotoAndStop(1);
};
}
}
movieClip 30 penis {
frame 1 {
onPress = function () {
_root.nextFrame();
removeMovieClip(_root.penis99);
};
}
}
frame 1 {
stop();
onlineSWITCHER = true;
percentage = 0;
_global.lock_switch = true;
_root.onEnterFrame = function () {
if (onlineSWITCHER == true) {
percentage = Math.round((this.getBytesLoaded() / this.getBytesTotal()) * 100);
_root.perce = percentage + '%';
if (percentage == 100) {
delete _root.onEnterFrame;
_root.gotoAndStop(3);
}
}
if (onlineSWITCHER == false) {
++percentage;
_root.perce = percentage + '%';
if (percentage == 100) {
delete _root.onEnterFrame;
_root.gotoAndStop(3);
}
}
};
}
frame 3 {
function optionMENU() {
this.attachMovie('optionOBJ', 'option1', 100);
_root.option1.choicebox = 'START';
_root.option1._x = 400;
_root.option1._y = 198.05;
this.attachMovie('optionOBJ', 'option2', 200);
_root.option2.choicebox = 'CONTINUE';
_root.option2._x = 400;
_root.option2._y = 278.65;
this.attachMovie('optionOBJ', 'option3', 300);
_root.option3.choicebox = 'INSTRUCTION';
_root.option3._x = 400;
_root.option3._y = 359.25;
this.attachMovie('optionOBJ', 'option4', 400);
_root.option4.choicebox = 'CREDITS';
_root.option4._x = 400;
_root.option4._y = 439.9;
_root.option1.onPress = function () {
deleteOBJ();
BDE();
_root.gotoAndStop(9);
};
_root.option2.onPress = function () {
if (_global.lock_switch == false) {
slide_screen();
deleteOBJ();
BDE();
_root.gotoAndStop(51);
}
if (_global.lock_switch == true) {
var v3 = new Sound();
v3.setVolume(75);
v3.attachSound('button_lock');
v3.start();
}
};
_root.option3.onPress = function () {
slide_screen();
deleteOBJ();
BDE();
_root.gotoAndStop(7);
};
_root.option4.onPress = function () {
slide_screen();
deleteOBJ();
BDE();
_root.gotoAndStop(5);
};
}
function deleteOBJ() {
removeMovieClip(option1);
removeMovieClip(option2);
removeMovieClip(option3);
removeMovieClip(option4);
}
function BDE() {
var v1 = new Sound();
v1.attachSound('button_down');
v1.start();
}
function slide_screen() {
this.attachMovie('my_screen', 'screener', 1000);
_root.screener._x = -800;
_root.screener._y = 0;
}
this.attachMovie('my_screen', 'screener', 1000);
_root.screener._x = -800;
_root.screener._y = 0;
if (_global.soundENGINE == undefined) {
stop();
var music1 = new Sound();
music1.setVolume(75);
music1.attachSound('Intro');
music1.start(0, 999);
_global.soundENGINE = true;
}
optionMENU();
}
movieClip 41 {
frame 1 {
stop();
switcher = 0;
onPress = function () {
if (switcher == 0) {
gotoAndStop(2);
_root.music1.stop();
switcher = 1;
} else {
if (switcher == 1) {
gotoAndStop(1);
switcher = 0;
_root.music1.start();
}
}
};
onEnterFrame = function () {
if (_root._ymouse < 80) {
this._alpha = 100;
} else {
this._alpha = 0;
}
};
}
}
frame 5 {
this.attachMovie('button', 'backbox', 100);
_root.backbox.choicebox = 'BACK';
_root.backbox._x = 116.65;
_root.backbox._y = 29.8;
backbox.choicebox = 'BACK';
backbox.onPress = function () {
removeMovieClip(backbox);
var v2 = new Sound();
v2.attachSound('button_down');
v2.start();
_root.gotoAndStop(3);
};
}
frame 7 {
this.attachMovie('button', 'backbox', 100);
_root.backbox.choicebox = 'BACK';
_root.backbox._x = 116.65;
_root.backbox._y = 29.8;
backbox.choicebox = 'BACK';
backbox.onPress = function () {
removeMovieClip(backbox);
var v2 = new Sound();
v2.attachSound('button_down');
v2.start();
_root.gotoAndStop(3);
};
}
frame 9 {
stop();
stopAllSounds();
this.attachMovie('story_screen', 'screeners', 2000);
_root.screeners._x = -800;
_root.screeners._y = 0;
var bttn = new Sound();
bttn.attachSound('button_down');
bttn.start();
var music1 = new Sound();
music1.attachSound('Track_01');
music1.start(0, 999);
music1.setVolume(70);
_global.soundENGINE = true;
fram = 0;
sec = 0;
onEnterFrame = function () {
if (fram < 30) {
++fram;
}
if (fram == 30) {
++sec;
fram = 0;
}
if (sec == 3) {
_root.nextFrame();
}
};
}
frame 10 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 10 {
function optionMENU() {
this.attachMovie('optionOBJ', 'option3', 300);
_root.option3.choicebox = 'CONTINUE';
_root.option3._x = 408.5;
_root.option3._y = 365.05;
_root.option3.onPress = function () {
_root.gotoAndStop(27);
deleteOBJ();
};
}
function deleteOBJ() {
removeMovieClip(option1);
removeMovieClip(option2);
removeMovieClip(option3);
}
stop();
this.attachMovie('textbox_object', 'textobject', 1);
_root.textobject._x = 400;
_root.textobject._y = 541.05;
var storyPARTS = new Array();
var max = 54;
storyPARTS[0] = '(It\'s a sunny day in Emerald Town..)';
storyPARTS[1] = '(and this is the place where I live...)';
storyPARTS[2] = '(before my grandfather died, he gave me this house..)';
storyPARTS[3] = '(and he told me to enjoy life and find its meaning..)';
storyPARTS[4] = '(that was 5 years ago.. and I don\'t know much about what he told me..)';
storyPARTS[5] = '(by the way.. my name is Rey..)';
storyPARTS[6] = '(I did not take my studies seriously in college, that\'s why...)';
storyPARTS[7] = '(nobody wants to hire me and I tried my best to find a high paid job..)';
storyPARTS[8] = '(It\'s just.... so unlucky for me...)';
storyPARTS[9] = '(I feel sorry for myself but I can\'t give up now...)';
storyPARTS[10] = '(I have to survive and I want to live too...)';
storyPARTS[11] = '(I hope it was not too late for me...)';
storyPARTS[12] = '***Ring.. Ring.. Ring...';
storyPARTS[13] = 'Rey: hello?';
storyPARTS[14] = '???: hey man, I just want to invite you here tonight, it\'s my birthday man!...';
storyPARTS[15] = 'Rey: ummm???';
storyPARTS[16] = '(Who is this again? his voice sounds familiar...)';
storyPARTS[17] = '???: you gotta be kidding me? it\'s Bryan...';
storyPARTS[18] = 'Rey: Ohhhh.. Bryan...';
storyPARTS[19] = '(Bryan is my bestfriend when I was still in grade school)';
storyPARTS[20] = '(It\'s been so long since the last time we hang out)';
storyPARTS[21] = 'Rey: alright Bryan, I\'ll be there..';
storyPARTS[22] = 'Rey: alright... ';
storyPARTS[23] = '***Door Bell Ding, Dong....';
storyPARTS[24] = 'Bryan: hey man.. come inside.. long time no see...';
storyPARTS[25] = 'Rey: yeah, thanks for inviting me..';
storyPARTS[26] = 'Bryan: you\'re welcome..';
storyPARTS[27] = 'Rey: where\'s everybody?';
storyPARTS[28] = 'Bryan: ohh... it\'s just us and my sister...';
storyPARTS[29] = 'Rey: your sister?';
storyPARTS[30] = 'Bryan: ohhh come on, your childhood crush.. hahaha';
storyPARTS[31] = 'Rey: oh crap.. Jaspin? Jazzy? Jerry?';
storyPARTS[32] = 'Bryan: ha hahaha... it\'s Jasmine...';
storyPARTS[33] = 'Bryan: you\'re lucky she is not around..';
storyPARTS[34] = 'Rey: thank goodness..';
storyPARTS[35] = 'Bryan: so, how\'s life?';
storyPARTS[36] = 'Rey: yeah.. it\'s kind of...';
storyPARTS[37] = 'Bryan: what\'s the problem?';
storyPARTS[38] = 'Rey: I\'m kind of jobless man..';
storyPARTS[39] = 'Bryan: ohhh... where do you stay now then?';
storyPARTS[40] = 'Rey: remember my grandfather house?';
storyPARTS[41] = 'Bryan: you live there now?';
storyPARTS[42] = 'Rey: yeah..';
storyPARTS[43] = 'Bryan: wow! you know what, you don\'t need a job...';
storyPARTS[44] = 'Rey: what do you mean?';
storyPARTS[45] = 'Bryan: you just need that house for business...';
storyPARTS[46] = 'Rey: hahaha... I am not going to sell that house..';
storyPARTS[47] = 'Bryan: listen, it\'s your only chance to survive..';
storyPARTS[48] = 'Bryan: why don\'t you offer a room for rent.. ';
storyPARTS[49] = 'Rey: room for rent?';
storyPARTS[50] = 'Bryan: yeah... ';
storyPARTS[51] = 'Rey: yeah, you\'re right.... I\'ll think about that..';
storyPARTS[52] = 'Bryan: anyway... let\'s celebrate my birthday ...';
storyPARTS[53] = 'Rey: oh, before I forgot.. Happy Birthday man...';
var myWORD;
var myCOUNT;
var i = 1;
myWORD = storyPARTS[0];
myCOUNT = myWORD.split('');
sec = 0;
textobject.textbox = '';
onEnterFrame = function () {
if (sec < myCOUNT.length) {
textobject.textbox += myCOUNT[sec++];
}
if (i > max) {
removeMovieClip(textobject);
optionMENU();
i = 0;
}
};
_root.textobject.onPress = function () {
var v2 = new Sound();
v2.attachSound('button_down');
v2.start();
textobject.textbox = '';
myWORD = storyPARTS[i++];
myCOUNT = myWORD.split('');
sec = 0;
if (i == 3) {
_root.nextFrame();
} else {
if (i == 5) {
_root.nextFrame();
} else {
if (i == 6) {
_root.nextFrame();
} else {
if (i == 8) {
_root.nextFrame();
} else {
if (i == 13) {
_root.nextFrame();
} else {
if (i == 14) {
_root.nextFrame();
} else {
if (i == 19) {
_root.nextFrame();
} else {
if (i == 24) {
_root.nextFrame();
} else {
if (i == 25) {
_root.nextFrame();
} else {
if (i == 28) {
_root.nextFrame();
} else {
if (i == 32) {
_root.nextFrame();
} else {
if (i == 35) {
_root.nextFrame();
} else {
if (i == 38) {
_root.nextFrame();
} else {
if (i == 41) {
_root.nextFrame();
} else {
if (i == 48) {
_root.nextFrame();
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
};
}
frame 11 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 12 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 13 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 14 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 15 {
stopAllSounds();
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 16 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 17 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 18 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 19 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 20 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 21 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 22 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 23 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 24 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 25 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 27 {
stop();
stopAllSounds();
this.attachMovie('story_screen', 'screeners', 2000);
_root.screeners._x = -800;
_root.screeners._y = 0;
var bttn = new Sound();
bttn.attachSound('button_down');
bttn.start();
_global.soundENGINE = true;
fram = 0;
sec = 0;
onEnterFrame = function () {
if (fram < 30) {
++fram;
}
if (fram == 30) {
++sec;
fram = 0;
}
if (sec == 5) {
_root.nextFrame();
}
};
}
frame 28 {
var music1 = new Sound();
music1.attachSound('Track_02');
music1.start(0, 999);
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 28 {
function optionMENU() {
this.attachMovie('optionOBJ', 'option3', 300);
_root.option3.choicebox = 'CONTINUE';
_root.option3._x = 408.5;
_root.option3._y = 365.05;
_root.option3.onPress = function () {
_root.gotoAndStop(35);
deleteOBJ();
};
}
function deleteOBJ() {
removeMovieClip(option1);
removeMovieClip(option2);
removeMovieClip(option3);
}
stop();
this.attachMovie('textbox_object', 'textobject', 1);
_root.textobject._x = 400;
_root.textobject._y = 541.05;
var storyPARTS = new Array();
var max = 14;
storyPARTS[0] = 'Rey: ..... ...... ...';
storyPARTS[1] = '(Room for rent.. it\'s better than nothing....)';
storyPARTS[2] = '(Now, I have to prepare everything...)';
storyPARTS[3] = '(bedrooms, comfort room, dinning room and more rooms..)';
storyPARTS[4] = 'Rey: ... ..... ...... ';
storyPARTS[5] = 'Rey: haiz... everything is now ready...';
storyPARTS[6] = 'Rey: time for posting... ';
storyPARTS[7] = '(Hmmmm... what kind of roommate should I prefered?)';
storyPARTS[8] = '(I don\'t want just someone staying in my house..)';
storyPARTS[9] = '(maybe, it\'s my chance now to find my dream girl..)';
storyPARTS[10] = 'Rey: hehehehee...';
storyPARTS[11] = '(Girlfriend....)';
storyPARTS[12] = 'Rey: WHAT A BRIGHT IDEA!!! ';
storyPARTS[13] = '*** -- FEMALE ROOMMATE ONLY --';
var myWORD;
var myCOUNT;
var i = 1;
myWORD = storyPARTS[0];
myCOUNT = myWORD.split('');
sec = 0;
textobject.textbox = '';
onEnterFrame = function () {
if (sec < myCOUNT.length) {
textobject.textbox += myCOUNT[sec++];
}
if (i > max) {
removeMovieClip(textobject);
optionMENU();
i = 0;
}
};
_root.textobject.onPress = function () {
var v2 = new Sound();
v2.attachSound('button_down');
v2.start();
textobject.textbox = '';
myWORD = storyPARTS[i++];
myCOUNT = myWORD.split('');
sec = 0;
if (i == 4) {
_root.nextFrame();
}
if (i == 6) {
_root.nextFrame();
}
if (i == 8) {
_root.nextFrame();
}
if (i == 10) {
_root.nextFrame();
}
if (i == 12) {
_root.nextFrame();
}
};
}
frame 29 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 30 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 31 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 32 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 33 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 35 {
stop();
stopAllSounds();
this.attachMovie('story_screen', 'screeners', 2000);
_root.screeners._x = -800;
_root.screeners._y = 0;
var bttn = new Sound();
bttn.attachSound('button_down');
bttn.start();
_global.soundENGINE = true;
fram = 0;
sec = 0;
onEnterFrame = function () {
if (fram < 30) {
++fram;
}
if (fram == 30) {
++sec;
fram = 0;
}
if (sec == 3) {
_root.nextFrame();
}
};
}
frame 36 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 36 {
function optionMENU() {
this.attachMovie('optionOBJ', 'option3', 300);
_root.option3.choicebox = 'CONTINUE';
_root.option3._x = 408.5;
_root.option3._y = 365.05;
_root.option3.onPress = function () {
_root.gotoAndStop(44);
deleteOBJ();
};
}
function deleteOBJ() {
removeMovieClip(option1);
removeMovieClip(option2);
removeMovieClip(option3);
}
stop();
this.attachMovie('textbox_object', 'textobject', 1);
_root.textobject._x = 400;
_root.textobject._y = 541.05;
var storyPARTS = new Array();
var max = 27;
storyPARTS[0] = '(.. ................ ...)';
storyPARTS[1] = '***Door Bell , Ding... dong...';
storyPARTS[2] = 'Rey: Hmmmmmm???...';
storyPARTS[3] = 'Rey: !!!!!...';
storyPARTS[4] = 'Rey: roommates!!!!.. ladies!! here I come..';
storyPARTS[5] = '***Rey open the door...';
storyPARTS[6] = '???: hi...';
storyPARTS[7] = 'Rey: !?';
storyPARTS[8] = 'Jasmine: good morning...';
storyPARTS[9] = 'Rey: hi...';
storyPARTS[10] = '(Jasmine, what she doing here? ehh?)';
storyPARTS[11] = 'Jasmine: my brother told me you live here now so...';
storyPARTS[12] = 'Jasmine: I want to see your house.. ';
storyPARTS[13] = 'Rey: ehehehee... ahh.. ??..';
storyPARTS[14] = 'Jasmine: it\'s a beautiful house...ummmm.... ';
storyPARTS[15] = 'Rey: oh sorry... please come in...';
storyPARTS[16] = 'Jasmine: Bryan told me that you are kind of starting a business...';
storyPARTS[17] = 'Rey: yeah.. yeah... he is the one who gave me the idea...';
storyPARTS[18] = 'Jasmine: so... my brother and I would like to offer you some assistance..';
storyPARTS[19] = 'Jasmine: whatever you need... just call us...';
storyPARTS[20] = 'Rey: yes.. yes.. thank you Jasmine.. ';
storyPARTS[21] = 'Rey: please tell Bryan.. he is genius..';
storyPARTS[22] = 'Jasmine: hehehe... ';
storyPARTS[23] = 'Jasmine: anyway, I think I have to go now.... good bye Rey... take care..';
storyPARTS[24] = 'Rey: good bye.. ..';
storyPARTS[25] = '(Geezzz... Jasmine is so hot like hell)';
storyPARTS[26] = '(Sorry about my word.. it\'s just.. I can\'t stop describing it on that way..)';
var myWORD;
var myCOUNT;
var i = 1;
myWORD = storyPARTS[0];
myCOUNT = myWORD.split('');
sec = 0;
textobject.textbox = '';
onEnterFrame = function () {
if (sec < myCOUNT.length) {
textobject.textbox += myCOUNT[sec++];
}
if (i > max) {
removeMovieClip(textobject);
optionMENU();
i = 0;
}
};
_root.textobject.onPress = function () {
var v2 = new Sound();
v2.attachSound('button_down');
v2.start();
textobject.textbox = '';
myWORD = storyPARTS[i++];
myCOUNT = myWORD.split('');
sec = 0;
if (i == 7) {
_root.nextFrame();
}
if (i == 9) {
_root.nextFrame();
}
if (i == 14) {
_root.nextFrame();
}
if (i == 17) {
_root.nextFrame();
}
if (i == 24) {
_root.nextFrame();
}
if (i == 26) {
_root.nextFrame();
}
};
}
frame 37 {
var music1 = new Sound();
music1.attachSound('Track_03');
music1.start(0, 999);
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 38 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 39 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 40 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 41 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 42 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 44 {
stop();
stopAllSounds();
this.attachMovie('story_screen', 'screeners', 2000);
_root.screeners._x = -800;
_root.screeners._y = 0;
var bttn = new Sound();
bttn.attachSound('button_down');
bttn.start();
_global.soundENGINE = true;
fram = 0;
sec = 0;
onEnterFrame = function () {
if (fram < 30) {
++fram;
}
if (fram == 30) {
++sec;
fram = 0;
}
if (sec == 3) {
_root.nextFrame();
}
};
}
frame 45 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 45 {
function optionMENU() {
this.attachMovie('optionOBJ', 'option3', 300);
_root.option3.choicebox = 'CONTINUE';
_root.option3._x = 408.5;
_root.option3._y = 365.05;
_root.option3.onPress = function () {
_root.gotoAndStop(51);
deleteOBJ();
};
}
function deleteOBJ() {
removeMovieClip(option1);
removeMovieClip(option2);
removeMovieClip(option3);
}
stop();
this.attachMovie('textbox_object', 'textobject', 1);
_root.textobject._x = 400;
_root.textobject._y = 541.05;
var storyPARTS = new Array();
var max = 23;
storyPARTS[0] = '*** Door Bell, Ding, Dong....';
storyPARTS[1] = 'Rey: ohhh... Jasmine???';
storyPARTS[2] = '*** Rey open the door..';
storyPARTS[3] = 'Rey: hi, Jasmmminn???';
storyPARTS[4] = '(it wasn\'t her... but its THE ROOMMATES...)';
storyPARTS[5] = '(look at them.. WoW!! they are hot like burning coal while...)';
storyPARTS[6] = '(burning some barbeque... I can\'t stop thinking about it.. hehehe)';
storyPARTS[7] = '???: Good morning Mr., we just saw your post about your room for rent..';
storyPARTS[8] = 'Rey: yes??';
storyPARTS[9] = '???: me and my friends wants to take it..';
storyPARTS[10] = 'Rey: oh sure... what\'s your name ladies??';
storyPARTS[11] = '???: I\'m Nika, this is Kimberly and this is Julliene..';
storyPARTS[12] = 'Rey: alright.. please come in..';
storyPARTS[13] = 'Rey: this will be your rooms and here are my regulations...';
storyPARTS[14] = 'Rey: no male allowed inside in this house except me..';
storyPARTS[15] = 'Rey: and other than the monthly payment, I required you to pay me..';
storyPARTS[16] = 'Rey: one month advance deposit... alright?';
storyPARTS[17] = 'Nika: okay... we are kind of tired, can we just pay you later??';
storyPARTS[18] = '(What? pay me later? ladies I need some cash now)';
storyPARTS[19] = '(but if that\'s the case, then...)';
storyPARTS[20] = 'Rey: alright... I\'ll just be there.. next room..';
storyPARTS[21] = 'Nika: thank you Mr. Rey...';
storyPARTS[22] = 'Kimberly: .... ..';
var myWORD;
var myCOUNT;
var i = 1;
myWORD = storyPARTS[0];
myCOUNT = myWORD.split('');
sec = 0;
textobject.textbox = '';
onEnterFrame = function () {
if (sec < myCOUNT.length) {
textobject.textbox += myCOUNT[sec++];
}
if (i > max) {
removeMovieClip(textobject);
optionMENU();
i = 0;
}
};
_root.textobject.onPress = function () {
var v2 = new Sound();
v2.attachSound('button_down');
v2.start();
textobject.textbox = '';
myWORD = storyPARTS[i++];
myCOUNT = myWORD.split('');
sec = 0;
if (i == 4) {
_root.nextFrame();
}
if (i == 12) {
_root.nextFrame();
}
if (i == 14) {
_root.nextFrame();
}
if (i == 18) {
_root.nextFrame();
}
};
}
frame 46 {
var music1 = new Sound();
music1.attachSound('Track_02');
music1.start(0, 999);
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 47 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 48 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 49 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 51 {
stop();
stopAllSounds();
this.attachMovie('story_screen', 'screeners', 2000);
_root.screeners._x = -800;
_root.screeners._y = 0;
var bttn = new Sound();
bttn.attachSound('button_down');
bttn.start();
_global.soundENGINE = true;
fram = 0;
sec = 0;
onEnterFrame = function () {
if (fram < 30) {
++fram;
}
if (fram == 30) {
++sec;
fram = 0;
}
if (sec == 3) {
_root.nextFrame();
}
};
}
frame 52 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 52 {
function optionMENU() {
this.attachMovie('optionOBJ', 'option1', 100);
_root.option1.choicebox = 'Nika';
_root.option1._x = 408.5;
_root.option1._y = 274.15;
this.attachMovie('optionOBJ', 'option2', 200);
_root.option2.choicebox = 'Kimberly';
_root.option2._x = 408.5;
_root.option2._y = 319.05;
this.attachMovie('optionOBJ', 'option3', 300);
_root.option3.choicebox = 'Jullienne';
_root.option3._x = 408.5;
_root.option3._y = 365.05;
_root.option1.onPress = function () {
_root.gotoAndStop(75);
deleteOBJ();
};
_root.option2.onPress = function () {
_root.gotoAndStop(56);
deleteOBJ();
};
_root.option3.onPress = function () {
_root.gotoAndStop(95);
deleteOBJ();
};
}
function deleteOBJ() {
removeMovieClip(option1);
removeMovieClip(option2);
removeMovieClip(option3);
}
stop();
this.attachMovie('textbox_object', 'textobject', 1);
_root.textobject._x = 400;
_root.textobject._y = 541.05;
var storyPARTS = new Array();
var max = 4;
storyPARTS[0] = '*** 8 hours later';
storyPARTS[1] = '(What?? it\'s already 8 hours.. I\'m dying waiting...)';
storyPARTS[2] = '(I think I should check them now..)';
storyPARTS[3] = 'Who among the girls should I check?';
var myWORD;
var myCOUNT;
var i = 1;
myWORD = storyPARTS[0];
myCOUNT = myWORD.split('');
sec = 0;
textobject.textbox = '';
onEnterFrame = function () {
if (sec < myCOUNT.length) {
textobject.textbox += myCOUNT[sec++];
}
if (i > max) {
removeMovieClip(textobject);
optionMENU();
i = 0;
}
};
_root.textobject.onPress = function () {
var v2 = new Sound();
v2.attachSound('button_down');
v2.start();
textobject.textbox = '';
myWORD = storyPARTS[i++];
myCOUNT = myWORD.split('');
sec = 0;
if (i == 3) {
_root.nextFrame();
}
if (i == 4) {
_root.nextFrame();
}
};
}
frame 53 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 54 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 56 {
stop();
stopAllSounds();
this.attachMovie('story_screen', 'screeners', 2000);
_root.screeners._x = -800;
_root.screeners._y = 0;
var bttn = new Sound();
bttn.attachSound('button_down');
bttn.start();
_global.soundENGINE = true;
fram = 0;
sec = 0;
onEnterFrame = function () {
if (fram < 30) {
++fram;
}
if (fram == 30) {
++sec;
fram = 0;
}
if (sec == 3) {
_root.nextFrame();
}
};
}
frame 57 {
stopAllSounds();
var music1 = new Sound();
music1.setVolume(50);
music1.attachSound('Track_01');
music1.start(0, 999);
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 57 {
function optionMENU() {
this.attachMovie('optionOBJ', 'option1', 100);
_root.option1.choicebox = 'give her another chance..';
_root.option1._x = 408.5;
_root.option1._y = 274.15;
this.attachMovie('optionOBJ', 'option2', 200);
_root.option2.choicebox = 'yes but with condition...';
_root.option2._x = 408.5;
_root.option2._y = 319.05;
_root.option1.onPress = function () {
_root.gotoAndStop(63);
deleteOBJ();
};
_root.option2.onPress = function () {
deleteOBJ();
_root.gotoAndStop(60);
};
}
function deleteOBJ() {
removeMovieClip(option1);
removeMovieClip(option2);
removeMovieClip(option3);
}
stop();
this.attachMovie('textbox_object', 'textobject', 1);
_root.textobject._x = 400;
_root.textobject._y = 541.05;
var storyPARTS = new Array();
var max = 11;
storyPARTS[0] = '*** Knocking Door... ....';
storyPARTS[1] = 'Rey: Kimberly??? ';
storyPARTS[2] = '... ... ......... ... ....';
storyPARTS[3] = 'Rey: Kimberly... ';
storyPARTS[4] = 'Kimberly:... please come in Mr. Rey...';
storyPARTS[5] = 'Rey:. ......';
storyPARTS[6] = 'Rey: It\'s been eight hours.. where\'s your payment for this room?';
storyPARTS[7] = 'Kimberly: ummmm....';
storyPARTS[8] = 'Rey: if you can\'t pay me for this.. ';
storyPARTS[9] = 'Rey: then I don\'t have any choice but to ask you to leave..';
storyPARTS[10] = 'Kimberly: !! Mr. Rey... can you please give me some more time??';
var myWORD;
var myCOUNT;
var i = 1;
myWORD = storyPARTS[0];
myCOUNT = myWORD.split('');
sec = 0;
textobject.textbox = '';
onEnterFrame = function () {
if (sec < myCOUNT.length) {
textobject.textbox += myCOUNT[sec++];
}
if (i > max) {
removeMovieClip(textobject);
optionMENU();
i = 0;
}
};
_root.textobject.onPress = function () {
var v2 = new Sound();
v2.attachSound('button_down');
v2.start();
textobject.textbox = '';
myWORD = storyPARTS[i++];
myCOUNT = myWORD.split('');
sec = 0;
if (i == 6) {
_root.nextFrame();
}
};
}
frame 58 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 60 {
function optionMENU() {
this.attachMovie('optionOBJ', 'option1', 100);
_root.option1.choicebox = 'Cow Girl';
_root.option1._x = 408.5;
_root.option1._y = 274.15;
this.attachMovie('optionOBJ', 'option2', 200);
_root.option2.choicebox = 'Dog Style';
_root.option2._x = 408.5;
_root.option2._y = 319.05;
this.attachMovie('optionOBJ', 'option3', 300);
_root.option3.choicebox = 'Missionary';
_root.option3._x = 408.5;
_root.option3._y = 365.05;
_root.option1.onPress = function () {
_root.gotoAndStop(66);
deleteOBJ();
};
_root.option2.onPress = function () {
_root.gotoAndStop(69);
deleteOBJ();
};
_root.option3.onPress = function () {
_root.gotoAndStop(72);
deleteOBJ();
};
}
function deleteOBJ() {
removeMovieClip(option1);
removeMovieClip(option2);
removeMovieClip(option3);
}
stop();
this.attachMovie('textbox_object', 'textobject', 1);
_root.textobject._x = 400;
_root.textobject._y = 541.05;
var storyPARTS = new Array();
var max = 12;
storyPARTS[0] = 'Rey: you have to entertain me first....';
storyPARTS[1] = 'Kimberly: what kind of entertainment do you want Mr. Rey?';
storyPARTS[2] = 'Kimberly: do you want me to sing for you?';
storyPARTS[3] = 'Rey: nah, let\'s play on that bed...';
storyPARTS[4] = 'Kimberly: !!!!... I can\'t Mr. Rey...';
storyPARTS[5] = 'Rey: then I don\'t have a choice but to ask you to leave my house immediately...';
storyPARTS[6] = 'Kimberly: no... please.. I just.. can\'t... I have a boyfriend...';
storyPARTS[7] = 'Rey: I don\'t care...';
storyPARTS[8] = 'Kimberly: .. .....';
storyPARTS[9] = 'Kimberly: alright......';
storyPARTS[10] = 'Kimberly: just don\'t be too rough on me....';
storyPARTS[11] = '-What do you want to do with her?';
var myWORD;
var myCOUNT;
var i = 1;
myWORD = storyPARTS[0];
myCOUNT = myWORD.split('');
sec = 0;
textobject.textbox = '';
onEnterFrame = function () {
if (sec < myCOUNT.length) {
textobject.textbox += myCOUNT[sec++];
}
if (i > max) {
removeMovieClip(textobject);
optionMENU();
i = 0;
}
};
_root.textobject.onPress = function () {
var v2 = new Sound();
v2.attachSound('button_down');
v2.start();
textobject.textbox = '';
myWORD = storyPARTS[i++];
myCOUNT = myWORD.split('');
sec = 0;
if (i == 5) {
_root.nextFrame();
}
};
}
frame 61 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 63 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 63 {
function optionMENU() {
this.attachMovie('optionOBJ', 'option3', 300);
_root.option3.choicebox = 'CONTINUE';
_root.option3._x = 408.5;
_root.option3._y = 365.05;
_root.option3.onPress = function () {
_root.gotoAndStop(116);
deleteOBJ();
};
}
function deleteOBJ() {
removeMovieClip(option1);
removeMovieClip(option2);
removeMovieClip(option3);
}
stop();
this.attachMovie('textbox_object', 'textobject', 1);
_root.textobject._x = 400;
_root.textobject._y = 541.05;
var storyPARTS = new Array();
var max = 8;
storyPARTS[0] = 'Kimberly: my young sister needs some tuition fees for her college..';
storyPARTS[1] = 'Kimberly: so I let her barrow mine first..';
storyPARTS[2] = 'Kimberly: but I promise you to pay you sooner as I can..';
storyPARTS[3] = 'Rey: promise??';
storyPARTS[4] = 'Kimberly: promise...';
storyPARTS[5] = 'Rey: alright...';
storyPARTS[6] = 'Kimberly: thank you Mr. Rey....';
storyPARTS[7] = 'Kimberly: hehehe..';
var myWORD;
var myCOUNT;
var i = 1;
myWORD = storyPARTS[0];
myCOUNT = myWORD.split('');
sec = 0;
textobject.textbox = '';
onEnterFrame = function () {
if (sec < myCOUNT.length) {
textobject.textbox += myCOUNT[sec++];
}
if (i > max) {
removeMovieClip(textobject);
optionMENU();
i = 0;
}
};
_root.textobject.onPress = function () {
var v2 = new Sound();
v2.attachSound('button_down');
v2.start();
textobject.textbox = '';
myWORD = storyPARTS[i++];
myCOUNT = myWORD.split('');
sec = 0;
if (i == 5) {
_root.nextFrame();
}
};
}
frame 64 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 66 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 66 {
function deleteOBJ() {
removeMovieClip(option1);
removeMovieClip(option2);
removeMovieClip(option3);
}
stop();
this.attachMovie('textbox_object', 'textobject', 1);
_root.textobject._x = 400;
_root.textobject._y = 541.05;
var storyPARTS = new Array();
var max = 9;
storyPARTS[0] = '.... ....';
storyPARTS[1] = 'Kimberly: ahhhHHh... ohhh..';
storyPARTS[2] = 'Kimberly: oh yeahhh!...';
storyPARTS[3] = 'Kimberly: ahhhh... ahhh...';
storyPARTS[4] = 'Kimberly: AhHHHhhh.....';
storyPARTS[5] = 'Kimberly: .... mmMMmmmmmm....';
storyPARTS[6] = 'Kimberly: oh yes...';
storyPARTS[7] = 'Kimberly: Oh YeS...';
storyPARTS[8] = 'Kimberly: OHHH YESS!!!!';
var myWORD;
var myCOUNT;
var i = 1;
myWORD = storyPARTS[0];
myCOUNT = myWORD.split('');
sec = 0;
textobject.textbox = '';
onEnterFrame = function () {
if (sec < myCOUNT.length) {
textobject.textbox += myCOUNT[sec++];
}
if (i > max) {
removeMovieClip(textobject);
this.attachMovie('penis', 'penis99', 300);
_root.penis99._x = 75;
_root.penis99._y = 53;
i = 0;
}
};
_root.textobject.onPress = function () {
var v1 = new Sound();
v1.attachSound('button_down');
v1.start();
textobject.textbox = '';
myWORD = storyPARTS[i++];
myCOUNT = myWORD.split('');
sec = 0;
};
}
movieClip 149 {
}
frame 67 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 67 {
function optionMENU() {
this.attachMovie('optionOBJ', 'option3', 300);
_root.option3.choicebox = 'CONTINUE';
_root.option3._x = 408.5;
_root.option3._y = 365.05;
_root.option3.onPress = function () {
_root.gotoAndStop(113);
deleteOBJ();
};
}
function deleteOBJ() {
removeMovieClip(option1);
removeMovieClip(option2);
removeMovieClip(option3);
}
stop();
this.attachMovie('textbox_object', 'textobject', 1);
_root.textobject._x = 400;
_root.textobject._y = 541.05;
var storyPARTS = new Array();
var max = 8;
storyPARTS[0] = 'Kimberly: !!!!!';
storyPARTS[1] = 'Rey: .... Ahhhhhh....';
storyPARTS[2] = 'Kimberly: did you just cum inside me???';
storyPARTS[3] = 'Rey: ahHHhhhh...';
storyPARTS[4] = 'Kimberly: we didn\'t talk about this Mr. Rey...';
storyPARTS[5] = 'Rey: ... then what do you want?';
storyPARTS[6] = 'Kimberly: you have to pay me for this....';
storyPARTS[7] = 'Rey: ehHHhhhh????';
var myWORD;
var myCOUNT;
var i = 1;
myWORD = storyPARTS[0];
myCOUNT = myWORD.split('');
sec = 0;
textobject.textbox = '';
onEnterFrame = function () {
if (sec < myCOUNT.length) {
textobject.textbox += myCOUNT[sec++];
}
if (i > max) {
removeMovieClip(textobject);
optionMENU();
i = 0;
}
};
_root.textobject.onPress = function () {
var v1 = new Sound();
v1.attachSound('button_down');
v1.start();
textobject.textbox = '';
myWORD = storyPARTS[i++];
myCOUNT = myWORD.split('');
sec = 0;
};
}
frame 69 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 69 {
function deleteOBJ() {
removeMovieClip(option1);
removeMovieClip(option2);
removeMovieClip(option3);
}
stop();
this.attachMovie('textbox_object', 'textobject', 1);
_root.textobject._x = 400;
_root.textobject._y = 541.05;
var storyPARTS = new Array();
var max = 9;
storyPARTS[0] = '.... ....';
storyPARTS[1] = 'Kimberly: ahhhHHh... ohhh..';
storyPARTS[2] = 'Kimberly: oh yeahhh!...';
storyPARTS[3] = 'Kimberly: ahhhh... ahhh...';
storyPARTS[4] = 'Kimberly: AhHHHhhh.....';
storyPARTS[5] = 'Kimberly: .... mmMMmmmmmm....';
storyPARTS[6] = 'Kimberly: oh yes...';
storyPARTS[7] = 'Kimberly: Oh YeS...';
storyPARTS[8] = 'Kimberly: OHHH YESS!!!!';
var myWORD;
var myCOUNT;
var i = 1;
myWORD = storyPARTS[0];
myCOUNT = myWORD.split('');
sec = 0;
textobject.textbox = '';
onEnterFrame = function () {
if (sec < myCOUNT.length) {
textobject.textbox += myCOUNT[sec++];
}
if (i > max) {
removeMovieClip(textobject);
this.attachMovie('penis', 'penis99', 300);
_root.penis99._x = 75;
_root.penis99._y = 53;
i = 0;
}
};
_root.textobject.onPress = function () {
var v1 = new Sound();
v1.attachSound('button_down');
v1.start();
textobject.textbox = '';
myWORD = storyPARTS[i++];
myCOUNT = myWORD.split('');
sec = 0;
};
}
movieClip 168 {
}
frame 70 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 70 {
function optionMENU() {
this.attachMovie('optionOBJ', 'option3', 300);
_root.option3.choicebox = 'CONTINUE';
_root.option3._x = 408.5;
_root.option3._y = 365.05;
_root.option3.onPress = function () {
_root.gotoAndStop(113);
deleteOBJ();
};
}
function deleteOBJ() {
removeMovieClip(option1);
removeMovieClip(option2);
removeMovieClip(option3);
}
stop();
this.attachMovie('textbox_object', 'textobject', 1);
_root.textobject._x = 400;
_root.textobject._y = 541.05;
var storyPARTS = new Array();
var max = 8;
storyPARTS[0] = 'Kimberly: !!!!!';
storyPARTS[1] = 'Rey: .... Ahhhhhh....';
storyPARTS[2] = 'Kimberly: did you just cum inside me???';
storyPARTS[3] = 'Rey: ahHHhhhh...';
storyPARTS[4] = 'Kimberly: we didn\'t talk about this Mr. Rey...';
storyPARTS[5] = 'Rey: ... then what do you want?';
storyPARTS[6] = 'Kimberly: you have to pay me for this....';
storyPARTS[7] = 'Rey: ehHHhhhh????';
var myWORD;
var myCOUNT;
var i = 1;
myWORD = storyPARTS[0];
myCOUNT = myWORD.split('');
sec = 0;
textobject.textbox = '';
onEnterFrame = function () {
if (sec < myCOUNT.length) {
textobject.textbox += myCOUNT[sec++];
}
if (i > max) {
removeMovieClip(textobject);
optionMENU();
i = 0;
}
};
_root.textobject.onPress = function () {
var v1 = new Sound();
v1.attachSound('button_down');
v1.start();
textobject.textbox = '';
myWORD = storyPARTS[i++];
myCOUNT = myWORD.split('');
sec = 0;
};
}
frame 72 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 72 {
function deleteOBJ() {
removeMovieClip(option1);
removeMovieClip(option2);
removeMovieClip(option3);
}
stop();
this.attachMovie('textbox_object', 'textobject', 1);
_root.textobject._x = 400;
_root.textobject._y = 541.05;
var storyPARTS = new Array();
var max = 9;
storyPARTS[0] = '.... ....';
storyPARTS[1] = 'Kimberly: ahhhHHh... ohhh..';
storyPARTS[2] = 'Kimberly: oh yeahhh!...';
storyPARTS[3] = 'Kimberly: ahhhh... ahhh...';
storyPARTS[4] = 'Kimberly: AhHHHhhh.....';
storyPARTS[5] = 'Kimberly: .... mmMMmmmmmm....';
storyPARTS[6] = 'Kimberly: oh yes...';
storyPARTS[7] = 'Kimberly: Oh YeS...';
storyPARTS[8] = 'Kimberly: OHHH YESS!!!!';
var myWORD;
var myCOUNT;
var i = 1;
myWORD = storyPARTS[0];
myCOUNT = myWORD.split('');
sec = 0;
textobject.textbox = '';
onEnterFrame = function () {
if (sec < myCOUNT.length) {
textobject.textbox += myCOUNT[sec++];
}
if (i > max) {
removeMovieClip(textobject);
this.attachMovie('penis', 'penis99', 300);
_root.penis99._x = 75;
_root.penis99._y = 53;
i = 0;
}
};
_root.textobject.onPress = function () {
var v1 = new Sound();
v1.attachSound('button_down');
v1.start();
textobject.textbox = '';
myWORD = storyPARTS[i++];
myCOUNT = myWORD.split('');
sec = 0;
};
}
movieClip 185 {
}
frame 73 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 73 {
function optionMENU() {
this.attachMovie('optionOBJ', 'option3', 300);
_root.option3.choicebox = 'CONTINUE';
_root.option3._x = 408.5;
_root.option3._y = 365.05;
_root.option3.onPress = function () {
_root.gotoAndStop(113);
deleteOBJ();
};
}
function deleteOBJ() {
removeMovieClip(option1);
removeMovieClip(option2);
removeMovieClip(option3);
}
stop();
this.attachMovie('textbox_object', 'textobject', 1);
_root.textobject._x = 400;
_root.textobject._y = 541.05;
var storyPARTS = new Array();
var max = 8;
storyPARTS[0] = 'Kimberly: !!!!!';
storyPARTS[1] = 'Rey: .... Ahhhhhh....';
storyPARTS[2] = 'Kimberly: did you just cum inside me???';
storyPARTS[3] = 'Rey: ahHHhhhh...';
storyPARTS[4] = 'Kimberly: we didn\'t talk about this Mr. Rey...';
storyPARTS[5] = 'Rey: ... then what do you want?';
storyPARTS[6] = 'Kimberly: you have to pay me for this....';
storyPARTS[7] = 'Rey: ehHHhhhh????';
var myWORD;
var myCOUNT;
var i = 1;
myWORD = storyPARTS[0];
myCOUNT = myWORD.split('');
sec = 0;
textobject.textbox = '';
onEnterFrame = function () {
if (sec < myCOUNT.length) {
textobject.textbox += myCOUNT[sec++];
}
if (i > max) {
removeMovieClip(textobject);
optionMENU();
i = 0;
}
};
_root.textobject.onPress = function () {
var v1 = new Sound();
v1.attachSound('button_down');
v1.start();
textobject.textbox = '';
myWORD = storyPARTS[i++];
myCOUNT = myWORD.split('');
sec = 0;
};
}
frame 75 {
stop();
stopAllSounds();
this.attachMovie('story_screen', 'screeners', 2000);
_root.screeners._x = -800;
_root.screeners._y = 0;
var bttn = new Sound();
bttn.attachSound('button_down');
bttn.start();
_global.soundENGINE = true;
fram = 0;
sec = 0;
onEnterFrame = function () {
if (fram < 30) {
++fram;
}
if (fram == 30) {
++sec;
fram = 0;
}
if (sec == 3) {
_root.nextFrame();
}
};
}
frame 76 {
stopAllSounds();
var music1 = new Sound();
music1.setVolume(50);
music1.attachSound('Track_01');
music1.start(0, 999);
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 76 {
function optionMENU() {
this.attachMovie('optionOBJ', 'option1', 100);
_root.option1.choicebox = '(listen to her proposal)';
_root.option1._x = 408.5;
_root.option1._y = 274.15;
this.attachMovie('optionOBJ', 'option2', 200);
_root.option2.choicebox = 'no way!!..';
_root.option2._x = 408.5;
_root.option2._y = 319.05;
_root.option1.onPress = function () {
_root.gotoAndStop(80);
deleteOBJ();
};
_root.option2.onPress = function () {
deleteOBJ();
_root.gotoAndStop(82);
};
}
function deleteOBJ() {
removeMovieClip(option1);
removeMovieClip(option2);
removeMovieClip(option3);
}
stop();
this.attachMovie('textbox_object', 'textobject', 1);
_root.textobject._x = 400;
_root.textobject._y = 541.05;
var storyPARTS = new Array();
var max = 14;
storyPARTS[0] = '*** Knocking Door... ....';
storyPARTS[1] = 'Rey: Nika??? can I ask now your payment for your room?';
storyPARTS[2] = '(... .......... ... )';
storyPARTS[3] = 'Rey: Nika???';
storyPARTS[4] = 'Nika: umm... hello Mr.Rey...';
storyPARTS[5] = 'Rey: ohh... it\'s been eight hours...';
storyPARTS[6] = 'Nika: yeah... can I ask you to please come in for a second?';
storyPARTS[7] = 'Rey: for what?';
storyPARTS[8] = 'Nika: just please...';
storyPARTS[9] = 'Rey: ... alright....';
storyPARTS[10] = '.... ....... .......';
storyPARTS[11] = 'Nika: Mr. Rey... the truth is.. I can\'t pay you right now until next month...';
storyPARTS[12] = 'Rey: WHATTT?????';
storyPARTS[13] = 'Nika: but I can pay you something else if you allow me to...';
var myWORD;
var myCOUNT;
var i = 1;
myWORD = storyPARTS[0];
myCOUNT = myWORD.split('');
sec = 0;
textobject.textbox = '';
onEnterFrame = function () {
if (sec < myCOUNT.length) {
textobject.textbox += myCOUNT[sec++];
}
if (i > max) {
removeMovieClip(textobject);
optionMENU();
i = 0;
}
};
_root.textobject.onPress = function () {
var v2 = new Sound();
v2.attachSound('button_down');
v2.start();
textobject.textbox = '';
myWORD = storyPARTS[i++];
myCOUNT = myWORD.split('');
sec = 0;
if (i == 11) {
_root.nextFrame();
}
if (i == 14) {
_root.nextFrame();
}
};
}
frame 77 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 78 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 80 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 80 {
function optionMENU() {
this.attachMovie('optionOBJ', 'option1', 100);
_root.option1.choicebox = 'Cow Girl';
_root.option1._x = 408.5;
_root.option1._y = 274.15;
this.attachMovie('optionOBJ', 'option2', 200);
_root.option2.choicebox = 'Dog Style';
_root.option2._x = 408.5;
_root.option2._y = 319.05;
this.attachMovie('optionOBJ', 'option3', 300);
_root.option3.choicebox = 'Missionary';
_root.option3._x = 408.5;
_root.option3._y = 365.05;
_root.option1.onPress = function () {
_root.gotoAndStop(85);
deleteOBJ();
};
_root.option2.onPress = function () {
_root.gotoAndStop(88);
deleteOBJ();
};
_root.option3.onPress = function () {
_root.gotoAndStop(91);
deleteOBJ();
};
}
function deleteOBJ() {
removeMovieClip(option1);
removeMovieClip(option2);
removeMovieClip(option3);
}
stop();
this.attachMovie('textbox_object', 'textobject', 1);
_root.textobject._x = 400;
_root.textobject._y = 541.05;
var storyPARTS = new Array();
var max = 6;
storyPARTS[0] = 'Nika: I can offer you some fun...';
storyPARTS[1] = 'Rey: ???? are you sure about that?';
storyPARTS[2] = 'Nika: yeah....';
storyPARTS[3] = 'Rey: alright, I guess I don\'t have any choice...';
storyPARTS[4] = 'Rey: better than nothing....';
storyPARTS[5] = '-What do you want to do with her?';
var myWORD;
var myCOUNT;
var i = 1;
myWORD = storyPARTS[0];
myCOUNT = myWORD.split('');
sec = 0;
textobject.textbox = '';
onEnterFrame = function () {
if (sec < myCOUNT.length) {
textobject.textbox += myCOUNT[sec++];
}
if (i > max) {
removeMovieClip(textobject);
optionMENU();
i = 0;
}
};
_root.textobject.onPress = function () {
var v2 = new Sound();
v2.attachSound('button_down');
v2.start();
textobject.textbox = '';
myWORD = storyPARTS[i++];
myCOUNT = myWORD.split('');
sec = 0;
if (i == 12) {
_root.nextFrame();
}
if (i == 14) {
_root.nextFrame();
}
};
}
frame 82 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 82 {
function optionMENU() {
this.attachMovie('optionOBJ', 'option3', 300);
_root.option3.choicebox = 'CONTINUE';
_root.option3._x = 408.5;
_root.option3._y = 365.05;
_root.option3.onPress = function () {
_root.gotoAndStop(116);
deleteOBJ();
};
}
function deleteOBJ() {
removeMovieClip(option1);
removeMovieClip(option2);
removeMovieClip(option3);
}
stop();
this.attachMovie('textbox_object', 'textobject', 1);
_root.textobject._x = 400;
_root.textobject._y = 541.05;
var storyPARTS = new Array();
var max = 5;
storyPARTS[0] = 'Nika: but Mr. Rey...';
storyPARTS[1] = 'Rey: I am not that kind of person you are thinking..';
storyPARTS[2] = 'Nika: yeah....';
storyPARTS[3] = 'Rey: so, please... leave my house immediately before I call some cops..';
storyPARTS[4] = 'Nika: .. . .... ...';
var myWORD;
var myCOUNT;
var i = 1;
myWORD = storyPARTS[0];
myCOUNT = myWORD.split('');
sec = 0;
textobject.textbox = '';
onEnterFrame = function () {
if (sec < myCOUNT.length) {
textobject.textbox += myCOUNT[sec++];
}
if (i > max) {
removeMovieClip(textobject);
optionMENU();
i = 0;
}
};
_root.textobject.onPress = function () {
var v1 = new Sound();
v1.attachSound('button_down');
v1.start();
textobject.textbox = '';
myWORD = storyPARTS[i++];
myCOUNT = myWORD.split('');
sec = 0;
};
}
frame 85 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 85 {
function deleteOBJ() {
removeMovieClip(option1);
removeMovieClip(option2);
removeMovieClip(option3);
}
stop();
this.attachMovie('textbox_object', 'textobject', 1);
_root.textobject._x = 400;
_root.textobject._y = 541.05;
var storyPARTS = new Array();
var max = 9;
storyPARTS[0] = '.... ....';
storyPARTS[1] = 'Nika: mmMMmmmmmm....';
storyPARTS[2] = 'Nika: yes baby????..';
storyPARTS[3] = 'Nika: oh... you like it inside me??? MmmMMmmmmm';
storyPARTS[4] = 'Nika: mmMMmmMMMMMMmmm...';
storyPARTS[5] = 'Nika: MMMMMMmMMMMmm!!!...';
storyPARTS[6] = 'Nika: OHHhhHHhhhhh....';
storyPARTS[7] = 'Nika: DON\'T STOPp!!!! DON\'T STOP!!!!.....';
storyPARTS[8] = 'Nika: AHHHHhhHHHhhhHHHHHHHHHH!!!!!';
var myWORD;
var myCOUNT;
var i = 1;
myWORD = storyPARTS[0];
myCOUNT = myWORD.split('');
sec = 0;
textobject.textbox = '';
onEnterFrame = function () {
if (sec < myCOUNT.length) {
textobject.textbox += myCOUNT[sec++];
}
if (i > max) {
removeMovieClip(textobject);
this.attachMovie('penis', 'penis99', 300);
_root.penis99._x = 75;
_root.penis99._y = 53;
i = 0;
}
};
_root.textobject.onPress = function () {
var v1 = new Sound();
v1.attachSound('button_down');
v1.start();
textobject.textbox = '';
myWORD = storyPARTS[i++];
myCOUNT = myWORD.split('');
sec = 0;
};
}
movieClip 218 {
}
frame 86 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 86 {
function optionMENU() {
this.attachMovie('optionOBJ', 'option3', 300);
_root.option3.choicebox = 'CONTINUE';
_root.option3._x = 408.5;
_root.option3._y = 365.05;
_root.option3.onPress = function () {
_root.gotoAndStop(113);
deleteOBJ();
};
}
function deleteOBJ() {
removeMovieClip(option1);
removeMovieClip(option2);
removeMovieClip(option3);
}
stop();
this.attachMovie('textbox_object', 'textobject', 1);
_root.textobject._x = 400;
_root.textobject._y = 541.05;
var storyPARTS = new Array();
var max = 8;
storyPARTS[0] = 'Nika: !!!!!!!!!!!!';
storyPARTS[1] = 'Rey: .... DAMN!! THIS IS HEAVEN!!!!!....';
storyPARTS[2] = 'Nika: WoW! I love it baby...';
storyPARTS[3] = 'Rey: you do?';
storyPARTS[4] = 'Nika: of COURSE I do....';
storyPARTS[5] = 'Rey: Uuummm..... can you be my girlfriend???';
storyPARTS[6] = 'Nika: I\'m sorry Rey.... but you know I just want fun not commitment..';
storyPARTS[7] = 'Rey: wOW! just WOW!...';
var myWORD;
var myCOUNT;
var i = 1;
myWORD = storyPARTS[0];
myCOUNT = myWORD.split('');
sec = 0;
textobject.textbox = '';
onEnterFrame = function () {
if (sec < myCOUNT.length) {
textobject.textbox += myCOUNT[sec++];
}
if (i > max) {
removeMovieClip(textobject);
optionMENU();
i = 0;
}
};
_root.textobject.onPress = function () {
var v1 = new Sound();
v1.attachSound('button_down');
v1.start();
textobject.textbox = '';
myWORD = storyPARTS[i++];
myCOUNT = myWORD.split('');
sec = 0;
};
}
frame 88 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 88 {
function deleteOBJ() {
removeMovieClip(option1);
removeMovieClip(option2);
removeMovieClip(option3);
}
stop();
this.attachMovie('textbox_object', 'textobject', 1);
_root.textobject._x = 400;
_root.textobject._y = 541.05;
var storyPARTS = new Array();
var max = 9;
storyPARTS[0] = '.... ....';
storyPARTS[1] = 'Nika: mmMMmmmmmm....';
storyPARTS[2] = 'Nika: yes baby????..';
storyPARTS[3] = 'Nika: oh... you like it inside me??? MmmMMmmmmm';
storyPARTS[4] = 'Nika: mmMMmmMMMMMMmmm...';
storyPARTS[5] = 'Nika: MMMMMMmMMMMmm!!!...';
storyPARTS[6] = 'Nika: OHHhhHHhhhhh....';
storyPARTS[7] = 'Nika: DON\'T STOPp!!!! DON\'T STOP!!!!.....';
storyPARTS[8] = 'Nika: AHHHHhhHHHhhhHHHHHHHHHH!!!!!';
var myWORD;
var myCOUNT;
var i = 1;
myWORD = storyPARTS[0];
myCOUNT = myWORD.split('');
sec = 0;
textobject.textbox = '';
onEnterFrame = function () {
if (sec < myCOUNT.length) {
textobject.textbox += myCOUNT[sec++];
}
if (i > max) {
removeMovieClip(textobject);
this.attachMovie('penis', 'penis99', 300);
_root.penis99._x = 75;
_root.penis99._y = 53;
i = 0;
}
};
_root.textobject.onPress = function () {
var v1 = new Sound();
v1.attachSound('button_down');
v1.start();
textobject.textbox = '';
myWORD = storyPARTS[i++];
myCOUNT = myWORD.split('');
sec = 0;
};
}
movieClip 239 {
}
frame 89 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 89 {
function optionMENU() {
this.attachMovie('optionOBJ', 'option3', 300);
_root.option3.choicebox = 'CONTINUE';
_root.option3._x = 408.5;
_root.option3._y = 365.05;
_root.option3.onPress = function () {
_root.gotoAndStop(113);
deleteOBJ();
};
}
function deleteOBJ() {
removeMovieClip(option1);
removeMovieClip(option2);
removeMovieClip(option3);
}
stop();
this.attachMovie('textbox_object', 'textobject', 1);
_root.textobject._x = 400;
_root.textobject._y = 541.05;
var storyPARTS = new Array();
var max = 8;
storyPARTS[0] = 'Nika: !!!!!!!!!!!!';
storyPARTS[1] = 'Rey: .... DAMN!! THIS IS HEAVEN!!!!!....';
storyPARTS[2] = 'Nika: WoW! I love it baby...';
storyPARTS[3] = 'Rey: you do?';
storyPARTS[4] = 'Nika: of COURSE I do....';
storyPARTS[5] = 'Rey: Uuummm..... can you be my girlfriend???';
storyPARTS[6] = 'Nika: I\'m sorry Rey.... but you know I just want fun not commitment..';
storyPARTS[7] = 'Rey: wOW! just WOW!...';
var myWORD;
var myCOUNT;
var i = 1;
myWORD = storyPARTS[0];
myCOUNT = myWORD.split('');
sec = 0;
textobject.textbox = '';
onEnterFrame = function () {
if (sec < myCOUNT.length) {
textobject.textbox += myCOUNT[sec++];
}
if (i > max) {
removeMovieClip(textobject);
optionMENU();
i = 0;
}
};
_root.textobject.onPress = function () {
var v1 = new Sound();
v1.attachSound('button_down');
v1.start();
textobject.textbox = '';
myWORD = storyPARTS[i++];
myCOUNT = myWORD.split('');
sec = 0;
};
}
frame 91 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 91 {
function deleteOBJ() {
removeMovieClip(option1);
removeMovieClip(option2);
removeMovieClip(option3);
}
stop();
this.attachMovie('textbox_object', 'textobject', 1);
_root.textobject._x = 400;
_root.textobject._y = 541.05;
var storyPARTS = new Array();
var max = 9;
storyPARTS[0] = '.... ....';
storyPARTS[1] = 'Nika: mmMMmmmmmm....';
storyPARTS[2] = 'Nika: yes baby????..';
storyPARTS[3] = 'Nika: oh... you like it inside me??? MmmMMmmmmm';
storyPARTS[4] = 'Nika: mmMMmmMMMMMMmmm...';
storyPARTS[5] = 'Nika: MMMMMMmMMMMmm!!!...';
storyPARTS[6] = 'Nika: OHHhhHHhhhhh....';
storyPARTS[7] = 'Nika: DON\'T STOPp!!!! DON\'T STOP!!!!.....';
storyPARTS[8] = 'Nika: AHHHHhhHHHhhhHHHHHHHHHH!!!!!';
var myWORD;
var myCOUNT;
var i = 1;
myWORD = storyPARTS[0];
myCOUNT = myWORD.split('');
sec = 0;
textobject.textbox = '';
onEnterFrame = function () {
if (sec < myCOUNT.length) {
textobject.textbox += myCOUNT[sec++];
}
if (i > max) {
removeMovieClip(textobject);
this.attachMovie('penis', 'penis99', 300);
_root.penis99._x = 75;
_root.penis99._y = 53;
i = 0;
}
};
_root.textobject.onPress = function () {
var v1 = new Sound();
v1.attachSound('button_down');
v1.start();
textobject.textbox = '';
myWORD = storyPARTS[i++];
myCOUNT = myWORD.split('');
sec = 0;
};
}
movieClip 288 {
}
frame 92 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 92 {
function optionMENU() {
this.attachMovie('optionOBJ', 'option3', 300);
_root.option3.choicebox = 'CONTINUE';
_root.option3._x = 408.5;
_root.option3._y = 365.05;
_root.option3.onPress = function () {
_root.gotoAndStop(113);
deleteOBJ();
};
}
function deleteOBJ() {
removeMovieClip(option1);
removeMovieClip(option2);
removeMovieClip(option3);
}
stop();
this.attachMovie('textbox_object', 'textobject', 1);
_root.textobject._x = 400;
_root.textobject._y = 541.05;
var storyPARTS = new Array();
var max = 8;
storyPARTS[0] = 'Nika: !!!!!!!!!!!!';
storyPARTS[1] = 'Rey: .... DAMN!! THIS IS HEAVEN!!!!!....';
storyPARTS[2] = 'Nika: WoW! I love it baby...';
storyPARTS[3] = 'Rey: you do?';
storyPARTS[4] = 'Nika: of COURSE I do....';
storyPARTS[5] = 'Rey: Uuummm..... can you be my girlfriend???';
storyPARTS[6] = 'Nika: I\'m sorry Rey.... but you know I just want fun not commitment..';
storyPARTS[7] = 'Rey: wOW! just WOW!...';
var myWORD;
var myCOUNT;
var i = 1;
myWORD = storyPARTS[0];
myCOUNT = myWORD.split('');
sec = 0;
textobject.textbox = '';
onEnterFrame = function () {
if (sec < myCOUNT.length) {
textobject.textbox += myCOUNT[sec++];
}
if (i > max) {
removeMovieClip(textobject);
optionMENU();
i = 0;
}
};
_root.textobject.onPress = function () {
var v1 = new Sound();
v1.attachSound('button_down');
v1.start();
textobject.textbox = '';
myWORD = storyPARTS[i++];
myCOUNT = myWORD.split('');
sec = 0;
};
}
frame 95 {
stop();
stopAllSounds();
this.attachMovie('story_screen', 'screeners', 2000);
_root.screeners._x = -800;
_root.screeners._y = 0;
var bttn = new Sound();
bttn.attachSound('button_down');
bttn.start();
_global.soundENGINE = true;
fram = 0;
sec = 0;
onEnterFrame = function () {
if (fram < 30) {
++fram;
}
if (fram == 30) {
++sec;
fram = 0;
}
if (sec == 3) {
_root.nextFrame();
}
};
}
frame 96 {
stopAllSounds();
var music1 = new Sound();
music1.setVolume(50);
music1.attachSound('Track_01');
music1.start(0, 999);
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 96 {
function optionMENU() {
this.attachMovie('optionOBJ', 'option1', 100);
_root.option1.choicebox = 'alright, show me what you got...';
_root.option1._x = 408.5;
_root.option1._y = 274.15;
this.attachMovie('optionOBJ', 'option2', 200);
_root.option2.choicebox = 'sorry girl, you\'re not my type...';
_root.option2._x = 408.5;
_root.option2._y = 319.05;
_root.option1.onPress = function () {
_root.gotoAndStop(99);
deleteOBJ();
};
_root.option2.onPress = function () {
_root.gotoAndStop(101);
deleteOBJ();
};
}
function deleteOBJ() {
removeMovieClip(option1);
removeMovieClip(option2);
removeMovieClip(option3);
}
stop();
this.attachMovie('textbox_object', 'textobject', 1);
_root.textobject._x = 400;
_root.textobject._y = 541.05;
var storyPARTS = new Array();
var max = 15;
storyPARTS[0] = '*** Knocking Door... ....';
storyPARTS[1] = 'Rey: Julliene????';
storyPARTS[2] = '.. ...... ...';
storyPARTS[3] = 'Rey: ....';
storyPARTS[4] = 'Julliene: yes Mr. Rey?';
storyPARTS[5] = 'Rey: the payment?';
storyPARTS[6] = 'Julliene: ummm... I have it now...';
storyPARTS[7] = 'Rey: alright.. where is it?';
storyPARTS[8] = 'Julliene: please come inside before I can give it to you....';
storyPARTS[9] = 'Rey: okay...';
storyPARTS[10] = 'Rey: WOAAHHH!!!';
storyPARTS[11] = 'Julliene: I don\'t have any money Mr. Rey.... but I can do anything for you...';
storyPARTS[12] = 'Julliene: I can do the cleaning, cooking and even this....';
storyPARTS[13] = 'Rey: WAIT! wait! wait...';
storyPARTS[14] = 'Julliene: please Mr. Rey...';
var myWORD;
var myCOUNT;
var i = 1;
myWORD = storyPARTS[0];
myCOUNT = myWORD.split('');
sec = 0;
textobject.textbox = '';
onEnterFrame = function () {
if (sec < myCOUNT.length) {
textobject.textbox += myCOUNT[sec++];
}
if (i > max) {
removeMovieClip(textobject);
optionMENU();
i = 0;
}
};
_root.textobject.onPress = function () {
var v2 = new Sound();
v2.attachSound('button_down');
v2.start();
textobject.textbox = '';
myWORD = storyPARTS[i++];
myCOUNT = myWORD.split('');
sec = 0;
if (i == 11) {
_root.nextFrame();
}
};
}
frame 97 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 99 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 99 {
function optionMENU() {
this.attachMovie('optionOBJ', 'option1', 100);
_root.option1.choicebox = 'Cow Girl';
_root.option1._x = 408.5;
_root.option1._y = 274.15;
this.attachMovie('optionOBJ', 'option2', 200);
_root.option2.choicebox = 'Dog Style';
_root.option2._x = 408.5;
_root.option2._y = 319.05;
this.attachMovie('optionOBJ', 'option3', 300);
_root.option3.choicebox = 'Missionary';
_root.option3._x = 408.5;
_root.option3._y = 365.05;
_root.option1.onPress = function () {
_root.gotoAndStop(107);
deleteOBJ();
};
_root.option2.onPress = function () {
_root.gotoAndStop(104);
deleteOBJ();
};
_root.option3.onPress = function () {
_root.gotoAndStop(110);
deleteOBJ();
};
}
function deleteOBJ() {
removeMovieClip(option1);
removeMovieClip(option2);
removeMovieClip(option3);
}
stop();
this.attachMovie('textbox_object', 'textobject', 1);
_root.textobject._x = 400;
_root.textobject._y = 541.05;
var storyPARTS = new Array();
var max = 3;
storyPARTS[0] = 'Julliene: thank you Mr. Rey!!! ';
storyPARTS[1] = 'Julliene: because of your kindness.. please enjoy my body..';
storyPARTS[2] = 'Rey: oh yes I will...';
var myWORD;
var myCOUNT;
var i = 1;
myWORD = storyPARTS[0];
myCOUNT = myWORD.split('');
sec = 0;
textobject.textbox = '';
onEnterFrame = function () {
if (sec < myCOUNT.length) {
textobject.textbox += myCOUNT[sec++];
}
if (i > max) {
removeMovieClip(textobject);
optionMENU();
i = 0;
}
};
_root.textobject.onPress = function () {
var v2 = new Sound();
v2.attachSound('button_down');
v2.start();
textobject.textbox = '';
myWORD = storyPARTS[i++];
myCOUNT = myWORD.split('');
sec = 0;
if (i == 12) {
_root.nextFrame();
}
if (i == 14) {
_root.nextFrame();
}
};
}
frame 101 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 101 {
function optionMENU() {
this.attachMovie('optionOBJ', 'option3', 300);
_root.option3.choicebox = 'CONTINUE';
_root.option3._x = 408.5;
_root.option3._y = 365.05;
_root.option3.onPress = function () {
_root.gotoAndStop(116);
deleteOBJ();
};
}
function deleteOBJ() {
removeMovieClip(option1);
removeMovieClip(option2);
removeMovieClip(option3);
}
stop();
this.attachMovie('textbox_object', 'textobject', 1);
_root.textobject._x = 400;
_root.textobject._y = 541.05;
var storyPARTS = new Array();
var max = 6;
storyPARTS[0] = 'Rey: sorry...';
storyPARTS[1] = 'Julliene: please Mr. Rey...';
storyPARTS[2] = 'Rey: please leave my house Julliene.. I need money more than pleasure...';
storyPARTS[3] = 'Julliene: but.... ';
storyPARTS[4] = 'Rey: .. ..... ....';
storyPARTS[5] = 'Julliene: okay...';
var myWORD;
var myCOUNT;
var i = 1;
myWORD = storyPARTS[0];
myCOUNT = myWORD.split('');
sec = 0;
textobject.textbox = '';
onEnterFrame = function () {
if (sec < myCOUNT.length) {
textobject.textbox += myCOUNT[sec++];
}
if (i > max) {
removeMovieClip(textobject);
optionMENU();
i = 0;
}
};
_root.textobject.onPress = function () {
var v1 = new Sound();
v1.attachSound('button_down');
v1.start();
textobject.textbox = '';
myWORD = storyPARTS[i++];
myCOUNT = myWORD.split('');
sec = 0;
};
}
frame 104 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 104 {
function deleteOBJ() {
removeMovieClip(option1);
removeMovieClip(option2);
removeMovieClip(option3);
}
stop();
this.attachMovie('textbox_object', 'textobject', 1);
_root.textobject._x = 400;
_root.textobject._y = 541.05;
var storyPARTS = new Array();
var max = 9;
storyPARTS[0] = '.... ....';
storyPARTS[1] = 'Jullienne: ooHHhhhh....';
storyPARTS[2] = 'Jullienne: do you like it there Rey???';
storyPARTS[3] = 'Rey: !!!....';
storyPARTS[4] = 'Jullienne: AHHhhhhhh... yes baby... ';
storyPARTS[5] = 'Jullienne: YESSsss Babyy....';
storyPARTS[6] = 'Jullienne: yessss...';
storyPARTS[7] = 'Jullienne: YESssSSs!!!';
storyPARTS[8] = 'Jullienne: HARDERRR!!!!!!!! AHHhHHHHH!!!';
var myWORD;
var myCOUNT;
var i = 1;
myWORD = storyPARTS[0];
myCOUNT = myWORD.split('');
sec = 0;
textobject.textbox = '';
onEnterFrame = function () {
if (sec < myCOUNT.length) {
textobject.textbox += myCOUNT[sec++];
}
if (i > max) {
removeMovieClip(textobject);
this.attachMovie('penis', 'penis99', 300);
_root.penis99._x = 75;
_root.penis99._y = 53;
i = 0;
}
};
_root.textobject.onPress = function () {
var v1 = new Sound();
v1.attachSound('button_down');
v1.start();
textobject.textbox = '';
myWORD = storyPARTS[i++];
myCOUNT = myWORD.split('');
sec = 0;
};
}
movieClip 315 {
}
frame 105 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 105 {
function optionMENU() {
this.attachMovie('optionOBJ', 'option3', 300);
_root.option3.choicebox = 'CONTINUE';
_root.option3._x = 408.5;
_root.option3._y = 365.05;
_root.option3.onPress = function () {
_root.gotoAndStop(113);
deleteOBJ();
};
}
function deleteOBJ() {
removeMovieClip(option1);
removeMovieClip(option2);
removeMovieClip(option3);
}
stop();
this.attachMovie('textbox_object', 'textobject', 1);
_root.textobject._x = 400;
_root.textobject._y = 541.05;
var storyPARTS = new Array();
var max = 10;
storyPARTS[0] = '.... ....';
storyPARTS[1] = 'Jullienne: AHHhHHHHHH!!!';
storyPARTS[2] = 'Rey: !!!!!!!!!!!.... ';
storyPARTS[3] = 'Jullienne: mmMMmmmmmmm.....';
storyPARTS[4] = 'Rey: oh my goodness.. you are incredible...';
storyPARTS[5] = 'Rey: so after this... will you marry me?';
storyPARTS[6] = 'Jullienne: Of Course!!! thank you Rey... but...';
storyPARTS[7] = 'Jullienne: you have to accept my children too...';
storyPARTS[8] = '(What??? are you a single mom?)';
storyPARTS[9] = 'Rey: EHHhhhHHhhh...???';
var myWORD;
var myCOUNT;
var i = 1;
myWORD = storyPARTS[0];
myCOUNT = myWORD.split('');
sec = 0;
textobject.textbox = '';
onEnterFrame = function () {
if (sec < myCOUNT.length) {
textobject.textbox += myCOUNT[sec++];
}
if (i > max) {
removeMovieClip(textobject);
optionMENU();
i = 0;
}
};
_root.textobject.onPress = function () {
var v1 = new Sound();
v1.attachSound('button_down');
v1.start();
textobject.textbox = '';
myWORD = storyPARTS[i++];
myCOUNT = myWORD.split('');
sec = 0;
};
}
frame 107 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 107 {
function deleteOBJ() {
removeMovieClip(option1);
removeMovieClip(option2);
removeMovieClip(option3);
}
stop();
this.attachMovie('textbox_object', 'textobject', 1);
_root.textobject._x = 400;
_root.textobject._y = 541.05;
var storyPARTS = new Array();
var max = 9;
storyPARTS[0] = '.... ....';
storyPARTS[1] = 'Jullienne: ooHHhhhh....';
storyPARTS[2] = 'Jullienne: do you like it there Rey???';
storyPARTS[3] = 'Rey: !!!....';
storyPARTS[4] = 'Jullienne: AHHhhhhhh... yes baby... ';
storyPARTS[5] = 'Jullienne: YESSsss Babyy....';
storyPARTS[6] = 'Jullienne: yessss...';
storyPARTS[7] = 'Jullienne: YESssSSs!!!';
storyPARTS[8] = 'Jullienne: HARDERRR!!!!!!!! AHHhHHHHH!!!';
var myWORD;
var myCOUNT;
var i = 1;
myWORD = storyPARTS[0];
myCOUNT = myWORD.split('');
sec = 0;
textobject.textbox = '';
onEnterFrame = function () {
if (sec < myCOUNT.length) {
textobject.textbox += myCOUNT[sec++];
}
if (i > max) {
removeMovieClip(textobject);
this.attachMovie('penis', 'penis99', 300);
_root.penis99._x = 75;
_root.penis99._y = 53;
i = 0;
}
};
_root.textobject.onPress = function () {
var v1 = new Sound();
v1.attachSound('button_down');
v1.start();
textobject.textbox = '';
myWORD = storyPARTS[i++];
myCOUNT = myWORD.split('');
sec = 0;
};
}
movieClip 334 {
}
frame 108 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 108 {
function optionMENU() {
this.attachMovie('optionOBJ', 'option3', 300);
_root.option3.choicebox = 'CONTINUE';
_root.option3._x = 408.5;
_root.option3._y = 365.05;
_root.option3.onPress = function () {
_root.gotoAndStop(113);
deleteOBJ();
};
}
function deleteOBJ() {
removeMovieClip(option1);
removeMovieClip(option2);
removeMovieClip(option3);
}
stop();
this.attachMovie('textbox_object', 'textobject', 1);
_root.textobject._x = 400;
_root.textobject._y = 541.05;
var storyPARTS = new Array();
var max = 10;
storyPARTS[0] = '.... ....';
storyPARTS[1] = 'Jullienne: AHHhHHHHHH!!!';
storyPARTS[2] = 'Rey: !!!!!!!!!!!.... ';
storyPARTS[3] = 'Jullienne: mmMMmmmmmmm.....';
storyPARTS[4] = 'Rey: oh my goodness.. you are incredible...';
storyPARTS[5] = 'Rey: so after this... will you marry me?';
storyPARTS[6] = 'Jullienne: Of Course!!! thank you Rey... but...';
storyPARTS[7] = 'Jullienne: you have to accept my children too...';
storyPARTS[8] = '(What??? are you a single mom?)';
storyPARTS[9] = 'Rey: EHHhhhHHhhh...???';
var myWORD;
var myCOUNT;
var i = 1;
myWORD = storyPARTS[0];
myCOUNT = myWORD.split('');
sec = 0;
textobject.textbox = '';
onEnterFrame = function () {
if (sec < myCOUNT.length) {
textobject.textbox += myCOUNT[sec++];
}
if (i > max) {
removeMovieClip(textobject);
optionMENU();
i = 0;
}
};
_root.textobject.onPress = function () {
var v1 = new Sound();
v1.attachSound('button_down');
v1.start();
textobject.textbox = '';
myWORD = storyPARTS[i++];
myCOUNT = myWORD.split('');
sec = 0;
};
}
frame 110 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 110 {
function deleteOBJ() {
removeMovieClip(option1);
removeMovieClip(option2);
removeMovieClip(option3);
}
stop();
this.attachMovie('textbox_object', 'textobject', 1);
_root.textobject._x = 400;
_root.textobject._y = 541.05;
var storyPARTS = new Array();
var max = 9;
storyPARTS[0] = '.... ....';
storyPARTS[1] = 'Jullienne: ooHHhhhh....';
storyPARTS[2] = 'Jullienne: do you like it there Rey???';
storyPARTS[3] = 'Rey: !!!....';
storyPARTS[4] = 'Jullienne: AHHhhhhhh... yes baby... ';
storyPARTS[5] = 'Jullienne: YESSsss Babyy....';
storyPARTS[6] = 'Jullienne: yessss...';
storyPARTS[7] = 'Jullienne: YESssSSs!!!';
storyPARTS[8] = 'Jullienne: HARDERRR!!!!!!!! AHHhHHHHH!!!';
var myWORD;
var myCOUNT;
var i = 1;
myWORD = storyPARTS[0];
myCOUNT = myWORD.split('');
sec = 0;
textobject.textbox = '';
onEnterFrame = function () {
if (sec < myCOUNT.length) {
textobject.textbox += myCOUNT[sec++];
}
if (i > max) {
removeMovieClip(textobject);
this.attachMovie('penis', 'penis99', 300);
_root.penis99._x = 75;
_root.penis99._y = 53;
i = 0;
}
};
_root.textobject.onPress = function () {
var v1 = new Sound();
v1.attachSound('button_down');
v1.start();
textobject.textbox = '';
myWORD = storyPARTS[i++];
myCOUNT = myWORD.split('');
sec = 0;
};
}
movieClip 353 {
}
frame 111 {
this.attachMovie('story_screen', 'screeners', this.getNextHighestDepth());
_root.screeners._x = -800;
_root.screeners._y = 0;
}
frame 111 {
function optionMENU() {
this.attachMovie('optionOBJ', 'option3', 300);
_root.option3.choicebox = 'CONTINUE';
_root.option3._x = 408.5;
_root.option3._y = 365.05;
_root.option3.onPress = function () {
_root.gotoAndStop(113);
deleteOBJ();
};
}
function deleteOBJ() {
removeMovieClip(option1);
removeMovieClip(option2);
removeMovieClip(option3);
}
stop();
this.attachMovie('textbox_object', 'textobject', 1);
_root.textobject._x = 400;
_root.textobject._y = 541.05;
var storyPARTS = new Array();
var max = 10;
storyPARTS[0] = '.... ....';
storyPARTS[1] = 'Jullienne: AHHhHHHHHH!!!';
storyPARTS[2] = 'Rey: !!!!!!!!!!!.... ';
storyPARTS[3] = 'Jullienne: mmMMmmmmmmm.....';
storyPARTS[4] = 'Rey: oh my goodness.. you are incredible...';
storyPARTS[5] = 'Rey: so after this... will you marry me?';
storyPARTS[6] = 'Jullienne: Of Course!!! thank you Rey... but...';
storyPARTS[7] = 'Jullienne: you have to accept my children too...';
storyPARTS[8] = '(What??? are you a single mom?)';
storyPARTS[9] = 'Rey: EHHhhhHHhhh...???';
var myWORD;
var myCOUNT;
var i = 1;
myWORD = storyPARTS[0];
myCOUNT = myWORD.split('');
sec = 0;
textobject.textbox = '';
onEnterFrame = function () {
if (sec < myCOUNT.length) {
textobject.textbox += myCOUNT[sec++];
}
if (i > max) {
removeMovieClip(textobject);
optionMENU();
i = 0;
}
};
_root.textobject.onPress = function () {
var v1 = new Sound();
v1.attachSound('button_down');
v1.start();
textobject.textbox = '';
myWORD = storyPARTS[i++];
myCOUNT = myWORD.split('');
sec = 0;
};
}
frame 113 {
stop();
stopAllSounds();
_global.lock_switch = false;
var music1 = new Sound();
music1.setVolume(75);
music1.attachSound('Track_04');
music1.start(0, 999);
this.attachMovie('story_screen', 'screeners', 2000);
_root.screeners._x = -800;
_root.screeners._y = 0;
var bttn = new Sound();
bttn.attachSound('button_down');
bttn.start();
_global.soundENGINE = true;
fram = 0;
sec = 0;
onEnterFrame = function () {
if (fram < 30) {
++fram;
}
if (fram == 30) {
++sec;
fram = 0;
}
if (sec == 3) {
_root.nextFrame();
}
};
}
frame 114 {
function optionMENU() {
this.attachMovie('optionOBJ', 'option3', 300);
_root.option3.choicebox = 'Back to Main Menu';
_root.option3._x = 408.5;
_root.option3._y = 365.05;
_root.option3.onPress = function () {
_root.gotoAndStop(3);
deleteOBJ();
};
}
function deleteOBJ() {
removeMovieClip(option1);
removeMovieClip(option2);
removeMovieClip(option3);
}
stop();
this.attachMovie('textbox_object', 'textobject', 1);
_root.textobject._x = 400;
_root.textobject._y = 541.05;
var storyPARTS = new Array();
var max = 7;
storyPARTS[0] = '(I can\'t believe this is happening in my life...)';
storyPARTS[1] = '(this girl is so hot....';
storyPARTS[2] = '.. ...... ...';
storyPARTS[3] = '(but the one that I love is Jasmine....)';
storyPARTS[4] = '(haiz... this is crazy...)';
storyPARTS[5] = '(anyway.... tomorrow is another day...)';
storyPARTS[6] = 'TO BE CONTINUED....';
var myWORD;
var myCOUNT;
var i = 1;
myWORD = storyPARTS[0];
myCOUNT = myWORD.split('');
sec = 0;
textobject.textbox = '';
onEnterFrame = function () {
if (sec < myCOUNT.length) {
textobject.textbox += myCOUNT[sec++];
}
if (i > max) {
removeMovieClip(textobject);
optionMENU();
i = 0;
}
};
_root.textobject.onPress = function () {
var v1 = new Sound();
v1.attachSound('button_down');
v1.start();
textobject.textbox = '';
myWORD = storyPARTS[i++];
myCOUNT = myWORD.split('');
sec = 0;
};
}
frame 116 {
stop();
stopAllSounds();
_global.lock_switch = false;
var music1 = new Sound();
music1.setVolume(75);
music1.attachSound('Track_03');
music1.start(0, 999);
this.attachMovie('story_screen', 'screeners', 2000);
_root.screeners._x = -800;
_root.screeners._y = 0;
var bttn = new Sound();
bttn.attachSound('button_down');
bttn.start();
_global.soundENGINE = true;
fram = 0;
sec = 0;
onEnterFrame = function () {
if (fram < 30) {
++fram;
}
if (fram == 30) {
++sec;
fram = 0;
}
if (sec == 3) {
_root.nextFrame();
}
};
}
frame 117 {
function optionMENU() {
this.attachMovie('optionOBJ', 'option3', 300);
_root.option3.choicebox = 'Back to Main Menu';
_root.option3._x = 408.5;
_root.option3._y = 365.05;
_root.option3.onPress = function () {
_root.gotoAndStop(3);
deleteOBJ();
};
}
function deleteOBJ() {
removeMovieClip(option1);
removeMovieClip(option2);
removeMovieClip(option3);
}
stop();
this.attachMovie('textbox_object', 'textobject', 1);
_root.textobject._x = 400;
_root.textobject._y = 541.05;
var storyPARTS = new Array();
var max = 6;
storyPARTS[0] = '(hmmmm.... the one that I trully love is Jasmine)';
storyPARTS[1] = '(this is just a temptation! I WILL WIN IT!!!)';
storyPARTS[2] = '(WAHahah hahaha hahaha....)';
storyPARTS[3] = '(haiz... this is crazy...)';
storyPARTS[4] = '(anyway.... tomorrow is another day...)';
storyPARTS[5] = 'TO BE CONTINUED....';
var myWORD;
var myCOUNT;
var i = 1;
myWORD = storyPARTS[0];
myCOUNT = myWORD.split('');
sec = 0;
textobject.textbox = '';
onEnterFrame = function () {
if (sec < myCOUNT.length) {
textobject.textbox += myCOUNT[sec++];
}
if (i > max) {
removeMovieClip(textobject);
optionMENU();
i = 0;
}
};
_root.textobject.onPress = function () {
var v1 = new Sound();
v1.attachSound('button_down');
v1.start();
textobject.textbox = '';
myWORD = storyPARTS[i++];
myCOUNT = myWORD.split('');
sec = 0;
};
}