Browse Source

initialization

rachels 4 years ago
commit
99987b9603

BIN
Ibiza.qsp


+ 102 - 0
MakeQSPIbiza.bat

@@ -0,0 +1,102 @@
+@ECHO off
+
+:: Set those lines to fit your setup. 
+:: This is where mod_Ibiza.qsp will be copied. If you don't want to move it just comment (::) the line below.
+:: set CP_TO=..\GL_ECV
+
+:: This is the program used to open the QSPFILE. If you comment this line windows will launch the default app for the ".qsp" extension.
+set QSPGUI=QSP\Player-video\qspgui.exe
+set QGEN=QSP\QGen5\QGen.exe
+
+:: The file that will be generated or open
+set QSPFILE=Ibiza.qsp
+
+::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
+
+:menu
+cls
+echo.
+echo :: QSP Compiler and Launcher
+echo.
+
+if defined QGEN (
+	if not exist "%QGEN%" ( 
+		echo QGEN     : [ERROR] - %QGEN%  not found. Using DEFAULT application.
+		set QGEN=
+	) else ( echo QGEN     : [OK] - "%QGEN%")
+) else echo QGEN     : [NOT DEFINED] - Using DEFAULT application.
+
+if defined QSPGUI (
+	if not exist "%QSPGUI%" ( 
+		echo QSP EXEC : [ERROR] - %QSPGUI% not found.
+		set QSPGUI=
+	) else ( echo QSP EXEC : [OK] - "%QSPGUI%")
+) else ( echo QSP EXEC : [NOT DEFINED] - Using Windows DEFAULT.)
+
+if defined QSPFILE (
+	if not exist "%QSPFILE%" ( 
+		echo QSP FILE : [WARNING] - %QSPFILE% not found.
+	) else ( echo QSP FILE : [OK] - "%QSPFILE%")
+) else ( echo QSP FILE : [NOT DEFINED] - ERROR: CAN'T CONTINUE.)
+
+if defined CP_TO (
+	if not exist "%CP_TO%" (
+		echo COPY     : [ERROR] - Destination "%CP_TO%" not found. Copy DISABLED.
+		set CP_TO=
+	) else ( echo COPY     : [OK] - "%CP_TO%")
+) else (  echo COPY     : [DISABLED] )
+
+echo.
+
+if defined NOT_FOUND (
+	echo ERROR: Option '%action%' wasn't recognized. Is it lowercase? 
+	set NOT_FOUND=
+)
+
+echo.
+echo ACTIONS: (B)uild  (R)un  (F)ull  (Q)Gen  (E)xit
+echo.
+set /p action=Choose an action:
+
+if defined QSPFILE (
+	if %action% == b goto build
+	if %action% == r goto run
+	if %action% == f goto build
+	if %action% == q goto qgen
+)
+
+if %action% == e goto exit
+
+set NOT_FOUND=1
+goto menu
+
+:build
+echo.
+echo Building ...
+
+@ECHO ON
+python -3 txtmerge.py locations mod_Ibiza.txt
+txt2gam.exe mod_Ibiza.txt %QSPFILE% > nul
+@ECHO OFF
+
+echo.
+if defined CP_TO ( echo Copying %QSPFILE% to "%CP_TO%" ... & copy %QSPFILE% %CP_TO% > nul )
+
+echo.
+echo Done.
+pause
+if %action% == f ( goto run ) else ( goto menu )
+
+:qgen
+echo.
+echo Running ...
+if defined CP_TO ( start %QGEN% %CP_TO%\%QSPFILE% ) else ( start %QGEN% %QSPFILE% )
+goto exit
+
+:run
+echo.
+echo Running ...
+
+if defined CP_TO ( start %QSPGUI% %CP_TO%\%QSPFILE% ) else ( start %QSPGUI% %QSPFILE% )
+
+:exit

+ 31 - 0
check_consistency.py

@@ -0,0 +1,31 @@
+#!/usr/bin/env python
+# checks to make sure that mod_Ibiza.qproj is in sync with the location files
+
+import os
+import sys
+import re
+import io
+import xml.etree.ElementTree as ET
+import os.path
+
+# read the project xml file first
+tree = ET.parse('mod_Ibiza.qproj')
+root = tree.getroot()
+
+
+xml_locations = []
+os_locations = os.listdir("locations")
+
+print "Locations missing from ./locations/:"
+for location in root.iter('Location'):
+    name = location.attrib['name'].replace("$","_")
+    xml_locations.append(name)
+    
+    if name not in os_locations:
+        print name
+
+
+print "Locations missing from .qproj:"
+for name in os_locations:
+    if name not in xml_locations:
+        print name

+ 39 - 0
check_images.py

@@ -0,0 +1,39 @@
+#!/usr/bin/env python
+
+import io
+import os
+import re
+
+#path = os.getcwd()
+#print path
+
+startpattern = """images/"""
+imgFormats = ['jpg','gif']
+
+infile = io.open('mod_Ibiza.txt',mode='r',encoding='utf-16')
+lines = infile.readlines()
+
+images = []
+
+for name in os.listdir("locations"):
+    ifile = io.open(
+        os.path.join("locations", name),
+        mode='rt',
+        encoding='utf-8'
+    )
+    text = ifile.read()
+    for match in re.finditer(r"images.+?[.](gif|jpg|png)", text, flags=re.U):
+        imgfile = match.group().encode("utf-8")
+        randmatch = re.search(r"'\s*[+]\s*rand\s*[(]\s*(\d+)\s*[,]\s*(\d+)\s*[)]\s*[+]\s*'", imgfile)
+        if randmatch != None:
+            for i in range(int(randmatch.group(1)), 1+int(randmatch.group(2))):
+                images.append(re.sub(r"'\s*[+]\s*rand\s*[(].*?[)]\s*[+]\s*'", str(i), imgfile))
+        else:
+            images.append(imgfile)
+    
+    ifile.close()
+
+
+for image in images:
+    if not re.search(r"[<$]", image) and not os.path.isfile(image):
+        print "Image not found:", image

+ 153 - 0
keywords_en.xml

@@ -0,0 +1,153 @@
+<?xml version="1.0" encoding="utf-8"?>
+<QGen-keywords>
+  <Statements>
+    <Keyword name="pl" desc="PL [expression] / *PL [expression] - output text to an additional / main description window, then a new line"/>
+    <Keyword name="clear" desc="CLEAR / *CLEAR - cleaning additional / the main description window"/>
+    <Keyword name="clr" desc="CLR / *CLR - cleaning additional / the main description window"/>
+    <Keyword name="p" desc="P [expression] / *P [expression] - output text to an additional / main description window"/>
+    <Keyword name="nl" desc="NL [expression] / *NL [expression] - transition to a new line, then output the text to an additional/ main description window"/>
+    <Keyword name="msg" desc="MSG [expression] - output of the message in the information window"/>
+    <Keyword name="wait" desc="WAIT [#expression] - stop execution of the program for a specified number of milliseconds"/>
+    <Keyword name="act" desc="ACT [$variable],[$path to the image]:[operator] &amp; [operator] &amp; ... - adding an action"/>
+    <Keyword name="delact" desc="DELACT [$variable] / DEL ACT [$variable] - deleting an action"/>
+    <Keyword name="cla" desc="CLA - clearing the action list"/>
+    <Keyword name="cmdclear" desc="CMDCLEAR - clearing input line"/>
+    <Keyword name="cmdclr" desc="CMDCLEAR - clearing input line"/>
+    <Keyword name="cls" desc="CLS - clears the screen, leaving only a list of items"/>
+    <Keyword name="menu" desc="MENU [$expression] - displaying a menu with a given name"/>
+    <Keyword name="settimer" desc="SETTIMER [#expression] - specifies the timer interval for the counter location"/>
+    <Keyword name="dynamic" desc="DYNAMIC [$line of code],[parameter 1],[parameter 2], ... - dynamic code execution"/>
+    <Keyword name="set" desc="SET [variable name]=[expression] - setting the value of a variable"/>
+    <Keyword name="let" desc="LET [variable name]=[expression] - setting the value of a variable"/>
+    <Keyword name="killvar" desc="KILLVAR [$name],[#index] - delete all variables / specified variable"/>
+    <Keyword name="copyarr" desc="COPYARR [$array-receiver],[$source array] - copying the contents of an array to another array"/>
+    <Keyword name="addobj" desc="ADDOBJ [$variable],[$path to the image],[#position] / ADD OBJ [$variable],[$path to the image],[#position] - adding an item"/>
+    <Keyword name="delobj" desc="DELOBJ [$variable] / DEL OBJ [$variable] - object removal"/>
+    <Keyword name="killobj" desc="KILLOBJ [#position] - removal of all items / of the item in the given position"/>
+    <Keyword name="unselect" desc="UNSELECT - cancellation of object selection"/>
+    <Keyword name="unsel" desc="UNSEL - cancellation of object selection"/>
+    <Keyword name="killall" desc="KILLALL - delete all variables and items"/>
+    <Keyword name="opengame" desc="OPENGAME [$expression] - Loading the game state"/>
+    <Keyword name="openqst" desc="OPENQST [$expression] - opening and launching a game file"/>
+    <Keyword name="addqst" desc="ADDQST [$expression] - adding locations from the specified file"/>
+    <Keyword name="killqst" desc="KILLQST - delete all added via ADDQST locations"/>
+    <Keyword name="savegame" desc="SAVEGAME [$expression] - preservation of the game state"/>
+    <Keyword name="refint" desc="REFINT - interface update"/>
+    <Keyword name="showacts" desc="SHOWACTS [#expression] - display / hiding action list"/>
+    <Keyword name="showinput" desc="SHOWINPUT [#expression] - display / hiding the input line"/>
+    <Keyword name="showobjs" desc="SHOWOBJS [#expression] - display / hiding a list of items"/>
+    <Keyword name="showstat" desc="SHOWSTAT [#expression] - display / hiding an additional description window"/>
+    <Keyword name="if" desc="IF [#expression]:[operator1] &amp; [operator2] &amp; ... ELSE [operator3] &amp; [operator4] &amp; ... - condition"/>
+    <Keyword name="else" desc="IF [#expression]:[operator1] &amp; [operator2] &amp; ... ELSE [operator3] &amp; [operator4] &amp; ... - condition"/>
+    <Keyword name="elseif" desc="ELSEIF [#expression]:[operator1] &amp; [operator2] &amp; ... - alternate state"/>
+    <Keyword name="exit" desc="EXIT - completion of the current code"/>
+    <Keyword name="end" desc="END - completion of a multi-line form IF / ACT"/>
+    <Keyword name="jump" desc="JUMP [$expression] - go to the specified label"/>
+    <Keyword name="gosub" desc="GOSUB [$expression],[parameter 1],[parameter 2], ... - processing of the specified location"/>
+    <Keyword name="gs" desc="GS [$expression],[parameter 1],[parameter 2], ... - processing of the specified location"/>
+    <Keyword name="goto" desc="GOTO [$expression],[parameter 1],[parameter 2], ... - go to the specified location"/>
+    <Keyword name="gt" desc="GT [$expression],[parameter 1],[parameter 2], ... - go to the specified location"/>
+    <Keyword name="xgoto" desc="XGOTO [$expression],[parameter 1],[parameter 2], ... - go to the specified location without clearing the main description window"/>
+    <Keyword name="xgt" desc="XGT [$expression],[parameter 1],[parameter 2], ... - go to the specified location without clearing the main description window"/>
+    <Keyword name="play" desc="PLAY [$path to an audio file],[#volume] - playing an audio file with a specified volume"/>
+    <Keyword name="close" desc="CLOSE [$path to an audio file] / CLOSE ALL - stop playing a sound file / all sound files"/>
+    <Keyword name="view" desc="VIEW [$path to the graphic file] - image view"/>
+  </Statements>
+  <Expressions>
+    <Keyword name="and" desc="[#expression 1] AND [#expression 2] - logical &quot;and=&quot;"/>
+    <Keyword name="or" desc="[#expression 1] OR [#expression 2] - logical &quot;or&quot;"/>
+    <Keyword name="obj" desc="OBJ [$subject] - checking the presence of an object in a backpack"/>
+    <Keyword name="loc" desc="LOC [$location] - checking the existence of a location"/>
+    <Keyword name="no" desc="NO [#expression] - negation"/>
+    <Keyword name="mod" desc="[#expression 1] MOD [#expression 2] - calculation of the remainder from division"/>
+    <Keyword name="desc" desc="DESC([$expression]) - returns the text of the basic description of the location"/>
+    <Keyword name="$desc" desc="$DESC([$expression]) - returns the text of the basic description of the location"/>
+    <Keyword name="iif" desc="IIF([#expression],[Expression_Yes],[expression_no]) - возвращает одно из выражений по условию"/>
+    <Keyword name="$iif" desc="$IIF([#expression],[Expression_Yes],[expression_no]) - возвращает одно из выражений по условию"/>
+    <Keyword name="input" desc="INPUT([expression]) - shows the text input window and returns the entered value"/>
+    <Keyword name="$input" desc="$INPUT([expression]) - shows the text input window and returns the entered value"/>
+    <Keyword name="isplay" desc="ISPLAY([$expression]) - checks if the specified file is currently playing"/>
+    <Keyword name="max" desc="MAX([expression 1],[expression 2], ...) - returns the maximum of the argument values"/>
+    <Keyword name="$max" desc="$MAX([expression 1],[expression 2], ...) - returns the maximum of the argument values"/>
+    <Keyword name="min" desc="MIN([expression 1],[expression 2], ...) - returns the minimum of the argument values"/>
+    <Keyword name="$min" desc="$MIN([expression 1],[expression 2], ...) - returns the minimum of the argument values"/>
+    <Keyword name="rand" desc="RAND([#expression 1],[#expression 2]) - returns a random number between the given"/>
+    <Keyword name="rgb" desc="RGB([#red],[#green],[#blue]) - returns color code based on 3 components"/>
+    <Keyword name="getobj" desc="GETOBJ([#position]) - returns the name of the item located in the given position"/>
+    <Keyword name="$getobj" desc="$GETOBJ([#position]) - returns the name of the item located in the given position"/>
+    <Keyword name="dyneval" desc="DYNEVAL([$expression],[parameter 1],[parameter 2], ...) - returns the value of the dynamically evaluated expression"/>
+    <Keyword name="$dyneval" desc="$DYNEVAL([$expression],[parameter 1],[parameter 2], ...) - returns the value of the dynamically evaluated expression"/>
+    <Keyword name="func" desc="FUNC([$expression],[parameter 1],[parameter 2], ...) - processing specified location as a function"/>
+    <Keyword name="$func" desc="$FUNC([$expression],[parameter 1],[parameter 2], ...) - processing specified location as a function"/>
+    <Keyword name="arrsize" desc="ARRSIZE([$expression]) - returns the number of elements in the specified array"/>
+    <Keyword name="arrpos" desc="ARRPOS([#starting index],[$array name],[value]) - search in an array of an element with a given value"/>
+    <Keyword name="instr" desc="INSTR([#initial position],[$text],[$search text]) - search for text occurrences"/>
+    <Keyword name="isnum" desc="ISNUM([$expression]) - checks if the specified string is a number"/>
+    <Keyword name="trim" desc="TRIM([$expression]) - removes adjacent spaces and tabs from text"/>
+    <Keyword name="$trim" desc="$TRIM([$expression]) - removes adjacent spaces and tabs from text"/>
+    <Keyword name="ucase" desc="UCASE([$expression]) - converts small letters of text to large"/>
+    <Keyword name="$ucase" desc="$UCASE([$expression]) - converts small letters of text to large"/>
+    <Keyword name="lcase" desc="LCASE([$expression]) - converts large letters of text into small"/>
+    <Keyword name="$lcase" desc="$LCASE([$expression]) - converts large letters of text into small"/>
+    <Keyword name="len" desc="LEN([$expression]) - returns the length of the specified string"/>
+    <Keyword name="mid" desc="MID([$text],[#start],[#length]) - cuts out a string of the specified length starting from the specified location"/>
+    <Keyword name="$mid" desc="$MID([$text],[#start],[#length]) - cuts out a string of the specified length starting from the specified location"/>
+    <Keyword name="replace" desc="REPLACE([$text],[$search text],[$text to replace]) - replaces the specified string in the text"/>
+    <Keyword name="$replace" desc="$REPLACE([$text],[$search text],[$text to replace]) - replaces the specifieed string in the text"/>
+    <Keyword name="str" desc="STR([#expression]) - converts a number to a string"/>
+    <Keyword name="$str" desc="$STR([#expression]) - converts a number to a string"/>
+    <Keyword name="val" desc="VAL([$expression]) - converts a string to a number"/>
+    <Keyword name="arrcomp" desc="ARRCOMP([#starting index],[$array name],[$template]) - search in an array of an element corresponding to a regular expression"/>
+    <Keyword name="strcomp" desc="STRCOMP([$expression],[$template]) - checks the specified text for consistency with a regular expression"/>
+    <Keyword name="strfind" desc="STRFIND([$expression],[$template],[#number]) - returns a substring, corresponding to the group numbered [#number] regular expression"/>
+    <Keyword name="$strfind" desc="$STRFIND([$expression],[$template],[#number]) - returns a substring, corresponding to the group numbered [#number] regular expression"/>
+    <Keyword name="strpos" desc="STRPOS([$expression],[$template],[#number]) - returns the position of the substring, corresponding to the group with the number [#number] regular expression"/>
+    <Keyword name="countobj" desc="COUNTOBJ -returns the current number of items"/>
+    <Keyword name="msecscount" desc="MSECSCOUNT - returns the number of milliseconds, elapsed since the start of the game"/>
+    <Keyword name="rnd" desc="RND - returns a random value from 1 to 1000"/>
+    <Keyword name="curloc" desc="CURLOC - returns the name of the current location"/>
+    <Keyword name="$curloc" desc="$CURLOC - returns the name of the current location"/>
+    <Keyword name="qspver" desc="QSPVER - returns the version of the interpreter"/>
+    <Keyword name="$qspver" desc="$QSPVER - returns the version of the interpreter"/>
+    <Keyword name="selobj" desc="SELOBJ - returns the name of the selected item"/>
+    <Keyword name="$selobj" desc="$SELOBJ - returns the name of the selected item"/>
+    <Keyword name="selact" desc="SELACT - returns the name of the selected action"/>
+    <Keyword name="$selact" desc="$SELACT - returns the name of the selected action"/>
+    <Keyword name="curacts" desc="CURACTS - returns all current actions as code"/>
+    <Keyword name="$curacts" desc="$CURACTS - returns all current actions as code"/>
+    <Keyword name="user_text" desc="USER_TEXT - returns text in the input line"/>
+    <Keyword name="$user_text" desc="$USER_TEXT - returns text in the input line"/>
+    <Keyword name="usrtxt" desc="USRTXT - returns text in the input line"/>
+    <Keyword name="$usrtxt" desc="$USRTXT - returns text in the input line"/>
+    <Keyword name="maintxt" desc="MAINTXT - returns text in the main description window"/>
+    <Keyword name="$maintxt" desc="$MAINTXT - returns text in the main description window"/>
+    <Keyword name="stattxt" desc="STATTXT - returns text in an additional description window"/>
+    <Keyword name="$stattxt" desc="$STATTXT - returns text in an additional description window"/>
+  </Expressions>
+  <Variables>
+    <Keyword name="args" desc="ARGS - array with procedure parametersarray with procedure parameters / function"/>
+    <Keyword name="$args" desc="$ARGS - array with procedure parameters / function"/>
+    <Keyword name="result" desc="RESULT - the variable contains the result, returned by the current function"/>
+    <Keyword name="$result" desc="$RESULT - the variable contains the result, returned by the current function"/>
+    <Keyword name="disablescroll" desc="DISABLESCROLL - if the variable is not equal to 0, it prohibits auto-scrolling of the text in the output"/>
+    <Keyword name="disablesubex" desc="DISABLESUBEX - if the variable is not equal to 0, it prohibits the use of &quot;subexpressions&quot; in the text"/>
+    <Keyword name="nosave" desc="NOSAVE - if the variable is not equal to 0, the user can not save the game state"/>
+    <Keyword name="debug" desc="DEBUG - if the variable is not equal to 0, then disabling the game ID check when the state is loaded"/>
+    <Keyword name="$counter" desc="$COUNTER - variable contains the name of the location-counter"/>
+    <Keyword name="$ongload" desc="$ONGLOAD - variable contains the name of the location-the state load handler"/>
+    <Keyword name="$ongsave" desc="$ONGSAVE - variable contains the name of the location-a stateful handler"/>
+    <Keyword name="$onnewloc" desc="$ONNEWLOC - variable contains the name of the location-new location handler"/>
+    <Keyword name="$onactsel" desc="$ONACTSEL - variable contains the name of the location-the action selector"/>
+    <Keyword name="$onobjsel" desc="$ONOBJSEL - variable contains the name of the location-object selector handler"/>
+    <Keyword name="$onobjadd" desc="$ONOBJADD - variable contains the name of the location-addon handler"/>
+    <Keyword name="$onobjdel" desc="$ONOBJDEL - variable contains the name of the location-object removal handler"/>
+    <Keyword name="$usercom" desc="$USERCOM - variable contains the name of the location-input line handler"/>
+    <Keyword name="usehtml" desc="USEHTML - if the variable is not equal to 0, then includes the possibility of using HTML"/>
+    <Keyword name="bcolor" desc="BCOLOR - the variable contains the background color"/>
+    <Keyword name="fcolor" desc="FCOLOR - variable contains the main font color"/>
+    <Keyword name="lcolor" desc="LCOLOR - variable contains the main color of links"/>
+    <Keyword name="fsize" desc="FSIZE - variable contains the main font size"/>
+    <Keyword name="$fname" desc="$FNAME - variable contains the name of the main font"/>
+    <Keyword name="$backimage" desc="$BACKIMAGE - the variable contains the path to the background image"/>
+  </Variables>
+</QGen-keywords>

+ 38 - 0
locations/mod_Ibiza.qsrc

@@ -0,0 +1,38 @@
+# mod_Ibiza
+!input mod entry point here. this will be checked on every location, please keep it clean and brief to avoid game lag
+
+if $curloc = 'club':
+	*clr
+	gt 'mod_Ibiza_club', $ARGS[0], $ARGS[1], $ARGS[2]
+end
+
+!!* text needed
+if $location_type = 'public_outdoors' and ibizaQW = 2 and ibiza_leaveday + 1 < daystart and rand(0,20) = 0:
+	if money >= 25000:
+			'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/club11.jpg"></center>'
+			*nl 
+			'text needed for being confronted about not showing up and returning money'
+			money -= 25000
+			ibizaQW = 1
+			act 'Pay back Eric':gt curloc
+		else
+			'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/club11.jpg"></center>'
+			*nl 
+			'text needed for being taken and put to use in Sauna for not having 25000 you were paid'
+			cla & *clr
+			minut+=60
+			ibiza_owed = 25000 - money
+			workDolg = ibiza_owed
+			ibizaQW = 3
+			money = 0
+			act 'Look around': gt 'sauna', 'saunaroom'
+		end
+end
+
+if $location_type = 'public_outdoors' and ibizaQW = 4 and rand(0,20) = 0:
+	ibizaQW = 1
+	'test abduction'
+	act 'GO': gt 'abduction', 'start'
+end
+
+--- mod_Ibiza ---------------------------------

+ 753 - 0
locations/mod_IbizaDance.qsrc

@@ -0,0 +1,753 @@
+# mod_IbizaDance
+menu_off = 1
+
+if $ARGS[0] = 'start':
+	gs 'saveposition'
+	gt 'mod_IbizaDance','initSequence'
+end
+
+if $ARGS[0] = 'initSequence':
+	if pcs_horny < 20:
+		dancerun = 0
+	elseif pcs_horny < 40:
+		dancerun = 1
+	elseif pcs_horny < 60:
+		dancerun = 2
+	elseif pcshorny < 90:
+		dancerun = 3
+	else
+		dancerun = 4
+	end
+
+	if dancerun = 0:
+		danceParam[0] = rand(3,5)
+		danceParam[1] = danceParam[0] + rand(2,3)
+		danceParam[2] = danceParam[1] + rand(1,2)
+		danceParam[3] = danceParam[2]
+	elseif dancerun = 1:
+		danceParam[0] = rand(2,4)
+		danceParam[1] = danceParam[0] + rand(2,4)
+		danceParam[2] = danceParam[1] + rand(2,4)
+		danceParam[3] = danceParam[2] + rand(0,3)
+	elseif dancerun = 2:
+		danceParam[0] = rand(1,2)
+		danceParam[1] = dance[0] + rand(2,4)
+		danceParam[2] = dance[1] + rand(2,4)
+		danceParam[3] = dance[2] + rand(1,3)
+	else
+		danceParam[0] = 1
+		danceParam[1] = danceParam[0] + rand(1,2)
+		danceParam[2] = danceParam[1] + rand(2,4)
+		danceParam[3] = danceParam[2] + rand(3,4)
+	end
+
+	gt 'IbizaDance', 'nextStep'
+end
+
+if $ARGS[0] = 'nextStep':
+	gs 'stat'
+	gs 'npcgeneratec', 0, 'customer', rand(18,40)
+	gs 'boyStat', $npclastgenerated
+
+	$orgasm_or = 'no'
+
+	if dancenum < danceParam[0]:
+		act 'Dance!!': gt 'IbizaDance', 'stage1'
+	elseif dancenum < danceParam[1]:
+		act 'I feel my pussy too wet': gt 'IbizaDance', 'stage2'
+	elseif dancenum < danceParam[2]:
+		act 'I can´t anymore!!!': gt 'IbizaDance', 'stage3'
+	elseif dancenum < danceParam[3]:
+		act 'I have to fuck now!!!': gt 'IbizaDance', 'stage4'
+	end
+
+	if dancenum >= danceParam[3]:
+		act 'Take a break':
+			killvar 'danceParam'
+			dancerun += 1
+			dancenum = 0
+
+			gt 'restoreposition'
+		end
+	else
+		act 'Stop dancing': gt 'restoreposition'
+	end
+end
+
+if $ARGS[0] = 'stage1':
+	minut += 15
+	pcs_horny += rand(1, 6)
+
+	dancerand = rand(0, 39)
+	dancenum += 1
+
+	*clr
+
+	if dancerand = 0:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase1/idpa40.mp4"></video></center><br>'
+		'You are dancing next to another Purple Girl. You note that she is dancing with an alarming speed.<font color=#FF00CC>I think she must have gotten cocaine... Should I take some too...? </font> '
+	elseif dancerand = 1:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase1/idpa1.mp4"></video></center><br>'
+		'You dance to one song after another. As you''re dancing, you see purple bracelets on the wrists of some of your companions around you, other Purple Girls just like you.'
+	elseif dancerand = 2:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase1/idpa2.mp4"></video></center><br>'
+		'You dance without stopping. The atmosphere is deafening, people seem crazy and you''re having fun like you''ve never had before.'
+	elseif dancerand = 3:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase1/idpa3.mp4"></video></center><br>'
+		'You are dancing with two other Purple Girls. You''re having a great time!'
+	elseif dancerand = 4:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase1/idpa4.mp4"></video></center><br>'
+		'A customer comes up to you and tells you, "Hey! I like how you dance! Do you move well in other things?" "In other things I move better!" -You answer him with a double intention winking your eye-'
+	elseif dancerand = 5:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase1/idpa5.mp4"></video></center><br>'
+		'You stop to speak for a moment with another Purple Girl. She tells you that she is from Ukraine and that it is her third trip here. "I will come as many times as I can!" –She tell you shouting- "I''m making a lot of money here! Two more trips and I can get the sports car I''ve always wanted to have! I will be the envy of my people!"'
+	elseif dancerand = 6:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase1/idpa6.mp4"></video></center><br>'
+		'You dance and dance without stopping. The neon lights come to a pause for a moment and you notice your bracelets light up on their own. They''re fluorescent!'
+	elseif dancerand = 7:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase1/idpa7.mp4"></video></center><br>'
+		'You can''t seem to stop dancing as the music flows through your body. The people around you are dancing just as wildly! The atmosphere is exhilarating!'
+	elseif dancerand = 8:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase1/idpa8.mp4"></video></center><br>'
+		'You get together with a few other Purple Girls and continue to dance.	You recall the atmosphere being totally different from the one you know about Pavlovsk and St. Petersburg. It''s a environment filled with debauchery and sensuality, you find it much more fun!'
+	elseif dancerand = 9:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase1/idpa9.mp4"></video></center><br>'
+		'You climb up on one of the little platforms of the dance floor. Your dance moves enchant the others on the dance floor, leaving you to stand out against the rest. You''re the queen of the disco!'
+	elseif dancerand = 10:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase1/idpa10.mp4"></video></center><br>'
+		'You join another Purple Girl teammate in front of the DJ. Your dance moves are mesmerizing! You are encouraging everyone. The atmosphere is maddening!'
+	elseif dancerand = 11:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase1/idpa11.mp4"></video></center><br>'
+		'As you are dancing, you notice a new set of lights becoming in sync with the rhythm of the music!'
+	elseif dancerand = 12:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase1/idpa12.mp4"></video></center><br>'
+		'It seems the atmosphere is heating up. Some of the Purple Girls used this as a incentive to removed their tops. Leaving them to dance in their bra! <font color=#FF00CC>Why don''t I do the same? It''s getting really hot!</font> – You think-'
+	elseif dancerand = 13:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase1/idpa13.mp4"></video></center><br>'
+		'You are dancing is impeccable. Suddenly a drunk customer approaches you and starts dancing with you and the other Purple Girls.'
+	elseif dancerand = 14:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase1/idpa14.mp4"></video></center><br>'
+		'You are dancing sensuously on one of the boat''s dance floors. Your bewitching hip movements don''t go unnoticed and a client moves towards you. He begins to dance with you and you insinuate more to him'
+	elseif dancerand = 15:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase1/idpa15.mp4"></video></center><br>'
+		'While dancing, you can see how another Purple Girls'' arousal heighten as she rubs her tits against a customer''s ass. <font color=#FF00CC>She just took a yellow pill! I''m sure!</font>'
+	elseif dancerand = 16:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase1/idpa16.mp4"></video></center><br>'
+		'You continue to sway your hips when a customer stands in front of you. He smoothly crouches down only to come up and motorboat your tits. Your nipples become a little hard from that!'
+		'<font color=#FF00CC>You''re getting horny, <<$pcs_nickname>> You''re getting horny! </font>	It''s truth... You feel your nipples rubbing against the fabric of your top and you can see that they are easily distinguished through it.'
+	elseif dancerand = 17:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase1/idpa17.mp4"></video></center><br>'
+		'You get to dance with another Purple Girl. You both enjoy each other''s company as you dance. You both start joking and laughing together uncontrollably.'
+	elseif dancerand = 18:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase1/idpa18.mp4"></video></center><br>'
+		'You are dancing when a client approaches you and another Purple Girl. He starts talking to your partner in a language you don''t understand. You think it might be Spanish.'
+	elseif dancerand = 19:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase1/idpa19.mp4"></video></center><br>'
+		'Your way of dancing is hypnotic. You notice two clients standing by the bar. They seemed to be in a trance as they watch you. You don''t hesitate and throw a kiss at them. They look at each other and smile.'
+	elseif dancerand = 20:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase1/idpa20.mp4"></video></center><br>'
+		'You are dancing when you meet a known Purple Girl. You talk for a while exchanging pleasantries. She tells you that she had went to see a security guard who has gave her some cocaine and a yellow pill. "Fuck <<$pcs_nickname>>! I feel my pussy getting so wet and it''s only been a few minutes! I think those damn yellow pills are aphrodisiacs!"'
+	elseif dancerand = 21:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase1/idpa21.mp4"></video></center><br>'
+		'You don''t stop dancing! You see a client who can''t take their eyes off you. You flirt with him and you moisten your lip with your tongue. <font color=#FF00CC>Mmmmmnn... He''s so handsome! </font>'
+	elseif dancerand = 22:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase1/idpa22.mp4"></video></center><br>'
+		'You''re having so much fun. You love to dance! With your spell binding dance moves and your breast out for display, you soon become the center of attention for many customers...'
+	elseif dancerand = 23:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase1/idpa23.mp4"></video></center><br>'
+		'You continue dancing and you notice more and more eyes fixated on alluring body.'
+	elseif dancerand = 24:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase1/idpa24.mp4"></video></center><br>'
+		'While you are dancing, a client approaches behind you and he begins to grind himself on you. You can feel his bulge all over your ass...'
+	elseif dancerand = 25:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase1/idpa25.mp4"></video></center><br>'
+		'Your hip movements catch the eye of more than one client. <font color=#FF00CC> I am convinced that my breasts also attract your attention. </font> –You think with a smile'
+	elseif dancerand = 26:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase1/idpa26.mp4"></video></center><br>'
+		'While you are dancing you realize that a client is taking photos of you. <font color=#FF00CC> I''m sure he''s taken one under my dress! </font> '
+	elseif dancerand = 27:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase1/idpa27.mp4"></video></center><br>'
+		'Your dance by the bar is encouraging many customers to consume more drinks!'
+	elseif dancerand = 28:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase1/idpa28.mp4"></video></center><br>'
+		'You climb up on one of the gangways on the main dance floor. Your skills don''t go unnoticed by anyone. You''re the queen of the dance floor!'
+	elseif dancerand = 29:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase1/idpa29.mp4"></video></center><br>'
+		'You are having so much fun with the other girls. They really know how to party! Your good mood is overflowing!'
+	elseif dancerand = 30:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase1/idpa30.mp4"></video></center><br>'
+		'"Lift your glasses!" The DJ engages. You and a few others decide for follow his command. The laughing and energy is contagious.'
+	elseif dancerand = 31:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase1/idpa31.mp4"></video></center><br>'
+		'You go to see the DJ''s mixer while you continue dancing...'
+	elseif dancerand = 32:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase1/idpa32.mp4"></video></center><br>'
+		'You''re dancing and having a blast with other Purple Girls and a group of customers. You''re having a great time!'
+	elseif dancerand = 33:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase1/idpa33.mp4"></video></center><br>'
+		'The jokes continue to entertain you as you dance with others Purple Girls and a few clients. They really know how to have a good time!'
+	elseif dancerand = 34:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase1/idpa34.mp4"></video></center><br>'
+		'While you are dancing you see that there are two companions next to the DJ of the boat''s main dance floor. They are encouraging to everyone to follow the devilish rhythm of the mix that the DJ has placed.'
+	elseif dancerand = 35:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase1/idpa35.mp4"></video></center><br>'
+		'While you are dancing you see a companion who has come up with you from the central gangway of the boat. You take note that she can''t seem to stop laughing... The pupils of the eyes very dilated as well. You think she has probably visited one of the security guards.'
+	elseif dancerand = 36:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase1/idpa36.mp4"></video></center><br>'
+		'You''ve gone dancing on one side of the boat with less population. You begin to dance more freely without fear of accidentally hitting someone.'
+	elseif dancerand = 37:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase1/idpa37.mp4"></video></center><br>'
+		'You are dancing excitedly when you see another Purple Girl who is rushing to drink her champagne cocktail. You notice that she is quite drunk and you turn away from her. You can''t help but think that she might vomit on your outfit.'
+	elseif dancerand = 38:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase1/idpa38.mp4"></video></center><br>'
+		'You head to one of the dance floors when other Purple Girl tells you, "I''ve just been with a guy whose cock is so small. Could you imagine? I''m was almost dying of laughter when he asked me if he hurt me while he was fucking me! I didn''t even feel it inside me!"'
+	elseif dancerand = 39:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase1/idpa39.mp4"></video></center><br>'
+		'You are dancing next to another Purple Girl and she says you, "Wow, that shit you can get from the security guards is amazing! You have to try it! I''m on fire!"'
+	end
+
+	gs 'arousal', 'end'
+
+	xgt 'IbizaDance', 'nextStep'
+end
+
+if $ARGS[0] = 'stage2':
+	minut += 15
+	pcs_horny += rand(3, 8)
+
+	dancerand = rand(1, 43)
+	dancenum += 1
+
+	*clr
+
+	if dancerand = 1:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase2/idpb1.mp4"></video></center><br>'
+		'You feel your panties dampening from your pussy. A client approaches you in a swimsuit. And you, without a second thought, you decide to grope his naked ass'
+	elseif dancerand = 2:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase2/idpb2.mp4"></video></center><br>'
+		'The atmosphere is terribly sensual and you feel yourself becoming more a part of it. You feel your nipples rising from under your top and feel the moisture of your pussy soak your vulva.'
+		'You don''t hesitate to continue dancing while showing more skin in the process. <font color=#FF00CC> I''m going to lower my panties in front of that guy. Let''s see what he''ll do. </font> '
+	elseif dancerand = 3:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase2/idpb3.mp4"></video></center><br>'
+		'You continue to dance but simultaneously feel very excited and horny. You see that a client is resting on a couch and you approach him sensually. You slowly spread your legs on top of him. All the while moving your hips and rubbing your crotch on his knee.'
+		'Its simple touch, yet it causes you to leave a trail of moisture onto his pants! The customer notices the stain of moisture and speaks, "Are you horny? Hey bitch!" –He speaks to you-	"Mmmmnn, Yes"'
+		'"I''m horny... uuuuumm" <font color=#FF00CC> Oh my God, my nipples are so hard... Is it from the yellow pills? </font> '
+	elseif dancerand = 4:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase2/idpb4.mp4"></video></center><br>'
+		'You continue to dance while simultaneously feeling excited and horny. You see that another client resting on a couch and you approach him sensually moving your hips and rub your ass on his bulge. You realize his bulge becomes bigger in a matter of seconds...'
+	elseif dancerand = 5:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase2/idpb5.mp4"></video></center><br>'
+		'You continue to dance but simultaneously feel very excited and horny. Without a second thought, you rub your whole ass against the crotch of the client who is dancing next to you. You notice how the client''s bulge grows and your excitement does too...'
+	elseif dancerand = 6:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase2/idpb6.mp4"></video></center><br>'
+		'You feel very horny and a little drunk. The customers around you know it as well. They make a request asking if you can show them what you have underneath your attire.'
+		'You don''t hesitate to show them your panties while you continue dancing. "Hey bitch! Show us something else!" –They shout you-'
+		'"Do you want to see more?"-You reply them- "Something like this?" - You tell them as you pull your panties to the right and show them your pussy.'
+	elseif dancerand = 7:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase2/idpb7.mp4"></video></center><br>'
+		'You''re dancing with another Purple Girl... <font color=#FF00CC> Oh my god! My nipples are torturing me! They''re so hard it hurts! Maybe I should free them soon... </font>'
+	elseif dancerand = 8:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase2/idpb8.mp4"></video></center><br>'
+		'You feel that your entire body falling to the well of desire and lust. As you and another Purple Girl dance together, you exchange kisses and caresses. This doesn´t help lessen your arousal in the slightest!'
+	elseif dancerand = 9:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase2/idpb9.mp4"></video></center><br>'
+		'You are dancing on the runway of the main dance floor next to another Purple Girl. The costumers from below the platform quickly become enraptured by watching your sensual yet rough movements. Leaving the both of you to become the center of attention.'
+		'Suddenly, you bend over and grind your ass against your dance partner. The shouts of enthusiasm of those who are watching you are evident. You notice your arousal heighten!'
+	elseif dancerand = 10:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase2/idpb10.mp4"></video></center><br>'
+		'You stop dancing for a moment to go to the bar and have a drink. Suddenly a customer says something about your ass, leaving you briefly busy. Another Purple Girl decides to smack your ass while you show him the merchandise. "Do you like my ass?" –You ask him with a smile'
+	elseif dancerand = 11:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase2/idpb11.mp4"></video></center><br>'
+		'You''re still dancing on the runway of the main dance floor. You are so horny that you mindlessly pull the bottom of your outfit higher for a better view.'
+	elseif dancerand = 12:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase2/idpb12.mp4"></video></center><br>'
+		'You don''t stop dancing and encourage everyone to continue with the party. Your body attracts many customers and you note that some are taking pictures of your ass while you are dancing. <font color=#FF00CC> I''m sure they can see how soaked my panties are... </font> – You think-.'
+	elseif dancerand = 13:
+		gs 'underwear', 'remove'
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase2/idpb13.mp4"></video></center><br>'
+		'You dance sensually, moving your hips and your waist very intricately. You are very horny and you realize that you have to remove your panties soon in order for them to stop being completely soaked.'
+		'Suddenly you realize that some clients are taking photos and videos under your dress. Soon you hear one of them shout: "Damn! You can see through her panties!'
+	elseif dancerand = 14:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase2/idpb14.mp4"></video></center><br>'
+		'Your hip and waist movements are more insinuating. You notice that the customers are taking pictures and videos of your ass while you continue with your dance.'
+		'You feel that your little panties have gotten between the lips of your pussy... Showing a little more of you than you intended. Your panties rub against your clit leaving you even more aroused.'
+	elseif dancerand = 15:
+		gs 'underwear', 'remove'
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase2/idpb15.mp4"></video></center><br>'
+		'You keep dancing but... With no panties this time! <font color=#FF00CC> This way I can feel more comfortable. </font>	 <font color=#FF00CC> Maybe later I''ll put back them on. </font>'
+	elseif dancerand = 16:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase2/idpb16.mp4"></video></center><br>'
+		'You continue to dance and have a great time. A group of clients shout to you about them wanting to see your ass. You make sure to give them a good view and shake your ass, satisfying their request. They praise you, shortly after.'
+	elseif dancerand = 17:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase2/idpb17.mp4"></video></center><br>'
+		'You dance and have fun. You decide to continue to show your ass off more.	You present yourself on all fours on one of the couches and show the clients a view of heaven. You become distinctly aware of how horny you are, as you feel how your lips open for themselves.'
+		 '<font color=#FF00CC>Oh my God!! I''m feel so horny... Mmmmnn I want something more... </font> "Are you taking pictures of me? Come on! Take pictures of my filthy pussy!"'
+	elseif dancerand = 18:
+		gs 'underwear', 'remove'
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase2/idpb18.mp4"></video></center><br>'
+		'It seems you''re not the only one who''s dancing without panties. While showing off your most intimate bits, a customer decides to slap your ass. <font color=#FF00CC>	Mmmmnn Yes, slap my ass! I''m a girl very bad... </font> - You think-'
+	elseif dancerand = 19:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase2/idpb19.mp4"></video></center><br>'
+		'As you are dancing, you see how a customer decides to lightly yank the top of another Purple Girl leaving her tits in sight. It seems that she doesn''t mind too much as she continues to dance smiling.'
+	elseif dancerand = 20:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase2/idpb20.mp4"></video></center><br>'
+		'You can''t help but notice your nipples hurting from how hard they are. You decide it''ll be easier to keep dancing leaving while letting your breasts hang free.'
+	elseif dancerand = 21:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase2/idpb21.mp4"></video></center><br>'
+		'With your breasts free, some clients take advantage of it. They decide to take photos and videos of your naked breasts... At this moment you don''t seem to care one bit and you even get hornier knowing it.'
+	elseif dancerand = 22:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase2/idpb22.mp4"></video></center><br>'
+		'It seems your sensual movements made some customers a little too horny. One customer can''t take it any longer and lifts you from your hips. He takes advantage of your naked pussy and continuously brushes his fingers against it.'
+	elseif dancerand = 23:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase2/idpb23.mp4"></video></center><br>'
+		'Your constant arousal leads to you rubbing your ass against a customer''s crotch. As you dance against them, you notice how their bulge grows and you moisten your lips with your tongue thinking about what can happen next.'
+	elseif dancerand = 24:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase2/idpb24.mp4"></video></center><br>'
+		'Your primal need seems to stay as you continue to rub your ass against a customers crotch. <font color=#FF00CC> Oh my God! The yellow pills are doing wonders!</font>'
+	elseif dancerand = 25:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase2/idpb25.mp4"></video></center><br>'
+		'You dance insinuates much more as you shake your hips and waist. A client approaches you and rubs his crotch in your ass. He raises your outfit to feel your naked skin.... Only then do you realize that you... You aren''t wearing panties! You completely forgot you took them off!'
+	elseif dancerand = 26:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase2/idpb26.mp4"></video></center><br>'
+		'You''re dancing and you feel someone grab your ass. You look over your shoulder and you see a client who is biting his lip while your ass is being massaged. You smile and you feel hornier...'
+	elseif dancerand = 27:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase2/idpb27.mp4"></video></center><br>'
+		'You are dancing and suddenly several clients'' hands find their way through your clothes in order to find your exposed pussy.'
+	elseif dancerand = 28:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase2/idpb28.mp4"></video></center><br>'
+		'You stop dancing for a moment to go to the bar for a drink. Along the way you leave your ass exposed leading you to have it slapped by several clients.'
+	elseif dancerand = 29:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase2/idpb29.mp4"></video></center><br>'
+		'You''re dancing and a client stops you to slap your ass. "Amazing!", he breathlessly tells you.'
+	elseif dancerand = 30:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase2/idpb30.mp4"></video></center><br>'
+		'You are dancing when you see that some other Purple Girls are acting similar as you are... Some clients take advantage to touch every bit of their bodies. You get hornier just by watching.'
+	elseif dancerand = 31:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase2/idpb31.mp4"></video></center><br>'
+		'While you are dancing a client lifts your outfit only to discover your bare ass. He slaps your ass and you feel how a slight pleasure running down your body.'
+	elseif dancerand = 32:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase2/idpb32.mp4"></video></center><br>'
+		'While you dance you try to fix your breasts back into position. As you do so, another Purple Girl firmly grabs your ass and questions you, "Hey you have it really firm! How much do you exercise?"'
+	elseif dancerand = 33:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase2/idpb33.mp4"></video></center><br>'
+		'You are dancing with a customer. It shocks you a little as he is probably the most shy of the whole lot. You take his hands and you guide them to your ass. "Touch the merchandise. There is no need to be shy! I won''t bite you!" –You say him with a soft smile-'
+	elseif dancerand = 34:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase2/idpb34.mp4"></video></center><br>'
+		'You are dancing next to another Purple Girl. She gracefully bends down to slap your ass, "Oh my God, I love your ass!" –She tells you-'
+	elseif dancerand = 35:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase2/idpb35.mp4"></video></center><br>'
+		'You are dancing with your breasts bare for all to see. You can''t help but feel very horny. You feel the gazes from many costumers and Purple Girls. As the gazes continue, a customer comes and spills his drink on your breasts.'
+		'Your nipples, which were already hard, react quickly and they now rival the hardness of a diamond. The crowd chant in approval to the guy''s beautiful accident, as they got your nipples react towards the cold liquid.'
+	elseif dancerand = 36:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase2/idpb36.mp4"></video></center><br>'
+		'You are dancing and you see that a customer takes out his cell phone and brings it to your crotch to record a video of your pussy. You smile and let him enjoy.'
+	elseif dancerand = 37:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase2/idpb37.mp4"></video></center><br>'
+		'With how you''ve been willing to show more skin, your modified outfit gives a few people a good view of your assets. A customer records you with their cell phone while you intensify your dance movements. You feel hornier. <font color=#FF00CC> I feel more of an exhibitionist... </font>	'
+	elseif dancerand = 38:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase2/idpb38.mp4"></video></center><br>'
+		'"Hey! Can you shake your ass while I record on my phone?" –A customer says you- "Clear! Do you like it?"'
+	elseif dancerand = 39:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase2/idpb39.mp4"></video></center><br>'
+		'While you''re dancing you can see two other Purple companions dancing together. You see that one of them has also removed her panties during her dance. You feel even more aroused just watching her do so.'
+	elseif dancerand = 40:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase2/idpb40.mp4"></video></center><br>'
+		'The alcohol, the environment, and the yellow pills made your body temperature risen. You make sure to move an article of clothing around to show even more skin than before...'
+	elseif dancerand = 41:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase2/idpb41.mp4"></video></center><br>'
+		'As you dance, you bend over to show everyone your ass, looking sexy all the while. Instantly you feel someone grab you by the hips and rub your crotch in your ass. You feel something is off as you feel something long, hard, and thick rubbing against the lips of your pussy...'
+		'You turn your head and you can see over of your shoulder a completely naked customer who is trying to get ready to penetrate you. <font color=#FF00CC> Oh my God!! This guy wants fuck me now and... Oh my GOD! </font>'
+	elseif dancerand = 42:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase2/idpb42.mp4"></video></center><br>'
+		'While you are dancing, a client has noticed that you are not wearing any panties. Without wasting time, he starts rubbing your pussy with his fingers. He takes his time feeling your slit. His fingers move inside with great ease due to the non-stop moisture your pussy has been producing.'
+	elseif dancerand = 43:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase2/idpb43.mp4"></video></center><br>'
+		'You head to the bar to have a drink when you see a beautiful ass of a fellow Purple Girl. You can''t resist and slap her ass with a smile on your lips. She makes a heated moan which causes your smile to grow even wider.'
+	end
+
+	gs 'arousal', 'end'
+
+	xgt 'IbizaDance', 'nextStep'
+end
+
+if $ARGS[0] = 'stage3':
+	minut += 15
+	pcs_horny += rand(8, 15)
+
+	dancerand = rand(1, 28)
+	dancenum += 1
+
+	*clr
+
+	if dancerand = 1:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase3/idpc1.mp4"></video></center><br>'
+		'You feel the throbbing of your clit and the surroundings of your vulva soaking in your intimate moisture becoming more apparent. You are with another Purple Girl when a client asks you two to give the customers an even sexier view of your boobs. You don''t hesitate to be the first to do it ...'
+	elseif dancerand = 2:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase3/idpc2.mp4"></video></center><br>'
+		'You know you like to show off, so you make sure everyone can gaze at every inch of your beauty. Including your naked breasts.'
+	elseif dancerand = 3:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase3/idpc3.mp4"></video></center><br>'
+		'You feel your sex completely soaked. You and another Purple Girl crouch down to get a better view of an erect dick in front of you. You look into the client''s eyes with a sensual smile and start to suck his dick.'
+		'<font color=#FF00CC> Mmmmnn What a cock! It''s so nice and thick. </font> While you suck him off, other customers decide to take a few pictures with their phones.'
+		gs 'arousal','bj',0
+		gs 'cum_call','mouth',$boy,1
+	elseif dancerand = 4:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase3/idpc4.mp4"></video></center><br>'
+		'"I''m close! I can''t anymore baby! You suck dick so well!" A client crossed-eyed with pleasure announces to you-'
+	elseif dancerand = 5:
+		gs 'arousal','bj',0
+		gs 'cum_call','mouth',$boy,1
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase3/idpc5.mp4"></video></center><br>'
+		'You were dancing with another client. He can''t seem to take his hands off you. You are so horny that decide to squat in front of him; pulling his dick out of his pants and you start to suck him off. <font color=#FF00CC> I''m going to give him the time of his life and dry his balls! </font> You think while you close your eyes to fully enjoy the blowjob you''re giving him-.'
+	elseif dancerand = 6:
+		gs 'arousal','bj',0
+		gs 'cum_call','face',$boy,1
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase3/idpc6.mp4"></video></center><br>'
+		'Oh my God!! I''m on fire! -You say while squatting and starting another blowjob on a different client.'
+	elseif dancerand = 7:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase3/idpc7.mp4"></video></center><br>'
+		'The environment smells of sex. You see another Purple Girl sucking a client''s cock. The guy doesn''t take too long to come. He makes sure to leave thick and abundant waves of sperm on her face. All the while, she happily is trying to collect it into her mouth. Your clit throbs excitedly telling you that you might want to do the same.'
+	elseif dancerand = 8:
+		gs 'cum_call','face',$boy,1
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase3/idpc8.mp4"></video></center><br>'
+		'Your desire is too much! A guy firmly presses you down on your knees in front of him. He quickly starts to jerk off in your face.'
+		'You lower your free hand towards your pussy and start rubbing it to reach an orgasm that sadly doesn''t arrive. Soon the guy begins to ejaculate on you. Leaving you to be the only one without an orgasm.'
+	elseif dancerand = 9:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase3/idpc9.mp4"></video></center><br>'
+		'You can''t help but touch yourself as you see a Purple Girl giving a blowjob to a client till he ejaculates, leaving her face glossy and white.'
+	elseif dancerand = 10:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase3/idpc10.mp4"></video></center><br>'
+		'"Hey guys! Do you like my boobs?" –Another Purple Girl shouts as she dances while she exposing her breast to everyone-'
+	elseif dancerand = 11:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase3/idpc11.mp4"></video></center><br>'
+		'"Look at my tits!" – You say the guy is in front of you- "If you want, maybe you can do more than just look!"'
+	elseif dancerand = 12:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase3/idpc12.mp4"></video></center><br>'
+		'"Imagine what they look like when you fuck me!" - You say a client as you emphasize your jiggling breasts.'
+	elseif dancerand = 13:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase3/idpc13.mp4"></video></center><br>'
+		' A raspy voiced client says to you, "Hey bitch! Show us your boobs!"	"Of course, why not!" You reply them.'
+	elseif dancerand = 14:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase3/idpc14.mp4"></video></center><br>'
+		' A group of clients say,"Hey bitch! Give us a better view of those sexy tits of yours!" "Of course, why not!"	-You reply them- Many guys began to take pictures of you... Practically naked you note.'
+	elseif dancerand = 15:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase3/idpc15.mp4"></video></center><br>'
+		'I client you danced with before approaches you, "Hey baby! Before I could see your slit while you danced ... Why don''t you show me a close up of your tits now?"'
+		'You soon reply, "Yes... Ummmn do you like them? If you want you can suck my nipples..." Without hesitation he sucks on your nipples. Leaving you to moan your reply, "Oh Yes! Suck them harder... Oaaaa	Oh my God... Yes! They''re yours!"'
+	elseif dancerand = 16:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase3/idpc16.mp4"></video></center><br>'
+		'"Hey girl! You know..." A client say you, "You turn me on!"'
+		'"Oh really?" You playfully reply to him, "Look at these! Now imagine how they move when someone is fucking me!" The client grabs his crotch as he quickly replies,"Fuck!! Your boobs are fucking great!"'
+	elseif dancerand = 17:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase3/idpc17.mp4"></video></center><br>'
+		'You see fellow Purple Girl surrounded by a group of guys. She casually shows them her boobs with a smile on her face. They begin to chant her for more... It doesn''t take long to leave her completely naked in front of them...!'
+	elseif dancerand = 18:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase3/idpc18.mp4"></video></center><br>'
+		'You are very excited to present your breast to a long time client who never had the pleasure of seeing them. He speaks to you with a voice full of lust, "God! Baby I would fuck you until I die!"'
+		'"Well..." You reply him, "First you can feel my tits. They are all yours!"'
+	elseif dancerand = 19:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase3/idpc19.mp4"></video></center><br>'
+		'"These boobs are for anyone who wants to enjoy them!" -You yell your declaration to a group of guys'
+	elseif dancerand = 20:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase3/idpc20.mp4"></video></center><br>'
+		'You''re dancing yet are aware of a horny Purple Girl flashing her boobs. The crowd chants at her enthusiastically.'
+	elseif dancerand = 21:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase3/idpc21.mp4"></video></center><br>'
+		'You decide to take a break from dancing and scout for the bar. As you are drinking, you give a exciting view of your breasts'' towards the bartender.'
+		'He smiles and says to you, "You keep doing that and today they are going to fuck you so much that you''ll pass out!"'
+	elseif dancerand = 22:
+		gs 'arousal','bj',0
+		gs 'cum_call','mouth',$boy,1
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase3/idpc22.mp4"></video></center><br>'
+		'You are so horny that you give a blowjob to the nearest client. "Oh fuck yes! Suck my cock you fucking slut!"'
+	elseif dancerand = 23:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase3/idpc23.mp4"></video></center><br>'
+		'You and other Purple Girls gather around a guy to receive the cream of his balls. The blond girl was the lucky one in getting a decent amount of cum on her face.'
+	elseif dancerand = 24:
+		gs 'arousal','bj',0
+		gs 'cum_call','mouth',$boy,1
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase3/idpc24.mp4"></video></center><br>'
+		'"I''m going to give you the best blowjob in your life!", you say to a customer before sucking his dick.'
+	elseif dancerand = 25:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase3/idpc25.mp4"></video></center><br>'
+		'A customer approaches you and quickly puts a hand on your ass only to finger you from behind. You are so wet that he hasn''t had any difficulty putting two fingers into your slit. You begin to moan against him like a bitch in heat.'
+	elseif dancerand = 26:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase3/idpc26.mp4"></video></center><br>'
+		'Your level of arousal is so high that you can''t resist. You instinctively open your legs and finger yourself in front of everyone. Many customers use this situation to take pictures of you. "Look at how slutty this bitch is!"	-You hear one of them say–'
+	elseif dancerand = 27:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase3/idpc27.mp4"></video></center><br>'
+		'A client takes a Purple Girl''s panties off. She doesn''t seem to object given how her pussy glistens.'
+	elseif dancerand = 28:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase3/idpc28.mp4"></video></center><br>'
+		'You move towards the dimly lit seating area. You notice a client on one of the couches. You sit right next to him only to start kissing him. He plays with your tits as he kisses you, pinches and flicking your nipples.You can''t suppress a moan of pleasure. The feeling is too great so you soon finger yourself to get off.'
+	end
+
+	gs 'arousal', 'end'
+
+	xgt 'IbizaDance', 'nextStep'
+end
+
+if $ARGS[0] = 'stage4':
+	minut += 15
+	pcs_horny += rand(13, 20)
+	gs 'stat'
+
+	dancerand = rand(1, 39)
+	dancenum += 1
+
+	*clr
+
+	if dancerand = 1:
+		npc_sex[$boy] += 1
+		gs 'arousal','vaginal',0
+		gs 'cum_call','',$boy,1
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase4/idpd1.mp4"></video></center><br>'
+		'All the Purple Girls around are naked and horny. And you, undoubtedly, are the horniest of them all. Soon you start riding the cock of a client. <font color=#FF00CC>I won''t stop until I get my prize...</font> –You think as you increase your pace.'
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase4/creamoverflow.mp4"></video></center><br>'
+		'And the prize is yours...'
+	elseif dancerand = 2:
+		npc_sex[$boy] += 1
+		gs 'arousal','anal',0
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase4/idpd2.mp4"></video></center><br>'
+		'In your state of excitement, a guy approaches you from behind and puts his cock in your ass... "Ah fuck! It hurts but I want more! More! Give it to me!'
+	elseif dancerand = 3:
+		!! eat out
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase4/idpd3.mp4"></video></center><br>'
+		'You take in your surroundings. The sound of skin clapping against one another and lustful moans make it apparent that this party became a full blown orgy. And you feel like one of the main stars in it. You sit on a couch and raise your legs to make it easier for a guy to eat your whole pussy. The groans of the Purple Girl that you have next to you rival yours while another client pumps her from behind.'
+	elseif dancerand = 4:
+		npc_sex[$boy] += 1
+		gs 'arousal','vaginal',0
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase4/idpd4.mp4"></video></center><br>'
+		'Your pussy loves the attention it''s getting. You lean on a bench, open your legs and offer your sex to the nearest guy.'
+		'The guy doesn''t waste a second as he lifts your legs so that your knees are close to your mouth. He starts pumping his hips with such force that the sound of skin slapping skin measures against your loud moans.'
+		'The sexual environment is amazing! The Purple Girl next to you rides the dick of other client with such enthusiasm. <font color=#FF00CC> Oh fuck! I''m a whore! I''m such a whore! </font> – You think while you feel how your pussy wrap tightly against his cock.'
+	elseif dancerand = 5:
+		npc_sex[$boy] += 1
+		gs 'arousal','vaginal',0
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase4/idpd5.mp4"></video></center><br>'
+		'There are others Purple Girl who look like aren''t very horny and still are dressed but you, well, you are different.'
+		'You lay on one of the couches and have a guy grab a hold of your legs and pounds your pussy into the missionary''s position. Some of the girls can''t help but feel your breasts as you get fucked.'
+		'Next to you another Purple is pumped from behind by another customer. Looks like a competition!'
+	elseif dancerand = 6:
+		npc_sex[$boy] += 1
+		gs 'arousal','vaginal',0
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase4/idpd6.mp4"></video></center><br>'
+		'You are so horny that you have offered your rump to the nearest guy who passed by. The thrusts of the guy are so hard that it raises you a few inches off the ground. "Oh my God! Give it to me harder!" –You shout him while touching your breasts-'
+	elseif dancerand = 7:
+		npc_sex[$boy] += 1
+		gs 'arousal','anal',0
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase4/idpd7.mp4"></video></center><br>'
+		'Another guy fucks you ass leaving your moans to battle against the music of the disco.'
+	elseif dancerand = 8:
+		npc_sex[$boy] += 1
+		gs 'arousal','vaginal',0
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase4/idpd8.mp4"></video></center><br>'
+		'"Fuck me!" You demand from the guy closest to you, "Fuck me hard! You look like a fucking fagot! Get it together and fuck me like the whore I am!"'
+	elseif dancerand = 9:
+		npc_sex[$boy] += 1
+		gs 'arousal','vaginal',0
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase4/idpd9.mp4"></video></center><br>'
+		'You may felt as if you were resisting your desires now... But at this point you really can''t... Your pussy is soaked, hot, and throbbing. You open your legs as wide as you can and let a guy start fucking you. "Oh yes! Pumping harder! I''m yours! I want your cock!"'
+	elseif dancerand = 10:
+		npc_sex[$boy] += 1
+		gs 'arousal','vaginal',0
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase4/idpd10.mp4"></video></center><br>'
+		'You pass by the bar again... Only to feel a customer grabbing your hips and putting his cock in your pussy. You are so drenched that he easily enters your slit. "Oh yes, at last! Fuck me harder please! Fuck me harder pleeeeeaaaase!"'
+	elseif dancerand = 11:
+		npc_sex[$boy] += 1
+		gs 'arousal','vaginal',0
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase4/idpd11.mp4"></video></center><br>'
+		'The bartender from earlier approaches you as you''re getting fucked and says, "I told you all these guys were going to fuck you until you burst! That happens to you when you tease a little to much!"'
+		'His practiced smile continues to show on his face as he asks,"Do you like to be fucked like a bitch?" You don''t reply quick enough only to hear his voice become rough and commanding,"Answer me bitch!"'
+		'You meekly reply, "Y...yes... I like..."'
+		'He interrupts you again, "Tell me now... What are you girl? Huh? Tell me what you are. Answer me!'
+		'You respond quicker this time, "Aaaahh I... I...aaaaaaam... I am a whore!" He soon replies,"Yeah...You are a filthy whore"'
+	elseif dancerand = 12:
+		npc_sex[$boy] += 1
+		gs 'arousal','vaginal',0
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase4/idpd12.mp4"></video></center><br>'
+		'You''re at the bar when a black customer tells you he wants to taste your white pussy. He ask you if you''re ready for his big black cock of 28 centimeters. "28 centimeters?" –You reply to him with a surprised tone.-'
+		' He replies with an air of confidence, "Yeah baby 28 centimeters of black cock just for you. Come on, let me fuck you!"'
+		'Your response is cut off as his dick invades your pussy,"Ok but... Aaaaaaahh Beast! You put it all the way in without warning! Ah fuck!" –He says to you- "You are a real slut! You''re soaked!"'
+	elseif dancerand = 13:
+		npc_sex[$boy] += 1
+		$orgasm_or = 'yes'
+		gs 'arousal','vaginal',0
+		gs 'cum_call','',$boy,1
+
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase4/idpd13.mp4"></video></center><br>'
+		'You are sooooo horny. You are in the bar, breasts free and almost naked. As you enjoy the freedom you feel a client approaches you and tells you that he wants to fuck.'
+		'You raise a leg and say: " I''m here to serve! My holes are yours!" As you get fucked, others customers take the opportunity to take photos and videos of you.'
+		'<font color=#FF00CC> I wonder if anyone will put the photos and videos on some adult page... Oh my God! If my mother could see me...</font> –You think of the consequences as you feel how his thick cock ramming into your soaked pussy.'
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase4/creamoverflow.mp4"></video></center><br>'
+		'Soon you have an orgasm and the guy takes pleasure in filling your twat.'
+	elseif dancerand = 14:
+		npc_sex[$boy] += 1
+		gs 'arousal','anal',0
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase4/idpd14.mp4"></video></center><br>'
+		'You''re at the bar and a customer is fucking hard from behind! He says with pleasure,"Your ass is tight, bitch!!"'
+	elseif dancerand = 15:
+		npc_sex[$boy] += 1
+		gs 'arousal','vaginal',0
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase4/idpd15.mp4"></video></center><br>'
+		'You''re at the bar and a customer is fucking hard from behind! You lift one leg over the bar and facilitate his penetration.	<font color=#FF00CC> Oh god yes! I love being fucked! </font>'
+	elseif dancerand = 16:
+		npc_sex[$boy] += 1
+		gs 'arousal','vaginal',0
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase4/idpd16.mp4"></video></center><br>'
+		'You''re in the middle of the dance floor, completely naked and being fucked by a customer. You don''t even know where your clothes are, you are only wearing your purple bracelet.'
+		'Yes ... you''re a Purple Girl... you ... you''re Santorini´s whore.	<font color=#FF00CC> Yes I am a whore, and my pussy enjoys it! </font> – You think with a smile in your pretty face'
+	elseif dancerand = 17:
+		npc_sex[$boy] += 1
+		gs 'arousal','vaginal',0
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase4/idpd18.mp4"></video></center><br>'
+		'You are fucking without rest. You are a slut, a series of fuck holes that are always ready to be used. You know it and you like it, so might as well enjoy it!'
+	elseif dancerand = 18:
+		npc_sex[$boy] += 1
+		$orgasm_or = 'yes'
+		gs 'arousal','vaginal',0
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase4/idpd19.mp4"></video></center><br>'
+		'"Oh my God!! I´m coming! I´m coming again!" –You shout like a maniac-'
+	elseif dancerand = 19:
+		npc_sex[$boy] += 1
+		gs 'arousal','vaginal',0
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase4/idpd20.mp4"></video></center><br>'
+		'The atmosphere is intoxicating. People drinking, dancing, fucking and you...	You are a Purple Girl, being fucked in the middle of the dance floor by a customer.'
+		'You notice that there are others looking at you. <font color=#FF00CC> After this, they will come and fuck me too ... </font> – You think feeling your pussy a little sore-'
+	elseif dancerand = 20:
+		npc_sex[$boy] += 1
+		gs 'arousal','anal',0
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase4/idpd21.mp4"></video></center><br>'
+		'You are in the middle of the dance floor when a client is pumping his dick as hard as he can into your ass. Your boobs bounce with every thrust. "Break me!" –You shout to him-'
+	elseif dancerand = 21:
+		npc_sex[$boy] += 1
+		gs 'arousal','vaginal',0
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase4/idpd23.mp4"></video></center><br>'
+		'You get on all fours on one of the benches of the dance floor in order to give the costumer better position to get to your pussy. <font color=#FF00CC> Those yellow pills are doing wonders! </font>'
+	elseif dancerand = 22:
+		npc_sex[$boy] += 1
+		gs 'arousal','vaginal',0
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase4/idpd22.mp4"></video></center><br>'
+		'You have reached a point of excitement where nothing else matters. All you want is to be fucked until your body says enough is enough. <font color=#FF00CC>How many guys fucked me today?</font>'
+		'–You think while other customer approaches you with his cock out ready to penetrate your slit. <font color=#FF00CC>Oh fuck! Yes! Ooooh those damn yellow pills! </font>'
+	elseif dancerand = 23:
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase4/idpd24.mp4"></video></center><br>'
+		'"Come on! All of you fuck me! I''m the hottest bitch here!" –You shout-'
+	elseif dancerand = 24:
+		npc_sex[$boy] += 1
+		gs 'arousal','vaginal',0
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase4/idpd25.mp4"></video></center><br>'
+		'You have already fucked more than half of customers here. But the ones who stand out the most... Are the black men here. They are special... You think as this black man''s cock hits your womb.'
+	elseif dancerand = 25:
+		npc_sex[$boy] += 1
+		gs 'arousal','anal',0
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase4/idpd26.mp4"></video></center><br>'
+		'Oh my God! Oh my God! You say again and again. This time your ass is the object of attention ... and you love it!'
+	elseif dancerand = 26:
+		npc_sex[$boy] += 1
+		gs 'arousal','vaginal',0
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase4/idpd27.mp4"></video></center><br>'
+		'They fuck you repeatedly but a certain customer does it in another way... A less conventional way. He tells you to ride him, but when you start to do it, he hooks his arms around your legs and grabs your neck for support.'
+		'You feel your pussy completely distended and that his cock is reaching point in no ways that any other cock	has done before. "Oh fuck I... I''m cumming again!"'
+	elseif dancerand = 27:
+		npc_sex[$boy] += 1
+		gs 'arousal','vaginal',0
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase4/idpd28.mp4"></video></center><br>'
+		'You''re on fire! A cautious client puts on a condom and tells you to ride him. Even though you agreed, you admit that you prefer the other option. To feel the touch of the cock without its latex raincoat, that''s the best feeling in the world.'
+	elseif dancerand = 28:
+		npc_sex[$boy] += 1
+		gs 'arousal','vaginal',0
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase4/idpd29.mp4"></video></center><br>'
+		'One customer fucks you missionary style while another Purple Girl helps you keep your legs wide open to receive the stallion. "Fuck me harder!" -You say him-'
+	elseif dancerand = 29:
+		npc_sex[$boy] += 1
+		gs 'arousal','anal',0
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase4/idpd30.mp4"></video></center><br>'
+		'Looks like your ass is winning followers. A customer begins to fuck from behind with rapid speed without care. You use small table you''re resting upon to serves as support. If you didn''t, you have a feeling you''d fall on your face.'
+	elseif dancerand = 30:
+		npc_sex[$boy] += 1
+		gs 'arousal','vaginal',0
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase4/idpd35.mp4"></video></center><br>'
+		'You are been fucked by a client in the middle of the dance floor, legs spread open and with a devilish pace. You share eye contact with your three friends, all the while feeling the dick in your pussy.'
+		'You start to feel worn down and your pussy feels a little sore. Luckily, the guy inside you injects a good amount of cum your pussy. <font color=#FF00CC>	At last he finished. </font> . You think it''s time to go to the toilet. Or maybe visit the security guard again so he can give you his more of his special merchandise.'
+		'As you proceed to move, you hear a voice, "Where do you think you''re going?" -He tells you. You remember his face. He was one of the other guys who were watching you while how you were getting fucked. "I ... to the toilet ..." -you protest-'
+		'He aggressively responds, "No bitch, you will go when you finish with all of us.", he tells you pointing to the other two... He puts you on all fours and begins to pump your pussy as fast as his other friend was previously doing.'
+		'<font color=#FF00CC>Oh my God! I''m exhausted... </font>'
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase4/idpb31.mp4"></video></center><br>'
+		'You continue to get pumped with seed. Though you already want to finish. You feel so tired but you soldier on. Ok, the next...'
+	elseif dancerand = 31:
+		npc_sex[$boy] += 1
+		gs 'arousal','vaginal',0
+		gs 'cum_call','',$boy,1
+		'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase4/idpd33.jpg"></center><br>'
+		'The other guy lifts your leg and continues to fucking your pussy. Only to fill you with his jizz soon after.'
+		'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase4/idpd32.jpg"></center><br>'
+		'The last guy tells you to ride him. Luckily it does not take too long to finish inside your pussy.'
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase4/creamoverflow.mp4"></video></center><br>'
+		'You pussy is packed with so much cum... It''s a never ending stream of white goo leaking out. <font color=#FF00CC>I think I can finally rest now... With how things are going... Who knows if you''ll ever get the chance.</font>	'
+	elseif dancerand = 32:
+		npc_sex[$boy] += 1
+		gs 'arousal','vaginal',0
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase4/idpd37.mp4"></video></center><br>'
+		'The orgy is at its highest point, or at least that''s what you think, as you ride a customer''s cock. As you ride him, you notice another Purple Girl with a customer doing the same thing.'
+		'You look at her and you can''t help but think <font color=#FF00CC> I''m better than her </font> . Another guy approaches you taking his cock out ready to be serviced. You decided to up your performance and jerk him off as you ride the other costumer.'
+	elseif dancerand = 33:
+		npc_sex[$boy] += 1
+		gs 'arousal','vaginal',0
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase4/idpd38.mp4"></video></center><br>'
+		'Your state of excitement leaves you in a dazed state. Only to have a client take advantage of that. He puts on a condom and lines up his dick to your pussy...	You can''t help but cry out as he fucks your pussy, "Oh fuck yes! Give it to me baby!"'
+	elseif dancerand = 34:
+		npc_sex[$boy] += 1
+		gs 'arousal','anal',0
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase4/idpd39.mp4"></video></center><br>'
+		'You''re very horny and you tell a customer that you want your ass to get some treatment. The guy doesn''t think twice as he fucks your ass.'
+	elseif dancerand = 35:
+		npc_sex[$boy] += 1
+		gs 'arousal','vaginal',0
+		gs 'cum_call','',$boy,1
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase4/idpd40.mp4"></video></center><br>'
+		'Your pussy is soaked and on fire. You need to get a good fuck and you tell a customer, "Do you want fill my pussy?"'
+		'He grins widely, "Hell yeah! I have tons of cream for you!" He pushes you on all fours and starts fucking you with such vigor. You love the rough treatment he gives you and say out loud,"Mmmmm yes!"'
+		'His cock	continues to penetrate you and constantly rejoice each moment you feel his balls slap against your pussy.'
+		'You can tell he loves fucking you for the bitch that you are as you can feel his cock starting to twitch inside of your pussy. The feeling of his cum being injected inside of you makes you feel divine.'
+		'<font color=#FF00CC>	Oh my God, I think I am a cum addict! </font>	'
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase4/creamoverflow.mp4"></video></center><br>'
+	elseif dancerand = 36:
+		npc_sex[$boy] += 1
+		gs 'arousal','anal',0
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase4/idpd41.mp4"></video></center><br>'
+		'A guy is fucking you like the slut you are. You love feel how your ass is being pumped. Your nipples rubbing against the sofa provides another pleasurable feeling. It only intensifies your arousal.'
+	elseif dancerand = 37:
+		npc_sex[$boy] += 1
+		gs 'arousal','anal',0
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase4/idpd42.mp4"></video></center><br>'
+		'The crowd doesn''t stop chanting at you and your partner! They love seeing you being fucked in the ass. Your cries of pain rival with those of the crowd. Soon after your cries become groans of pleasure... You are lost in your desire.'
+	elseif dancerand = 38:
+		npc_sex[$boy] += 1
+		gs 'arousal','vaginal',0
+		gs 'cum_call','',$boy,1
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase4/idpd43.mp4"></video></center><br>'
+		' You see a Purple Girl letting her breast sway free with no panties on as she dances. The client dancing with her decides to make her time more pleasurable and begins to finger her.'
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase4/idpd44.mp4"></video></center><br>'
+		'You feel your pussy getting wet quickly. The client continues stroking and caressing your entire body. Your arousal makes it easy for you to open your legs to him in the middle of the dance floor.'
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase4/creamoverflow.mp4"></video></center><br>'
+		'A few thrusts later you sense the pulsations of the cock inside you. He''s filling your pussy with cum.'
+	elseif dancerand = 39:
+		npc_sex[$boy] += 1
+		gs 'arousal','vaginal',0
+		gs 'cum_call','',$boy,1
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase4/idpd45.mp4"></video></center><br>'
+		'You''re in a erotic frenzy! You see a client and decide to suck and lick his dick like a lollipop. Your cunt craves for more as you please your client. To feed the hunger, you use your fingers to play with your clit.'
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase4/idpd46.mp4"></video></center><br>'
+		'You can barely remember how you even went onto the next client. You just know you love the feeling of his cock drilling your wet pussy.'
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/idance/phase4/creamoverflow.mp4"></video></center><br>'
+		'<font color=#FF00CC> Oh my God! More cream for my pussy! If I keep going like this, I''ll end up pregnant! </font>'
+	end
+
+	gs 'arousal', 'end'
+
+	xgt 'IbizaDance', 'nextStep'
+end
+
+--- IbizaDance ---------------------------------
+

+ 533 - 0
locations/mod_IbizaDay2.qsrc

@@ -0,0 +1,533 @@
+# mod_IbizaDay2
+
+!![COCK] for where to put cock desc
+!![PUSSY] for where to put pussy desc
+!![TITS] for where to put tits desc
+!![REPUTATION] for where to put the reputation desc
+!!InnerThough our characters inner monologue/thoughts, coloured pink, obviously
+
+if $ARGS[0] = 'day two':
+	'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/cabin.jpg"></center><br>'
+	'Yesterday was hard. You think about what happened and your whole body trembles as you remember it. Santorini scares you and you know that he is a dangerous person, very dangerous. You could never have imagined that Erick had a partner like that, but he has him and he''s the greatest despot you''ve ever known. <<$OpenInnerThought>>«Before I leave the cabin, I''d better take a shower. I wonder what awaits me today?»<<$CloseInnerThought>> – you think worried- You look at the purple bracelet on your wrist ... <<$OpenInnerThought>> «This color ... What does it mean? Well, anyway <<$pcs_nickname>>,  you''ve come here to make money, right? Well, work it, baby! »<<$CloseInnerThought>> You encourage yourself'
+
+	act 'Continue':
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day2/alexandra1.jpg"></center><br>'
+		'When you leave your cabin you run into an attractive blonde girl who wants to get inside.'
+		'<<$OpenPCVoice>>"Hi, who are you?"<<$ClosePCVoice>>'
+		'<<$OpenFemaleVoice>>"Hi, I''m Alexandra. I guess you must be the new one, right?"<<$CloseFemaleVoice>>'
+		'<<$OpenPCVoice>>"I am <<$pcs_firstname>> <<$pcs_lastname>> from Pavlovsk, a town near the city of St. Petersburg in Russia."<<$ClosePCVoice>>' 
+		'<<$OpenFemaleVoice>>"Ah, you are Russian! I''m from Moscow, it''s good to meet a compatriot here."<<$CloseFemaleVoice>> She says to you with a great smile <<$OpenFemaleVoice>>"You see <<$pcs_firstname>>, I wanted to get into the cabin... it was mine before and I forgot to pick up something. May I pass?"<<$CloseFemaleVoice>>'
+		'<<$OpenPCVoice>>"Yeah, sure"<<$ClosePCVoice>> you answer and let Alexandra inside the room'
+
+		act 'Continue':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day2/alexandra2.jpg"></center><br>'
+			'Wait outside for a minute… After just a minute she comes out with a small notebook.'
+			'<<$OpenFemaleVoice>>"Thank you so much!!"<<$CloseFemaleVoice>> She tells you moving it from side to side <<$OpenFemaleVoice>>I use it daily and in haste I left it. Well and tell me, what are you going to work as here? Ah! I see…!"<<$CloseFemaleVoice>> She says, looking at your purple bracelet on your wrist <<$OpenFemaleVoice>>"You are a complete girl."<<$CloseFemaleVoice>>'
+			'<<$OpenPCVoice>>"A complete girl?"<<$ClosePCVoice>> You replied confusedly'
+			'<<$OpenFemaleVoice>>"Yes, you will dance, you will serve drinks, you will encourage the customers and you will fuck with them if they ask for it."<<$CloseFemaleVoice>>'
+			'<<$OpenPCVoice>>"WHAT!!!???"<<$ClosePCVoice>> you answer terrified <<$OpenPCVoice>>"I''m not a whore, I''m a professional dancer."<<$ClosePCVoice>>'
+			'<<$OpenFemaleVoice>>"Well, if you want to call it that ... anyway, the color of the bracelet you wear will mean for VIP customers that they can request any kind of services, <<$pcs_nickname>>. Do you understand? And that means having sex."<<$CloseFemaleVoice>>'
+			'<<$OpenInnerThought>> «Oh my God! Have they marked me like a whore? How could I have been so stupid thinking that I will only have to dance and serve drinks? »<<$CloseInnerThought>>'
+			'<<$OpenFemalevoice>>"Oh Come on! Don''t worry, if you it right you can earn a lot of money!!! Now the ship goes to port to pick up customers. We have time to talk for a while. Are you coming to the deck?"<<$CloseFemaleVoice>>'
+
+			act 'Yes… ':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day2/alexandra3.jpg"></center><br>'
+				'You go with Alexandra to the main deck of the yacht and on your way you notice several girls wearing same purple bracelets as you, others yellow and some are white. Alexandra changes her clothes and is wearing a very loose green shirt, without a bra, which makes her nipples poke throught the fabric with any movement and fuchsia bikini panties.'
+				'<<$OpenPCVoice>>What do the colors mean?<<$ClosePCVoice>>'
+				'<<$OpenFemaleVoice>>Colors<<$CloseFemaleVoice>> She answers  <<$OpenFemaleVoice>>are the code for the security and for getting the payment later. Have not they told you already?<<$CloseFemaleVoice>>'
+				'<<$OpenPCVoice>>Yes, they told me something about it.<<$ClosePCVoice>> you answer remembering Marco telling you.'
+				'<<$OpenFemaleVoice>>You should never accept money from a client. If they give you anything else, that is all for you and you can exchange it for money when you finish your trip.<<$CloseFemaleVoice>>'
+				'<<$OpenPCVoice>>Yeah I know…<<$ClosePCVoice>> -You respond- <<$OpenPCVoice>>but the colors?<<$ClosePCVoice>>'
+				'<<$OpenFemaleVoice>>The yellow bracelets are for the employees who are dedicated mainly to serving drinks. They can refuse any request from a client but if the girl accepts they should tell someone from the security so they can read the code and later pay her for the services. The staff who wears purple bracelets, like you, dance with customers, have fun as they cheer them up and sometimes, they can serve drinks and also, you know ... fuck them if they ask. Oh, come on <<$pcs_firstname>>! It’s not a bad deal! Don''t put that face! Surely you''ll have a good time ... also if you are here I am sure that you are very open with sex, am I wrong?<<$CloseFemaleVoice>>'
+				'<<$OpenInnerThought>> «Oh my God! I''m trapped.»<<$CloseInnerThought>>'
+				'<<$OpenFemaleVoice>>"If you need to cheer up or fix your mood you can also go to someone from security and they''ll give you some cocaine. They will read your code and they will give you the drug but if you abuse it, you can do things with them you could regret it in the future. You understand that, don''t you?"<<$CloseFemaleVoice>>'
+				'<<OpenPCVoice>>"More or less"<<$ClosePCVoice>> you answer.'
+				'<<$OpenFemaleVoice>>"I was able to see on one occasion how a customer was taken by a ''Purple Girl'' to a room that was completely covered in cocaine and do it with a dog."<<$CloseFemaleVoice>>'
+				'<<$OpenInnerThought>>«What a fuck! With a dog!? Oh my God!»<<$CloseInnerThought>>'
+				'<<$OpenPCVoice>>"Wait… wait a moment Alexandra… Do you say that girl fucked with a dog?<<$ClosePCVoice>>'
+				'<<$OpenFemaleVoice>>"As you have heard"<<$CloseFemaleVoice>> Alexandra says <<$OpenFemaleVoice>>"The fool didn''t know that they were going it as the pay is the same, it''s flat rate, except for the gifts they give you and if they see you too hooked up on coke they will not give you anything. You must rest too."<<$CloseFemaleVoice>> She says to you. <<$OpenFemaleVoice>>"Let''s go to the pool for a while?"<<$CloseFemaleVoice>>'
+				act 'Yes, let''s go... ': 
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day2/alexandra4.jpg"></center><br>'
+					'<<$OpenFemaleVoice>>"By the way, you have to know also that the security guards will give you, occasionally, a yellow pill."<<$CloseFemaleVoice>>'
+					'<<$OpenPCVoice>>"A yellow pill you say? And what do you get those yellow pills for?"<<$ClosePCVoice>> You ask Alexa.'
+					'<<$OpenFemaleVoice>>"I''m not sure but I think it''s some kind of aphrodisiac because shortly after I took it I was hotter than a bitch in heat.'
+					'<<$OpenInnerThought>> «Oh my God! As if I was not a hot enough girl to begin with!»<<$CloseInnerThought>>  You think about her last words.'
+					'<<$OpenPCVoice>>"And the white bracelets?"<<$ClosePCVoice>>'
+					'<<$OpenFemaleVoice>>"The girl with a white one will have everything paid. Usually they accompany someone very powerful and no one should approach them. Customers know it."<<$CloseFemaleVoice>>'
+					'<<$OpenPCVoice>>"And you? What color will you be wearing? I don''t see you wearing any right now."<<$ClosePCVoice>> You say to her.'
+					'<<$OpenFemaleVoice>>"They come to pick me up tonight. Until then I will wear a white bracelet. I''m a singer, you know? I will sing three songs this afternoon and than they''ll take me to Marbella, a town with a lot of purchasing power in the south of Spain."<<$CloseFemaleVoice>>'
+					'<<$OpenPCVoice>>"Wow!"<<$ClosePCVoice>> You exclaim. <<$OpenPCVoice>>"Are you going to sing in Marbella too?"<<$ClosePCVoice>>'
+					'<<$OpenFemaleVoice>>"Well, not exactly there ... you see ... it''s that ..."<<$CloseFemaleVoice>> Alexandra hesitates to tell you what she will do in Marbella... there <<$OpenFemaleVoice>>"I will do A ''Breeder''"<<$CloseFemaleVoice>> she finally says looking towards the other part of the pool.'
+
+					act 'A Breeder? What the fuck is that?':
+						*clr & cla
+						'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day2/alexandra5.jpg"></center><br>' 
+						'You eat something and Alexandra takes an iced coffee from a nearby bar and takes some time to answer your question. <<$OpenFemaleVoice>>"You see ... this is hard to say for one of us, right?, for a woman. The point of A Breeder, as it sounds, is to make a girl get pregnant."<<$CloseFemaleVoice>> <<$OpenInnerThought>> « What the fuck!! »<<$CloseInnerThought>> – You think to yourself with your eyes wide open. <<$OpenPCVoice>>"WHA… WHAT?"<<$ClosePCVoice>> <<$OpenFemaleVoice>>"Yeah, <<$pcs_firstname>>, A Breeder is just that. A girl stays for at least a month without birth control. They check it out and you go out for the next two weeks in a room or to be permanently with a group of men who during those two week are fucking you whenever they want and especially in a daily session that is recorded on video and usually transmitted on the Internet in which the whole group of men fucks you silly. The main rule of A Breeder is that they all have to cum inside your vagina with the only goal: impregnation. There are bets on line about which man will make the girl pregnant. Later a genetic test will determinate who is the father and this way, they can pay their bets."<<$CloseFemaleVoice>>'
+						'<<$OpenPCVoice>>"Oh my God! And you''re going to do that?"<<$ClosePCVoice>> You asked her in shock.'
+						'<<$OpenFemaleVoice>>"Do you know how much they''re going to pay me for doing this? I can easily buy an apartment and I can even to buy a used car, beside,  there could be some chance that none would achieve the goal, right? It is a big risk but the money is also a lot. The money of a lifetime of hard work earned in two weeks… And the truth is, <<$pcs_firstname>>,  I don''t know if it''s because I haven''t fucked for almost a month or it''s because of the damn yellow pills... I''m super horny. It''s almost time, I''m going to put something on, we''re approaching the marine and I''ll have to sing for new customers. You should fix yourself up too. Take a shower and put something nice on. I''ll see you soon!"<<$CloseFemaleVoice>>'
+						!! Add decrease Level Hungry
+
+						act 'Go to your cabin…':
+							*clr & cla
+							'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/cabin.jpg"></center><br>'
+
+							'You have reached your cabin. You must shower, do your makeup and wear something nice.'
+
+!!Here must be a bedroom and bathroom (dynamics complete- shoes and dresses available, bed and shower) 
+!!When the player has showered, dressed and make up it will appear the following act. 
+
+							act 'Open the door': 
+								*clr & cla
+								'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/christian1.jpg"></center><br>'
+!!Theres a new sound file for when they knock on the door, right? Could it be included?
+								'It seems that someone is knocking on the door. You see that in front of the door there is an attractive security guard.'
+								'<<$OpenInnerThought>> «What a smell! He smells great! What perfume will does he use?»<<$CloseInnerThought>>'
+								'<<$OpenMaleVoice>>"Hello"<<$CloseMaleVoice>> He tells you. <<$OpenMaleVoice>>"My name is Christian. Mr. Santorini has tasked me with coming here and checking on you from time to time. You are the new girl, right?"<<$CloseMaleVoice>>'
+								'<<$OpenPCVoice>>"Yes, I came yesterday."<<$ClosePCVoice>> You reply him'
+								'<<$OpenMaleVoice>>"Are you a Purple Girl?"<<$CloseMaleVoice>> He asks seeing your purple bracelet on your wrist.'
+								'<<$OpenPCVoice>>"I think so…"<<$ClosePCVoice>> You answer.'
+								'<<$OpenMaleVoice>>"You must have impressed Mr. Santorini a lot to spend some of my time on a whore on the boat."<<$CloseMaleVoice>>'
+								'<<$OpenPCVoice>>"I''m not a whore!"<<$ClosePCVoice>> You shout at him <<$OpenPCVoice>>"I am a professional dancer!"<<$ClosePCVoice>>'
+								'<<$OpenMaleVoice>>"Really? Here all Purple Girls are whores or they become one very soon. Well, do you know how everything works?"<<$CloseMaleVoice>>'
+								'<<$OpenPCVoice>>"Yes, i think i got most of it."<<$ClosePCVoice>>'
+								'<<$OpenMaleVoice>>"If you are hungry you can stop in the buffet bar, if you show them the bracelet and you can eat everything you want without cost."<<$CloseMaleVoice>>'
+								'<<$OpenPCVoice>>"Ok…"<<$ClosePCVoice>> You answer. <<$OpenMaleVoice>>"If you need extra help my teammates have what you need, okay?"<<$CloseMaleVoice>> <<$OpenPCVoice>>"Yeah!"<<$ClosePCVoice>>'
+								'<<$OpenMaleVoice>>"As you see the boat is large, it has two decks and several dance floors. You can work on any of them, okay?<<$CloseMaleVoice>> Yeah!'
+								'<<$OpenMaleVoice>>"By the way, accompanying and sleeping with a client in his cabin is strictly forbidden, have you understood this?<<$CloseMaleVoice>>'
+								'<<$OpenPCVoice>>"Of course, I''m no whore!"<<$ClosePCVoice>>'
+								'<<$OpenMaleVoice>>"Well, for the moment you must take this.<<$CloseMaleVoice>> He says giving you two yellow pills.'
+								act 'Look  at the pill':
+									*clr & cla
+									'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/2pills.jpg"></center><br>'
+									'<<$OpenPCVoice>>"I don''t need any of this!"<<$ClosePCVoice>>'
+									'<<$OpenMaleVoice>>"All Purple Girls must take them. Come on take them!"<<$CloseMaleVoice>> He says with a lot of authority.'
+									'<<$OpenPCVoice>>"Alright…"<<$ClosePCVoice>>'
+									
+									act 'Take the pills': 
+										*clr & cla
+										'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/1pills.jpg"></center><br>'
+										'You take the pills remembering what Alexandra had told you a about this and what she thought they were. <<$OpenInnerThought>> « Aphrodisiacs! What nonsense! »<<$CloseInnerThought>> Now I have to go, new customers are embarking. Go up the deck and... do what you have to do!'
+
+										act 'Go to the deck': gt 'IbizaDay2', 'deck'
+									end
+								end
+							end
+						end
+					end
+				end
+			end
+		end
+	end
+end
+
+
+if $ARGS[0] = 'deck':
+	'<center><video autoplay loop src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day2/party.mp4"></video></center>'
+	'You walk through one of the halls of the ship until you get up to one of the decks. There are already enough people drinking and dancing to some songs sung by ... Alexandra!'
+	
+	act 'Listen':
+		*clr & cla
+		'<center><video autoplay loop src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day2/alexandra6.jpg"></center><br>'
+		'You stay for a while listening to Alexandra sing while you have a beer. Curiously you see that the crowd chants a lot every time Alexa moves. You realize the motive... She doesn''t wear any panties and every time she moves she shows her pussy! Suddenly you feel a slight choke in your chest, some sort of anxiety that you can''t really identify at that moment. <<$OpenInnerThought>> « I think seeing Alexa with her pussy in the air is making me horny »<<$CloseInnerThought>> You think. <<$OpenInnerThought>> « I have to go to the dance floor and start doing what they''ve paid me to do »<<$CloseInnerThought>>'
+
+		act 'Go to a nearby dance floor': 
+!!Take a note! During this event it must play the music called day2.mp3	
+!!music/day2.mp3
+			*clr & cla
+			'<center><video autoplay loop src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day2/dance1.mp4"></video></center>'
+			'Disco music is playing. You begin to dance watching other dancers do the same. <<$OpenInnerThought>> « Wow! That blonde doesn''t move badly at all! »<<$CloseInnerThought>> You think. You feel your nipples are gradually becoming harder and more sensitive. The slight rubbing of the cloth on them excites you quite a bit...But you know that you can''t stop and that you should continue dancing and heating up the atmosphere with your dancing skills.'
+
+			act 'Keep dancing':
+				*clr & cla
+				'<center><video autoplay loop src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day2/dance1.mp4"></video></center>'
+				'You can see other dancers who are also dancing next to you, moving their waist and hips in an insinuating way. You start to do the same, you can''t stay behind; you have to stand out! The atmosphere is becoming tense and you feel how strangely your [PUSSY], without any stimulation, is starting to wet your panties...'
+				
+				act 'Dance more!': 
+					*clr & cla
+					'<center><video autoplay loop src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day2/dance3.mp4"></video></center>'
+					'You continue dancing and you see a dancer that is on the runway of the dance floor with clothes that leave nothing to the imagination. Her movements are very professional and you try to imitate them. You, meanwhile, dance with another girl. Your movements are accelerated and the friction of your excited nipples on the fabric of your clothes are starting to become unbearable. You realize your state and the lyrics of the song that is playing at that moment doesn''t help you out of your thoughts...'
+					
+					act 'Continue':
+						*clr & cla
+						'<center><video autoplay loop src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day2/dexcited1.mp4"></video></center>'
+						'<<$OpenMaleVoice>>"I just like to call you my bitch"<<$CloseMaleVoice>> goes the song again and again. You feel that your nipples are in flames, your movements become more insinuating capturing one of the clients that you have around you. This encourages you and more the words that they shout:'
+						'<<$OpenMaleVoice>>"Hey bitch, bitch, bitch!"<<$CloseMaleVoice>>'
+						'They say to the rhythm of the song.'
+						'<<$OpenMaleVoice>>"Show us the tits bitch, bitch, bitch!"<<$CloseMaleVoice>>'
+						'You know that your short skirt should clearly show them your panties and you know, besides, that your hard nipples are be able to tear the fabric that covers them. You decide to please them in their request and continue to dance…'
+						
+						act 'More!':
+							*clr & cla
+							'<center><video autoplay loop src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day2/dexcited2.mp4"></video></center>'
+							'Customers chant with your action.'
+							'<<$OpenMaleVoice>>"Nice tits, bitch!"<<$CloseMaleVoice>> They say to you. You feel your clitoris get more and more excited. The slight warm itch that you notice on your button of love increases with each of your heartbeats…'
+							
+							act 'Continue':
+								*clr & cla
+								'<center><video autoplay loop src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day2/dexcited3.mp4"></video></center>'
+								'You crouch down dancing, squatting and separating your legs. Your panties are completely visible to everyone. They can see that you are wet ... very wet. Your excitement drives you. You touch the pussy through your panties; you lightly rub your clitoris above the fabric. A ray of pleasure runs through your body until you strike with the force of a thousand giants. Customers surround you and yell at you all at the same time.'
+								'<<$OpenMaleVoice>>"Finger! Finger! Finger! Finger!"<<$CloseMaleVoice>> You continue with your dance, completely mad and drowned in your lust. You bite your lip and you think…'
+								
+								act 'Finger!!':
+									*clr & cla
+									'<center><video autoplay loop src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day2/dexcited4.mp4"></video></center>'
+									'<<$OpenMaleVoice>>"Finger! Finger! Finger! Finger!"<<$CloseMaleVoice>>'
+									'The shouts of encouragement from customers lead you to do it. You squat and separate your legs; you put aside your panties and... plunge the finger to the bottom of your pussy! It enters easily, sliding like silk because of the moisture that the bottom of your pussy is distilling. You snort needing something else. Your panties are soaked and you take them off. Customers keep chanting'
+									'<<$OpenMaleVoice>>"Finger! Finger! Finger!"<<$CloseMaleVoice>> You look to one side and the other and you go to the side of the dance floor.Clients follow you but you don''t care. The only thing that matters now is to find your own pleasure.'
+									
+									act 'Continue':
+										*clr & cla 
+										'<center><video autoplay loop src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day2/dexcited5.mp4"></video></center>'
+										'You go back to squatting and you start fingering your pussy. Your subconscious doesn''t stop beating you again and again'
+										wait 750 & '<font color = #FF00FF size = 4>Bitch</font>'
+										wait 750 & '<font color = #FF00FF size = 5>Bitch</font>'
+										wait 750 & '<font color = #FF00FF size = 6>Bitch</font>'
+										wait 750 & 'The lyrics of the song resonate in your ears like a thousand drums and repeat again and again the same words…'
+										wait 750 & '<font color = #FF00FF size = 4>Bitch</font>'
+										wait 750 & '<font color = #FF00FF size = 5>Bitch</font>'
+										wait 750 & '<font color = #FF00FF size = 6>Bitch</font>' 
+										
+										act 'I''m cumming!!':
+											*clr & cla
+											'<center><video autoplay loop src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day2/dexcited6.mp4"></video></center>'
+											'The customers around you chant repeating same words...'
+											wait 750 & '<font color = #FF00FF size = 4>Bitch</font>'
+											wait 750 & '<font color = #FF00FF size = 5>Bitch</font>'
+											wait 750 & '<font color = #FF00FF size = 6>Bitch</font>'
+											wait 750 & 'The chorus of the song says it all ... I just like to call you my bitch!'
+											'<<$OpenInnerThought>> « Bitch! Am I a whore? I like sex; I like being fucked by a good stallion that fills my pussy with his warm cream; I like do it with multiple men at the same and I like to be paid for it... Yes, I''m a bitch, I''m a whore »<<$CloseInnerThought>> – You think while reaching your climax'
+											
+											act 'Continue':
+												*clr & cla
+												'<center><video autoplay loop src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/christian2.jpg"></center><br>'
+												'<<$OpenMaleVoice>>"It seems that you are already having fun ... You''re doing quite well!"<<$CloseMaleVoice>>'
+												'<<$OpenPCVoice>>"WHAT?"<<$ClosePCVoice>> You answer. In front of you can see is Christian with a wide smile on his face. <<$OpenMaleVoice>>"Mr. Santorini sent me to fetch you. Go to your cabin and take a shower. Make yourself beautiful! A speedboat is waiting for you on deck B."<<$CloseMaleVoice>>'
+												'<<$OpenPCVoice>>"Mr. Santorini?"<<$ClosePCVoice>> You ask him stunned.'
+												'<<$OpenMaleVoice>>"Yeah! Hurry up!"<<$CloseMaleVoice>>'
+												
+												!!music stop
+												!!The theme music day2.mp3 must stop!
+												act 'Go to your cabin…':
+													*clr & cla
+													'<center><video autoplay loop src="mod/ibiza/locations/city/citycenter/nightclub/trip01/cabin.jpg"></center><br>'
+													'You have reached your cabin. You must shower, do your makeup and wear something nice.'
+													
+
+!!Here must be a bedroom and bathroom (dynamics complete- shoes and dresses available, bed and shower) 
+!!When the player has showered, dressed and make up it will appear the following act. 
+
+													act 'Go to marina': gt 'IbizaDay2','marina'
+												end
+											end
+										end
+									end
+								end
+							end
+						end
+					end
+				end
+			end
+		end
+	end
+end
+
+
+if $ARGS[0] = 'marina':
+	'<center><video autoplay loop src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day2/driver8.jpg"></center><br>'
+	'You have taken a speedboat that has taken you quickly to the marina. There are waiting for you Marco, with a car.'
+	'<<$OpenMaleVoice>>"Hi  <<$pcs_firstname>>, how was your day?"<<$CloseMaleVoice>>'
+	'<<$OpenPCVoice>>"It was fine, Marco, nothing I have not done before."<<$ClosePCVoice>>'
+	'<<$OpenMaleVoice>>"I suppose"<<$CloseMaleVoice>> He says you with a mocking laugh. <<$OpenMaleVoice>>"I think I have to take you to Mr. Santiorini''s mansion. Remember <<$pcs_firstname>>, do everything they ask you without protest. Consider it an advice."<<$CloseMaleVoice>> He says to you while starting the car'
+	
+	act 'Continue':
+		*clr & cla
+		'<center><video autoplay loop src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day2/satorinicar.jpg"></center><br>'
+		'You arrive at the Santorini''s mansion. Marco stays waiting outside the mansion and when you enter you can see a gold sports car at the main entrance and a group of women in bikini around the car. One of them approaches you and says: <<$OpenFemaleVoice>>"Hello! You must be <<$pcs_firstname>> <<$pcs_lastname>>, right? Follow me Mr. Satorini is waiting…"<<$CloseFemaleVoice>>' 
+		
+		act 'Follow her':
+			*clr & cla
+			'<center><video autoplay loop src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day2/santorinipool.jpg"></center><br>'
+			'You follow the girl as you go through one of the pools of the mansion. There you can see a group of about ten girls in a bikinis. All of them have a spectacular look, very similar to yours.'
+			
+			act 'Continue':
+				*clr & cla
+				'<center><video autoplay loop src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day2/santorini03.jpg"></center><br>'
+				'You arrive at one end of the mansion, near another pool even bigger than the previous, and you see Santorini surrounded by another group of girls in bikinis. He notes that you are there and he smiles at you. <<$OpenMaleVoice>>"Hey <<$pcs_firstname>> <<$pcs_lastname>>! I was waiting for you! Today I have a special guest in my house and I have spoken to him about you. For me, he''s a very important person. Do you know what it means to be important to me <<$pcs_firstname>>? No, you don''t know it and you will never know...Come with me, we will find him. He will be in the east pool."<<$CloseMaleVoice>>'
+				
+				act 'Follow him':
+					*clr & cla
+					'<center><video autoplay loop src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day2/pooleast.jpg"></center><br>'
+					'You follow Santorini through several interior instances of the mansion and you arrive at an indoor pool with spa. There, on some sun loungers, there are two girls lying down drinking a glass of wine in fine lingerie.'
+					
+					act 'Continue':
+						cla
+						'<<$OpenNPC1Voice>>"Where is Mr. Tonelli?"<<$CloseNPCVoice>> Santorini asks them.'
+						'<<$OpenNPC2Voice>>"He''s in the billiard room, Mr. Satorini."<<$CloseNPCVoice>>'
+						'<<$OpenNPC1Voice>>"Well, shouldn''t you be fucking all day today, damn whores?"<<$CloseNPCVoice>>'
+						'<<$OpenNPC2Voice>>"Mr. Tonelli just fucked us both Mr. Santorini,"<<$CloseNPCVoice>> said one of them <<$OpenNPC2Voice>>"We are exhausted!"<<$CloseNPCVoice>>"'
+						'<<$OpenNPC1Voice>>"I told you to fuck all day! Every time I pass by here I want to see that yours pussies are busy! Have you understood me sluts?"<<$CloseNPCVoice>>'
+						'<<$OpenNPC2Voice>>"Yes, Mr. Santorini we understand!"<<$CloseNPCVoice>> They answer him.'
+						'<<$OpenMaleVoice>>"And you, <<$pcs_lastname>> come with me."<<$CloseMaleVoice>>'
+						
+						act 'Go with him…':
+							*clr & cla
+							'<center><video autoplay loop src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day2/tonelli.jpg"></center><br>'
+							'<<$OpenNPC1Voice>>"Hello Giacomo, I finally found you! Look, here''s the whore I told you about."<<$CloseNPCVoice>>'
+							'<<$OpenNPC2Voice>>"Hello Carlo"<<$CloseNPCVoice>> He replies to Mr. Satorini.'
+							'<<$OpenNPC1Voice>>"Her name is <<$pcs_firstname>> <<$pcs_lastname>>, she is from Pavlovsk a little town in Rusia, <<$pcs_firstname>> here is Giacomo Tonelli, my partner and a good friend."<<$CloseNPCVoice>>'
+							'<<$OpenNPC2Voice>>"Mmmf! She doesn''t look much very different from other whores."<<$CloseNPCVoice>>'
+							'<<$OpenNPC1Voice>>"No, no Giacomo you have to believe me. This girl was born to be a whore. She is, without a doubt, the most perfect whore I know. She enjoys being a whore. Right, <<$pcs_firstname>>?"<<$CloseNPCVoice>>'
+							'<<$OpenPCVoice>>"Yes, Mr. Santorini… I''m very slutty"<<$ClosePCVoice>> you answer him humiliated.'
+							'<<$OpenNPC1Voice>>"No, no, no!  You are… THE WHORE! I''m convinced you''re the queen of whores. Erick''s report was very clear about this and I think I agree with him. We can have a lot of fun with you and make lots of money."<<$CloseNPCVoice>>'
+							'<<$OpenNPC2Voice>>"Erick Ivanovivh? The Russian?"<<$CloseNPCVoice>> Tonelli asks him.'
+							'<<$OpenNPC1Voice>>"Yeah, the same."<<$CloseNPCVoice>>'
+							'<<$OpenNPC2Voice>>"We will see about that, Carlo. By the way, I''m hungry ... Can your other whores make me something to eat?"<<$CloseNPCVoice>>'
+							'<<$OpenNPC1Voice>>"Yeah, Giacomo! Beyond the indoor pool are the kitchens"<<$CloseNPCVoice>> He says to you. <<$OpenMaleVoice>>"Tell the cook that you are the dish today. Come on! Hurry up! We are hungry!"<<$CloseMaleVoice>>'
+							
+							act 'Continue':
+								*clr & cla
+								'<center><video autoplay loop src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day2/pooleast2.jpg"></center><br>'
+								'You go back to the indoor pool and there you can see that the two girls from before are rubbing their pussies together. The moans make it clear that they are having a good time. You go into the kitchens and tell the cook that YOU are the dish today.'
+								'<<$OpenMaleVoice>>"Okay, he tells you - we''ll start preparing. Mr. Tonelli likes fruits. You wait, they make you undress and they lie on a tray."<<$CloseMaleVoice>>'
+								'You remember that happened the other day and you know that you, literally, will be the dish again.'
+								
+								act 'They are preparing you and…':
+									*clr & cla
+									'<center><video autoplay loop src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day2/trayprepare.mp4"></video></center>'
+									'They serve you, as if you were food, on a tray surrounded by fruits. Inside your ass they insert a banana seasoned with honey. Honey that mixes with your own vaginal fluids; In your pussy you have a banana too and if that was not enough, they have inserted also two boiled eggs that when making contact between them don''s stop stimulating you, small vibrations that take you to the edge of madness. In your mouth is a red apple; a red apple that, they have already warned you, you shouldn''t stop biting and you must prevent it from falling.'
+									
+									act 'Continue': 
+										*clr & cla
+										'<center><video autoplay loop src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day2/trayprepare2.jpg"></center><br>'
+										
+										act 'Bite the apple hard!':
+											*clr & cla
+											'<center><video autoplay loop src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day2/tray.jpg"></center><br>'
+											'The two men eat and chat merrily among themselves, picking fruits from around you and from your body. There are pomegranate and red cherries surrounding your nipples and when they collect these fruits of your body use to pull on your nipples lightly at times and others more fiercely. Once their hunger is satisfied, yours is unsatisfied.But you have another kind of hunger, hunger to be penetrated, hunger to be fucked to the point of exhaustion. They laugh because they know that you are completely aroused. Shortly after they tell you to wear a bikini and make you walk next to them around the mansion, however, you still have those two boiled egg inside of your pussy! Santorini tells you with a great smile:'
+											'<<$OpenMaleVoice>>"Hey <<$pcs_firstname>>! I''m sure that you feel like you could do with laying some eggs!"<<$CloseMaleVoice>>'
+											'You feel that with each of your steps the eggs rub against one another stimulating your vaginal walls.'
+											'<<$OpenPCVoice>>"I… I, Mr. Santorini… I think so…"<<$ClosePCVoice>>'
+											'<<$OpenNPC2Voice>>"What are you saying?"<<$CloseNPCVoice>> interrupt Tonelli <<$OpenNPC2Voice>>"I don''t understand anything."<<$CloseNPCVoice>>'
+											'<<$OpenNPC1Voice>>"My friend, what I''m saying is that <<$pcs_firstname>> is a hen."<<$CloseNPCVoice>>'
+											'<<$OpenMaleVoice>>"Tell us <<$pcs_firstname>>, tell us what you are."<<$CloseMaleVoice>> Santorini ask you'
+											'<<$OpenPCVoice>>I… I "<<$ClosePCVoice>> <<$OpenInnerThought>> «Oh my God these boiled eggs are making me very horny… How they move inside me! This is a torture! »<<$CloseInnerThought>> You think hesitating what must be your answer'
+											'<<$OpenPCVoice>>"I… I am a hen."<<$ClosePCVoice>>'
+											'<<$OpenMaleVoice>>"That’s right! You are a hen… My hen! And tell us <<$pcs_firstname>>, what do the hens do?"<<$CloseMaleVoice>>'
+											'<<$OpenPCVoice>>"Hens lay eggs."<<$ClosePCVoice>> You answer ashamed.'
+											'<<$OpenMaleVoice>>"Just! Follow us hen."<<$CloseMaleVoice>>'
+											
+											act 'Follow them…':
+												*clr & cla
+												'<center><video autoplay loop src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day2/layingpussy.mp4"></video></center>'
+												'<<$OpenMaleVoice>>"Very good hen. Now get to laying eggs!"<<$CloseMaleVoice>> Santorini says'
+												'You get on a table; open your legs and try to get the eggs out of your pussy. <<$OpenInnerThought>> «Oh my God! It''s like if they were stuck!»<<$CloseInnerThought>> You think'
+												'<<$OpenMaleVoice>>"Come on hen! You can lay eggs!"<<$CloseMaleVoice>> Santorini says laughing.'
+												'<<$OpenNPC2Voice>>"I still don''t understand Carlo…"<<$CloseNPCVoice>>'
+												'<<$OpenNPC1Voice>>"Quiet Giacomo, quiet… you will soon understand."<<$CloseNPCVoice>>'
+												'You sit there, by your side.  <<$OpenInnerThought>> «I think maybe if I move...»<<$CloseInnerThought>>' 
+												'<<$OpenNPC2Voice>>"Wow! Fantastic!"<<$CloseNPCVoice>> Shout Tonelli <<$OpenNPC2Voice>>"It''s incredible!"<<$CloseNPCVoice>>'
+												'<<$OpenNPC1Voice>>"I knew you would like it!"<<$CloseNPCVoice>> Santorini says to Tonelli <<$OpenNPC1Voice>>"She is my particular hen."<<$CloseNPCVoice>>'
+												'<<$OpenNPC2Voice>>"Fantastic! She lays two eggs! I wonder if she can put any more."<<$CloseNPCVoice>> Tonelli says to Santorini.'
+												'<<$OpenMaleVoice>>"<<$pcs_firstname>>, If you go to the kitchen can you lay more eggs for us?"<<$CloseMaleVoice>>'
+												'<<$OpenPCVoice>>"Yes, Mr. Santorini, hens always lay eggs for their cocks"<<$ClosePCVoice>> You answer him.'
+												'Santorini nods clearly satisfied. <<$OpenMaleVoice>>"Ok, go surprise us!"<<$CloseMaleVoice>>'
+												
+												act 'Go back to the kitchen…':
+													*clr & cla
+													'<center><video autoplay loop src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day2/boiledeggs.jpg"></center><br>'
+													'You go back to the kitchen and take some food. You know you have to surprise those two perverted millionaires. Above the table there is a basket with boiled eggs. 
+													The first thing is to remove the shell from the eggs… '
+!!Add decrease level Hungry.
+													act 'Continue':
+														*clr & cla 
+														'<center><video autoplay loop src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day2/thinking.jpg"></center><br>'
+														'Well what now… <<$OpenInnerThought>> «If I insert the eggs in my pussy I can only put two ... or maybe three, more would be impossible but if I put them in the ass...»<<$CloseInnerThought>> You think. You get on all fours and little by little you start putting some egss in your ass. When you think that it may already be enough to surprise those two perverts you get up. You feel completely full. You take a bowl and go back to where they are.'
+														
+														act 'Go back ':
+															*clr & cla
+															'<center><video autoplay loop src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day2/layingass.mp4"></video></center>'
+															'<<$OpenPCVoice>>"Mr. Santorini, your hen is ready lay more eggs"<<$ClosePCVoice>> You say to him.'
+															'<<$OpenMaleVoice>>"Ok, we want to see you lay some eggs for us. Come on!"<<$CloseMaleVoice>>'
+															'You leave the bowl on the floor and you get on all fours.<<$OpenInnerThought>> «Oh my God!»<<$CloseInnerThought>>'
+															'<<$OpenNPC2Voice>>"One! And from the ass even! Incredible!"<<$CloseNPCVoice>>'
+															Wait 750 & '<<$OpenNPC2Voice>>"Two"<<$CloseNPCVoice>>'
+															Wait 750 & '<<$OpenNPC2Voice>>"Three…"<<$CloseNPCVoice>>'
+															Wait 750 & '<<$OpenNPC2Voice>>"Four! Very well hen!!"<<$CloseNPCVoice>>'
+															Wait 750 & '<<$OpenNPC2Voice>>"Five!"<<$CloseNPCVoice>>'
+															Wait 750 & '<<$OpenNPC2Voice>>"Six! Six eggs! Incredible!"<<$CloseNPCVoice>>'
+															'<<$OpenNPC1Voice>>"I told you Giacomo, that this whore was good."<<$CloseNPCVoice>>'
+															'<<$OpenNPC2Voice>>"Yeah I admit it!"<<$CloseNPCVoice>> Tonelli asnswer him.'
+															'<<$OpenMaleVoice>>"Well bitch you can return to the boat. By the way, I''ll tell Erick to give you a bonus on your return."<<$CloseMaleVoice>>'
+															'<<$OpenPCVoice>>"Thank you very much, Mr. Santorini"<<$ClosePCVoice>> You reply him.'
+															'<<$OpenMaleVoice>>"You are welcome, little slut. You surprised me and this deserves compensation. We will see you again ... soon."<<$CloseMaleVoice>>'
+															
+															act 'Go out of mansion': gt 'IbizaDay2', 'return'
+														end
+													end
+												end
+											end
+										end
+									end
+								end
+							end
+						end
+					end
+				end
+			end
+		end
+	end
+end
+
+if $ARGS[0] = 'return':
+	'<center><video autoplay loop src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day2/driver5.jpg"></center><br>'
+	'Some time later you''re waiting for the speedboat in the marina.'
+	'<<$OpenMaleVoice>>"You took more time than I expected. All good? Has it been hard?"<<$CloseMaleVoice>> Marco asks you.'
+	'<<$OpenPCVoice>>"Hard? no, not really... maybe a bit humiliating."<<$ClosePCVoice>> <<$OpenInnerThought>> «…but a bit exciting too. I''m hornier than ever! I feel my pussy completely soaked! »<<$CloseInnerThought>>. You think.'
+	'<<$OpenMaleVoice>>"I''m sorry, maybe you should have thought better coming here."<<$CloseMaleVoice>>'
+	'<<$OpenPCVoice>>"I need the money Marco; it''s one more way to survive."<<$ClosePCVoice>>'
+	'<<$OpenMaleVoice>>"Maybe I can offer you another way to survive, <<$pcs_firstname>>."CMV He says.'
+	'You are confused a little, not knowing what to answer him. <<$OpenPCVoice>>"You? A driver? I need a lot of money to get out of poverty. My parents haven''t a lot of them, you know? And me, well, I like luxury."<<$ClosePCVoice>>'
+	'<<$OpenMaleVoice>>"There are things more important than money... dignity, self-improvement, love..."<<$CloseMaleVoice>>'
+	'<<$OpenPCVoice>>"Love?"<<$ClosePCVoice>> You interrupt him <<$OpenPCVoice>>"Since I''m aware of my own sexuality, the only thing the boys have been trying to do with me is to fuck me on either side."<<$ClosePCVoice>>'
+	'<<$OpenMaleVoice>>"Maybe you haven''t met the right boy or... the right man."<<$CloseMaleVoice>> He replies to you emphasizing in the word man'
+
+!!WeCanVectorMan: This part talks aboot the amulet from the cursed TF start, the whole even is available only for magic starts or put a check here for which start we are using and remove a line if not magical?
+
+	'<<$OpenPCVoice>>"I don''t know Marco. Since I found that strange amulet in the forest it seems that everything has changed for me."<<$ClosePCVoice>>'
+	'<<$OpenMaleVoice>>"Amulet? What amulet?"<<$CloseMaleVoice>>'
+	'<<$OpenPCVoice>>"It''s nothing, Marco"<<$ClosePCVoice>> You answer him, realizing that you have said more than necessary.'
+	'<<$OpenMaleVoice>>"We have already arrived"<<$CloseMaleVoice>> He says to you.'
+	'<<$OpenPCVoice>>"Thank you for bringing me back."<<$ClosePCVoice>>'
+	'<<$OpenMaleVoice>>"That is my duty; we''ll continue our conversation another day."<<$CloseMaleVoice>>'
+	
+	act 'Go to ship ':
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/christian3.jpg"></center><br>'
+		'You took the speedboat in the marina and you boarded the boat. The party still goes on and on. Suddenly you are stopped by Christian. He seems to have been waiting for you.'
+		'<<$OpenPCVoice>>"Stop <<$pcs_firstname>>!  You can''t go to your cabin to rest yet. We are short on Purple Girls in the VIP lounge on deck 2. You must go there and join with the other girls who are already with the customers."<<$CloseMaleVoice>>'
+		'<<$OpenPCVoice>>"I''m rather tired."<<$ClosePCVoice>> You reply him. <<$OpenPCVoice>>"and I don''t know if..."<<$ClosePCVoice>>'
+		'<<$OpenMaleVoice>>"Here you think about customers first!"<<$CloseMaleVoice>> He interrupts you angrily.  <<$OpenMaleVoice>>"Come on!  VIP lounge on deck 2."<<$CloseMaleVoice>>'
+		'<<$OpenPCVoice>>"Ok I''m going now…"<<$ClosePCVoice>>'
+		'<<$OpenMaleVoice>>"By the way <<$pcs_firstname>>, you must take this pill."<<$CloseMaleVoice>>'
+		'<<$OpenPCVoice>>"Another yellow pill?"<<$ClosePCVoice>> You say protesting.'
+		'<<$OpenMaleVoice>>"Yes, those are the rules."<<$CloseMaleVoice>>'
+		act 'Take the pill':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/1pills.jpg"></center><br>'
+			'<<$OpenInnerThought>> « How many pills do you intend to take? A few hours ago two of them and now another. How strange! »<<$CloseInnerThought>>'
+			
+			act 'Go to VIP lounge ':
+				*clr & cla
+				'<center><video autoplay loop src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day2/d2event1.jpg"></center><br>'
+				
+!!Take a note! During this event you must play any music at random. From dis1 to dis7	
+!!music/dis1. random to dis7
+				'You enter the VIP lounge and you see that there are several Purple Girls there already, dancing. You join them. You realize that they all wear the same purple bracelet that you wear. All of you are Purple Girls.'
+				
+				act 'Dance':
+					*clr & cla
+					'<center><video autoplay loop src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day2/d2event2.jpg"></center><br>'
+					'It doesn''t take long for customers to start grouping with other girls around you without any shame. You feel terribly overwhelmed. A growing heat builds up in your womb. You feel bewildered and you leave quickly into the toilets.'
+					
+					act 'Go to toilet ':
+						*clr & cla
+						'<center><video autoplay loop src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day2/dripping1.jpg"></center><br>'
+						'You splash some water on the back of your neck and wet your wrists with the cool water, but your anxiety doesn''t stop; You enter a stall and take a sit on the toilet and think...<<$OpenInnerThought>> « Good heavens! I''m wetter than a snail! Oh my God! I was already horny coming back from the Santorini''s mansion but I didn''t think I was so much. Fuck! Are these yellow pills really that effective? I must be strong… Must endure! »<<$CloseInnerThought>>'
+						
+						act 'Go back to WIP lounge ':
+							*clr & cla
+							'<center><video autoplay loop src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day2/d2event3.jpg"></center><br>'
+							'You go back to the VIP room and see that the rest of your fellow Purple Girl are dancing in panties. You decide to do the same and you take off your skirt and you put on your golden panties, but you remain determined to resist the temptation.'
+							
+							act 'Continue':
+								*clr & cla
+								'<center><video autoplay loop src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day2/d2event4.jpg"></center><br>'
+								'Soon after, they all begin to show their breasts. Another girl pulls up your top, revealing your beautiful [TITS]. You look at your chest and you find that your nipples are completely swollen. You start rubbing one of them with one of your fingers and a ray of pleasure runs through your body connecting your pussy and your brain directly. You feel your breast full and sensitive. <<$OpenInnerThought>> « My God, what is happening to me? »<<$CloseInnerThought>>'
+								
+								act 'Continue working ':
+									*clr & cla
+									'<center><video autoplay loop src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day2/slappussy.mp4"></video></center>'
+									'A client approaches you from the back and throws your panties aside. That feeling makes you feel even hornier, more eager to satisfy your lust. You can''t resist and slap your pussy with your hand several times. You think you hear a damp sound coming straight from your crotch.'
+									
+									act 'Continue':
+										*clr & cla
+										'<center><video autoplay loop src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day2/purplesexcited.mp4"></video></center>'
+										'At the same time you notice how other girls, with the purple bracelet placed on their wrists just like you, are being fondled by all the customers.<<$OpenInnerThought>> « They are Purple Girls, they are whores! I''m a Purple Girl like them...  I''m here not because I''m a dancer ... I''m here because I''m a whore! »<<$CloseInnerThought>>You feel your pussy dripping on the ground. You think that a lot of the blame is because of the yellow pills, but right now, you do not care.You see a client is pulling his dick out of his pants. <<$OpenInnerThought>> «  I''m a whore. I am here to serve and satisfy customers, come on <<$pcs_nickname>>, serve him! »<<$CloseInnerThought>>'
+										
+										act 'Suck his cock ':
+											*clr & cla
+											'<center><video autoplay loop src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day2/d2event5.jpg"></center><br>'
+											'You crouch down and grab his cock. Hard and thick as an electric pole. You rip off your panties with your hands and leave your pussy free. Act is dropped, you realize what you are. You are a whore and there are many customers'
+											
+											act 'Continue':
+												*clr & cla
+												'<center><video autoplay loop src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day2/d2event6.jpg"></center><br>'
+												'You share a kiss and taste the rich and tasty cock with a partner. Your slit can''t take it anymore and you feel the need to fill it with something. The client makes you get up and you think he wants to fuck you but…'
+												
+												act 'But… ':
+													*clr & cla
+													'<center><video autoplay loop src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day2/d2event7.jpg"></center><br>'
+													'But you''re wrong. The client spreads your legs and crouches before your crotch. He wants to devour you; wants to eat and suck the scent of that filthy whore pussy… your pussy! And you facilitate his desire by opening your legs for him. Another Purple Girl approaches you and kisses you, gently, as only a woman can kiss, your lips, your neck, your nipples… You see that other women also kiss each other and you smile because you know that between your legs you have a customer, a male, a man…'
+													
+													act 'Continue':
+														*clr & cla
+														'<center><video autoplay loop src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day2/d2event8.jpg"></center><br>'
+														'The client tells you to suck him again. You dutifully attend his request but you can see that other Purple Girls are being fucked by their customers and you feel sad and anxious to have a cock inside you. Suddenly the client tells you to get on all fours on the couch. Happy you do it knowing that finally your slit can be full…'
+													
+														act 'Do it!':
+															*clr & cla
+															'<center><video autoplay loop src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day2/d2event9.jpg"></center><br>'
+															'But he also tells the other Purple Girls around you to do the same and get on the couch. Now the client has at his disposal four whores; four pussies ready to be fucked; four asses prepared to be violated. Putting you in a row, the client is inserting his cock in the hole that pleases him going from one to another according to his wishes.When your turn arrives the fluids of your companions are mixed with yours. You feel how his cock stretches your pussy that wraps it like a glove, but shortly after he takes it out of your hungry pussy so he can fuck another Purple Girl. Suddenly you realize that he is fucking you without a condom.  But right now you do not care about anything. You just want to feel the hardness of his cock inside you again. <<$OpenInnerThought>> « Beg to him fuck you again <<$pcs_nickname>>! Come on beg him! You need his cock! Beg him! »<<$CloseInnerThought>> -Your inner voice tells you- '
+															
+															act 'Beg to him fuck you!':
+																*clr & cla
+																'<center><video autoplay loop src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day2/keepopen.mp4"></video></center>'
+																'<<$OpenPCVoice>>"Please! Please! I beg you to fuck me please!"<<$ClosePCVoice>> You say to him on your knees. The customer smiles and tells you to lie on the couch. You open your legs for him while your companions laughing of your need help you keep them open.'
+																
+																act 'Continue':
+																	*clr & cla
+																	'<center><video autoplay loop src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day2/pumping.mp4"></video></center>'
+																	'<<$OpenPCVoice>>"Aaah!  Harder! Harder!"<<$ClosePCVoice>> You shout at him. At this moment he puts one leg on the couch to give himself more strength and begins to fuck you much harder.'
+																	'<<$OpenPCVoice>>"Aaaah Yes! Yes! Give me more! More!"<<$ClosePCVoice>>'
+																	'You feel how with each thrust the tip of his cock hits your cervix.'
+																	'You''re just feeling your orgasm coming when he says to you: <<$OpenMaleVoice>>"Open your pussy lips! Come on open your pussy! I want to see all the spunk that is going to go inside you!"<<$CloseMaleVoice>>'
+																	act 'Continue':
+																		*clr & cla
+																		'<center><video autoplay loop src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day2/openpussy.mp4"></video></center>'
+																		'You open your lips with your hands.'
+																		'Your twat is completely open and exposed. He takes his dick out and starts shooting all his cum into your gaping pussy. You feel good '
+																		'knowing that you have served the customer. You are exhausted and you decide to go to your cabin to rest.'
+!!music stop 
+																		act 'Go to your cabin':
+																			*clr & cla
+																			'<center><video autoplay loop src="mod/ibiza/locations/city/citycenter/nightclub/trip01/cabin.jpg"></center><br>'
+																			'You have reached your cabin. You must take a shower and rest, tomorrow will be hard day.'
+																			*nl
+																			'That is end for now -- rachels'
+																			
+!! Here must be a bedroom and bathroom (dynamics complete- shoes and dresses available, bed and shower) 
+																		end
+																	end
+																end
+															end
+														end
+													end
+												end
+											end
+										end
+									end
+								end
+							end
+						end
+					end
+				end
+			end
+		end
+	end
+end
+
+--- mod_IbizaDay2 ---------------------------------

+ 441 - 0
locations/mod_IbizaDay3.qsrc

@@ -0,0 +1,441 @@
+# mod_IbizaDay3
+!![COCK] for where to put cock desc
+!![PUSSY] for where to put pussy desc
+!![TITS] for where to put tits desc
+!![REPUTATION] for where to put the reputation desc
+!!Inner Though our characters inner monologue/thoughts, coloured inner thoughts, obviously
+
+if $ARGS[0] = 'day three':
+	'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/cabin.jpg"></center><br>'
+	'A new day dawns. You feel rested but can''t shake the feeling that you''re here because of your beauty; simply belonging to a dance troupe named Purple Girls, that''s actually a front for a prostitution ring.'
+	'<<$OpenInnerThought>> «I should take a shower and do my makeup before I head out.»<<$CloseInnerThought>>'
+
+!!Here must be a bedroom and bathroom (dynamics complete- shoes and dresses available, bed and shower) 
+!!When the player has showered, dressed and make up it will appear the following act. 
+	*nl
+	'You hear someone knocking on the door.'
+
+	act 'Open the door':
+		*clr & cla
+!!There is a new sound file for when they knock on the door, right? Could it be included?
+		'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/christian6.jpg"></center><br>'
+		'<<$OpenMaleVoice>>"Hey there, <<$pcs_firstname>>, you are looking great today. It seems you really enjoyed getting fucked yesterday."<<$CloseMaleVoice>> he mockingly tells you.' 
+		'<<$OpenPCVoice>>"What do you want, Christian?"<<$ClosePCVoice>> you ask him.'
+		'<<$OpenMaleVoice>>"Apparently one of the customers from the VIP lounge was so impressed with your... performance yesterday that he wants to come over to his place."<<$CloseMaleVoice>>'
+		'<<$OpenPCVoice>>"All alone?"<<$ClosePCVoice>> you ask.'
+		'<<$OpenMaleVoice>>"Yes, a speedboat is waiting for you to take you to his mansion. Marco is already awaiting you downstairs."<<$CloseMaleVoice>>'
+
+		act 'I guess I have no choice, do I?':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/2pills.jpg"></center><br>'
+			'<<$OpenMaleVoice>>"No you don''t, and by the way, here take these... you know the rules..."<<$CloseMaleVoice>>' 
+			'<<$OpenPCVoice>>"What are these pills Christian? I took three of them yesterday and I was extremely horny all day."<<$ClosePCVoice>> you curiously ask him.'
+			'<<$OpenMaleVoice>>"Don''t worry, they going to help you. Take them."<<$CloseMaleVoice>>'  
+			'<<$OpenPCVoice>>"Christian, what are these pills? I want know."<<$ClosePCVoice>> you try to sound intimidating.'
+			'<<$OpenMaleVoice>>"Ok If you want really want to know... It''s a special drug. All the Purple Girls have to take them."<<$CloseMaleVoice>>'
+			'<<$OpenPCVoice>>"Are they aphrodisiacs?"<<$ClosePCVoice>> you ask.'
+			'<<$OpenMaleVoice>>"You could say that, it hightens some of your deep lying senses. Don''t worry about it, just take them."<<$CloseMaleVoice>>'
+	
+			act 'Take the pills':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/1pills.jpg"></center><br>'
+	!!Add max bonus aroused.
+				'<<$OpenMaleVoice>>"Hurry up! Everyone is waiting for you. And remember he''s a good client, so be sure to show him a good time. And remember to be professional..."<<$CloseMaleVoice>>' 
+				'<<$OpenPCVoice>>"You mean I should just let him use me however he wants?"<<$ClosePCVoice>> you snarkly reply.'
+				'<<$OpenMaleVoice>>"Well, yeah! We''re all getting used in one way or another..."<<$CloseMaleVoice>>'
+
+				act 'Head to the marina':
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day3/driver6.jpg"></center><br>'
+					'<<$OpenMaleVoice>>"Hello <<$pcs_firstname>>, you look beautiful today."<<$CloseMaleVoice>> Marco tells you while giving you a sincere smile.' 
+					'<<$OpenPCVoice>>"Thank you Marco, some asshole told me I looked blistful because I had so much sex yesterday."<<$ClosePCVoice>> you answer quietly.'
+					'<<$OpenMaleVoice>>"Whoever told you that must be an idiot..."<<$CloseMaleVoice>> Marco replies.'
+					'You drive for a while and all of a sudden you start feeling uneasy. You feel your nipples becoming more sensitive and your pussy is getting soaking wet, <<$OpenPCVoice>>"Are we there yet?"<<$ClosePCVoice>> you desperately ask Marco.' 
+					'<<$OpenMaleVoice>>"Not yet, but we''re not that far away. We should be arriving shortly.<<$CloseMaleVoice>>"'
+					*nl 
+					'<<$OpenPCVoice>>"What is that?"<<$ClosePCVoice>> you point at a grand white building.'
+					'<<$OpenMaleVoice>>"That''s the nightclub, Amnesia. It''s one of the most famous clubs on the entire island. There''s another club known as the largest nightclub in Europe named Privilege but it''s a bit further away. I think it has a capacity of 14,000 people."<<$CloseMaleVoice>>'  
+					'<<$OpenPCVoice>>"Really?"<<$ClosePCVoice>> you genuinely ask.' 
+					'<<$OpenMaleVoice>>"Yeah! Live porn shows are common at certain hours. I''m surprised they haven''t told you that you might be working there some day."<<$CloseMaleVoice>>'
+					'<<$OpenPCVoice>>"No, I''ve been kept in the dark."<<$ClosePCVoice>> you answer with a flickering look.' 
+					'<<$OpenMaleVoice>>"We''ve arrived; it''s the white house with the pool. I''ll wait here for you, <<$pcs_firstname>>."<<$CloseMaleVoice>>'
+					'<<$OpenPCVoice>>"Thank you Marco."<<$ClosePCVoice>>'
+	
+					act 'Go to the house':
+						*clr & cla
+						'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day3/takeoff.mp4"></video></center>'
+	!remove panties somehow
+						'You take a few steps as you walk away from the car. All of a sudden you stop and feel your soaked panties. You quickly decide that the best action is to take them off before entering the client''s house.'
+						'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day3/dripping01.mp4"></video></center>'
+						'<<$OpenInnerThought>> «How can I be this horny? Nobody has even touched me and... It''s those damn yellow pilis! I can''t believe how effective they are! Damn those bastards... they make sure their whores are horny enough to do anything.»<<$CloseInnerThought>>'
+
+						act 'Ring the bell':
+							*clr & cla
+							'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day3/d3aevent1.jpg"></center><br>'
+	!Decrease HUNGER level.
+	!Add alko
+							'You enter the house where the client is awaiting you. You chat for a while and treats you to some food, he''s very gentleman-like as he''s treating you respectably. He excuses himself and returns with a red lingerie set and a gold anklet.'
+							'<<$OpenMaleVoice>>"This is for you. I want you to wear it."<<$CloseMaleVoice>> he tells you as he shows you the goods.'
+							'Remembering Christian''s words, you quickly put on everything and are handed a cocktail by the indoor pool area.'
+							'<<$OpenMaleVoice>>"Your breast are a bit too big for that bra..."<<$CloseMaleVoice>> he says with a grin on his face.'
+							'<<$OpenPCVoice>>"If only it was one size bigger it would have been perfect."<<$ClosePCVoice>> you answer him.' 
+							'<<$OpenMaleVoice>>"Not at all, actually I like them being revealed like that. On second thought, take it off! I want you to turn me, show me your naked body."<<$CloseMaleVoice>>' 
+							'<<$OpenInnerThought>> « Well, I think my work is about to begin.»<<$CloseInnerThought>> you think to yourself. You start taking off your red lingerie little by little, sensually moving while slowly caressing your body, noticing that the clients bulge is steadly growing.'
+							'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day3/d3aevent2.jpg"></center><br>'
+							'You crouch down completely naked and play with your breasts looking intensively into his eyes.'
+	
+							act 'Keep showing yourself':
+								*clr & cla
+								'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day3/d3aevent3.jpg"></center><br>'
+								'You go down on all fours. Your boobs are perfectly shown off between the arms and you see the client begin fondiling himself through the pants.'
+								'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day3/d3aevent4.jpg"></center><br>'
+								'You turn around and kneel to show off your naked ass; you slap it several times looking him as the bulge gets bigger and bigger.' 
+								'<<$OpenInnerThought>> «He seems to enjoy this... Might as well continue on...»<<$CloseInnerThought>> you think to yourself.'
+
+								act 'More…':
+									*clr & cla
+									'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day3/d3aevent5.jpg"></center><br>'
+									'You squat and pull your knees apart, lightly touching the pussy lips, showing him your slit.'
+									'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day3/d3aevent6.jpg"></center><br>'
+									'As your arousal continues to rise, your clit begins driving you more crazy. As you spread your legs even further you suddenly...'
+									'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day3/dripping2.mp4"></video></center>'
+									'Release an abundant amount of vaginal discharge... <<$OpenMaleVoice>>"I see you''re very horny and ready."<<$CloseMaleVoice>> the client tells you. <<$OpenMaleVoice>>"Follow me..."<<$CloseMaleVoice>>'
+	
+									act 'Go with him…':
+										*clr & cla
+										'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day3/d3aevent7.jpg"></center><br>'
+										'You follow the client to his bedroom. He tells you that he really likes your feet and that he wants you to give him a footjob.'
+										'You lie down on the bed and start teasing him with your feet.'
+										'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day3/d3aevent8.jpg"></center><br>'
+										'You know you''re doing something right as the client immediately starts groaining loudly. You''re also feeling very horny and you begin to wonder if you must continue with the footjob or if you should pleasure him in an other way.'
+
+!Here there are three branches available (acts) Suck your cock!; Open your legs! and Keep with the footjob. Every branch has different effects.	
+										act 'Suck his cock':
+											*clr & cla
+											'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day3/d3aevent10.jpg"></center><br>'
+											'His cock is very attractive and you can''t resist wrapping your lips around it and start sucking on it. He''s rock solid and is twitching as you closely follow his movements.' 
+											'You look into his eyes and savour every moment with his cock in your mouth, it tastes just as your favorite flavoured lollipop, <<$OpenMaleVoice>>"Oh you like taking initiative on your own? How about you ride me instead."<<$CloseMaleVoice>> the client commands you.'
+											'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day3/d3aevent13.jpg"></center><br>'
+											'You obey him and lead his cock into your vagina, you slowly start up and down. After a while your hips automatically pick up the pace as the both of you begin shouting in a cresendo. Suddenly the clients starts shouting, <<$OpenMaleVoice>>"Stop, I want cum on your feet!"<<$CloseMaleVoice>>'
+											
+											act 'Give him your feet!':
+												*clr & cla
+												'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day3/d3aevent16.mp4"></video></center>'
+												'You place your feet infront of him and it doesn''t take long before your feet are covered by his hot and thick cum. You feel a bit cheated as the sex act ends without you having any orgasms, it leaves you feeling much more hornier than before. The client thanks you as you''re dress and shortly thereafter you return to Marco that''s awaiting you.'
+	!Add max level to arouse.
+	
+												act 'Spread your legs!':
+													*clr & cla
+													'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day3/d3aevent14.jpg"></center><br>'
+													'You open your legs smiling seductivly at him, knowing that he won''t be able to resist fucking you when as he gets a front view of your dripping wet pussy. Without hesitating the client lays you sideways, grabbing his cock, shoving it into your soaked pussy as he starts pounding you.' 
+													'Your tits jiggle with every thrust as you feel that an orgasm is building up in your belly. After a while he tells you to get on all fours because he wants to fuck you from behind.'
+													
+													act 'Get on all four':
+														*clr & cla
+														'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day3/d3aevent17.mp4"></video></center>'
+														'The client rubs the tip of his cock up and down your clit. You moan loudly as you beg him to fuck you hard and deep.' 
+														'<<$OpenMaleVoice>>"Keep begging whore!"<<$CloseMaleVoice>> he tells you, <<$OpenMaleVoice>>"I love when you whores are begging me to get fucked! Come on whore, let me hear it, beg for it!"<<$CloseMaleVoice>>' 
+														'<<$OpenPCVoice>>"Please fuck me, like the whore I am! Fuck my pussy as if there''s no tomorrow!"<<$ClosePCVoice>> you shout.'
+
+														'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day3/d3aevent15.jpg"></center><br>'
+	  !orgasm
+														'The client pushes his cock inside of you and begins furiously fucking you, smacking your ass. It doesn''t take long before you orgasm. The spasms of your vaginal walls make the client cum directly after and you can feel that he emptied all spunk deep inside you.'
+
+														'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day3/cream5.mp4"></video></center>'
+														'<<$OpenMaleVoice>>"I''m not done yet whore, keep on sucking my cock."<<$CloseMaleVoice>> he tells you.'
+														act 'Suck his cock':
+															*clr &cla
+															'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day3/d3aevent10.jpg"></center><br>'
+															'You place his cock in your mouth and savor the remains of his cum mixed with your own juices. After a while you notice that the client''s cock begins to tremble and he shouts to present your feet as he wants to cum on them.'
+															
+															act 'Present him your feet!':
+																*clr & cla
+																'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day3/d3aevent16.mp4"></video></center>'
+																'You place your feet infront of him and it doesn''t take long before your feet are covered by his hot and thick cum. You have had an orgasm and you feel more serene but you still feel unsatisfied. The client thanks you as you''re dress and shortly thereafter you return to Marco that''s awaiting you.'
+      !Add level to arouse.
+      !Add vaginal creampie.
+																act 'Keep with the footjob':
+																	*clr & cla
+																	'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day3/d3aevent9.jpg"></center><br>'
+																	'You make sure that the customer is satisfied with the footjob as you continue rubbing his cock with your feet.'
+																	
+																	'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day3/d3aevent11.jpg"></center><br>'
+																	'<<$OpenInnerThought>> « Oh my God! I''m getting hornier by just rubbing my feet! Behave <<$pcs_nickname>>, you must be professional and do what the customer wants. Keep concentrating on pleasing him with the footjob...»<<$CloseInnerThought>>' 
+																	'After a while you notice that the client''s cock begins to tremble and he shouts to present your feet as he wants to cum on them.'
+																	
+																	act 'Give me your feet!':
+																		*clr  & cla
+																		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day3/d3aevent16.mp4"></video></center>'
+																		'You place your feet infront of him and it doesn''t take long before your feet are covered by his hot and thick cum. You feel completely unsatisfied, you''re aware you''re nothing but a simple whore and you must be professional. The client''s enjoyment is the most important and yours is second.' 
+																		'The client thanks you as you''re dress and shortly thereafter you return to Marco that''s awaiting you.'
+	!Add max level to arouse.
+    !After any of the three branches that can choose the player will appear the following 
+																		act 'Go to the car': gt 'IbizaDay3','Marco'
+																	end
+																end
+															end
+														end
+													end
+												end
+											end
+										end
+									end
+								end
+							end
+						end
+					end
+				end
+			end
+		end
+	end
+end
+
+if $ARGS[0] = 'Marco':
+	'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day3/driver6.jpg"></center><br>'
+	'<<$OpenMaleVoice>>"Everything went fine, <<$pcs_firstname>>? Shall we return to the hotel?"<<$CloseMaleVoice>> Marco asks you.'
+	'<<$OpenPCVoice>>"Yes Marco, we can head back, the client was very pleased with my performance."<<$ClosePCVoice>> As you make yourself comfortable, you once again feel a pressure building inside of you. You can''t understand why but you know that the yellow pills are the reason behind it. You decide to ask to Marco if he knows anything about the yellow pills.' 
+	'<<$OpenMaleVoice>>"Yellow pills you say? Are they forcing you to take them?"<<$CloseMaleVoice>> he asks.' 
+	'<<$OpenPCVoice>>"Yes, they told me those are the rules."<<$ClosePCVoice>> you reply.'  
+	'<<$OpenMaleVoice>>"Sorry <<$pcs_firstname>>, I can''t talk to you about it."<<$CloseMaleVoice>>' 
+	'<<$OpenPCVoice>>"Please Marco..."<<$ClosePCVoice>> you desperately plead, <<$OpenPCVoice>>"I need know. I know the effects of some drugs that can have a negative impact on my body if I abuse it but I don''t know what those pills are. I beg you, please, tell me what you know..."<<$ClosePCVoice>>'
+	'He thinks about it for a while contamplaiting as he finally speaks, <<$OpenMaleVoice>>"I know they are a treatment that are used to keep the females dogs in heat."<<$CloseMaleVoice>>' 
+	'You gasp loudly as you hear him utter the words.'
+
+	act 'WHAT??!!':
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day3/driver7.jpg"></center><br>'
+		'<<$OpenPCVoice>>"Are they giving me some feline treatments? What the fuck are you saying!"<<$ClosePCVoice>>'
+		'<<$OpenMaleVoice>>"Sorry <<$pcs_firstname>>, I figured there was a risk that they could give it to you but I never thought they would move this fast. They usually do it to keep the whores... sorry I meant the girls, horny all the time. That way they would never refuse to satisfy a client."<<$CloseMaleVoice>>' 
+		'<<$OpenPCVoice>>"But... but that''s against the law!"<<$ClosePCVoice>> you try to reason.' 
+		'Marco stops the car and looks over to you, <<$OpenMaleVoice>>"<<$pcs_firstname>>, you still haven''t realized who these people are? They''re high ranked Russian and Sicilian gangsters with connections to the Middle Eastern sheikhs. They deal with weapons, drugs, counterfeiting and... international prostitution. They are very dangerous and you are nothing more than a whore to them."<<$CloseMaleVoice>>'
+		*nl
+		'You are shaking with fear as all of this is being revealed to you, <<$OpenPCVoice>>"Why are you telling me all this?"<<$ClosePCVoice>> you ask him.' 
+		'<<$OpenMaleVoice>>"Simply because we need your help."<<$CloseMaleVoice>> he replies.' 
+		'<<$OpenPCVoice>>"You need my help?"<<$ClosePCVoice>> you''re confused by his answer.'
+		'<<$OpenMaleVoice>>"Yes I''m... how should I put this. I am Lieutenant Gianluca Caprile of the Interpol. We''ve been closely monitoring the activities of Santorini, Tonelli, Ivanovich and Yazev for several years. You''ve met the first three and it should''t take too long before you meet the last one. Yazev is Siberian and is very dangerous..."<<$CloseMaleVoice>>'
+
+		act 'I…I don´t know…':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/driver5.jpg"></center><br>'
+			'<<$OpenMaleVoice>>"Listen to me, <<$pcs_firstname>>! We can''t access the locations you can. I can''t get near the boat nor can I enter the Tonelli and Santorini mansions. Ivanovich will visit tomorrow to meet with his partners and we''re certain that Yazev won''t be far away from here."<<$CloseMaleVoice>>' 
+			'<<$OpenPCVoice>>"But... I''m just a whore working for them. I don''t have any access to anything!"<<$ClosePCVoice>> Marco looks desperately at you pleading for your help. Deciding you want to help out, you take a deep breath, asking him, <<$OpenPCVoice>>"What do you need me to do?"<<$ClosePCVoice>>' 
+			'<<$OpenMaleVoice>>"We only need you to keep your eyes and ears open, the information you provide us will be of vital importance in order to dismantle the whole network."<<$CloseMaleVoice>>' 
+			'<<$OpenInnerThought>> «Oh my God! How did I end up in such a messed up situation?»<<$CloseInnerThought>>'
+			*nl
+			'<<$OpenMaleVoice>>"So what do you say <<$pcs_firstname>>? Will you help us?"<<$CloseMaleVoice>> Marco asks as the car stops near the speedboat that will take you to the cruise ship.' 
+			'Remembering that you need to be careful and that they''re maybe only testing you ask, <<$OpenPCVoice>>"What do I gain from all this?"<<$ClosePCVoice>>' 
+			'<<$OpenMaleVoice>>"You''ll be richly rewarded. When you provide us the information we will make a transfer to your bank account. It will be set up as the transfer comes from a model agency, for a job well done."<<$CloseMaleVoice>>'
+			'It doesn''t take long before you answer, <<$OpenPCVoice>>"Alright, I will do it and I will provide the information..."<<$ClosePCVoice>>' 
+			'Marco lets out a relieving smile, <<$OpenMaleVoice>>"I will contact you in St. Petersburg, meanwhile you must continue on as usual... They musn''t suspect anything..."<<$CloseMaleVoice>>'
+
+			act 'What about the pills?':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/driver4.jpg"></center><br>'
+				'<<$OpenMaleVoice>>"You''ll have to continue on as usual... Yazev, the Siberian, is a chemist and a veterinarian, and from our information we''ve gathered we know that he loves to experiment on humans with products usually made for animals."<<$CloseMaleVoice>>' 
+				'<<$OpenMaleVoice>>"He''s the one responsible for those pills. They found out that women stay horny for a long time when they take them and now they''re providing the pills to all the girls belonging to the Purple Girls. The girls don''t complain because they''re too aroused to notice anything wrong..."<<$CloseMaleVoice>>' 
+				'<<$OpenPCVoice>>"But how will I earn their trust, you said it yourself I''m just a no name whore to them?"<<$ClosePCVoice>> you ask.'
+				'<<$OpenMaleVoice>>"You must focus on becoming the most prominent one. That way you will earn their trust and you''ll be able to enter locations hidden to everyone else. You''ll be able to see and hear things that could be very important."<<$CloseMaleVoice>>' 
+				'<<$OpenPCVoice>>"I understand that, but what about my health?"<<$ClosePCVoice>> you ask fearing that Marco only wants to use you.' 
+				'<<$OpenMaleVoice>>"As long you keep it to four tablets daily you should be okay. If you ingest more than that I can''t guarantee anything. You will probably want sex until you faint, the effects aren''t permanent, but very intense."<<$CloseMaleVoice>> Marco explains to you.'
+				*nl
+				'You get out of the car and as you''re approaching the speedboat, you hear Marco yelling your name.' 
+				'You turn around with a questioning look on your face.'
+				'<<$OpenMaleVoice>>"Don''t think too much about what you''re doing. You''ve already been used for some days now... See it this way, you''ll put away some bad guys and your bank account will grow..."<<$CloseMaleVoice>>'
+				'You nod and turn around, not saying another word to Marco...'
+
+				act 'Go to boat':
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/christian5.jpg"></center><br>'
+					'As you step on the boat you are met by Christian, <<$OpenMaleVoice>>"Hi <<$pcs_firstname>>, I heard that the client was very pleased with you."<<$CloseMaleVoice>>'  
+					'<<$OpenPCVoice>>"I''m glad I could be of service."<<$ClosePCVoice>> you politely answer, <<$OpenPCVoice>>"He groaned quite a lot, groans of pleasure that is."<<$ClosePCVoice>> you smile.' 
+					'<<$OpenMaleVoice>>"Very well. Now head over to the dance floor and continue on doing what you''re best at..."<<$CloseMaleVoice>> Christian mocks you.' 
+					'<<$OpenPCVoice>>"Yes, I''ll head over straight away..."<<$ClosePCVoice>> you tell him as you head towards the dance floor.'  
+					'<<$OpenMaleVoice>>"Wait a moment <<$pcs_firstname>>... I forgot one thing... I need you to take the yellow pills."<<$CloseMaleVoice>>' 
+
+					'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/2pills.jpg"></center><br>'
+					*nl
+					'You try to reason with him, <<$OpenPCVoice>>"I don''t need them Christian, you already know I''m compliant..."<<$ClosePCVoice>>'
+					'He sighs, <<$OpenMaleVoice>>"You know those are the rules... And just because you questioned me, you will have to insert the pills in your vagina instead... This way the pills will affect you faster."<<$CloseMaleVoice>> he slyly smiles.'
+					
+					act 'Put the pills inside your pussy':
+						*clr & cla
+						'<<$OpenInnerThought>> «This piece of shit is really making me do this... I have no other choice but to obey him. I''m going to be such a hot mess when the pills kick in!»<<$CloseInnerThought>>'
+						'<<$OpenMaleVoice>>"Do you want me to insert them?"<<$CloseMaleVoice>> he lewdly asks.' 
+						'<<$OpenPCVoice>>"No thanks."<<$ClosePCVoice>> you coldly answer, <<$OpenPCVoice>>"I can do it by myself..."<<$ClosePCVoice>>'
+						'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day3/pussypills.mp4"></video></center>'
+						'<<$OpenMaleVoice>>"Push them in deeply... to make sure they won''t fall out. Now you''re prepared to meet the clients... Now head over to the main dance floor!"<<$CloseMaleVoice>>'
+
+						act 'Go to work':
+							*clr & cla
+							'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/dancestart.mp4"></video></center>'
+
+!The act- trigger must be too a GO TO WORK which will be available when the player has at least taken a shower and arranged himself in the mirror. Begin the party…
+!Here must be put the follows options available for the player:
+
+!A act with GO TO A SECURITY GUARD will give the player maximum arouse increase; slight decrease hunger and increase mood (euphoria) for supply of cocaine and aphrodisiacs. Events specified (RANDOM) in the document called DYNAMIC EVENTS 
+!A act with GO TO THE BUFFET-BAR Here the player will be able to replenish their levels hunger. There is a specific event on the 5th that will be triggered when the player comes on that day to the buffet-bar (only once) 
+!A act with GO TO THE TOILET. Here the player can slightly increase their level of cleaning and fix the makeup. Events specified (RANDOM) in the document called DYNAMIC EVENTS TOILET.
+
+!A act called DANCE! Events specified (RANDOM) in the document called DYNAMIC EVENTS DANCE.Every Act will be dynamic to give the player feeling of freedom and to play something non-linear. Each gif or jpg will be accompanied by its own text giving the player a sense of getting into the story and being inside it. 
+!!music/dis2.mp3 (RANDOM 1 to 7)
+
+							act 'Go to security guard': gs 'IbizaGuard','start'
+							act 'Go to the toilet': gs 'IbizaToilet','start'
+							act 'Go to the buffet bar': gs 'IbizaBar','start'
+							act 'Dance!': gs 'IbizaDance','start'
+
+!3 complete rounds of dance during which the player can also go to the bar, the security guard or the toilet. If the player interrupts by going to other available scenarios he must continue where he left off.
+!Examples phases: 	1,1,1,2,2,2,3,3,4
+!				1,1,2,3,3,3,4,4,4
+!				1,1,1,1,2,2,3,4,4
+!After the three complete rounds the day follows the following linear way:
+!!stop music/dis2.mp3
+							act 'Go to the cabin':
+								*clr & cla
+								'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/cabin.jpg"></center><br>'
+								'You head over to your cabin. You''re exhausted and need a rest or you will likely fall ill. As you''re undressing, you realize that your pussy is still dripping wet. The yellow pills are still very effective.'
+								'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day3/dripping03.mp4"></video></center>'
+								'<<$OpenInnerThought>> «The wetness doesn''t stop...»<<$CloseInnerThought>> you think as you see drops fall down your tighs, creating a small puddle. All of a sudden someone knocks on the door and you walk over to open it, completely naked.'
+								
+								act 'Open the door':
+									*clr & cla
+									'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/christian4.jpg"></center><br>'
+									'<<$OpenMaleVoice>>"Here you are whore! Who told you to take a rest in the cabin?"<<$CloseMaleVoice>> Christian begins to shout.' 
+									'<<$OpenPCVoice>>"I... I''m sorry, I just got here. I''ve been dancing and taking care of the clients this whole time."<<$ClosePCVoice>> you answer.' 
+									'<<$OpenMaleVoice>>"I don''t care about your lame excuses, we need you in VIP lounge now!"<<$CloseMaleVoice>>'
+									'<<$OpenPCVoice>>"Yes! Yes! Let me just get ready and I''ll head overthere."<<$ClosePCVoice>> you turn away from him and try your fastest to get yourself presentable.'
+									*nl
+									'<<$OpenMaleVoice>>"Wait!"<<$CloseMaleVoice>> he shouts, <<$OpenMaleVoice>>"Come back here. What is that?"<<$CloseMaleVoice>> as he points at the puddle...' 
+									'<<$OpenPCVoice>>"Uhm... I... I''m sorry I''m still very horny... I''ve lost count of how many times I''ve been fucked but I''m still horny... Christian, those pills are too effective."<<$ClosePCVoice>>' 
+									'Christian starts grinning, telling you, <<$OpenMaleVoice>>"It''s not the pills you stupid whore... It''s you, your pussy''s hungry for cock that it''s dripping wet all the time!"<<$CloseMaleVoice>>' 
+									'<<$OpenPCVoice>>"You''re right," you say dejected, "I''ll just finish up and head to the VIP lounge."<<$ClosePCVoice>>' 
+									'<<$OpenMaleVoice>>"Too late now whore, turn around and spread those pussy lips!"<<$CloseMaleVoice>> Christian commands.' 
+									'<<$OpenInnerThought>> «What is he up to now?»<<$CloseInnerThought>>'
+									
+									act 'Turn around':
+										*clr & cla
+										'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day3/dripping05.mp4"></video></center>'
+										'<<$OpenMaleVoice>>"Look at that! You''re wet like a snails tracks. It''s really dripping out of you. Seems like the pills are much more effective if they are applied vaginally. I''ll be sure to tell Mr. Santorini this."<<$CloseMaleVoice>>' 
+										'<<$OpenInnerThought>> «Am I just a lab rat for them?»<<$CloseInnerThought>>'
+										'<<$OpenMaleVoice>>"Before you head over to the VIP lounge, you have my permission to finger yourself."<<$CloseMaleVoice>> he tells you.'
+										'<<$OpenPCVoice>>"You want to see me touching my pussy?"<<$ClosePCVoice>> you ask him.'
+										*nl
+
+										'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day3/finger.mp4"></video></center>'
+!orgasm
+										'He stands and watches as you lead your hand downwards to your swollen clit. The slightest touch on your clit makes you tremble. Your heart starts beating really fast and before you know it, there''s a torrent of vaginal fluids as you orgasm.' 
+										'<<$OpenMaleVoice>>"Look at that! How wonderful, you''ve earned a present. I''ll bring it over tomorrow."<<$CloseMaleVoice>>'
+										'<<$OpenPCVoice>>"How nice, a gift!"<<$ClosePCVoice>> you try your best to sound sincere as you''re still recovering from the orgasm.'
+										'<<$OpenMaleVoice>>"Now, hurry and head over to the VIP lounge."<<$CloseMaleVoice>> he tells you.'
+										
+										act 'Go to the VIP lounge':
+											*clr & cla
+	!!music/dis4.mp3  (RANDOM 1 to 7)
+											'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day3/d3bevent1.mp4"></video></center>'    
+											'You quickly wipe yourself clean and hurry over the VIP room. As you arrive you begin to dance with the other Purple Girls who are already by the clients. You still feel a little tired but more relaxed because of the orgasm you had in the cabin.'
+											
+											'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day3/d3bevent2.mp4"></video></center>'
+											'As you move seductivly you raise the dress, teasing the clients. Every single of them can see your little silver panties.'
+											'<<$OpenInnerThought>> «There''s no doubt I''ll get fucked by several clients... Just look at their lusting eyes. I hope they''ll be fast, I really want to rest in my cabin.»<<$CloseInnerThought>>'  
+											
+											act 'Tempts customers':
+												*clr & cla
+												'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day3/d3bevent3.mp4"></video></center>'
+												'You rub your ass against a clients bulge and grab the crotch of others as you walk past them. You''re well aware you''re acting like a slut but that is expected of you and the clients seem to enjoy it...'
+												
+												'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day3/d3bevent4.mp4"></video></center>'
+												'You continue dancing seductivly without realizing that your own excitement is on the rise again.'
+												
+												act 'Keep dancing':
+													*clr & cla
+													'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day3/d3bevent5.mp4"></video></center>'
+													'The heat of the room and your own excitement is unbareable and causes you to undress and show off your body to everyone present. As client touches your crotch through your silver panties you realize that you need a rock hard cock inside you. You begin fantasizing about how someone is roughly fucking your soaked pussy.'
+													
+													'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day3/d3bevent6.jpg"></center><br>'
+													'On your own initiative, you grab hold of the first client that''s sitting on the couch, removing his pants, grabbing his cock and leading it inside you.'
+													
+													act 'Fuck him!':
+														*clr & cla
+														'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day3/d3bevent7.jpg"></center><br>'
+														'You start out in a tremendous pace, jumping on the client''s cock, feeling how it stretches your pussy. As you look around you realize that you are the only one in the VIP lounge that is being fucked right now. The rest of the room are watching your performance without blinking.' 
+														'<<$OpenNPC1Voice>>"Now that''s a whore!"<<$CloseNPCVoice>> you hear a girl comment to a client, <<$OpenNPC2Voice>>"What a whore! Look at her go, she will break the poor man''s cock."<<$CloseNPCVoice>> you overhear an other girl say, <<$OpenNPC1Voice>>"Do you reconize her? I think her name is <<$pcs_firstname>>, she''s Russian."<<$CloseNPCVoice>> two girls are whispering to each other, <<$OpenNPC2Voice>>"I expected nothing less, these east european whores are really easy."<<$CloseNPCVoice>> they mockingly comment.'
+														
+														'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day3/d3bevent8.jpg"></center><br>'
+														'Shortly afterwards another customer joins as he lies down on the couch and begins to fuck your pussy sideways, he picks up the pace and begins pounding you harder, lifting one of your legs so he can easily access your slit. You''re enjoying the pounding a lot and as soon the client is done, you realize that there are several queuing waiting to fuck you.'
+														
+														act 'The next!':
+															*clr & cla
+!orgasm
+															'The next client doesn''t ease up the pace. He''s powerfully thrusting into your vagina as you reach another orgasm that partially satisfies your inflamed vulva.'
+															'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day3/d3bevent9.jpg"></center><br>'
+															'The next client commands you to drop down on your knees and begins relentlessly pounding your pussy.'
+															'<<$OpenInnerThought>> «I can feel how his tip is pushing the others clients sperm deeper inside me!»<<$CloseInnerThought>>'
+															
+															'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day3/d3bevent10.jpg"></center><br>'
+															'The next client lifts your leg and pounds you so hard that the other clients sperm begins to trickle down his cock. Your pussy walls are shaking by the pounding, stimulating the clients cock even more, pleasuring the both of you.' 
+															'<<$OpenInnerThought>> «Fuck, my dirty pussy is milking his cock! I want his hot cum in my pussy! I need his cum!»<<$CloseInnerThought>>'
+															
+															act 'Following!':
+																*clr & cla
+																'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day3/cream10.mp4"></video></center>'
+																
+	  !orgasm
+																'After a few minutes you feel his cock twitching as he cums inside you. The sperm is getting mixed with the other clients in the depths of your fertile belly.' 
+																'<<$OpenInnerThought>> «Oh my God! This will end in they knocking me up!»<<$CloseInnerThought>> you think to yourself as you reach another climax.'
+																
+																'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day3/d3bevent11.mp4"></video></center>'
+																'One after another the clients continue to use you as they empty their nutsacks. As of now you''re full and your vagina is a sperm bucket. The clients are treating you like an inflatable doll whose only objective is to satisfy the sexual instincts of the clients. You are the center of the attention. The rest of the Purple Girls are obeserving you and are staying away as far as possible. Finally you reach your limit and desperately scream if anyone can help you out.'
+																
+																act 'I can´t alone!':
+																	*clr & cla
+!Add max decrease energy (exhausted)
+!Add massive vaginal creampie.
+																	'Your screams for help are heard and another girls quickly joins.'
+																	
+																	'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day3/d3bevent13.mp4"></video></center>'
+																	'She''s the only that responds to your desperate calls as the two of you are forced to serve all the remaining VIP clients...'
+																	
+																	'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day3/d3bevent14.mp4"></video></center>'
+																	'As it all settles down you feel your pussy completely overflowing with sperm...'
+																	
+!if on birth control
+																	'<<$OpenInnerThought>> «I don''t know if my birth control pills will be able to stop so much semen... I''m on the pills, right?»<<$CloseInnerThought>> you hesitate, <<$OpenInnerThought>> «I can''t really worry about that now, I should head back to my cabin and rest.»<<$CloseInnerThought>>'
+																	
+																	act 'Go to the cabin':
+																		*clr & cla
+																		'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/cabin.jpg"></center><br>'
+																		
+!Here must be a bedroom and bathroom (dynamics complete- shoes and dresses available, bed and shower) 
+																		'As you head into your cabin, you''re feeling fatigued and are only thinking about sleep. Hopefully you''ll be able to recover for the next working day.' 
+!if entering the bathroom
+																		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day3/overflowing3.mp4"></video></center>'
+																		'You go to the bathroom to relieve yourself before heading to bed. While you''re pissing some sperm splatter falls from your bulging pussy on the toilet.'
+																		'<<$OpenInnerThought>> «Fuck! Those bastards have completely filled me up!»<<$CloseInnerThought>> you think to yourself, <<$OpenInnerThought>> «I can''t deal with this anymore, I must sleep...»<<$CloseInnerThought>>'
+!The next sequences are a dream of the player. These must be treated like a dream of the player (bed2 )
+																		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day3/dsleep7.mp4"></video></center>'
+																		'You are awoken by a thud, someone has entered your cabin. Your sense a sweet and masculine perfume that envelops the environment. That someone separates your legs but you''re too exhausted that you can''t even fight back...'
+																		
+																		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day3/dsleep3.mp4"></video></center>'
+																		'You feel his cock penetrating you, thrusting deep inside of you. Even being fucked can''t keep you awake as you fall asleep while being abused by the intruder...'
+																		
+																		act 'Morning': gt 'IbizaDay4','day four'
+																	end
+																end
+															end
+														end
+													end
+												end
+											end
+										end
+									end
+								end
+							end
+						end
+					end
+				end
+			end
+		end
+	end
+end
+
+--- mod_IbizaDay3 ---------------------------------

+ 226 - 0
locations/mod_IbizaDay4.qsrc

@@ -0,0 +1,226 @@
+# mod_IbizaDay4
+
+if $ARGS[0] = 'day four':
+	'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/cabin.jpg"></center><br>'
+
+	'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day4/dripping06.jpg"></center><br>'
+	'You wake up feeling a bit rested, but you can''t shake off the feeling if the visitor was only a dream or not. As you move around in the bed you notice a suspicious and sticky fluid on the sheets. You examine it by smelling it and giving it a little taste.' 
+	'<<$OpenInnerThought>> «That''s definitely sperm...! Well, I did serve a lot of clients yesterday, so it''s no surprise that there''s still sperm leaking out... But why do my sheets smell of men perfume? I better go and take a shower and put on make-up me before I head out.»<<$CloseInnerThought>>'
+
+	!Here must be a bedroom and bathroom (dynamics complete- shoes and dresses available, bed and shower). When the player has showered it will appear the following act. 
+	act 'Open the door':
+		*clr & cla
+		'Someone is knocking on the door. You cover yourself with a towel before opening the door.'
+!There is a new sound file for when they knock on the door, right? Could it be included?
+		'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/christian1.jpg"></center><br>'
+		'<<$OpenMaleVoice>>"Good morning <<$pcs_firstname>>, you had a busy day yesterday, didn''t you?"<<$CloseMaleVoice>>' 
+		'<<$OpenPCVoice>>"Good morning Christian... What can I help you with today? Another client I need to visit so they can fuck me however they want?"<<$ClosePCVoice>> you ask teasingly.' 
+		'<<$OpenMaleVoice>>"Nothing for the moment... It''s quite quiet today."<<$CloseMaleVoice>> Christian responds.' 
+		'<<$OpenPCVoice>>"Well, don''t stand outside, people will start talking, come on in. I just got out of the shower."<<$ClosePCVoice>>' 
+		'<<$OpenMaleVoice>>"I won''t be long, I just wanted to drop off the gift I promised you yesterday."<<$CloseMaleVoice>>' 
+		'<<$OpenPCVoice>>"What a surprise, I thought you were kidding..."<<$ClosePCVoice>> you try your best to sound sincere.' 
+		'<<$OpenMaleVoice>>"Well here it is..."<<$CloseMaleVoice>> Christian throws a dildo on the bed and tells you, <<$OpenMaleVoice>>""Enjoy the gift, now you don''t need to prowl for a cock... for relief."<<$CloseMaleVoice>>'
+		*nl
+		'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day4/inner thoughtsdildo.jpg"></center><br>'
+		'You look at his grin with disgust, <<$OpenPCVoice>>"I know I''m just a whore but that doesn''t give you the right to humiliate me."<<$ClosePCVoice>> you tell him off.' 
+		'As you say that you notice that Christian''s mood changes, <<$OpenMaleVoice>>""Alright slut! Here I was trying to be friendly but you want to be rude instead. Well then, remove the towel, turn around and get down on all fours so I can insert the yellow pills."<<$CloseMaleVoice>>'
+		'<<$OpenPCVoice>>"Please, I beg you! It wasn''t my intention to be rude. Please don''t give me more of those! I don''t know how I survived yesterday, my pussy was pulsating the whole day. You can''t do this to me today too! At least let me take them orally, there''s no need inserting them into my vagina!"<<$ClosePCVoice>>' 
+		'<<$OpenMaleVoice>>"I don''t have time to discuss this every time <<pcs_firstname>>. Remove the towel and turn around, hurry up!"<<$CloseMaleVoice>>' 
+		'Dejected you comply and remove the towel showing off your naked body for Christian.'
+
+		act 'Turn around':
+			*clr & cla
+!Add max level to arouse.
+			'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/3pills.jpg"></center><br>'
+			'As you turn around you notice Christian taking out three pills, <<$OpenPCVoice>>"Three pills? Please Christian I won''t be able to handle it..."<<$ClosePCVoice>> you try to reason with him.'  
+			'Shut up whore, this is what you get for being rude. Now spread yourself open. Today we''re going to experiment a bit, I''ll put two pills in your pussy and the last one... in your ass."<<$CloseMaleVoice>>'
+			*nl 
+			'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day4/pussyasspills.mp4"></video></center><br>'
+			'No daring to make him even madder you quietly grab your cheeks and spread as wide as possible, noticing traces of cum on your slit, Christian begins mocking you, "What is this? Didn''t you say you just showered. How can there still be traces of cum inside you..."<<$CloseMaleVoice>>'
+			'You only manage to nod, saying sorry and that you''ll pay more attention to it next time. Christian shrugs his shoulders and slowly enters your holes as he inserts the pills deep inside you.' 
+			'As his fingers go deeper you let out a small wimp at the sensation.'
+			'As soon as he pulls out Christian tells you, <<$OpenMaleVoice>>"I want you to take a shower again and pay special attention to your holes. The only fluid that should be noticed is your own and not someones spunk. Do you understand?"<<$CloseMaleVoice>>' 
+			'<<$OpenPCVoice>>"Y-Yes, I understand. I''ll do it right away."<<$ClosePCVoice>> as you quickly walk over to the bathroom.'
+
+			act 'Use the shower again':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/cabin.jpg"></center><br>'
+!Here must be a bedroom and bathroom (dynamics complete- shoes and dresses available, bed and shower) When the player has showered it will appear the following act. 
+
+				act 'I already took a shower Christian':
+					*clr & cla
+					'As you walk out of the bathroom you''re taken surprised seeing Christian still inside your cabin, <<$OpenMaleVoice>>"I hope you''ve cleaned yourself really well this time. I don''t want to hear any complaints from the clients, understood?"<<$CloseMaleVoice>>' 
+					'You nod, replying, <<$OpenPCVoice>>"I took extra care of my crotch area."<<$ClosePCVoice>>' 
+					'<<$OpenMaleVoice>>"Let me examine you to make sure..."<<$CloseMaleVoice>>'
+					*nl 
+					'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day4/dripping07.mp4"></video></center><br>'
+					'You stand infront of him, naked as he begins the examination, <<$OpenMaleVoice>>"I really like your dripping wet pussy... The clients must really enjoy you. Mr. Santorini will be pleased to hear about the effects when applied directly on a vagina."<<$CloseMaleVoice>>' 
+					'<<$OpenMaleVoice>>"So tell me <<$pcs_firstname>>, how do you feel right now?"<<$CloseMaleVoice>> Christian asks.' 
+					'<<$OpenPCVoice>>"I think I can control it this time..."<<$ClosePCVoice>> you reply.' 
+					'Christian not believing you, calls you out, <<$OpenMaleVoice>>"Nice try, I know you''re horny as hell. I can see it on your face so tell me the truth this time, how do you feel right now?"<<$CloseMaleVoice>>' 
+					'Not being able to hold back, you blurt out, <<$OpenPCVoice>>"I need a cock in me! Okay? That''s how I feel right now..."<<$ClosePCVoice>>'
+					'<<$OpenMaleVoice>>"Wonderful."<<$CloseMaleVoice>> Christian calmly responds, <<$OpenMaleVoice>>"Let me help you out then, before you head out and earn more money for Mr. Santorini."<<$CloseMaleVoice>>'
+					*nl
+					'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day4/dripping07.jpg"></center><br>'
+					'You''re expecting him to pull out his penis but instead Christian speaks up, <<$OpenMaleVoice>>"How about you try out the gift I brought you?"<<$CloseMaleVoice>>' 
+					'You let out a sigh of relief, <<$OpenPCVoice>>"S-Sure, I would love to..."<<$ClosePCVoice>>'
+					'Christian is very pleased with your answer, <<$OpenMaleVoice>>"Your wish will be fulfilled but first I want to hear you beg..."<<$CloseMaleVoice>>'
+
+					act 'Please! I beg you test your gift!':
+						*clr & cla
+!!Add decrease arouse --
+						'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day4/testingdildo.mp4"></video></center><br>'
+						'You beg him for a few minutes and Christian finally takes pity on you as he thrusts the dildo inside you, "Does it feel good? Do you like how I drill your pussy with my toy?"<<$CloseMaleVoice>>' 
+						'You try to reply between your moans, <<$OpenPCVoice>>"Y-Yes, it feels great!"<<$ClosePCVoice>> It doesn''t take long before you reach an orgasm, your inner walls take a stiff hold on the toys latex surface as you try to make it cum, just like a real cock.' 
+						'As you finish Christian packs up and leaves your cabin while you''re lying down on the bed recovering from the intense experience. After a while you leave your bed and get ready for your shift...'
+
+						act 'Dress you up and fix your look':
+							*clr & cla
+							'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/cabin.jpg"></center><br>'
+
+!Here must be a bedroom and bathroom (dynamics complete- shoes and dresses available, bed and shower) When the player has dressed and arranged it will appear the following act. 
+
+							act 'Go to work':
+								*clr & cla
+								'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/dancestart.mp4"></video></center><br>'
+!Here must be put the follows options available for the player: (DYNAMIC EVENTS)
+
+!Act GO TO A SECURITY GUARD
+!Act GO TO THE BUFFET-BAR
+!Act GO TO THE TOILET
+!Act DANCE!
+!music/dis4.mp3 (RANDOM 1 to 7) finished a song starts other!
+
+								act 'Go to security guard': gs 'IbizaGuard','start'
+								act 'Go to the toilet': gs 'IbizaToilet','start'
+								act 'Go to the buffet bar': gs 'IbizaBar','start'
+								act 'Dance!': gs 'IbizaDance','start'
+
+!6 complete rounds of dance during which the player can also go to the bar, the security guard or the toilet. If the player interrupts by going to other available scenarios he must continue where he left off.
+!Examples phases: 	1,1,1,2,2,2,3,3,4
+!				1,1,2,3,3,3,4,4,4
+!				1,1,1,1,2,2,3,4,4
+!				1,1,2,2,3,3,4,4,4
+!				1,2,2,3,3,4,4,4,4
+!				1,2,3,3,4,4,4,4,4
+!It is assumed that for each round the player is more excited and willing to surrender to customers.
+!After the five complete rounds the day follows the following linear event:
+
+								act 'Christian approaches you':
+									*clr & cla
+!!music/dis5.mp3 (RANDOM 1 to 7) finished a song starts other! The music no stop!
+									'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/christian7.jpg"></center><br>'
+									'Christian approaches you. He''s been looking for you, <<$OpenMaleVoice>>"I see that you''ve been doing great with the clients."<<$CloseMaleVoice>> he says smiling, <<$OpenMaleVoice>>"Good, good..."<<$CloseMaleVoice>> he mumbles to himself. <<$OpenMaleVoice>>"We need you in the VIP lounge right now!"<<$CloseMaleVoice>>'
+
+									act 'Go to the VIP lounge':
+										*clr & cla
+										'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day4/d4aevent1.mp4"></video></center><br>'
+										'As you arrive to the VIP lounge one of your colleagues approaches you and tells you that today''s a special lingerie party. You''re quickly rushed into the employee bathroom so you could change to approriate clothing.'
+										'You pick out a pink lingerie set adding black silk stockings to the outfit. It looks great on you and you ask a girl with a camera to take a picture of you as a memory. You are having a good time as the mood is quiet relaxed among the girls.'
+										'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day4/lingerieparty.mp4"></video></center><br>'
+										'As everyone gets done, all the girls collectivly walk out onto the dance floor...' 
+
+										act 'More…':
+											*clr & cla
+											'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day4/d4aevent2.mp4"></video></center><br>'
+											'You dance with each other having a great time, the clients try to break up the dancing as they weren''t only expecting to see some girls dancing in silk lingerie. Many of the girls have been sniffing cocaine in the bathroom and their actions reflect that as they ignore the clients approaches.' 
+											'One of the girls convinces you to do the snake. You nod and lie down on your back, laughing as you''re joking around...'
+											*nl
+											'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day4/d4aevent3.mp4"></video></center><br>'
+											'One of the clients approaches you, telling you that you''re wearing more than necessary and takes off your bra so everyone can see your bare breasts.' 
+											'Not caring, you continue to dance topless as he once again approaches you, grabs you by the shoulders and pushes you down on your knees, bringing your face next to his crotch. It''s clear that he wants you to suck his cock and without any hesitation you take his cock out and begin sucking him off.'
+
+											act 'Keep sucking…':
+												*clr & cla
+												'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day4/d4aevent4.mp4"></video></center><br>'
+												'With your lips wrapped around his cock, you give him one of your best blowjobs by now. You even bring out the special move, you swallow the cock deeply and start making circles with your tongue stimulating his head.' 
+												'You feel the arousal rise again, despite being used as a fuck doll today... Your pussy is getting extremly wet as the client takes of his clothes and tells you to remove your panties. While you keep sucking his cock, you feel the clients naked foot stimulates your dripping wet pussy.' 
+												'It doesn''t take long before you feel his big toe inside you, stimulating you to the extreme. You''re surprised by the unexpected sensation, you look around noticing...'
+												'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day4/d4aevent5.mp4"></video></center><br>'
+
+												act 'Look around...' :
+													*clr & cla
+													'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day4/d4aevent6.mp4"></video></center><br>'
+													'That you''re the only one getting fucked in the lounge. The rest of the girls are still fully dressed while you''re sucking a clients cock while he''s toe fucking you.' 
+													'The large crowd that''s gathered around the two of you, laugh and comment about you being the biggest whore on the cruise. At that moment, you couldn''t care less about their comments. The desire for sex has overtaken you and the yellow pills have made you the perfect cock hungry whore.'
+													*nl
+													'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day4/d4aevent7.mp4"></video></center><br>'
+													'The client leans over you, whispering, <<$OpenMaleVoice>>"I want to fuck you..."<<$CloseMaleVoice>>'  
+													'You nod and head over to a nearby couch and bend over so he can easily enter you. He begins teasing you as he rubs his tip against your clit, making you twitch several times...' 
+													'He penetrates you easily thanks to your natural lube, and he''s slowly slowly pacing wanting to savour every moment as your pussy engulfs his cock.'
+
+													act 'I´m yours!':
+														*clr & cla
+														'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day4/d4aevent8.mp4"></video></center><br>'
+														'<<$OpenPCVoice>>"This feels so good!"<<$ClosePCVoice>> you manage to say between your moans. As he picks up his pace you suddenly feel proud being able to satisfy a man''s need to relieve himself.' 
+														'His pace makes something inside you feel great, a bubbly feeling deep inside your belly, a feeling of fulfillment.'
+														*nl
+														'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day4/d4aevent9.mp4"></video></center><br>'
+														'<<$OpenMaleVoice>>"Turn around! I want to see your boobs bouncing in sync with my thrusts."<<$CloseMaleVoice>> the client tells you.'
+														'You obey and around and rest your back on the couch. He spreads your legs and penetrates you once again. After the small break, you feel the same sensation return.' 
+														'His thrusts intensify as he''s pinching your nipples to increase your pleasure, <<$OpenPCVoice>>"Harder!"<<$ClosePCVoice>> you yell at him.'
+
+														act 'Harder!!':
+															*clr & cla
+															'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day4/d4aevent10.mp4"></video></center><br>'
+															'Encouraged by your yelling, he increases the pace as you get closer to climax with every powerful thrust. You''ve taken him whole and you feel his balls slam against you as he goes deep.' 
+															'<<$OpenPCVoice>>"Fuck my pussy! Yes! Don''t stop!"<<$ClosePCVoice>> you yells as he grabs you by the ankles and accelerates his pace even more while your boobs bounce up and down driven by his manly movements.'
+															'Just as you''re about to orgasm, he stops suddenly saying that he wants to change position, <<$OpenMaleVoice>>"I want you to ride me whore, I want to see you work..."<<$CloseMaleVoice>>'
+															*nl
+															'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day4/d4aevent11.mp4"></video></center><br>'
+															'He position''s himself down on the floor making his cock point at the ceiling. You feel a bit cheated as your orgasm was interrupted just as you were about to reach it... But he''s the client, and you''re there to please him not the other way around.'
+															'It''s your job as a female to satisfy him. You lower yourself slowly until you are impaled by his cock and before you know it the sensation is back...'
+
+															act 'Fuck him!!':
+																*clr & cla
+																'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day4/d4aevent12.mp4"></video></center><br>'
+																'Although he told you that he wants you to do the work, you''re exhausted by all the dancing and fucking earlier today. The client realizes this and begins thrusting instead.'
+																'His stamina is amazing and you start thinking if you should use your vaginal muscles to make him cum fast inside you or just let him continue on?'
+
+!2 act available: Make him cum inside you! And Wait…
+																act 'Make him cum inside you!':
+																	*clr & cla
+																	'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day4/d4aevent13.mp4"></video></center><br>'
+																	'You''re really tired and know it will take some time to build up to an orgasm. Instead, you decide to use your vaginal muscles to milk the client so he cums as soon as possible. As you do that the client cums within seconds and you feel a powerful sperm stream filling your womb.'
+																	'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day4/overflowing.mp4"></video></center><br>'
+																	'<<$OpenInnerThought>> «If this continues on, I''ll leave this ship pregnant...»<<$CloseInnerThought>> you think to yourself. As you walk away you see the other girls encouraged by your professional performance and are dutifully serving the clients...' 
+																	'You walk by Christian as he tells that you can return to your cabin to rest...'
+!!stop music/dis5.mp3
+																	act 'Wait':
+																		*clr & cla
+																		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day4/d4aevent14.mp4"></video></center><br>'
+																		'You decide to wait him out, he''s the client after all. After a few minutes he stops and tells you to lie because he wants to finish on your breasts. You quickly obey and a few jerks later your breasts are covered by the clients cock.'
+!!stop music/dis5.mp3
+
+																		act 'Go to the cabin':
+																			*clr & cla
+!Here must be a bedroom and bathroom (dynamics complete- shoes and dresses available, bed and shower)
+																			'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/cabin.jpg"></center><br>'
+!The next sequences are a dream of the player. These must be treated like a dream of the player (bed2 )
+																			'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day4/dsleep4.mp4"></video></center><br>'
+																			'You are lightly sleeping as you once again hear someone enter your cabin. You sense a sweet and masculine perfume that envelops the environment. They grab hold of your legs and separate them. You want to open your eyes to see who it is but you''re too exhausted to...'
+																			'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day4/dsleep5.mp4"></video></center><br>'
+																			'After a few thrusts you force yourself to open your eyes slightly to see that it''s Christian, who''s thrusting you with all his might. Christian accelerates his pace and causes whole your body to stiffen... Suddenly you hear a loud groan and you feel his cock twitching from the pounding and before you know it, he fills you with his sperm...'
+																			act 'Wake up': gt 'IbizaDay5', 'day five'
+																		end
+																	end
+																end
+															end
+														end
+													end
+												end
+											end
+										end
+									end
+								end
+							end
+						end
+					end
+				end
+			end
+		end
+	end
+end
+
+
+--- mod_IbizaDay4 ---------------------------------

+ 360 - 0
locations/mod_IbizaDay5.qsrc

@@ -0,0 +1,360 @@
+# mod_IbizaDay5
+
+if $ARGS[0] = 'day five':
+	'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/cabin.jpg"></center><br>'
+
+!Add decreased aroused
+!orgasm
+	'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day5/dripping09.mp4"></video></center><br>'
+	'You get up somewhat rested but you have this feeling of emptiness in your womb, that you can''t seem to get rid off. It must be the high dosage of yellow pills that are turning you into a nymphomaniac...You must calm down somehow and the best way is to masturbate. You push a finger into your vagina trying your best to stimulate yourself... Your pussy oozes juice as you keep fingering yourself.As you speed up, you feel your exictment rise and it doesn''t take long before orgasm... You manage to calm down for a while but it doesn''t take long before you start thinking about getting fucked again. Laying in bed won''t help you, it''s probably for the best to get ready...'
+
+!Here must be a bedroom and bathroom (dynamics complete- shoes and dresses available, bed and shower) When the player has showered it will appear the following act. 
+
+	act 'Go out of the cabin':
+		*clr & cla
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day5/hall1.mp4"></video></center><br>'
+!increase arousal to max
+		'You leave your cabin and walk around the halls. You hear some music in the distance, the party never stops... Feeling too aroused you carefully look around trying to see if anyone can see you.' 
+		'Seeing no one you slowly reveal your tits out of the dress as you continue walking in the halls. Walking around naked makes you wet in no time.'
+		*nl
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day5/hall2.mp4"></video></center><br>'
+!orgasm
+		'The excitment is too much and you feel your pussy juices flowing down your thighs.'
+		'<<$OpenInnerThought>> «I can''t take it anymore. I must relieve myself!»<<$CloseInnerThought>> You drop down on the floor, spreading your legs and begin to masturbate again until you reach a new orgasm. You do not care if anyone sees you.' 
+
+		act 'Go to work':
+			*clr & cla
+			'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/dancestart.mp4"></video></center><br>'
+!Here must be put the follows options available for the player: (DYNAMIC EVENTS)
+
+!Act GO TO A SECURITY GUARD
+!Act GO TO THE BUFFET-BAR
+!Act GO TO THE TOILET
+!Act DANCE!
+
+!!music/dis4.mp3 (RANDOM 1 to 7) finished a song starts other!
+
+			act 'Go to security guard': gs 'IbizaGuard','start'
+			act 'Go to the toilet': gs 'IbizaToilet','start'
+			act 'Go to the buffet bar': gs 'IbizaBar','start'
+			act 'Dance!': gs 'IbizaDance','start'
+!3 complete rounds of dance during which the player can also go to the bar, the 
+!security guard or the toilet. If the player interrupts by going to other available scenarios he must continue where he left off.
+!Examples phases: 	1,1,1,2,2,2,3,3,4
+!				1,1,2,3,3,3,4,4,4
+!				1,1,1,1,2,2,3,4,4
+
+!After the three complete rounds the day follows the following linear event:
+			act 'Christian approaches you.':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/christian1.jpg"></center><br>'
+				'Christian takes you to the side, <<$OpenMaleVoice>>"Damn <<$pcs_firstname>>, you''re really getting into it..."<<$CloseMaleVoice>>'
+				'<<$OpenPCVoice>>"What can I say, I want to make Mr. Santorini proud of me. He wanted a fuck doll so I''m just playing my part..."<<$ClosePCVoice>> you reply, <<$OpenPCVoice>>"Did you need something with me or can I go back?"<<$ClosePCVoice>> you ask.'
+				'<<$OpenMaleVoice>>"Speaking of Mr. Santorini, he called me not so long ago. He wants you to visit him at his mansion, so head over to your cabin, take a shower and get nicely dressed. I''ll wait for you at the docks."<<$CloseMaleVoice>> Christian tells you.'
+				'<<$OpenPCVoice>>"Isn''t Marco taking me there today?"<<$ClosePCVoice>> you ask.'
+				'<<$OpenMaleVoice>>"No, I''ll be taking you there today. Marco is busy today, he had to take a trip with the boss."<<$CloseMaleVoice>>'
+				'You nonchalantly shrug your shoulders even though you really wanted to get some private time with Marco...'
+				*nl
+				'<<$OpenMaleVoice>>"By the way <<$pcs_firstname>>. I just remembered a thing."<<$CloseMaleVoice>>'
+				'You look at him questioningly.'
+				'<<$OpenMaleVoice>>"Bring the gift that I gave you with you. You''ll going to use it later on."<<$CloseMaleVoice>>'
+
+!Here must be a bedroom and bathroom (dynamics complete- shoes and dresses available, bed and shower) When the player has showered it will appear the following act. 
+				act 'Go to the cabin':
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/cabin.jpg"></center><br>'
+					'You hurry over to your cabin and you make sure to scrub yourself clean and presentable as you need to impress on Mr. Santorini. As you step out of the shower you notice the dildo Christian gave you on the bed. You grin as you think about letting Christian wait while you use the dildo to please yourself.' 
+					
+					act 'Take the dildo':
+						*clr & cla
+						'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day5/dildofuck.mp4"></video></center><br>'
+						!orgasm
+						'You grab hold of the dildo and inspect it for a while...'
+						'<<$OpenInnerThought>> «I am feeling very horny right now. But how many times have I been fucked today? It must''ve been at least four, five times, maybe six? Add the two times I''ve masturbated before work... and I''m still not satisfied! They''ve really broken me in with those pills...»<<$CloseInnerThought>> as you unconsciously begin touching your hard nipples.'
+						'Not hesitating you lead the dildo towards your clit, playing with it for a while and then insert it inside you as you let out a little gasp as your pussy walls engulf it. It doesn''t take long before you''re build up the speed and you shout as you orgasm... You clean quickly clean yourself up and head over to the car where Christian is waiting.'
+						
+						act 'Go to speedboat':
+							*clr & cla
+							'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day5/driver7.jpg"></center><br>'
+							'As you step out of the boat you see Christian in the distance, standing infront of a black car waiting for you.' 
+							'<<$OpenMaleVoice>>"Didn''t I tell you to hurry up?"<<$CloseMaleVoice>> he''s clearly annoyed.' 
+							'<<$OpenPCVoice>>"Some things are worth waiting for..."<<$ClosePCVoice>> you reply.' 
+							'<<$OpenMaleVoice>>"Better keep that pretty mouth shut or you might get smacked."<<$CloseMaleVoice>> Christian threatens you.' 
+							'<<$OpenPCVoice>>"That would be a pity... I wouldn''t be able to use my mouth, and I don''t know how the bosses would feel about it."<<$ClosePCVoice>>'
+							'Christian looks at you smiling slightly, <<$OpenMaleVoice>>"I''ve got to hand it to you, you''re brave <<$pcs_firstname>>. Now, get in! I don''t have time to argue with you..."<<$CloseMaleVoice>>'
+							
+							act 'Get into the car':
+								*clr & cla
+								'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/2pills.jpg"></center><br>'
+								'<<$OpenMaleVoice>>"Here put these inside your pussy."<<$CloseMaleVoice>> he tells you handing over two pills.' 
+								'<<$OpenPCVoice>>"Christian... please ... I don''t need to use more pills... I''m already at my limits and if I continue taking too many I''ll..."<<$ClosePCVoice>>'
+								'Before you continue, Christian interrupts you, <<$OpenMaleVoice>>"I don''t care, pills inside pussy NOW!"<<$CloseMaleVoice>>'
+								*nl
+								'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day5/pussypills2.jpg"></center><br>'
+								'You spread your legs and insert two pills, pushing them deep inside you, <<$OpenPCVoice>>"Happy?"<<$ClosePCVoice>> you tell him.'
+								'<<$OpenMaleVoice>>"How long before you notice the effects?"<<$CloseMaleVoice>> Christian asks.'
+								'<<$OpenPCVoice>>"It depends... sometimes quickly... other times it''s taken some time. I can''t really tell as of lately I''m horny all the time."<<$ClosePCVoice>>'
+								'Christian grins and asks you if you brought the gift?'
+								'You nod, <<$OpenPCVoice>>"Yes, I have it in my bag."<<$ClosePCVoice>>' 
+								'<<$OpenMaleVoice>>"Good, at least you''re good for something whore. Now use it to warm up until we arrive."<<$CloseMaleVoice>>'
+								
+								act 'Use the dildo':
+									*clr & cla
+									'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day5/d5bevent1.mp4"></video></center><br>'
+									'You take the dildo out of your purse and start playing with it by putting it in your mouth. Not before long, the dildo is proding deep inside you. <<$OpenMaleVoice>>"Your moans are making me real horny."<<$CloseMaleVoice>> Christian tells you.' 
+									'<<$OpenPCVoice>>"Why don''t... Ooooh... stop the car..."<<$ClosePCVoice>> you stop to moan, <<$OpenPCVoice>>"And fuck me like you oooooh do every night?"<<$ClosePCVoice>> you tease him.' 
+									'<<$OpenMaleVoice>>"I thought you too drugged out to even realize that someone was fucking you."<<$CloseMaleVoice>>'
+									'You look at him fiercly in the eyes, <<$OpenPCVoice>>"Come on Christian please stop the car and fuck the shit out of me!"<<$ClosePCVoice>>'
+									*nl
+									'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day5/d5bevent2.mp4"></video></center><br>'
+									'<<$OpenMaleVoice>>"Damn, what are those pills doing to you?"<<$CloseMaleVoice>> as he didn''t expect you to react like this. He stops the car by the road,<<$OpenMaleVoice>>"Take off your clothes and get out!"<<$CloseMaleVoice>> he commands you as he''s trying to put on a condom.' 
+									'<<$OpenPCVoice>>"You can fuck me without the condom, I don''t care..."<<$ClosePCVoice>>' 
+									'<<$OpenMaleVoice>>"You''re fucking crazy... I thought the pills took some time to work. Never mind, ride me instead, I want to see your breasts bounce!"<<$CloseMaleVoice>>'
+									
+									*nl
+									'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day5/d5bevent3.mp4"></video></center><br>'
+									!orgasm
+									'It doesn''t take long before you orgasm while Christian''s cock is deep inside you. He pulls out and takes his condom off, stands up and tells you to open your mouth, he jerks for a few seconds and not before long you feel his warm cum all over your face.'
+									'It was just what you needed and for the moment, you feel a little calmer. Both of you get into the car and continue towards the Mr. Santorini''s mansion.'
+									
+									act 'Hi Mr Santorini':
+										*clr & cla
+										'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day5/santorini04.jpg"></center><br>'
+										'<<$OpenNPC1Voice>>"You''re late..."<<$CloseNPCVoice>> Mr. Santorini is seeingly annoyed.'
+										'<<$OpenNPC2Voice>>"Sorry boss, the whore here was servicing a client. We couldn''t get here sooner..."<<$CloseNPCVoice>> Christian replies.'
+										'Mr. Santorini eases up as he hears Christian''s explanation, <<$OpenNPC1Voice>>"All right then, I need to talk to you about a couple of things, Christian."<<$CloseNPCVoice>>'
+										'<<$OpenMaleVoice>>"<<$pcs_firstname>>, head over to the pool area and join the other girls, they''ll provide you with a bikini."<<$CloseMaleVoice>>' 
+										'Mr. Santorini continues, <<$OpenMaleVoice>>"By the way, my partner Mihail Yazev is here and wants to meet you. Tonelli was praising you after your visit and I''ve had Christian compile a report of how you''re doing on the cruise ship, and I got to say I''m very pleased with what I''m hearing. Even though I wasn''t expecting anything less from a slut like yourself."<<$CloseMaleVoice>>' 
+										
+										act 'Go to the pool':
+											*clr & cla
+											'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day5/girlspool.jpg"></center><br>'
+											'You nod and head over to the pool area where the girls give you a bikini. It''s the first time since you''ve been here, except that time you were with Alexandra, that you feel relaxed. The sun warms your skin and you take the opportunity to tan a little.' 
+											'However as you settle down, you feel a warm itch and a feeling of emptiness in your belly that makes you think about having sex again.'
+											'You move uneasily in the hammock and feel that your vagina, calmed for a moment thanks to Christian, is seeking your attention. You decide to take a swim to cool down.'
+											'The cool water has no effect and you decide that the only thing is to go and relieve yourself. You step up to a girl and ask her where the toilet is. She points you in the direction of the toilet, you thank her and head off inside.'
+											
+											act 'Go to the toilet':
+												*clr & cla
+												'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day5/girlsubmit.jpg"></center><br>'
+												'As you enter the toilet and are already fantasizing on how you''ll masturbate, you see a blond girl that''s crying. You carefully approach her and ask if you can help her out.'
+												'The girl raises her head and you immediately reconize her, it''s Alexandra!'
+												*nl
+												'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day5/alexandra7.jpg"></center><br>'
+												'<<$OpenPCVoice>>"Alexandra!"<<$ClosePCVoice>> you scream out, <<$OpenPCVoice>>"What happened to you? You''re all covered in bruises."<<$ClosePCVoice>>'
+												'She looks at you for a moment, first confused and then smiles, $OFV"Hi <<$pcs_firstname>>, I didn''t reconize you at first. What are you doing here? You should be as far away as you can from these people."$CFV'
+												'You look at her with a questioning look.'
+												'$OFV"I''m pregnant... they figured out that it happened before I came here. Now they''re forcing me to return and repay the debt I have. They''ve made me sign a private agreement in which I promised to become a surrogate... But I didn''t know that I was already pregnant, I swear!"$CFV'
+												'<<$OpenPCVoice>>"I... if I can help you out in anyway..."<<$ClosePCVoice>> as you''re about to continue she interrupts you.'
+												'$OFV"<<$pcs_firstname>>! You can''t stay here! And we can''t be seen togheter... You''ll be in danger if they know you''ve seen me."$CFV'
+												
+												act 'Get out fast of there!':
+													*clr & cla
+													'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day5/girlspool2.jpg"></center><br>'
+													'You quickly leave the toilet and head back to the pool. You''re scared as you know that you''re surrounded by very dangerous people. You''re stuck in the wolf''s den and the only thing keeping you safe is that they consider you a cash cow.'
+													'You return to the hammock and lie down with other girls to tan. While you lie there you can''t stop thinking about Alexandra and what''s going to happen to her. After a while there''s a girl that approaches and asks if you''re <<$pcs_firstname>> <<$pcs_lastname>>.'
+													'<<$OpenPCVoice>>"Yes, that''s me."<<$ClosePCVoice>> you reply.'
+													'<<$OpenMaleVoice>>"Follow me, Mr. Yazev wants to see you."<<$CloseMaleVoice>>'
+													
+													act 'Introduce yourself to Mr. Yazev': gt 'IbizaDay5', 'Yazev'
+												end
+											end
+										end
+									end
+								end
+							end
+						end
+					end
+				end
+			end
+		end
+	end
+end
+
+if $ARGS[0] = 'Yazev':
+	'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day5/yazev1.jpg"></center><br>'
+	'<<$OpenMaleVoice>>"Hello! So you''re the famous <<$pcs_firstname>> <<$pcs_lastname>>. You''ve made quite the reputation for yourself."<<$CloseMaleVoice>> says a confidently looking man.'
+	'<<$OpenPCVoice>>"Yes, that''s me. I hope it''s only been positive things."<<$ClosePCVoice>> you reply.'
+	'The man lets out a loud laugh, <<$OpenMaleVoice>>"No one''s been complaining about you to me. I''m Mihail Yazev by the way, you''re Russian too, aren''t you?"<<$CloseMaleVoice>>' 
+	'You nod, <<$OpenPCVoice>>"Yes, I''m from Pavlovsk."<<$ClosePCVoice>>'
+	'<<$OpenMaleVoice>>"Pavlovsk? Wonder if you know of a associate of mine? He''s quite the man, Vadim Bely is his name."<<$CloseMaleVoice>>'
+	'<<$OpenPCVoice>>"I don''t really know..."<<$ClosePCVoice>> you carefully answer.'
+	'He laughs once again, <<$OpenMaleVoice>>"I''m impressed you''ve got two good qualities, you''re a good worker and very discreet! Take a walk with me."<<$CloseMaleVoice>>'
+	
+	act 'Follow him ':
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day5/yazev2.jpg"></center><br>'
+		'You and four other girls follow Yazev to one of the empty mansion rooms. He keeps eyeing you, it''s as if he can read your mind. He takes a seat in an armchair and you''re pretty sure he''s going to order you all to get naked and join in an orgy, but to your surprise...' 
+		'He asks, <<$OpenMaleVoice>>"<<pcs_firstname>>, do you know how to do yoga?"<<$CloseMaleVoice>>' 
+		'<<$OpenPCVoice>>"Yoga?"<<$ClosePCVoice>> you ask confused.'
+		'<<$OpenMaleVoice>>"Yeah, I''m just wondering if you''re flexible..."<<$CloseMaleVoice>>'
+			!if done yoga and dancing skills
+		'<<$OpenPCVoice>>"Yeah, I''ve done some yoga."<<$ClosePCVoice>> you answer, <<$OpenPCVoice>>"I''ve practiced some dancing too so I''m quite flexible."<<$ClosePCVoice>>' 
+		'<<$OpenMaleVoice>>"Now I''m really impressed, a good worker, discreet and flexible... I like you, you''ve got some good qualities. All right! I want to see you all doing yoga! I love seeing women doing yoga."<<$CloseMaleVoice>>' 
+		'<<$OpenMaleVoice>>"You and the other four girls get into different yoga poses. Yazev just sits there... and observes you, not paying attention to anyone else. After a while he tells two of the girls to head back to the pool.'
+		'You have a feeling that he will tell the three of you to undress and have sex, however he asks you another question.'
+		'<<$OpenMaleVoice>>"<<$pcs_firstname>>, do you like animals?"<<$CloseMaleVoice>>'
+		!else
+		'<<$OpenPCVoice>>"No I can''t really say I have..."<<$ClosePCVoice>> you answer.'
+		'<<$OpenMaleVoice>>"That''s too bad. I like watching women that do yoga..."<<$CloseMaleVoice>> he says dissapointed.'
+		'The other girls begin streching but he''s still only watching you, and it doesn''t take long before he tells the two of the girls to head back to the pool.'
+		'They quickly leave the room while he turns to you, <<$OpenMaleVoice>>"<<$pcs_firstname>>, do you like animals?"<<$CloseMaleVoice>>'
+		
+		act 'Pardon?':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day5/yazev3.jpg"></center><br>'
+			'<<$OpenMaleVoice>>"I wonder if you like animals..."<<$CloseMaleVoice>> he asks.'
+			'You shudder and answer... <<$OpenPCVoice>>"I can''t say I dislike them..."<<$ClosePCVoice>>' 
+			'<<$OpenMaleVoice>>"Glad to hear it, a good worker, discreet, flexible and an animal lover."<<$CloseMaleVoice>> You don''t know why but you tremble as utters the words, <<$OpenMaleVoice>>"Come with me, I want to show you one of my pets."<<$CloseMaleVoice>>'
+			'He takes you to one of the furthest room away, as he opens the door you see a buck. You fear the worst as you feel your legs lose strength. As you keep watching the buck, he walks over to one of the girls and whispers something. She quickly turns around and walks away.' 
+			'He looks at the two of you <<$OpenMaleVoice>>"Let''s have some fun."<<$CloseMaleVoice>> As he utters those words, you''re convinced that he''s talking about a threesome...'
+			
+			act 'Follow him':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day5/armory1.jpg"></center><br>'
+				'But once again you''re wrong and you feel a bit embarrassed. He takes you to a secure room and as you step into the room... It''s an armory!'
+				'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day5/armory2.jpg"></center><br>'
+				'On one side of the room you see several gold guns. Yazev picks up one of the guns and leaves the armory. You and the other girl follow after him closely...'
+				
+				act 'Follow him':
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day5/shoot1.jpg"></center><br>'
+					'Yazev takes the both of you to the backside of the mansion. It''s a wide open area, Yazev pulls up the gun and starts firing, laughing non-stop while the both of you falsely laugh at his jokes.'
+					'Suddenly he stops shooting and leaves the gun on a nearby table, <<$OpenMaleVoice>>"Who wants to shoot?"<<$CloseMaleVoice>> he asks.'
+					'Without hesitating the other girl yells out, <<$OpenNPC1Voice>>"I want!"<<$CloseNPCVoice>>'
+					'Yazev ignores her, looking at you he asks again, <<$OpenMaleVoice>>"Who wants to shoot?"<<$CloseMaleVoice>>'
+					'Carefully you answer, <<$OpenPCVoice>>"I-I don''t like weapons Mr. Yazev, but if you want me to do it I''ll try it."<<$ClosePCVoice>>' 
+					'<<$OpenMaleVoice>>"Excellent answer!"<<$CloseMaleVoice>> he grins, <<$OpenMaleVoice>>"Tell me <<pcs_firstname>>, are you submissive?"<<$CloseMaleVoice>>' 
+					'<<$OpenPCVoice>>"I''ll be as submissive as you want me to be."<<$ClosePCVoice>> you cautiously answer.'
+					*nl
+					'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day5/shoot2.jpg"></center><br>'
+					'Meanwhile the other girl starts shooting. Yazev, not hesitating, pulls out a pistol from his pants and...'
+					
+					act 'And…':
+						*clr & cla
+						'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day5/murderer.jpg"></center><br>'
+						'You hear some shots ring out and you see the other girl drop to the ground, <<$OpenPCVoice>>"Oh my God!"<<$ClosePCVoice>> you scream completely terrified.'
+						'<<$OpenPCVoice>>"Oh my God! She''s dead! You killed her!"<<$ClosePCVoice>> you yell out in shock.' 
+						'<<$OpenMaleVoice>>"Yeah that''s right <<$pcs_firstname>> she''s dead."<<$CloseMaleVoice>> Yazev coldly answers, <<$OpenMaleVoice>>"And do you know why she is dead? Because she couldn''t keep her mouth shut..."<<$CloseMaleVoice>>' 
+						'He looks you straight in the eyes, <<$OpenMaleVoice>>"Now tell me... what have you seen?"<<$CloseMaleVoice>>'
+						'<<$OpenPCVoice>>"I haven''t seen anything..."<<$ClosePCVoice>> you''re barely able to answer.' 
+						'All of a sudden he smiles, <<$OpenMaleVoice>>"Another very good quality! Good worker, discreet, flexible, animal lover..."<<$CloseMaleVoice>> he emphasizes animal lover, <<$OpenMaleVoice>>"submissive and... loyal, just the qualities I like the most."<<$CloseMaleVoice>>' 
+						'<<$OpenMaleVoice>>"Now for the last question, there''s one important quality a whore needs to have, so tell me <<$pcs_firstname>> do you have enough stamina when it comes to sex?"<<$CloseMaleVoice>>'
+						
+						act 'I think so…':
+							*clr & cla
+							'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day5/yazev4.jpg"></center><br>'
+							'<<$OpenMaleVoice>>"We shall see..."<<$CloseMaleVoice>> Yazev smirks. He takes out a mobile phone and makes a call, <<$OpenNPC1Voice>>"Yeah, Yuri? Come to the backside and make this Mossad whore''s body dissapear..."<<$CloseNPCVoice>>' 
+							'<<$OpenNPC1Voice>>"Yeah, yeah. Throw the corpse out to sea in a concrete drum, as we always do. And hurry up!"<<$CloseNPCVoice>> as he hangs up he turns to you, <<$OpenPCVoice>>"Well, <<$pcs_firstname>> let''s head back inside. You can wait by the pool while we prepare the last test..."<<$CloseMaleVoice>>'
+							'<<$OpenPCVoice>>"The last test?"<<$ClosePCVoice>> you fearfully ask.' 
+							'<<$OpenMaleVoice>>"Yes, the last test. You''ve passed the others with flying color. No need to worry... I think you will pass this one without any problems. You said you have enough stamina, right?"<<$CloseMaleVoice>>' 
+							
+							act 'Yes, I think so…':
+								*clr & cla
+								'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day5/pool.jpg"></center><br>'
+								'You hang out by the pool for a while. The time is going really slow and all you can think about is how coldly Yazev killed that girl. There''s no time to second guess yourself, whatever they tell you, you must comply.' 
+								'After a while Christian walks over to you and tells you to follow him. Still fearfull, you ask him what''s going to happen to you? <<$OpenMaleVoice>>"Nothing that you won''t be able to overcome <<$pcs_firstname>>."<<$CloseMaleVoice>> he replies. You''ll see, Yazev has some sex machines he wants to try on you. He wants to know how long you can last.' 
+								'<<$OpenPCVoice>>"A fuck machine?"<<$ClosePCVoice>> you ask.'  
+								'<<$OpenMaleVoice>>"Yeah, haven''t you heard about those?"<<$CloseMaleVoice>>'
+								'<<$OpenPCVoice>>"I''ve seen some but I''ve never had the pleasure to try one."<<$ClosePCVoice>>'
+								'<<$OpenMaleVoice>>"Well it''s your lucky day today... Don''t worry I''m going to be with you all the time. They will give me instructions through the intercom."<<$CloseMaleVoice>>'
+								'You head down to the basement and as you step into one of the rooms you notice various machines...'
+								'<<$OpenMaleVoice>>"Ready?"<<$CloseMaleVoice>> he asks you.'
+								
+								act 'Ready…':
+									*clr & cla
+									'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day5/d5aevent1.mp4"></video></center><br>'
+									'You get on all fours in front of the machine while Christian receives Yazev''s first instruction on the intercom. Hearing his voice takes you back to what happened earlier and you feel your arousal go down... You hear that Christian has been given the instructions as he heads toward you.' 
+									'You are convinced that he will turn on one of the machines so you get worked up but Yazev, as always, is full of surprise.'
+									*nl
+									'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day5/d5aevent2.mp4"></video></center><br>'
+									'<<$OpenMaleVoice>>"They instructed me to hook you up. Santorini want see your ass hooked."<<$CloseMaleVoice>>'
+									'<<$OpenPCVoice>>"What do you mean by hooked?"<<$ClosePCVoice>> you terrifiedly ask.' 
+									'Christian picks up a metal hook and shoves it into your ass, making you gasp as it goes deeper, <<$OpenMaleVoice>>"The hook has been inserted without any problems Mr. Santorini."<<$CloseMaleVoice>>'
+									
+									act ' Ooooh …':
+										*clr & cla
+										'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day5/d5aevent3.mp4"></video></center><br>'
+										'You turn around feeling the hook stretch the walls of your anus. The feeling of being at their mercy is making you surprisingly horny.'
+										*nl
+										'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day5/d5aevent4.mp4"></video></center><br>'
+										'Suddenly you feel one of the machines penetrate your pussy and slowly begins to fuck you and gradually increase it''s pace. Your arousal is raising and the pleasure is making you moan more and more loudly.' 
+										'Your hips begin to move in the same pace as the machine as you try to find the right spot. After a while, you hear a buzz on the intercom.' 
+										'As Christian returns he tells you, <<$OpenMaleVoice>>"Open wide, this goes into your mouth."<<$CloseMaleVoice>>'
+										
+										act 'Open your mouth':
+											*clr & cla
+											'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day5/d5aevent5.mp4"></video></center><br>'
+											'You open your mouth as wide as possible as Christian starts the machine and it starts throat-fucking you. The two machines are constantly fucking you as the pace is incrementaly increased. The pleasure is so great that you forget about what happened before.'
+											'Between the moans you hear a new buzz on the intercom, <<$OpenMaleVoice>>"They want you to switch position. Switch to missionary <<$pcs_firstname>>."<<$CloseMaleVoice>> Christian tells you.'
+											
+											act 'Do it':
+												*clr & cla
+												'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day5/d5aevent6.mp4"></video></center><br>'
+												'You comply without any hesitation, you position yourself on your back and spread your legs to ease the penetration. You''re so aroused that you spontaneously touch your pussy lips to get even wetter before the dildo enters you once again.'
+												*nl
+												'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day5/d5aevent7.mp4"></video></center><br>'
+												!orgasm
+												'Santorini and Yazev give a new order, which makes Chistian put two tweezers on your nipples while the machine is fucking you without stopping. You keep your legs spread as you begin to constantly orgasming. You''re well aware that they expect you endure the pace of the machine, but...'
+												
+												act 'Endure the pace!!':
+													*clr & cla
+													'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day5/d5aevent8.mp4"></video></center><br>'
+													!orgasm
+													'The sensations and orgasms are so intense, that you, involuntarily, kick the machine so it stops fucking you.' 
+													'You''re uncontrollably squirting all over the floor. Between the spasms and tremors you feel an intense orgasm that stimulates your G-spot until your arms give away and you drop helplessly on the floor. As you''re recovering you hear Christian say that the bosses aren''t pleased with the results and they want to do it one more time.' 
+													'Christian grabs hold of you and takes you to an other room of the mansion. You see a machine surrounded by four cameras in this room, <<$OpenMaleVoice>>"This way we can monitor you more closely. This time we''re going to do it in a different way..."<<$CloseMaleVoice>> Yazev tells you.' 
+													'He continues, <<$OpenMaleVoice>>"Do you understand! Your pussy hole filled, without any rest. If we''re satisfied you may return to the ship until them you''ll get fucked by the machines."<<$CloseMaleVoice>>'
+													'You nod, understanding that you must exceed your bosses expectations.'
+													
+													act 'Get stuck on the machine':
+														*clr & cla
+														'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day5/d5aevent9.mp4"></video></center><br>'
+														'You get on all fours in the middle of the room as they chain you and hook up the machine to your pussy so you can''t kick it off like last.'
+														'They turn on the machine and you feel the slow penetration...'
+														*nl
+														'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day5/d5aevent10.mp4"></video></center><br>'
+														!orgasm
+														'After a short while you feel the pace increasing. It doesn''t take long before you begin to feel small tremors that signal the arrival of your first orgasm.'
+														
+														act '45 minutes more later…':
+															*clr & cla
+															'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day5/d5aevent11.mp4"></video></center><br>'
+															!orgasm
+															'Forty-five minutes later the machine thrusts are fast as your dripping wet pussy has been through several orgasms. By now you''re fatigued and in a vegetable state, you''re drooling from your mouth as you''ve lost control over the body. The position is cramping your legs and you ask if you can change position.'
+															'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day5/d5aevent12.mp4"></video></center><br>'
+															'They immediately stop the machine and even help you out so you can quickly switch position. You lay on your back as they turn the machine back on.'
+															
+															act 'One hour later…':
+																*clr & cla
+																'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day5/d5aevent13.mp4"></video></center><br>'
+																!orgasm and vaginal pain
+																'An hour later you''re still going strong but you feel your pussy getting very sore and you ask if you may change the hole being used.' 
+																'<<$OpenInnerThought>> «If this keeps up I will die... The machine completely different, it doesn''t get tired for fucking me...»<<$CloseInnerThought>> you think to yourself as you begin to plead, <<$OpenPCVoice>>"Ple-please... My pussy... oooohh... I''m really sore... oooooh... Please... Can we switch the hole?"<<$ClosePCVoice>>'
+																'About twenty seconds later the machine slows down until it completely stops. You turn around and get back on all fours, leading the shaft to your ass instead.'
+																'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day5/d5aevent14.mp4"></video></center><br>'
+																*nl
+																'Even though you switched holes, your pussy still pulsates as it keeps expelling sticky and dense mucus from your cervix and the abundant orgasms you''ve experienced.'
+																'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day5/d5aevent14.mp4"></video></center><br>'
+																'Finally your bosses decide that they''re satisfied just as you''re experiencing a huge orgasm. They stop the machine as you still feel your anus contracting from the pounding, all while your pussy continues to squirt without slowing down.'
+																'Within a second of your release, you immediately pass out of exhaustion...'
+																act 'Wake up later': gt 'IbizaDay6','day six'
+															end
+														end
+													end
+												end
+											end
+										end
+									end
+								end
+							end
+						end
+					end
+				end
+			end
+		end
+	end
+end
+
+
+--- mod_IbizaDay5 ---------------------------------

+ 92 - 0
locations/mod_IbizaDay6.qsrc

@@ -0,0 +1,92 @@
+# mod_IbizaDay6
+
+if $ARGS[0] = 'day six':
+	'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/cabin.jpg"></center><br>'
+
+!Here must be a bedroom and bathroom (dynamics complete- shoes and dresses available, bed and shower) 
+	'You scream as you wake up. You look around in panic not knowing where you are. Not before long you realize that you''re back in the cabin. Yesterday took a real toll on you as you fainted as soon they turned off the machine.'
+	'The odd thing is that you still feel horny. You can''t understand that even after the marathon sex session you still want to have sex. You roll out of bed and...'
+	*nl
+	'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day6/dripping10.mp4"></video></center><br>'
+	'Notice that your pussy is dripping wet, an urge of excitment comes over you. Your clitoris is pulsating and the typical need to have sex is overcoming you...' 
+	'<<$OpenInnerThought>> «I need to take a shower... I need to cool down. How can I still be this horny?»<<$CloseInnerThought>>'
+	!When the player has taken the shower the following text will appear
+	'As you step out of the shower the feeling hasn''t resided and by now you''re getting desperate...'
+	*nl
+	'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day6/fingershower.mp4"></video></center><br>'
+	!orgasm
+	'You begin touching your clit with your finger, teasing your dripping wet pussy. You instinctivly insert a finger inside your pussy, furiously fingering the pussy and before you know it, you have an impressive orgasm.'
+	'<<$OpenMaleVoice>>"I see you''re already at it."<<$CloseMaleVoice>> you hear Christian''s voice from behind as you''re recovering from your orgasm.' 
+	
+	act 'What are you doing here?':
+		*clr & cla
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day6/pulsatingdischarge.mp4"></video></center><br>'
+		'<<$OpenMaleVoice>>"I came to see how you were but as I heard you moaning I couldn''t resist entering without letting you know."<<$CloseMaleVoice>> Christian says teasingly, <<$OpenMaleVoice>>"I see that you''re still in good form."<<$CloseMaleVoice>>' 
+		'<<$OpenPCVoice>>"I can''t understand it... I''m horny all the time. I want to have sex all the time... I can''t understand it."<<$ClosePCVoice>> you reply.'
+		'<<$OpenMaleVoice>>"Show me!"<<$CloseMaleVoice>> he tells you and without any hesitation you show off your wet pussy, <<$OpenMaleVoice>>"Look at that pussy pulsate and all the moisture! Amazing..."<<$CloseMaleVoice>>' 
+		'You look at him desperately, <<$OpenPCVoice>>"Christian, please explain, how can all this be possible?"<<$ClosePCVoice>>' 
+		'<<$OpenMaleVoice>>"Well, when you passed out yesterday. Santorini and Yazev got worried something might have happened to you, realizing after a while that you were only exhausted. So they... well, they..."<<$CloseMaleVoice>>' 
+		'<<$OpenPCVoice>>"Tell me Christian, what did they do?"<<$ClosePCVoice>> you interrupt him as you begin touching your clit once again.' 
+		'He looks sadly at you, <<$OpenMaleVoice>>"Yazev... well, he inserted four yellow pills in your pussy and Mr. Santorini inserted another two in your ass..."<<$CloseMaleVoice>>' 
+		'<<$OpenPCVoice>>"WHAT!"<<$ClosePCVoice>> you yell out, <<$OpenPCVoice>>"They inserted six pills inside me?"<<$ClosePCVoice>>' 
+		'<<$OpenMaleVoice>>"Don''t worry <<$pcs_firstname>>. There are lots of work for you today and we need to have you ready to go. I came by just to tell you to go to the presidental suite. There are three of Mr. Santorini friends that have heard of you... They want to use you at the same time."<<$CloseMaleVoice>>'
+		
+		act 'Serve the clients':
+			*clr & cla
+			'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day6/triplecros.mp4"></video></center><br>'
+			!Add decrease arouse. Add max. clean and make up
+			'You ready up and quickly head over to the suite Christian told you about and as you enter there are three men completely naked. Neither of you waste any time as they''re rock hard and you''re too horny thanks to the pills.'
+			'At first you think that it will be just a regular threesome that you''ve done many times but you''re wrong. Their greedy hands are touching all over your body while you try your best to satisfy all of them. Before you know it two of the men penetrate your pussy at the same time while the third begins fucking you in the ass.'
+			'The satisfing feeling of being completely full is almost making you too excited... The man using your ass pulls out and begins fucking your little mouth. The men take a rest as you lay on the couch as they return they position you so that all the three of can fit their three cocks inside your pussy... After a while they switch to your ass instead. As they''re pounding you away you''re so horny you''re squirting all over the couch.'
+			*nl
+			'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day6/triplecros2.mp4"></video></center><br>'
+			!orgasm
+			'As they keep hammering away you''re orgasming constantly. You''re begining to enjoy what you really are, the perfect whore. There''s drool dripping all from your mouth from all the pleasure.'
+			*nl
+			'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day6/triplecros3.mp4"></video></center><br>'
+			'They go back to filling all your holes and they cum in them one after the other. Finally, you feel satisfied. After serving the clients you take a shower and freshen up as you go back to the dance floor, just like any other day.'
+			
+			act 'Go to work':
+				*clr & cla
+				'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/dancestart.mp4"></video></center><br>'
+				!Here must be put the follows options available for the player: (DYNAMIC EVENTS)
+				!!music/dis6.mp3 (RANDOM 1 to 7) finished a song starts other!
+				act 'Go to security guard': gs 'IbizaGuard','start'
+				act 'Go to the toilet': gs 'IbizaToilet','start'
+				act 'Go to the buffet bar': gs 'IbizaBar','start'
+				act 'Dance!': gs 'IbizaDance','start'
+!6 complete rounds of dance during which the player can also go to the bar, the security guard or the toilet. If the player interrupts by going to other available scenarios he must continue where he left off.
+!Examples phases: 	1,1,1,2,2,2,3,3,4
+!				1,1,2,3,3,3,4,4,4
+!				1,1,1,1,2,2,3,4,4
+!				1,2,2,3,3,4,4,4,4
+!				2,2,3,3,3,4,4,4,4
+!				3,3,3,3,4,4,4,4,4
+!	After the three complete rounds the day follows the following linear event:
+
+				act 'Christian approaches you.':
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/christian1.jpg"></center><br>'
+					'<<$OpenMaleVoice>>"You''re on fire today <<$pcs_firstname>>."<<$CloseMaleVoice>> Christian tells you.'
+					'<<$OpenPCVoice>>"Thank you Christian, but I''m really done for today. I really need to rest."<<$ClosePCVoice>>'
+					'<<$OpenMaleVoice>>"Do you want a pick me up? I can tell one of the guards to go and score some cocaine so you can continue on..."<<$CloseMaleVoice>>' 
+					'You shake your head, <<$OpenPCVoice>>"Thanks for the offer but I really need to rest..."<<$ClosePCVoice>>'
+					'<<$OpenMaleVoice>>"All right... you did good today so you can head back to the cabin. When I finish up here, I''ll come visit you."<<$CloseMaleVoice>>' 
+					'You already know the only reason he wants to visit you is because he likes to fuck you, not being able to do anything about it you just smile and nod approvingly.'
+					
+					act 'Go to the cabin':
+						*clr & cla
+						'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/cabin.jpg"></center><br>'
+						!Here must be a bedroom and bathroom (dynamics complete- shoes and dresses available, bed and shower)
+						!The next sequences are a dream of the player. These must be treated like a dream of the player (bed2 )
+						'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day6/dsleep5.mp4"></video></center><br>'
+						'You lie down on your bed as you await Christian, but before he shows up you''re fast asleep. All of a sudden you''re awoken by these strong and powerful thrusts. You open your eyes and see Christian is fucking you. You smile, closing your eyes and let him continue on...'
+						act 'Sleep': gt 'IbizaDay7','day seven'
+					end
+				end
+			end
+		end
+	end
+end
+
+--- mod_IbizaDay6 ---------------------------------

+ 84 - 0
locations/mod_IbizaDay7.qsrc

@@ -0,0 +1,84 @@
+# mod_IbizaDay7
+
+if $ARGS[0] = 'day seven':
+	'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/cabin.jpg"></center><br>'
+	!Here must be a bedroom and bathroom (dynamics complete- shoes and dresses available, bed and shower)
+	!fully rested and full mood 
+	'You wake up happy and well-rested. You know that your contract ends today and you''ll finally be able to return home. You think about yesterday and ponder how you''ll be able to return to normal after all the stuff that happened.'
+	'<<$OpenInnerThought>> «I can''t believe that I''ve become this simple whore, I could''ve never imagined that I would sink this low. Yes it''s true that I''m getting well compensated but was it really worth putting up with all the depraved stuff...»<<$CloseInnerThought>>'
+	'You step out of the bed and head over to the bathroom to take a shower and prepare for the last day. <<$OpenInnerThought>> «The whole trip has been exhausting and I haven''t even been able to do any turism. Next time... But what if they propose for me to return, would I return?»<<$CloseInnerThought>>'
+	!When the player has taken the shower the following text will appear:
+	'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/christian6.jpg"></center><br>'
+	'<<$OpenMaleVoice>>"Good morning <<$pcs_firstname>>! Did you have a pleasant night?"<<$CloseMaleVoice>> a smirking Christian asks.'
+	'<<$OpenPCVoice>>"Fuck Christian, don''t you even knock? What do you want? Does any of the clients want some service?"<<$ClosePCVoice>> you ask.'
+	'<<$OpenMaleVoice>>"No, it''s a quiet day today. We''re dropping of the clients in the port. So today''s the day you get off right?"<<$CloseMaleVoice>> After a break he adds, <<$OpenMaleVoice>>"Will you come back?"<<$CloseMaleVoice>>'
+	'You nod, <<$OpenPCVoice>>"Yes, today is my last day here. And I don''t really know if I''ll be back, it all depends if I''m pleased with what I see in my bank account. If everything come true it might convince me to come back for another time."<<$ClosePCVoice>> you sincerely answer.'
+	'<<$OpenMaleVoice>>"You do know that I can make you stay... a simple phone call and I can make you stay here as my sex slave."<<$CloseMaleVoice>> Christian is testing you.'
+	'You immediately turn stiff with fear, <<$OpenPCVoice>>"I have a family in Russia, I have all my life there... I have to return home."<<$ClosePCVoice>>'
+	*nl
+	'He pauses, taking a deep breath, <<$OpenMaleVoice>>"I know you will be back. Most whores come back... <<$pcs_firstname>>, today''s dose..."<<$CloseMaleVoice>> he shows you two pills.'
+	'You angerly lay down on the bed, <<$OpenPCVoice>>"It''s impossible to discuss anything with you."<<$ClosePCVoice>> as you spread your legs open, <<$OpenPCVoice>>"Go ahead then, what are you waiting for?"<<$ClosePCVoice>>'
+	'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day7/pillass2.mp4"></video></center><br>'
+	'Christian smiles and inserts the two yellow pills inside your ass pushing them deeply in with his finger, <<$OpenMaleVoice>>"I just love your holes, and I like the way you smell and the way you moan..."<<$CloseMaleVoice>> as he begins fingering your ass.'
+	'You let out a quiet moan, <<$OpenPCVoice>>"Christian... if you keep fingering my ass... Please, you''re getting me horny already..."<<$ClosePCVoice>>'
+	
+	act 'What are you doing?':
+		*clr & cla
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day7/fuckchristian03.mp4"></video></center><br>'
+		!anal pain
+		'All of a sudden Christian pulls a collar with a leash, that he puts around your neck. He tells you to go down on all fours like a good dog... As soon as you''re in position he penetrates your ass and starts pounding it furiously.' 
+		'As he''s punishing your hole you begin to yell, <<$OpenPCVoice>>"Christian please, take it easy. You''re going to wreck my ass."<<$ClosePCVoice>>'
+		'You screaming at him seems only to egg him on as he picks up his pace going even deeper.' 
+		'You start to tear up and your feet keep moving all over the place as you can''t stand to pain you''re feeling.'
+		'<<$OpenMaleVoice>>"If I''ve known your second hole was this good I would''ve used it before."<<$CloseMaleVoice>> as he continues pounding you.'
+		*nl
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day7/fuckchristian02.mp4"></video></center><br>'
+		'Christian still behind you grabs hold of the leash and tells you to move your hips. As you control the pace you find more pleasure and you can finally enjoy yourself.'
+		'It doesn''t take long before Christian is grunting loudly and his cock is twitching. He tells you to stop and quickly pulls out of your ass and shoves himself inside your pussy. A few thrust later you feel his pulsating cock shoot his seed into your womb.' 
+		'The both of you lay on the floor, breathing heavily. Shortly there after Christian speaks up, <<$OpenMaleVoice>>"When the ship docks there will be a car waiting for you to take you to the airport. Understood?"<<$CloseMaleVoice>>' 
+		'You nod as he pulls out of your pussy with his spunk dripping out of you.'
+		'<<$OpenMaleVoice>>"Now get cleaned up and head to work."<<$CloseMaleVoice>> he commands. Before he leaves the cabin he turns around and tells you, <<$OpenMaleVoice>>"Someday you''ll be all mine! No one will be able to stop me, not Santorini, nor Yazev, nor Tonelli or Ivanovich! Never forget that <<$pcs_firstname>>, I''ll be waiting for the right moment."<<$CloseMaleVoice>> He slams the door behind him.'
+		
+		act 'Go to work':
+			*clr & cla
+			'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/dancestart.mp4"></video></center><br>'
+			
+!Here must be put the follows options available for the player: (DYNAMIC EVENTS)
+!Act GO TO A SECURITY GUARD
+!Act GO TO THE BUFFET-BAR
+!Act GO TO THE TOILET
+!Act DANCE!
+
+!!music/dis6.mp3 (RANDOM 1 to 7) finished a song starts other!
+
+			act 'Go to security guard': gs 'IbizaGuard','start'
+			act 'Go to the toilet': gs 'IbizaToilet','start'
+			act 'Go to the buffet bar': gs 'IbizaBar','start'
+			act 'Dance!': gs 'IbizaDance','start'
+!6 complete rounds of dance during which the player can also go to the bar, the security guard or the toilet. If the player interrupts by going to other available scenarios he must continue where he left off.
+!Examples phases: 	1,1,1,2,2,2,3,3,4
+!				1,1,2,3,3,3,4,4,4
+!				1,1,1,1,2,2,3,4,4
+!				1,2,2,3,3,4,4,4,4
+!				2,2,3,3,3,4,4,4,4
+!				3,3,3,3,4,4,4,4,4
+
+      !!stop music/dis6.mp3 (RANDOM 1 to 7)
+	!After the three complete rounds the day follows the following linear event:
+			act ' The boat has docked!!':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day7/driver9.jpg"></center><br>'
+				'The ship docks at the port. You return to your cabin to get your luggage. As you step off the ship there is a car waiting to take you to the airport just as Christian told you.'
+				'<<$OpenMaleVoice>>"Hello, are you <<$pcs_firstname>> <<$pcs_lastname>>?"<<$CloseMaleVoice>> says an man with broad shoulders.'
+				'<<$OpenPCVoice>>"Y-Yes, I am."<<$ClosePCVoice>>' 
+				'<<$OpenMaleVoice>>"I''m Yuri, Mr. Yazev sent me over to take you to the airport and also told me to let you know that someday he will visit you in Pavlovsk."<<$CloseMaleVoice>>'
+				'<<$OpenPCVoice>>"That sounds great!"<<$ClosePCVoice>> you try your best to sound as sincere as possible even though you never want to meet Mihail Yazev ever again.'
+				'The rest of the ride passes by uneventfully as Yuri drives you to the airport and waits by your side until you enter the boarding area...'
+				act 'Return to reality': gt 'down'
+			end
+		end
+	end
+end
+!!END OF EVENT next city center San Petersburgo.
+
+--- mod_IbizaDay7 ---------------------------------

+ 558 - 0
locations/mod_IbizaGuard.qsrc

@@ -0,0 +1,558 @@
+# mod_IbizaGuard
+
+if $ARGS[0] = 'start':
+	gs 'saveposition'
+	gt 'mod_IbizaGuard','guard<<rand(1,5)>>'
+end
+
+
+!SECURITY GUARD DINAMICS EVENTS
+!On any of the days when the player is on the ship, the act GO TO SECURITY GUARD will appear. Here the player can restore his mood and energy level if he is low by buying Cocaine. 
+!There will also be an opportunity for the security guard to supply the player with aphrodisiac pills. This will trigger events with the security guard by drastically increasing the player''s aroused.
+!There are five images of security guards and there must be an opportunity for any of them to appear randomly. The main reason is to give diversity to the player and to feel that there are several. 
+!Each image has its own separate text and trigger to equally give the player the sensation of variety and prevent linearity in the plot. Note that the music you are playing at that time must continue. The player is inside the ship!
+!Below are the different acts (5) for each image with their corresponding texts
+
+!1
+if $ARGS[0]='guard1':
+	*clr & cla
+	'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/guard1.jpg"></center><br>'    & !! RANDOM
+	'You approach the security guard dressed in a black suit and dark sunglasses. You ponder on how they can see anything through them in the dim light of the disco, "Hi, I need some help... you know." you cautiously tell him.'
+	'He checks you out from head to toe, smiles and nods. He grabs hold of a bar code reader, raises your wrist and scans the bracelet and hands you over a small bag with cocain. You quickly grab it and walk away.'
+	gs 'stat'
+
+	act 'Sniff the cocaine and take the pill':
+		*clr & cla
+		!Add bonus positive to mood and energy.
+		!Add bonus to aroused
+		!Need a code for taking pills
+		minut += 20
+		narkcoke += 1
+		pcs_mood += 50
+		pcs_horny += 30
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/cocaine1.mp4"></video></center><br>'
+		'You walk off to a dark corner and quickly sniff the cocaine. You feel your mood and energy get restored and you''re feeling euphoric.'
+		'The security guard approaches you once again, "By the way girl... I was ordered to give you this too, to help you out." he says as you''re handed a yellow pill.'
+		'You take it in front of him, not even knowing what you''ve just swallowed but at an instant you immediately feel your nipples harden under your blouse and how a warm pleasant feeling accumulates in your belly.'
+		gs 'stat'
+
+		act 'Head back to the dance floor': gt 'restoreposition'
+	end
+end
+
+!2
+if $ARGS[0]='guard2':
+	'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/guard2.jpg"></center><br>'    & !! RANDOM
+	'"Hey cutie!" you say to the security guard as he grins. "I think you have something for me." you teasingly say.' 
+	'"I have many things for you little slut." he answers.' 
+	'"Is that so?" you reply, "And what might that be?" you continue on teasing him.'
+	'He smirks and shakes his head, "Show me your wrist so I can scan your bracelet." he says as he hands over a small bag containing cocaine. "Don''t forget these!" as he hands over two yellow pills.'
+	'"Two little pills for me this time? Do you want me to go crazy, cutie?"'
+	minut += 20
+	gs 'stat'
+
+	act 'Sniff the cocaine and take the pills':
+		*clr & cla
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/cocaine2.mp4"></video></center><br>'  
+		'"Feeling better now little fox?" he asks.'
+		'"Much better!" you happily answer him as you feel the cocaine kicking in and the pills making you hornier.'
+		'"Follow me, your dear dealer needs to relieve himself with a good slut." The security guard takes you to a small booth where they usually rest. He quickly close the door behind you as you walk in and tells you to undress, "Make that whore mouth of yours work bitch!"'
+		!Add bonus positive to mood and energy.
+		!Add bonus to aroused
+		!Need a code for taking pills
+		narkcoke += 1
+		pcs_mood += 50
+		pcs_horny += 30
+		gs 'stat'
+		
+		act 'Give him a blowjob':
+			*clr & cla
+			'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/blow.mp4"></video></center><br>'  
+			'You obey and you start desperately to suck his cock while caressing his balls trying to stimulate him more while you feel your nipples stiffen as you''re getting more aroused.'
+			'<<$OpenInnerThought>> I love sucking a good cock! He tastes great! I can''t get enough of it!<<$CloseInnerThought>>'
+			'He pulls your lips away from his cock and orders you to ride him instead.'
+			
+			gs 'arousal', 'bj', 5, 'sub'
+			gs 'stat'
+		
+			!Here the player will have several options converted into act. Each will have a different ending in history giving the feeling of non-repetition. In principle 3 act (branch) of beginning: Ride him!! ; Keep sucking and Ride me to me. I am your mare!
+
+			act 'Suck him off':
+				*clr & cla
+				'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/blow2.mp4"></video></center><br>'  
+				'But you''re not listening to him. You''re enjoying sucking him off that you increase your efforts in the blowjob you''re giving him. It doesn''t take long before you notice how the security guard''s cock begins shaking in a wave of violent spasms as he cums in your mouth!'
+				'<<$OpenInnerThought>>So much cum!<<$CloseInnerThought>> you think to yourself. <<$OpenInnerThought>>Maybe I should let him fill me up the next time...<<$CloseInnerThought>>'
+				'After he''s done you swallow as much as you can and quickly straighten your clothes as you head back to the dance floor.'
+				!Add the code for swallowing cum
+				gs 'arousal', 'bj', 5, 'sub'
+				gs 'cum_call', 'mouth'
+				gs 'arousal', 'end'
+				gs 'stat'
+				
+				act 'Head back to the dance floor': gt 'restoreposition'
+			end
+			
+			act 'Ride him':
+				*clr & cla
+				'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/condomride.mp4"></video></center><br>'  
+				'You wait for him to put on a condom and quickly jump onto him. Your pussy embraces his cock as he thrusts his cock deeper into your pussy. You feel how his hard cock stretches your vaginal walls.'
+				'And with every hard thrust the head of his cock reaches your cervix making you even hornier. "You really know how to ride!" he grunts.' 
+				'"What if I speed it up a little?" you ask between your moans.' 
+				'"Fuck! Yes!" he answers, "Pick up the pace whore!" as he smacks you on the ass.'
+				
+				gs 'arousal', 'vaginal', 5, 'sub'
+				gs 'stat'
+
+				act 'Pick up the pace':
+					*clr & cla
+					'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/condomride2.mp4"></video></center><br>'  
+					'You pick up the pace and begin to move more uncontrollably. You spread your legs more and feel your pussy stretch even more as the your vagina walls wrap his cock like a glove, leaving it totally bright with your vaginal juices that never cease to sprout from the depth of your hungry slit.'
+					'"What a good slut you are! Fuck me I''ve never had a good fuck like this! Keep it up whore!" he grunts.'
+					
+					gs 'arousal', 'vaginal', 5, 'sub'
+					gs 'stat'
+					
+					act 'Turn around':
+						*clr & cla
+						'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/condomride3.mp4"></video></center><br>'  
+						'Needing a break you slow down and instead turn your back to him as he leads his cock back into your pussy. You begin making circles around, teasing his cock, alternating your movements to give as much pleasure as possible.'
+						'You are enjoying yourself as you feel an orgasm creeping in closer and closer as your womb is ready to burst with excitment.'
+						'<<$OpenInnerThought>>Oh my God! I think I''m going to cum soon... Fuck! I can''t fight this feeling!<<$CloseInnerThought>>'
+						'Knowing you''re in control you can make it last a little longer or orgasm quickly just by moving the muscles of your vagina. What should do?'
+						
+						gs 'arousal', 'vaginal', 5, 'sub'
+						gs 'stat'
+
+					!2 acts available: More time and enjoy it and Drain your balls.
+						
+						act 'Take your time':
+							*clr & cla
+							'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/condomride4.mp4"></video></center><br>'  
+							'You want to enjoy yourself a while longer and slow down your movements a little. You continue alternating the circular movements with those of entry and exit.'
+							'You feel small spasms of pleasure around your vulva and how your clit burns with pleasure. You are just about to orgasm...'
+						
+							gs 'arousal', 'vaginal', 10, 'sub'
+							gs 'stat'
+						
+							act 'Orgasm':
+								*clr & cla
+								'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/orgasmride.mp4"></video></center><br>'  
+								'As you orgasm you start to shout loudly. At the same time time you can hear him yell out, "I''m cumming too bitch!" as he grabs you by the hips.'
+								'You feel the spasms of his cock on the walls of your pussy as you finally manage come to your senses and figure out that he is filling whole the condom.'
+								$orgasm_or = 'yes'
+								gs 'cum_call', 'internalcondom', '', 3
+								gs 'stat'
+							
+								act 'Relax':
+									*clr & cla
+									'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/condomfull.mp4"></video></center><br>'  
+									'As he pulls out of you notice how much cum there was, "Wow you really filled the condom!" you say surprised.'
+									'<<$OpenInnerThought>>So much cum!<<$CloseInnerThought>> you think to yourself. <<$OpenInnerThought>>Maybe I should let him fuck me without condom the next time...<<$CloseInnerThought>>'
+									'After he''s done you swallow as much as you can and quickly straighten your clothes as you head back to the dance floor.'
+								
+									gs 'arousal', 'end'
+									gs 'stat'
+									
+									act 'Head back to the dance floor': gt 'restoreposition'
+								end
+							end
+						end
+					
+						act 'Quickly finish':
+							*clr & cla
+							'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/orgasmride.mp4"></video></center><br>'  
+							'You shout loudly as you orgasm as you hear him scream out, "I''m cumming too bitch!" as he grabs you by the hips.'
+							'You feel the spasms of his cock on the walls of your pussy as you finally manage come to your senses and figure out that he is filling whole the condom.'
+							$orgasm_or = 'yes'
+							gs 'cum_call', 'internalcondom', '', 3
+							gs 'stat'
+							
+							act 'Relax':
+								*clr & cla
+								'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/condomfull.mp4"></video></center><br>'  
+								'As he pulls out of you notice how much cum there was, "Wow you really filled the condom!" you say surprised.'
+								'<<$OpenInnerThought>>So much cum!<<$CloseInnerThought>> you think to yourself. <<$OpenInnerThought>>Maybe I should let him fuck me without condom the next time...<<$CloseInnerThought>>'
+								'After he''s done you swallow as much as you can and quickly straighten your clothes as you head back to the dance floor.'
+								
+								gs 'arousal', 'end'
+								gs 'stat'
+								
+								act 'Head back to the dance floor': gt 'restoreposition'
+							end
+						end
+					end
+				end
+			end
+
+			act 'Doggystyle':
+				!Start with condom
+				*clr & cla
+				'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/condomfour.mp4"></video></center><br>'  
+				'You get on all fours and offer your behind to the security guard. He smiles at you and says, "So you want to be fucked like a dog... Exactly like a bitch! Don''t worry my little slutty whore I''m going to fuck you real good."'
+				'"No more talking! I want your cock deep inside me." you order him around. Suddenly you feel a dry onslaught that reaches the depths of your pussy causing you to scream.'
+				'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/condomfour2.mp4"></video></center><br>'  
+				'The guy begins fucking you roughly. Every of his thrusts makes your pussy wetter, leaving your vulva soaked, making the latex condom glide smoothly through your hungry slit, "Harder!" you shout, "Fuck me harder!"'
+				
+				gs 'arousal', 'vaginal', 5, 'sub', 'rough'
+				gs 'stat'
+				
+				act 'Fuck me hard':
+					*clr & cla
+					'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/condomfour3.mp4"></video></center><br>'  
+					'The guy adjusts himself to get a firmer grip and begins fucking you even more roughly, slapping your ass from time to time. You feel that if he continues in this pace you''ll soon reach orgasm as you continue to encourage him to fuck you harder.'
+					'"Harder! Harder! Give your bitch what she deserves! Come on stallion! Knock me up stallion!" you''re not even aware what you''re saying to him but you feel so horny that you scream it over and over again.'
+					'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/condomfour4.mp4"></video></center><br>'  
+					'Suddenly he stops for a moment and slows down his thrusts. You look over his shoulder and say, "Why are you stopping? Keep on going!"'
+					
+					gs 'arousal', 'vaginal', 5, 'sub', 'rough'
+					gs 'stat'
+				
+					act 'Harder':
+						!Remove the condom
+						*clr & cla
+						'"What... What are you doing?" you ask him as he pulls his cock out of your pussy and roughly turns you around on your back so that you''re lying on your back with your legs spread apart. He looks you in the eyes and says, "Take off the condom! I want to fuck you raw!"'
+						'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/hesitate.mp4"></video></center><br>'  
+						'You look at him biting your lower lip and hesitate if you should do it or not. It''s your responsibility if he impregnates you. What are you going to tell your mother if that happens?'
+						'You''ve incited him and now he wants to fuck you raw. Looks like he really wants to impregnate his bitch... It''s gone too far you know you won''t be able to make him re-consider. While still hesitating you place your hand on his cock and remove the condom.'
+						'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/takeoutcondom.jpg"></center><br>'    
+						'You throw the condom on the floor and you see his cock sprung up, harder than before, "Spread your legs bitch!" he orders you.'
+						'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/takeoutcondom2.jpg"></center><br>'    
+						minut += 10
+						gs 'stat'
+						
+						act 'Spread your legs':
+							*clr & cla
+							'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/insert.mp4"></video></center><br>'  
+							'He grabs hold of the cock and approaches your pussy, that''s completely soaked in fluids. Your clitoris is inflamed and exposed because you are hornier than a bitch in heat. You feel his cock penetrating you free from the protective shield of a condom.'
+							'As he penetrates you, you quickly forget the risk of getting pregnant. It doesn''t even matter, all you want is to feel the impeding orgasm, your pussy is begging to be stuffed.'
+							'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/missionary1.mp4"></video></center><br>'  
+							'Suddenly he begins to fuck you at a fast pace and you feel how the tip of his cock hits your cervix. <<$OpenInnerThought>>Oh my God! Oh my Gooood! This guy is going to split me in two! Oh fuck! But he''s fucking me so good! Oh I love it! Yes! I love it!<<$CloseInnerThought>>'
+							'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/missionary2.mp4"></video></center><br>'  
+							'You are so horny that you spread your legs wide open on your own accord. Your soaked vulva wraps his wonderful cock like a glove.'
+							'"I insist that you ride me, bitch. I''ve wanted that from the start, remember? Ride all the milk out of my balls!" he says between the grunts.'
+							
+							gs 'arousal', 'vaginal', 5, 'sub', 'rough'
+							gs 'stat'
+				
+							act 'Ride him!!':
+								*clr & cla
+								'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/ride.mp4"></video></center><br>'  
+								'You quickly obey him as you jump on top of him and stick his cock inside your pussy. You feel how his wonderful hard cock stretches your vaginal walls.'
+								'And that every hard thrust the head of his cock reaches the entrance to your cervix stimulating you making you even hornier while you soak his cock with your wetness.'
+								'"You really know how to ride a cock!" he tells you.'
+								'"Are you enjoying it?" you ask.'
+								'"Fuck yeah!" he replies, "Keep on riding me!"'
+								
+								gs 'arousal', 'vaginal', 5, 'sub'
+								gs 'stat'
+				
+								act 'Pick up the pace':
+									*clr & cla
+									'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/creamride.mp4"></video></center><br>'  
+									'You keep on picking up the pace when suddenly you feel strong pulsations of his cock through your pussy walls and feel a warm liquid fill your pussy.'
+									'He is filling your pussy with his cum. You begin to shout as you''re excitited, "Come on my stallion, fill me up!"'
+									'As everything calms down you fall down onto the bed you''re completely exhausted. He smiles and winks at you. You look at him smiling while you feel how a lot cum trickle down your legs, "Will I see you later my little bitch?" he asks.'
+									'"Maybe..." you answer, "I have to go back to work."' 
+									'"Work, you say? I don''t think you''ve ever stopped working my litte bitch..."'
+									
+									spafinloc = 0
+									gs 'cuminsidereact'
+									gs 'arousal', 'end'
+									gs 'stat'
+									
+									act 'Head back to the dance floor': gt 'restoreposition'
+								end
+							end
+						end
+					end
+				end
+			end
+		end
+	end
+end
+          
+!3 Only trigger if having a low mood or energy
+if $ARGS[0]='guard3':
+	'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/guard3.jpg"></center><br>'    & !! RANDOM
+	'You are feeling low on energy and in a bad mood as you approach the security guard with a companion. "Hey, we need a little pick me up." you tell him.'
+	'"You want some cum with that?" he says laughing non-stop, "Show me your wrists, I need to scan the code. Ok, here..."'
+	'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/cocaine3.mp4"></video></center><br>'    
+	'You and your companion sniff the stuff quickly. A few moments later you feel energetic again and in a better mood. Your companion laughs and gives you a kiss. "Look at those whores!" the security guard scoffs, "Hey! You''re <<$pcs_firstname>>, right? I''ve heard of you. Some of my colleagues say that you are the biggest whore of all the girls that are here?"'
+	'"You must have me confused with someone else..." you reply.'
+	'"We''ll see about that... he says as he pulls out two yellow pills, "Take these pills and we''ll see."'
+	'"Three?" you ask him.'
+	'"What, did you think it was all for you? One for her and two for you, whore." he answers.'
+	'"Why do I need to take two pills?" you protest.'
+	'"Because I said so." is his short answer.'
+	*nl
+	'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/3pills.jpg"></center><br>'    
+	'Not wanting to further upset him you take the two pills and your companion one. Before you swallow them maybe you could sneak one by him and just swallow one instead."'
+	minut += 20
+	narkcoke += 1
+	pcs_mood += 200
+
+	!Here 2 acts svaileble (branchs) Fast sneak!! And Hesitate…
+	act 'Swallow one':
+		*clr & cla
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/wink.mp4"></video></center><br>'    
+		'You swallow one pill and then quickly turn to your companion and grab hold of her, turning away from the security guard and head back to the dance floor.'
+		'As soon he can''t see you, you spit out the second pill on the floor and crush it.'
+		pcs_horny += 50
+		minut += 5
+		gs 'stat'
+		
+		act 'Head back to the dance floor': gt 'restoreposition'
+	end
+
+	act 'Swallow both':
+		*clr & cla
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/finger.mp4"></video></center><br>'    
+		'You hesitate about what to do as he walks up to you and waits until you''ve swallowed both pills. As you finish the security guard grabs hold of you and tell your companion to leave. He takes to you to the guard quarters.'
+		'He tells you to undress completely because you going to relieve him or else he''ll tell on you. As you stand naked in front on him, he begins fingering your pussy. You begin to feel hornier and wet.'
+		'You grab his cock and start jerking him off as you moan with pleasure as he finger bangs you. He doesn''t even need to tell you anything as you by yourself walk over to the couch and spread your legs. You know you''re probably going to regret this but you''re too horny to back out now.'
+		'He supports the head of his cock on your ass, "You want to fuck me in my ass?" you ask him.'
+		'"Yeah! I want to fuck that little hole of yours." he answers.'
+		'"O-Ok but be gentle please..." you plead with him.'
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/analinsert.mp4"></video></center><br>'
+		
+		pcs_horny += 100
+		gs 'arousal', 'vaginal_finger', 10, 'sub'
+		gs 'stat'
+      
+		act 'Penetration':
+			*clr & cla
+			'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/anal1.mp4"></video></center><br>'    
+			'He spreads your legs and keeps them wide by the ankles so he has an easier access as he pushes in. You start bawling through the pain of dry penetration. As he doesn''t want to hear your bawling he takes your panties and stuffs them in your mouth.'
+			'He begins to grunt out of pleasure while you, for the moment, only feel pain. Suddenly he pulls out and moves himself and you...'
+			*nl
+			'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/anal2.mp4"></video></center><br>'  
+			'Face down on the couch and continues on roughly fucking your ass. You scream from the sharp pain and beg him to slow down. Ignoring your pleads he pumps your ass wildly while you keep on begging him to slow down and be more gentle.'
+			gs 'pain', 6, 'asshole', 'tear'
+			
+			gs 'arousal', 'anal', 10, 'sub', 'rough'
+			gs 'stat'
+		
+			act 'Beg him':
+				*clr & cla
+				'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/anal3.mp4"></video></center><br>'  
+				'Feeling generous he slows down a bit and fucks you more gently. You think you can finally enjoy yourself now.'
+				'<<$OpenInnerThought>>Finally! Now I can finally feel more pleasure... Hopefully he can keep going for a little more...<<$CloseInnerThought>> you think to yourself.'
+				'The pain is still sharp but you feel some more pleasure as he sucks and licks your breasts. You try relaxing your ass and can enjoy the fuck.'
+				
+				gs 'arousal', 'anal', 10, 'sub'
+				gs 'stat'
+			
+				act 'Enjoy':
+					*clr & cla
+					'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/analcream.mp4"></video></center><br>'    
+					'Just as you''re getting into it, you feel his cock twitch as he cums inside you. You''re upset over that he came just as you''ve started to enjoy it. You are very horny but totally unsatisfied.'
+					'You decide that it''s probably the best to go back to the dance floor so you can do something crazy or fuck someone else that will satisfy you.'
+					!Here add max bonus Aroused!!!
+					gs 'cum_call', 'anus'
+					minut += 5
+					pcs_horny += 100
+					gs 'arousal', 'end'
+					gs 'stat'
+					
+					act 'Head back to the dance floor': gt 'restoreposition'
+				end
+			end
+		end
+	end
+end
+
+!4
+if $ARGS[0]='guard4':
+	'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/guard4.jpg"></center><br>'    & !! RANDOM
+	'You knock on one of the doors of deck C. You know you''ll find Christopher there. He is one of the security guards who you feel most confidence in and you''re also aware that he likes you very much.'
+	'"Hi Christopher!" you greet him with a smile.'
+	'Hey <<$pcs_nickname>>! How are you doing?" he replies.'
+	'"Just Fine... But Christopher, I need some pick me up..." you ask him.'
+	'"No problem sweetie!" he answers looking around. "Look, now that we''re alone, we have about 15 minutes before anyone notices that you''re gone..."'
+	'He continues, "How about you pleasure me and I''ll give you a few extra doses for free so you don''t have to worry getting charged extra for that, so what do you say?"'
+	minut += 10
+	gs 'stat'
+	
+	act 'Agree':
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/love1.jpg"></center><br>'    
+		'As soon you agree, Christopher takes you to a small room, grabbing you by the waist and whispers, "<<$pcs_nickname>>, I like you a lot, you know that right? Every time you walk by I get turned on..."'
+		'"You''re too good to be on this kind of cruise..." he tells you.' 
+		'"I know but I need the money..." you answer, "And this was the only solution I had..." as you caress the hand that is holding you by the waist.'
+		'He begins kissing your neck making your whole body burn, "We have little time <<$pcs_nickname>> and I want you so bad..."'
+		
+		gs 'arousal', 'foreplay', 5
+		gs 'stat'
+		
+		act 'Go down on him':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/love2.jpg"></center><br>'  
+			'You crouch down and unbutton your pants. His cock springs free from its confinement almost slapping you in the face. You quickly grab his cock and wrap your lips around it.'
+			'<<$OpenInnerThought>>He tastes so good! I love sucking a good cock. Especially these fat ones that fill your whole mouth...<<$CloseInnerThought>>'
+			'You feel a slight itch, a warm feeling from your crotch and you know for sure that your pussy is getting wet. Your nipples have stiffen and you''re excited for what waits next...'
+			'"That''s enough <<$pcs_nickname>>, stop! I want to fuck you!" he tells you.'
+			
+			gs 'arousal', 'bj', 5
+			gs 'stat'
+		
+		!2 act available here: Keep sucking and Let him fuck you.
+			act 'Keep sucking':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/love9.jpg"></center><br>'
+				'You''re too aroused to listen too him and continue sucking his cock. You love to feeling of cock in your mouth and while you''re sucking him off your hand begins to play with your pussy.'
+				'From time to time you take the cock out of your mouth just to observe how wonderfully his rock solid cock is. You lick the tip and continue along the mast until you''re down by his balls.'
+				'You continue licking and sucking on it, all while you keep an eye on his face while you stuff his cock down your mouth. After a few moments you notice that he begins to tremble, you unwrap your lips and direct his tip towards your breasts as he cums all over them.'
+				*nl
+				'As he finishes he looks at you, "It was a good blowjob, but I wanted to fuck you <<$pcs_nickname>>."'
+				'"You said we had little time, right?" you answer him, "Next time I promise."'
+				'"Sure." he nods, "Here take this, you''ve deserved it." as he throws a small bag on the table.'
+				'You quickly sniff it all up and head back to the dance floor.'
+				narkcoke += 1
+				pcs_mood += 200
+				gs 'cum_call', 'breasts'
+				
+				gs 'arousal', 'bj', 5, 'deepthroat'
+				gs 'arousal', 'end'
+				gs 'stat'
+				
+				act 'Head back to the dance floor': gt 'restoreposition'
+			end
+
+			act 'Have sex with him':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/love3.jpg"></center><br>'
+				'You undress completely and raise a leg onto the table offering Christopher your soaked pussy. You grab his tie and seductivly tell him, "I''m all yours... fuck me."'
+				'Immediately he enters you and begins fucking you. The only sounds you can hear between your moans is the sound of him hitting against your ass. All of a sudden he slows down and tells you to turn around and spread your legs.'
+				
+				gs 'arousal', 'vaginal', 5
+				gs 'stat'
+			
+				act 'Comply':
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/love4.jpg"></center><br>'
+					'You spread your legs as wide as you can to ease him in. He grabs hold of one of your shoulders and starts fucking you in a quick pace.' 
+					'You start to feel contractions in your pussy and you begin touching your breast for more pleasure.'
+					'It doesn''t take long before you have an orgasm. You yell out all the sexual frustration that you''ve build up but you still feel like you can go for more...'
+					'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/love5.jpg"></center><br>'
+					
+					$orgasm_or = 'yes'
+					gs 'arousal', 'vaginal', 5
+					gs 'stat'
+			
+					act 'Ride him':
+						*clr & cla
+						'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/love6.jpg"></center><br>'
+						'You push him down and jump onto him as you begin riding him. You feel your vaginal walls stretch out by his big cock. Just two minutes later, you experience a second orgasm but this time you don''t stop but continue on.' 
+						'You can feel his cock twitching inside of you and he''s panting really hard by now. He''s close to ejaculate and just as he''s about to explode he tells you to get on your knees.'
+							
+						$orgasm_or = 'yes'
+						gs 'arousal', 'bj', 5
+						gs 'stat'
+			
+						act 'Do it':	
+							*clr & cla
+							'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/love9.jpg"></center><br>'
+							'You quickly go down on your knees and press your breasts together as he explodes all over them.'
+							'"Why do all the men treat you like a whore when you''re having sex with them?" you ask him.' 
+							'"I don''t know if the other women are treated like that <<$pcs_nickname>>. I just know you''re a whore and should be treated like one. Here take this, you''ve deserved it." as he throws a small bag on the table.'
+							'You quickly sniff it all up and head back to the dance floor.'
+							narkcoke += 1
+							pcs_mood += 200
+							gs 'cum_call', 'breasts'
+								
+							gs 'stat'
+							
+							act 'Head back to the dance floor': gt 'restoreposition'
+						end
+					end
+				end
+			end
+		end
+	end
+end
+
+!5
+if $ARGS[0]='guard5':
+	'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/guard5.jpg"></center><br>'    & !! RANDOM
+	'You and another Purple Girl approach the nearest security guard and request a pick me up so that you can continue to encourage customers.'
+	'"Hi, little whores... You want something I have, right?" he grins. The other girl nods. "Well then, show me yours wrists so I can scan it and then follow after me sluts."'
+	'You and the other girl follow the security guard to a small cabin on the lower floor. He shows you a small bag of cocaine and drops it to the floor. "Before you sniff it all up, take off your clothes. And after you''re done with that you can spread the cocaine all over your naked bodies."'
+	'"I''m so horny from seeing you two whores dancing in the middle of the dance floor." he says, "Oh and by the way, before you begin take this. Two for each." as he hands two yellow pills to each.'
+	minut += 10
+	gs 'stat'
+
+	act 'Take your two yellow pills':
+		*clr & cla
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/t1.mp4"></video></center><br>'
+		'The two of you quickly swallow the pills as he takes off his clothes, "Well, now sluts! Time to fuck!"'
+		'You lie on the couch and your partner climbs on top of you and begins kissing you. Your pussies are next to each other as the security guard begins licking both of yours pussies.'
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/t1b.mp4"></video></center><br>'
+		'After a while, the guy places your companion on the divan while he stands with spread out as he tells you to go behind him and kiss his ass...'
+		'You hesitate as you''re not really into that kind of stuff but the pills are taking effect quickly on your body and you''re not able to resist.'
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/t1c.mp4"></video></center><br>'
+		'Minutes later you change positions and the guy is once again licking your dripping wet pussy.'
+		'You reach your first orgasm as he''s teasing your clit. "Now that''s out of the way I want to fuck that wet pussy of yours!" he tells you.'
+
+		pcs_horny += 100
+		$orgasm_or = 'yes'
+		gs 'arousal', 'cuni', 10, 'group'
+		gs 'arousal', 'give_cuni', 10, 'group'
+		gs 'arousal', 'foreplay', 10, 'lesbian', 'group'
+		minut -= 10
+		gs 'stat'
+		
+		act 'Spread your legs':
+			*clr & cla
+			'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/t2.mp4"></video></center><br>'
+			'You spread your legs and allow the guy to penetrate you. The thrusts are so strong that your breasts bounce freely at every push.'
+			'Despite you already had an orgasm you feel that another is accumulating in the depths of your womb.'
+			'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/t3.mp4"></video></center><br>'
+			'The guy slaps you on one of your tits and commands you to lie on the couch, the other girl offers her little pussy to the guy who starts fucking her while she keenly licks your soaked pussy as you reach your second orgasm.'
+			'You manage to half-recover only to realize that the guy has started to massage the other girl''s anus. She moans full in ecstasy as he pushes his finger in and out of her. As you watch on you''re pretty sure that he''ll fuck her ass in just a matter of seconds.'
+			'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/t4.mp4"></video></center><br>'
+			'And before you know it, he stands up and pushes her buttocks apart exposing her anus as he tells you to lead his cock inside of her. As soon her anus wraps his cock around he begins to pound her almost breaking the poor girl. While he''s doing this he tells you to lick her dry.'
+			'You do your best to do a good job to help out your friend as you can clearly see that she''s in pain.'
+			'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/t5.mp4"></video></center><br>'
+			'Five minutes later of the intense and furious thrusting he fills you friend''s ass full of cum. As everything calms down you fall down on the couch thinking everything is over and that the two of you can get dressed and return to the dance floor.'
+			'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/t6.mp4"></video></center><br>'
+			'Just as you''re about to leave, he looks up to you and asks, "Where do you think you''re going bitch?"' 
+			'"I-I was going back to the dance floor to..."' 
+			'"No, no, no, no!" he interrupts, "I want to fuck your pussy again. It was a while ago I had a pussy this good."'
+			
+			$orgasm_or = 'yes'
+			gs 'arousal', 'cuni', 10, 'group', 'lesbian'
+			gs 'arousal', 'give_cuni', 10, 'group', 'lesbian'
+			gs 'arousal', 'vaginal', 10, 'group'
+			minut -= 10
+			gs 'stat'
+			
+			act 'Have him fuck you again':
+				*clr & cla
+				'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/t7.mp4"></video></center><br>'
+				'The guy has you on all fours as he buries his cock again in your hungry cunt. You''re moaning loudly thanks to his thrusts as the guy is pounding you and you feel that the third orgasm of the session is on its way...'
+				'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/t8.mp4"></video></center><br>'
+				'You are amazed by the great stamina he has. It''s killing you and you know it. You know that this isn''t an ordinary man, he''s an alpha male, a stallion that can fuck whichever woman he desires... and the one he picked this time is you.'
+				'He grabs you by the neck and presses you together while furiously pounding you with his huge cock. Being positioned like this you can feel his tip hitting the end of your vaginal wall directly stimulating your G-spot.'
+				'<<$OpenInnerThought>>Oh my God! This guy! This guy is going to make me orgasm again! I can''t take it anymore!<<$CloseInnerThought>>'
+				'You explode in another orgasm but this time you begin to distillate a lot of liquids! You are squirting all over the room!'
+				'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/t9.mp4"></video></center><br>'
+				'As he continues on fucking you, you yell out, "Fill me up with your seed... Please cum inside me! I need it inside me!"'
+				'You don''t even know if he listened to you but after a while you can feel his warm cum filling your little slit...'
+				'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/security/t10.mp4"></video></center><br>'
+				
+				$orgasm_or = 'yes'
+				spafinloc = 0
+				gs 'cuminsidereact'
+				gs 'arousal', 'vaginal', 10, 'rough'
+				gs 'arousal', 'end'
+				gs 'stat'
+				
+				act 'Head back to the dance floor': gt 'restoreposition'
+			end
+		end
+	end
+end
+
+
+--- mod_IbizaGuard ---------------------------------
+

+ 596 - 0
locations/mod_IbizaStart.qsrc

@@ -0,0 +1,596 @@
+# mod_IbizaStart
+!!start event
+
+!!1/6 	Skills: Dance, Pole Dance and Erotic dancer  85+
+!!1/6	Skills: Exhibitionism 85+
+!!2/6 	Nightclub job. +10 times
+!!3/5 	Fame of slut in Pavlovsk, Gadyukino or city. Enough one of them
+!!4/5 	18 years old or fake identity
+!!5/5 	College diploma
+
+if $ARGS[0] = 'start':
+!!	gs 'mod_IbizaStart', 'fonts'
+	
+	IbizaTemp = max(village_slut,oldtown_slut,city_slut,pav_slut)
+	if City_slut = IbizaTemp:
+		$IbizaTemp='City'
+	elseif pav_slut = IbizaTemp:
+		$IbizaTemp='Pavlovsk'
+	elseif oldtown_slut = IbizaTemp:
+		$IbizaTemp='Pushkino'
+	else
+		$IbizaTemp='Gadyukino'
+	end
+	'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/club11.jpg"></center>'
+	*nl 
+	'Erik is standing in front of you. Checking him out while trying not to be too obvious, you think to yourself, <<$OpenInnerThought>> «What a handsome man.»<<$CloseInnerThought>>'
+	'He is truly quite attractive and, thinking about it, you realize that you probably like him a little more than is good for you... though it does turn you on to think that you would probably do anything he might ask of you. Like, <i>anything</i>. He notices you''re attention and comes closer; your legs tremble and your knees feel a little weak.'
+	*nl
+	'<<$OpenMaleVoice>>"Hi <<$pcs_nickname>>! How are you doing? You look like you''re having fun. So listen, I''ve got something to tell you. You see... '
+	'I''ve been keeping an eye on you. You are a very good dancer and I''ve noticed that whenever you are working in the cage, many of our customers tend to have a few more drinks while looking at you dance.'
+	'I''ve also asked around a bit, and I hear you have quite the reputation in <<$IbizaTemp>>"<<$CloseMaleVoice>>'
+	!!PAVLOVSK, GADYUKINO OR CITY FAME SLUT PUT IN TEXT THE MORE HIGH -ONLY ONE
+	act '"Wrong girl Eric, I have no reputation."':
+		gt 'club', 'inside'
+	end
+	act '"What?"':
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/club11.jpg"></center>'
+		'<<$OpenPCVoice>>"Ummm . . . what do you mean Erik?"<<$ClosePCVoice>>'
+		'<<$OpenMaleVoice>>"I hear you like being treated like a little... Slut!"<<$CloseMaleVoice>> He laughs, <<$OpenMaleVoice>>"And of course you also like money. Don''t you? Am I right or not?"<<$CloseMaleVoice>>'
+		act 'We''re done':
+			*clr & cla
+			'"I''m not interested. I see what you''re getting at, but I''m really not interested. Toodles!"'
+			gt 'club', 'inside'
+		!!ends event
+		end
+		act 'Perhaps':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/erick02.jpg"></center>'
+			'<<$OpenMaleVoice>>"I knew I had the right girl!. Come on, follow me."<<$CloseMaleVoice>> Eric sits down on a comfortable coach and pours himself a generous glass of Scotch. <<$OpenInnerThought>>"Wow! Not only is he handsome, he has such refined tastes too! Hmm not to mention such beautiful blue eyes as well!"<<$CloseInnerThought>> You think while he pours you a glass of whiskey too.' 
+			*nl
+			'<<$OpenMaleVoice>>"I have many informants, with eyes and ears everywhere. They always let me know when they notice someone with such potential."<<$CloseMaleVoice>> Erik continues, opening his eyes wide as he passes you the glass, <<$OpenMaleVoice>>"You see <<$pcs_nickname>>, I''m not one to judge you for how you''ve been acting. There''s nothing wrong with enjoying sex, or even having as much sex as you can... but if you add a bit of money to it, you can enjoy it even better. When you add <b>a lot</b> of money well, that''s way better."<<$CloseMaleVoice>>'
+			act 'Tell me more':
+				cla
+				*nl
+				'<<$OpenPCVoice>>"What exactly are you trying to say, Eric?"<<$ClosePCVoice>>'
+				'<<$OpenMaleVoice>>"I think you can be the perfect person for a particular job opening that I happen to have. You see... I own a luxury yacht, which I often use to host parties on the Mediterranean Sea. I have one such a trip next Saturday and due to a last minute cancellation, I am a dancer and a waitress short. Now, I am in need of a charming and very attractive girl to fill that position. Currently my boat is in Ibiza."<<$CloseMaleVoice>>'
+				act 'Ibiza?':
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/erick03.jpg"></center>'
+					'<<$OpenPCVoice>>"Ibiza?! Mediterranean sea?! A trip to Spain!! How long?"<<$ClosePCVoice>>'
+					'<<$OpenMaleVoice>>"One week, that''s exactly seven days. You''ll only be working as a dancer and as a waitress, serving drinks to the clients on the yacht; if you want to do something extra,"<<$CloseMaleVoice>> he winks at you, seeing your eyes widen in understanding. <<$OpenMaleVoice>>"Ah-ha, I see you understand."<<$CloseMaleVoice>> Eric adds, sipping a shot of whiskey from his glass <<$OpenMaleVoice>>"It''s up to you, of course!"<<$CloseMaleVoice>>'
+					*nl
+					'<<$OpenInnerThought>>"I think that could be an opportunity to learn about new lands and cultures." He is so handsome. You cannot resist him. His chin is perfect and his fingernails are even manicured! Wow!! <<$CloseInnerThought>> <<$OpenMaleVoice>>"You get to keep any tips the clients give you and in addition, I''l pay you 50000 rubles for the trip. I''ll give you 25000 rubles now and after the trip I''ll pay you the rest. Are you interested?"<<$CloseMaleVoice>> <<$OpenInnerThought>>"50000 rubles what the fuck! That is a lot of money! And the tips I could earn from people this rich!" <<$CloseInnerThought>>'
+					act 'Agree':
+						cla
+						*nl
+						'You nod and smile.'
+						'<<$OpenMaleVoice>>"Great, here you go then. That''s 25000 rubles to start with, all yours!"<<$CloseMaleVoice>>'
+!!25.000 rubles to add. If the player not present in Nightclub the next Saturday. Oblige to go to the sauna until he repays Eric''s debt
+						act 'Continue':
+							cla
+							*nl
+							'Eric finishes his scotch and gets up from the chair. <<$OpenMaleVoice>>"Alright, next Saturday you must come here, to the club. A car will be waiting to take you to the airport. When you land in Ibiza a member of the crew will meet you and take you to the ship. All clear?"<<$CloseMaleVoice>>'
+							'<<$OpenPCVoice>>"Yes, all clear. Wow Eric, thank you so much! I''m so happy you''re giving me an opportunity like this!"<<$ClosePCVoice>>'
+							'<<$OpenMaleVoice>>"You are welcome <<$pcs_nickname>>, I hope you enjoy every second. And, I''m sure you''re going to make us both a lot of money,"<<$CloseMaleVoice>> Eric adds, looking you from head to to toe and giving you a sweeping smile. <<$OpenMaleVoice>>"Remember, you have to be here, next Saturday. Don''t fail me now, I''m counting on you!<<$CloseMaleVoice>>" <<$OpenInnerThought>>I can''t fail Eric! I will do my best to make him proud of me. Oh my gosh, what a handsome man! I love him!<<$CloseInnerThought>>'
+							act 'Leave Eric': gt 'club', 'inside' 
+							!!Finish start event Ibiza trip. Then the event will begin the next Saturday. Relation with Eric +5
+						end
+					end
+					act 'Not now':
+						cla
+						*nl
+						'<<$OpenPCVoice>>"Sorry Eric I can''t go this Saturday, maybe another time."<<$ClosePCVoice>>'
+						act 'Leave Eric': gt 'club', 'inside'
+					!!Event repeat in 30 days after. Only if repeat the next branch will be present.
+					end
+				end
+			end
+		end
+	end
+end
+
+if $ARGS[0] = 'another time':
+!!	gs 'IbizaStart', 'fonts'
+	'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/erick03.jpg"></center>'
+	'<<$OpenMaleVoice>>"Hi <<$pcs_nickname>>. How are you? Do you remember our conversation about a trip to Ibiza? I have another cruise coming up, do you want to go this time?"<<$CloseMaleVoice>>'
+	act 'No':
+		cla
+		*nl
+		'<<$OpenPCVoice>>"I am not interested Eric, sorry."<<$ClosePCVoice>>'
+		act 'Leave Eric': gt 'club', 'inside'
+		!!event finished
+	end
+	act '"Yes of course!!"':
+		*nl & cla
+		'<<$OpenMaleVoice>>"Well then like I said last time - the cruise will last one week, that''s seven days. You''re only work will be as a dancer and as a waitress, serving drinks to the clients on the yacht. If you''d like to do something extra, that''s entirely up to you. You get to keep any tips the clients give you and in addition, I''l pay you 50000 rubles for the trip. I''ll give you 25000 rubles now and after the trip I''ll pay you the rest. So then, here is your first 25000. You have to come to the club next Saturday. A car will be waiting to take you to the airport. When you land in Ibiza a member of the crew will meet you and take you to the ship. All clear?"<<$CloseMaleVoice>>'
+		!!25.000 rubles to add. If the player not present in Nightclub the next Saturday. Oblige to go to the sauna until he repays Eric''s debt
+		act 'Yes':
+			*nl & cla
+			'<<$OpenPCVoice>>"Yes of course Eric!! Wow Eric, thank you so much! I''m so happy you''re giving me an opportunity like this, I''ll be seeing you next Saturday then!"<<$ClosePCVoice>>'
+			'<<$OpenMaleVoice>>"Don''t fail me now, I''m counting on you!"<<$CloseMaleVoice>> <<$OpenInnerThought>>I can''t fail Eric! I will do my best to make him proud of me. Oh what a handsome man! I love him!<<$CloseInnerThought>>'
+			act 'Leave Eric': gt 'club', 'inside'
+			!!Finish start event Ibiza trip. Then the event will begin the next Saturday. Relation with Eric +5
+		end
+	end
+end
+
+if $ARGS[0] = 'First Day':
+!!	gs 'IbizaStart', 'fonts'
+
+	'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/erick03.jpg"></center>'
+	'You''ve just got the Nightclub in your sights when you observe one of the porters at the entrance suddenly call something over the radio. Just as you arrive at the entrance Eric walks out, puts his arm around your shoulders and says: <<$OpenMaleVoice>>"Hi <<$pcs_nickname>>! You arrived just in time."<<$CloseMaleVoice>> <<$OpenInnerThought>>"Wow!! I like this man more and more"<<$CloseInnerThought>> you think, biting your lip slightly. <<$OpenMaleVoice>>"You see the Bently over there? My personal driver, Marco, is waiting for you there. He''ll be the one to take you to my plane and then for you it''s off to Ibiza! I imagine that suitcase has everything you need? Good good, well, I wish you good trip then. I will see you in Ibiza on Wednesday and until then I hope you''ll do everything you can to keep the customers happy. Remember, <i>everything</i> you can do to keep them happy. Do you understand me <<$pcs_nickname>>? Can I place my trust in you for this?"<<$CloseMaleVoice>>'
+	!!Relation with Eric +5
+	act 'Yes':
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/driver2.jpg"></center>'
+		'<<$OpenPCVoice>>"Yes Eric, I''ll do everything you expect from me, I won''t let you down."<<$ClosePCVoice>>'
+		'The door of the car is opened by one of Eric''s personal bodyguards. Eric touches your arm and you turn around. <<$OpenPCVoice>>"Yes Eric?"<<$ClosePCVoice>>'
+		'<<$OpenMaleVoice>>"By the way, I don''t like my employees wearing panties. If you''re not wearing any that''s great, but if you are... take them off as soon as you have a chance please. I have to go. Marco will accompany you and he will be my eyes and my ears. Don''t let me down!"<<$CloseMaleVoice>>'
+		act 'Get in car':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/carsitdown.jpg"></center>'
+			'Perplexed by Eric''s last words, you head over to the huge and luxurious black Bently. You leave your purse and your suitcase next to the driver, thank the bodyguard who is still holding the door for you and plop yourself down on the backseat.'
+			act 'Continue':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/driver3.jpg"></center>'
+				*nl
+				'<<$OpenMaleVoice>>"Hello, miss, my name is Marco, I''m Mr. Ivanovich''s driver. Are you ready to go to Ibiza? It is a lovely island."<<$CloseMaleVoice>>'
+				act '"As ready as I can be!!"':
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/jet.jpg"></center>'
+					'As you arrive at the airport, you are waved through to one of the nearby strips and looking out you can see a private Jet by the hangar, it''s engines already heating up in preparation for take-off. Your mind drifts back to Eric and you suddenly remember what Eric said about his employees and wearing panties...'
+					*nl
+					if $wornpantytype ! 'none':
+						gs 'panties', 'remove'
+						'You check that Marco''s attention is elsewhere, before quickly slipping off your panties and stuffing them in your pocket.'
+					else
+						'Lucky for you panties aren''t a problem, since you''re not wearing any anyway.'
+					end
+					act 'Continue':
+						*clr & cla
+						'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/whitoutpanties.mp4"></video></center>'
+						'You get out of the car and walk towards the plane with Marco. He seems quite friendly, this might be a good time to ask him some questions. <<$OpenPCVoice>>"Marco, have you known Eric a long time?"<<$ClosePCVoice>> You ask him as you board the plane.'
+						'<<$OpenMaleVoice>>"Yeah, well, I''ve been working for him for five years now. He''s been very good to me. Once you gain his trust and make sure that you do as you''re told, he makes sure that you never have to worry about money again. On the other hand though... well, lets just say I recommend that you make sure to do everything that is expected of you."<<$CloseMaleVoice>>'
+						'<<$OpenPCVoice>>"And what am I expected to do?"<<$ClosePCVoice>> you ask him'
+						'<<$OpenMaleVoice>>"That depends, but as I understand it you''re going to replace Alexandra. She will be going to Marbella in a couple of days, I think, I''m not really sure."<<$CloseMaleVoice>> As the plane starts turning onto the runway for take-off, Marco goes silent. <<$OpenInnerThought>>"Wow, this is a man of few words, not really chatty at all! It looks like I''ll have to <i>drag</i> what I want to know out of this guy,"<<$CloseInnerThought>> You think, starting to get a little nervous. Marco, sitting across from you, starts looking you up and down appreciatively. Your skirt is sitting a little higher than normal and you can see his gaze fix to your exposed, naked crotch. He gives a slight smile and a small sigh as he asks: <<$OpenMaleVoice>>"Are you going to be dancer or waitress?"<<$CloseMaleVoice>>'
+						act '"Yes, both, I think"':
+							*clr & cla
+							'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/jetflight.mp4"></video></center>'
+							*nl
+							'<<$OpenMaleVoice>>"Well in that case, then I pity you. Where you''re going now is a bit of an extreme atmosphere. Everyone you''re going to meet there is screwed up. You''ll find a lot of alcohol, drugs and all manner of debauchery, perversions and fantasies present. These people have more money than you or I can dream of and they choose that money on whatever interests them at the time. When they wan''t something, they just have to ask to receive, and if you don''t give them what they ask for... well, you''ll be in a lot of trouble. People like them, they don''t give a shit about people like you and me."<<$CloseMaleVoice>>'
+							'<<$OpenPCVoice>>"If they are really that bad, and if you hate them so much; why don''t you just quit your job?"<<$ClosePCVoice>> <<$OpenInnerThought>>"Oh my God! It looks like he seriously can''t stand Eric''s clients...such a furious expression,"<<$CloseInnerThought>> you think to yourself.'
+							*nl
+							'<<$OpenMaleVoice>>"For the same reason you brought that beautiful face of yours onto this plane, money! A lot of money!! Except, unlike you I''m not putting my body up for sale."<<$CloseMaleVoice>>'
+							'<<$OpenPCVoice>>"I''m not here to sell myself like some whore!"<<$ClosePCVoice>> You yell, outraged.'
+							'<<$OpenMaleVoice>>"Look girl, all I did was give you a little advice. Do everything they tell you. That''s just what''s expected of you. Do you understand what I''m saying? Everything. Now then, I''m going to lie down, get myself some sleep..."<<$CloseMaleVoice>>'
+							'<<$OpenPCVoice>>"But Marco,"<<$ClosePCVoice>> you reply, <<$OpenPCVoice>>"Eric told me that you''ll explain how everything works."<<$ClosePCVoice>>'
+							'<<$OpenMaleVoice>>"Later beautiful. We have several hours of travel, there will be plenty of time. Why don''t you go to the cockpit and talk to the pilot for a while so I can sleep a little?"<<$CloseMaleVoice>>'
+							act 'Go to cockpit':
+								*clr & cla
+								'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/mailin1.jpg"></center>'
+								*nl
+								'<<$OpenPCVoice>>"Hello, how are you"<<$ClosePCVoice>> you say to the attractive girl who''s sitting at the plane''s controls.'
+								'<<$OpenFemaleVoice>>"Marco already sent you to see me? Don''t worry, he always does that when he is getting frustrated, but he is the noblest guy you will find here. I''m Mailin, delighted to meet you. You are <<$pcs_nickname>>, I think."<<$CloseFemaleVoice>>'
+								'<<$OpenPCVoice>>"You... Are you the pilot?"<<$ClosePCVoice>> you reply a bit confused'
+								*nl
+								'<<$OpenFemaleVoice>>"Yes, I am. Are you surprised? I started working for Mister Ivanovich two years ago. I met him at the club and he asked me to take a trip to Hong Kong with one of his VIP clients. The guy''s name was Huang Lee, a real pervert."<<$CloseFemaleVoice>> the girl says, smiling, <<$OpenFemaleVoice>>"But thanks to that I am here now."<<$CloseFemaleVoice>>'
+								'<<$OpenPCVoice>>"Wow!"<<$ClosePCVoice>> you answer <<$OpenPCVoice>>"and what happened?"<<$ClosePCVoice>>'
+								'Mailin replies <<$OpenFemaleVoice>>"Well, just about everything... the guy was extremely into BDSM especially the bondage part, he was a real expert with it. I was with him for two months and by the end of it I had enough money saved up to finish my studies as a pilot. I made Mr. Ivanovich a lot of money, I suppose, because he gave me more than I could ever make on my own, and by gaining his trust, he allowed me to fly his personal plane."<<$CloseFemaleVoice>>'
+								act 'Continue':
+									*clr & cla
+									'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/mailin1.jpg"></center>'
+									*nl
+									'<<$OpenPCVoice>>"Mailin, can you tell me something about the kind of people I''m going to deal with?"<<$ClosePCVoice>>'
+									'<<$OpenFemaleVoice>>"I have no idea <<$pcs_nickname>>. I only know that they are very powerful people with many caprices. If you follow them in the game you will be able to fulfil many personal dreams. At least those which need money to be fulfilled! Well, I actually know Goldfinger."<<$CloseFemaleVoice>>'
+									'<<$OpenPCVoice>>"Goldfinger?"<<$ClosePCVoice>> you reply confused'
+									*nl
+									'<<$OpenFemaleVoice>>"Yeah! It''s a nickname, his real name is actually Carlo Santorini. They say that he has serious connections with the Sicilian Mafia but all I really know is that he owns a few oil wells in Saudi Arabia."<<$CloseFemaleVoice>>'
+									'<<$OpenPCVoice>>"Oil wells? How is it that an Italian is the owner of oil in the Middle East?"<<$ClosePCVoice>> you ask'
+									'<<$OpenFemaleVoice>>"Good question <<$pcs_nickname>>!! Well, the truth is that he won them playing poker with an Arab prince long ago."<<$CloseFemaleVoice>> <<$OpenInnerThought>>"What the fuck!!"<<$CloseInnerThought>> you think, <<$OpenFemaleVoice>>"Are you surprised?"<<$CloseFemaleVoice>> - she answers with a gorgeous smile'
+									'<<$OpenPCVoice>>"And why do they call him Goldfinger?"<<$ClosePCVoice>> you ask.'
+									*nl
+									'<<$OpenFemaleVoice>>"Ha, ha, ha, ha!!"<<$CloseFemaleVoice>> Mailin begins to laugh <<$OpenFemaleVoice>>"He has so much money that he even has a gold Lamborghini!"<<$CloseFemaleVoice>>'
+									'<<$OpenPCVoice>>"A golden car? A Lamborghini?"<<$ClosePCVoice>>'
+									'<<$OpenFemaleVoice>>"Yeah!! But he won his nickname because he usually carries a gold pistol in his crotch. By the way <<$pcs_nickname>>, Never call him Goldfinger!!! Call him Mr. Santorini or you''ll be lost, besides he is Mr. Ivanovich''s partner, he helps run the Western European business. He doesn''t take no for an answer and likes submissive women with <<$titsize>> breast, just like yours. Take my advice, you must to do what he asks."<<$CloseFemaleVoice>> You spend the next two hours chatting with Mailin about trivial things and together you start to forge a firm friendship.'
+									!!Force time more two hours. Relation with Mailin +20
+									act 'Go back to your seat':
+										*clr & cla
+										'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/driver3.jpg"></center>'
+										'As you head back to your seat, you see that Marco is already awake. He''s looking at you strangely. <<$OpenMaleVoice>>"Are you done already?"<<$CloseMaleVoice>> he asks you.'
+										'<<$OpenPCVoice>>"Yes, I am. Have you been awake for long?"<<$ClosePCVoice>>'
+										'<<$OpenMaleVoice>>"A while... Now listen, when we land at the airport in Ibiza try to behave yourself and be professional."<<$CloseMaleVoice>>'
+										'<<$OpenPCVoice>>"I am always professional"<<$ClosePCVoice>> You answer with some disdain'
+										'<<$OpenMaleVoice>>"I guess"<<$CloseMaleVoice>> he answers looking you up and down again <<$OpenMaleVoice>>"Well okay then <<$pcs_nickname>>, listen closely now because I''m not going to repeat myself. When we land we will first go to Mr. Santorini''s mansion. He''s Mister Ivanovich''s partner."<<$CloseMaleVoice>>'
+										'<<$OpenPCVoice>>"Eric''s partner you mean?"<<$ClosePCVoice>> You interrupt him'
+										*nl
+										'<<$OpenMaleVoice>>"Mister Ivanovich to you <<$pcs_nickname>>. Never forget it, he is now your boss. He likes to always be surrounded by beautiful women and you will very possibly have to deal with him throughout your stay in Ibiza. Be good to him, you don''t ever reject him. Did you hear me good? Never! If you do as you''re supposed to, everything will be fine. When we go to the boat the crew will assign you a cabin. All your belongings, clothes and shoes will have already been placed there. They will give you a colour bracelet; it contains a reading chip with your employee code on it. This bracelet is very important. Firstly, the colour will identify you as an employee. Secondly, it will allow you to eat or drink on any part of the boat or at any private party. Do you understand?"'
+										act 'Yes I think so':
+											*clr & cla
+											'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/driver3.jpg"></center>'
+											*nl
+											'<<$OpenPCVoice>>"Are there several colours of bracelets then?"<<$ClosePCVoice>> You ask foolishly.'
+											'<<$OpenMaleVoice>>"Yes but the most important thing for you is the chip. Some clients will give you gifts; a bracelet, a necklace, an anklet, a ring, maybe a watch... Never take money. Do you understand? Never ever money. If you need money, you can go to any one of the security guards to exchange your gifts for rubles. You also give anything you receive to the guards, they will read your employee code and keep your gifts safe until the end of the trip. These gifts will be converted into money that will be transferred to your bank account when you return to St. Petersburg. Do you understand everything? It is very important that you understand. If you need drugs to keep you awake, you can go to any security guard. He will give you what you need, after reading your employee code, so you can continue working. Anyway, I also advise you to rest whenever you are not working."<<$CloseMaleVoice>>'
+											act 'Yes thanks, all clear':
+												*clr & cla
+												'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/driver4.jpg"></center>'
+												'<<$OpenMaleVoice>>"Well, I''m glad it is."<<$CloseMaleVoice>> You and Marco talk about various things before your eyes start getting heavy, and you fall into a deep sleep.'
+												!!Force time. Reduce sleep of protagonist. Relation with Marco +5
+												act 'A sharp turn of the airplane wakes you up':
+													*clr & cla
+													'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/jetlanding.jpg"></center>'
+													!!music/Day1.mp3
+													'<<$OpenMaleVoice>>"Wake up <<$pcs_nickname>>!! Look down!! The island of Ibiza!!"<<$CloseMaleVoice>> From the air the island looks beautiful. The turquoise waters bathe beaches of fine white sand and small hidden coves surrounded by trees. You leave the plane and Marco gets behind the wheel of another high-end black car. From the back seat you can see...'
+													act 'Continue':
+														*clr & cla
+														'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/street.mp4"></video></center>'
+														'The city center has many luxury apartments and hotels, the beach of d''en Bossa is where the beautiful people have fun on the beach.'
+														'Suddenly, you notice that there are people, especially girls, wearing the colourful bracelets that Marco had told you about. At that moment you say ... <<$OpenPCVoice>>"Marco ... Those girls over there have the coloured bracelets... Are they Eric''s employees? Sorry I mean Mr. Ivanovich"<<$OpenPCVoice>>'
+														'<<$OpenMaleVoice>>"Maybe yes, maybe no."<<$OpenMaleVoice>>'
+														act 'Twenty minutes later':
+															*clr & cla
+															'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/mansion.jpg"></center>'
+															'<<$OpenMaleVoice>>"Look there''s Mr. Santorini''s mansion. I am going to wait with the car, you go up to the house. I will be notified when it''s time to take you to the boat. They are already aware of our arrival. Surely Mr. Santorini, or someone else, is waiting for you. Good luck and remember my advice!"<<$CloseMaleVoice>>'
+															!!music stop
+															act 'Go to the entrance of the mansion':
+																*clr & cla
+																'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/santorini01.jpg"></center>'
+																'As you arrive at the main entrance, you see a guy, very strong, wearing an elegant grey suit, flanked by three impressive women each wearing a white robe. You can see their micro bikinis peeking from beneath their robes. <<$OpenMaleVoice>>"Hi, you must be <<$pcs_firstname>> <<$pcs_lastname>>. I am mister Santorini. Follow me, I have some questions to ask you... You three go play in the pool with the others."<<$CloseMaleVoice>>'
+																'<<$OpenNPCVoice>>"Yes, Mr Santorini"<<$CloseNPCVoice>>, the girls answer with big smiles. Santorini takes you to an office and takes out a report that is, apparently, all about you and he begins to read it.'
+																act 'You wait patiently':
+																	*clr & cla
+																	'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/santorini02.jpg"></center>'
+																	'<<$OpenMaleVoice>>"According to Eric and his report ... you are a very strong candidate to be one of my best girls. We''ll see about that! For the moment, take off your clothes. I want to see you naked. Come on get moving! And make sure you do it properly! This report says you know your stuff. Show it!.<<$CloseMaleVoice>>'
+																	'<<$OpenPCVoice>>"Yes, sir... as you wish,"<<$ClosePCVoice>> you say, remembering all the advice you were given about dealing with this man. Using your erotic dance skills, you slowly start to take off your clothes, looking him in the eyes while you sensuously caress your breasts, your waist... down your hips. In three minutes you are completely naked; except for your shoes.'
+																	*nl
+																	'He''s still sitting in his chair without saying a thing, his gaze fixed on your body. I''ve already finished the striptease, what should you do to this guy now? you wonder, you don''t know what to do. <<$OpenMaleVoice>>"I like your <<$titsize>> breast"<<$CloseMaleVoice>> he says at last'
+																	act 'Encourage him a little':
+																		*clr & cla
+																		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/encouragestrip.mp4"></video></center>'
+																		'You approach him, confident in your body. You know that he knows you''ve danced at the strip clubs and the report surely shows something about your reputation. He smiles and nods pleased, "I like my little whores to know who owns them while they''re here". he says <<$OpenInnerThought>>"Whore... did he say whore? I am an erotic dancer not a whore... I mean, I like sex but I''m not a whore"<<$CloseInnerThought>> you think to yourself'
+																		act 'Show him what you''re worth':gt 'IbizaStart','Show him what you are worth'
+																	end
+																	act 'Thanks a lot':
+																		*clr & cla
+																		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/slap.mp4"></video></center>'
+																		'Santorini gets up from the chair and slaps your face hard and says: <<$OpenMaleVoice>>"Thank you, MISTER Santorini, always Mister to you slut. You know why? Because I am YOUR GOD when you are here, don''t forget that. Now nod."<<$CloseMaleVoice>>'
+																		'<<$OpenPCVoice>>"I''m sorry Mr. Santorini, I''m very, very sorry!"<<$ClosePCVoice>>'
+																		act 'Continue':
+																			*clr & cla
+																			'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/titpinch.mp4"></video></center>'
+																			'<<$OpenMaleVoice>>"Sorry? ... We''ll see."<<$CloseMaleVoice>> he says, reaching over to pinch your nipples <<$OpenMaleVoice>>"Show me a little bit more now, just for me. Be a good whore and show me what your body can do."<<$CloseMaleVoice>> <<$OpenInnerThought>>"Whore... did he say whore? I am an erotic dancer not a whore... I mean, I like sex but I''m not a whore"<<$CloseInnerThought>> you think to yourself'
+																			act 'Show him what you''re worth':gt 'IbizaStart','Show him what you are worth'
+																		end
+																	end
+																end
+															end
+														end
+													end
+												end
+											end
+										end
+									end
+								end
+							end
+						end
+					end
+				end
+				act 'No! I want go out of here!!':
+					'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/chuck.mp4"></video></center>'
+					'You''re not sure why, but for whatever reason when he asks you if you''re ready, you start to panic and at the last moment you decide you don''t want to go on the trip after all. Eric will probably be very upset and you are terrified of whatever consequences leaving now might have.'
+					!!Relation with Eric -20 Here also you must put to link with the story of "Kidnapped of Gas Station" with the next
+				end
+			end
+		end
+	end
+end
+
+if $ARGS[0] = 'Show him what you are worth':
+!!	gs 'IbizaStart', 'fonts'
+
+	'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/a1.jpg"></center>'
+	'You sit in a chair in front him. You spread your legs a bit and let him see your pussy. You look directly into his eyes and you pass your tongue sensuously across your lips. Combing through his beard with his finger, he ponders what he sees in you.'
+	act 'Keep showing':
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/a2.jpg"></center>'
+		'You know men, in spite of your age, you have already been with many and you know how to make a man rock-hard. You open your legs and bring your right hand to your pussy and gently stroke a finger across your little slit and bring it to your mouth and suck it like its a little cock. You hadn''t realized how exciting the whole situation is yet, but you feel your nipples stand up and harden. You try to take it a bit further... you see a cup filled with water and...'
+		act 'You get it':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/a3.jpg"></center>'
+			'You sprinkle some water on your legs. The water goes down to your crotch and wets your pussy, a pussy you notice with lips inflamed by excitement; Santorini sees the lower lips of your vulva. <<$OpenInnerThought>>Damn, I think I''m getting hot!<<$CloseInnerThought>>'
+			'<<$OpenMaleVoice>>"Show me how flexible you are!"<<$CloseMaleVoice>> Santorini says, speaking for the first time since you started.'
+			act 'Simply obey':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/a4.jpg"></center>'
+				'You lift your left leg straight up without a bother; you feel your vaginal canal stretch wide open letting the air rush into your womb and making you shiver. Now you are convinced you are getting wet, wetter than you should, but at this point you want to show more to Mr. Santorini so you stand-up and...'
+				act 'Gontinue':
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/a5.jpg"></center>'
+					'You squat down spreading your legs. It''s in this moment when you feel that your lips are wide open exposing your vagina and that your smaller lips have separated like a flower leaving your hole open and exposed. Your breath speeds up and you stand up and go to the cupboard in front of you.'
+					act 'Go':
+						*clr & cla
+						'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/a6.jpg"></center>'
+						'You put your back to the desk and support your elbows on it. You start to squat again, but you are so wet, your hips start to spasm ad you start to hump like a huge invisible cock was fucking you. You feel a vacuum in your lower abdomen and you know, by all means, that you could cum if you let it go on. <<$OpenInnerThought>>Oh my God! I am going to fucking erupt like a volcano!<<$CloseInnerThought>> you think. You need to go further, to find your pleasure, so you go back to your chair'
+						act 'You need to go on.':
+							*clr & cla
+							'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/a6.jpg"></center>'
+							'You lift your left leg toward the chair and leave your pussy wide open and shining wet. You watch his eyes; Santorini can see it. You look at him while you finger your vulva and masturbate your clit in front of him, the partner of your boss. Mmmmmnnn! you moan just when your finger touches your special spot. However suddenly the Santorini''s phone rings. He gets up and answers the call and with an authoritative gesture, he orders you to stop.'
+							act 'Stop in the name of God! (Santorini)':
+								*clr & cla
+								'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/angry.jpg"></center>'
+								'You''re completely frustrated. You feel a void in your womb that is driving you crazy. And the heat... that heat around your vulva is screaming for you to turn it off with an orgasm. Santorini, meanwhile, continues talking on the phone. You bite your lip. You don''t know what to do. Not really thinking, and a bit dizzy from the rush, you pick your skirt up and start dressing...'
+								'Santorini hangs up the phone and says: <<$OpenMaleVoice>>"Did I tell you to get dressed?"<<$CloseMaleVoice>>'
+								'<<$OpenPCVoice>>"I''m sorry Mister Santorini I thought..."<<$ClosePCVoice>> you try answer'
+								'<<$OpenMaleVoice>>"You aren''t here to THINK."<<$CloseMaleVoice>> He interrupts, getting angry <<$OpenMaleVoice>>"Continue with what you were going to do. Come on, get moving slut!"<<$CloseMaleVoice>>'
+								act 'Yes mister Santorini... right away':
+									*clr & cla
+									'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/b1.mp4"></video></center>'
+									'You go to the couch next to the office window. You slightly raise your skirt. The heat of your belly is still there and that can fix it.'
+									act 'Fix it':
+										*clr & cla
+										'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/b2.mp4"></video></center>'
+										'As soon as you touch your pussy a strong splash of pleasure runs up your spine... exhausted, You can''t stay upright anymore and you decide to lie down on the couch'
+										act 'Get comfortable and enjoy':
+											*clr & cla
+											'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/b3.mp4"></video></center>'
+											'You lie down and spread your legs open as wide as they can go. You breathe in deeply to relax, before slipping your finger over your clitoris. The rush of pleasure from the touch is so extreme that you can''t help but moan loudly. Your pussy is absolutely shining, leaking a steady flow of pussy-cum'
+											act 'Masturbate now!':
+												*clr & cla
+												'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/b4.mp4"></video></center>'
+												'You use your fingers to stroke your clit, going back and forth faster and faster as you close your eyes, already dreaming of your release as the pleasure starts culminating in your belly.'
+												act 'Faster':
+													*clr & cla
+													'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/b5.mp4"></video></center>'
+													'You close your eyes and you abandon all control to your desire. You rub your clitoris faster; you swallow as your desire is increasing, while your vagina leaks into your asshole flooding the office with your smell of female in heat'
+													act 'Finger fuck yourself':
+														*clr & cla
+														'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/b6.mp4"></video></center>'
+														'You feel the emptiness in your vaginal canal and you feel the need to penetrate and feel full. You open your lips and you stimulate the entrance of your pussy knowing that you are going to penetrate it with two fingers and fuck yourself hard with them'
+														act 'All the way':
+															*clr & cla
+															'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/b7.mp4"></video></center>'
+															'But just as you are about to put your fingers up inside you, you open your eyes and there is Mr. Santorini standing right in front of you. With a broad smile that illuminates his face he says: <<$OpenMaleVoice>>"Enough! I''m hungry get up and come with me"<<$CloseMaleVoice>>'
+															'<<$OpenInnerThought>>"Oh fuck this can''t be happening to me! Fuck I''m as hot as a bitch in heat and I was almost at my orgasm! Shit!<<$CloseInnerThought>> you think'
+															act 'Stop':
+																*clr & cla
+																'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/angry.jpg"></center>'
+																'You feel terrible. You have been denied the orgasm and the sensation that you have in your whole body is of complete sexual necessity. You are encouraged by thinking that maybe Mr. Santorini wants to fuck you. He said, "I''m hungry..." <<$OpenInnerThought>>"Maybe he meant he is hungry for a woman. Well, here I am! I''ll let him do anything he wants, as long as he turn off this heat that''s driving me crazy! Oh my God!! I need a cock now! In my mouth, in my ass, in my pussy I don''t care where but I need a cock now!<<$CloseInnerThought>> you think very frustrated'
+																act 'Follow him':
+																	*clr & cla
+																	'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/hungry1.jpg"></center>'
+																	'To your genuine surprise it was true that he was hungry... but for food. They force you to lie down on a huge table and cover your body with first-rate burgers.'
+																	act 'Continue':
+																		*clr & cla
+																		'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/hungry2.jpg"></center>'
+																		'The second course is worse for your excitement. They cover your whole body with Sushi and he orders all his "concubines" to catch and explore your body without any regard for modesty. It feels like your pussy can''t take much and you are so wet it runs down your thighs.'
+																		act 'After lunch': gt 'IbizaStart','after lunch'
+																	end
+																end
+															end
+														end
+													end
+												end
+											end
+										end
+									end
+								end
+							end
+						end
+					end
+				end
+			end
+		end
+	end
+end
+
+if $ARGS[0] = 'after lunch':
+!!	gs 'IbizaStart', 'fonts'
+
+	'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/santorininephew1.jpg"></center>'
+	'Later he orders you to take a shower, and then he and other three girls ride in one of their cars in the direction of Ibiza''s marina. There you can see why Mr. Santorini has the nickname "Goldfinger" ... in his crotch you can see the outline of... A 9mm gold pistol! Apparently, the yacht where you are going to work is 8 km from the coast, and you have to embark on a speedboat that will take you to it. Just when you think the speedboat is going to jet off, Mr. Santorini stops everything to speak with a young man wearing a very colourful shirt. It seems to you that they have a very close relationship and that he is, probably, younger than you. They talk for at least 20 minutes, you look over at them occasionally while chatting with the other girls.'
+	*nl
+	'They tell you that the young man is his nephew. But you still feel the wetness below as the wind rushes past your naked vagina, and you think of nothing more than masturbating as soon as you get to your cabin on the boat. Suddenly Mr. Santorini approaches you with the young man in the coloured t-shirt and says: <<$OpenMaleVoice>>"Bitch, my nephew says he likes you and would like to get to know you a bit more intimately"<<$CloseMaleVoice>>'
+	'<<$OpenInnerThought>>"Oh yeah?"<<$CloseInnerThought>> You answer <<$OpenPCVoice>>"And how intimately would he like to know me?"<<$ClosePCVoice>>'
+	'<<$OpenMaleVoice>>"Extremely"<<$CloseMaleVoice>> he replies, while his nephew looks to you with lust in his eyes. <<$OpenInnerThought>>"My pussy is hot and wet"<<$CloseInnerThought>> you think in this moment <<$OpenMaleVoice>>"I want you to fuck him and drain his balls completely. You hear me <<$pcs_nickname>>? Leave the condom full of his sperm. Ok?"<<$CloseMaleVoice>>'
+	act 'Ok, mister Santorini':
+		*clr & cla
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/santorininephew2.mp4"></video></center>'
+		'You believe in that moment that the kid can be the person you need to calm the furore that torments your belly. You take him by the hand and lead him back to the car. You strip completely while your male companion drops his trousers leaving his gaudy coloured shirt on. You straddle him immediately, his cock slipping up your twat with no resistance as your dripping juices cover his dick. You start riding him slowly at first but you quickly increase your speed, humping yourself down at a wild pace. You feel the hardness of the young cock, wrapped in the latex of the condom, stretching your wet vagina; pleasure starting to build yet again, at the bottom of your pussy. Your hips don''t stop as your bouncing gets faster and you lose control.'
+		*nl
+		'The kid starts moaning loudly, touching your tits and grabbing at your ass-cheeks, helping you fuck yourself harder on his young cock. Suddenly, you realize that another black car is parked right next to yours and someone is watching you from inside. You look more carefully and you realize who it is. Marco. You keep fucking the boy while you look at Marco through the window. The kid begins to groan and tremble, filling the condom with the load of cum stored in his nuts. <<$OpenInnerThought>>Don''t cum yet, wait!<<$CloseInnerThought>> <<$OpenPCVoice>>"Wait, no! Come on, fuck me a bit more, please!"<<$ClosePCVoice>> You yell at him, wanting to slow down to keep him from cumming a little longer, but just before you can reach orgasm, you feel the boy''s cock deflate and lose its vigour... unable to give you the release you so desperately need.'
+		act 'Shit!!':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/santorininephew3.jpg"></center>'
+			'<<$OpenInnerThought>>Fuck this kid has left me half-done! He is an asshole!<<$CloseInnerThought>> You think annoyed <<$OpenInnerThought>>I''m hotter now than before.<<$CloseInnerThought>>'
+			'<<$OpenMaleVoice>>"Fucking bitch! You''re the hottest slut I''ve ever fucked! You''ve emptied my balls! What a woman!"<<$CloseMaleVoice>> He tells you to get out the car. <<$OpenMaleVoice>>"By the way slut, you need to eat something?"<<$CloseMaleVoice>> He says, pointing at the cum filled condom still wrapped around his cock. 
+			<<$OpenMaleVoice>>"It''s up to you! Just look, it''s completely full it''s and all yours."<<$CloseMaleVoice>>'
+			act 'You swallow':
+				*clr & cla
+				'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/condomswallow.jpg"></center>'
+				'You obey his instruction and you take the condom off his cock, put it to your open mouth and swallow your all his cum. <<$OpenInnerThought>>"Oh my God! I think I''m turning into a semen addict"<<$CloseInnerThought>> <<$OpenMaleVoice>>"Fuck, what a whore!"<<$CloseMaleVoice>> he shouts, <<$OpenMaleVoice>>"Get out the car bitch!"<<$CloseMaleVoice>>'
+				act 'Get out': gt 'IbizaStart', 'get out of car'
+			end
+			act 'No way':
+				*clr & cla
+				'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/asshole.mp4"></video></center>'
+				'You put on a face that, by itself, tells him what you think of swallowing his cum. He gets angry, takes the condom off and pours all his cum out over your face.'
+				act 'Continue':
+					*clr & cla
+					'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/condomface.jpg"></center>'
+					'<<$OpenMaleVoice>>There, now you look the part. Don''t you feel beautiful now? Wipe yourself off and get out of the car bitch!<<$CloseMaleVoice>>'
+				act 'Get out': gt 'IbizaStart', 'get out of car'
+				end
+			end
+		end
+	end
+end
+
+if $ARGS[0] = 'get out of car':
+!!	gs 'IbizaStart', 'fonts'
+
+	'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/santorininephew4.jpg"></center>'
+	'Still naked, you leave the car, while Santorini''s nephew has gone to talk with his uncle. You wipe the remains of semen from your face and lips, then clean the remains in the car. You feel completely humiliated but your desire has taken over your mind and in the depths of your being and you still need to quench your thirst for sex. Five minutes later they both look at you and, grinning, they walk towards you; the look on their faces making your clitoris twinkle all by itself.'
+	'<<$OpenMaleVoice>>"<<$pcs_nickname>>, we''ve been talking and we thought that after having seen what it just did, my poor car has become very hot as well,"<<$CloseMaleVoice>> Mr. Santorini says, still grinning widely.'
+	'<<$OpenPCVoice>>"Excuse me?"<<$ClosePCVoice>> you answer, <<$OpenPCVoice>>"I''m sorry Mr. Santorini I don''t understand what you''re trying to say."<<$ClosePCVoice>>'
+	'<<$OpenMaleVoice>>"Cars, like people,"<<$CloseMaleVoice>> Santorini continues, <<$OpenMaleVoice>>"have souls, have feelings, and have... needs. I love cars, I love them more than people and I feel that my car needs to relieve some its tension."<<$CloseMaleVoice>>'
+	'<<$OpenPCVoice>>"Sorry but... I still don''t understand Mr. Santorini,"<<$ClosePCVoice>> you reply'
+	'<<$OpenMaleVoice>>"Damn this bimbo stupid!"<<$CloseMaleVoice>> they both laugh out loud, <<$OpenMaleVoice>>"What I''m trying to make you understand, <<$pcs_nickname>>, is that you are a whore, one of many I have here. My car needs a whore now... I want you to fuck it."<<$CloseMaleVoice>> <<$OpenInnerThought>>Oh my God! How is it possible that this is happening to me?<<$CloseInnerThought>> - you think - <<$OpenInnerThought>>This guy is totally psycho, but I have to obey or I don''t know what will happen to me!<<$CloseInnerThought>>'
+	act 'Your best option is to do it!':
+		*clr & cla
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/bitlips.mp4"></video></center>'
+		'Your eyes shine before the perverted proposition. You are very horny and you don''t care what you do anymore, as long as you can have your orgasm at last. You bite your lips and...'
+		act 'Go back to the car':
+			*clr & cla
+			'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/c1.mp4"></video></center>'
+			'You stand at the door of Santorini''s car for a moment. A few steps away Marco is still watching you. Your breathing is a bit shaky and you wonder: <<$OpenInnerThought>>"How the hell can I fuck a car?"<<$CloseInnerThought>> Suddenly you get the idea and open the car door. You crawl over seat, heading for the car''s gearlever.'
+			act 'Continue':
+				*clr & cla
+				'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/c2.mp4"></video></center>'
+				'And you begin to pass your delicate hand by the lever stroking it the way you would stroke a cock.'
+				act 'Treat the lever like a cock':
+					*clr & cla
+					'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/c3.mp4"></video></center>'
+					'<<$OpenInnerThought>>"Oh <<$pcs_nickname>>! Please keep going!" Imagine that the stick-shift is a dick-shift, just another yummy cock and everything will be fine - you think giving yourself the courage to continue<<$CloseInnerThought>> You go straight to it and you start licking it, looking over at Santorini and his nephew.'
+					act 'Blow it':
+						*clr & cla
+						'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/c4.mp4"></video></center>'
+						'You begin to blow the dick-shift, licking the knobby top in circles with your tongue and looking sensually at the men, who are mesmerized by your performance. You feel your vagina get wet again, already dripping down the inside of your thighs.'
+						act 'Continue':
+							*clr & cla
+							'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/c5.mp4"></video></center>'
+							'You can''t keep going like this, your arousal is so strong you can''t think of anything besides fucking yourself on the dick-shift.'
+							act 'Continue':
+								*clr & cla
+								'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/c6.mp4"></video></center>'
+								'Your pussy is so empty... you really need something big and hard inside you. You straddle the lever and...'
+								act 'You penetrate you pussy':
+									*clr & cla
+									'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/c7.mp4"></video></center>'
+									'Finally, your aching pussy is being stretched wide open. You moan loudly, rotating your hips around as you give your pussy a chance to adjust to the strange shape. You squeeze your breasts and you can''t stop another moan from escaping your lips.'
+									act 'Continue':
+										*clr & cla
+										'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/c8.mp4"></video></center>'
+										'Your pussy slides down the length of the dick-shift, without any problem, once again your abundant juices letting your lover slide in immediately. You hump it slowly at first, going down as far as you can, impaling yourself and stretching your twat wide before going back up. Up and down, up and down - faster and harder all the while.'
+										act 'More!!':
+											*clr & cla
+											'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/c9.mp4"></video></center>'
+											'You grab the steering wheel and the seat to steady yourself, giving you leverage to fuck faster.'
+											act 'Continue':
+												*clr & cla
+												'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/c10.mp4"></video></center>'
+												'Your pleasure is mounting as you got the dick-shift hitting you inside in just the right spot with every bounce; it hurts a bit, then it tickles, your pussy starting to twitch and the spasms take over - waves of spasms quaking through you and making you slam down harder as your muscles lose control.'
+												act 'Cum!!':
+													*clr & cla
+													'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/c11.mp4"></video></center>'
+													'You think you are going to pass-out, your eyes close, but then, as your hips hump by their own spasms, a second wave of pleasure explodes from your now well fucked cunt, draining out of you and all over the dick-shift that is now smeared in your girl-cum.'
+													act 'Continue':
+														*clr & cla
+														'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/c12.mp4"></video></center>'
+														'<<$OpenMaleVoice>>"I think this time Eric''s report was true to the letter,"<<$CloseMaleVoice>> Santorini says, reaching down to adjust his cock through his pink trousers <<$OpenMaleVoice>>"We certainly have a great whore on this trip. We are going to make a lot of money with you bitch... and if you behave yourself, you''re going to earn a killing. Now show us that cunt of yours again. Don''t get shy now slut, show me!"<<$CloseMaleVoice>>'
+														act 'You get dressed and get on the speedboat.': gt 'IbizaStart','the ship'
+													end
+												end
+											end
+										end
+									end
+								end
+							end
+						end
+					end
+				end
+			end
+		end
+	end
+	act 'Refuse':
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/dead.jpg"></center>'
+		'At a gesture of Santorini, you see that his nephew takes a knife from his pocket and gives you several stab wounds. Even bleeding you leave in a field.'
+		!!dead, game over
+	end
+end
+
+if $ARGS[0] = 'the ship':
+!!	gs 'IbizaStart', 'fonts'
+
+	'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/day1/bracelet.jpg"></center>'
+	'You come to a huge recreational yacht. Santorini talks to the Captain for a couple of minutes while you are standing on deck, exhausted and wanting to take a shower. They both approach you and Santorini says, <<$OpenNPC1Voice>>"This is the new girl, Captain. Let someone from security escort her to your cabin and mark her with a purple bracelet."<<$CloseNPCVoice>>'
+	'<<$OpenNPC2Voice>>"Purple bracelet, sir?<<$CloseNPCVoice>>" Asks the captain'
+	'<<$OpenNPC1Voice>>"Yes, purple"<<$CloseNPCVoice>> answers Satorini with a huge smile <<$OpenNPC1Voice>>"and assign her a good cabin."<<$CloseNPCVoice>>'
+	'<<$OpenNPC2Voice>>"Yes, sir."<<$CloseNPCVoice>>'
+	act 'To your cabin':
+		*clr & cla
+		'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/cabin.jpg"></center>'
+		'You arrive in your cabin with the only desire to shower and go to bed to sleep. Tomorrow will be another day...' 
+		act 'Sleep': gt 'IbizaDay2', 'day two'
+		!!The cabin must be a bedroom complete (Shoes, dresses and bed). The bathroom must be also dynamics with exception of "take a bath" which is not available here.
+	end
+end
+if $ARGS[0] = 'cfonts':
+
+	!!	$OpenMaleVoice = '<font size="3" color="navy" face="Times" ><i>'
+!!	$OpenFemaleVoice = '<font size="3" color="maroon" face="Times" ><i>'
+!!	$OpenPCVoice = '<font size="3" color="purple" face="Times" ><i>'
+!!	$OpenNPCVoice = '<font size="3" color="olive" face="Times" ><i>'
+!!	$OpenInnerThought = '<font size="2" color="fuchsia" face="Times" ><i>'
+
+	$OpenMaleVoice = '<font color="navy">'
+	$CloseMaleVoice = '</font>'
+	$OpenFemaleVoice = '<font color="maroon">'
+	$CloseFemaleVoice = '</font>'
+	$OpenPCVoice = '<font color="purple">'
+	$ClosePCVoice = '</font>'
+	$OpenNPC1Voice = '<font color="olive">'
+	$OpenNPC2Voice = '<font color="teal">'
+	$CloseNPCVoice = '</font>'
+	$OpenInnerThought = '<font size="2" color="pink"><i>'
+	$CloseInnerThought = '</font></i>'
+	
+	*clr
+	*nl
+	'color fonts'
+	*nl
+	'<<$OpenMaleVoice>>"Male voice"<<$CloseMaleVoice>>'
+	'<<$OpenFemaleVoice>>"Female voice"<<$CloseFemaleVoice>>'
+	'<<$OpenPCVoice>>"PC voice"<<$ClosePCVoice>>'
+	'<<$OpenNPC1Voice>>"NPC1 voice"<<$CloseNPCVoice>>'
+	'<<$OpenNPC2Voice>>"NPC2 voice"<<$CloseNPCVoice>>'
+	'<<$OpenInnerThought>>"Inner Thought"<<$CloseInnerThought>>'
+
+end
+
+if $ARGS[0] = 'bwfonts':
+!!	$OpenMaleVoice = '<font size="3" color="navy" face="Times" ><i>'
+!!	$OpenFemaleVoice = '<font size="3" color="maroon" face="Times" ><i>'
+!!	$OpenPCVoice = '<font size="3" color="purple" face="Times" ><i>'
+!!	$OpenNPCVoice = '<font size="3" color="olive" face="Times" ><i>'
+!!	$OpenInnerThought = '<font size="2" color="fuchsia" face="Times" ><i>'
+
+	$OpenMaleVoice = ''
+	$CloseMaleVoice = ''
+	$OpenFemaleVoice = ''
+	$CloseFemaleVoice = ''
+	$OpenPCVoice = ''
+	$ClosePCVoice = ''
+	$OpenNPC1Voice = ''
+	$OpenNPC2Voice = ''
+	$CloseNPCVoice = ''
+	$OpenInnerThought = '<font size="3" color="fuchsia"><i>'
+	$CloseInnerThought = '</font></i>'
+	
+	*clr
+	*nl
+	'no color fonts'
+	*nl
+	'<<$OpenMaleVoice>>"Male voice"<<$CloseMaleVoice>>'
+	'<<$OpenFemaleVoice>>"Female voice"<<$CloseFemaleVoice>>'
+	'<<$OpenPCVoice>>"PC voice"<<$ClosePCVoice>>'
+	'<<$OpenNPC1Voice>>"NPC1 voice"<<$CloseNPCVoice>>'
+	'<<$OpenNPC2Voice>>"NPC2 voice"<<$CloseNPCVoice>>'
+	'<<$OpenInnerThought>>"Inner Thought"<<$CloseInnerThought>>'
+
+end
+!! if $ARGS[0] = 'day two': 
+
+--- mod_IbizaStart ---------------------------------
+

+ 511 - 0
locations/mod_IbizaToilet.qsrc

@@ -0,0 +1,511 @@
+# mod_IbizaToilet
+
+if $ARGS[0] = 'start':
+	gs 'saveposition'
+	gt 'mod_IbizaToilet','tou'
+end
+
+
+!DYNAMIC EVENTS GO TO THE TOILET
+
+!Dynamic events in the toilet should be made available to the player when they are on the ship in the vicinity of the dance floor. 
+!Also they should have the option of GO TO THE SECURITY GUARD; 
+
+!GO TO THE BAR AND DANCE !!
+!As long as the player is on the dance floor and vicinity sites, the music (except DAY 1 and DAY 2) must continue playing to give the player the atmosphere and the feeling of being in the party environment of Ibiza. 
+!Outside the dance floor the music may sound lower or worse quality but I do not know how to give you audio tracks with these characteristics (similarly to what is done in the Pavlovsk disc).
+!Below are the texts and images of the different GO TO THE TOILET events. The player will go here to restore part of levels linked to PERSONAL CLEANING AND TOOLING but to a lesser level than they can do it at their cabin. 
+!Also the player will have available of option MIRROR to use make up or retouch your makeup of the similar way in other parts of the game.
+!The events will be random to give variety to the player or sequentials in order to avoid repetitions. Each event could also have effects on the player specified as outside text (without the quotes “ “)
+! gs 'mod_IbizaToilet', 'start'
+if $ARGS[0] = 'tou':
+	*clr & cla
+	'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/toilet/toilet13.jpeg"></center><br>'
+	$metkaM = $ARGS[0]
+	$locM = $CURLOC
+	$location_type = 'bathroom'
+
+	minut += 5
+	gs 'stat'
+	act 'Leave the toilet': gt 'restoreposition'
+	act 'Look into the mirror': gt 'mirror', 'start'
+	act 'Go into booth': gt 'IbizaToilet', 'booth'
+	if pcs_hairbsh = 0: act 'Brush your hair': gt 'mirror', 'brush'
+
+	if (cumloc[6] = 1 or cumloc[7] = 1):
+		act 'Wipe the cum off your clothes (0:10)':
+			cla
+			*clr
+			cumspclnt = 6
+			gs 'cum_cleanup'
+			minut += 10
+			'<center><img <<$set_imgh>> src="images/shared/sex/cum/frotsp.jpg"></center><br>'
+			'You use a tissue and a bit of water to remove cum stains in your clothes. '
+
+			act 'Finish': gt 'restoreposition'
+		end
+	end
+	dynamic $tampon
+	dynamic $quickwash
+!!	dynamic $basin
+end
+
+
+if $ARGS[0] = 'xxx':
+
+
+act 'Enter the bathroom':
+	cla
+	*clr
+	
+	'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/toilet/toilet1.jpg"></center><br>'
+	'You quickly head over to the bathroom and as soon as you sit down you start peeing. Luckily, you didn''t have to wait in a line as you were able to visit the employee bathroom.'
+	
+	act 'Go back to the dance floor': gt 'restoreposition'
+end
+
+act 'Enter the bathroom':
+!Add bonus energy +
+!Time?
+	'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/toilet/toilet2.jpg"></center><br>'
+	'You visit the bathroom, not because you feel like peeing but because you''re tired of dancing. You sit in a booth, calmly sipping on your drink. Your high heels are killing you and you take them off so that your aching feet can rest.' 
+	'You sit there just enough to regain some of your energy without the need to resort to drugs.'
+
+	act 'Go back to the dance floor': gt 'restoreposition'
+end
+
+act 'Enter the bathroom':
+!Add bonus Aroused + 
+	'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/toilet/toilet3.mp4"></video></center><br>'
+	'You enter the bathroom and hear some moans from one of the booths. You are surprised as you notice one of the Purple Girls, using a water brush to masturbate.'
+	'[pink]What the fuck! She is fucking herself with a water brush! What should I do? It must be those damn yellow pills. Oh my God! She looks like she''s really enjoying herself! Her moans are making my cunt wet, I better head back to the dance floor before I do something I''ll regret...[pink]'
+
+	act 'Go back to the dance floor': gt 'restoreposition'
+end
+
+
+act 'Enter the bathroom':
+
+	'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/toilet/toilet4.jpg"></center><br>'
+	'As you enter the employee bathroom you notice in the mirror that someone has stained your dress. You take off the dress and rinse it in the sink.' 
+	'While the dress is drying you decide to rest a little and relieve yourself. All of sudden you hear someone else enter the bathroom, as you stand completely naked you hope it''s one of the other Purple Girls...'
+		
+		act 'Hello?':
+		'"Hi cutie!" you hear a familiar male voice... "I''ve been following you for a while. This must be lucky day! Who would''ve thought I would find you naked and alone in the bathroom. But that was to be expected of a slut like yourself..."' 
+		'"What do you want? Leave me alone!" you answer noticeably upset.'
+		'"No, no, no way cutie... I won''t let you off the hook before you satisfy my needs." He quickly drops his pants and briefs telling you, "Take a look of this beauty!"'
+		*nl
+		'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/toilet/bigcock.jpg"></center><br>'
+		'instinctively you let out a, "Fuck me!" as you''re genuinely impressed by his cock size which you have within 10 centimeters of your face.'
+		'"What are you waiting for? Come on, suck it, bitch! Help me relieve this tension I have in my balls!"'
+		'<<$OpenInnerThought>> «This cock is at least 29 centimeters and look how thick it is! It''s gigantic!»<<$CloseInnerThought>>'
+		
+		!2 acts available: No way! Leave me alone asshole! or Suck it!!
+			act 'No way! Leave alone asshole!':
+			!Add negative clean, attractiveness - - -
+			!forced bj, deepthroat	
+			'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/toilet/toilet4b.mp4"></video></center><br>'
+			'The man is not pleased, "Asshole? Be careful who you call an asshole, you''re forcing me to teach you a lesson instead!". He lifts you up from the bathroom and forcefully shoves his cock deep in your mouth. As he begins to thrust you realize that your mouth is just another hole to be filled.' 
+			'You try your best to relax the throat so he can slide his cock as deep as possible. Despite your best efforts to appease the man is not satisfied as he grabs you by the back of your head and shoves his cock even deeper down your throat. You gag and you feel that you need to throw up...'
+			'As he pulls out his cock you start pleading, "Please! Please not like this! Please no more!! I beg of you... Please!!!"'
+			'The man is not budging, "Shut up and open your mouth bitch! I''ll show you! Open your fucking mouth and close your eyes!"'
+			*nl
+			'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/toilet/toilet4c.mp4"></video></center><br>'
+			'As you open your mouth, you suddenly feel a warm liquid covering you face. As he takes a piss you hear him say, "This is the only way to teach lippy bitches some manners! Now I''m going to find another slut to fuck! You can lay there in my piss... like the piece of shit you are."'
+				act 'Go back to the dance floor': gt 'restoreposition'
+			end
+			
+			act 'Suck it!!':
+   
+			'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/toilet/toilet5.mp4"></video></center><br>'
+			'You grab his massive cock and put it in your mouth. You start to suck it but because of its thickness you can only fit the penis head in your little mouth.'
+			'"Go deeper you little whore!" the man commands.'
+			'"I can''t..., it''s too thick.'
+			'"I can''t..., it''s too thick, I can''t..." he starts mocking you, "Come here, suck my balls instead!"'
+			*nl
+			'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/toilet/toilet6.mp4"></video></center><br>'
+			'You obey and quickly position yourself so you can suck and lick his balls until you completely fit them in your mouth. As you suck his balls you begin jerking him off with your free hand. You are baffled as you notice that your pussy is dripping wet.'
+			'"That''s enough playing with my balls bitch! If you can''t fit my cock in your mouth, I''ll need to relieve myself in one of the other holes instead! Since I''m a nice guy, I''ll let you choose! Ass or pussy?"'
+			'<<$OpenInnerThought>> «Oh my God! If this guy shoves his massive cock in my ass, I won''t be able to walk straight for days!<<$CloseInnerThought>> « you think to yourself. You have no other choice than...'					
+				act 'Pussy':
+					
+				'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/toilet/bicgcock2.mp4"></video></center><br>'
+				'"Good choice whore!" he tells you as he lays down on the floor, "I want you to ride me and don''t be afraid to go deep. I want to feel that I''m streching your inside..."'
+				'"Do you have a condom?" you ask him.'
+				'"Condom? No, where''s the fun in that... I like to fuck raw, there''s nothing better then the risk of having unprotected sex."'
+				'You hesitate for a bit as you fear you might get pregnant by an unknown man.<<$OpenInnerThought>> «I don''t think there''s a risk... I hope...  or is there? Have I taken my birth control pills? I can''t remember! No matter what I can''t let him put that massive thing in my ass, I would die if that ever happened...»<<$CloseInnerThought>>'
+				*nl
+				'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/toilet/toilet7.mp4"></video></center><br>'
+				'You slowly crouch feeling his tip at the entrance of your slit. As you lower yourself, you feel your pussy lips open themselves spontaneously, emitting a moist sound as his cock enters you...' 
+				'It doesn''t take long before his huge cock is stretching your vaginal walls making you feel full. You do your best to fulfill his wishes as his cock reaches your cervix.'
+				'You''ve gone pretty deep but there''s still quite the way to go. You begin riding him slowly and as you keep doing it you notice that with every thrust you are able to have his cock penetrate you even deeper.'
+				'After a while, you feel his massive cock dilating your cervix. You feel a bit voilated as his cock enters your womb but you''re too aroused to care.'
+				'"P-Please... don''t cum inside me please..." you beg him before all of a sudden...'
+				$orgasm_or = 'yes'
+				$orgasm_txt = '"Oh my God! I''m cumming! Aaaaaahhh my God! Aaaaahh!!! you shout.'
+				'"Keep on riding me whore!!!" he yells. "I''m close so don''t you dare to stop! Yes!" He groans loudly as he explodes inside of you and you feel him emptying his balls directly in your womb... "Well done whore! Now show me your cream filled pussy!"'						
+
+				act 'Do it':
+					!Add bonus massive vaginal creampie!!
+					!Add decrease Aroused - -
+						
+					'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/toilet/pussyfilled.mp4"></video></center><br>'
+					'"Not bad! There is nothing that turnes me on more than a cream-filled bun! I''ve put a lot of yeast in the batter!" he jokes.'
+					'"I truly hope you end up with a little bastard!"' 
+					'<<$OpenInnerThought>> «Oh my God! I can''t get pregnant, as soon as he leaves I must run into the booth and push out as much sperm as I can.»<<$CloseInnerThought>>'
+
+						act 'Go back to the dance floor': gt 'restoreposition'
+					end
+				end
+			end
+		end
+	end
+end
+
+if $ARGS[0] = 'xxx':
+
+act 'Enter the bathroom':
+!Add bonus energy and decrease pain high heels
+
+	'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/toilet/toilet8.jpg"></center><br>'
+	'You enter the bathroom and take a look if there''s anyone else in there. Your feet are aching from the high heels you wear, it feels like you''ve been standing on needles. You rest for a while and use the sink to cool off your feet... You feel more energized.'
+
+      act 'Go back to the dance floor': gt 'restoreposition'
+end
+
+
+act 'Enter the bathroom':
+!Add decrease Aroused –
+
+	'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/toilet/toilet9.mp4"></video></center><br>'
+	'You enter the bathroom to pee but as you''re drying your slit you realize that you are too horny to return to the dance floor in this state. You decide to masturbate until you are satiated.”'
+
+      act 'Go back to the dance floor': gt 'restoreposition'
+end
+
+
+act 'Enter the bathroom':
+!Add bonus to energy
+!Add decrease pain heels
+
+	'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/toilet/toilet10.jpg"></center><br>'
+	'You enter the bathroom to rest for a while. While you''re in there you decide to freshen up on your manicure and at the same time rest your feet a little from the heels you''re wearing. As you walk out of the bathroom you feel rejuvenated again.'
+
+      act 'Go back to the dance floor': gt 'restoreposition'
+end
+
+
+act 'Enter the bathroom':
+!Add bonus to Aroused ++
+
+	'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/toilet/toilet11.mp4"></video></center><br>'
+	'You enter the bathroom on deck two, near the kitchen and you get into one of the booths to pee. Suddenly you hear some familiar sounds three booths away from you, there''s a mix of moans and groans that are all too familiar.'
+	'You crawl under the other booths to snoop on what''s happening and you see a Purple Girl riding one of the cooks. You gaze for a while as they both seem to have a great time...'
+
+      act 'Go back to the dance floor': gt 'restoreposition'
+end
+
+
+act 'Enter the bathroom':
+
+	'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/toilet/toilet12.jpg"></center><br>'
+	'You need to pee and you can''t hold it in anymore. You enter the nearest bathroom by the main dance floor and, as usual, there are many other Purple Girls waiting in line.'
+	'<<$OpenInnerThought>> «The line is really long, why did I accept that last drink, my bladder is about to burst... Maybe I should risk it and head inside the men''s bathroom or it might be better to wait in line...»<<$CloseInnerThought>>'
+
+	!! Here 2 acts available: Wait… and Go into the men''s toilet…
+		act 'Wait in line':
+		!Add bonus aesthetic aspect.
+		!Add bonus to Mood.
+		
+		'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/toilet/toilet13.jpg"></center><br>'
+		'The wait finally pays off, you quickly enter one of the booths and relieve yourself. Before you head back, you fix your makeup a bit and gossip with the other girls that are there.'
+
+			act 'Go back to the dance floor': gt 'restoreposition'
+		end
+
+		act 'Enter the men bathroom':
+      
+		'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/toilet/customertoilet.jpg"></center><br>'
+		'Not being able to hold it in you quickly run into men''s restroom that''s only reserved for the guests. You''re aware you shouldn''t be in here because it might get you into trouble...'
+		'Now''s not the time to hesitate, you take a look around and check that the bathroom is empty and you quickly walk into the closest available booth. You relieve yourself as fast as you can and just as you open the booth door you meet one of the clients...'
+		'"What a pleasant surprise!" the man happily shouts, "Just my luck, it''s one of the little sluts with a purple bracelet!"'
+		'"I''m glad I ran into you here, you little whore! I didn''t know the cruise offered this kind of service..."'
+		'"Y-Yeah..." you fearfully answer, knowing that you''ve been caught in a real bad situation and you need to service him the best you can so he doesn''t tell the owners...'
+      	
+			act 'Suck his cock':
+			
+			'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/toilet/blowjob01.mp4"></video></center><br>'
+			'You quickly get on your knees and wrap your lips against his errect cock. As it enters your mouth you feel its warmth and get a taste of his pre-cum.'
+			'<<$OpenInnerThought>> «You know what, <<$pcs_nickname>>?<<$CloseInnerThought>> « you begin thinking to yourself.'
+			'<<$OpenInnerThought>> «I think you love sucking cocks! They are so warm... so hard... so powerful... Oh God, I''m enjoying this more than I thought I would!»<<$CloseInnerThought>>'
+			'"Fuck me! You''re great at this!!!" he tells you, "I''ll have to immortalize with a few photos!"'
+			'The man picks up his cell phone and starts taking pictures of his cock in your mouth.'
+			'"I''ll share all these photos to my friends! Fuck, I''m so close whore! Keep it up, don''t slow down!! As you''ve behaved very well... I''ll let you decide where you want me to unload."'
+			
+			gs 'arousal', 'bj', 5, 'sub'
+				
+				act 'On my face please!!!':
+				!Add decrease clean, attractiveness. –
+				
+				'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/toilet/f1.mp4"></video></center><br>'
+				'"Hurry, show me that beautiful face I want to cover it in spunk!" the man starts yelling as he shoots his load all in your mouth...'
+				*nl
+				'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/toilet/f2.mp4"></video></center><br>'
+				'"God! I''m not done yet." he tells you as he keeps on cumming over your face.'
+				'<<$OpenInnerThought>> «What a relief! I managed to avoid him cumming inside me! Just look at the load! I would''ve ended pregnant if he came inside me.»<<$CloseInnerThought>>'
+				'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/toilet/f3.mp4"></video></center><br>'
+					act 'Go back to the dance floor': gt 'restoreposition'
+      
+				end
+				
+				act 'Cum in my mouth!!':
+				!Add bonus aroused ++
+				'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/toilet/blowjob02.mp4"></video></center><br>'
+				'"Don''t stop sucking! I''m really close now! Aaaaaaaaaaggghhhhhh!" he yells out as he cums inside your mouth. "I''ve been saving all that cum for you..."'
+				*nl
+				'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/toilet/cumaddict.mp4"></video></center><br>'
+				'"I can´t allow anything go to waste, right? you teasingly tell him as you wipe the cum from you chin with your fingers and suck on them, not letting any drop go to waste.'
+				'"I knew all of you are whores but you''re on the next level." he says.'
+				'"I want to become the biggest whore on this ship... and this is one step on the way to become that." you reply him.'
+				'"If the rest of the whores are good as you, I''m definitely going to have a good time." he tells you as he exits the bathroom.'     
+					act 'Go back to the dance floor': gt 'restoreposition'
+      
+				end
+				
+				act 'Fuck him until he cums!!':
+				!Add vaginal creampie!
+				!Add decrease aroused - -
+				'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/toilet/toilet14.mp4"></video></center><br>'
+				'The man grabs your one leg and lifts it to make room as he enters you from behind... as he penetrates you notice something''s off, he is fucking your ass! The pain is unbearable at the first thrusts but as the time passes you get more accustomed to his thrust making you even hornier and you start enjoying the pounding instead.'
+				$orgasm_or = 'yes'
+				$orgasm_txt = '<<$OpenInnerThought>> «Oh my God! Fuck, this cock feels so good! He''s making me orgasm! It must be those damn yellow pills. Oh my God!»<<$CloseInnerThought>>'
+				'The man laughs as he notices you orgasming, "Didn''t even need to fuck you in the pussy to make you orgasm whore. Let''s try the other hole too..."'
+				'The man takes his cock out of your ass and immediately penterates your pussy. As he enters you, you let out a sigh as the contraction from the orgasm still hasn''t resided making your pussy tight. Not being able to contain himself, he finishes within seconds, filling your unprotected pussy with his cum...'
+				'<<$OpenInnerThought>> «Fuck! How many have been cumming inside of me! This is insane!<<$CloseInnerThought>> «”'
+				*nl
+				'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/toilet/cream3.mp4"></video></center><br>'
+					act 'Go back to the dance floor': gt 'restoreposition'
+				end
+			end
+		end
+	end
+end
+
+
+act 'Enter the bathroom':
+	!Add bonus to Mood.
+	'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/toilet/toilet12.jpg"></center><br>'
+	'You need to visit the bathroom and you need to do it now. You enter the nearest bathroom by the main dance floor and as usual there are many Purple Girls standing in line waiting to enter the bathroom.'
+	'<<$OpenInnerThought>> «The line is really long, why did I accept that last drink, my bladder is about to burst... Maybe I should risk it and head inside the men''s bathroom or it might be better to wait in line...»<<$CloseInnerThought>>'
+	
+	!Here 2 acts available: Wait… and Go into the men''s toilet…
+    act 'Wait':
+		
+		'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/toilet/toilet14.jpg"></center><br>'
+		'You paintently wait in line and you enter the bathroom with three other Purple Girls. You relieve yourself and chat with them for a while. The four of you enjoy this short rest.'
+		act 'Go back to the dance floor': gt 'restoreposition'
+	end
+      
+    act 'Head into the men''s bathroom…':
+    
+		'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/toilet/customertoilet.jpg"></center><br>'
+		'"What the fuck are you doing here whore?" he yells, "I need to get one of the security guards over here."'
+		'"Sorry, I''m leaving, I''ve made a mistake! you try to reason with him.'
+		'"You can make it up to me. Come here... and get on your knees! Just like that... very well... now open your fucking mouth!" he yells as he begins to pee in your mouth.'
+		*nl
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/toilet/toilet15.mp4"></video></center><br>'
+		'<<$OpenInnerThought>> «This is really humiliating! I feel so filthy... just like a simple whore that''ll do anything her customers demand her to do... But is it really so bad?»<<$CloseInnerThought>>'	
+		act 'Go back to the dance floor': gt 'restoreposition'
+    end
+end
+
+
+act 'Enter the bathroom':
+	!Add bonus pain high heels 
+	!Add decrease energy (very tired)
+	'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/toilet/toilet16.jpg"></center><br>'
+	'You walk past a bathroom and you see that there is no line formed in front of it. You quickly head in and the first thing you do is to take off your shoes and massage your feet. You are feeling very tired. Maybe you need some stimulant?'	
+      act 'Go back to the dance floor': gt 'restoreposition'
+end
+
+
+act 'Enter the bathroom':
+	!Add aroused ++
+	'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/toilet/toilet17.jpg"></center><br>'
+	'As you enter the bathroom you see another Purple Girl inside. There''s only one booth and the door''s been removed! You wait for her to leave. As she leaves, you sit down to pee and just as you''re about to start a man enters.'
+	'"Whatcha doing?" a man grins, as he enters the bathroom.'
+	'You try to clench your stream and close your legs, but the man keeps grinning and leans against a wall leasurely.'
+	'"Why don''t you show me what you''re doing girl?" he asks. "Show me yours, and maybe I''ll show you mine later..."'
+	'When he notices your hesitation, he says in a soothing voice: "Just spread your legs and let it all go... wouldn''t you feel so much better? It''s just you and me here, there''s nothing to be ashamed of."'
+	'"O-Ok..." you answer as you quickly take off the top, ending up completely naked in the bathroom.'
+	*nl
+	'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/toilet/toilet18.jpg"></center><br>'
+	'You couldn''t hold it back any more, even if you wanted to! With a deep sigh, you spread your legs a little and continue to pee under his gaze. After a few seconds, he pulls out a camera and smiles: "Don''t worry, this''ll stay between you and me! You just look so sexy right now..."'
+	'<<$OpenInnerThought>> «There are some really weird people around here!»<<$CloseInnerThought>> You don''t even notice that your pussy is soaking wet by all the excitment.'
+		act 'Go back to the dance floor': gt 'restoreposition'
+end
+
+
+act 'Enter the bathroom':
+	!Add bonus energy increase +
+	!Add decrease pain high heels 
+	!Add drunk
+	'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/toilet/toilet19.jpg"></center><br>'
+	'You walk past several bathrooms and they''re all preoccupied with the other Purple Girls.' 
+	'Finally you find a free bathroom near the kitchen. You quickly enter it, locking the door behind you. You know this bathroom is off-limits as it''s part of the ship''s crew but you couldn''t care less.'
+	'You take off your shoes, rest for a while and drink from you glass you brought with you...”'
+		act 'Go back to the dance floor': gt 'restoreposition'
+end
+
+
+act 'Enter the bathroom':
+	!Add decrease aroused --
+	'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/toilet/toilet20.mp4"></video></center><br>'
+	'You are dancing with a customer when he tells you to follow him to the VIP bathroom as his cock needs someone to take care of it. You give him a subtle nudge and before you know it your ass is getting streched by his cock...'
+		act 'Go back to the dance floor': gt 'restoreposition'
+end
+
+
+act 'Enter the bathroom':
+	!Add bonus to aroused
+	!Add exhibitionism
+	'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/toilet/toilet21.mp4"></video></center><br>'
+	'You enter the bathroom with a group of Purple Girls to refresh yourself and straighten out your dress. While you''re doing your best to look presentable again, you ask your companions if the dress you wear is too short because the customers are groping you constantly.'
+	'"Not at all! If anything it should be even shorter!" they tell you.'
+	'"Ok, I''ll show more skin!" you reply as you lift your skirt to appear shorter.'
+		act 'Go back to the dance floor': gt 'restoreposition'
+end
+ 
+   
+act 'Enter the bathroom':
+	!Add decrease to aroused - -
+	'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/toilet/toilet22.mp4"></video></center><br>'
+	'These damn yellow pills are keeping you horny all the time. You enter a bathroom and quickly walk into a booth, locking it behind you. As you sit there, you can''t resist to touch your clit... You''re loving these solitary moments...'
+		act 'Go back to the dance floor': gt 'restoreposition'
+end
+
+   
+act 'Enter the bathroom':
+	!Add decrease to aroused - -
+	'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/toilet/toilet23.mp4"></video></center><br>'
+	'The customers won''t stop groping you all the time raising your arousal. Feeling the need to relieve yourself, you walk away to a bathroom booth. You begin masturbating until you feel that you''ve satisfied your needs.'
+		act 'Go back to the dance floor': gt 'restoreposition'
+end
+
+
+act 'Enter the bathroom':
+	!Add clean +
+	'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/toilet/toilet24.jpg"></center><br>'
+	'You enter the bathroom, walk into a booth, and pee. As you finish you realize that there is no toilet paper in the booth...'
+	'"Excuse me... do you have any toilet paper?" you ask the girl sitting in the booth next to you, "There doesn''t seem to be any here."'
+	'"Sure here." she tells you and hands over a roll of paper under the booth.'
+	'"Thanks!" you happily reply as you quickly dry your slit, handing the roll back to the girl.'
+		act 'Go back to the dance floor': gt 'restoreposition'
+end
+
+
+act 'Enter the bathroom':
+	!Add bonus aroused ++ 
+	'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/toilet/toilet12.jpg"></center><br>'
+	'You head towards the bathroom and you notice the long bathroom line. You can''t to hold it in so you enter the men''s bathroom resolutely.'
+	'As you enter you see an other Purple Girl getting furiously fucked by a customer. You watch them for a moment and after a while head into the booth to pee.'
+	*nl
+	'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/toilet/toilet25.mp4"></video></center><br>'
+	'As you''re in the booth peeing, you can still hear the loud moans from the Purple Girl being fucked by the customer. The combinations of the yellow pills and the moaning on the outside are leaving you extremely horny.'
+	'You sigh as your pussy is soaked and feel your nipples harden like chestnuts. <<$OpenInnerThought>> «Oh my God, my nipples are so sensitive right now! If I don''t take action right away, I''ll never be able to calm down.»<<$CloseInnerThought>>'
+	'At the same time you hear the girl''s moans getting louder and that the customer is grunting in tune with her.'
+	'<<$OpenInnerThought>> «I''m sure he''s cumming inside her...<<$CloseInnerThought>> « you think to yourself, <<$OpenInnerThought>> «Fuck! They are enjoying themselves and here am I all alone and horny. I should get out of the booth and immediately search for a boothion who will fuck me like the slut I am!»<<$CloseInnerThought>>'
+	'As you leave the booth you see the happy fuck buddies leaving the bathroom at the same time there''s someone else entering...'
+  
+	act 'Leave the bathroom':
+		'You stare down at the floor as you quickly walk past the surprised man... You take a quick glance back so he doesn''t follow after you. Seeing you''ve made it out without any repercussions you return to the dance floor...'
+
+		act 'Back to the dance floor':gt 'restoreposition'
+	end
+	
+	act 'Kneeling and getting his cock out':
+		!Add decrease aroused - - -
+		'You''re feeling too horny to let go of this opportunity. You quickly kneel before the man and begin touching his cock through the pants.'
+		'"Wow! This is what I call service!" the man says.'
+		'"Give me your cock!" you desperately plead.'
+		*nl
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/toilet/blowjob03.mp4"></video></center><br>'
+		'You begin by blowing him furiously, all while your aroused clitoris is stinging you with a warm itch that is driving you crazy.'
+		'The man''s facial expression tells it all as your quick and passionate sucking is pleasuring him. While you are busy sucking him off your free hand travels down to the vulva and just as you''re about to masturbate, you let go of his cock and instead ask him if you can ride him instead.'
+		'The man laughs loudly, "Of course whore, go ahead!" You quickly squat and lead his cock into your unprotected pussy.'
+		*nl
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/toilet/ridefuck02.mp4"></video></center><br>'
+		!Add vaginal creampie!
+		$orgasm_or = 'yes'
+		'As soon as he penetrates you, an orgasm overwhelms you while your vaginal walls begin having strong contractions that squeeze his cock so hard that you feel his cock twitching ready to explode.'
+		'"Oh shit, I''m going to cum in your filthy pussy, whore!" he manages to grunt.'
+		'Without stopping you continue bouncing up and down, "I don''t care, fill my pussy with your seed..." you beg him, "Please cum inside me, I need to feel your sperm inside me!" you shout and plead. You don''t have to wait for long to receive the reward as after just a few moments you feel a warmth filling your pussy.'
+		'<<$OpenInnerThought>> «I''m such a dirty whore.»<<$CloseInnerThought>>'
+		'The thought of a stranger cumming into your fertile teenage pussy is sending you over the top as you orgasm once again over his cock while your tight pussy walls press out every little drop from his twitching cock.'
+		*nl
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/toilet/cream4.mp4"></video></center><br>'
+		'<<$OpenInnerThought>> «I think I''m starting to become a cum addict! I don''t care if they cum in my mouth, in my pussy or in my ass, I just want to get filled every time.»<<$CloseInnerThought>> you think to yourself while you''re freshining up so you can go back to the dance floor.'
+			act 'Go back to the dance floor': gt 'restoreposition'
+	end
+end
+
+
+
+act 'Enter the bathroom':
+	
+	'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/toilet/customerhall.jpg"></center><br>'
+	'You need to find a bathroom fast! As you enter one of the lower deck halls you manage to find an empty bathroom. In the corner of your eye you see how a drunk customer is fast-approaching you.'
+	'He immediately spots your purple bracelet on your wrist and tells you that he''s horny as hell and wants you to fuck him in his private cabin.'
+	'You answer that it''s against the rules to have sex in the private cabins, but he''s not backing down and instead tells you, "I know... let''s head into the bathroom then."'
+	
+	act 'Go in':
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/toilet/blowjob04.mp4"></video></center><br>'
+		'The two of you go in, he quickly drops his pants and you, obediently, start sucking his cock with great pleasure.'
+		'It doesn''t take long before his cock is twitching and he pushes you face away from him as he begins to jerk off. "Be a good whore and open that mouth of yours." he commands.'
+		'You obediently open your mouth wide open and he shouts and begins to cum.'
+		*nl
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/toilet/trembling.mp4"></video></center><br>'
+		'You swallow all the spunk in your mouth and clean the remains around the mouth, sucking your fingers so that you don''t waste a single drop.'
+		'"You taste great!" you tell him.'
+		'The man smirking answers, "Not bad whore, definitely one of the best blowjobs I''ve had on this cruise."'
+		'"It''s your lucky day." you say teasingly, "You''ve come across the biggest whore on the whole ship."'
+		*nl
+		'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/toilet/cumaddict02.mp4"></video></center><br>'
+		'"You are really the best! One of the most impressive whores on this ship. I''m finally convinced that the cruise was worth it, 40.000€ for 3 days."' 
+		'<<$OpenInnerThought>> «Is he serious? 40.000€ for a ticket? What the fuck! There must be at least 300 customers and about 150 Purple Girls... if they pay the girls...»<<$CloseInnerThought>>'
+		'<<$OpenInnerThought>> «50,000 [rubles] for seven days... and they pick up two rounds of customers per trip... they are earning 16,500,000€ per trip! They''re making bank thanks to the girls...»<<$CloseInnerThought>>'
+		'<<$OpenInnerThought>> «And that''s without counting the extra outings that I know they charge separately...»<<$CloseInnerThought>>'
+		'"I''m ready for another round, this time I want you feel your inside, whore!" You are still amazed by the numbers and not responding as the customer shoves you into a booth...'
+			
+		act 'Fuck him, you have no choice':
+			!Add decrease aroused --
+			'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/toilet/toilet26.mp4"></video></center><br>'
+			'The customer puts on a condom and places himself on the toilet. While you, still stunned by the discovery, mechanically begin riding him...'
+			'<<$OpenInnerThought>> «Sure, I''m a whore, yes... but the bare minimum I will take home is 50,000 [rubles]. I will be 50,000 rubles richer... and I''ve had quite the fun!»<<$CloseInnerThought>>'
+			'Snapping back, you begin to speed up as you tighten your grip on his cock as you ask him, "Do you enjoy my moist pussy?"'
+			'"Yes, it''s one of the best I''ve had up to now!" he answers.'
+			'"No, no, no..." you reply, "It''s not one of the best. It is the best pussy on this whole cruise. And this will be... Aaaaaah... the best fuck you will have!" you scream out while having an orgasm.'
+  
+			act 'Go back to the dance floor': gt 'restoreposition'
+		end
+	end
+end
+
+   
+act 'Enter the bathroom':
+	!Add decrease aroused - -	
+	'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/toilet/toilet12.jpg"></center><br>'
+	'As you head over to the bathroom you notice that the line for it is way longer than you expected. Not wanting to stand in the line and waste your time you head into one of the bathrooms that''s reserved for the customers.'
+	*nl
+	'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/toilet/toilet27.mp4"></video></center><br>'
+	'You take a quick look around before entering and you see that it is empty. You enter and are disappointed to see that in this bathroom, there are no booths only urinals.'
+	'<<$OpenInnerThought>> «If they can so can I!»<<$CloseInnerThought>> You undress from the waist down, raise one leg and start peeing. The yellow pills are keeping you aroused that your hand automatically start rubbing your clitoris.'
+	'<<$OpenInnerThought>> «I''m so horny, right now! I''m going to climax!<<$CloseInnerThought>> « You scream as you orgasm. You try your hardest to quickly clean up and as soon as you''re done you head back to the dance floor.'
+		
+		act 'Go back to the dance floor': gt 'restoreposition'
+end
+
+
+
+--- mod_IbizaToilet ---------------------------------
+

+ 1324 - 0
locations/mod_Ibiza_club.qsrc

@@ -0,0 +1,1324 @@
+# mod_Ibiza_club
+CLOSE ALL
+
+if $ARGS[0] = 'start':
+	$loc = 'mod_Ibiza_club'
+	$metka = 'start'
+	$menu_loc = 'mod_Ibiza_club'
+	$menu_arg = 'start'
+	menu_off = 0
+	$location_type = 'public_outdoors'
+	$sexloc = $curloc
+	*clr & cla
+	minut += 5
+	gs 'stat'
+	gs 'themes', 'indoors'
+	'<center><b><font color="maroon">Night club</font></b></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/club.jpg"></center>'
+	'The entrance area of the club is full of young people. The entrance itself is guarded by the heavy and strong type of men, who check everyones passport. A Ticket costs 250 <b>₽</b>.'
+
+	if ibiza_leaveday = daystart:
+		ibizaQW = 3
+		gt 'mod_IbizaStart', 'First Day'
+	end
+	
+	act 'Return to the city center': minut += 5 & gt 'down'
+
+	if clubwork = 1:
+		act 'Meet Erik for work':
+			*clr & cla
+			menu_off = 1
+			'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/club.jpg"></center>'
+			'You tell the bouncer you are here to work for Erik'
+			'He looks you over.'
+			wait 250
+			if pcs_makeup > 1 and pcs_sweat < 30 and (PCloSkirt > 2 or PCloPants > 4 or $clothingworntype = 'exhibit'):
+				minut += 5
+				'He nods and says something into his walkie-talkie. A couple of minutes later you meet Erik in the foyer.'
+				act 'Talk to him':gt 'mod_Ibiza_club', 'work'
+			elseif PCloStyle = 4:
+				'He shakes his head, if you''re looking for paying clients, try the road by the park this is not a brothel.'
+				act 'Continue':gt 'mod_Ibiza_club', 'start'
+			elseif pcs_sweat >= 30:
+				'"God, you actually smell!"'
+				act 'Continue':gt 'mod_Ibiza_club', 'start'
+			elseif pcs_makeup = 1:
+				'You have to wear some makeup to start your work.'
+				act 'Continue':gt 'mod_Ibiza_club', 'start'
+			else
+				'He tells you that you are over-dressed, you need to wear something shorter, or much more daring if you want to work.'
+				act 'Continue':gt 'mod_Ibiza_club', 'start'
+			end
+		end
+	end
+
+	if money >= 250:
+		act 'Enter the club (250 <b>₽</b>)':
+			menu_off = 1
+			if pcs_makeup > 1 and pcs_sweat < 30 and (PCloSkirt > 2 or PCloPants > 4 or $clothingworntype = 'exhibit'):
+				'You can feel his eyes all over your body, but eventually he nods and lets you inside.'
+				minut += 5
+				money -= 250
+				frost = 0
+				gt 'mod_Ibiza_club', 'inside'
+			elseif PCloStyle = 4:
+				cla
+				'He shakes his head, if you''re looking for paying clients, try the road by the park this is not a brothel.'
+				act 'Continue':gt 'mod_Ibiza_club', 'start'
+			elseif pcs_sweat >= 30:
+				cla
+				'The bouncer shakes his head. "God, girl, you actually smell!"'
+				act 'Continue':gt 'mod_Ibiza_club', 'start'
+			elseif pcs_makeup = 1:
+				cla
+				'The bouncer shakes his head. "At least wear some makeup, girl."'
+				act 'Continue':gt 'mod_Ibiza_club', 'start'
+			else
+				cla
+				'The bouncer shakes his head. "Don''t you have some sexy clothes?"'
+				act 'Continue':gt 'mod_Ibiza_club', 'start'
+			end
+		end
+	end
+end
+
+if $ARGS[0] = 'inside':
+	$loc = 'mod_Ibiza_club'
+	$metka = 'inside'
+	$menu_loc = 'mod_Ibiza_club'
+	$menu_arg = 'inside'
+	menu_off = 0
+	$location_type = 'public_indoors'
+	*clr & cla
+	minut += 5
+	frost = 0
+	gs 'stat'
+	gs 'themes', 'indoors'
+	'<center><b><font color="maroon">Night club</font></b></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/club9.jpg"></center>'
+	'The music here is loud and the bass is thumping. You see a laser show on the stage and on the poorly lit dancefloor you see the people dancing, like there''s no tomorrow.'
+	!!* Ibiza start event
+
+	!!* 1/6 	Skills: Dance, Pole Dance and Erotic dancer  85+
+	!!* 1/6		Skills: Inhibition 85+
+	!!* 2/6 	Nightclub job. +10 times
+	!!* 3/5 	Fame of slut in Pavlovsk, Gadukino or city. Enough one of them
+	!!* 4/5 	18 years old or fake identity
+	!!* 5/5 	College diploma
+	!!* Changed College diploma requirement to just being a University Student
+
+
+	if  ibizaday ! daystart and ibizaQW = 0 and rand(0,20) >= 0 and (ibizatest = 1 or (pcs_danc >= 85 and pcs_dancero >= 85 and pcs_dancpol >= 85 and pcs_inhib >= 85 and clubjob > 10 and (pav_slut >= 125 or city_slut >= 75 or oldtown_slut >= 75 or village_slut >= 75) and (fakepassport = 1 or age >= 18) and student = 1)):
+		ibizaday = daystart
+		gt 'mod_IbizaStart', 'start'
+	end
+	
+	!!* if said no the first time option for it 30 days later
+	if ibiza_cooldown + 30 > daystart and rand(0,20) = 0 and ibizaday = daystart:
+		ibizaday = daystart
+		gt 'mod_IbizaStart', 'another time'
+	end
+	*nl
+	'There is also a <a href="exec:gt ''mod_Ibiza_club'', ''vip''">vip-room</a>.'
+	
+	if hour >= 18 and pcs_apprnc > 88 and clubwork = 0 and clubno = 0 and rand (0,10) = 0:
+		*clr & cla
+		menu_off = 1
+		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/club11.jpg"></center>'
+		'You are approached by a man in a suit, at first you think he must be security, but his suit looks too expensive.'
+		'"Hi there, my name''s Erik, I''m the promoter for the club. I''m looking for someone for some casual work and you have the right look."'
+		act 'Hear him out':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/club11.jpg"></center>'
+			'"The club opens at 6pm you can work for an hour at a time upto 1am. The jobs vary according to time and demand, It includes finding customers to bring to the club, promoting drinks and some dancing."'
+			'"The pay depends on results, get more people in, get people taking up drink promotions or dance well and you get 200 <b>₽</b>. Do worse, you get less, do well, you get a bonus. When you finish you can stay in the club, so you get free entry."'
+			'"So, are you interested?"'
+			act 'No':clubno = 1 & gt 'mod_Ibiza_club', 'inside'
+			act 'Yes':
+				*clr & cla
+				clubwork = 1
+				'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/club11.jpg"></center>'
+				'You tell Erik you are interested and he takes your details.'
+				'"Great <<$pcs_nickname>>, you can find me here, and I''ll place your details on the door so you can get in, but you still have to do your makeup and dress for clubbing."'
+				act 'Return':gt 'mod_Ibiza_club', 'inside'
+			end
+		end
+
+		exit
+	end
+
+	act 'Leave the club':
+		cla
+		drunk = 0
+		minut += 5
+		gt 'down'
+	end
+	
+	if hour >= 18 and clubwork = 0 and clubno = 1:
+		act 'Look for the promoter':
+			*clr & cla
+			menu_off = 1
+			minut += 5
+			'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/club11.jpg"></center>'
+			'You search the club for a few minutes, before finding the promoter.'
+			if pcs_apprnc > 88:
+				'He asks you if you''ve changed your mind and want to do some work for him.'
+				act 'No':clubno = 1 & gt 'mod_Ibiza_club', 'inside'
+				act 'Yes':
+					cla
+					*clr
+					clubwork = 1
+					clubno = 0
+					'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/club11.jpg"></center>'
+					'You tell Erik you are interested and he takes your details.'
+					'"Great <<$pcs_nickname>>, you can find me here, and I''ll place your details on the door so you can get in, but you still have to do your makeup and dress for clubbing."'
+					act 'Return':gt 'mod_Ibiza_club', 'inside'
+				end
+			else
+				'You ask him about work, but he says your just not pretty enough and walks off. You are shocked enough that you just stand there and watch him walk away.'
+			end
+
+			exit
+		end
+	end
+
+	if hour <= 3 or hour >= 18:
+		act 'Use the toilet':gt 'mod_Ibiza_club', 'toi'
+		act 'Go to the dance floor':gt 'mod_Ibiza_club', 'dance'
+		act 'Go to the bar':gt 'mod_Ibiza_club', 'bar'
+	end
+
+	if (hour < 1 or hour >= 18) and clubwork = 1:
+		act 'Find Erik for work':
+			*clr & cla
+			minut += 5
+			'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/club11.jpg"></center>'
+			'You search around and it only takes a few minutes to find Erik in his suit.'
+			act 'Talk to him':gt 'mod_Ibiza_club', 'work'
+		end
+	end
+end
+
+if $ARGS[0] = 'toi':
+	$menu_loc = 'mod_Ibiza_club'
+	$menu_arg = 'toi'
+	menu_off = 0
+	*clr & cla
+	gs 'stat'
+	'Shit, there''s a very long queue in front of the womens toilet. You can''t tell how long this is going to take.'
+
+	act 'Wait in line':
+		cla
+		menu_off = 1
+		minut += rand(10, 30)
+		gs 'stat'
+		'Finally there''s an empty booth.'
+
+		act 'WC':gt 'mod_Ibiza_club', 'tou'
+	end
+
+	act 'Sneak into the mens toilet':
+		cla
+		menu_off = 1
+		acta += 1
+		'You slip unnoticed into the men''s toilet room.'
+
+		act 'Find a free cubicle':
+
+			if TQuest = 0 and pcs_horny < 50:
+				gt 'mod_Ibiza_club', 'tou'
+			elseif TQuest = 0 and pcs_horny >= 50:
+				gt 'mod_Ibiza_club2', 'toilet'
+			elseif TQuest = 1:
+				gt 'mod_Ibiza_club2', 'toilet1'
+			elseif TQuest = 2:
+				gt 'mod_Ibiza_club2', 'toilet2'
+			elseif TQuest >= 3 and rand(1, 100) < 60:
+				gt 'mod_Ibiza_club', 'tou'
+			elseif TQuest >= 3:
+				gt 'mod_Ibiza_club2', 'toilet1'
+			end
+		end
+	end
+
+	act 'Return to the dancefloor':gt 'mod_ibiza_club', 'inside'
+end
+
+if $ARGS[0] = 'tou':
+	$metka = 'tou'
+	$loc = 'mod_Ibiza_club'
+	$locM = 'mod_Ibiza_club'
+	$metkaM = 'tou'
+    $location_type = 'bathroom'
+	$menu_loc = 'mod_Ibiza_club'
+	$menu_arg = 'tou'
+	menu_off = 0
+	*clr & cla
+	minut += 5
+	gs 'stat'
+	gs 'themes', 'indoors'
+	'<center><b><font color="maroon">WC</font></b></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/club3.jpg"></center>'
+	*nl
+
+	act 'Leave the toilet':gt 'mod_Ibiza_club', 'inside'
+	
+	act 'Look in the mirror': gt 'mirror', 'start'
+	if pcs_hairbsh = 0: act 'Brush your hair': gt 'mirror', 'brush'
+
+	dynamic $tampon
+	dynamic $quickwash
+	dynamic $basin
+	dynamic $removepan
+end
+
+if $ARGS[0] = 'dance':
+	*clr & cla
+	$menu_loc = 'mod_Ibiza_club'
+	$menu_arg = 'dance'
+	menu_off = 0
+	gs 'stat'
+	'<center><b><font color="maroon">The dance floor</font></b></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/club9.jpg"></center>'
+	'The club is filled to the brink with people. Most of who are out on the dancefloor.'
+	act 'Leave the dance floor':gt 'mod_Ibiza_club', 'inside'
+
+	if hour <= 3 or hour >= 18:
+		act 'Dance (0:15)':
+			*clr & cla
+			menu_off = 1
+			minut += 15
+			pcs_stam -= 5
+			pcs_sweat += 3
+			fat -= 1
+			danc_exp += 1
+			pcs_mood += 10
+			pcs_willpwr += 10
+			if pcs_inhib < 40 and clubd_inhib ! daystart:
+				inhib_exp += rand(1,2)
+				clubd_inhib = daystart
+			end
+			clrand = rand(0, 400)
+			'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/club4.jpg"></center>'
+			'The dancefloor is crowded, you can put a hand on his shoulder one guy to make a couple of steps and pressed her chest already to another, and in the dance, how much one can do in dance.'
+
+			if pcs_apprnc >= clrand:
+				pcs_horny += 1
+				gs 'boy'
+				'While you''re dancing you feel someone grab your ass, you turn around and see <<$boybody>> <<$boybod>> <<$boyface>>. He''s <<$boyClo>>'
+
+				act 'Stop dancing':gt 'mod_Ibiza_club', 'inside'
+				
+				act 'Dance with him':
+					*clr & cla
+					'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/club8.jpg"></center>'
+					'You continue to dance with the guy on the dancefloor, but he doesn''t stop groping your ass. This random guy touching you in public, somehow excites you.'
+
+					gs 'arousal', 'foreplay', 30, 'sub', 'exhibitionism'
+					gs 'stat'
+					
+					if pcs_horny < 90:
+						act 'Return to the dance floor':gt 'mod_Ibiza_club', 'dance'
+					end
+
+					act 'Kiss':
+						cla
+						
+						dansexclub = rand(0, 1)
+
+						if dansexclub = 1:
+							'You''re passionately kissing this guy, while he''s continuously groping you, dedicating one of his hands to either your tits or your ass. "Why don''t we go to the VIP-Area. There we''ll have a bit more privacy.", he says inbetween kisses.'
+							
+							gs 'arousal', 'kiss', 15, 'sub'
+							gs 'stat'
+							picrand = 38
+
+							if pcs_horny < 70: act 'Return to the dance floor':gt 'mod_Ibiza_club', 'dance'
+
+							act 'Go to Vip-room with the guy':$sexloc = 'vipclub' & xgt 'sex', 'var'
+						elseif dansexclub = 0:
+							'You''re passionately kissing the guy, while he''s continously groping you, always dedicating one of his hands to either your tits or your ass. "Let''s go to the toilet.", he says with a smile.'
+
+							gs 'arousal', 'kiss', 15, 'sub'
+							gs 'stat'
+							
+							if pcs_horny < 70: act 'Return to the dance floor':gt 'mod_Ibiza_club', 'dance'
+
+							act 'Go to the toilet with a guy':gt 'mod_Ibiza_club', 'sex'
+						end
+					end
+				end
+
+				if clrand > 85:
+					*clr & cla
+					'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/dancelezb.jpg"></center>'
+					'While you''re dancing a hand touches your ass. You turn around to see who grabbed you, and you''re surprised to see women , biting her lip, smiling at you.'
+					dansexclub = rand(0, 1)
+
+					act 'Stop dancing':gt 'mod_Ibiza_club', 'inside'
+					if dansexclub = 0:
+						act '"Follow me."':gt 'mod_Ibiza_club', 'lezbsort'
+					elseif dansexclub = 1:
+						picrand = rand(13, 17)
+
+						act '"Let''s go to VIP-Room, to have fun."':$sexloc = 'vipclub' & xgt 'lezbsex', 'var'
+					end
+				end
+			end
+
+			act 'Go away':gt 'mod_Ibiza_club', 'dance'
+		end
+
+		act 'Go up to the DJ (0:30)':
+			*clr & cla
+			menu_off = 1
+			minut += 30
+			'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/club7.jpg"></center>'
+
+			if alexeyQW = 0:'The DJ ignores you.'
+			if alexeyQW > 0 and alexeySex = 0:
+				'Alexei looks up and smiles at you, as he recognizes you from the vocal school.'
+			elseif alexeyQW > 0 and alexeySex > 0:
+				'When Alexei sees you, he invites you to join him in the DJ booth.'
+
+				act 'Enter the booth':
+					*clr & cla
+					minut += 30
+					gs 'stat'
+					'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/club7.jpg"></center>'
+					'Alexei barely talks to you as he''s only paying attention to the music.'
+
+					if alexeyClubSex = 3 and sashaClubQW = 0:
+						sashaClubQW = 1
+						'A man, who seems to be somewhere in forties, enters the booth. He has a large belly, has a bald head and is wearing glasses. Alexei greets him and introduces him as Alexander E. to you, and he''s the owner of the club.'
+						'Alexander had a small talk with Alexei before he leaves.'
+
+						act 'Leave the booth':gt 'mod_Ibiza_club', 'dance'
+
+						exit
+					end
+
+					if alexeyClubSex ! 3 or sashaClubQW > 0:
+						act 'Leave the booth':gt 'mod_Ibiza_club', 'dance'
+
+						act 'Get on your knees and give him a BJ':
+							*clr & cla
+							alexeySex += 1
+							alexeyClubSex += 1
+							gs 'stat'
+							picrand = rand(29, 41)
+							'<center><img <<$set_imgh>> src="images/shared/sex/blowjob/bj<<picrand>>.jpg"></center>'
+							'You kneel down and wrap your <<$liptalk>> around his cock and you begin to suck on it. Alexei helped by moving his hips back and forth, you notice his moving is in sync to the beat of the music he''s playing. After a few minutes he groans, "You better swallow it all, I don''t want anyone to clean up our mess."'
+							
+							gs 'arousal', 'bj', 10, 'sub'
+							gs 'stat'
+
+							act 'He''s cumming':
+								*clr & cla
+								pcs_horny += 10
+								minut += 10
+								swallow += 1
+								gs 'boystat', 'A81'
+								sexpartkno = 1
+								spafinloc = 12
+								gs 'cum_manage'
+								gs 'stat'
+								picrand = rand(34, 47)
+								'<center><img <<$set_imgh>> src="images/shared/sex/cum/mouth/cum<<picrand>>.jpg"></center>'
+								'Streams of sperm hit you in the mouth and began to run down your <<$liptalk>>. Alexei wiped his dick on your <<$liptalk>> and puts it back in his pants.'
+								'You greedily swallow his warm cum and use your finger to collect the drips, that escaped your mouth, licking your fingers clean. Once you''ve enjoyed every last drop, you stand up and thank him for such a tasty snack.'
+
+								gs 'arousal', 'end'
+								gs 'stat'
+								
+								act 'Leave the booth':gt 'mod_Ibiza_club', 'dance'
+							end
+						end
+					end
+				end
+			end
+
+			act 'Leave the booth':gt 'mod_Ibiza_club', 'dance'
+		end
+	else
+		menu_off = 1
+		'Its getting late and the music stops, looks like it might be time to go home.'
+		act 'Leave the dance floor': gt 'mod_Ibiza_club', 'inside'
+	end	
+end
+
+if $ARGS[0] = 'bar':
+	*clr & cla
+	minut += 5
+	$menu_loc = 'mod_Ibiza_club'
+	$menu_arg = 'bar'
+	menu_off = 0
+	gs 'stat'
+	'<center><b><font color="maroon">bar</font></b></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/club10.jpg"></center>'
+	'You squeeze yourself through the crowd to get to the bar. On your way, random hands touch you, guys offer drinks or ask you to dance, some even try to grope your tits or ass while others play the white knight and try to get your attention by protecting you.'
+
+	if pcs_apprnc > 56:barsexrand = rand(0, 10)
+	if barsexrand = 1:gt 'mod_Ibiza_club', 'bar0'
+	if barsexrand = 2:gt 'mod_Ibiza_club', 'bar1'
+
+	act 'Go back':gt 'mod_Ibiza_club', 'inside'
+
+	if alko >= 7:
+		*clr & cla
+		menu_off = 1
+		temp = rand(0, 100)
+
+		if temp = 5:
+			pcs_horny += 5
+			gs 'stat'
+			'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/club1.jpg"></center>'
+			'You''re so drunk, you barely remember where you live.'
+
+			act 'Try to go home':gt 'street'
+
+			exit
+		elseif temp = 6:
+			gs 'stat'
+			'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/club2.jpg"></center>'
+			gs 'npcgeneratec', 0, 'male stripper', rand(18,22)
+			gs 'boyStat', $npclastgenerated
+			sexpartkno = 1
+			spafinloc = 12
+			gs 'cum_manage'
+			'The last thing you remember is sucking male stripper''s cock.'
+			'You''re too drunk to continue partying so the security escorts you out.'
+
+			gs 'arousal', 'bj', 10, 'sub'
+			gs 'arousal', 'end'
+			gs 'stat'
+							
+			act 'Leave':gt 'down'
+
+			exit
+		elseif temp = 7:
+			gs 'stat'
+			'<center><img <<$set_imgh>> src="images/shared/sex/public/ivrand4.jpg"></center>'
+			gs 'npcgeneratec', 0, 'Club Dancer', rand(18,26)
+			gs 'boyStat', $npclastgenerated
+			spafinloc = 12
+			gs 'cum_manage'
+			'The last thing you remember is sucking someones cock in the middle of the dancefloor.'
+			'Too drunk to continue partying, security asks you to leave.'
+
+			gs 'arousal', 'bj', 10, 'sub', 'exhibitionism'
+			gs 'arousal', 'end'
+			gs 'stat'
+			
+			act 'Leave':gt 'down'
+
+			exit
+		elseif temp = 8:
+			pcs_horny += 5
+			gs 'stat'
+			'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/club5.jpg"></center>'
+			'The last thing you remember is taking people''s drink orders.'
+			'Too drunk to stand, security helps you leave.'
+
+			act 'Leave':gt 'down'
+
+			exit
+		elseif temp = 9:
+			gs 'stat'
+			'<center><img <<$set_imgh>> src="images/shared/sex/public/ivrand6.jpg"></center>'
+			'You vaguely remember seeing a girl is bent over a table being taken from behind.'
+			'You stumble out of the club determined to make it home.'
+
+			gs 'arousal', 'voyeur', 10
+			gs 'arousal', 'end'
+			gs 'stat'
+			
+			act 'Leave':gt 'down'
+
+			exit
+		elseif temp = 10:
+			gs 'stat'
+			'<center><img <<$set_imgh>> src="images/shared/sex/public/ivrand7.jpg"></center>'
+			'You see a small group of girl loosing it on the dancefloor. They''re moving like there''s no tomorrow.'
+			'Trying to join them, you stumble and security decides you''ve had enough.'
+
+			gs 'arousal', 'voyeur', 10
+			gs 'arousal', 'end'
+			gs 'stat'
+			
+			act 'Leave':gt 'down'
+
+			exit
+		elseif temp = 11:
+			gs 'stat'
+			'<center><img <<$set_imgh>> src="images/shared/sex/public/ivrand8.jpg"></center>'
+			'You stare drunkenly at two hot girls passionately making out until security escorts you out.'
+
+			gs 'arousal', 'voyeur', 10
+			gs 'arousal', 'end'
+			gs 'stat'
+			
+			act 'Leave':gt 'down'
+
+			exit
+		elseif temp = 12:
+			gs 'stat'
+			'<center><img <<$set_imgh>> src="images/shared/sex/public/ivrand9.jpg"></center>'
+			'You vaguely recall watching some girl crawl around under a table looking for her phone, you think?, while baring her assets for all to see.'
+			'Trying to help you bump into security who tell you to go home.'
+
+			gs 'arousal', 'voyeur', 10
+			gs 'arousal', 'end'
+			gs 'stat'
+			
+			act 'Leave':gt 'down'
+
+			exit
+		elseif temp = 13:
+			gs 'stat'
+			'<center><img <<$set_imgh>> src="images/shared/sex/public/ivrand10.jpg"></center>'
+			'You notice a women giving a blowjob, then the women opens her mouth, with the cock in her hand while the guy pours champangne into her mouth.'
+			'You''re too drunk to continue partying here. The security has to escort you out.'
+
+			gs 'arousal', 'voyeur', 10
+			gs 'arousal', 'end'
+			gs 'stat'
+			
+			act 'Leave':gt 'down'
+
+			exit
+		elseif temp = 14:
+			gs 'stat'
+			'<center><img <<$set_imgh>> src="images/shared/sex/public/ivrand11.jpg"></center>'
+			'You happen to notice a small group of drunken girls giggling. One of which is fingering the pussy of another girl.'
+			'You''re too drunk to continue partying here. The security has to escort you out.'
+
+			gs 'arousal', 'voyeur', 10
+			gs 'arousal', 'end'
+			gs 'stat'
+			
+			act 'Leave':gt 'down'
+
+			exit
+		elseif temp = 15:
+			gs 'stat'
+			'<center><img <<$set_imgh>> src="images/shared/sex/public/ivrand12.jpg"></center>'
+			'The last thing you can remember is dancing closely with a black guy, with his hands on your hips.'
+			'You''re too drunk to continue partying here. The security has to escort you out.'
+
+			gs 'arousal', 'foreplay', 10, 'exhibitionism'
+			gs 'arousal', 'end'
+			gs 'stat'
+			
+			act 'Leave':gt 'down'
+
+			exit
+		elseif temp = 16:
+			gs 'stat'
+			'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/club13.jpg"></center>'
+			'The last thing you remember dancing with a random guy.'
+			'You''re too drunk to continue partying here. The security has to escort you out.'
+
+			gs 'arousal', 'kiss', 10
+			gs 'arousal', 'end'
+			gs 'stat'
+			
+			act 'Leave':gt 'down'
+
+			exit
+		elseif temp = 17:
+			gs 'stat'
+			'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/club14.jpg"></center>'
+			'The last thing you remember is dancing half naked in front of everyone.'
+			'You''re too drunk to continue partying here. The security has to escort you out.'
+
+			gs 'arousal', 'flash', 10, 'exhibitionism'
+			gs 'arousal', 'end'
+			gs 'stat'
+			
+			act 'Leave':gt 'down'
+
+			exit
+		elseif temp = 18:
+			gs 'stat'
+			'<center><img <<$set_imgh>> src="images/shared/sex/public/ivrand15.jpg"></center>'
+			'You see a guy and a girl on the dancefloor kissing each other. The guy however uses one of his hands to have some fun with the girls pussy.'
+			'You''re too drunk to continue partying here. The security has to escort you out.'
+
+			gs 'arousal', 'voyeur', 10
+			gs 'arousal', 'end'
+			gs 'stat'
+			
+			act 'Leave':gt 'down'
+
+			exit
+		elseif temp = 19:
+			gs 'stat'
+			'<center><img <<$set_imgh>> src="images/shared/sex/public/ivrand16.jpg"></center>'
+			'You can see a drunken girl spreading her legs on one of the bar stools, she''s not wearing any panties and the bloke next to her takes the opportunity and fingers the girl.'
+			'You''re too drunk to continue partying here. The security has to escort you out.'
+
+			gs 'arousal', 'voyeur', 10
+			gs 'arousal', 'end'
+			gs 'stat'
+			
+			act 'Leave':gt 'down'
+
+			exit
+		elseif temp = 20:
+			gs 'stat'
+			'<center><img <<$set_imgh>> src="images/shared/sex/public/ivrand17.jpg"></center>'
+			'You can see a guy hugging and kissing a drunken girl, while another guy sucks on her exposed tits.'
+			'You''re too drunk to continue partying here. The security has to escort you out.'
+
+			gs 'arousal', 'voyeur', 10
+			gs 'arousal', 'end'
+			gs 'stat'
+			
+			act 'Leave':gt 'down'
+
+			exit
+		elseif temp = 21:
+			gs 'stat'
+			'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/club21.jpg"></center>'
+			'You see a girl as drunk as you attempting taking a picture of her panties.'
+			'You''re too drunk to continue partying here. The security has to escort you out.'
+			
+			gs 'arousal', 'voyeur', 10
+			gs 'arousal', 'end'
+			gs 'stat'
+
+			act 'Leave':gt 'down'
+
+			exit
+		elseif temp = 22:
+			gs 'stat'
+			'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/club22.jpg"></center>'
+			'You see a girl lying on the dancefloor passed out drunk. Someone has taken her panties, exposing her private parts.'
+			'You''re too drunk to continue partying here. The security has to escort you out.'
+
+			gs 'arousal', 'voyeur', 10
+			gs 'arousal', 'end'
+			gs 'stat'
+			
+			act 'Leave':gt 'down'
+
+			exit
+		elseif temp = 23:
+			gs 'stat'
+			'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/club23.jpg"></center>'
+			'You see a girl lying on the dancefloor passed out drunk. Someone has lifted her skirt, exposing her panties to everyone.'
+			'You''re so drunk that you fell asleep on the spot. A man from the security had to wake you up and escorted you out.'
+
+			gs 'arousal', 'voyeur', 10
+			gs 'arousal', 'end'
+			gs 'stat'
+			
+			act 'Leave':gt 'down'
+
+			exit
+		elseif temp = 24:
+			gs 'stat'
+			'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/club24.jpg"></center>'
+			'The last thing you''re able to remember is peeing in mens bathroom.'
+			'You''re too drunk to continue partying here. The security has to escort you out.'
+
+			gs 'arousal', 'voyeur', 10
+			gs 'arousal', 'end'
+			gs 'stat'
+			
+			act 'Leave':gt 'down'
+
+			exit
+		elseif temp > 24:
+			gs 'stat'
+			'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/club25.jpg"></center>'
+			'You see a girl lying on a parcel passed out drunk. You can clearly see her panties.'
+			'You''re so drunk that you fell asleep on the spot. A man from the security had to wake you up and escorted you out.'
+
+			gs 'arousal', 'voyeur', 10
+			gs 'arousal', 'end'
+			gs 'stat'
+			
+			act 'Leave':gt 'down'
+
+			exit
+		end
+	end
+
+	if money >= 300:
+		act 'Buy a drink (300 <b>₽</b>)':
+			*clr & cla
+			menu_off = 1
+			minut += 15
+			fat += 1
+			pcs_mood += 10
+			pcs_willpwr += 10
+			alko += 3
+			pcs_breath = 0
+			cumspclnt = 2
+			gs 'cum_cleanup'
+			pcs_horny += rand(10, 50)
+			money -= 300
+			frost = 0
+			'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/club6.jpg"></center>'
+			'You find a free bar stool and sit down on it. You ask the barkeeper to mix you a cocktail and a few moments later, you sipping on a sweet one.'
+
+			act 'Stand up':gt 'mod_Ibiza_club', 'bar'
+		end
+	end
+end
+
+if $ARGS[0] = 'sex':
+	*clr & cla
+	menu_off = 1
+	dynamic $venerasiakOral
+	gs 'npcgeneratec', 0, 'stranger from the club', rand(18,26)
+	gs 'boyStat', $npclastgenerated
+	dick = rand(10, 18)
+	gs 'stat'
+	'<center><b><font color="maroon">toilet stall</font></b></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/sex.jpg"></center>'
+	'You go with the guy to the men''s toilet and he drags you into one of the free booths. He starts to caress your breasts and pussy, then helps you out of your clothes.'
+
+	gs 'arousal', 'foreplay', 5
+	gs 'stat'
+	
+	act 'Give him a blowjob':
+		cla
+		*clr
+		guy += 1
+		pcs_horny += 5
+		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/sex/clubbj.jpg"></center>'
+		dynamic $venerasiakOral
+		gs 'arousal', 'bj', 5, 'sub'
+		gs 'stat'
+
+		act 'Take his cock out of your mouth':
+			cla
+			*clr
+
+			if harakBoy = 0:
+				'<center><img <<$set_imgh>> src="images/shared/sex/handjob/hand.jpg"></center>'
+				spafinloc = 13
+				gs 'cum_manage'
+				'You take his cock and point it away from you. He groans as he cums and most of his cum splatters onto the floor, with a few drips covering your hand.'
+			elseif harakBoy = 1:
+				act 'Point his cock at the floor':
+					cla
+					'<center><img <<$set_imgh>> src="images/shared/sex/handjob/hand.jpg"></center>'
+					spafinloc = 13
+					gs 'cum_manage'
+					'You take his cock and point it away from you. He groans as he cums and most of his cum splatters onto the floor, with a few drips covering your hand.'
+
+					act 'Stand up':gt 'mod_Ibiza_club', 'tou'
+				end
+
+				act 'Let him cum on your face':
+					cla
+					facial += 1
+					spafinloc = 11
+					gs 'cum_manage'
+					'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/sex/clubfacial1.jpg"></center>'
+					'You grab his cock and point his "gun" at your face. He groans as he cums and you feel hot streams of semen covering your face.'
+
+					act 'Stand up':gt 'mod_Ibiza_club', 'tou'
+				end
+
+				exit
+			elseif harakBoy = 2:
+				facial += 1
+				spafinloc = 11
+				gs 'cum_manage'
+				SUB += 1
+				'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/sex/clubfacial.jpg"></center>'
+				'The bloke grabs your hair and cums on your face. You quickly close your eyes, but it''s too late, a few drips of semen make it into your eyes. It stings a bit.'
+			end
+
+			act 'Stand up':gt 'mod_Ibiza_club', 'tou'
+		end
+
+		act 'Swallow his load':
+			cla
+			*clr
+			swallow += 1
+			spafinloc = 12
+			gs 'cum_manage'
+			'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/sex/clubswallow.jpg"></center>'
+			'The guy cums in your mouth, his hot and salty semen pouring into it. Without hesistation you swallow it, you can''t tell why, but somehow your enjoying the taste of fresh, warm sperm.'
+
+			gs 'arousal', 'end'
+			gs 'stat'
+			
+			act 'Stand up':gt 'mod_Ibiza_club', 'tou'
+		end
+	end
+
+	act 'Doggy-Style':
+		*clr & cla
+		guy += 1
+		pcs_vag += 1
+		cumprecheck = 1
+		gs 'cum_manage'
+		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/sex/clubsex.jpg"></center>'
+		'You turn around and kneel on the toilet seat. "Fuck me", you say and present your ass and pussy to him.'
+		'You don''t have to tell him twice, he grabs your hips, positions his cock infront of your pussy and with a strong push he enters your vagina. You moan with pleasure and you are surprised by the sheer force he used to enter you.'
+		'He grunts heavy as he fucks you like the bitch in heat that you are. He continues with force and speed, if he''s slowing down, you can''t notice it, but it doesn''t take long and both of you are reaching the state of orgasm.'
+		'You look at him, "Don''t you dare to cum inside.". In between his grunts he nods and a few seconds later he cums outside of you, you are relived that he at least acts a bit like a gentleman.'
+		spafinloc = 14
+		gs 'cum_manage'
+		
+		gs 'arousal', 'vaginal', 5, 'sub'
+		gs 'stat'
+		
+		if pcs_horny > 90:
+			$orgasm_or = 'custom'
+			$orgasm_txt = 'As your heartbeat slows and you begin to catch your breath, you realize your arousal has peaked, a warmth fills you and your eyes lose focus.'
+		end
+		'You recover to find yourself alone in the cubicle and quickly re-dress.'
+		
+		gs 'arousal', 'end'
+		gs 'stat'
+		
+		act 'Leave cubicle':gt 'mod_Ibiza_club', 'tou'
+	end
+end
+
+if $ARGS[0] = 'bar0':
+	*clr & cla
+	menu_off = 1
+	'<center><b><font color="maroon">Bar</font></b></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/sex/bar0.jpg"></center>'
+	'Sitting at the bar, a woman walks up to you and begins to chat with you.'
+	'During the conversation you get the feeling that she''s flirting with you and before you can even react, her hands wander your body, giving you a sensational feeling.'
+
+	act 'Move away from her':gt 'mod_Ibiza_club', 'bar'
+
+	act 'Kiss her':
+	*clr & cla
+		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/sex/bar1.jpg"></center>'
+		'Her flirting worked. You move closer to her and kiss her. At first, it feels weird for you, kissing a random woman that is, but it doesn''t take long for the kissing to move from awkward to passionately..'
+		gs 'fame', 'city', 'sex', 1
+		gs 'arousal', 'kiss', 5, 'lesbian', 'exhibitionism'
+		gs 'stat'
+		
+		act 'Ask her to join you in the restroom':gt 'mod_Ibiza_club', 'lezbsort'
+
+!!* was too easy to just have sex here
+		if (city_slut > 75 and pcs_horny > 60) or (pcs_inhib > 40 and alko > 5 and pcs_horny > 50):
+			act 'Undress her':
+				cla
+				*clr
+				girl += 1
+				'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/sex/bar2.jpg"></center>'
+				'You remove her top and begin to caress and kiss her breasts. You suck on her nipples while your hand unbuttons her pants and slip your hand in to get a feel for her pussy. You are a bit surprised to find an already moistened pussy.'
+				gs 'fame', 'city', 'sex', 5
+				gs 'arousal', 'foreplay', 5, 'lesbian', 'exhibitionism'
+				gs 'stat'
+		
+				act 'Lick her pussy':
+					cla
+					*clr
+					'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/sex/bar3.jpg"></center>'
+					'"Wait a second, let me help you with my pants.", she says, panting softly into your ear, while she drops her pants. Then she sat down on a bar stool and you moved her panty aside and began to lick her womanly folds.'
+					'Moments later, she moans heavy and cums. You look up to her and giggle softly. "Why don''t we switch and I make you feel good now?", she says, still panting heavy.'
+
+					gs 'arousal', 'cuni_give', 5, 'lesbian', 'exhibitionism'
+					gs 'stat'
+		
+					act 'Switch positions':
+						cla
+						*clr
+						pcs_horny = 0
+						'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/sex/bar4.jpg"></center>'
+						'You stand up and she goes down on you, starting to lick your flower and sticking two fingers into your now wet cunt. She''s very skilled with her tongue and it takes her only minutes to make you cum.'
+						'You''re blissfully smiling at her. "Thank you.", you say to her..'
+
+						$orgasm_or = 'yes'
+						gs 'arousal', 'cuni', 5, 'lesbian', 'exhibitionism'
+						gs 'stat'
+		
+						if dildo = 0:
+							cla
+							*clr
+							'Now that the adrenalin fades away again, both you begin to blush as you notice, that the people around you stare at you. Both of you quickly dress-up again and go parted ways.'
+
+							gs 'arousal', 'end'
+							gs 'stat'
+						
+							act 'Leave':gt 'mod_Ibiza_club', 'inside'
+						elseif dildo > 0:
+							act 'Get dildo':
+								cla
+								*clr
+								'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/sex/bar5.jpg"></center>'
+								'She chuckles, "Ohh you think we''re done? I saw that you carry dildos with you." You blush and nod. "Use them.", she tells you.'
+								'You take out your dildos, inserting one into her still wet pussy and one into your own wet cunt, you turn on their vibrations function and move them in and out, both of you are once again panting heavy.'
+									gs 'fame', 'city', 'sex', 5
+									gs 'arousal', 'vaginal_vibe', 5, 'lesbian', 'exhibitionism'
+									gs 'arousal', 'vaginal_vibe_give', 5, 'lesbian'
+									minut -= 5
+									gs 'stat'
+		
+								act 'Give her one':
+									cla
+									*clr
+									'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/sex/bar6.jpg"></center>'
+									'You both stand up and use a dildo to move it in and out of each others pussy. She moves close to you and begins kissing you. Your feelings are overflowing and both of you come together at the same time.'
+									'Now that the adrenalin fades away again, both you begin to blush as you notice, that the people around you stare at you. Both of you quickly dress-up again and go parted ways.'
+
+									$orgasm_or = 'yes'
+									gs 'arousal', 'vaginal_vibe', 5, 'lesbian', 'exhibitionism'
+									gs 'arousal', 'vaginal_vibe_give', 5, 'lesbian'
+									minut -= 5
+									gs 'arousal', 'end'
+									gs 'stat'
+		
+									act 'Leave':gt 'mod_Ibiza_club', 'inside'
+								end
+							end
+						end
+					end
+				end
+			end
+		end
+	end
+end
+
+if $ARGS[0] = 'bar1':
+	*clr & cla
+	menu_off = 1
+	'<center><b><font color="maroon">Bar</font></b></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/sex/bar7.jpg"></center>'
+	'While you sit on one of the bar stools a man comes to and grabs on of your ass cheeks. "Why don''t we both have some fun together, huh?", the bloke says and you can hear, that he had more than one beer.'
+
+	act 'Get Lost!!':
+		if alko < 6:gt 'mod_Ibiza_club', 'bar'
+		if alko >= 6:gt 'mod_Ibiza_club', 'rape'
+	end
+
+	if pcs_dom > 10:
+		act 'Tell him to lick you':
+			cla
+			*clr
+			'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/sex/barkuni.jpg"></center>'
+			'"Sure", you say with a witty smile, "Why don''t you lick my pussy?" You stand up, remove your panties and bend over the stool. "Go on, what are you waiting for.", you tell him.'
+			'He kneels down and begins to move his tongue between your folds. You immediately begin to moan softly. You close your eyes and admit to yourself, that he''s not half bad at it.'
+			gs 'fame', 'city', 'sex', 2
+			gs 'arousal', 'cuni', 10, 'dom', 'exhibitionism'
+			gs 'stat'
+			
+			act 'Turn him down':gt 'mod_Ibiza_club', 'bar'
+			act 'Suck his cock':gt 'mod_Ibiza_club', 'bar2'
+			act 'Let him fuck you':gt 'mod_Ibiza_club', 'bar3'
+		end
+	end
+
+	act 'Blow job':gt 'mod_Ibiza_club', 'bar2'
+	act 'Fuck':gt 'mod_Ibiza_club', 'bar3'
+end
+
+if $ARGS[0] = 'bar2':
+	*clr & cla
+	menu_off = 1
+	dynamic $venerasiakOral
+	guy += 1
+	'<center><b><font color="maroon">Bar</font></b></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/sex/barminet.jpg"></center>'
+	'You bend over, unbutton his pants and take out his cock. You bite your lips in anticipation and start to suck on it with your <<$liptalk>>. He''s moaning and smiling at the fact, that a random girl at a club is giving him a header.'
+	gs 'fame', 'city', 'sex', 3
+	gs 'arousal', 'bj', 10, 'sub', 'exhibitionism'
+	gs 'stat'
+	
+	act 'Fuck':gt 'mod_Ibiza_club', 'bar3'
+
+	act 'Continue to suck':
+		*clr & cla
+		gs 'npcgeneratec', 0, 'stranger from the club', rand(18,26)
+		gs 'boyStat', $npclastgenerated
+		spafinloc = 12
+		gs 'cum_manage'
+		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/sex/barcum.jpg"></center>'
+		'You suck his cock for a few minutes and not long after, he grabs and holds your head and presses you against his crotch as he cums inside your mouth. You gag a few seconds, then feel his hot cum flowing into you and you swallow every drip of his semen.'
+		'He takes his cock out and a few drips of cum land on your chin. You use your fingers to clean it up, then lick them clean. Both of you smile at each other and he eventually thank you, zips-up his pants and moves away.'
+		gs 'fame', 'city', 'sex', 3
+		gs 'arousal', 'end'
+		gs 'stat'
+		
+		act 'Move away':gt 'mod_Ibiza_club', 'inside'
+	end
+end
+
+if $ARGS[0] = 'bar3':
+	*clr & cla
+	menu_off = 1
+	gs 'npcgeneratec', 0, 'stranger from the club', rand(18,26)
+	gs 'boyStat', $npclastgenerated
+	cumprecheck = 1
+	gs 'cum_manage'
+	'<center><b><font color="maroon">Bar</font></b></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/sex/barsex.jpg"></center>'
+	t = rand(0, 2)
+	gs 'fame', 'city', 'sex', 5
+	gs 'arousal', 'vaginal', 10, 'sub', 'rough', 'exhibitionism'
+	gs 'stat'
+	
+	if $pantyworntype = 'none':
+		'You sit down sideways on one of the stools. The guy unzips his cock and quickly enters your pussy. Both of you start to moan in pleasure and he kisses your neck gently. He roughly fucks you for several minutes before suddenly cumming deep inside your pussy'
+		spafinloc = 0
+		gs 'cuminsidereact'
+	elseif t = 0:
+		'You remove your panties and sit down sideways on one of the stools. The guy unzips his cock and quickly enters your pussy. Both of you start to moan in pleasure and he kisses your neck gently. He roughly fucks you for several minutes before suddenly cumming deep inside your pussy'
+		spafinloc = 0
+		gs 'cuminsidereact'
+	elseif t = 1:
+		spafinloc = 1
+		'You remove your panties and sit down sideways on one of the stools. The guy unzips his cock and quickly enters your pussy. Both of you start to moan in pleasure and he kisses your neck gently. After about ten minutes of rough fucking he pulls out barely in time and cums on your pussy.'
+	elseif t = 2:
+		spafinloc = 4
+		'You remove your panties and sit down sideways on one of the stools. The guy unzips his cock and quickly enters your pussy. Both of you start to moan in pleasure and he kisses your neck gently. About ten minutes later of rough fucking he cums on your ass check and you pull up your panties, still breathing heavy.'
+	end
+
+	gs 'cum_manage'
+	
+	gs 'arousal', 'end'
+	gs 'stat'
+	
+	act 'Leave':gt 'mod_Ibiza_club', 'inside'
+end
+
+if $ARGS[0] = 'rape':
+	*clr & cla
+	menu_off = 1
+	SUB += 5
+	rape += 1
+	'<center><b><font color="maroon">Bar</font></b></center>'
+	barraperand = rand(0, 1)
+	gs 'npcgeneratec', 0, 'rapist in the club', rand(18,26)
+	gs 'boyStat', $npclastgenerated
+	if barraperand = 0:
+		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/sex/barminet.jpg"></center>'
+		'The guy notices you being heavily drunk and you couldn''t resits anything right now. He orders you to unbutton his pants, take out his cock and begin to suck on it. He grabs your hair and forces your to deepthroat it.'
+		gs 'fame', 'city', 'sex', 5
+		gs 'arousal', 'bj', 10, 'sub', 'deepthroat'
+		gs 'stat'
+	
+		act 'Further':
+			barraperand1 = rand(0, 1)
+
+			if barraperand1 = 0:
+				cla
+				*clr
+				spafinloc = 12
+				gs 'cum_manage'
+				'<center><b><font color="maroon">Bar</font></b></center>'
+				'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/sex/barcum.jpg"></center>'
+				'A few minutes later he is finally done and pushes your head against his crotch, forcing you to swallow his cum. You can''t help but to enjoy the tase of his semen in your mouth.'
+
+				dynamic $venerasiakOral
+				gs 'arousal', 'end'
+				gs 'stat'
+				
+				act 'Leave':gt 'mod_Ibiza_club', 'inside'
+			elseif barraperand1 = 1:
+				*clr & cla
+				cumprecheck = 1
+				gs 'cum_manage'
+				spafinloc = 4
+				gs 'cum_manage'
+				'<center><b><font color="maroon">Bar</font></b></center>'
+				'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/sex/barsex.jpg"></center>'
+				'The bloke takes his cock out of your mouth, tells you position yourself in the stool and then he begins to fuck you roughly. As you''re drunk you barely register anything, but you catch yourself moaning heavy. Not even ten minutes laters he takes his cock out of your pussy and cums on your ass.'
+
+				dynamic $venerasiak
+				gs 'arousal', 'vaginal', 10, 'sub', 'rough'
+				gs 'arousal', 'end'
+				gs 'stat'
+	
+				act 'Leave':gt 'mod_Ibiza_club', 'inside'
+			end
+		end
+	elseif barraperand = 1:
+		gs 'cum_manage'
+		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/sex/barsex.jpg"></center>'
+		'You are trying to send it, but your tongue drunk guy is braided and seeing that you are not able to resist, pulls out his cock turns you on a stool and saliva-moistened member enters your vagina, it tears you to force shoving his dick as deep as possible, and finally finishing the leaves.'
+
+		dynamic $venerasiak
+		gs 'arousal', 'vaginal', 10, 'sub', 'rough'
+		gs 'arousal', 'end'
+		gs 'stat'
+				
+		act 'Leave':gt 'mod_Ibiza_club', 'inside'
+	end
+end
+
+if $ARGS[0] = 'lezbsort':
+	*clr & cla
+	
+	menu_off = 1
+	girl += 1
+	'<center><b><font color="maroon">WC</font></b></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/sex/lezbsort.jpg"></center>'
+	'She follows you into the womens bathroom and you lure her into one of the empty booths.'
+
+	act 'Lick her':gt 'mod_Ibiza_club', 'lezbsort1'
+	act 'Tell her to lick you':gt 'mod_Ibiza_club', 'lezbsort2'
+	act 'Leave her':gt 'mod_Ibiza_club', 'tou'
+end
+
+if $ARGS[0] = 'lezbsort1':
+	*clr & cla
+	menu_off = 1
+	'<center><b><font color="maroon">WC</font></b></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/sex/sortukuni.jpg"></center>'
+	'You remove her pants and sit down on the toilet. She happily does as you told her. She spreads her legs and you begin to lick her cunt furiously. She moans heavily and plays with her erect nipples. Some time later you make cum.'
+	
+	dynamic $venerasiak
+	gs 'fame', 'city', 'sex', 1
+	gs 'arousal', 'cuni_give', 10, 'sub', 'lesbian'
+	gs 'stat'
+				
+	if hour >= 15 or hour <= 3:act 'Now it''s your turn':gt 'mod_Ibiza_club', 'lezbsort2'
+
+	gs 'arousal', 'end'
+	gs 'stat'
+	
+	act 'Leave her':gt 'mod_Ibiza_club', 'tou'
+end
+
+if $ARGS[0] = 'lezbsort2':
+	*clr & cla
+	menu_off = 1
+	'<center><b><font color="maroon">WC</font></b></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/sex/sortkuni.jpg"></center>'
+	'You sit donw on the toilet and move your feet up. "Lick it", you tell her. She seductively bites her lips and happily follows your orders. The woman parts your pussy lips and begins to lick your cunt. Every so often she switches between licking your pink flesh and your flower. She doesn''t stop until you cry out in pleasure and cum.'
+
+	$orgasm_or = 'yes'
+	dynamic $venerasiakOral
+	gs 'arousal', 'cuni', 10, 'dom', 'lesbian'
+	gs 'stat'
+	
+	if hour >= 15 or hour <= 3:act 'Lick her':gt 'mod_Ibiza_club', 'lezbsort1'
+
+	gs 'arousal', 'end'
+	gs 'stat'
+	
+	act 'Leave her':gt 'mod_Ibiza_club', 'tou'
+end
+
+if $ARGS[0] = 'vip':
+	if vipcart = 0 and vipday ! daystart:
+		'A security guard stops you from going any further. "I''m sorry, I can''t let your through, because you don''t own a VIP-Card. You can buy one for 10.000 <b>₽</b>, which will be good for 10 visits."'
+
+		if money >= 10000:
+			act 'Buy a VIP-Card (10,000 <b>₽</b>)':
+				money -= 10000
+				vipcart = 10
+				vipday = daystart
+				gt 'mod_Ibiza_vipclub', 'start'
+			end
+		end
+	elseif vipcart > 0 and vipday ! daystart:
+		act 'Go to the VIP-Area':
+			vipcart -= 1
+			vipday = 1
+			vipday = daystart
+			gt 'mod_Ibiza_vipclub', 'start'
+		end
+	end
+
+	if vipday = daystart:act 'Return to the VIP area':gt 'mod_Ibiza_vipclub', 'start'
+
+	act 'Leave him be and go away':gt 'mod_Ibiza_club', 'inside'
+end
+
+if $ARGS[0] = 'work':
+	*clr & cla
+	menu_off = 1
+	frost = 0
+	clubjob += 1
+	gs 'stat'
+	'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/club11.jpg"></center>'
+	if pcs_danc > 30:
+		clubr = rand (0,2)
+	else
+		clubr = rand (0,1)
+	end
+	if clubr = 0:
+		'"OK <<$pcs_nickname>>, I want you to go around the city center and find some customers, bring them to the door and give the bouncer a nod so he knows they are yours. See you in an hour."'
+		act 'Look for customers':
+			cla
+			*clr
+			hour += 1
+			'<center><img <<$set_imgh>> src="images/locations/city/citycenter/down.jpg"></center>'
+			'You spend an hour searching for customers in the city center.'
+			act 'Return to Erik':
+				cla
+				*clr
+				'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/club11.jpg"></center>'
+				if pcs_apprnc > rand (80, 120):
+					money += 300
+					'You exceed Eriks expectations and find alot of customers, he pays you 300 <b>₽</b>.'
+				elseif rand (0, 1) = 0:
+					money += 200
+					'Erik seems fairly happy and he pays you 200 <b>₽</b>.'
+				else
+					money += 100
+					'You hardy found anyone, Erik doesn''t seem happy, but he pays you 100 <b>₽</b> for your efforts.'
+				end
+				if hour < 1 or hour >= 18:
+					act 'Get another job from Erik':gt 'mod_Ibiza_club', 'work'
+				end
+				act 'Go to dancefloor':gt 'mod_Ibiza_club', 'inside'
+
+			end
+		end
+	elseif clubr = 1:
+		'"OK <<$pcs_nickname>>, I want you to go around the club getting people to try and hopefully switch to these spirits. You can''t go wrong here, just smile and give out free drinks."'
+		'"No need to hold back, the suppliers are paying and if you''re curious and want to try it, don''t its horrible. I''ll see you back here in an hour."'
+		act 'Offer shots':
+			*clr & cla
+			hour += 1
+			'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/club6.jpg"></center>'
+			'You spend an hour giving away unpleasant shots.'
+			act 'Return to Erik':
+				cla
+				*clr
+				money += 200
+				'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/club11.jpg"></center>'
+				'You hand Erik the empty bottles, he gives you 200 <b>₽</b>.'
+				if hour < 1 or hour >= 18:
+					act 'Get another job from Erik':gt 'mod_Ibiza_club', 'work'
+				end
+
+			act 'Go to dancefloor':gt 'mod_Ibiza_club', 'inside'
+
+			end
+		end
+	elseif clubr = 2:
+		'"OK <<$pcs_nickname>>, we''re short a dancer, get in that cage there and dance. If you put on a good show you get a bonus."'
+		act 'Get in the cage':
+			if pcs_inhib < 60:inhib_exp += rand(1,2)
+			*clr & cla
+			hour += 1
+			danc_exp += rand (1,3)
+			'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/club12.jpg"></center>'
+			if pcs_danc > rand (30, 100):
+				money += 300
+				'You put on a great show, getting alot of attention and drawing people up to dance.'
+				'Erik is very happy and pays you 300 <b>₽</b>.'
+			else
+				money += 200
+				'You try hard, but you are mostly ignored by the customers.'
+				'Erik thanks you for helping when he was short and pays you 200 <b>₽</b>, but doesn''t even mention your dancing.'
+			end
+			if hour < 1 or hour >= 18:
+				act 'Get another job from Erik':gt 'mod_Ibiza_club', 'work'
+			end
+
+			act 'Go to dancefloor':gt 'mod_Ibiza_club', 'inside'
+		end
+	end
+end
+
+--- mod_Ibiza_club ---------------------------------

+ 184 - 0
locations/mod_Ibiza_club2.qsrc

@@ -0,0 +1,184 @@
+# mod_Ibiza_club2
+menu_off = 1
+
+if $ARGS[0] = 'toilet1':
+	*clr & cla
+	gs 'stat'
+	gs 'npcgeneratec', 0, 'Gloryhole Client', rand(18,60)
+	gs 'boyStat', $npclastgenerated
+	'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/sex/glory.jpg"></center>'
+	'You went into the booth and closed the door. The walls are covered with obscene graffiti in the walls and booths carved strange round holes. Sitting on the toilet you hear what that noise in the next stall. Through the hole in the wall you looked someone''s eyes.'
+	'In a hole in the wall squeezed fat cock. Lustful voice said, "here''s a yum yum, baby."'
+	'This is so not surprisingly, that you do not believe in the reality of what is happening to touch the finger member. It is hard and hot.'
+
+	act 'Leave':gt 'mod_Ibiza_club', 'inside'
+
+	act 'Take a closer look':
+	*clr & cla
+
+		if TQuest = 1:TQuest = 2
+
+		guy += 1
+		pcs_throat += 1
+		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/sex/glory1.jpg"></center>'
+		'You lean against a member, it''s so big, warm and solid, you licked it, then again and again.'
+		
+		gs 'arousal', 'bj', 5, 'sub'
+		gs 'stat'
+
+		act 'Cover lips':
+			*clr & cla
+			'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/sex/glory2.jpg"></center>'
+			'You bows member lips and start sucking it, trying to take it as deep as possible.'
+			'Suddenly, in your mouth and poured hot tart liquid.'
+
+			gs 'arousal', 'bj', 5, 'sub'
+			gs 'stat'
+		
+			act 'Swallow':
+				*clr & cla
+				swallow += 1
+				spafinloc = 12
+				gs 'cum_manage'
+				money += 1000
+				'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/sex/glory3.jpg"></center>'
+				'You dial a mouthful of sperm, and then swallow it, sperm is not tasty, sticky and sharp taste.'
+				'A male voice telling you - excellent crumb, the money you deserve, a member of the hole and the hole disappears pushes 1,000 RUB.'
+				gs 'arousal', 'end'
+				gs 'stat'
+				
+				act 'Leave':gt 'mod_Ibiza_club', 'inside'
+			end
+
+			act 'Spit out':
+				cla
+				spafinloc = 11
+				gs 'cum_manage'
+				money += 500
+				'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/sex/glory3.jpg"></center>'
+				'You dial a mouthful of sperm, the sperm is not tasty, sticky and sharp, you spit it on the floor.'
+				'A male voice telling you - excellent crumb, the money you deserve, a member of the hole and the hole disappears and is replaced by 500 RUB.'
+
+				gs 'arousal', 'end'
+				gs 'stat'
+				
+				act 'Leave':gt 'mod_Ibiza_club', 'inside'
+			end
+		end
+	end
+end
+
+if $ARGS[0] = 'toilet':
+	*clr & cla
+	gs 'stat'
+	'You pee sitting on the toilet and began to wipe your vagina with toilet paper. Apparently you pressed too hard because you embraced the thrill of touching between the legs.'
+	
+	gs 'arousal', 'masturbate', 3 
+	gs 'stat'
+
+	act 'Leave':gt 'mod_Ibiza_club', 'inside'
+
+	act 'Caress yourself':
+		cla
+		TQuest = 1
+		if pcs_inhib < 40:inhib_exp += rand(1,3)
+		money += 500
+		gs 'stat'
+		'<center><img <<$set_imgh>> src="images/shared/sex/mast/tomas.jpg"></center>'
+		'You caress his fingers swollen pussy until you orgasm does not cover.'
+		'After orgasm, you take it easy, but hear from the next stall pant, look at the wall you see that someone is peeking through the hole located in the wall.'
+		'The man behind the wall and realized that found giggled, great show. Eye of the holes in the wall and disappeared into it squeezed 500 RUB.'
+
+		$orgasm_or = 'yes'
+		gs 'arousal', 'masturbate', 5, 'exhibitionism'
+		gs 'arousal', 'end'
+		gs 'stat'
+	
+		act 'Leave':gt 'mod_Ibiza_club', 'inside'
+	end
+end
+
+if $ARGS[0] = 'toilet2':
+	*clr & cla
+	'You sit in a booth and hear someone come into the toilet after you and doors of adjacent booths closing. You realize there is two of them.'
+	'Voice from the next stall tells you - do not be afraid baby, we will not hurt you, on the contrary, we will give you some delicious candy with cream filling.'
+
+	act 'Leave':gt 'mod_Ibiza_club', 'inside'
+
+	act 'Wait':
+		cla
+		slutiness += 10
+		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/sex/glory4.jpg"></center>'
+		'On both sides of your booth through holes in the walls climbed members. Voice on the wall said, come on, baby, come on, we''re fed.'
+		'You took both members and began to caress them, then bent over to one of the members and took it into his mouth.'
+		
+		gs 'arousal', 'hj', 10, 'sub', 'group'
+		gs 'arousal', 'bj', 10, 'sub', 'group'
+		minut -= 10
+		gs 'stat'
+		
+		wait 3000
+		*clr & cla
+		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/sex/glory5.jpg"></center>'
+		'You are enthusiastically fucked by both members in turn.'
+		
+		gs 'arousal', 'vaginal', 10, 'sub', 'group'
+		gs 'stat'
+		
+		wait 3000
+		*clr & cla
+		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/sex/glory6.jpg"></center>'
+		'Finally one of the men ends up in your mouth.'
+		'You lick and start to finish processing the second term.'
+		
+		gs 'arousal', 'bj', 10, 'sub', 'group'
+		gs 'stat'
+		
+		wait 3000
+		*clr & cla
+		'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/sex/glory7.jpg"></center>'
+		'The second man also comes in your mouth.'
+		'You swallow a mouthful and wipe your face, but semen is smeared all over it.'
+		
+		gs 'arousal', 'bj', 10, 'sub', 'group'
+		gs 'stat'
+		
+		horand = rand(1, 100)
+
+		if horand > pcs_horny:pcs_horny += 10 & 'You were not satisfied.'
+		$orgasm_or = 'no'
+		gs 'stat'
+		if horand <= pcs_horny:pcs_horny = 0 & 'Orgasm washes over you.'
+		$orgasm_or = 'yes'
+		gs 'stat'
+
+		wait 3000
+		money += 2000
+		'Pleased voice says from behind the wall - "You''re a great pacifier, I think you''ve earned a reward."'
+		'2,000 RUB pokes through the hole in the wall.'
+		
+		gs 'arousal', 'end'
+		gs 'stat'
+		
+		wait 1000
+		TQuest = 3
+
+		if pornstudio = 0:pornstudio = 2
+
+		guy += 2
+		swallow += 2
+		gs 'npcgeneratec', 0, 'Gloryhole Client', rand(18,60)
+		gs 'boyStat', $npclastgenerated
+		spafinloc = 12
+		gs 'cum_manage'
+		gs 'npcgeneratec', 0, 'Gloryhole Client', rand(18,60)
+		gs 'boyStat', $npclastgenerated
+		spafinloc = 12
+		gs 'cum_manage'
+		'A male voice says - "Some work for you. Take the card, come if you want to have fun and make money."'
+
+		act 'Leave':gt 'mod_Ibiza_club', 'inside'
+	end
+end
+
+--- mod_Ibiza_club2 -----------------

+ 32 - 0
locations/mod_Ibiza_readme.qsrc

@@ -0,0 +1,32 @@
+# mod_Ibiza_readme
+!input your mod detail readme here. you can use msg or detailed structure, just make sure to create act 'return': gt 'mod_setting'
+*clr&cla
+act 'return': gt 'mod_setting'
+
+act 'Set color fonts': gt 'mod_IbizaStart','cfonts'
+act 'Set black fonts':gt 'mod_IbizaStart','bwfonts'
+
+if ibizatest = 0:
+	act 'test': ibizatest = 1 & gs 'mod_Ibiza_readme'
+end
+if ibizatest = 1:
+	act 'End test': ibizatest = 0 & gs 'mod_Ibiza_readme'
+end
+
+
+'<center>Mod <b>Ibiza</b></center>'
+'
+
+		"Why? Why did I take "Philosophy"? I swear Prof. Avdeyev hates me.", you think.
+		"Whatever! Midterms are over! Time to PARTIE!!", as you get in line for the club
+		Checking the ladies for just the right amount of cleavage, yoou have one final thought
+		before you enter. "Lets show these people how to DANCE!!"	
+	
+	
+	
+As always I use !!* for any notations
+  Some text still needs to be written for when miss leaving on Saturday
+----Have Fun
+         Tendaris'
+		 
+--- mod_Ibiza_readme ---------------------------------

+ 30 - 0
locations/mod_Ibiza_setup.qsrc

@@ -0,0 +1,30 @@
+# mod_Ibiza_setup
+!input basic mod information here. 
+!this location must be the first one
+
+$mod_info[0] = 'Ibiza'
+!0=mod name, saved to $mod_name[i] array 
+
+$mod_info[1] = '10000'
+!1=mod version
+!this will be displayed as version 1.2, fix3.
+!if you input 40500, will be showen as version 4.5
+
+$mod_info[2] = 'Luccia87, Lan, Blatte, Rachels'
+!2=mod author
+
+$mod_info[3] = 'Ibiza content converted by Tendaris'
+!3=mod description, input a short brief here.
+
+
+if curloc = 'mod_<<$mod_info[0]>>_setup':
+	usehtml = 1
+	!this will be only showed if you exec mod file. This location should be only called by gs, so this line will not trigger on normal mod playing
+	'<center><h1><font color=red>ACCESS DENIED</font></h1></center>'
+	'<<$mod_info[0]>> is a mod for <b>Girl Life - English Community Version</b>, and can not be played individually.'
+	''
+	'You can find the main game in <a href="https://www.tfgamessite.com/index.php?module=viewgame&id=597">Tfgames site</a> (external link)'
+	''
+	'Our forum: <a href="https://tfgamessite.com/phpbb3/viewforum.php?f=70">Tfgames site</a> (external link)'
+end
+--- mod_Ibiza_setup ---------------------------------

+ 131 - 0
locations/mod_Ibiza_vipclub.qsrc

@@ -0,0 +1,131 @@
+# mod_Ibiza_vipclub
+
+if $ARGS[0] = 'start':
+	$sexloc = $CURLOC
+    $location_type = 'public_indoors'
+	$menu_loc = 'mod_Ibiza_vipclub'
+	$menu_arg = 'start'
+	menu_off = 0
+	gs 'stat'
+	'<center><b>Vip-room</b></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/vipclub.jpg"></center>'
+	'The VIP area is divided into several rooms without doors. As you pass by some, you see scenes so depraved that even a porn director would blush at the sight.'
+
+	act 'Leave':gt 'mod_Ibiza_club', 'inside'
+
+	if hour >= 15 or hour <= 3:
+		act 'Cocktails':
+			cla
+			menu_off = 1
+			minut += 15
+			alko += 4
+			cumspclnt = 2
+			gs 'cum_cleanup'
+			pcs_breath = 0
+			frost = 0
+			pcs_horny += rand(10, 20)
+			*nl
+			'You enjoy a tasty cocktail, for some reason you also feel like it''s gotten hot in here.'
+			act 'Continue': gt 'mod_Ibiza_vipclub', 'start'
+		end
+
+		if money >= 3000:
+			act 'Order a woman (3,000 <b>₽</b>)':
+				money -= 3000
+				menu_off = 1
+				picrand = rand(13, 17)
+				girl += 1
+				lesbian += 1
+				dynamic $venerasiak
+				xgt 'lezbsex', 'var'
+			end
+		end
+
+		if money >= 3000:
+			act 'Order a man (3,000 <b>₽</b>)':
+				money -= 3000
+				menu_off = 1
+				picrand = 38
+				guy += 1
+				dynamic $venerasiak
+				xgt 'sex', 'var'
+			end
+		end
+
+		if money >= 5000:
+			act 'Order one of each (5,000 <b>₽</b>)':
+				cla & *clr
+				menu_off = 1
+				girl += 1
+				lesbian += 1
+				money -= 5000
+				dynamic $venerasiakOral
+
+				'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/sex/vip1.jpg"></center>'
+				'You have a wonderful idea and a couple of minutes later find yourself in a room with two staff members, one man and one woman. You have them start on the couch, with the man stting while she knelt beside of him and gave him a blowjob. You raptly watched the two professional lovers, getting more and more excited by the display.'
+
+				gs 'arousal', 'voyeur', 5
+				gs 'stat'
+				
+				act 'Further':
+					cla & *clr
+					'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/sex/vip2.jpg"></center>'
+					'The guy turns the woman around and begins fucking her from behind. Deciding you''ve waited long enough you undress and slide your wet pussy in front of her face. She understands your unspoken commands, and immediately begins licking you in all the right places.'
+
+					gs 'arousal', 'cuni', 10, 'dom'
+					gs 'stat'
+				
+					act 'Further':
+						cla & *clr
+						'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/sex/vip3.jpg"></center>'
+						'She pulls out a double-sided dildo and inserts it into your greedy hole. Then she begins sucking on it, and you are surprised by how good she is at pleasuring you this way.'
+
+						gs 'arousal', 'vaginal_dildo', 10, 'dom'
+						gs 'stat'
+						
+						act 'Further':
+							cla
+							*clr
+							pcs_horny = 0
+							'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/sex/vip4.jpg"></center>'
+							'Then she turns around and puts it in her pussy, you both begin grinding in an attempt to get the most pleasure possible. At the same time, she goes back to giving a blowjbo to the man you hired. You have an explosive orgasm and can''t wait to see what these two will do next for you.'
+
+							$orgasm_or = 'yes'
+							gs 'arousal', 'vaginal_dildo', 10, 'dom'
+							gs 'stat'
+					
+							act 'Further':
+								cla & *clr
+								'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/sex/vip5.jpg"></center>'
+								'The man, feeling a bit left out at this point, turns her around again. This time however, he seems to think her ass is as lonely as he felt, and begins to fuck her there. He was apparently right, because she''s moaning louder than she had before.'
+
+								act 'Further':
+									cla & *clr
+									'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/sex/vip6.jpg"></center>'
+									'Soon enough you see her convulsing slightly in orgasmic bliss, and the man grunts to let her know he''s cumming as well. You lick the drool off the side of your lips as you watch him cum all over her chest and into her mouth.'
+
+									act 'Finish':gt 'mod_Ibiza_vipclub', 'start'
+
+									act 'Lick her breasts':
+										cla & *clr
+										spafinloc = 12
+										gs 'cum_manage'
+										'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/sex/vip7.jpg"></center>'
+										'You lick the delicious droplets of cum from her chest and face, trying not to miss any of the tasty treat.'
+										
+										gs 'arousal', 'end'
+										gs 'stat'
+
+										act 'Finish':gt 'mod_Ibiza_vipclub', 'start'
+									end
+								end
+							end
+						end
+					end
+				end
+			end
+		end
+	end
+end
+
+--- mod_Ibiza_vipclub ------------------

+ 77 - 0
locations/mod_Ibizabar.qsrc

@@ -0,0 +1,77 @@
+# mod_IbizaBar
+menu_off = 1
+
+if $ARGS[0] = 'start':
+	gs 'saveposition'
+	gt 'mod_IbizaBar','buffetbar<<rand(1,4)>>'
+end
+
+!The player will be able to replenish the hunger in this file. There must be a possibility to eat in this file.
+
+if $ARGS[0]='buffetbar1':
+	!Add effect drunk!!
+	!Add hungry level lower
+	*clr & cla
+	'<center><video autoplay src="mod/ibiza/ibiza/locations/city/citycenter/nightclub/trip01/buffetbar/bar1.mp4"></video></center><br>'
+	'You walk inside the buffet bar where you meet the other ''Purple Girls'' who are feasting and drinking shots of vodka. They call you over to join them, you sit down by the table, grabbing something to eat, happily taking a shot with them.'
+	minut += 10
+	alko += 5
+	pcs_energy += 10
+	if pcs_hydra >= 100:
+		pcs_hydra -= 5
+	else
+		pcs_hydra -= 10
+	end
+	gs 'stat'
+	act 'Leave the bar': gt 'restoreposition'
+end
+
+if $ARGS[0]='buffetbar2':
+!Add hungry level lower
+	cla
+	*clr
+	minut += 10
+	pcs_energy += 10
+	pcs_hydra += 10
+	gs 'stat'
+
+	'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/buffetbar/bar2.jpg"></center><br>'
+	'You walk over the buffet bar, at the entrance you show your bracelet to the waiter. He nods and lets you continue on. You eat and drink until you are completely full.'
+	act 'Leave the bar': gt 'restoreposition'
+end
+
+if $ARGS[0]='buffetbar3':
+!Add effect drunk!!
+!Add hungry level lower
+	cla
+	*clr
+	minut += 10
+	alko += 5
+	pcs_energy += 10
+	pcs_hydra += 10
+	gs 'stat'
+	
+	'<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/buffetbar/bar3.mp4"></video></center><br>'
+	'You walk over to the buffet bar and grab something to eat. After feeling stuffed you feel the need to have some beers. After a few beers you feel that you drank a bit more than you should''ve. You feel somewhat drunk.'
+	act 'Leave the bar': gt 'restoreposition'
+
+end
+
+if $ARGS[0]='buffetbar4':
+!Add effect drunk!!
+!Add hungry level lower
+	cla
+	*clr
+	minut += 10
+	alko += 5
+	pcs_energy += 10
+	pcs_hydra += 10
+	gs 'stat'
+
+	'<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/buffetbar/bar4.jpg"></center><br>'
+	'You enter the buffet bar where you grab something to eat. As you''re eating you notice they have an exclusive brand of vodka. You ask the waiter if you could taste it, just a little shot.'
+	'He returns after a short with a small glass. As you take a sip of it you feel the alcohol go straight to your head. You need to be careful drinking this stuff it''s quite strong, you might lose control!'
+	act 'Leave the bar': gt 'restoreposition'
+end
+
+--- mod_IbizaBar ---------------------------------

+ 22 - 0
mod_Ibiza.qproj

@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="utf-8"?>
+<QGen-project version="4.0.0 beta 1">
+  <Structure>
+    <Location name="mod_Ibiza_setup"/>
+    <Location name="mod_Ibiza_readme"/>
+    <Location name="mod_Ibiza"/>
+    <Location name="mod_IbizaBar"/>
+    <Location name="mod_IbizaDance"/>
+    <Location name="mod_IbizaDay2"/>
+    <Location name="mod_IbizaDay3"/>
+    <Location name="mod_IbizaDay4"/>
+    <Location name="mod_IbizaDay5"/>
+    <Location name="mod_IbizaDay6"/>
+    <Location name="mod_IbizaDay7"/>
+    <Location name="mod_IbizaGuard"/>
+    <Location name="mod_IbizaStart"/>
+    <Location name="mod_Ibiza_club"/>
+    <Location name="mod_Ibiza_club2"/>
+    <Location name="mod_Ibiza_vipclub"/>
+    <Location name="mod_IbizaToilet"/>
+  </Structure>
+</QGen-project>

BIN
mod_Ibiza.txt


BIN
txt2gam.exe


+ 44 - 0
txtmerge.py

@@ -0,0 +1,44 @@
+#!/usr/bin/env python
+# usage: txtmerge.py <input_dir> <output_file_name> 
+# does the exact opposite of txtsplit.py
+
+import os
+import sys
+import re
+import io 
+import xml.etree.ElementTree as ET
+
+assert len(sys.argv) == 3, "usage:\ntxtmerge.py <input_dir> <output_file_name>"
+idir = str(sys.argv[1])
+oname = str(sys.argv[2])
+
+# read the project xml file first
+# let's do this later in order to implement directory structure
+tree = ET.parse('mod_Ibiza.qproj')
+root = tree.getroot()
+
+
+ofile = io.open(oname, 'w', encoding='utf-16', newline='\r\n')
+
+for location in root.iter('Location'):
+    iname = location.attrib['name']
+    iname = iname.replace("$","_")
+
+    try:
+        ifile = io.open(os.path.join(idir,iname + '.qsrc'), 'rt', encoding='utf-8')
+        text = ifile.read()
+
+        # make sure there's a line at the end of file
+        # (why wouldn't there be one? WINDOWS!
+        if text[-1] != u'\n':
+            text += u'\n\n'
+
+        ofile.write(text)
+        ifile.close()
+    except IOError:
+        print("WARNING: missing location %s" % iname)
+        pass
+
+ofile.close()
+    
+        

+ 46 - 0
txtsplit.py

@@ -0,0 +1,46 @@
+#!/usr/bin/env python
+# usage: txtsplit.py <input_file_name> <output_dir>
+# splits a txt2gam file into individual location files
+# encoded in utf-8, for git to better handle
+
+import os
+import sys
+import re
+import io
+import xml.etree.ElementTree as ET
+
+assert len(sys.argv) == 3, "usage:\ntxtsplit.py <input_file_name> <output_dir>"
+iname = str(sys.argv[1])
+odir = str(sys.argv[2])
+
+# read the project xml file first
+# let's do this later in order to implement directory structure
+"""
+tree = ET.parse('mod_Ibiza.qproj')
+root = tree.getroot()
+"""
+
+ifile = io.open(iname, 'rt', encoding='utf-16')
+
+counter = 1
+
+oname = None
+firstline = ifile.readline().replace(u'\ufeff','')
+match = re.search(ur'^#\s(\$?[_.\w]+)$', firstline)
+if match:
+    oname = os.path.join(odir, match.group(1).replace("$","_") + '.qsrc' )
+    counter += 1
+assert oname, "file is in the wrong format, must start with a location name"
+
+ofile = io.open(oname, 'w', encoding='utf-8')
+ofile.write(firstline)
+
+for line in ifile:
+    match = re.search(ur'^#\s(\$?[_.\w]+)$', line)
+    if match:
+        ofile.close()
+        oname = os.path.join(odir, match.group(1).replace("$","_") + '.qsrc' )
+        counter += 1
+        ofile = io.open(oname, 'w', encoding='utf-8')
+    ofile.write(line)
+        

+ 46 - 0
txtsplit3.py

@@ -0,0 +1,46 @@
+#!/usr/bin/env python3
+# usage: txtsplit.py <input_file_name> <output_dir>
+# splits a txt2gam file into individual location files
+# encoded in utf-8, for git to better handle
+
+import os
+import sys
+import re
+import io
+import xml.etree.ElementTree as ET
+
+assert len(sys.argv) == 3, "usage:\ntxtsplit.py <input_file_name> <output_dir>"
+iname = str(sys.argv[1])
+odir = str(sys.argv[2])
+
+# read the project xml file first
+# let's do this later in order to implement directory structure
+"""
+tree = ET.parse('mod_Ibiza.qproj')
+root = tree.getroot()
+"""
+
+ifile = io.open(iname, 'rt', encoding='utf-16')
+
+counter = 1
+
+oname = None
+firstline = ifile.readline().replace(u'\ufeff','')
+match = re.search('^#\s(\$?[_.\w]+)$', firstline)
+if match:
+    oname = os.path.join(odir, match.group(1).replace("$","_") + '.qsrc' )
+    counter += 1
+assert oname, "file is in the wrong format, must start with a location name"
+
+ofile = io.open(oname, 'w', encoding='utf-8')
+ofile.write(firstline)
+
+for line in ifile:
+    match = re.search('^#\s(\$?[_.\w]+)$', line)
+    if match:
+        ofile.close()
+        oname = os.path.join(odir, match.group(1).replace("$","_") + '.qsrc' )
+        counter += 1
+        ofile = io.open(oname, 'w', encoding='utf-8')
+    ofile.write(line)
+