meet 86 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463
  1. # meet
  2. if $ARGS[0] = 'start':
  3. minut += 15
  4. loverdays[lover_number] += 1
  5. svidanieA = 0
  6. giftNum = giftNum[lover_number]
  7. if night_mode = 1:
  8. fcolor = rgb(255, 255, 255)
  9. bcolor = rgb(0, 0, 0)
  10. lcolor = rgb(106, 90, 205)
  11. else
  12. fcolor = rgb(0, 0, 0)
  13. bcolor = rgb(255, 255, 255)
  14. lcolor = rgb(106, 90, 205)
  15. end
  16. gs 'boyStat', $lover[lover_number]
  17. !!$boybody = 1 - tall, 2 - average, 3 - short
  18. $boybody = $loverbody[lover_number]
  19. !!$boybod = 1 - thin, 2 - athletic, 3 - chunky, 4 - fat
  20. $boybod = $loverbod[lover_number]
  21. $boyface = $loverface[lover_number]
  22. !! sexual force of 0 prior_to 2
  23. silaVag = silaVag[lover_number]
  24. !!security, is responsible for the money and requirements 0 beggar, 1 middle_peasant 2 rich
  25. finance = finance[lover_number]
  26. !!check in appearance, a parameter vnesh
  27. vneshBoy = vneshlover[lover_number]
  28. $boyClo = $loverClo[lover_number]
  29. !!0 - 0 to 2, 1 - 3 to 5, 2, 5 to 6
  30. !! These variables will be compared to the player value 'salocatnow'.
  31. figurBoy = figurelover[lover_number]
  32. if figurBoy = 0:
  33. figurePrefMin = 0
  34. figurePrefMax = 2
  35. elseif figurBoy = 1:
  36. figurePrefMin = 3
  37. figurePrefMax = 4
  38. elseif figurBoy = 2:
  39. figurePrefMin = 5
  40. figurePrefMax = 77
  41. else
  42. figurePrefMin = 0
  43. figurePrefMax = 99
  44. end
  45. !!0 - chest less 3, 1 breast 3-4, 2 breasts bigger 4
  46. titBoy = titlover[lover_number]
  47. if titBoy = 0:
  48. titMin = 0
  49. titMax = 3
  50. elseif titBoy = 1:
  51. titMin = 3
  52. titMax = 4
  53. elseif titBoy = 2:
  54. titMin = 5
  55. titMax = 999
  56. end
  57. !!favorite hair color 0 - brunette, 1 - haired, 2 - Redhead, 3 - blonde
  58. haerBoy = haerlover[lover_number]
  59. !!character 0 - soft, 1 -norm 2 - aggressor
  60. harakBoy = haraklover[lover_number]
  61. !!perversity
  62. izvrat = izvrat[lover_number]
  63. husb_birth_year = year - boyage
  64. husbAge = boyage
  65. !!new preferences
  66. !!renaming perversity constant
  67. pervConstant = izvrat
  68. !!This is for clothing type preference
  69. !!0 - none, 1 - cheap, 2 - average, 3 - formal, 4 - fetish.
  70. clotTypePref = clotTypePref[lover_number]
  71. !!This is for the quality of clothing
  72. !! 0 - no preference, 1 - 1 to 4 units cheap to average (Locked if formal chosen), 2 - 5 to 7 units expensive to ballroom quality (Locked if fetish is chosen)
  73. clotQualPref = clotQualPref[lover_number]
  74. !!Need to add modifiers based on breast size, where larger breasts end up forcing the player to show more cleavage than those with smaller breasts.
  75. !! 0 - no preference, 1 - 1 to 2 or neckline to moderate, 2 - 3 to 4 or heavy to severe, 3 - 5 to 7 or buldging to outpouring
  76. !! The breast size must be adjusted either when the action is being calculeted or we can base it on their ideal breast size :titBoy + 0/3 depending on the players breast size
  77. !! How much they want to see your chest USE THIS FOR NOW
  78. !! 0 - no preference, 1 - 1 neckline , 2 - 2 or moderate, 3 - 3 to 4 or heavy to severe
  79. !! It doesn''t matter if your poor or rich, everyone loves tits.
  80. clotTopPref = clotTopPref[lover_number]
  81. !!This part helps calculate the constant to add to the
  82. !!This is to set the max/min of the clotTop variables. This is so you dont need to go through the code changing individual numbers.
  83. if clotTopPref = 1:
  84. clotTopMin = 1
  85. clotTopMax = 4
  86. elseif clotTopPref = 2:
  87. clotTopMin = 3
  88. clotTopMax = 5
  89. elseif clotTopPref = 3:
  90. clotTopMin = 5
  91. clotTopMax = 7
  92. else
  93. clotTopMin = 0
  94. clotTopMax = 999
  95. end
  96. !!THIS IS THE EQUATION FOR THE TIT ADDITION
  97. if tits < 2:
  98. titConstant = 0
  99. elseif tits >= 2 and tits < 4:
  100. titConstant = 1
  101. elseif tits >= 4 and tits < 6:
  102. titConstant = 2
  103. elseif tits >= 6:
  104. titConstant = 3
  105. else
  106. titConstant = 0
  107. end
  108. !! This is for pants and skirt shortness and will be grouped together as such.
  109. !! 0 - no preference, 1 - 1 to 2 units or ankle to calf length, 2 - 3 to 5 units or knee to miniskirt, 3 - 5 units to 6 or slut to hoe.
  110. bottShorPref = bottShorPref[lover_number]
  111. !!This is to set the max/min of the bottShor variables. This is so you dont need to go through the code changing individual numbers.
  112. if bottShorPref = 1:
  113. bottShorMin = 0
  114. bottShorMax = 2
  115. elseif bottShorPref = 2:
  116. bottShorMin = 3
  117. bottShorMax = 5
  118. elseif bottShorPref = 3:
  119. bottShorMin = 5
  120. bottShorMax = 6
  121. else
  122. bottShorMin = 0
  123. bottShorMax = 999
  124. end
  125. !! This is for clothes thinness.
  126. !! 0 - no preference, 1 - 0 to 2 (Conservative), 2 - 3 to 4 (Moderate), 3 - 4 to 6 (really thin)
  127. !! I see the moderate to really thin overlapping. Its intentional.
  128. !!This is to set the max/min of the clotThinness variables. This is so you dont need to go through the code changing individual numbers.
  129. clotThinPref = clotThinPref[lover_number]
  130. if clotThinPref = 1:
  131. clotThinMin = 0
  132. clotThinMax = 2
  133. elseif clotThinPref = 2:
  134. clotThinMin = 3
  135. clotThinMax = 4
  136. elseif clotThinPref = 3:
  137. clotThinMin = 4
  138. clotThinMax = 6
  139. else
  140. pierPrefMin = 0
  141. clotThinMax = 999
  142. end
  143. !!This is to find out if they want you to wear bimbo clothing
  144. !! 0 - no preference, 1 - Prefers bimbo clothing.
  145. bimbPref = bimbPref[lover_number]
  146. !!This is to find out if they want you to wear piercings.
  147. !! 0 - no preference, 1 - 0 to 2 piercings, 2 - 3 to 5 piercings, 3 - 6 or more piercings.
  148. pierPref = pierPref[lover_number]
  149. !!This is to set the max min
  150. if pierPref = 1:
  151. pierPrefMin = 0
  152. pierPrefMax = 2
  153. elseif pierPref = 2:
  154. pierPrefMin = 3
  155. pierPrefMax = 5
  156. elseif pierPref = 3:
  157. pierPrefMin = 6
  158. pierPrefMax = 999
  159. else
  160. pierPrefMin = 0
  161. pierPrefMax = 999
  162. end
  163. !!This is to find out if they want you to have tattoos.
  164. !! 0 - no preference, 1 - 0 to 2 tattoos, 2 - 3 to 5 tattoos, 3 - 6 or more tattoos.
  165. tattPref = tattPref[lover_number]
  166. !!This is to set the max min for tattoos
  167. if tattPref = 1:
  168. tattPrefMin = 0
  169. tattPrefMax = 2
  170. elseif tattPref = 2:
  171. tattPrefMin = 3
  172. tattPrefMax = 5
  173. elseif tattPref = 3:
  174. tattPrefMin = 6
  175. tattPrefMax = 999
  176. else
  177. tattPrefMin = 0
  178. tattPrefMax = 999
  179. end
  180. !!This is to find out how big they want your lips.
  181. !! 0 - no preference, 1 - 2 to 3 units (average) , 2 - 4 units (THIC lips)
  182. lipsPref = lipsPref[lover_number]
  183. if lipsPref = 1:
  184. lipsPrefMin = 2
  185. lipsPrefMax = 3
  186. elseif lipsPref = 2:
  187. lipsPrefMin = 3
  188. lipsPrefMax = 99
  189. else
  190. lipsPrefMin = 0
  191. lipsPrefMax = 99
  192. end
  193. !!This is to find out how big they want YOU.
  194. !! 0 - no preference, 1 - 1 to 3 units (Skinny) , 2 - 3 to 6 units (Average), 3 - 6 + units (THIC)
  195. !! Notice how this one overlaps. I believe that it should because changing ones weight is very hard.
  196. bodyPref = bodyPref[lover_number]
  197. !!This is to find out how much makeup they want you to wear.
  198. !! 0 - no preference, 1 - 1 (light makeup) , 2 - 2 (moderate makeup), 3 - 3(heavy makeup)
  199. makePref = makePref[lover_number]
  200. !! This is to see if they like a ditz, average, or a smartypants
  201. !!0 - no preference, 1 - 1 to 30 intelligence, 2 - 30 to 85 intelligence, 3 - 85 + intelligence.
  202. IQPref = IQPref[lover_number]
  203. !!This is the new hair color preference
  204. !! 0 - black, 1 - brown, 2 - redhead, 3 - blonde, 4 - no preference,
  205. hairPref = haerBoy
  206. !!This keeps track in the change action what it plans to change
  207. $changeFind = ''
  208. !!This keeps track on how many
  209. !!How many days until the boyfriend starts to comment.
  210. clotDay = 3
  211. bodyDay = 7
  212. !!How many days until he wants you to change.
  213. pierDay = 7
  214. tattDay = 7
  215. lipsDay = 9
  216. titsDay = 12
  217. figureDay = 15
  218. if loverlove[lover_number] = 3:
  219. '<<$loverdesc[lover_number]>> has hired a wedding limousine and it''s outside waiting for you. This is it, you are getting married today.'
  220. act 'Sit in the limousine':
  221. cla
  222. 'You get into the limo, and it drives off. Soon you arrive at the wedding, <<$loverdesc[lover_number]>> is waiting for you as you walk down the aisle.'
  223. act 'Marry husband':
  224. cla
  225. minut += 60
  226. loverslove[lover_number] = 0
  227. loverrelation[lover_number] = 0
  228. pcs_lover -= 1
  229. husband = 100
  230. husbanday = 0
  231. $husName = $lover[lover_number]
  232. $husHair = $loverface[lover_number]
  233. $husBody = $loverbod[lover_number]
  234. $husFat = $loverbod[lover_number]
  235. husDick = loverdick[lover_number]
  236. harakHusb = haraklover[lover_number]
  237. izvratH = izvrat[lover_number]
  238. silavagH = silaVag[lover_number]
  239. husbFin = finance[lover_number]
  240. husbandMark = 1
  241. 'The wedding reception takes place at a cafe. There aren''t many guests since neither you nor the groom have that many friends or family members. There is a lot of congratulations, toasts, merrymaking and crying. By the evening, everybody is drunk and you and your husband stagger into a taxi, which takes you home.'
  242. act 'Wedding night':gt 'husbsex', 'room'
  243. end
  244. end
  245. exit
  246. elseif loverlove[lover_number] = 2:
  247. '<<$loverdesc[lover_number]>> looks very excited and suddenly pulls a ring out of a box.'
  248. '<<$loverdesc[lover_number]>> says "<<$pcs_nickname>>. I offer you my hand and heart. Would you marry me?"'
  249. act 'No (turn him down)':
  250. minut += 60
  251. loverrelation[lover_number] = 0
  252. pcs_lover -= 1
  253. pregtalk = 0
  254. dynamic $go_home
  255. end
  256. act 'Yes':
  257. cla
  258. 'You agree and put the ring on your finger. <<$loverdesc[lover_number]>> rejoices and happily hugs and kisses you.'
  259. '<<$loverdesc[lover_number]>> says "Now you need to find a wedding dress."'
  260. act 'Go looking for the dress':
  261. cla
  262. minut += 60
  263. loverlove[lover_number] = 3
  264. 'You get into a taxi with your soon to be husband and go to the store to choose a dress. You choose an expensive and luxurious dress. <<$loverdesc[lover_number]>> pays for the purchase.'
  265. 'After a long day you feel tired and ask <<$loverdesc[lover_number]>> to drive you home, warning him that the next time you''ll meet you will get married.'
  266. dynamic $go_home
  267. end
  268. end
  269. exit
  270. end
  271. if pcs_makeup > 1 and ($clothingworntype = 'expensive' or $clothingworntype = 'formal') and curly > 0 and loverlove[lover_number] = 1 and haraklover[lover_number] = 0:
  272. '<<$loverdesc[lover_number]>> looks very excited. He decides that you are now ready to meet his mother.'
  273. act 'Meet the parents':gt 'love', 'mother'
  274. exit
  275. elseif pcs_makeup > 1 and ($clothingworntype = 'expensive' or $clothingworntype = 'formal') and curly > 0 and loverlove[lover_number] = 1 and haraklover[lover_number] = 1 and $pantyworntype ! 'none':
  276. '<<$loverdesc[lover_number]>> examins you and decides that you are ready to meet his friends.'
  277. act 'Meet his friends':gt 'love', 'frends'
  278. exit
  279. end
  280. !!I WILL START HERE!
  281. !!0 - none, 1 - cheap, 2 - average, 3 - formal, 4 - fetish.
  282. if clotTypePref = 0:
  283. $clotTypePref = ''
  284. elseif clotTypePref = 1:
  285. $clotTypePref = 'cheap'
  286. elseif clotTypePref = 2:
  287. $clotTypePref = 'average'
  288. elseif clotTypePref = 3:
  289. $clotTypePref = 'formal'
  290. elseif clotTypePref = 4:
  291. $clotTypePref = 'fetish'
  292. end
  293. !! 0 - no preference, 1 - 1 to 4 units cheap to average (Locked if formal chosen), 2 - 5 to 7 units expensive to ballroom quality (Locked if fetish is chosen)
  294. if clotQualPref = 0:
  295. $clotQualPref = 'any type of'
  296. elseif clotQualPref = 1:
  297. $clotQualPref = 'anything but expensive'
  298. elseif clotQualPref = 2:
  299. $clotQualPref = 'expensive'
  300. end
  301. !! 0 - no preference, 1 - 1 to 2 or neckline to moderate, 2 - 3 to 4 or heavy to severe, 3 - 5 to 7 or buldging to outpouring
  302. if clotTopPref = 0:
  303. $clotTopPref = 'any amount of'
  304. elseif clotTopPref = 1:
  305. $clotTopPref = 'a little bit of'
  306. elseif clotTopPref = 2:
  307. $clotTopPref = 'a lot of'
  308. elseif clotTopPref = 3:
  309. $clotTopPref = 'a huge amount of'
  310. end
  311. !! 0 - no preference, 1 - 1 to 2 units or ankle to calf length, 2 - 3 to 4 units or knee to miniskirt, 3 - 5 units to 6 or slut to hoe.
  312. if bottShorPref = 0:
  313. $bottShorPref= 'any length'
  314. elseif bottShorPref = 1:
  315. $bottShorPref= 'modest length'
  316. elseif bottShorPref = 2:
  317. $bottShorPref= 'slightly short length'
  318. elseif bottShorPref = 3:
  319. $bottShorPref= 'really short length'
  320. end
  321. !! 0 - no preference, 1 - 0 to 2 (Conservative), 2 - 3 to 4 (Moderate), 3 - 4 to 6 (really thin)
  322. if clotThinPref = 0:
  323. $clotThinPref= ''
  324. elseif clotThinPref = 1:
  325. $clotThinPref= 'thick'
  326. elseif clotThinPref = 2:
  327. $clotThinPref= 'a little thin'
  328. elseif clotThinPref = 3:
  329. $clotThinPref= 'really thin or even see through'
  330. end
  331. !! 0 - no preference, 1 - Prefers bimbo clothing.
  332. if bimbPref = 0:
  333. $bimboPref = ''
  334. else
  335. $bimboPref = 'a bimbo'
  336. end
  337. !! 0 - no preference, 1 - 0 to 2 piercings, 2 - 3 to 5 piercings, 3 - 6 or more piercings.
  338. if pierPref = 0:
  339. $pierPref = 'any amount'
  340. elseif pierPref = 1:
  341. $pierPref = 'a couple'
  342. elseif pierPref = 2:
  343. $pierPref = 'a good amount'
  344. elseif pierPref = 3:
  345. $pierPref = 'a lot'
  346. end
  347. !! 0 - no preference, 1 - 0 to 2 tattoos, 2 - 3 to 5 tattoos, 3 - 6 or more tattoos.
  348. if tattPref = 0:
  349. $tattPref = 'any amount'
  350. elseif tattPref = 1:
  351. $tattPref = 'a couple'
  352. elseif tattPref = 2:
  353. $tattPref = 'a good amount'
  354. elseif tattPref = 3:
  355. $tattPref = 'a lot'
  356. end
  357. !! 0 - no preference, 1 - 2 to 3 units (average) , 2 - 4 units (THIC lips)
  358. if lipsPref = 0:
  359. $lipsPref = 'any sized lips'
  360. elseif lipsPref = 1:
  361. $lipsPref = 'average sized lips'
  362. elseif lipsPref = 2:
  363. $lipsPref = 'thick lips'
  364. end
  365. !!This is the Players lip description, this allows flexibility when writing
  366. if pcs_lip = 0:
  367. $lipDesc = 'thin'
  368. elseif pcs_lip = 1:
  369. $lipDesc = 'soft'
  370. elseif pcs_lip = 2:
  371. $lipDesc = 'plump'
  372. elseif pcs_lip = 3:
  373. $lipDesc = 'juicy'
  374. elseif pcs_lip = 4:
  375. $lipDesc = 'thick'
  376. end
  377. !! 0 - no preference, 1 - 1 to 3 units (Skinny) , 2 - 3 to 6 units (Average), 3 - 6 + units (THIC)
  378. if bodyPref = 0:
  379. $bodyPref = 'any weight'
  380. elseif bodyPref = 1:
  381. $bodyPref = 'should be skinny'
  382. elseif bodyPref = 2:
  383. $bodyPref = ' should be not to skinny or fat'
  384. elseif bodyPref = 3:
  385. $bodyPref = 'should be thick and curvy'
  386. end
  387. !! 0 - no preference, 1 - 1 (light makeup) , 2 - 2 (moderate makeup), 3 - 3(heavy makeup)
  388. if makePref = 0:
  389. $makePref = 'any amount of makeup'
  390. elseif makePref = 1:
  391. $makePref = 'a sutle amount of makeup'
  392. elseif makePref = 2:
  393. $makePref = 'a good amount of makeup'
  394. elseif makePref = 3:
  395. $makePref = 'a heavy amount of makeup'
  396. end
  397. !!0 - no preference, 1 - 1 to 30 intelligence, 2 - 30 to 85 intelligence, 3 - 85 + intelligence.
  398. if IQPref = 0:
  399. $IQPref = 'nice'
  400. elseif IQPref = 1:
  401. $IQPref = 'ditzy'
  402. elseif IQPref = 2:
  403. $IQPref = 'with at least a little brain power'
  404. elseif IQPref = 3:
  405. $IQPref = 'genius'
  406. end
  407. !! 0 - black, 1 - brown, 2 - redhead, 3 - blonde, 4 - no preference,
  408. if hairPref = 0:
  409. $hairPref = 'black'
  410. elseif hairPref = 1:
  411. $hairPref = 'brown'
  412. elseif hairPref = 2:
  413. $hairPref = 'redhead'
  414. elseif hairPref = 3:
  415. $hairPref = 'blond'
  416. elseif hairPref = 4:
  417. $hairPref = 'any color'
  418. end
  419. !!0 - chest less 3, 1 breast 3-4, 2 breasts bigger 4
  420. if titBoy = 0:
  421. $titBoy = 'petite breasts'
  422. elseif titBoy = 1:
  423. $titBoy = 'good sized breasts'
  424. elseif titBoy = 2:
  425. $titBoy = 'huge breasts'
  426. end
  427. if pcs_hairbsh = 1 and curly > 0:
  428. loverrelation[lover_number] += 2 &
  429. $meetHair = 'Your hair looks very beautiful.'
  430. end
  431. if pcs_hairbsh = 1 and curly = 0:
  432. loverrelation[lover_number] += 1
  433. $meetHair = 'You have pretty hair today.'
  434. end
  435. if pcs_hairbsh = 0:
  436. loverrelation[lover_number] -= 1
  437. $meetHair = 'You look like you were in a hurry.'
  438. end
  439. !!This are generic things your boyfriend will call you based on how much he likes you.
  440. if loverrelation[lover_number] > 80:
  441. randchan = rand(0,2)
  442. if randchan = 0 and haraklover[lover_number] ! 0:
  443. $giveNick = 'angel'
  444. elseif randchan = 1:
  445. $giveNick = 'beautiful'
  446. elseif randchan = 2:
  447. $giveNick = 'love'
  448. end
  449. elseif loverrelation[lover_number] > 20:
  450. randchan = rand(0,1)
  451. if randchan = 0:
  452. $giveNick = 'babe'
  453. elseif randchan = 1:
  454. $giveNick = '<<$pcs_nickname>>'
  455. end
  456. else
  457. $giveNick = '<<$pcs_firstname>>'
  458. end
  459. !! This is the start of the usual talk
  460. !!character 0 - soft, 1 -norm 2 - aggressor
  461. if haraklover[lover_number] = 0:
  462. if loverrelation[lover_number] > 70:
  463. randchan = rand(0, 1)
  464. if randchan = 0:
  465. $greet = 'says with love in his eyes, "Hey <<$pcs_nickname>>."'
  466. elseif randchan = 1:
  467. $greet = 'says lovingly, "Hello love. I''m glad so see you."'
  468. else
  469. $greet = 'says quietly while looking into your eyes, "Hello love." '
  470. end
  471. elseif loverrelation[lover_number] > 20:
  472. randchan = rand(0, 1)
  473. if randchan = 0:
  474. $greet = 'says with a faint smile,"Hey <<$pcs_nickname>>."'
  475. elseif randchan = 1:
  476. $greet = 'says with a smile , "Hi <<$pcs_nickname>>."'
  477. end
  478. else
  479. $greet = 'says, "Hi <<$pcs_firstname>>."'
  480. end
  481. end
  482. if haraklover[lover_number] = 1:
  483. if loverrelation[lover_number] > 70:
  484. randchan = rand(0, 1)
  485. if randchan = 0:
  486. $greet = 'says, "Hey love. I am so happy to see you."'
  487. elseif randchan = 1:
  488. $greet = 'says intimately, "Hello my angel."'
  489. else
  490. $greet = 'says while admiring you, "Hello <<$pcs_nickname>> beautiful."'
  491. end
  492. elseif loverrelation[lover_number] > 20:
  493. randchan = rand(0, 1)
  494. if randchan = 0:
  495. $greet = 'says with a smile, "Hey <<$pcs_nickname>>, glad to see you."'
  496. elseif randchan = 1:
  497. $greet = 'says with a soft tone, "Hello beautiful."'
  498. end
  499. else
  500. $greet = 'says, "Hello <<$pcs_nickname>>."'
  501. end
  502. end
  503. if haraklover[lover_number] = 2:
  504. if loverrelation[lover_number] > 70:
  505. randchan = rand(0, 1)
  506. if randchan = 0:
  507. $greet = 'says with a loving voice, "Theres my sexy gal."'
  508. elseif randchan = 1:
  509. $greet = 'says with a toothful grin, "There is my goddess."'
  510. else
  511. $greet = 'says with a rather loud enduring voice, "Hey babe!"'
  512. end
  513. elseif loverrelation[lover_number] > 20:
  514. randchan = rand(0, 1)
  515. if randchan = 0:
  516. $greet = 'says with a grin, "Hey <<$pcs_nickname>>."'
  517. elseif randchan = 1:
  518. $greet = 'says with a chuckle, "Hey''ya <<$pcs_nickname>>."'
  519. end
  520. else
  521. $greet = 'says, "Hey <<$pcs_nickname>>."'
  522. end
  523. end
  524. !! QUEST VARIABLES!!! WOOOT ALMOST TIME!
  525. didPushAway = 0
  526. !!How beautiful you are
  527. if pcs_skin < 20:
  528. loverrelation[lover_number] -= 2 & $meetskin = 'looking at his feet'
  529. elseif pcs_skin < 40:
  530. loverrelation[lover_number] -= 1 & $meetskin = 'giving you a quick glance'
  531. elseif pcs_skin < 60:
  532. $meetskin = 'looking at you'
  533. elseif pcs_skin < 80:
  534. loverrelation[lover_number] += 1 & $meetskin = 'smiling at you'
  535. else
  536. loverrelation[lover_number] += 2 & $meetskin = 'smiling at you'
  537. end
  538. !! Your lip size
  539. if pcs_lip = 0:$meetlip = 'thin lips'
  540. if pcs_lip = 1:$meetlip = 'soft lips'
  541. if pcs_lip = 2:$meetlip = 'plump lips'
  542. if pcs_lip = 3:$meetlip = 'large, plump lips'
  543. if pcs_lip = 4:$meetlip = 'thick and huge lips'
  544. if finance[lover_number] = 0:$clom = 'dressed in a tracksuit.'
  545. if finance[lover_number] = 1:$clom = 'dressed in jeans and a sweater.'
  546. if finance[lover_number] = 2:$clom = 'dressed in a respectable and expensive jacket.'
  547. !!Greeting start
  548. 'At the entrance <<$meetskin>> stands <<$loverdesc[lover_number]>>. He comes over to you and <<$greet>>'
  549. gs 'boy_likes', 'hairPref'
  550. gs 'boy_likes', 'makePref'
  551. if haraklover[lover_number] = 0:'<<$loverdesc[lover_number]>> looks like a timid and not very confident young man <<$clom>>'
  552. if haraklover[lover_number] = 1:'<<$loverdesc[lover_number]>> looks like a average young man <<$clom>>'
  553. if haraklover[lover_number] = 2:'<<$loverdesc[lover_number]>> looks like a cocky and brash young man <<$clom>>'
  554. !!This is to reset the like part later
  555. likeCount = 0
  556. like1 = 99
  557. like2 = 99
  558. like3 = 99
  559. !! This is the greeting kissy kissy part
  560. if haraklover[lover_number] >= 0:
  561. if loverrelation[lover_number] > -20:
  562. loverrelation[lover_number] += 0
  563. '<<$loverdesc[lover_number]>> gets close to you, and you can tell by his body movements he wants to kiss you.'
  564. act 'Kiss with tongue':
  565. *clr
  566. 'You take the initiative and when he opens his mouth you thrust your tongue into his mouth.'
  567. gs 'arousal', 'kiss', 5
  568. pcs_dom += 1
  569. pcs_mood += 10
  570. gs 'stat'
  571. if venera > 4:
  572. loverrelation[lover_number] = 0
  573. pcs_lover -= 1
  574. '<<$loverdesc[lover_number]>> takes a closer look at you and says, "What is wrong with your lips? They are very sore. Is that genital herpes? I better go, I do not want to get infected. I''m sorry, goodbye."'
  575. pcs_mood -= 20
  576. dynamic $go_home
  577. exit
  578. elseif venera < 4 and cumloc[11] = 0 and (cumloc[6] = 0 and cumloc[7] = 0):
  579. if haraklover[lover_number] = 0:
  580. loverrelation[lover_number] += 2
  581. 'Normally this would have made him feel uncomfortable, but as you pull away he smiles and sighs contently.'
  582. elseif haraklover[lover_number] = 1:
  583. loverrelation[lover_number] += 1
  584. 'He goes with it a blink and in moments your tongues are intertwined.'
  585. elseif haraklover[lover_number] = 2:
  586. 'It seems as <<$loverdesc[lover_number]>> had the same idea, as he pushes his tongue into your mouth as much as you push into his.'
  587. loverrelation[lover_number] += 2
  588. else
  589. 'This should not fire off at all: TongueKiss'
  590. end
  591. elseif cumloc[11] = 1 or (cumloc[6] = 1 or cumloc[7] = 1) and pervConstant = 1:
  592. if cumloc[11] = 1:
  593. if haraklover[lover_number] = 0:
  594. loverrelation[lover_number] += 2
  595. pcs_horny += 5
  596. 'He can see sperm on your face, but underneath his shy demener you know that it only turns him on.'
  597. elseif haraklover[lover_number] = 1:
  598. loverrelation[lover_number] += 2
  599. pcs_horny += 5
  600. 'He can see sperm on your face, but you know that it only turns him on more.'
  601. elseif haraklover[lover_number] = 2:
  602. 'He can see sperm on your face, but by the bulge in his pants you know it only turns him on.'
  603. end
  604. elseif (cumloc[6] = 1 or cumloc[7] = 1):
  605. if haraklover[lover_number] = 0:
  606. loverrelation[lover_number] += 2
  607. pcs_horny += 5
  608. 'He can see sperm on your ass, but underneath his shy demener you know that it only turns him on.'
  609. elseif haraklover[lover_number] = 1:
  610. loverrelation[lover_number] += 2
  611. pcs_horny += 5
  612. 'He can see sperm on your ass, but you know that it only turns him on more.'
  613. elseif haraklover[lover_number] = 2:
  614. loverrelation[lover_number] += 3
  615. pcs_horny += 5
  616. 'He can see sperm on your ass, but by the bulge in his pants you know it only turns him on.'
  617. end
  618. end
  619. elseif cumloc[11] = 1 or (cumloc[6] = 1 or cumloc[7] = 1) and pervConstant ! 1:
  620. if cumloc[11] = 1:
  621. loverrelation[lover_number] = 0
  622. pcs_lover -= 1
  623. 'He notices the sperm on your face, "H-Hey- <<$pcs_firstname>>! What the...?! You dirty whore!", he then pushes you out of his face. "We are through, I don''t want to see your face again!'
  624. pcs_mood -= 20
  625. dynamic $go_home
  626. exit
  627. elseif (cumloc[6] = 1 or cumloc[7] = 1):
  628. loverrelation[lover_number] += 2
  629. 'He notices the sperm on your ass, "<<$pcs_firstname>>! What the...?! You dirty whore!", he then pushes you away. "We are through, I don''t want to see your face again!'
  630. pcs_mood -= 20
  631. dynamic $go_home
  632. exit
  633. end
  634. end
  635. cla
  636. act 'Continue':
  637. xgt 'meet', 'likes'
  638. end
  639. exit
  640. end
  641. act 'Kiss with lips':
  642. *clr
  643. 'You press your <<$meetlip>> softly against his, and for a split second time seems to stop.'
  644. pcs_mood += 10
  645. if cumloc[11] = 0 and (cumloc[6] = 0 and cumloc[7] = 0):
  646. if haraklover[lover_number] = 0:
  647. loverrelation[lover_number] += 2
  648. 'He wraps arms around you, you both stay like this for at least a couple of seconds and as you pull away he looks into your eyes and smiles.'
  649. gs 'arousal', 'kiss', 5
  650. gs 'stat'
  651. elseif haraklover[lover_number] = 1:
  652. loverrelation[lover_number] += 2
  653. 'He kisses you back with such skill it turns you on.'
  654. gs 'arousal', 'kiss', 5
  655. gs 'stat'
  656. elseif haraklover[lover_number] = 2:
  657. loverrelation[lover_number] += 2
  658. 'He kisses you back with such passion you feel a tingle within you.'
  659. gs 'arousal', 'kiss', 5
  660. gs 'stat'
  661. end
  662. elseif cumloc[11] = 1 or (cumloc[6] = 1 or cumloc[7] = 1) or cumloc[12] = 1 and pervConstant = 1:
  663. if cumloc[11] = 1:
  664. if haraklover[lover_number] = 0:
  665. loverrelation[lover_number] += 2
  666. pcs_horny += 5
  667. 'He can see sperm on your face, but underneath his shy demener you know that it only turns him on.'
  668. elseif haraklover[lover_number] = 1:
  669. loverrelation[lover_number] += 2
  670. pcs_horny += 5
  671. 'He can see sperm on your face, but you know that it only turns him on more.'
  672. elseif haraklover[lover_number] = 2:
  673. loverrelation[lover_number] += 3
  674. pcs_horny += 5
  675. 'He can see sperm on your face, but by the bulge in his pants you know it only turns him on.'
  676. end
  677. elseif (cumloc[6] = 1 or cumloc[7] = 1):
  678. if haraklover[lover_number] = 0:
  679. loverrelation[lover_number] += 2
  680. pcs_horny += 5
  681. 'He can see sperm on your ass, but underneath his shy demener you know that it only turns him on.'
  682. elseif haraklover[lover_number] = 1:
  683. loverrelation[lover_number] += 2
  684. pcs_horny += 5
  685. 'He can see sperm on your ass, but you know that it only turns him on more.'
  686. elseif haraklover[lover_number] = 2:
  687. loverrelation[lover_number] += 3
  688. pcs_horny += 5
  689. 'He can see sperm on your ass, but by the bulge in his pants you know it only turns him on.'
  690. end
  691. elseif cumloc[12] = 1:
  692. if haraklover[lover_number] = 0:
  693. loverrelation[lover_number] += 2
  694. pcs_horny += 5
  695. 'He can smell the scent of sperm on you, but underneath his shy demener you know that it only turns him on.'
  696. elseif haraklover[lover_number] = 1:
  697. loverrelation[lover_number] += 2
  698. pcs_horny += 5
  699. 'He can smell the scent of sperm on you, but you know that it only turns him on more.'
  700. elseif haraklover[lover_number] = 2:
  701. loverrelation[lover_number] += 3
  702. pcs_horny += 5
  703. 'He can smell the scent of sperm on you, but you know by the bulge in his pants it only turns him on more.'
  704. end
  705. end
  706. else
  707. if cumloc[11] = 1 or (cumloc[6] = 1 or cumloc[7] = 1) and pervConstant ! 1:
  708. if cumloc[11] = 1:
  709. loverrelation[lover_number] = 0
  710. pcs_lover -= 1
  711. 'He notices the sperm on your face, "<<$pcs_firstname>>! What the...?! You dirty whore!", he then pushes you out of his face. "We are through, I don''t want to see your face again!'
  712. pcs_mood -= 20
  713. dynamic $go_home
  714. exit
  715. elseif (cumloc[6] = 1 or cumloc[7] = 1):
  716. loverrelation[lover_number] = 0
  717. pcs_lover -= 1
  718. 'He notices the sperm on your ass, "<<$pcs_firstname>>! What the...?! You dirty whore!", he then pushes you away. "We are through, I don''t want to see your face again!'
  719. pcs_mood -= 20
  720. dynamic $go_home
  721. exit
  722. end
  723. end
  724. end
  725. cla
  726. act 'Continue':
  727. xgt 'meet', 'likes'
  728. end
  729. exit
  730. end
  731. act 'Hint for a kiss on the cheek':
  732. *clr
  733. 'You make a cute pouty face and turn your cheek toward <<$loverdesc[lover_number]>>. He understands and though he wanted to kiss you, he settles with giving you a peck on the cheek'
  734. pcs_mood += 10
  735. if cumloc[11] = 0 and (cumloc[6] = 0 and cumloc[7] = 0):
  736. if haraklover[lover_number] = 0:
  737. loverrelation[lover_number] += 2
  738. 'He gives you a soft kiss on the cheek, and you can tell he finds this act very cute.'
  739. gs 'arousal', 'kiss', 5
  740. gs 'stat'
  741. elseif haraklover[lover_number] = 1:
  742. loverrelation[lover_number] += 1
  743. 'He kisses you on the cheek and before he pulls away you feel a quick kiss on the forhead.'
  744. gs 'arousal', 'kiss', 5
  745. gs 'stat'
  746. elseif haraklover[lover_number] = 2:
  747. loverrelation[lover_number] += 0
  748. 'Though you can tell he is a bit disappointed, he gives you a kiss on the cheek. As he pulls away he gives your ass a quick squeeze.'
  749. gs 'arousal', 'kiss', 5
  750. gs 'stat'
  751. end
  752. elseif cumloc[11] = 1 or (cumloc[6] = 1 or cumloc[7] = 1) or cumloc[12] = 1 and pervConstant = 1:
  753. if cumloc[11] = 1:
  754. if haraklover[lover_number] = 0:
  755. loverrelation[lover_number] += 2
  756. pcs_horny += 5
  757. 'He can see sperm on your face, but underneath his shy demener you know that it only turns him on.'
  758. elseif haraklover[lover_number] = 1:
  759. loverrelation[lover_number] += 2
  760. pcs_horny += 5
  761. 'He can see sperm on your face, but you know that it only turns him on more.'
  762. elseif haraklover[lover_number] = 2:
  763. loverrelation[lover_number] += 3
  764. pcs_horny += 5
  765. 'He can see sperm on your face, but by the bulge in his pants you know it only turns him on.'
  766. end
  767. elseif (cumloc[6] = 1 or cumloc[7] = 1):
  768. if haraklover[lover_number] = 0:
  769. loverrelation[lover_number] += 1
  770. pcs_horny += 5
  771. 'He can see sperm on your ass, but underneath his shy demener you know that it only turns him on.'
  772. elseif haraklover[lover_number] = 1:
  773. loverrelation[lover_number] += 1
  774. pcs_horny += 5
  775. 'He can see sperm on your ass, but you know that it only turns him on more.'
  776. elseif haraklover[lover_number] = 2:
  777. loverrelation[lover_number] += 1
  778. pcs_horny += 5
  779. 'He can see sperm on your ass, but by the bulge in his pants you know it only turns him on.'
  780. end
  781. end
  782. elseif cumloc[11] = 1 or (cumloc[6] = 1 or cumloc[7] = 1) and pervConstant ! 1:
  783. if cumloc[11] = 1:
  784. loverrelation[lover_number] = 0
  785. pcs_lover -= 1
  786. 'He notices the sperm on your face, "H-Hey- <<$pcs_firstname>>! What the...?! You dirty whore!", he then pushes you out of his face. "We are through, I don''t want to see your face again!'
  787. pcs_mood -= 20
  788. dynamic $go_home
  789. exit
  790. elseif (cumloc[6] = 1 or cumloc[7] = 1):
  791. loverrelation[lover_number] = 0
  792. pcs_lover -= 1
  793. 'He notices the sperm on your ass, "H-Hey- <<$pcs_firstname>>! What the...?! You dirty whore!", he then pushes you away. "We are through, I don''t want to see your face again!'
  794. pcs_mood -= 20
  795. dynamic $go_home
  796. exit
  797. elseif (cumloc[6] = 1 or cumloc[7] = 1):
  798. loverrelation[lover_number] = 0
  799. pcs_lover -= 1
  800. 'He realizes your mouth smells like sperm, "H-Hey- <<$pcs_firstname>>! What the...?! You dirty whore!", he then pushes you away. "We are through, I don''t want to see your face again!'
  801. pcs_mood -= 20
  802. dynamic $go_home
  803. exit
  804. end
  805. end
  806. cla
  807. act 'Continue':
  808. xgt 'meet', 'likes'
  809. end
  810. exit
  811. end
  812. act 'Push his face away':
  813. *clr
  814. didPushAway = 1
  815. 'Maybe you had a bad day, maybe you don''t want a kiss, you rudely push his face away, and by the looks of it, hurting his feelings in the process.'
  816. if haraklover[lover_number] = 0:
  817. loverrelation[lover_number] -= 7
  818. 'He stands there slightly embarrassed, and you can tell this hurt your relationship a good amount.'
  819. elseif haraklover[lover_number] = 1:
  820. loverrelation[lover_number] -= 5
  821. 'He looks at you slightly concerned, but backs off and gives you your space.'
  822. elseif haraklover[lover_number] = 2:
  823. loverrelation[lover_number] -= 10
  824. 'He begins to get angry, he takes a deep breath and gives you space.'
  825. end
  826. cla
  827. act 'Continue':
  828. xgt 'meet', 'likes'
  829. end
  830. exit
  831. end
  832. end
  833. end
  834. end
  835. if $ARGS[0] = 'likes':
  836. cla
  837. if loverdays[lover_number] >= clotDay:
  838. gs 'boy_likes', 'clothesPref'
  839. end
  840. if loverdays[lover_number] >= bodyDay:
  841. gs 'boy_likes', 'bodyPref'
  842. end
  843. xgt 'meet', 'actions'
  844. end
  845. if $ARGS[0] = 'actions':
  846. cls
  847. act 'Can I ask you how you think I look?':
  848. '<<$loverdesc[lover_number]>> says "If you insist" and tells you exactly how he thinks you look based on what he likes:'
  849. gs 'boy_likes', 'allPref'
  850. act 'Okay, lets talk about something else':
  851. xgt 'meet', 'actions'
  852. end
  853. end
  854. act 'What do you want to do today?':
  855. cla
  856. randchan = rand(0, 1)
  857. if randchan = 0:
  858. sub += 1
  859. end
  860. 'You tell him you would rather him decide what we do today.'
  861. if haraklover[lover_number] = 0:
  862. loverrelation[lover_number] += 0
  863. 'Not used to being given the opportunity to choose, he thinks what to do...'
  864. elseif haraklover[lover_number] = 1:
  865. loverrelation[lover_number] += 0
  866. 'He thinks about what to do today.'
  867. elseif haraklover[lover_number] = 2:
  868. loverrelation[lover_number] += 1
  869. 'You can tell he is happy you gave him the ability to choose what to do today.'
  870. end
  871. !!This is the choice maker!
  872. if finance[lover_number] = 0:
  873. !! 0 - change player, 1 - beer in stairwell, 2 - walk in park,
  874. randchan = rand(0, 2)
  875. !! 1 = does like, 0 = not like
  876. if (pierWearCount >= pierPrefMin and pierWearCount <= pierPrefMax) or pierPref = 0:
  877. pierCheck = 1
  878. else
  879. pierCheck = 0
  880. end
  881. if (tattCount >= tattPrefMin and tattCount <= tattPrefMax) or tattPref = 0:
  882. tattCheck = 1
  883. else
  884. tattCheck = 0
  885. end
  886. if (makeupSetting = makePref) or makePref = 0:
  887. makeupCheck = 1
  888. else
  889. makeupCheck = 0
  890. end
  891. if pcs_haircol = hairPref:
  892. hairCheck = 1
  893. else
  894. hairCheck = 0
  895. end
  896. if (pierWearCount >= pierPrefMin and pierWearCount <= pierPrefMax) or pierPref = 0:
  897. pierCheck = 1
  898. else
  899. pierCheck = 0
  900. end
  901. if (tattCount >= tattPrefMin and tattCount <= tattPrefMax) or tattPref = 0:
  902. tattCheck = 1
  903. else
  904. tattCheck = 0
  905. end
  906. if randchan = 0 and (pierCheck + tattCheck + makeupCheck + hairCheck) = 4:
  907. randchan = rand(1, 2)
  908. end
  909. if randchan = 0:
  910. cls
  911. !!Some things you can change.
  912. !!finance[lover_number] = 0 - hair, makeup, tattoo, piercings.
  913. if haraklover[lover_number] = 0:
  914. '"Actually can I talk to you about something?", <<$loverdesc[lover_number]>> asks you.'
  915. elseif haraklover[lover_number] = 1:
  916. '"Actually can I talk to you about something?", <<$loverdesc[lover_number]>> asks you.'
  917. elseif haraklover[lover_number] = 2:
  918. '"Actually can I talk to you about something?", <<$loverdesc[lover_number]>> asks you.'
  919. end
  920. '"Whats up <<$loverdesc[lover_number]>>?"'
  921. '"There is just a trait about you that bugs me, can we change that?"'
  922. if loverscompliance[lover_number] > 0:
  923. 'You know you have changed for him before, and you want to avoid to changing into something you are not.'
  924. end
  925. gs 'boy_likes', 'compliance'
  926. '"And what did you want to change about me?"'
  927. !!This is to make a last check on how many piercings they are WEARING
  928. gs 'boy_likes', 'checkPier'
  929. if pcs_haircol ! hairPref:
  930. '<<$loverdesc[lover_number]>> looks at your hair and says, "can we get your hair dyed?"'
  931. !!act 'I''d rather not...':
  932. if sub < 20 and loverrelation[lover_number] < 60 and loverscompliance[lover_number] < 6:
  933. act 'I like my hair just the way it is':
  934. cla
  935. cls
  936. loverrelation[lover_number] -= 3
  937. '<<$loverdesc[lover_number]>> tries to push you to change it, but you are not that submissive to be pressured by him, nor do your emotions make you make a choice you may regret.'
  938. dynamic $go_home
  939. end
  940. act 'Go with him':
  941. gt 'boy_likes', 'changeHair'
  942. end
  943. exit
  944. elseif loverrelation[lover_number] <= 60 and loverscompliance[lover_number] < 6:
  945. act 'You think to yourself, its not like I like him THAT much...':
  946. cla
  947. pcs_dom += 1
  948. loverrelation[lover_number] -=3
  949. '<<$loverdesc[lover_number]>> he realizes you adoration for him isn''t enough to pressure you to do that. He tells you he has something to do and heads off'
  950. dynamic $go_home
  951. end
  952. exit
  953. elseif sub <= 20 and loverscompliance[lover_number] < 6:
  954. act 'Your personality is not something that can be dominated that easily, and you brush him off, telling him you are who you are':
  955. cla
  956. pcs_dom += 1
  957. loverrelation[lover_number] -=3
  958. '<<$loverdesc[lover_number]>> realizes you will not give in this situation, and walks away mumbling to himself.'
  959. dynamic $go_home
  960. end
  961. exit
  962. elseif sub > 20 or loverscompliance[lover_number] >= 6:
  963. act 'You mumble "I would rather not..."':
  964. cla
  965. loverrelation[lover_number] -= 2
  966. wantRand = rand(0, 100)
  967. wantRand -= 4*loverscompliance[lover_number]
  968. if wantRand > sub:
  969. cla
  970. '<<$loverdesc[lover_number]>> tries to push you to change it, but you successfully inform him that you do not want to. This makes him rather upset.'
  971. ''
  972. dynamic $go_home
  973. exit
  974. elseif wantRand <= sub:
  975. cla
  976. '<<$loverdesc[lover_number]>> keeps up the pressure, and because of your demeaner, and you give in. He smiles happily and takes you to the salon.'
  977. sub += 2
  978. loverrelation[lover_number] += 5
  979. act 'Go to Salon':
  980. gt 'boy_likes', 'changeHair'
  981. end
  982. exit
  983. end
  984. end
  985. end
  986. elseif makeupSetting ! makePref and makePref ! 0:
  987. '<<$loverdesc[lover_number]>> thinks about it and says "Can you wear <<$makePref>> from now on?"'
  988. !!act 'I''d rather not...':
  989. if sub < 20 and loverrelation[lover_number] < 60 and loverscompliance[lover_number] < 6:
  990. act 'I like my makeup just the way it is':
  991. cla
  992. cls
  993. loverrelation[lover_number] -= 3
  994. '<<$loverdesc[lover_number]>> tries to push you to change it, but you are not that submissive to be pressured by him, nor do your emotions make you make a choice you may regret.'
  995. dynamic $go_home
  996. end
  997. act 'Agree to change the makeup you usually wear':
  998. gt 'boy_likes', 'changeMake'
  999. end
  1000. exit
  1001. elseif loverrelation[lover_number] <= 60 and loverscompliance[lover_number] < 6:
  1002. act 'You think to yourself, its not like I like him THAT much...':
  1003. cla
  1004. pcs_dom += 1
  1005. loverrelation[lover_number] -=3
  1006. '<<$loverdesc[lover_number]>> he realizes you adoration for him isn''t enough to pressure you to do that. You can tell that he is bummed when he tells you he has something to do and heads off.'
  1007. dynamic $go_home
  1008. end
  1009. exit
  1010. elseif sub <= 20 and loverscompliance[lover_number] < 6:
  1011. act 'Your personality is not something that can be dominated that easily, and you brush him off, telling him you like the makeup you usually wear':
  1012. cla
  1013. pcs_dom += 1
  1014. loverrelation[lover_number] -=3
  1015. '<<$loverdesc[lover_number]>> realizes you will not give in this situation, and walks away mumbling to himself.'
  1016. dynamic $go_home
  1017. end
  1018. exit
  1019. elseif sub > 20 or loverscompliance[lover_number] >= 6:
  1020. act 'You mumble "What''s wrong with my makeup...?"':
  1021. cla
  1022. loverrelation[lover_number] -= 2
  1023. wantRand = rand(0, 100)
  1024. wantRand -= 4*loverscompliance[lover_number]
  1025. if wantRand > sub:
  1026. cla
  1027. '<<$loverdesc[lover_number]>> tries to push you to change it, but you successfully inform him that you do not want to. This makes him rather upset.'
  1028. ''
  1029. dynamic $go_home
  1030. exit
  1031. elseif wantRand <= sub:
  1032. cla
  1033. '<<$loverdesc[lover_number]>> keeps up the pressure, and because of your demeaner, and you give in. You tell him from now on you will wear <<$makePref>>.'
  1034. sub += 2
  1035. loverrelation[lover_number] += 5
  1036. act 'Continue':
  1037. gt 'boy_likes', 'changeMake'
  1038. end
  1039. exit
  1040. end
  1041. end
  1042. end
  1043. elseif pierWearCount < pierPrefMin or pierWearCount > pierPrefMax and pierPref ! 0 and pierDay <= loverdays[lover_number]:
  1044. '<<$loverdesc[lover_number]>> talks about how you just don''t have the right amount of piercings.'
  1045. if pierWearCount < pierPrefMin:
  1046. 'He tells you that you should have more piercings.'
  1047. else
  1048. 'He tells you that you should have less piercings.'
  1049. end
  1050. if sub < 20 and loverrelation[lover_number] < 60 and loverscompliance[lover_number] < 6:
  1051. act 'I am not going to change my piercings!':
  1052. cla
  1053. cls
  1054. loverrelation[lover_number] -= 3
  1055. '<<$loverdesc[lover_number]>> tries to push you to change it, but you are not that submissive to be pressured by him, nor do your emotions make you make a choice you may regret.'
  1056. dynamic $go_home
  1057. end
  1058. act 'Agree to change the amount of piercings you have':
  1059. gt 'boy_likes', 'changePier'
  1060. end
  1061. exit
  1062. elseif loverrelation[lover_number] <= 60 and loverscompliance[lover_number] < 6:
  1063. act 'You think to yourself, its not like I like him THAT much...':
  1064. cla
  1065. pcs_dom += 1
  1066. loverrelation[lover_number] -=3
  1067. '<<$loverdesc[lover_number]>> he realizes you adoration for him isn''t enough to pressure you to do that. He tells you he has something to do and heads off'
  1068. dynamic $go_home
  1069. end
  1070. exit
  1071. elseif sub <= 20 and loverscompliance[lover_number] < 6:
  1072. act 'Your personality is not something that can be dominated that easily, and you brush him off, telling him you are who you are':
  1073. cla
  1074. pcs_dom += 1
  1075. loverrelation[lover_number] -=3
  1076. '<<$loverdesc[lover_number]>> realizes you will not give in this situation, and walks away mumbling to himself.'
  1077. dynamic $go_home
  1078. end
  1079. exit
  1080. elseif sub > 20 or loverscompliance[lover_number] >= 6:
  1081. act 'You mumble "I would rather not..."':
  1082. cla
  1083. loverrelation[lover_number] -= 2
  1084. wantRand = rand(0, 100)
  1085. wantRand -= 4*loverscompliance[lover_number]
  1086. if wantRand > sub:
  1087. cla
  1088. '<<$loverdesc[lover_number]>> tries to push you to change the amount of piercings you have, but you successfully inform him that you do not want to. This makes him rather upset.'
  1089. ''
  1090. dynamic $go_home
  1091. exit
  1092. elseif wantRand <= sub:
  1093. cla
  1094. '<<$loverdesc[lover_number]>> keeps up the pressure, and because of your demeaner, and you give in. He smiles happily and then gets down to how to get the right amount of piercings.'
  1095. sub += 2
  1096. loverrelation[lover_number] += 5
  1097. act 'Continue':
  1098. gt 'boy_likes', 'changePier'
  1099. end
  1100. exit
  1101. end
  1102. end
  1103. end
  1104. elseif tattCount < tattPrefMin or tattCount > tattPrefMax and tattPref ! 0 and tattDay <= loverdays[lover_number]:
  1105. '<<$loverdesc[lover_number]>> talks about how you just don''t have the right amount of tattoos.'
  1106. if tattCount < tattPrefMin:
  1107. 'He tells you that you should have more tattoos.'
  1108. else
  1109. 'He tells you that you should have less tattoos.'
  1110. end
  1111. if sub < 20 and loverrelation[lover_number] < 60 and loverscompliance[lover_number] < 6:
  1112. act 'I am not going to change my tattoos!':
  1113. cla
  1114. cls
  1115. loverrelation[lover_number] -= 3
  1116. '<<$loverdesc[lover_number]>> tries to push you to change it, but you are not that submissive to be pressured by him, nor do your emotions make you make a choice you may regret.'
  1117. dynamic $go_home
  1118. end
  1119. act 'Agree to change the amount of tattoos you have':
  1120. gt 'boy_likes', 'changeTatt'
  1121. end
  1122. exit
  1123. elseif loverrelation[lover_number] <= 60 and loverscompliance[lover_number] < 6:
  1124. act 'You think to yourself, its not like I like him THAT much...':
  1125. cla
  1126. pcs_dom += 1
  1127. loverrelation[lover_number] -=3
  1128. '<<$loverdesc[lover_number]>> he realizes you adoration for him isn''t enough to pressure you to do that. He tells you he has something to do and heads off'
  1129. dynamic $go_home
  1130. end
  1131. exit
  1132. elseif sub <= 20 and loverscompliance[lover_number] < 6:
  1133. act 'Your personality is not something that can be dominated that easily, and you brush him off, telling him you are who you are':
  1134. cla
  1135. pcs_dom += 1
  1136. loverrelation[lover_number] -=3
  1137. '<<$loverdesc[lover_number]>> realizes you will not give in this situation, and walks away mumbling to himself.'
  1138. dynamic $go_home
  1139. end
  1140. exit
  1141. elseif sub > 20 or loverscompliance[lover_number] >= 6:
  1142. act 'You mumble "I would rather not..."':
  1143. cla
  1144. loverrelation[lover_number] -= 2
  1145. wantRand = rand(0, 100)
  1146. wantRand -= 4*loverscompliance[lover_number]
  1147. if wantRand > sub:
  1148. cla
  1149. '<<$loverdesc[lover_number]>> tries to push you to change the amount of tattoos you have, but you successfully inform him that you do not want to. This makes him rather upset.'
  1150. ''
  1151. dynamic $go_home
  1152. exit
  1153. elseif wantRand <= sub:
  1154. cla
  1155. '<<$loverdesc[lover_number]>> keeps up the pressure, and because of your demeaner, and you give in. He smiles happily then starts to take you to the tattoo parlor to get the right amount of tattoos.'
  1156. sub += 2
  1157. loverrelation[lover_number] += 5
  1158. act 'Go to tattoo parlor':
  1159. gt 'boy_likes', 'changeTatt'
  1160. end
  1161. exit
  1162. end
  1163. end
  1164. end
  1165. else
  1166. 'Erm... Nothing..."'
  1167. act 'Well then...':
  1168. xgt 'meet', 'actions'
  1169. exit
  1170. end
  1171. end
  1172. elseif randchan = 1:
  1173. '<<$loverdesc[lover_number]>> suggest you and him drink a beer in the stairwell.'
  1174. act 'Sorry, but I need to go':
  1175. cla
  1176. loverrelation[lover_number] -= (haraklover[lover_number] + 1)
  1177. dynamic $go_home
  1178. end
  1179. act 'Go with him':gt 'podezdM', 'start'
  1180. exit
  1181. elseif randchan = 2:
  1182. '<<$loverdesc[lover_number]>> suggests that you take a walk in the park.'
  1183. act 'Sorry, but I need to go':
  1184. cla
  1185. loverrelation[lover_number] -= (haraklover[lover_number] + 1)
  1186. dynamic $go_home
  1187. end
  1188. act 'Go with him':gt 'parkM', 'start'
  1189. exit
  1190. end
  1191. elseif finance[lover_number] = 1:
  1192. !! 0 - change player, 1 - go to the movies, 2 - walk in park, 3 , suggests that you go to a cafe.
  1193. randchan = rand(0, 3)
  1194. !! 1 = does like, 0 = not like
  1195. if (pierWearCount >= pierPrefMin and pierWearCount <= pierPrefMax) or pierPref = 0:
  1196. pierCheck = 1
  1197. else
  1198. pierCheck = 0
  1199. end
  1200. if (tattCount >= tattPrefMin and tattCount <= tattPrefMax) or tattPref = 0:
  1201. tattCheck = 1
  1202. else
  1203. tattCheck = 0
  1204. end
  1205. if (makeupSetting = makePref) or makePref = 0:
  1206. makeupCheck = 1
  1207. else
  1208. makeupCheck = 0
  1209. end
  1210. if pcs_haircol = hairPref:
  1211. hairCheck = 1
  1212. else
  1213. hairCheck = 0
  1214. end
  1215. if tits >= titMin and tits <= titMax:
  1216. titCheck = 1
  1217. else
  1218. titCheck = 0
  1219. end
  1220. if pcs_lips >= lipsPrefMin and tits <= lipsPrefMax:
  1221. lipsCheck = 1
  1222. else
  1223. lipsCheck = 0
  1224. end
  1225. if randchan = 0 and (pierCheck + tattCheck + makeupCheck + hairCheck + titCheck + lipsCheck) = 6:
  1226. 'Takes one look at your body and loves every part of it.'
  1227. randchan = rand(1, 3)
  1228. end
  1229. if randchan = 0:
  1230. cls
  1231. !!Some things you can change.
  1232. !!finance[lover_number] = 1 - hair, makeup, tattoo, piercings, lips, tits.
  1233. if haraklover[lover_number] = 0:
  1234. '"Actually can I talk to you about something?", <<$loverdesc[lover_number]>> asks you.'
  1235. elseif haraklover[lover_number] = 1:
  1236. '"Actually can I talk to you about something?", <<$loverdesc[lover_number]>> asks you.'
  1237. elseif haraklover[lover_number] = 2:
  1238. '"Actually can I talk to you about something?", <<$loverdesc[lover_number]>> asks you.'
  1239. end
  1240. '"Whats up <<$loverdesc[lover_number]>>?"'
  1241. '"There is just a trait about you that bugs me, can we change that?"'
  1242. if loverscompliance[lover_number] > 0:
  1243. 'You know you have changed for him before, and you want to avoid to changing into something you are not.'
  1244. end
  1245. gs 'boy_likes', 'compliance'
  1246. '"And what did you want to change about me?"'
  1247. !!This is to make a last check on how many piercings they are WEARING
  1248. gs 'boy_likes', 'checkPier'
  1249. if pcs_haircol ! hairPref:
  1250. '<<$loverdesc[lover_number]>> looks at your hair and says, "can we get your hair dyed?"'
  1251. !!act 'I''d rather not...':
  1252. if sub < 20 and loverrelation[lover_number] < 60 and compliance < 6:
  1253. act 'I like my hair just the way it is':
  1254. cla
  1255. cls
  1256. loverrelation[lover_number] -= 3
  1257. '<<$loverdesc[lover_number]>> tries to push you to change it, but you are not that submissive to be pressured by him, nor do your emotions make you make a choice you may regret.'
  1258. dynamic $go_home
  1259. end
  1260. act 'Go with him':
  1261. gt 'boy_likes', 'changeHair'
  1262. end
  1263. exit
  1264. elseif loverrelation[lover_number] <= 60 and loverscompliance[lover_number] < 6:
  1265. act 'You think to yourself, its not like I like him THAT much...':
  1266. cla
  1267. pcs_dom += 1
  1268. loverrelation[lover_number] -=3
  1269. '<<$loverdesc[lover_number]>> he realizes you adoration for him isn''t enough to pressure you to do that. He tells you he has something to do and heads off'
  1270. dynamic $go_home
  1271. end
  1272. exit
  1273. elseif sub <= 20 and loverscompliance[lover_number] < 6:
  1274. act 'Your personality is not something that can be dominated that easily, and you brush him off, telling him you are who you are':
  1275. cla
  1276. pcs_dom += 1
  1277. loverrelation[lover_number] -=3
  1278. '<<$loverdesc[lover_number]>> realizes you will not give in this situation, and walks away mumbling to himself.'
  1279. dynamic $go_home
  1280. end
  1281. exit
  1282. elseif sub > 20 or loverscompliance[lover_number] >= 6:
  1283. act 'You mumble "I would rather not..."':
  1284. cla
  1285. loverrelation[lover_number] -= 2
  1286. wantRand = rand(0, 100)
  1287. wantRand -= 4*loverscompliance[lover_number]
  1288. if wantRand > sub:
  1289. cla
  1290. '<<$loverdesc[lover_number]>> tries to push you to change it, but you successfully inform him that you do not want to. This makes him rather upset.'
  1291. ''
  1292. dynamic $go_home
  1293. exit
  1294. elseif wantRand <= sub:
  1295. cla
  1296. '<<$loverdesc[lover_number]>> keeps up the pressure, and because of your demeaner, and you give in. He smiles happily and takes you to the salon.'
  1297. sub += 2
  1298. loverrelation[lover_number] += 5
  1299. act 'Go to Salon':
  1300. gt 'boy_likes', 'changeHair'
  1301. end
  1302. exit
  1303. end
  1304. end
  1305. end
  1306. elseif makeupSetting ! makePref and makePref ! 0:
  1307. '<<$loverdesc[lover_number]>> thinks about it and says "Can you wear <<$makePref>> from now on?"'
  1308. !!act 'I''d rather not...':
  1309. if sub < 20 and loverrelation[lover_number] < 60 and loverscompliance[lover_number] < 6:
  1310. act 'I like my makeup just the way it is':
  1311. cla
  1312. cls
  1313. loverrelation[lover_number] -= 3
  1314. '<<$loverdesc[lover_number]>> tries to push you to change it, but you are not that submissive to be pressured by him, nor do your emotions make you make a choice you may regret.'
  1315. dynamic $go_home
  1316. end
  1317. act 'Agree to change the makeup you usually wear':
  1318. gt 'boy_likes', 'changeMake'
  1319. end
  1320. exit
  1321. elseif loverrelation[lover_number] <= 60 and loverscompliance[lover_number] < 6:
  1322. act 'You think to yourself, its not like I like him THAT much...':
  1323. cla
  1324. pcs_dom += 1
  1325. loverrelation[lover_number] -=3
  1326. '<<$loverdesc[lover_number]>> he realizes you adoration for him isn''t enough to pressure you to do that. You can tell that he is bummed when he tells you he has something to do and heads off.'
  1327. dynamic $go_home
  1328. end
  1329. exit
  1330. elseif sub <= 20 and loverscompliance[lover_number] < 6:
  1331. act 'Your personality is not something that can be dominated that easily, and you brush him off, telling him you like the makeup you usually wear':
  1332. cla
  1333. pcs_dom += 1
  1334. loverrelation[lover_number] -=3
  1335. '<<$loverdesc[lover_number]>> realizes you will not give in this situation, and walks away mumbling to himself.'
  1336. dynamic $go_home
  1337. end
  1338. exit
  1339. elseif sub > 20 or loverscompliance[lover_number] >= 6:
  1340. act 'You mumble "What''s wrong with my makeup...?"':
  1341. cla
  1342. loverrelation[lover_number] -= 2
  1343. wantRand = rand(0, 100)
  1344. wantRand -= 4*loverscompliance[lover_number]
  1345. if wantRand > sub:
  1346. cla
  1347. '<<$loverdesc[lover_number]>> tries to push you to change it, but you successfully inform him that you do not want to. This makes him rather upset.'
  1348. ''
  1349. dynamic $go_home
  1350. exit
  1351. elseif wantRand <= sub:
  1352. cla
  1353. '<<$loverdesc[lover_number]>> keeps up the pressure, and because of your demeaner, and you give in. You tell him from now on you will wear <<$makePref>>.'
  1354. sub += 2
  1355. loverrelation[lover_number] += 5
  1356. act 'Continue':
  1357. gt 'boy_likes', 'changeMake'
  1358. end
  1359. exit
  1360. end
  1361. end
  1362. end
  1363. elseif pierWearCount < pierPrefMin or pierWearCount > pierPrefMax and pierPref ! 0 and pierDay <= loverdays[lover_number]:
  1364. '<<$loverdesc[lover_number]>> talks about how you just don''t have the right amount of piercings.'
  1365. if pierWearCount < pierPrefMin:
  1366. 'He tells you that you should have more piercings.'
  1367. else
  1368. 'He tells you that you should have less piercings.'
  1369. end
  1370. if sub < 20 and loverrelation[lover_number] < 60 and loverscompliance[lover_number] < 6:
  1371. act 'I am not going to change my piercings!':
  1372. cla
  1373. cls
  1374. loverrelation[lover_number] -= 3
  1375. '<<$loverdesc[lover_number]>> tries to push you to change it, but you are not that submissive to be pressured by him, nor do your emotions make you make a choice you may regret.'
  1376. dynamic $go_home
  1377. end
  1378. act 'Agree to change the amount of piercings you have':
  1379. gt 'boy_likes', 'changePier'
  1380. end
  1381. exit
  1382. elseif loverrelation[lover_number] <= 60 and loverscompliance[lover_number] < 6:
  1383. act 'You think to yourself, its not like I like him THAT much...':
  1384. cla
  1385. pcs_dom += 1
  1386. loverrelation[lover_number] -=3
  1387. '<<$loverdesc[lover_number]>> he realizes you adoration for him isn''t enough to pressure you to do that. He tells you he has something to do and heads off'
  1388. dynamic $go_home
  1389. end
  1390. exit
  1391. elseif sub <= 20 and loverscompliance[lover_number] < 6:
  1392. act 'Your personality is not something that can be dominated that easily, and you brush him off, telling him you are who you are':
  1393. cla
  1394. pcs_dom += 1
  1395. loverrelation[lover_number] -=3
  1396. '<<$loverdesc[lover_number]>> realizes you will not give in this situation, and walks away mumbling to himself.'
  1397. dynamic $go_home
  1398. end
  1399. exit
  1400. elseif sub > 20 or loverscompliance[lover_number] >= 6:
  1401. act 'You mumble "I would rather not..."':
  1402. cla
  1403. loverrelation[lover_number] -= 2
  1404. wantRand = rand(0, 100)
  1405. wantRand -= 4*loverscompliance[lover_number]
  1406. if wantRand > sub:
  1407. cla
  1408. '<<$loverdesc[lover_number]>> tries to push you to change the amount of piercings you have, but you successfully inform him that you do not want to. This makes him rather upset.'
  1409. ''
  1410. dynamic $go_home
  1411. exit
  1412. elseif wantRand <= sub:
  1413. cla
  1414. '<<$loverdesc[lover_number]>> keeps up the pressure, and because of your demeaner, and you give in. He smiles happily and then gets down to how to get the right amount of piercings.'
  1415. sub += 2
  1416. loverrelation[lover_number] += 5
  1417. act 'Continue':
  1418. gt 'boy_likes', 'changePier'
  1419. end
  1420. exit
  1421. end
  1422. end
  1423. end
  1424. elseif tattCount < tattPrefMin or tattCount > tattPrefMax and tattPref ! 0 and tattDay <= loverdays[lover_number]:
  1425. '<<$loverdesc[lover_number]>> talks about how you just don''t have the right amount of tattoos.'
  1426. if tattCount < tattPrefMin:
  1427. 'He tells you that you should have more tattoos.'
  1428. else
  1429. 'He tells you that you should have less tattoos.'
  1430. end
  1431. if sub < 20 and loverrelation[lover_number] < 60 and loverscompliance[lover_number] < 6:
  1432. act 'I am not going to change my tattoos!':
  1433. cla
  1434. cls
  1435. loverrelation[lover_number] -= 3
  1436. '<<$loverdesc[lover_number]>> tries to push you to change it, but you are not that submissive to be pressured by him, nor do your emotions make you make a choice you may regret.'
  1437. dynamic $go_home
  1438. end
  1439. act 'Agree to change the amount of tattoos you have':
  1440. gt 'boy_likes', 'changeTatt'
  1441. end
  1442. exit
  1443. elseif loverrelation[lover_number] <= 60 and loverscompliance[lover_number] < 6:
  1444. act 'You think to yourself, its not like I like him THAT much...':
  1445. cla
  1446. pcs_dom += 1
  1447. loverrelation[lover_number] -=3
  1448. '<<$loverdesc[lover_number]>> he realizes you adoration for him isn''t enough to pressure you to do that. He tells you he has something to do and heads off'
  1449. dynamic $go_home
  1450. end
  1451. exit
  1452. elseif sub <= 20 and loverscompliance[lover_number] < 6:
  1453. act 'Your personality is not something that can be dominated that easily, and you brush him off, telling him you are who you are':
  1454. cla
  1455. pcs_dom += 1
  1456. loverrelation[lover_number] -=3
  1457. '<<$loverdesc[lover_number]>> realizes you will not give in this situation, and walks away mumbling to himself.'
  1458. dynamic $go_home
  1459. end
  1460. exit
  1461. elseif sub > 20 or loverscompliance[lover_number] >= 6:
  1462. act 'You mumble "I would rather not..."':
  1463. cla
  1464. loverrelation[lover_number] -= 2
  1465. wantRand = rand(0, 100)
  1466. wantRand -= 4*loverscompliance[lover_number]
  1467. if wantRand > sub:
  1468. cla
  1469. '<<$loverdesc[lover_number]>> tries to push you to change the amount of tattoos you have, but you successfully inform him that you do not want to. This makes him rather upset.'
  1470. ''
  1471. dynamic $go_home
  1472. exit
  1473. elseif wantRand <= sub:
  1474. cla
  1475. '<<$loverdesc[lover_number]>> keeps up the pressure, and because of your demeaner, and you give in. He smiles happily then starts to take you to the tattoo parlor to get the right amount of tattoos.'
  1476. sub += 2
  1477. loverrelation[lover_number] += 5
  1478. act 'Go to tattoo parlor':
  1479. gt 'boy_likes', 'changeTatt'
  1480. end
  1481. exit
  1482. end
  1483. end
  1484. end
  1485. elseif pcs_lip < lipsPrefMin or pcs_lip > lipsPrefMax and lipsDay <= loverdays[lover_number]:
  1486. '<<$loverdesc[lover_number]>> tells you your lips are just not the right size.'
  1487. if pcs_lip < lipsPrefMin:
  1488. 'He tells you that you should get lip injections.'
  1489. else
  1490. 'He tells you that you should have lip reduction.'
  1491. end
  1492. if sub < 20 and loverrelation[lover_number] < 60 and loverscompliance[lover_number] < 6:
  1493. act '"My lips are fine the way they are!", you say slightly offended':
  1494. cla
  1495. cls
  1496. loverrelation[lover_number] -= 3
  1497. '<<$loverdesc[lover_number]>> tries to push you to change your lip size, but you are not that submissive to be pressured by him, nor do your emotions make you make a choice you may regret.'
  1498. dynamic $go_home
  1499. end
  1500. act 'Go with him':
  1501. gt 'boy_likes', 'changeLips'
  1502. end
  1503. exit
  1504. elseif loverrelation[lover_number] <= 60 and loverscompliance[lover_number] < 6:
  1505. act 'You think to yourself, its not like I like him THAT much to get work done on my lips':
  1506. cla
  1507. pcs_dom += 1
  1508. loverrelation[lover_number] -=3
  1509. '<<$loverdesc[lover_number]>> he realizes you adoration for him isn''t enough to pressure you to get work done on your lips. He tells you he has something to do and heads off.'
  1510. dynamic $go_home
  1511. end
  1512. exit
  1513. elseif sub <= 20 and loverscompliance[lover_number] < 6:
  1514. act 'Your personality is not something that can be dominated that easily, and you brush him off, telling him that you decide what size lips you look good with':
  1515. cla
  1516. pcs_dom += 1
  1517. loverrelation[lover_number] -=3
  1518. '<<$loverdesc[lover_number]>> realizes you will not give in this situation, and walks away mumbling to himself.'
  1519. dynamic $go_home
  1520. end
  1521. exit
  1522. elseif sub > 20 or loverscompliance[lover_number] >= 6:
  1523. act 'You squeek, "But I like the size of my lips..."':
  1524. cla
  1525. loverrelation[lover_number] -= 2
  1526. wantRand = rand(0, 100)
  1527. wantRand -= 4*loverscompliance[lover_number]
  1528. if wantRand > sub:
  1529. cla
  1530. '<<$loverdesc[lover_number]>> tries to push you to change the size, but you successfully tell him that you do not want to. This makes him rather upset.'
  1531. ''
  1532. dynamic $go_home
  1533. exit
  1534. elseif wantRand <= sub:
  1535. cla
  1536. '<<$loverdesc[lover_number]>> keeps up the pressure, and because of your demeaner, and you give in. He grins widely and takes you to the clinic.'
  1537. sub += 4
  1538. loverrelation[lover_number] += 5
  1539. act 'Go to the clinic':
  1540. gt 'boy_likes', 'changeLips'
  1541. end
  1542. exit
  1543. end
  1544. end
  1545. end
  1546. elseif tits < titMin or tits > titMax and titsDay <= loverdays[lover_number]:
  1547. '<<$loverdesc[lover_number]>> tells you your breasts are just not right.'
  1548. if tits < titMin:
  1549. 'He tells you that you should get breast implants.'
  1550. else
  1551. 'He tells you that you should have a breast reduction.'
  1552. end
  1553. if sub < 20 and loverrelation[lover_number] < 60 and loverscompliance[lover_number] < 6:
  1554. act '"My breasts are fine the way they are!", you say slightly offended':
  1555. cla
  1556. cls
  1557. loverrelation[lover_number] -= 3
  1558. '<<$loverdesc[lover_number]>> tries to push you to change your breast size, but you are not that submissive to be pressured by him, nor do your emotions make you make a choice you may regret.'
  1559. dynamic $go_home
  1560. end
  1561. act 'Go with him':
  1562. gt 'boy_likes', 'changeTits'
  1563. end
  1564. exit
  1565. elseif loverrelation[lover_number] <= 60 and loverscompliance[lover_number] < 6:
  1566. act 'You think to yourself, its not like I like him THAT much to get work done on my breasts':
  1567. cla
  1568. pcs_dom += 1
  1569. loverrelation[lover_number] -=3
  1570. '<<$loverdesc[lover_number]>> he realizes you adoration for him isn''t enough to pressure you to get work done on your breasts. He tells you he has something to do and heads off.'
  1571. dynamic $go_home
  1572. end
  1573. exit
  1574. elseif sub <= 20 and loverscompliance[lover_number] < 6:
  1575. act 'Your personality is not something that can be dominated that easily, and you brush him off, telling him that you decide what size breasts you look good with':
  1576. cla
  1577. pcs_dom += 1
  1578. loverrelation[lover_number] -=3
  1579. '<<$loverdesc[lover_number]>> realizes you will not give in this situation, and walks away mumbling to himself.'
  1580. dynamic $go_home
  1581. end
  1582. exit
  1583. elseif sub > 20 or loverscompliance[lover_number] >= 6:
  1584. act 'You squeek, "But I like the size of my breasts..."':
  1585. cla
  1586. loverrelation[lover_number] -= 2
  1587. wantRand = rand(0, 100)
  1588. wantRand -= 4*loverscompliance[lover_number]
  1589. if wantRand > sub:
  1590. cla
  1591. '<<$loverdesc[lover_number]>> tries to push you to change the size, but you successfully tell him that you do not want to. This makes him rather upset.'
  1592. ''
  1593. dynamic $go_home
  1594. exit
  1595. elseif wantRand <= sub:
  1596. cla
  1597. '<<$loverdesc[lover_number]>> keeps up the pressure, and because of your demeaner, and you give in. He grins widely and takes you to the clinic.'
  1598. sub += 4
  1599. loverrelation[lover_number] += 5
  1600. act 'Go to the clinic':
  1601. gt 'boy_likes', 'changeTits'
  1602. end
  1603. exit
  1604. end
  1605. end
  1606. end
  1607. else
  1608. '"Erm... Nothing..."'
  1609. act '"Well then..."':
  1610. *clr
  1611. xgt 'meet', 'actions'
  1612. exit
  1613. end
  1614. end
  1615. elseif randchan = 1:
  1616. '<<$loverdesc[lover_number]>> suggests that you go to the movies.'
  1617. act 'Sorry, but I need to go':
  1618. cla
  1619. loverrelation[lover_number] -= (haraklover[lover_number] + 1)
  1620. dynamic $go_home
  1621. end
  1622. act 'Go with him':gt 'kinoM', 'start'
  1623. exit
  1624. elseif randchan = 2:
  1625. '<<$loverdesc[lover_number]>> suggest that you take a walk in the park'
  1626. act 'Sorry, but I need to go':
  1627. cla
  1628. loverrelation[lover_number] -= (haraklover[lover_number] + 1)
  1629. dynamic $go_home
  1630. end
  1631. act 'Go with him':gt 'parkM', 'start'
  1632. exit
  1633. elseif randchan = 3:
  1634. '<<$loverdesc[lover_number]>> suggests that you go to a cafe.'
  1635. act 'Sorry, but I need to go':
  1636. cla
  1637. loverrelation[lover_number] -= (haraklover[lover_number] + 1)
  1638. dynamic $go_home
  1639. end
  1640. act 'Go with him':gt 'kafeM', 'start'
  1641. exit
  1642. end
  1643. elseif finance[lover_number] = 2:
  1644. !!Some things you can change.
  1645. !!finance[lover_number] = 2 - hair, makeup, tattoo, piercings, lips, tits
  1646. !! 0 - change player, 1 - go to a cafe, 2 - go to a restaurant, 3 - to the movies.
  1647. randchan = rand(0, 3)
  1648. !! 1 = does like, 0 = not like
  1649. if (pierWearCount >= pierPrefMin and pierWearCount <= pierPrefMax) or pierPref = 0:
  1650. pierCheck = 1
  1651. else
  1652. pierCheck = 0
  1653. end
  1654. if (tattCount >= tattPrefMin and tattCount <= tattPrefMax) or tattPref = 0:
  1655. tattCheck = 1
  1656. else
  1657. tattCheck = 0
  1658. end
  1659. if (makeupSetting = makePref) or makePref = 0:
  1660. makeupCheck = 1
  1661. else
  1662. makeupCheck = 0
  1663. end
  1664. if pcs_haircol = hairPref:
  1665. hairCheck = 1
  1666. else
  1667. hairCheck = 0
  1668. end
  1669. if tits >= titMin and tits <= titMax:
  1670. titCheck = 1
  1671. else
  1672. titCheck = 0
  1673. end
  1674. if pcs_lips >= lipsPrefMin and tits <= lipsPrefMax:
  1675. lipsCheck = 1
  1676. else
  1677. lipsCheck = 0
  1678. end
  1679. if salocatnow <= figurePrefMax:
  1680. figureCheck = 1
  1681. else
  1682. figureCheck = 0
  1683. end
  1684. if randchan = 0 and (pierCheck + tattCheck + makeupCheck + hairCheck + titCheck + lipsCheck + figureCheck) = 7:
  1685. 'Takes one look at your body and loves every part of it.'
  1686. randchan = rand(1, 3)
  1687. end
  1688. randchan = 0
  1689. if randchan = 0:
  1690. cls
  1691. !!Some things you can change.
  1692. !!finance[lover_number] = 2 - hair, makeup, tattoo, piercings, lips, tits, figure.
  1693. if haraklover[lover_number] = 0:
  1694. '"Actually can I talk to you about something?", <<$loverdesc[lover_number]>> asks you.'
  1695. elseif haraklover[lover_number] = 1:
  1696. '"Actually can I talk to you about something?", <<$loverdesc[lover_number]>> asks you.'
  1697. elseif haraklover[lover_number] = 2:
  1698. '"Actually can I talk to you about something?", <<$loverdesc[lover_number]>> asks you.'
  1699. end
  1700. '"Whats up <<$loverdesc[lover_number]>>?"'
  1701. '"There is just a trait about you that bugs me, can we change that?"'
  1702. if loverscompliance[lover_number] > 0:
  1703. 'You know you have changed for him before, and you want to avoid to changing into something you are not.'
  1704. end
  1705. gs 'boy_likes', 'compliance'
  1706. '"And what did you want to change about me?"'
  1707. !!This is to make a last check on how many piercings they are WEARING
  1708. gs 'boy_likes', 'checkPier'
  1709. if pcs_haircol ! hairPref:
  1710. '<<$loverdesc[lover_number]>> looks at your hair and says, "can we get your hair dyed?"'
  1711. !!act 'I''d rather not...':
  1712. if sub < 20 and loverrelation[lover_number] < 60 and loverscompliance[lover_number] < 6:
  1713. act 'I like my hair just the way it is':
  1714. cla
  1715. cls
  1716. loverrelation[lover_number] -= 3
  1717. '<<$loverdesc[lover_number]>> tries to push you to change it, but you are not that submissive to be pressured by him, nor do your emotions make you make a choice you may regret.'
  1718. dynamic $go_home
  1719. end
  1720. act 'Go with him':
  1721. gt 'boy_likes', 'changeHair'
  1722. end
  1723. exit
  1724. elseif loverrelation[lover_number] <= 60 and loverscompliance[lover_number] < 6:
  1725. act 'You think to yourself, its not like I like him THAT much...':
  1726. cla
  1727. pcs_dom += 1
  1728. loverrelation[lover_number] -=3
  1729. '<<$loverdesc[lover_number]>> he realizes you adoration for him isn''t enough to pressure you to do that. He tells you he has something to do and heads off'
  1730. dynamic $go_home
  1731. end
  1732. exit
  1733. elseif sub <= 20 and loverscompliance[lover_number] < 6:
  1734. act 'Your personality is not something that can be dominated that easily, and you brush him off, telling him you are who you are':
  1735. cla
  1736. pcs_dom += 1
  1737. loverrelation[lover_number] -=3
  1738. '<<$loverdesc[lover_number]>> realizes you will not give in this situation, and walks away mumbling to himself.'
  1739. dynamic $go_home
  1740. end
  1741. exit
  1742. elseif sub > 20 or loverscompliance[lover_number] >= 6:
  1743. act 'You mumble "I would rather not..."':
  1744. cla
  1745. loverrelation[lover_number] -= 2
  1746. wantRand = rand(0, 100)
  1747. wantRand -= 4*loverscompliance[lover_number]
  1748. if wantRand > sub:
  1749. cla
  1750. '<<$loverdesc[lover_number]>> tries to push you to change it, but you successfully inform him that you do not want to. This makes him rather upset.'
  1751. ''
  1752. dynamic $go_home
  1753. exit
  1754. elseif wantRand <= sub:
  1755. cla
  1756. '<<$loverdesc[lover_number]>> keeps up the pressure, and because of your demeaner, and you give in. He smiles happily and takes you to the salon.'
  1757. sub += 2
  1758. loverrelation[lover_number] += 5
  1759. act 'Go to Salon':
  1760. gt 'boy_likes', 'changeHair'
  1761. end
  1762. exit
  1763. end
  1764. end
  1765. end
  1766. elseif makeupSetting ! makePref and makePref ! 0:
  1767. '<<$loverdesc[lover_number]>> thinks about it and says "Can you wear <<$makePref>> from now on?"'
  1768. !!act 'I''d rather not...':
  1769. if sub < 20 and loverrelation[lover_number] < 60 and loverscompliance[lover_number] < 6:
  1770. act 'I like my makeup just the way it is':
  1771. cla
  1772. cls
  1773. loverrelation[lover_number] -= 3
  1774. '<<$loverdesc[lover_number]>> tries to push you to change it, but you are not that submissive to be pressured by him, nor do your emotions make you make a choice you may regret.'
  1775. dynamic $go_home
  1776. end
  1777. act 'Agree to change the makeup you usually wear':
  1778. gt 'boy_likes', 'changeMake'
  1779. end
  1780. exit
  1781. elseif loverrelation[lover_number] <= 60 and loverscompliance[lover_number] < 6:
  1782. act 'You think to yourself, its not like I like him THAT much...':
  1783. cla
  1784. pcs_dom += 1
  1785. loverrelation[lover_number] -=3
  1786. '<<$loverdesc[lover_number]>> he realizes you adoration for him isn''t enough to pressure you to do that. You can tell that he is bummed when he tells you he has something to do and heads off.'
  1787. dynamic $go_home
  1788. end
  1789. exit
  1790. elseif sub <= 20 and loverscompliance[lover_number] < 6:
  1791. act 'Your personality is not something that can be dominated that easily, and you brush him off, telling him you like the makeup you usually wear':
  1792. cla
  1793. pcs_dom += 1
  1794. loverrelation[lover_number] -=3
  1795. '<<$loverdesc[lover_number]>> realizes you will not give in this situation, and walks away mumbling to himself.'
  1796. dynamic $go_home
  1797. end
  1798. exit
  1799. elseif sub > 20 or loverscompliance[lover_number] >= 6:
  1800. act 'You mumble "What''s wrong with my makeup...?"':
  1801. cla
  1802. loverrelation[lover_number] -= 2
  1803. wantRand = rand(0, 100)
  1804. wantRand -= 4*loverscompliance[lover_number]
  1805. if wantRand > sub:
  1806. cla
  1807. '<<$loverdesc[lover_number]>> tries to push you to change it, but you successfully inform him that you do not want to. This makes him rather upset.'
  1808. ''
  1809. dynamic $go_home
  1810. exit
  1811. elseif wantRand <= sub:
  1812. cla
  1813. '<<$loverdesc[lover_number]>> keeps up the pressure, and because of your demeaner, and you give in. You tell him from now on you will wear <<$makePref>>.'
  1814. sub += 2
  1815. loverrelation[lover_number] += 5
  1816. act 'Continue':
  1817. gt 'boy_likes', 'changeMake'
  1818. end
  1819. exit
  1820. end
  1821. end
  1822. end
  1823. elseif pierWearCount < pierPrefMin or pierWearCount > pierPrefMax and pierPref ! 0 and pierDay <= loverdays[lover_number]:
  1824. '<<$loverdesc[lover_number]>> talks about how you just don''t have the right amount of piercings.'
  1825. if pierWearCount < pierPrefMin:
  1826. 'He tells you that you should have more piercings.'
  1827. else
  1828. 'He tells you that you should have less piercings.'
  1829. end
  1830. if sub < 20 and loverrelation[lover_number] < 60 and loverscompliance[lover_number] < 6:
  1831. act 'I am not going to change my piercings!':
  1832. cla
  1833. cls
  1834. loverrelation[lover_number] -= 3
  1835. '<<$loverdesc[lover_number]>> tries to push you to change it, but you are not that submissive to be pressured by him, nor do your emotions make you make a choice you may regret.'
  1836. dynamic $go_home
  1837. end
  1838. act 'Agree to change the amount of piercings you have':
  1839. gt 'boy_likes', 'changePier'
  1840. end
  1841. exit
  1842. elseif loverrelation[lover_number] <= 60 and loverscompliance[lover_number] < 6:
  1843. act 'You think to yourself, its not like I like him THAT much...':
  1844. cla
  1845. pcs_dom += 1
  1846. loverrelation[lover_number] -=3
  1847. '<<$loverdesc[lover_number]>> he realizes you adoration for him isn''t enough to pressure you to do that. He tells you he has something to do and heads off'
  1848. dynamic $go_home
  1849. end
  1850. exit
  1851. elseif sub <= 20 and loverscompliance[lover_number] < 6:
  1852. act 'Your personality is not something that can be dominated that easily, and you brush him off, telling him you are who you are':
  1853. cla
  1854. pcs_dom += 1
  1855. loverrelation[lover_number] -=3
  1856. '<<$loverdesc[lover_number]>> realizes you will not give in this situation, and walks away mumbling to himself.'
  1857. dynamic $go_home
  1858. end
  1859. exit
  1860. elseif sub > 20 or loverscompliance[lover_number] >= 6:
  1861. act 'You mumble "I would rather not..."':
  1862. cla
  1863. loverrelation[lover_number] -= 2
  1864. wantRand = rand(0, 100)
  1865. wantRand -= 4*loverscompliance[lover_number]
  1866. if wantRand > sub:
  1867. cla
  1868. '<<$loverdesc[lover_number]>> tries to push you to change the amount of piercings you have, but you successfully inform him that you do not want to. This makes him rather upset.'
  1869. ''
  1870. dynamic $go_home
  1871. exit
  1872. elseif wantRand <= sub:
  1873. cla
  1874. '<<$loverdesc[lover_number]>> keeps up the pressure, and because of your demeaner, and you give in. He smiles happily and then gets down to how to get the right amount of piercings.'
  1875. sub += 2
  1876. loverrelation[lover_number] += 5
  1877. act 'Continue':
  1878. gt 'boy_likes', 'changePier'
  1879. end
  1880. exit
  1881. end
  1882. end
  1883. end
  1884. elseif tattCount < tattPrefMin or tattCount > tattPrefMax and tattPref ! 0 and tattDay <= loverdays[lover_number]:
  1885. '<<$loverdesc[lover_number]>> talks about how you just don''t have the right amount of tattoos.'
  1886. if tattCount < tattPrefMin:
  1887. 'He tells you that you should have more tattoos.'
  1888. else
  1889. 'He tells you that you should have less tattoos.'
  1890. end
  1891. if sub < 20 and loverrelation[lover_number] < 60 and loverscompliance[lover_number] < 6:
  1892. act 'I am not going to change my tattoos!':
  1893. cla
  1894. cls
  1895. loverrelation[lover_number] -= 3
  1896. '<<$loverdesc[lover_number]>> tries to push you to change it, but you are not that submissive to be pressured by him, nor do your emotions make you make a choice you may regret.'
  1897. dynamic $go_home
  1898. end
  1899. act 'Agree to change the amount of tattoos you have':
  1900. gt 'boy_likes', 'changeTatt'
  1901. end
  1902. exit
  1903. elseif loverrelation[lover_number] <= 60 and loverscompliance[lover_number] < 6:
  1904. act 'You think to yourself, its not like I like him THAT much...':
  1905. cla
  1906. pcs_dom += 1
  1907. loverrelation[lover_number] -=3
  1908. '<<$loverdesc[lover_number]>> he realizes you adoration for him isn''t enough to pressure you to do that. He tells you he has something to do and heads off'
  1909. dynamic $go_home
  1910. end
  1911. exit
  1912. elseif sub <= 20 and loverscompliance[lover_number] < 6:
  1913. act 'Your personality is not something that can be dominated that easily, and you brush him off, telling him you are who you are':
  1914. cla
  1915. pcs_dom += 1
  1916. loverrelation[lover_number] -=3
  1917. '<<$loverdesc[lover_number]>> realizes you will not give in this situation, and walks away mumbling to himself.'
  1918. dynamic $go_home
  1919. end
  1920. exit
  1921. elseif sub > 20 or loverscompliance[lover_number] >= 6:
  1922. act 'You mumble "I would rather not..."':
  1923. cla
  1924. loverrelation[lover_number] -= 2
  1925. wantRand = rand(0, 100)
  1926. wantRand -= 4*loverscompliance[lover_number]
  1927. if wantRand > sub:
  1928. cla
  1929. '<<$loverdesc[lover_number]>> tries to push you to change the amount of tattoos you have, but you successfully inform him that you do not want to. This makes him rather upset.'
  1930. ''
  1931. dynamic $go_home
  1932. exit
  1933. elseif wantRand <= sub:
  1934. cla
  1935. '<<$loverdesc[lover_number]>> keeps up the pressure, and because of your demeaner, and you give in. He smiles happily then starts to take you to the tattoo parlor to get the right amount of tattoos.'
  1936. sub += 2
  1937. loverrelation[lover_number] += 5
  1938. act 'Go to tattoo parlor':
  1939. gt 'boy_likes', 'changeTatt'
  1940. end
  1941. exit
  1942. end
  1943. end
  1944. end
  1945. elseif pcs_lip < lipsPrefMin or pcs_lip > lipsPrefMax and lipsDay <= loverdays[lover_number]:
  1946. '<<$loverdesc[lover_number]>> tells you your lips are just not the right size.'
  1947. if pcs_lip < lipsPrefMin:
  1948. 'He tells you that you should get lip injections.'
  1949. else
  1950. 'He tells you that you should have lip reduction.'
  1951. end
  1952. if sub < 20 and loverrelation[lover_number] < 60 and loverscompliance[lover_number] < 6:
  1953. act '"My lips are fine the way they are!", you say slightly offended':
  1954. cla
  1955. cls
  1956. loverrelation[lover_number] -= 3
  1957. '<<$loverdesc[lover_number]>> tries to push you to change your lip size, but you are not that submissive to be pressured by him, nor do your emotions make you make a choice you may regret.'
  1958. dynamic $go_home
  1959. end
  1960. act 'Go with him':
  1961. gt 'boy_likes', 'changeLips'
  1962. end
  1963. exit
  1964. elseif loverrelation[lover_number] <= 60 and loverscompliance[lover_number] < 6:
  1965. act 'You think to yourself, its not like I like him THAT much to get work done on my lips':
  1966. cla
  1967. pcs_dom += 1
  1968. loverrelation[lover_number] -=3
  1969. '<<$loverdesc[lover_number]>> he realizes you adoration for him isn''t enough to pressure you to get work done on your lips. He tells you he has something to do and heads off.'
  1970. dynamic $go_home
  1971. end
  1972. exit
  1973. elseif sub <= 20 and loverscompliance[lover_number] < 6:
  1974. act 'Your personality is not something that can be dominated that easily, and you brush him off, telling him that you decide what size lips you look good with':
  1975. cla
  1976. pcs_dom += 1
  1977. loverrelation[lover_number] -=3
  1978. '<<$loverdesc[lover_number]>> realizes you will not give in this situation, and walks away mumbling to himself.'
  1979. dynamic $go_home
  1980. end
  1981. exit
  1982. elseif sub > 20 or loverscompliance[lover_number] >= 6:
  1983. act 'You squeek, "But I like the size of my lips..."':
  1984. cla
  1985. loverrelation[lover_number] -= 2
  1986. wantRand = rand(0, 100)
  1987. wantRand -= 4*loverscompliance[lover_number]
  1988. if wantRand > sub:
  1989. cla
  1990. '<<$loverdesc[lover_number]>> tries to push you to change the size, but you successfully tell him that you do not want to. This makes him rather upset.'
  1991. ''
  1992. dynamic $go_home
  1993. exit
  1994. elseif wantRand <= sub:
  1995. cla
  1996. '<<$loverdesc[lover_number]>> keeps up the pressure, and because of your demeaner, and you give in. He grins widely and takes you to the clinic.'
  1997. sub += 4
  1998. loverrelation[lover_number] += 5
  1999. act 'Go to the clinic':
  2000. gt 'boy_likes', 'changeLips'
  2001. end
  2002. exit
  2003. end
  2004. end
  2005. end
  2006. elseif tits < titMin or tits > titMax and titsDay <= loverdays[lover_number]:
  2007. '<<$loverdesc[lover_number]>> tells you your breasts are just not right.'
  2008. if tits < titMin:
  2009. 'He tells you that you should get breast implants.'
  2010. else
  2011. 'He tells you that you should have a breast reduction.'
  2012. end
  2013. if sub < 20 and loverrelation[lover_number] < 60 and loverscompliance[lover_number] < 6:
  2014. act '"My breasts are fine the way they are!", you say slightly offended':
  2015. cla
  2016. cls
  2017. loverrelation[lover_number] -= 3
  2018. '<<$loverdesc[lover_number]>> tries to push you to change your breast size, but you are not that submissive to be pressured by him, nor do your emotions make you make a choice you may regret.'
  2019. dynamic $go_home
  2020. end
  2021. act 'Go with him':
  2022. gt 'boy_likes', 'changeTits'
  2023. end
  2024. exit
  2025. elseif loverrelation[lover_number] <= 60 and loverscompliance[lover_number] < 6:
  2026. act 'You think to yourself, its not like I like him THAT much to get work done on my breasts':
  2027. cla
  2028. pcs_dom += 1
  2029. loverrelation[lover_number] -=3
  2030. '<<$loverdesc[lover_number]>> he realizes you adoration for him isn''t enough to pressure you to get work done on your breasts. He tells you he has something to do and heads off.'
  2031. dynamic $go_home
  2032. end
  2033. exit
  2034. elseif sub <= 20 and loverscompliance[lover_number] < 6:
  2035. act 'Your personality is not something that can be dominated that easily, and you brush him off, telling him that you decide what size breasts you look good with':
  2036. cla
  2037. pcs_dom += 1
  2038. loverrelation[lover_number] -=3
  2039. '<<$loverdesc[lover_number]>> realizes you will not give in this situation, and walks away mumbling to himself.'
  2040. dynamic $go_home
  2041. end
  2042. exit
  2043. elseif sub > 20 or loverscompliance[lover_number] >= 6:
  2044. act 'You squeek, "But I like the size of my breasts..."':
  2045. cla
  2046. loverrelation[lover_number] -= 2
  2047. wantRand = rand(0, 100)
  2048. wantRand -= 4*loverscompliance[lover_number]
  2049. if wantRand > sub:
  2050. cla
  2051. '<<$loverdesc[lover_number]>> tries to push you to change the size, but you successfully tell him that you do not want to. This makes him rather upset.'
  2052. ''
  2053. dynamic $go_home
  2054. exit
  2055. elseif wantRand <= sub:
  2056. cla
  2057. '<<$loverdesc[lover_number]>> keeps up the pressure, and because of your demeaner, and you give in. He grins widely and takes you to the clinic.'
  2058. sub += 4
  2059. loverrelation[lover_number] += 5
  2060. act 'Go to the clinic':
  2061. gt 'boy_likes', 'changeTits'
  2062. end
  2063. exit
  2064. end
  2065. end
  2066. end
  2067. elseif salocatnow > figurePrefMax and figureDay <= loverdays[lover_number]:
  2068. '<<$loverdesc[lover_number]>> tells you your body is just too thick.'
  2069. 'He offers to pay for you to get lyposuction.'
  2070. if sub < 20 and loverrelation[lover_number] < 60 and loverscompliance[lover_number] < 6:
  2071. act '"My body weight is fine the way it is!", you say slightly offended':
  2072. cla
  2073. cls
  2074. loverrelation[lover_number] -= 3
  2075. '<<$loverdesc[lover_number]>> tries to push you to change your body weight, but you are not that submissive to be pressured by him, nor do your emotions make you make a choice you may regret.'
  2076. dynamic $go_home
  2077. end
  2078. act 'Go with him':
  2079. gt 'boy_likes', 'changeFigure'
  2080. end
  2081. exit
  2082. elseif loverrelation[lover_number] <= 60 and loverscompliance[lover_number] < 6:
  2083. act 'You think to yourself, its not like I like him THAT much to get lyposuction':
  2084. cla
  2085. pcs_dom += 1
  2086. loverrelation[lover_number] -=3
  2087. '<<$loverdesc[lover_number]>> he realizes you adoration for him isn''t enough to pressure you to get work done on your weight. He tells you he has something to do and heads off.'
  2088. dynamic $go_home
  2089. end
  2090. exit
  2091. elseif sub <= 20 and loverscompliance[lover_number] < 6:
  2092. act 'Your personality is not something that can be dominated that easily, and you brush him off, telling him that you decide what size your body looks good at':
  2093. cla
  2094. pcs_dom += 1
  2095. loverrelation[lover_number] -=3
  2096. '<<$loverdesc[lover_number]>> realizes you will not give in this situation, and walks away mumbling to himself.'
  2097. dynamic $go_home
  2098. end
  2099. exit
  2100. elseif sub > 20 or loverscompliance[lover_number] >= 6:
  2101. act 'You squeek, "But I like being this weight..."':
  2102. cla
  2103. loverrelation[lover_number] -= 2
  2104. wantRand = rand(0, 100)
  2105. wantRand -= 4*loverscompliance[lover_number]
  2106. if wantRand > sub:
  2107. cla
  2108. '<<$loverdesc[lover_number]>> tries to push you to change your weight, but you successfully tell him that you do not want to. This makes him rather upset.'
  2109. ''
  2110. dynamic $go_home
  2111. exit
  2112. elseif wantRand <= sub:
  2113. cla
  2114. '<<$loverdesc[lover_number]>> keeps up the pressure, and because of your demeaner, and you give in. He grins widely and takes you to the clinic.'
  2115. sub += 4
  2116. loverrelation[lover_number] += 5
  2117. act 'Go to the clinic':
  2118. gt 'boy_likes', 'changeFigure'
  2119. end
  2120. exit
  2121. end
  2122. end
  2123. end
  2124. else
  2125. '"Erm... Nothing..."'
  2126. act '"Well then..."':
  2127. *clr
  2128. xgt 'meet', 'actions'
  2129. exit
  2130. end
  2131. end
  2132. elseif randchan = 1:
  2133. '<<$loverdesc[lover_number]>> suggests that you go to a cafe.'
  2134. act 'Sorry, but I need to leave':
  2135. cla
  2136. loverrelation[lover_number] -= (haraklover[lover_number] + 1)
  2137. dynamic $go_home
  2138. end
  2139. act 'Go with him':gt 'kafeM', 'start'
  2140. exit
  2141. elseif randchan = 2:
  2142. '<<$loverdesc[lover_number]>> suggests that you go to a restaurant.'
  2143. act 'Sorry, but I need to leave':
  2144. cla
  2145. loverrelation[lover_number] -= (haraklover[lover_number] + 1)
  2146. dynamic $go_home
  2147. end
  2148. act 'Go with him':gt 'restoranM', 'start'
  2149. exit
  2150. elseif randchan = 3:
  2151. '<<$loverdesc[lover_number]>> suggests that you go to the movies.'
  2152. act 'Sorry, but I need to go':
  2153. cla
  2154. loverrelation[lover_number] -= (haraklover[lover_number] + 1)
  2155. dynamic $go_home
  2156. end
  2157. act 'Go with him':gt 'kinoM', 'start'
  2158. exit
  2159. end
  2160. end
  2161. end
  2162. act 'I want to do something today':
  2163. cla
  2164. randchan = rand(0, 1)
  2165. if randchan = 0:
  2166. pcs_dom += 1
  2167. end
  2168. '"What do you want to do?", he asks'
  2169. act '"Lets go just relax in the stairwell and drink some beer."':
  2170. act 'Go with him':gt 'podezdM', 'start'
  2171. end
  2172. act '"Lets take a walk in the park"':
  2173. act 'Go with him':gt 'parkM', 'start'
  2174. end
  2175. act '"Lets go see a movie"':
  2176. act 'Go with him':gt 'kinoM', 'start'
  2177. end
  2178. act '"Lets go to the cafe."':
  2179. act 'Go with him':gt 'kafeM', 'start'
  2180. end
  2181. act 'Never mind...':
  2182. gt 'meet', 'actions'
  2183. exit
  2184. end
  2185. end
  2186. act 'I think we should break up...':
  2187. cla
  2188. 'He looks hurt, but you insist it is for the best. You both say goodbye and part ways.'
  2189. loverrelation[lover_number] = 0
  2190. pcs_lovers[lover_number] = 0
  2191. pcs_lover -= 1
  2192. act 'Continue':
  2193. dynamic $go_home
  2194. exit
  2195. end
  2196. end
  2197. end
  2198. --- meet ---------------------------------