lover_meet.qsrc 76 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007
  1. # lover_meet
  2. if $ARGS[0] = 'start':
  3. minut += 15
  4. loverdays[lover_number] += 1
  5. svidanie[lover_number] = 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 'lover_pronouns'
  17. gs 'lover_pref'
  18. !!This keeps track in the change action what it plans to change
  19. $changeFind = ''
  20. !!How many days until the lover starts to comment.
  21. clotDay = 3
  22. bodyDay = 7
  23. !!How many days until they want you to change.
  24. pierDay = 7
  25. tattDay = 7
  26. lipsDay = 9
  27. titsDay = 12
  28. figureDay = 15
  29. !! This is the start of the usual talk
  30. !!character 0 - soft, 1 -norm 2 - aggressor
  31. if haraklover[lover_number] = 0:
  32. if loverrelation[lover_number] > 70:
  33. randchan = rand(0, 1)
  34. if randchan = 0:
  35. $greet = 'says with love in <<$tXyr>> eyes, "Hey <<$pcs_nickname>>."'
  36. elseif randchan = 1:
  37. $greet = 'says lovingly, "Hello love. I''m glad so see you."'
  38. else
  39. $greet = 'says quietly while looking into your eyes, "Hello love." '
  40. end
  41. elseif loverrelation[lover_number] > 20:
  42. randchan = rand(0, 1)
  43. if randchan = 0:
  44. $greet = 'says with a faint smile,"Hey <<$pcs_nickname>>."'
  45. elseif randchan = 1:
  46. $greet = 'says with a smile , "Hi <<$pcs_nickname>>."'
  47. end
  48. else
  49. $greet = 'says, "Hi <<$pcs_firstname>>."'
  50. end
  51. end
  52. if haraklover[lover_number] = 1:
  53. if loverrelation[lover_number] > 70:
  54. randchan = rand(0, 1)
  55. if randchan = 0:
  56. $greet = 'says, "Hey love. I am so happy to see you."'
  57. elseif randchan = 1:
  58. $greet = 'says intimately, "Hello my angel."'
  59. else
  60. $greet = 'says while admiring you, "Hello <<$pcs_nickname>> beautiful."'
  61. end
  62. elseif loverrelation[lover_number] > 20:
  63. randchan = rand(0, 1)
  64. if randchan = 0:
  65. $greet = 'says with a smile, "Hey <<$pcs_nickname>>, glad to see you."'
  66. elseif randchan = 1:
  67. $greet = 'says with a soft tone, "Hello beautiful."'
  68. end
  69. else
  70. $greet = 'says, "Hello <<$pcs_nickname>>."'
  71. end
  72. end
  73. if haraklover[lover_number] = 2:
  74. if loverrelation[lover_number] > 70:
  75. randchan = rand(0, 1)
  76. if randchan = 0:
  77. $greet = 'says with a loving voice, "Theres my sexy gal."'
  78. elseif randchan = 1:
  79. $greet = 'says with a toothful grin, "There is my goddess."'
  80. else
  81. $greet = 'says with a rather loud enduring voice, "Hey babe!"'
  82. end
  83. elseif loverrelation[lover_number] > 20:
  84. randchan = rand(0, 1)
  85. if randchan = 0:
  86. $greet = 'says with a grin, "Hey <<$pcs_nickname>>."'
  87. elseif randchan = 1:
  88. $greet = 'says with a chuckle, "Hey''ya <<$pcs_nickname>>."'
  89. end
  90. else
  91. $greet = 'says, "Hey <<$pcs_nickname>>."'
  92. end
  93. end
  94. gs 'lover_love'
  95. !! QUEST VARIABLES!!! WOOOT ALMOST TIME!
  96. didPushAway = 0
  97. !!How beautiful you are
  98. if pcs_skin < 20:
  99. loverrelation[lover_number] -= 2 & $meetskin = 'looking at <<$tXyr>> feet'
  100. elseif pcs_skin < 40:
  101. loverrelation[lover_number] -= 1 & $meetskin = 'giving you a quick glance'
  102. elseif pcs_skin < 60:
  103. $meetskin = 'looking at you'
  104. elseif pcs_skin < 80:
  105. loverrelation[lover_number] += 1 & $meetskin = 'smiling at you'
  106. else
  107. loverrelation[lover_number] += 2 & $meetskin = 'smiling at you'
  108. end
  109. !! Your lip size
  110. if pcs_lip = 0:$meetlip = 'thin lips'
  111. if pcs_lip = 1:$meetlip = 'soft lips'
  112. if pcs_lip = 2:$meetlip = 'plump lips'
  113. if pcs_lip = 3:$meetlip = 'large, plump lips'
  114. if pcs_lip = 4:$meetlip = 'thick and huge lips'
  115. if loverfinance[lover_number] = 0:$clom = 'dressed in a tracksuit.'
  116. if loverfinance[lover_number] = 1:$clom = 'dressed in jeans and a sweater.'
  117. if loverfinance[lover_number] = 2 and loverGender[lover_number] = 0:$clom = 'dressed in a respectable and expensive jacket.'
  118. if loverfinance[lover_number] = 2 and loverGender[lover_number] = 1:$clom = 'dressed in a beautiful and expensive dress.'
  119. !!Greeting start
  120. 'At the entrance <<$meetskin>> stands <<$loverdesc[lover_number]>>. <<$tXec>> comes over to you and <<$greet>>'
  121. gs 'lover_likes', 'hairPref'
  122. gs 'lover_likes', 'makePrefTmp'
  123. if haraklover[lover_number] = 0:'<<$loverdesc[lover_number]>> looks like a timid and not very confident young <<$loverGenderName>> <<$clom>>'
  124. if haraklover[lover_number] = 1:'<<$loverdesc[lover_number]>> looks like a average young <<$loverGenderName>> <<$clom>>'
  125. if haraklover[lover_number] = 2:'<<$loverdesc[lover_number]>> looks like a cocky and brash young <<$loverGenderName>> <<$clom>>'
  126. !!This is to reset the like part later
  127. likeCount = 0
  128. like1 = 99
  129. like2 = 99
  130. like3 = 99
  131. !! This is the greeting kissy kissy part
  132. if haraklover[lover_number] >= 0:
  133. if loverrelation[lover_number] > -20:
  134. loverrelation[lover_number] += 0
  135. '<<$loverdesc[lover_number]>> gets close to you, and you can tell by <<$tXyr>> body movements <<$tXe>> wants to kiss you.'
  136. act 'Kiss with tongue':
  137. !! *clr
  138. 'You take the initiative and when <<$tXe>> opens <<$tXyr>> mouth you thrust your tongue into <<$tXyr>> mouth.'
  139. gs 'arousal', 'kiss', 5
  140. pcs_dom += 1
  141. pcs_mood += 10
  142. gs 'stat'
  143. if venera > 4:
  144. gs 'lover', 'remove', lover_number
  145. '<<$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."'
  146. pcs_mood -= 20
  147. dynamic $go_home
  148. exit
  149. elseif venera < 4 and cumloc[11] = 0 and (cumloc[6] = 0 and cumloc[7] = 0):
  150. if haraklover[lover_number] = 0:
  151. loverrelation[lover_number] += 2
  152. 'Normally this would have made <<$tXem>> feel uncomfortable, but as you pull away <<$tXe>> smiles and sighs contently.'
  153. elseif haraklover[lover_number] = 1:
  154. loverrelation[lover_number] += 1
  155. '<<$tXec>> goes with it a blink and in moments your tongues are intertwined.'
  156. elseif haraklover[lover_number] = 2:
  157. 'It seems as <<$loverdesc[lover_number]>> had the same idea, as <<$tXe>> pushes <<$tXyr>> tongue into your mouth as much as you push into <<$tXyr>>.'
  158. loverrelation[lover_number] += 2
  159. else
  160. 'This should not fire off at all: TongueKiss'
  161. end
  162. elseif cumloc[11] = 1 or (cumloc[6] = 1 or cumloc[7] = 1) and pervConstant = 1 and loverGender[lover_number] = 0:
  163. if cumloc[11] = 1:
  164. if haraklover[lover_number] = 0:
  165. loverrelation[lover_number] += 2
  166. pcs_horny += 5
  167. '<<$tXec>> can see sperm on your face, but underneath <<$tXyr>> shy demener you know that it only turns <<$tXem>> on.'
  168. elseif haraklover[lover_number] = 1:
  169. loverrelation[lover_number] += 2
  170. pcs_horny += 5
  171. '<<$tXec>> can see sperm on your face, but you know that it only turns <<$tXem>> on more.'
  172. elseif haraklover[lover_number] = 2:
  173. '<<$tXec>> can see sperm on your face, but by the bulge in <<$tXyr>> pants you know it only turns <<$tXem>> on.'
  174. end
  175. elseif (cumloc[6] = 1 or cumloc[7] = 1):
  176. if haraklover[lover_number] = 0:
  177. loverrelation[lover_number] += 2
  178. pcs_horny += 5
  179. '<<$tXec>> can see sperm on your ass, but underneath <<$tXyr>> shy demener you know that it only turns <<$tXem>> on.'
  180. elseif haraklover[lover_number] = 1:
  181. loverrelation[lover_number] += 2
  182. pcs_horny += 5
  183. '<<$tXec>> can see sperm on your ass, but you know that it only turns <<$tXem>> on more.'
  184. elseif haraklover[lover_number] = 2:
  185. loverrelation[lover_number] += 3
  186. pcs_horny += 5
  187. '<<$tXec>> can see sperm on your ass, but by the bulge in <<$tXyr>> pants you know it only turns <<$tXem>> on.'
  188. end
  189. end
  190. elseif cumloc[11] = 1 or (cumloc[6] = 1 or cumloc[7] = 1) and (pervConstant ! 1 or loverGender[lover_number] = 0):
  191. if cumloc[11] = 1:
  192. gs 'lover', 'remove', lover_number
  193. '<<$tXec>> notices the sperm on your face, "H-Hey- <<$pcs_firstname>>! What the...?! You dirty whore!", <<$tXe>> then pushes you out of <<$tXyr>> face. "We are through, I don''t want to see your face again!'
  194. pcs_mood -= 20
  195. dynamic $go_home
  196. exit
  197. elseif (cumloc[6] = 1 or cumloc[7] = 1):
  198. loverrelation[lover_number] += 2
  199. '<<$tXec>> notices the sperm on your ass, "<<$pcs_firstname>>! What the...?! You dirty whore!", <<$tXe>> then pushes you away. "We are through, I don''t want to see your face again!'
  200. pcs_mood -= 20
  201. dynamic $go_home
  202. exit
  203. end
  204. end
  205. cla
  206. act 'Continue':
  207. xgt 'lover_meet', 'likes'
  208. end
  209. exit
  210. end
  211. act 'Kiss with lips':
  212. !! *clr
  213. 'You press your <<$meetlip>> softly against <<$tXyr>>, and for a split second time seems to stop.'
  214. pcs_mood += 10
  215. if cumloc[11] = 0 and (cumloc[6] = 0 and cumloc[7] = 0):
  216. if haraklover[lover_number] = 0:
  217. loverrelation[lover_number] += 2
  218. '<<$tXec>> wraps arms around you, you both stay like this for at least a couple of seconds and as you pull away <<$tXe>> looks into your eyes and smiles.'
  219. gs 'arousal', 'kiss', 5
  220. gs 'stat'
  221. elseif haraklover[lover_number] = 1:
  222. loverrelation[lover_number] += 2
  223. '<<$tXec>> kisses you back with such skill it turns you on.'
  224. gs 'arousal', 'kiss', 5
  225. gs 'stat'
  226. elseif haraklover[lover_number] = 2:
  227. loverrelation[lover_number] += 2
  228. '<<$tXec>> kisses you back with such passion you feel a tingle within you.'
  229. gs 'arousal', 'kiss', 5
  230. gs 'stat'
  231. end
  232. elseif cumloc[11] = 1 or (cumloc[6] = 1 or cumloc[7] = 1) or cumloc[12] = 1 and pervConstant = 1:
  233. if cumloc[11] = 1:
  234. if haraklover[lover_number] = 0:
  235. loverrelation[lover_number] += 2
  236. pcs_horny += 5
  237. '<<$tXec>> can see sperm on your face, but underneath <<$tXyr>> shy demener you know that it only turns <<$tXem>> on.'
  238. elseif haraklover[lover_number] = 1:
  239. loverrelation[lover_number] += 2
  240. pcs_horny += 5
  241. '<<$tXec>> can see sperm on your face, but you know that it only turns <<$tXem>> on more.'
  242. elseif haraklover[lover_number] = 2:
  243. loverrelation[lover_number] += 3
  244. pcs_horny += 5
  245. '<<$tXec>> can see sperm on your face, but by the bulge in <<$tXyr>> pants you know it only turns <<$tXem>> on.'
  246. end
  247. elseif (cumloc[6] = 1 or cumloc[7] = 1):
  248. if haraklover[lover_number] = 0:
  249. loverrelation[lover_number] += 2
  250. pcs_horny += 5
  251. '<<$tXec>> can see sperm on your ass, but underneath <<$tXyr>> shy demener you know that it only turns <<$tXem>> on.'
  252. elseif haraklover[lover_number] = 1:
  253. loverrelation[lover_number] += 2
  254. pcs_horny += 5
  255. '<<$tXec>> can see sperm on your ass, but you know that it only turns <<$tXem>> on more.'
  256. elseif haraklover[lover_number] = 2:
  257. loverrelation[lover_number] += 3
  258. pcs_horny += 5
  259. '<<$tXec>> can see sperm on your ass, but by the bulge in <<$tXyr>> pants you know it only turns <<$tXem>> on.'
  260. end
  261. elseif cumloc[12] = 1:
  262. if haraklover[lover_number] = 0:
  263. loverrelation[lover_number] += 2
  264. pcs_horny += 5
  265. '<<$tXec>> can smell the scent of sperm on you, but underneath <<$tXyr>> shy demener you know that it only turns <<$tXem>> on.'
  266. elseif haraklover[lover_number] = 1:
  267. loverrelation[lover_number] += 2
  268. pcs_horny += 5
  269. '<<$tXec>> can smell the scent of sperm on you, but you know that it only turns <<$tXem>> on more.'
  270. elseif haraklover[lover_number] = 2:
  271. loverrelation[lover_number] += 3
  272. pcs_horny += 5
  273. '<<$tXec>> can smell the scent of sperm on you, but you know by the bulge in <<$tXyr>> pants it only turns <<$tXem>> on more.'
  274. end
  275. end
  276. else
  277. if cumloc[11] = 1 or (cumloc[6] = 1 or cumloc[7] = 1) and pervConstant ! 1:
  278. if cumloc[11] = 1:
  279. gs 'lover', 'remove', lover_number
  280. '<<$tXec>> notices the sperm on your face, "<<$pcs_firstname>>! What the...?! You dirty whore!", <<$tXe>> then pushes you out of <<$tXyr>> face. "We are through, I don''t want to see your face again!'
  281. pcs_mood -= 20
  282. dynamic $go_home
  283. exit
  284. elseif (cumloc[6] = 1 or cumloc[7] = 1):
  285. gs 'lover', 'remove', lover_number
  286. '<<$tXec>> notices the sperm on your ass, "<<$pcs_firstname>>! What the...?! You dirty whore!", <<$tXe>> then pushes you away. "We are through, I don''t want to see your face again!'
  287. pcs_mood -= 20
  288. dynamic $go_home
  289. exit
  290. end
  291. end
  292. end
  293. cla
  294. act 'Continue':
  295. xgt 'lover_meet', 'likes'
  296. end
  297. exit
  298. end
  299. act 'Hint for a kiss on the cheek':
  300. !! *clr
  301. 'You make a cute pouty face and turn your cheek toward <<$loverdesc[lover_number]>>. <<$tXec>> understands and though <<$tXe>> wanted to kiss you, <<$tXe>> settles with giving you a peck on the cheek'
  302. pcs_mood += 10
  303. if cumloc[11] = 0 and (cumloc[6] = 0 and cumloc[7] = 0):
  304. if haraklover[lover_number] = 0:
  305. loverrelation[lover_number] += 2
  306. '<<$tXec>> gives you a soft kiss on the cheek, and you can tell <<$tXe>> finds this act very cute.'
  307. gs 'arousal', 'kiss', 5
  308. gs 'stat'
  309. elseif haraklover[lover_number] = 1:
  310. loverrelation[lover_number] += 1
  311. '<<$tXec>> kisses you on the cheek and before <<$tXe>> pulls away you feel a quick kiss on the forhead.'
  312. gs 'arousal', 'kiss', 5
  313. gs 'stat'
  314. elseif haraklover[lover_number] = 2:
  315. loverrelation[lover_number] += 0
  316. 'Though you can tell <<$tXe>> is a bit disappointed, <<$tXe>> gives you a kiss on the cheek. As <<$tXe>> pulls away <<$tXe>> gives your ass a quick squeeze.'
  317. gs 'arousal', 'kiss', 5
  318. gs 'stat'
  319. end
  320. elseif cumloc[11] = 1 or (cumloc[6] = 1 or cumloc[7] = 1) or cumloc[12] = 1 and pervConstant = 1:
  321. if cumloc[11] = 1:
  322. if haraklover[lover_number] = 0:
  323. loverrelation[lover_number] += 2
  324. pcs_horny += 5
  325. '<<$tXec>> can see sperm on your face, but underneath <<$tXyr>> shy demener you know that it only turns <<$tXem>> on.'
  326. elseif haraklover[lover_number] = 1:
  327. loverrelation[lover_number] += 2
  328. pcs_horny += 5
  329. '<<$tXec>> can see sperm on your face, but you know that it only turns <<$tXem>> on more.'
  330. elseif haraklover[lover_number] = 2:
  331. loverrelation[lover_number] += 3
  332. pcs_horny += 5
  333. '<<$tXec>> can see sperm on your face, but by the bulge in <<$tXyr>> pants you know it only turns <<$tXem>> on.'
  334. end
  335. elseif (cumloc[6] = 1 or cumloc[7] = 1):
  336. if haraklover[lover_number] = 0:
  337. loverrelation[lover_number] += 1
  338. pcs_horny += 5
  339. '<<$tXec>> can see sperm on your ass, but underneath <<$tXyr>> shy demener you know that it only turns <<$tXem>> on.'
  340. elseif haraklover[lover_number] = 1:
  341. loverrelation[lover_number] += 1
  342. pcs_horny += 5
  343. '<<$tXec>> can see sperm on your ass, but you know that it only turns <<$tXem>> on more.'
  344. elseif haraklover[lover_number] = 2:
  345. loverrelation[lover_number] += 1
  346. pcs_horny += 5
  347. '<<$tXec>> can see sperm on your ass, but by the bulge in <<$tXyr>> pants you know it only turns <<$tXem>> on.'
  348. end
  349. end
  350. elseif cumloc[11] = 1 or (cumloc[6] = 1 or cumloc[7] = 1) and pervConstant ! 1:
  351. if cumloc[11] = 1:
  352. gs 'lover', 'remove', lover_number
  353. '<<$tXec>> notices the sperm on your face, "H-Hey- <<$pcs_firstname>>! What the...?! You dirty whore!", <<$tXe>> then pushes you out of <<$tXyr>> face. "We are through, I don''t want to see your face again!'
  354. pcs_mood -= 20
  355. dynamic $go_home
  356. exit
  357. elseif (cumloc[6] = 1 or cumloc[7] = 1):
  358. gs 'lover', 'remove', lover_number
  359. '<<$tXec>> notices the sperm on your ass, "H-Hey- <<$pcs_firstname>>! What the...?! You dirty whore!", <<$tXe>> then pushes you away. "We are through, I don''t want to see your face again!'
  360. pcs_mood -= 20
  361. dynamic $go_home
  362. exit
  363. elseif (cumloc[6] = 1 or cumloc[7] = 1):
  364. gs 'lover', 'remove', lover_number
  365. '<<$tXec>> realizes your mouth smells like sperm, "H-Hey- <<$pcs_firstname>>! What the...?! You dirty whore!", <<$tXe>> then pushes you away. "We are through, I don''t want to see your face again!"'
  366. pcs_mood -= 20
  367. dynamic $go_home
  368. exit
  369. end
  370. end
  371. cla
  372. act 'Continue':
  373. xgt 'lover_meet', 'likes'
  374. end
  375. exit
  376. end
  377. act 'Push <<$tXyr>> face away':
  378. !! *clr
  379. didPushAway = 1
  380. 'Maybe you had a bad day, maybe you don''t want a kiss, you rudely push <<$tXyr>> face away, and by the looks of it, hurting <<$tXyr>> feelings in the process.'
  381. if haraklover[lover_number] = 0:
  382. loverrelation[lover_number] -= 7
  383. '<<$tXec>> stands there slightly embarrassed, and you can tell this hurt your relationship a good amount.'
  384. elseif haraklover[lover_number] = 1:
  385. loverrelation[lover_number] -= 5
  386. '<<$tXec>> looks at you slightly concerned, but backs off and gives you your space.'
  387. elseif haraklover[lover_number] = 2:
  388. loverrelation[lover_number] -= 10
  389. '<<$tXec>> begins to get angry, <<$tXe>> takes a deep breath and gives you space.'
  390. end
  391. cla
  392. act 'Continue':
  393. xgt 'lover_meet', 'likes'
  394. end
  395. exit
  396. end
  397. end
  398. end
  399. end
  400. if $ARGS[0] = 'likes':
  401. cla
  402. if loverdays[lover_number] >= clotDay:
  403. gs 'lover_likes', 'clothesPref'
  404. end
  405. if loverdays[lover_number] >= bodyDay:
  406. gs 'lover_likes', 'bodyPrefTmp'
  407. end
  408. xgt 'lover_meet', 'actions'
  409. end
  410. if $ARGS[0] = 'actions':
  411. !! cls
  412. act 'Can I ask you how you think I look?':
  413. '<<$loverdesc[lover_number]>> says "If you insist" and tells you exactly how <<$tXe>> thinks you look based on what <<$tXe>> likes:'
  414. gs 'lover_likes', 'allPref'
  415. act 'Okay, lets talk about something else':
  416. xgt 'lover_meet', 'actions'
  417. end
  418. end
  419. act 'What do you want to do today?':
  420. cla
  421. randchan = rand(0, 1)
  422. if randchan = 0:
  423. sub += 1
  424. end
  425. 'You tell <<$tXem>> you would rather <<$tXem>> decide what we do today.'
  426. if haraklover[lover_number] = 0:
  427. loverrelation[lover_number] += 0
  428. 'Not used to being given the opportunity to choose, <<$tXe>> thinks what to do...'
  429. elseif haraklover[lover_number] = 1:
  430. loverrelation[lover_number] += 0
  431. '<<$tXec>> thinks about what to do today.'
  432. elseif haraklover[lover_number] = 2:
  433. loverrelation[lover_number] += 1
  434. 'You can tell <<$tXe>> is happy you gave <<$tXem>> the ability to choose what to do today.'
  435. end
  436. !!This is the choice maker!
  437. if loverfinance[lover_number] = 0:
  438. !! 0 - change player, 1 - beer in stairwell, 2 - walk in park,
  439. randchan = rand(0, 2)
  440. !! 1 = does like, 0 = not like
  441. if (pierWearCount >= pierPrefTmpMin and pierWearCount <= pierPrefTmpMax) or pierPrefTmp = 0:
  442. pierCheck = 1
  443. else
  444. pierCheck = 0
  445. end
  446. if (tattCount >= tattPrefTmpMin and tattCount <= tattPrefTmpMax) or tattPrefTmp = 0:
  447. tattCheck = 1
  448. else
  449. tattCheck = 0
  450. end
  451. if (makeupSetting = makePrefTmp) or makePrefTmp = 0:
  452. makeupCheck = 1
  453. else
  454. makeupCheck = 0
  455. end
  456. if pcs_haircol = hairPref:
  457. hairCheck = 1
  458. else
  459. hairCheck = 0
  460. end
  461. if (pierWearCount >= pierPrefTmpMin and pierWearCount <= pierPrefTmpMax) or pierPrefTmp = 0:
  462. pierCheck = 1
  463. else
  464. pierCheck = 0
  465. end
  466. if (tattCount >= tattPrefTmpMin and tattCount <= tattPrefTmpMax) or tattPrefTmp = 0:
  467. tattCheck = 1
  468. else
  469. tattCheck = 0
  470. end
  471. if randchan = 0 and (pierCheck + tattCheck + makeupCheck + hairCheck) = 4:
  472. randchan = rand(1, 2)
  473. end
  474. if randchan = 0:
  475. cls
  476. !!Some things you can change.
  477. !!loverfinance[lover_number] = 0 - hair, makeup, tattoo, piercings.
  478. if haraklover[lover_number] = 0:
  479. '"Actually can I talk to you about something?", <<$loverdesc[lover_number]>> asks you.'
  480. elseif haraklover[lover_number] = 1:
  481. '"Actually can I talk to you about something?", <<$loverdesc[lover_number]>> asks you.'
  482. elseif haraklover[lover_number] = 2:
  483. '"Actually can I talk to you about something?", <<$loverdesc[lover_number]>> asks you.'
  484. end
  485. '"Whats up <<$loverdesc[lover_number]>>?"'
  486. '"There is just a trait about you that bugs me, can we change that?"'
  487. if loverscompliance[lover_number] > 0:
  488. 'You know you have changed for <<$tXem>> before, and you want to avoid to changing into something you are not.'
  489. end
  490. gs 'lover_likes', 'compliance'
  491. '"And what did you want to change about me?"'
  492. !!This is to make a last check on how many piercings they are WEARING
  493. gs 'lover_likes', 'checkPier'
  494. if pcs_haircol ! hairPref:
  495. '<<$loverdesc[lover_number]>> looks at your hair and says, "can we get your hair dyed?"'
  496. !!act 'I''d rather not...':
  497. if sub < 20 and loverrelation[lover_number] < 60 and loverscompliance[lover_number] < 6:
  498. act 'I like my hair just the way it is':
  499. cla
  500. cls
  501. loverrelation[lover_number] -= 3
  502. '<<$loverdesc[lover_number]>> tries to push you to change it, but you are not that submissive to be pressured by <<$tXem>>, nor do your emotions make you make a choice you may regret.'
  503. dynamic $go_home
  504. end
  505. act 'Go with <<$tXem>>':
  506. gt 'lover_change', 'Hair'
  507. end
  508. exit
  509. elseif loverrelation[lover_number] <= 60 and loverscompliance[lover_number] < 6:
  510. act 'You think to yourself, its not like I like <<$tXem>> THAT much...':
  511. cla
  512. pcs_dom += 1
  513. loverrelation[lover_number] -=3
  514. '<<$loverdesc[lover_number]>> <<$tXe>> realizes you adoration for <<$tXem>> isn''t enough to pressure you to do that. <<$tXec>> tells you <<$tXe>> has something to do and heads off'
  515. dynamic $go_home
  516. end
  517. exit
  518. elseif sub <= 20 and loverscompliance[lover_number] < 6:
  519. act 'Your personality is not something that can be dominated that easily, and you brush <<$tXem>> off, telling <<$tXem>> you are who you are':
  520. cla
  521. pcs_dom += 1
  522. loverrelation[lover_number] -=3
  523. '<<$loverdesc[lover_number]>> realizes you will not give in this situation, and walks away mumbling to <<$tXemself>>.'
  524. dynamic $go_home
  525. end
  526. exit
  527. elseif sub > 20 or loverscompliance[lover_number] >= 6:
  528. act 'You mumble "I would rather not..."':
  529. cla
  530. loverrelation[lover_number] -= 2
  531. wantRand = rand(0, 100)
  532. wantRand -= 4*loverscompliance[lover_number]
  533. if wantRand > sub:
  534. cla
  535. '<<$loverdesc[lover_number]>> tries to push you to change it, but you successfully inform <<$tXem>> that you do not want to. This makes <<$tXem>> rather upset.'
  536. ''
  537. dynamic $go_home
  538. exit
  539. elseif wantRand <= sub:
  540. cla
  541. '<<$loverdesc[lover_number]>> keeps up the pressure, and because of your demeanor, and you give in. <<$tXec>> smiles happily and takes you to the salon.'
  542. sub += 2
  543. loverrelation[lover_number] += 5
  544. act 'Go to Salon':
  545. gt 'lover_change', 'Hair'
  546. end
  547. exit
  548. end
  549. end
  550. end
  551. elseif makeupSetting ! makePrefTmp and makePrefTmp ! 0:
  552. '<<$loverdesc[lover_number]>> thinks about it and says "Can you wear <<$makePrefTmp>> from now on?"'
  553. !!act 'I''d rather not...':
  554. if sub < 20 and loverrelation[lover_number] < 60 and loverscompliance[lover_number] < 6:
  555. act 'I like my makeup just the way it is':
  556. cla
  557. cls
  558. loverrelation[lover_number] -= 3
  559. '<<$loverdesc[lover_number]>> tries to push you to change it, but you are not that submissive to be pressured by <<$tXem>>, nor do your emotions make you make a choice you may regret.'
  560. dynamic $go_home
  561. end
  562. act 'Agree to change the makeup you usually wear':
  563. gt 'lover_change', 'Make'
  564. end
  565. exit
  566. elseif loverrelation[lover_number] <= 60 and loverscompliance[lover_number] < 6:
  567. act 'You think to yourself, its not like I like <<$tXem>> THAT much...':
  568. cla
  569. pcs_dom += 1
  570. loverrelation[lover_number] -=3
  571. '<<$loverdesc[lover_number]>> <<$tXe>> realizes you adoration for <<$tXem>> isn''t enough to pressure you to do that. You can tell that <<$tXe>> is bummed when <<$tXe>> tells you <<$tXe>> has something to do and heads off.'
  572. dynamic $go_home
  573. end
  574. exit
  575. elseif sub <= 20 and loverscompliance[lover_number] < 6:
  576. act 'Your personality is not something that can be dominated that easily, and you brush <<$tXem>> off, telling <<$tXem>> you like the makeup you usually wear':
  577. cla
  578. pcs_dom += 1
  579. loverrelation[lover_number] -=3
  580. '<<$loverdesc[lover_number]>> realizes you will not give in this situation, and walks away mumbling to <<$tXemself>>.'
  581. dynamic $go_home
  582. end
  583. exit
  584. elseif sub > 20 or loverscompliance[lover_number] >= 6:
  585. act 'You mumble "What''s wrong with my makeup...?"':
  586. cla
  587. loverrelation[lover_number] -= 2
  588. wantRand = rand(0, 100)
  589. wantRand -= 4*loverscompliance[lover_number]
  590. if wantRand > sub:
  591. cla
  592. '<<$loverdesc[lover_number]>> tries to push you to change it, but you successfully inform <<$tXem>> that you do not want to. This makes <<$tXem>> rather upset.'
  593. ''
  594. dynamic $go_home
  595. exit
  596. elseif wantRand <= sub:
  597. cla
  598. '<<$loverdesc[lover_number]>> keeps up the pressure, and because of your demeanor, and you give in. You tell <<$tXem>> from now on you will wear <<$makePrefTmp>>.'
  599. sub += 2
  600. loverrelation[lover_number] += 5
  601. act 'Continue':
  602. gt 'lover_change', 'Make'
  603. end
  604. exit
  605. end
  606. end
  607. end
  608. elseif pierWearCount < pierPrefTmpMin or pierWearCount > pierPrefTmpMax and pierPrefTmp ! 0 and pierDay <= loverdays[lover_number]:
  609. '<<$loverdesc[lover_number]>> talks about how you just don''t have the right amount of piercings.'
  610. if pierWearCount < pierPrefTmpMin:
  611. '<<$tXec>> tells you that you should have more piercings.'
  612. else
  613. '<<$tXec>> tells you that you should have less piercings.'
  614. end
  615. if sub < 20 and loverrelation[lover_number] < 60 and loverscompliance[lover_number] < 6:
  616. act 'I am not going to change my piercings!':
  617. cla
  618. cls
  619. loverrelation[lover_number] -= 3
  620. '<<$loverdesc[lover_number]>> tries to push you to change it, but you are not that submissive to be pressured by <<$tXem>>, nor do your emotions make you make a choice you may regret.'
  621. dynamic $go_home
  622. end
  623. act 'Agree to change the amount of piercings you have':
  624. gt 'lover_change', 'Pier'
  625. end
  626. exit
  627. elseif loverrelation[lover_number] <= 60 and loverscompliance[lover_number] < 6:
  628. act 'You think to yourself, its not like I like <<$tXem>> THAT much...':
  629. cla
  630. pcs_dom += 1
  631. loverrelation[lover_number] -=3
  632. '<<$loverdesc[lover_number]>> <<$tXe>> realizes you adoration for <<$tXem>> isn''t enough to pressure you to do that. <<$tXec>> tells you <<$tXe>> has something to do and heads off'
  633. dynamic $go_home
  634. end
  635. exit
  636. elseif sub <= 20 and loverscompliance[lover_number] < 6:
  637. act 'Your personality is not something that can be dominated that easily, and you brush <<$tXem>> off, telling <<$tXem>> you are who you are':
  638. cla
  639. pcs_dom += 1
  640. loverrelation[lover_number] -=3
  641. '<<$loverdesc[lover_number]>> realizes you will not give in this situation, and walks away mumbling to <<$tXemself>>.'
  642. dynamic $go_home
  643. end
  644. exit
  645. elseif sub > 20 or loverscompliance[lover_number] >= 6:
  646. act 'You mumble "I would rather not..."':
  647. cla
  648. loverrelation[lover_number] -= 2
  649. wantRand = rand(0, 100)
  650. wantRand -= 4*loverscompliance[lover_number]
  651. if wantRand > sub:
  652. cla
  653. '<<$loverdesc[lover_number]>> tries to push you to change the amount of piercings you have, but you successfully inform <<$tXem>> that you do not want to. This makes <<$tXem>> rather upset.'
  654. ''
  655. dynamic $go_home
  656. exit
  657. elseif wantRand <= sub:
  658. cla
  659. '<<$loverdesc[lover_number]>> keeps up the pressure, and because of your demeanor, and you give in. <<$tXec>> smiles happily and then gets down to how to get the right amount of piercings.'
  660. sub += 2
  661. loverrelation[lover_number] += 5
  662. act 'Continue':
  663. gt 'lover_change', 'Pier'
  664. end
  665. exit
  666. end
  667. end
  668. end
  669. elseif tattCount < tattPrefTmpMin or tattCount > tattPrefTmpMax and tattPrefTmp ! 0 and tattDay <= loverdays[lover_number]:
  670. '<<$loverdesc[lover_number]>> talks about how you just don''t have the right amount of tattoos.'
  671. if tattCount < tattPrefTmpMin:
  672. '<<$tXec>> tells you that you should have more tattoos.'
  673. else
  674. '<<$tXec>> tells you that you should have less tattoos.'
  675. end
  676. if sub < 20 and loverrelation[lover_number] < 60 and loverscompliance[lover_number] < 6:
  677. act 'I am not going to change my tattoos!':
  678. cla
  679. cls
  680. loverrelation[lover_number] -= 3
  681. '<<$loverdesc[lover_number]>> tries to push you to change it, but you are not that submissive to be pressured by <<$tXem>>, nor do your emotions make you make a choice you may regret.'
  682. dynamic $go_home
  683. end
  684. act 'Agree to change the amount of tattoos you have':
  685. gt 'lover_change', 'Tatt'
  686. end
  687. exit
  688. elseif loverrelation[lover_number] <= 60 and loverscompliance[lover_number] < 6:
  689. act 'You think to yourself, its not like I like <<$tXem>> THAT much...':
  690. cla
  691. pcs_dom += 1
  692. loverrelation[lover_number] -=3
  693. '<<$loverdesc[lover_number]>> <<$tXe>> realizes you adoration for <<$tXem>> isn''t enough to pressure you to do that. <<$tXec>> tells you <<$tXe>> has something to do and heads off'
  694. dynamic $go_home
  695. end
  696. exit
  697. elseif sub <= 20 and loverscompliance[lover_number] < 6:
  698. act 'Your personality is not something that can be dominated that easily, and you brush <<$tXem>> off, telling <<$tXem>> you are who you are':
  699. cla
  700. pcs_dom += 1
  701. loverrelation[lover_number] -=3
  702. '<<$loverdesc[lover_number]>> realizes you will not give in this situation, and walks away mumbling to <<$tXemself>>.'
  703. dynamic $go_home
  704. end
  705. exit
  706. elseif sub > 20 or loverscompliance[lover_number] >= 6:
  707. act 'You mumble "I would rather not..."':
  708. cla
  709. loverrelation[lover_number] -= 2
  710. wantRand = rand(0, 100)
  711. wantRand -= 4*loverscompliance[lover_number]
  712. if wantRand > sub:
  713. cla
  714. '<<$loverdesc[lover_number]>> tries to push you to change the amount of tattoos you have, but you successfully inform <<$tXem>> that you do not want to. This makes <<$tXem>> rather upset.'
  715. ''
  716. dynamic $go_home
  717. exit
  718. elseif wantRand <= sub:
  719. cla
  720. '<<$loverdesc[lover_number]>> keeps up the pressure, and because of your demeanor, and you give in. <<$tXec>> smiles happily then starts to take you to the tattoo parlor to get the right amount of tattoos.'
  721. sub += 2
  722. loverrelation[lover_number] += 5
  723. act 'Go to tattoo parlor':
  724. gt 'lover_change', 'Tatt'
  725. end
  726. exit
  727. end
  728. end
  729. end
  730. else
  731. 'Erm... Nothing...'
  732. act 'Well then...':
  733. xgt 'lover_meet', 'actions'
  734. exit
  735. end
  736. end
  737. elseif randchan = 1 and loverGender[lover_number] = 0:
  738. '<<$loverdesc[lover_number]>> suggest you and <<$tXem>> drink a beer in the stairwell.'
  739. act 'Sorry, but I need to go':
  740. cla
  741. loverrelation[lover_number] -= (haraklover[lover_number] + 1)
  742. dynamic $go_home
  743. end
  744. act 'Go with <<$tXem>>':gt 'podezdM', 'start'
  745. exit
  746. elseif randchan = 2 or loverGender[lover_number] = 1:
  747. '<<$loverdesc[lover_number]>> suggests that you take a walk in the park.'
  748. act 'Sorry, but I need to go':
  749. cla
  750. loverrelation[lover_number] -= (haraklover[lover_number] + 1)
  751. dynamic $go_home
  752. end
  753. act 'Go with <<$tXem>>':
  754. if loverGender[lover_number] = 0: gt 'parkM', 'start'
  755. if loverGender[lover_number] = 1:
  756. $telsob = '<<$loverdesc[lover_number]>>'
  757. gt 'parksvid'
  758. end
  759. end
  760. exit
  761. end
  762. elseif loverfinance[lover_number] = 1:
  763. !! 0 - change player, 1 - go to the movies, 2 - walk in park, 3 , suggests that you go to a cafe.
  764. randchan = rand(0, 3)
  765. !! 1 = does like, 0 = not like
  766. if (pierWearCount >= pierPrefTmpMin and pierWearCount <= pierPrefTmpMax) or pierPrefTmp = 0:
  767. pierCheck = 1
  768. else
  769. pierCheck = 0
  770. end
  771. if (tattCount >= tattPrefTmpMin and tattCount <= tattPrefTmpMax) or tattPrefTmp = 0:
  772. tattCheck = 1
  773. else
  774. tattCheck = 0
  775. end
  776. if (makeupSetting = makePrefTmp) or makePrefTmp = 0:
  777. makeupCheck = 1
  778. else
  779. makeupCheck = 0
  780. end
  781. if pcs_haircol = hairPref:
  782. hairCheck = 1
  783. else
  784. hairCheck = 0
  785. end
  786. if tits >= titMin and tits <= titMax:
  787. titCheck = 1
  788. else
  789. titCheck = 0
  790. end
  791. if pcs_lips >= lipsPrefTmpMin and tits <= lipsPrefTmpMax:
  792. lipsCheck = 1
  793. else
  794. lipsCheck = 0
  795. end
  796. if randchan = 0 and (pierCheck + tattCheck + makeupCheck + hairCheck + titCheck + lipsCheck) = 6:
  797. 'Takes one look at your body and loves every part of it.'
  798. randchan = rand(1, 3)
  799. end
  800. if randchan = 0:
  801. cls
  802. !!Some things you can change.
  803. !!loverfinance[lover_number] = 1 - hair, makeup, tattoo, piercings, lips, tits.
  804. if haraklover[lover_number] = 0:
  805. '"Actually can I talk to you about something?", <<$loverdesc[lover_number]>> asks you.'
  806. elseif haraklover[lover_number] = 1:
  807. '"Actually can I talk to you about something?", <<$loverdesc[lover_number]>> asks you.'
  808. elseif haraklover[lover_number] = 2:
  809. '"Actually can I talk to you about something?", <<$loverdesc[lover_number]>> asks you.'
  810. end
  811. '"Whats up <<$loverdesc[lover_number]>>?"'
  812. '"There is just a trait about you that bugs me, can we change that?"'
  813. if loverscompliance[lover_number] > 0:
  814. 'You know you have changed for <<$tXem>> before, and you want to avoid to changing into something you are not.'
  815. end
  816. gs 'lover_likes', 'compliance'
  817. '"And what did you want to change about me?"'
  818. !!This is to make a last check on how many piercings they are WEARING
  819. gs 'lover_likes', 'checkPier'
  820. if pcs_haircol ! hairPref:
  821. '<<$loverdesc[lover_number]>> looks at your hair and says, "can we get your hair dyed?"'
  822. !!act 'I''d rather not...':
  823. if sub < 20 and loverrelation[lover_number] < 60 and compliance < 6:
  824. act 'I like my hair just the way it is':
  825. cla
  826. cls
  827. loverrelation[lover_number] -= 3
  828. '<<$loverdesc[lover_number]>> tries to push you to change it, but you are not that submissive to be pressured by <<$tXem>>, nor do your emotions make you make a choice you may regret.'
  829. dynamic $go_home
  830. end
  831. act 'Go with <<$tXem>>':
  832. gt 'lover_change', 'Hair'
  833. end
  834. exit
  835. elseif loverrelation[lover_number] <= 60 and loverscompliance[lover_number] < 6:
  836. act 'You think to yourself, its not like I like <<$tXem>> THAT much...':
  837. cla
  838. pcs_dom += 1
  839. loverrelation[lover_number] -=3
  840. '<<$loverdesc[lover_number]>> <<$tXe>> realizes you adoration for <<$tXem>> isn''t enough to pressure you to do that. <<$tXec>> tells you <<$tXe>> has something to do and heads off'
  841. dynamic $go_home
  842. end
  843. exit
  844. elseif sub <= 20 and loverscompliance[lover_number] < 6:
  845. act 'Your personality is not something that can be dominated that easily, and you brush <<$tXem>> off, telling <<$tXem>> you are who you are':
  846. cla
  847. pcs_dom += 1
  848. loverrelation[lover_number] -=3
  849. '<<$loverdesc[lover_number]>> realizes you will not give in this situation, and walks away mumbling to <<$tXemself>>.'
  850. dynamic $go_home
  851. end
  852. exit
  853. elseif sub > 20 or loverscompliance[lover_number] >= 6:
  854. act 'You mumble "I would rather not..."':
  855. cla
  856. loverrelation[lover_number] -= 2
  857. wantRand = rand(0, 100)
  858. wantRand -= 4*loverscompliance[lover_number]
  859. if wantRand > sub:
  860. cla
  861. '<<$loverdesc[lover_number]>> tries to push you to change it, but you successfully inform <<$tXem>> that you do not want to. This makes <<$tXem>> rather upset.'
  862. ''
  863. dynamic $go_home
  864. exit
  865. elseif wantRand <= sub:
  866. cla
  867. '<<$loverdesc[lover_number]>> keeps up the pressure, and because of your demeanor, and you give in. <<$tXec>> smiles happily and takes you to the salon.'
  868. sub += 2
  869. loverrelation[lover_number] += 5
  870. act 'Go to Salon':
  871. gt 'lover_change', 'Hair'
  872. end
  873. exit
  874. end
  875. end
  876. end
  877. elseif makeupSetting ! makePrefTmp and makePrefTmp ! 0:
  878. '<<$loverdesc[lover_number]>> thinks about it and says "Can you wear <<$makePrefTmp>> from now on?"'
  879. !!act 'I''d rather not...':
  880. if sub < 20 and loverrelation[lover_number] < 60 and loverscompliance[lover_number] < 6:
  881. act 'I like my makeup just the way it is':
  882. cla
  883. cls
  884. loverrelation[lover_number] -= 3
  885. '<<$loverdesc[lover_number]>> tries to push you to change it, but you are not that submissive to be pressured by <<$tXem>>, nor do your emotions make you make a choice you may regret.'
  886. dynamic $go_home
  887. end
  888. act 'Agree to change the makeup you usually wear':
  889. gt 'lover_change', 'Make'
  890. end
  891. exit
  892. elseif loverrelation[lover_number] <= 60 and loverscompliance[lover_number] < 6:
  893. act 'You think to yourself, its not like I like <<$tXem>> THAT much...':
  894. cla
  895. pcs_dom += 1
  896. loverrelation[lover_number] -=3
  897. '<<$loverdesc[lover_number]>> <<$tXe>> realizes you adoration for <<$tXem>> isn''t enough to pressure you to do that. You can tell that <<$tXe>> is bummed when <<$tXe>> tells you <<$tXe>> has something to do and heads off.'
  898. dynamic $go_home
  899. end
  900. exit
  901. elseif sub <= 20 and loverscompliance[lover_number] < 6:
  902. act 'Your personality is not something that can be dominated that easily, and you brush <<$tXem>> off, telling <<$tXem>> you like the makeup you usually wear':
  903. cla
  904. pcs_dom += 1
  905. loverrelation[lover_number] -=3
  906. '<<$loverdesc[lover_number]>> realizes you will not give in this situation, and walks away mumbling to <<$tXemself>>.'
  907. dynamic $go_home
  908. end
  909. exit
  910. elseif sub > 20 or loverscompliance[lover_number] >= 6:
  911. act 'You mumble "What''s wrong with my makeup...?"':
  912. cla
  913. loverrelation[lover_number] -= 2
  914. wantRand = rand(0, 100)
  915. wantRand -= 4*loverscompliance[lover_number]
  916. if wantRand > sub:
  917. cla
  918. '<<$loverdesc[lover_number]>> tries to push you to change it, but you successfully inform <<$tXem>> that you do not want to. This makes <<$tXem>> rather upset.'
  919. ''
  920. dynamic $go_home
  921. exit
  922. elseif wantRand <= sub:
  923. cla
  924. '<<$loverdesc[lover_number]>> keeps up the pressure, and because of your demeanor, and you give in. You tell <<$tXem>> from now on you will wear <<$makePrefTmp>>.'
  925. sub += 2
  926. loverrelation[lover_number] += 5
  927. act 'Continue':
  928. gt 'lover_change', 'Make'
  929. end
  930. exit
  931. end
  932. end
  933. end
  934. elseif pierWearCount < pierPrefTmpMin or pierWearCount > pierPrefTmpMax and pierPrefTmp ! 0 and pierDay <= loverdays[lover_number]:
  935. '<<$loverdesc[lover_number]>> talks about how you just don''t have the right amount of piercings.'
  936. if pierWearCount < pierPrefTmpMin:
  937. '<<$tXec>> tells you that you should have more piercings.'
  938. else
  939. '<<$tXec>> tells you that you should have less piercings.'
  940. end
  941. if sub < 20 and loverrelation[lover_number] < 60 and loverscompliance[lover_number] < 6:
  942. act 'I am not going to change my piercings!':
  943. cla
  944. cls
  945. loverrelation[lover_number] -= 3
  946. '<<$loverdesc[lover_number]>> tries to push you to change it, but you are not that submissive to be pressured by <<$tXem>>, nor do your emotions make you make a choice you may regret.'
  947. dynamic $go_home
  948. end
  949. act 'Agree to change the amount of piercings you have':
  950. gt 'lover_change', 'Pier'
  951. end
  952. exit
  953. elseif loverrelation[lover_number] <= 60 and loverscompliance[lover_number] < 6:
  954. act 'You think to yourself, its not like I like <<$tXem>> THAT much...':
  955. cla
  956. pcs_dom += 1
  957. loverrelation[lover_number] -=3
  958. '<<$loverdesc[lover_number]>> <<$tXe>> realizes you adoration for <<$tXem>> isn''t enough to pressure you to do that. <<$tXec>> tells you <<$tXe>> has something to do and heads off'
  959. dynamic $go_home
  960. end
  961. exit
  962. elseif sub <= 20 and loverscompliance[lover_number] < 6:
  963. act 'Your personality is not something that can be dominated that easily, and you brush <<$tXem>> off, telling <<$tXem>> you are who you are':
  964. cla
  965. pcs_dom += 1
  966. loverrelation[lover_number] -=3
  967. '<<$loverdesc[lover_number]>> realizes you will not give in this situation, and walks away mumbling to <<$tXemself>>.'
  968. dynamic $go_home
  969. end
  970. exit
  971. elseif sub > 20 or loverscompliance[lover_number] >= 6:
  972. act 'You mumble "I would rather not..."':
  973. cla
  974. loverrelation[lover_number] -= 2
  975. wantRand = rand(0, 100)
  976. wantRand -= 4*loverscompliance[lover_number]
  977. if wantRand > sub:
  978. cla
  979. '<<$loverdesc[lover_number]>> tries to push you to change the amount of piercings you have, but you successfully inform <<$tXem>> that you do not want to. This makes <<$tXem>> rather upset.'
  980. ''
  981. dynamic $go_home
  982. exit
  983. elseif wantRand <= sub:
  984. cla
  985. '<<$loverdesc[lover_number]>> keeps up the pressure, and because of your demeanor, and you give in. <<$tXec>> smiles happily and then gets down to how to get the right amount of piercings.'
  986. sub += 2
  987. loverrelation[lover_number] += 5
  988. act 'Continue':
  989. gt 'lover_change', 'Pier'
  990. end
  991. exit
  992. end
  993. end
  994. end
  995. elseif tattCount < tattPrefTmpMin or tattCount > tattPrefTmpMax and tattPrefTmp ! 0 and tattDay <= loverdays[lover_number]:
  996. '<<$loverdesc[lover_number]>> talks about how you just don''t have the right amount of tattoos.'
  997. if tattCount < tattPrefTmpMin:
  998. '<<$tXec>> tells you that you should have more tattoos.'
  999. else
  1000. '<<$tXec>> tells you that you should have less tattoos.'
  1001. end
  1002. if sub < 20 and loverrelation[lover_number] < 60 and loverscompliance[lover_number] < 6:
  1003. act 'I am not going to change my tattoos!':
  1004. cla
  1005. cls
  1006. loverrelation[lover_number] -= 3
  1007. '<<$loverdesc[lover_number]>> tries to push you to change it, but you are not that submissive to be pressured by <<$tXem>>, nor do your emotions make you make a choice you may regret.'
  1008. dynamic $go_home
  1009. end
  1010. act 'Agree to change the amount of tattoos you have':
  1011. gt 'lover_change', 'Tatt'
  1012. end
  1013. exit
  1014. elseif loverrelation[lover_number] <= 60 and loverscompliance[lover_number] < 6:
  1015. act 'You think to yourself, its not like I like <<$tXem>> THAT much...':
  1016. cla
  1017. pcs_dom += 1
  1018. loverrelation[lover_number] -=3
  1019. '<<$loverdesc[lover_number]>> <<$tXe>> realizes you adoration for <<$tXem>> isn''t enough to pressure you to do that. <<$tXec>> tells you <<$tXe>> has something to do and heads off'
  1020. dynamic $go_home
  1021. end
  1022. exit
  1023. elseif sub <= 20 and loverscompliance[lover_number] < 6:
  1024. act 'Your personality is not something that can be dominated that easily, and you brush <<$tXem>> off, telling <<$tXem>> you are who you are':
  1025. cla
  1026. pcs_dom += 1
  1027. loverrelation[lover_number] -=3
  1028. '<<$loverdesc[lover_number]>> realizes you will not give in this situation, and walks away mumbling to <<$tXemself>>.'
  1029. dynamic $go_home
  1030. end
  1031. exit
  1032. elseif sub > 20 or loverscompliance[lover_number] >= 6:
  1033. act 'You mumble "I would rather not..."':
  1034. cla
  1035. loverrelation[lover_number] -= 2
  1036. wantRand = rand(0, 100)
  1037. wantRand -= 4*loverscompliance[lover_number]
  1038. if wantRand > sub:
  1039. cla
  1040. '<<$loverdesc[lover_number]>> tries to push you to change the amount of tattoos you have, but you successfully inform <<$tXem>> that you do not want to. This makes <<$tXem>> rather upset.'
  1041. ''
  1042. dynamic $go_home
  1043. exit
  1044. elseif wantRand <= sub:
  1045. cla
  1046. '<<$loverdesc[lover_number]>> keeps up the pressure, and because of your demeanor, and you give in. <<$tXec>> smiles happily then starts to take you to the tattoo parlor to get the right amount of tattoos.'
  1047. sub += 2
  1048. loverrelation[lover_number] += 5
  1049. act 'Go to tattoo parlor':
  1050. gt 'lover_change', 'Tatt'
  1051. end
  1052. exit
  1053. end
  1054. end
  1055. end
  1056. elseif pcs_lip < lipsPrefTmpMin or pcs_lip > lipsPrefTmpMax and lipsDay <= loverdays[lover_number]:
  1057. '<<$loverdesc[lover_number]>> tells you your lips are just not the right size.'
  1058. if pcs_lip < lipsPrefTmpMin:
  1059. '<<$tXec>> tells you that you should get lip injections.'
  1060. else
  1061. '<<$tXec>> tells you that you should have lip reduction.'
  1062. end
  1063. if sub < 20 and loverrelation[lover_number] < 60 and loverscompliance[lover_number] < 6:
  1064. act '"My lips are fine the way they are!", you say slightly offended':
  1065. cla
  1066. cls
  1067. loverrelation[lover_number] -= 3
  1068. '<<$loverdesc[lover_number]>> tries to push you to change your lip size, but you are not that submissive to be pressured by <<$tXem>>, nor do your emotions make you make a choice you may regret.'
  1069. dynamic $go_home
  1070. end
  1071. act 'Go with <<$tXem>>':
  1072. gt 'lover_change', 'Lips'
  1073. end
  1074. exit
  1075. elseif loverrelation[lover_number] <= 60 and loverscompliance[lover_number] < 6:
  1076. act 'You think to yourself, its not like I like <<$tXem>> THAT much to get work done on my lips':
  1077. cla
  1078. pcs_dom += 1
  1079. loverrelation[lover_number] -=3
  1080. '<<$loverdesc[lover_number]>> <<$tXe>> realizes you adoration for <<$tXem>> isn''t enough to pressure you to get work done on your lips. <<$tXec>> tells you <<$tXe>> has something to do and heads off.'
  1081. dynamic $go_home
  1082. end
  1083. exit
  1084. elseif sub <= 20 and loverscompliance[lover_number] < 6:
  1085. act 'Your personality is not something that can be dominated that easily, and you brush <<$tXem>> off, telling <<$tXem>> that you decide what size lips you look good with':
  1086. cla
  1087. pcs_dom += 1
  1088. loverrelation[lover_number] -=3
  1089. '<<$loverdesc[lover_number]>> realizes you will not give in this situation, and walks away mumbling to <<$tXemself>>.'
  1090. dynamic $go_home
  1091. end
  1092. exit
  1093. elseif sub > 20 or loverscompliance[lover_number] >= 6:
  1094. act 'You squeek, "But I like the size of my lips..."':
  1095. cla
  1096. loverrelation[lover_number] -= 2
  1097. wantRand = rand(0, 100)
  1098. wantRand -= 4*loverscompliance[lover_number]
  1099. if wantRand > sub:
  1100. cla
  1101. '<<$loverdesc[lover_number]>> tries to push you to change the size, but you successfully tell <<$tXem>> that you do not want to. This makes <<$tXem>> rather upset.'
  1102. ''
  1103. dynamic $go_home
  1104. exit
  1105. elseif wantRand <= sub:
  1106. cla
  1107. '<<$loverdesc[lover_number]>> keeps up the pressure, and because of your demeanor, and you give in. <<$tXec>> grins widely and takes you to the clinic.'
  1108. sub += 4
  1109. loverrelation[lover_number] += 5
  1110. act 'Go to the clinic':
  1111. gt 'lover_change', 'Lips'
  1112. end
  1113. exit
  1114. end
  1115. end
  1116. end
  1117. elseif tits < titMin or tits > titMax and titsDay <= loverdays[lover_number]:
  1118. '<<$loverdesc[lover_number]>> tells you your breasts are just not right.'
  1119. if tits < titMin:
  1120. '<<$tXec>> tells you that you should get breast implants.'
  1121. else
  1122. '<<$tXec>> tells you that you should have a breast reduction.'
  1123. end
  1124. if sub < 20 and loverrelation[lover_number] < 60 and loverscompliance[lover_number] < 6:
  1125. act '"My breasts are fine the way they are!", you say slightly offended':
  1126. cla
  1127. cls
  1128. loverrelation[lover_number] -= 3
  1129. '<<$loverdesc[lover_number]>> tries to push you to change your breast size, but you are not that submissive to be pressured by <<$tXem>>, nor do your emotions make you make a choice you may regret.'
  1130. dynamic $go_home
  1131. end
  1132. act 'Go with <<$tXem>>':
  1133. gt 'lover_change', 'Tits'
  1134. end
  1135. exit
  1136. elseif loverrelation[lover_number] <= 60 and loverscompliance[lover_number] < 6:
  1137. act 'You think to yourself, its not like I like <<$tXem>> THAT much to get work done on my breasts':
  1138. cla
  1139. pcs_dom += 1
  1140. loverrelation[lover_number] -=3
  1141. '<<$loverdesc[lover_number]>> <<$tXe>> realizes you adoration for <<$tXem>> isn''t enough to pressure you to get work done on your breasts. <<$tXec>> tells you <<$tXe>> has something to do and heads off.'
  1142. dynamic $go_home
  1143. end
  1144. exit
  1145. elseif sub <= 20 and loverscompliance[lover_number] < 6:
  1146. act 'Your personality is not something that can be dominated that easily, and you brush <<$tXem>> off, telling <<$tXem>> that you decide what size breasts you look good with':
  1147. cla
  1148. pcs_dom += 1
  1149. loverrelation[lover_number] -=3
  1150. '<<$loverdesc[lover_number]>> realizes you will not give in this situation, and walks away mumbling to <<$tXemself>>.'
  1151. dynamic $go_home
  1152. end
  1153. exit
  1154. elseif sub > 20 or loverscompliance[lover_number] >= 6:
  1155. act 'You squeek, "But I like the size of my breasts..."':
  1156. cla
  1157. loverrelation[lover_number] -= 2
  1158. wantRand = rand(0, 100)
  1159. wantRand -= 4*loverscompliance[lover_number]
  1160. if wantRand > sub:
  1161. cla
  1162. '<<$loverdesc[lover_number]>> tries to push you to change the size, but you successfully tell <<$tXem>> that you do not want to. This makes <<$tXem>> rather upset.'
  1163. ''
  1164. dynamic $go_home
  1165. exit
  1166. elseif wantRand <= sub:
  1167. cla
  1168. '<<$loverdesc[lover_number]>> keeps up the pressure, and because of your demeanor, and you give in. <<$tXec>> grins widely and takes you to the clinic.'
  1169. sub += 4
  1170. loverrelation[lover_number] += 5
  1171. act 'Go to the clinic':
  1172. gt 'lover_change', 'Tits'
  1173. end
  1174. exit
  1175. end
  1176. end
  1177. end
  1178. else
  1179. '"Erm... Nothing..."'
  1180. act '"Well then..."':
  1181. *clr
  1182. xgt 'lover_meet', 'actions'
  1183. exit
  1184. end
  1185. end
  1186. elseif randchan = 1:
  1187. '<<$loverdesc[lover_number]>> suggests that you go to the movies.'
  1188. act 'Sorry, but I need to go':
  1189. cla
  1190. loverrelation[lover_number] -= (haraklover[lover_number] + 1)
  1191. dynamic $go_home
  1192. end
  1193. act 'Go with <<$tXem>>':
  1194. if loverGender[lover_number] = 0: gt 'kinoM', 'start'
  1195. if loverGender[lover_number] = 1:
  1196. $telsob = '<<$loverdesc[lover_number]>>'
  1197. gt 'kinosvid'
  1198. end
  1199. end
  1200. exit
  1201. elseif randchan = 2:
  1202. '<<$loverdesc[lover_number]>> suggest that you take a walk in the park'
  1203. act 'Sorry, but I need to go':
  1204. cla
  1205. loverrelation[lover_number] -= (haraklover[lover_number] + 1)
  1206. dynamic $go_home
  1207. end
  1208. act 'Go with <<$tXem>>':
  1209. if loverGender[lover_number] = 0: gt 'parkM', 'start'
  1210. if loverGender[lover_number] = 1:
  1211. $telsob = '<<$loverdesc[lover_number]>>'
  1212. gt 'parksvid'
  1213. end
  1214. end
  1215. exit
  1216. elseif randchan = 3:
  1217. '<<$loverdesc[lover_number]>> suggests that you go to a cafe.'
  1218. act 'Sorry, but I need to go':
  1219. cla
  1220. loverrelation[lover_number] -= (haraklover[lover_number] + 1)
  1221. dynamic $go_home
  1222. end
  1223. act 'Go with <<$tXem>>':
  1224. if loverGender[lover_number] = 0: gt 'kafeM', 'start'
  1225. if loverGender[lover_number] = 1:
  1226. $telsob = '<<$loverdesc[lover_number]>>'
  1227. gt 'kafesvid'
  1228. end
  1229. end
  1230. exit
  1231. end
  1232. elseif loverfinance[lover_number] = 2:
  1233. !!Some things you can change.
  1234. !!loverfinance[lover_number] = 2 - hair, makeup, tattoo, piercings, lips, tits
  1235. !! 0 - change player, 1 - go to a cafe, 2 - go to a restaurant, 3 - to the movies.
  1236. randchan = rand(0, 3)
  1237. !! 1 = does like, 0 = not like
  1238. if (pierWearCount >= pierPrefTmpMin and pierWearCount <= pierPrefTmpMax) or pierPrefTmp = 0:
  1239. pierCheck = 1
  1240. else
  1241. pierCheck = 0
  1242. end
  1243. if (tattCount >= tattPrefTmpMin and tattCount <= tattPrefTmpMax) or tattPrefTmp = 0:
  1244. tattCheck = 1
  1245. else
  1246. tattCheck = 0
  1247. end
  1248. if (makeupSetting = makePrefTmp) or makePrefTmp = 0:
  1249. makeupCheck = 1
  1250. else
  1251. makeupCheck = 0
  1252. end
  1253. if pcs_haircol = hairPref:
  1254. hairCheck = 1
  1255. else
  1256. hairCheck = 0
  1257. end
  1258. if tits >= titMin and tits <= titMax:
  1259. titCheck = 1
  1260. else
  1261. titCheck = 0
  1262. end
  1263. if pcs_lips >= lipsPrefTmpMin and tits <= lipsPrefTmpMax:
  1264. lipsCheck = 1
  1265. else
  1266. lipsCheck = 0
  1267. end
  1268. if salocatnow <= figurePrefMax:
  1269. figureCheck = 1
  1270. else
  1271. figureCheck = 0
  1272. end
  1273. if randchan = 0 and (pierCheck + tattCheck + makeupCheck + hairCheck + titCheck + lipsCheck + figureCheck) = 7:
  1274. 'Takes one look at your body and loves every part of it.'
  1275. randchan = rand(1, 3)
  1276. end
  1277. if randchan = 0:
  1278. cls
  1279. !!Some things you can change.
  1280. !!loverfinance[lover_number] = 2 - hair, makeup, tattoo, piercings, lips, tits, figure.
  1281. if haraklover[lover_number] = 0:
  1282. '"Actually can I talk to you about something?", <<$loverdesc[lover_number]>> asks you.'
  1283. elseif haraklover[lover_number] = 1:
  1284. '"Actually can I talk to you about something?", <<$loverdesc[lover_number]>> asks you.'
  1285. elseif haraklover[lover_number] = 2:
  1286. '"Actually can I talk to you about something?", <<$loverdesc[lover_number]>> asks you.'
  1287. end
  1288. '"Whats up <<$loverdesc[lover_number]>>?"'
  1289. '"There is just a trait about you that bugs me, can we change that?"'
  1290. if loverscompliance[lover_number] > 0:
  1291. 'You know you have changed for <<$tXem>> before, and you want to avoid to changing into something you are not.'
  1292. end
  1293. gs 'lover_likes', 'compliance'
  1294. '"And what did you want to change about me?"'
  1295. !!This is to make a last check on how many piercings they are WEARING
  1296. gs 'lover_likes', 'checkPier'
  1297. if pcs_haircol ! hairPref:
  1298. '<<$loverdesc[lover_number]>> looks at your hair and says, "can we get your hair dyed?"'
  1299. !!act 'I''d rather not...':
  1300. if sub < 20 and loverrelation[lover_number] < 60 and loverscompliance[lover_number] < 6:
  1301. act 'I like my hair just the way it is':
  1302. cla
  1303. cls
  1304. loverrelation[lover_number] -= 3
  1305. '<<$loverdesc[lover_number]>> tries to push you to change it, but you are not that submissive to be pressured by <<$tXem>>, nor do your emotions make you make a choice you may regret.'
  1306. dynamic $go_home
  1307. end
  1308. act 'Go with <<$tXem>>':
  1309. gt 'lover_change', 'Hair'
  1310. end
  1311. exit
  1312. elseif loverrelation[lover_number] <= 60 and loverscompliance[lover_number] < 6:
  1313. act 'You think to yourself, its not like I like <<$tXem>> THAT much...':
  1314. cla
  1315. pcs_dom += 1
  1316. loverrelation[lover_number] -=3
  1317. '<<$loverdesc[lover_number]>> <<$tXe>> realizes you adoration for <<$tXem>> isn''t enough to pressure you to do that. <<$tXec>> tells you <<$tXe>> has something to do and heads off'
  1318. dynamic $go_home
  1319. end
  1320. exit
  1321. elseif sub <= 20 and loverscompliance[lover_number] < 6:
  1322. act 'Your personality is not something that can be dominated that easily, and you brush <<$tXem>> off, telling <<$tXem>> you are who you are':
  1323. cla
  1324. pcs_dom += 1
  1325. loverrelation[lover_number] -=3
  1326. '<<$loverdesc[lover_number]>> realizes you will not give in this situation, and walks away mumbling to <<$tXemself>>.'
  1327. dynamic $go_home
  1328. end
  1329. exit
  1330. elseif sub > 20 or loverscompliance[lover_number] >= 6:
  1331. act 'You mumble "I would rather not..."':
  1332. cla
  1333. loverrelation[lover_number] -= 2
  1334. wantRand = rand(0, 100)
  1335. wantRand -= 4*loverscompliance[lover_number]
  1336. if wantRand > sub:
  1337. cla
  1338. '<<$loverdesc[lover_number]>> tries to push you to change it, but you successfully inform <<$tXem>> that you do not want to. This makes <<$tXem>> rather upset.'
  1339. ''
  1340. dynamic $go_home
  1341. exit
  1342. elseif wantRand <= sub:
  1343. cla
  1344. '<<$loverdesc[lover_number]>> keeps up the pressure, and because of your demeanor, and you give in. <<$tXec>> smiles happily and takes you to the salon.'
  1345. sub += 2
  1346. loverrelation[lover_number] += 5
  1347. act 'Go to Salon':
  1348. gt 'lover_change', 'Hair'
  1349. end
  1350. exit
  1351. end
  1352. end
  1353. end
  1354. elseif makeupSetting ! makePrefTmp and makePrefTmp ! 0:
  1355. '<<$loverdesc[lover_number]>> thinks about it and says "Can you wear <<$makePrefTmp>> from now on?"'
  1356. !!act 'I''d rather not...':
  1357. if sub < 20 and loverrelation[lover_number] < 60 and loverscompliance[lover_number] < 6:
  1358. act 'I like my makeup just the way it is':
  1359. cla
  1360. cls
  1361. loverrelation[lover_number] -= 3
  1362. '<<$loverdesc[lover_number]>> tries to push you to change it, but you are not that submissive to be pressured by <<$tXem>>, nor do your emotions make you make a choice you may regret.'
  1363. dynamic $go_home
  1364. end
  1365. act 'Agree to change the makeup you usually wear':
  1366. gt 'lover_change', 'Make'
  1367. end
  1368. exit
  1369. elseif loverrelation[lover_number] <= 60 and loverscompliance[lover_number] < 6:
  1370. act 'You think to yourself, its not like I like <<$tXem>> THAT much...':
  1371. cla
  1372. pcs_dom += 1
  1373. loverrelation[lover_number] -=3
  1374. '<<$loverdesc[lover_number]>> <<$tXe>> realizes you adoration for <<$tXem>> isn''t enough to pressure you to do that. You can tell that <<$tXe>> is bummed when <<$tXe>> tells you <<$tXe>> has something to do and heads off.'
  1375. dynamic $go_home
  1376. end
  1377. exit
  1378. elseif sub <= 20 and loverscompliance[lover_number] < 6:
  1379. act 'Your personality is not something that can be dominated that easily, and you brush <<$tXem>> off, telling <<$tXem>> you like the makeup you usually wear':
  1380. cla
  1381. pcs_dom += 1
  1382. loverrelation[lover_number] -=3
  1383. '<<$loverdesc[lover_number]>> realizes you will not give in this situation, and walks away mumbling to <<$tXemself>>.'
  1384. dynamic $go_home
  1385. end
  1386. exit
  1387. elseif sub > 20 or loverscompliance[lover_number] >= 6:
  1388. act 'You mumble "What''s wrong with my makeup...?"':
  1389. cla
  1390. loverrelation[lover_number] -= 2
  1391. wantRand = rand(0, 100)
  1392. wantRand -= 4*loverscompliance[lover_number]
  1393. if wantRand > sub:
  1394. cla
  1395. '<<$loverdesc[lover_number]>> tries to push you to change it, but you successfully inform <<$tXem>> that you do not want to. This makes <<$tXem>> rather upset.'
  1396. ''
  1397. dynamic $go_home
  1398. exit
  1399. elseif wantRand <= sub:
  1400. cla
  1401. '<<$loverdesc[lover_number]>> keeps up the pressure, and because of your demeanor, and you give in. You tell <<$tXem>> from now on you will wear <<$makePrefTmp>>.'
  1402. sub += 2
  1403. loverrelation[lover_number] += 5
  1404. act 'Continue':
  1405. gt 'lover_change', 'Make'
  1406. end
  1407. exit
  1408. end
  1409. end
  1410. end
  1411. elseif pierWearCount < pierPrefTmpMin or pierWearCount > pierPrefTmpMax and pierPrefTmp ! 0 and pierDay <= loverdays[lover_number]:
  1412. '<<$loverdesc[lover_number]>> talks about how you just don''t have the right amount of piercings.'
  1413. if pierWearCount < pierPrefTmpMin:
  1414. '<<$tXec>> tells you that you should have more piercings.'
  1415. else
  1416. '<<$tXec>> tells you that you should have less piercings.'
  1417. end
  1418. if sub < 20 and loverrelation[lover_number] < 60 and loverscompliance[lover_number] < 6:
  1419. act 'I am not going to change my piercings!':
  1420. cla
  1421. cls
  1422. loverrelation[lover_number] -= 3
  1423. '<<$loverdesc[lover_number]>> tries to push you to change it, but you are not that submissive to be pressured by <<$tXem>>, nor do your emotions make you make a choice you may regret.'
  1424. dynamic $go_home
  1425. end
  1426. act 'Agree to change the amount of piercings you have':
  1427. gt 'lover_change', 'Pier'
  1428. end
  1429. exit
  1430. elseif loverrelation[lover_number] <= 60 and loverscompliance[lover_number] < 6:
  1431. act 'You think to yourself, its not like I like <<$tXem>> THAT much...':
  1432. cla
  1433. pcs_dom += 1
  1434. loverrelation[lover_number] -=3
  1435. '<<$loverdesc[lover_number]>> <<$tXe>> realizes you adoration for <<$tXem>> isn''t enough to pressure you to do that. <<$tXec>> tells you <<$tXe>> has something to do and heads off'
  1436. dynamic $go_home
  1437. end
  1438. exit
  1439. elseif sub <= 20 and loverscompliance[lover_number] < 6:
  1440. act 'Your personality is not something that can be dominated that easily, and you brush <<$tXem>> off, telling <<$tXem>> you are who you are':
  1441. cla
  1442. pcs_dom += 1
  1443. loverrelation[lover_number] -=3
  1444. '<<$loverdesc[lover_number]>> realizes you will not give in this situation, and walks away mumbling to <<$tXemself>>.'
  1445. dynamic $go_home
  1446. end
  1447. exit
  1448. elseif sub > 20 or loverscompliance[lover_number] >= 6:
  1449. act 'You mumble "I would rather not..."':
  1450. cla
  1451. loverrelation[lover_number] -= 2
  1452. wantRand = rand(0, 100)
  1453. wantRand -= 4*loverscompliance[lover_number]
  1454. if wantRand > sub:
  1455. cla
  1456. '<<$loverdesc[lover_number]>> tries to push you to change the amount of piercings you have, but you successfully inform <<$tXem>> that you do not want to. This makes <<$tXem>> rather upset.'
  1457. ''
  1458. dynamic $go_home
  1459. exit
  1460. elseif wantRand <= sub:
  1461. cla
  1462. '<<$loverdesc[lover_number]>> keeps up the pressure, and because of your demeanor, and you give in. <<$tXec>> smiles happily and then gets down to how to get the right amount of piercings.'
  1463. sub += 2
  1464. loverrelation[lover_number] += 5
  1465. act 'Continue':
  1466. gt 'lover_change', 'Pier'
  1467. end
  1468. exit
  1469. end
  1470. end
  1471. end
  1472. elseif tattCount < tattPrefTmpMin or tattCount > tattPrefTmpMax and tattPrefTmp ! 0 and tattDay <= loverdays[lover_number]:
  1473. '<<$loverdesc[lover_number]>> talks about how you just don''t have the right amount of tattoos.'
  1474. if tattCount < tattPrefTmpMin:
  1475. '<<$tXec>> tells you that you should have more tattoos.'
  1476. else
  1477. '<<$tXec>> tells you that you should have less tattoos.'
  1478. end
  1479. if sub < 20 and loverrelation[lover_number] < 60 and loverscompliance[lover_number] < 6:
  1480. act 'I am not going to change my tattoos!':
  1481. cla
  1482. cls
  1483. loverrelation[lover_number] -= 3
  1484. '<<$loverdesc[lover_number]>> tries to push you to change it, but you are not that submissive to be pressured by <<$tXem>>, nor do your emotions make you make a choice you may regret.'
  1485. dynamic $go_home
  1486. end
  1487. act 'Agree to change the amount of tattoos you have':
  1488. gt 'lover_change', 'Tatt'
  1489. end
  1490. exit
  1491. elseif loverrelation[lover_number] <= 60 and loverscompliance[lover_number] < 6:
  1492. act 'You think to yourself, its not like I like <<$tXem>> THAT much...':
  1493. cla
  1494. pcs_dom += 1
  1495. loverrelation[lover_number] -=3
  1496. '<<$loverdesc[lover_number]>> <<$tXe>> realizes you adoration for <<$tXem>> isn''t enough to pressure you to do that. <<$tXec>> tells you <<$tXe>> has something to do and heads off'
  1497. dynamic $go_home
  1498. end
  1499. exit
  1500. elseif sub <= 20 and loverscompliance[lover_number] < 6:
  1501. act 'Your personality is not something that can be dominated that easily, and you brush <<$tXem>> off, telling <<$tXem>> you are who you are':
  1502. cla
  1503. pcs_dom += 1
  1504. loverrelation[lover_number] -=3
  1505. '<<$loverdesc[lover_number]>> realizes you will not give in this situation, and walks away mumbling to <<$tXemself>>.'
  1506. dynamic $go_home
  1507. end
  1508. exit
  1509. elseif sub > 20 or loverscompliance[lover_number] >= 6:
  1510. act 'You mumble "I would rather not..."':
  1511. cla
  1512. loverrelation[lover_number] -= 2
  1513. wantRand = rand(0, 100)
  1514. wantRand -= 4*loverscompliance[lover_number]
  1515. if wantRand > sub:
  1516. cla
  1517. '<<$loverdesc[lover_number]>> tries to push you to change the amount of tattoos you have, but you successfully inform <<$tXem>> that you do not want to. This makes <<$tXem>> rather upset.'
  1518. ''
  1519. dynamic $go_home
  1520. exit
  1521. elseif wantRand <= sub:
  1522. cla
  1523. '<<$loverdesc[lover_number]>> keeps up the pressure, and because of your demeanor, and you give in. <<$tXec>> smiles happily then starts to take you to the tattoo parlor to get the right amount of tattoos.'
  1524. sub += 2
  1525. loverrelation[lover_number] += 5
  1526. act 'Go to tattoo parlor':
  1527. gt 'lover_change', 'Tatt'
  1528. end
  1529. exit
  1530. end
  1531. end
  1532. end
  1533. elseif pcs_lip < lipsPrefTmpMin or pcs_lip > lipsPrefTmpMax and lipsDay <= loverdays[lover_number]:
  1534. '<<$loverdesc[lover_number]>> tells you your lips are just not the right size.'
  1535. if pcs_lip < lipsPrefTmpMin:
  1536. '<<$tXec>> tells you that you should get lip injections.'
  1537. else
  1538. '<<$tXec>> tells you that you should have lip reduction.'
  1539. end
  1540. if sub < 20 and loverrelation[lover_number] < 60 and loverscompliance[lover_number] < 6:
  1541. act '"My lips are fine the way they are!", you say slightly offended':
  1542. cla
  1543. cls
  1544. loverrelation[lover_number] -= 3
  1545. '<<$loverdesc[lover_number]>> tries to push you to change your lip size, but you are not that submissive to be pressured by <<$tXem>>, nor do your emotions make you make a choice you may regret.'
  1546. dynamic $go_home
  1547. end
  1548. act 'Go with <<$tXem>>':
  1549. gt 'lover_change', 'Lips'
  1550. end
  1551. exit
  1552. elseif loverrelation[lover_number] <= 60 and loverscompliance[lover_number] < 6:
  1553. act 'You think to yourself, its not like I like <<$tXem>> THAT much to get work done on my lips':
  1554. cla
  1555. pcs_dom += 1
  1556. loverrelation[lover_number] -=3
  1557. '<<$loverdesc[lover_number]>> <<$tXe>> realizes you adoration for <<$tXem>> isn''t enough to pressure you to get work done on your lips. <<$tXec>> tells you <<$tXe>> has something to do and heads off.'
  1558. dynamic $go_home
  1559. end
  1560. exit
  1561. elseif sub <= 20 and loverscompliance[lover_number] < 6:
  1562. act 'Your personality is not something that can be dominated that easily, and you brush <<$tXem>> off, telling <<$tXem>> that you decide what size lips you look good with':
  1563. cla
  1564. pcs_dom += 1
  1565. loverrelation[lover_number] -=3
  1566. '<<$loverdesc[lover_number]>> realizes you will not give in this situation, and walks away mumbling to <<$tXemself>>.'
  1567. dynamic $go_home
  1568. end
  1569. exit
  1570. elseif sub > 20 or loverscompliance[lover_number] >= 6:
  1571. act 'You squeek, "But I like the size of my lips..."':
  1572. cla
  1573. loverrelation[lover_number] -= 2
  1574. wantRand = rand(0, 100)
  1575. wantRand -= 4*loverscompliance[lover_number]
  1576. if wantRand > sub:
  1577. cla
  1578. '<<$loverdesc[lover_number]>> tries to push you to change the size, but you successfully tell <<$tXem>> that you do not want to. This makes <<$tXem>> rather upset.'
  1579. ''
  1580. dynamic $go_home
  1581. exit
  1582. elseif wantRand <= sub:
  1583. cla
  1584. '<<$loverdesc[lover_number]>> keeps up the pressure, and because of your demeanor, and you give in. <<$tXec>> grins widely and takes you to the clinic.'
  1585. sub += 4
  1586. loverrelation[lover_number] += 5
  1587. act 'Go to the clinic':
  1588. gt 'lover_change', 'Lips'
  1589. end
  1590. exit
  1591. end
  1592. end
  1593. end
  1594. elseif tits < titMin or tits > titMax and titsDay <= loverdays[lover_number]:
  1595. '<<$loverdesc[lover_number]>> tells you your breasts are just not right.'
  1596. if tits < titMin:
  1597. '<<$tXec>> tells you that you should get breast implants.'
  1598. else
  1599. '<<$tXec>> tells you that you should have a breast reduction.'
  1600. end
  1601. if sub < 20 and loverrelation[lover_number] < 60 and loverscompliance[lover_number] < 6:
  1602. act '"My breasts are fine the way they are!", you say slightly offended':
  1603. cla
  1604. cls
  1605. loverrelation[lover_number] -= 3
  1606. '<<$loverdesc[lover_number]>> tries to push you to change your breast size, but you are not that submissive to be pressured by <<$tXem>>, nor do your emotions make you make a choice you may regret.'
  1607. dynamic $go_home
  1608. end
  1609. act 'Go with <<$tXem>>':
  1610. gt 'lover_change', 'Tits'
  1611. end
  1612. exit
  1613. elseif loverrelation[lover_number] <= 60 and loverscompliance[lover_number] < 6:
  1614. act 'You think to yourself, its not like I like <<$tXem>> THAT much to get work done on my breasts':
  1615. cla
  1616. pcs_dom += 1
  1617. loverrelation[lover_number] -=3
  1618. '<<$loverdesc[lover_number]>> <<$tXe>> realizes you adoration for <<$tXem>> isn''t enough to pressure you to get work done on your breasts. <<$tXec>> tells you <<$tXe>> has something to do and heads off.'
  1619. dynamic $go_home
  1620. end
  1621. exit
  1622. elseif sub <= 20 and loverscompliance[lover_number] < 6:
  1623. act 'Your personality is not something that can be dominated that easily, and you brush <<$tXem>> off, telling <<$tXem>> that you decide what size breasts you look good with':
  1624. cla
  1625. pcs_dom += 1
  1626. loverrelation[lover_number] -=3
  1627. '<<$loverdesc[lover_number]>> realizes you will not give in this situation, and walks away mumbling to <<$tXemself>>.'
  1628. dynamic $go_home
  1629. end
  1630. exit
  1631. elseif sub > 20 or loverscompliance[lover_number] >= 6:
  1632. act 'You squeek, "But I like the size of my breasts..."':
  1633. cla
  1634. loverrelation[lover_number] -= 2
  1635. wantRand = rand(0, 100)
  1636. wantRand -= 4*loverscompliance[lover_number]
  1637. if wantRand > sub:
  1638. cla
  1639. '<<$loverdesc[lover_number]>> tries to push you to change the size, but you successfully tell <<$tXem>> that you do not want to. This makes <<$tXem>> rather upset.'
  1640. ''
  1641. dynamic $go_home
  1642. exit
  1643. elseif wantRand <= sub:
  1644. cla
  1645. '<<$loverdesc[lover_number]>> keeps up the pressure, and because of your demeanor, and you give in. <<$tXec>> grins widely and takes you to the clinic.'
  1646. sub += 4
  1647. loverrelation[lover_number] += 5
  1648. act 'Go to the clinic':
  1649. gt 'lover_change', 'Tits'
  1650. end
  1651. exit
  1652. end
  1653. end
  1654. end
  1655. elseif salocatnow > figurePrefMax and figureDay <= loverdays[lover_number]:
  1656. '<<$loverdesc[lover_number]>> tells you your body is just too thick.'
  1657. '<<$tXec>> offers to pay for you to get lyposuction.'
  1658. if sub < 20 and loverrelation[lover_number] < 60 and loverscompliance[lover_number] < 6:
  1659. act '"My body weight is fine the way it is!", you say slightly offended':
  1660. cla
  1661. cls
  1662. loverrelation[lover_number] -= 3
  1663. '<<$loverdesc[lover_number]>> tries to push you to change your body weight, but you are not that submissive to be pressured by <<$tXem>>, nor do your emotions make you make a choice you may regret.'
  1664. dynamic $go_home
  1665. end
  1666. act 'Go with <<$tXem>>':
  1667. gt 'lover_change', 'Figure'
  1668. end
  1669. exit
  1670. elseif loverrelation[lover_number] <= 60 and loverscompliance[lover_number] < 6:
  1671. act 'You think to yourself, its not like I like <<$tXem>> THAT much to get lyposuction':
  1672. cla
  1673. pcs_dom += 1
  1674. loverrelation[lover_number] -=3
  1675. '<<$loverdesc[lover_number]>> <<$tXe>> realizes you adoration for <<$tXem>> isn''t enough to pressure you to get work done on your weight. <<$tXec>> tells you <<$tXe>> has something to do and heads off.'
  1676. dynamic $go_home
  1677. end
  1678. exit
  1679. elseif sub <= 20 and loverscompliance[lover_number] < 6:
  1680. act 'Your personality is not something that can be dominated that easily, and you brush <<$tXem>> off, telling <<$tXem>> that you decide what size your body looks good at':
  1681. cla
  1682. pcs_dom += 1
  1683. loverrelation[lover_number] -=3
  1684. '<<$loverdesc[lover_number]>> realizes you will not give in this situation, and walks away mumbling to <<$tXemself>>.'
  1685. dynamic $go_home
  1686. end
  1687. exit
  1688. elseif sub > 20 or loverscompliance[lover_number] >= 6:
  1689. act 'You squeek, "But I like being this weight..."':
  1690. cla
  1691. loverrelation[lover_number] -= 2
  1692. wantRand = rand(0, 100)
  1693. wantRand -= 4*loverscompliance[lover_number]
  1694. if wantRand > sub:
  1695. cla
  1696. '<<$loverdesc[lover_number]>> tries to push you to change your weight, but you successfully tell <<$tXem>> that you do not want to. This makes <<$tXem>> rather upset.'
  1697. ''
  1698. dynamic $go_home
  1699. exit
  1700. elseif wantRand <= sub:
  1701. cla
  1702. '<<$loverdesc[lover_number]>> keeps up the pressure, and because of your demeanor, and you give in. <<$tXec>> grins widely and takes you to the clinic.'
  1703. sub += 4
  1704. loverrelation[lover_number] += 5
  1705. act 'Go to the clinic':
  1706. gt 'lover_change', 'Figure'
  1707. end
  1708. exit
  1709. end
  1710. end
  1711. end
  1712. else
  1713. '"Erm... Nothing..."'
  1714. act '"Well then..."':
  1715. *clr
  1716. xgt 'lover_meet', 'actions'
  1717. exit
  1718. end
  1719. end
  1720. elseif randchan = 1:
  1721. '<<$loverdesc[lover_number]>> suggests that you go to a cafe.'
  1722. act 'Sorry, but I need to leave':
  1723. cla
  1724. loverrelation[lover_number] -= (haraklover[lover_number] + 1)
  1725. dynamic $go_home
  1726. end
  1727. act 'Go with <<$tXem>>':
  1728. if loverGender[lover_number] = 0: gt 'kafeM', 'start'
  1729. if loverGender[lover_number] = 1:
  1730. $telsob = '<<$loverdesc[lover_number]>>'
  1731. gt 'kafesvid'
  1732. end
  1733. end
  1734. exit
  1735. elseif randchan = 2:
  1736. '<<$loverdesc[lover_number]>> suggests that you go to a restaurant.'
  1737. act 'Sorry, but I need to leave':
  1738. cla
  1739. loverrelation[lover_number] -= (haraklover[lover_number] + 1)
  1740. dynamic $go_home
  1741. end
  1742. act 'Go with <<$tXem>>':
  1743. if loverGender[lover_number] = 0: gt 'restoranM', 'start'
  1744. if loverGender[lover_number] = 1:
  1745. $telsob = '<<$loverdesc[lover_number]>>'
  1746. gt 'kafesvid'
  1747. end
  1748. end
  1749. exit
  1750. elseif randchan = 3:
  1751. '<<$loverdesc[lover_number]>> suggests that you go to the movies.'
  1752. act 'Sorry, but I need to go':
  1753. cla
  1754. loverrelation[lover_number] -= (haraklover[lover_number] + 1)
  1755. dynamic $go_home
  1756. end
  1757. act 'Go with <<$tXem>>':
  1758. if loverGender[lover_number] = 0: gt 'kinoM', 'start'
  1759. if loverGender[lover_number] = 1:
  1760. $telsob = '<<$loverdesc[lover_number]>>'
  1761. gt 'kinosvid'
  1762. end
  1763. end
  1764. exit
  1765. end
  1766. end
  1767. end
  1768. act 'I want to do something today':
  1769. cla
  1770. randchan = rand(0, 1)
  1771. if randchan = 0:
  1772. pcs_dom += 1
  1773. end
  1774. '"What do you want to do?", <<$tXe>> asks'
  1775. if loverGender[lover_number] = 0:
  1776. act '"Lets go just relax in the stairwell and drink some beer."':
  1777. act 'Go with <<$tXem>>':gt 'podezdM', 'start'
  1778. end
  1779. act '"Lets take a walk in the park"':
  1780. act 'Go with <<$tXem>>':gt 'parkM', 'start'
  1781. end
  1782. act '"Lets go see a movie"':
  1783. act 'Go with <<$tXem>>':gt 'kinoM', 'start'
  1784. end
  1785. act '"Lets go to the cafe."':
  1786. act 'Go with <<$tXem>>':gt 'kafeM', 'start'
  1787. end
  1788. elseif loverGender[lover_number] = 1:
  1789. $telsob = '<<$loverdesc[lover_number]>>'
  1790. if month > 5 and temper > 20 and sunWeather = 1:
  1791. act 'Invite to the park':
  1792. '"Let''s go for a walk in the park."'
  1793. act 'Go': gt 'parksvid'
  1794. end
  1795. end
  1796. act 'Invite to a movie':
  1797. '"Want to go see a movie?"'
  1798. act 'Go to the movies': gt 'kinosvid'
  1799. end
  1800. act 'Invite to the pool hall':
  1801. '"Let''s play pool."'
  1802. act 'Go play pool': gt 'billsvid'
  1803. end
  1804. act 'Invite to the cafe':
  1805. '"Let''s go to the cafe."'
  1806. act 'Go to the cafe': gt 'kafesvid'
  1807. end
  1808. act 'Invite to the casino':
  1809. '"Let''s go to the casino."'
  1810. act 'Go to the casino': gt 'kazinosvid'
  1811. end
  1812. end
  1813. act 'Never mind...':
  1814. gt 'lover_meet', 'actions'
  1815. exit
  1816. end
  1817. end
  1818. act 'I think we should break up...':
  1819. cla
  1820. '<<$tXec>> looks hurt, but you insist it is for the best. You both say goodbye and part ways.'
  1821. gs 'lover', 'remove', lover_number
  1822. act 'Continue':
  1823. dynamic $go_home
  1824. exit
  1825. end
  1826. end
  1827. end
  1828. --- lover_meet ---------------------------------