1
0

city_experimental_trials_list.qsrc 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532
  1. # city_experimental_trials_list
  2. $loc = 'city_experimental_trials_list'
  3. $location_type = 'private'
  4. $locM = 'city_experimental_trials_list'
  5. $exp_docs[0] = 'Doctor Sokolnikov'
  6. $exp_docs[1] = 'Doctor Ivanov'
  7. $trial_names[0] = 'Enhancement pill'
  8. trial_pays[0] = 500
  9. $trial_sections[0] = 'enhancement_pill'
  10. trial_maxs[0] = -1
  11. !trial_durations[0] = Varies per pill.
  12. $trial_names[1] = 'Breast Cream'
  13. trial_pays[1] = 5000
  14. $trial_sections[1] = 'breast_cream'
  15. trial_maxs[1] = 1
  16. trial_durations[1] = 4
  17. $trial_names[2] = 'Hair Extension Shampoo'
  18. trial_pays[2] = 2500
  19. $trial_sections[2] = 'hair_cream'
  20. trial_maxs[2] = 1
  21. trial_durations[2] = 5
  22. $trial_names[3] = 'Aphrodisiac pills'
  23. trial_pays[3] = 10000
  24. $trial_sections[3] = 'aphrodisiac_pill'
  25. trial_maxs[3] = 1
  26. trial_durations[3] = 5
  27. $trial_names[4] = 'Butt Injection'
  28. trial_pays[4] = 10000
  29. $trial_sections[4] = 'butt_injection'
  30. trial_maxs[4] = 1
  31. trial_durations[4] = 5
  32. $trial_names[5] = 'Fertility treatment'
  33. trial_pays[5] = 10000
  34. $trial_sections[5] = 'fertility_shot'
  35. trial_maxs[5] = 1
  36. trial_durations[5] = 3
  37. !{
  38. $trial_names[6] = 'Growth Hormones'
  39. trial_pays[6] = 5000
  40. $trial_sections[6] = 'growth_hormones'
  41. trial_maxs[6] = 1
  42. trial_durations[6] = ?
  43. Drugs
  44. }
  45. if therapistQW['breast_cream'] = 1 and experimentQW['times_participated_1'] = 0 and $ARGS[0] = 'see_trials':
  46. $trial_names[1] = '<b>Breast Cream</b>'
  47. cetl_i = 0
  48. :therapist_overwrite_loop
  49. $trial_names[cetl_i] = $trial_names[1]
  50. trial_pays[cetl_i] = trial_pays[1]
  51. $trial_sections[cetl_i] = $trial_sections[1]
  52. trial_maxs[cetl_i] = trial_maxs[1]
  53. cetl_i += 1
  54. if cetl_i < arrsize('$trial_names'): jump 'therapist_overwrite_loop'
  55. end
  56. if $ARGS[0] = 'see_trials':
  57. $menu_loc = 'city_experimental_trials_list'
  58. $menu_arg = 'see_trials'
  59. menu_off = 0
  60. $loc_arg = 'see_trials'
  61. minut += 2
  62. gs 'stat'
  63. '<center><img <<$set_imgh>> src="images\locations\city\residential\clinic\experiments\experiment_form.jpg"></center>'
  64. 'You look through the long list of various available clinical trials and the following stick out:'
  65. *nl
  66. *nl
  67. *p '<center><table align="center" width=80%>'
  68. cetl_i = 0
  69. :loop_start
  70. $temp_bgcolor = func('themes', 'alt_color', $temp_bgcolor)
  71. $temp_text = ''
  72. if trial_maxs[cetl_i] = -1 or experimentQW['times_participated_<<cetl_i>>'] < trial_maxs[cetl_i]:
  73. $temp_text += '<tr><td bgcolor="<<$temp_bgcolor>>" align="center"><a href="exec: gt ''city_experimental_trials_list'', ''<<$trial_sections[cetl_i]>>''"><<$trial_names[cetl_i]>></a>'
  74. else
  75. $temp_text += '<tr><td bgcolor="<<$temp_bgcolor>>" align="center"><font color="<<$fcolor>>"><<$trial_names[cetl_i]>></font>'
  76. end
  77. $temp_text += '</td> <td bgcolor="<<$temp_bgcolor>>" align="right"><font color="<<$fcolor>>">₽<<trial_pays[cetl_i]>></font></td></tr>'
  78. *p '<<$temp_text>>'
  79. cetl_i += 1
  80. if cetl_i < arrsize('$trial_names'): jump 'loop_start'
  81. *p '</table></center>'
  82. killvar '$temp_bgcolor'
  83. killvar 'loop_start'
  84. killvar '$temp_text'
  85. killvar 'cetl_i'
  86. act 'Go back': gs 'city_experimental_trials_list', 'killvars' & gt 'city_experimental_trials', 'front_desk'
  87. end
  88. !! Enhancement pill
  89. if $ARGS[0] = $trial_sections[0]:
  90. $menu_loc = 'city_experimental_trials_list'
  91. $menu_arg = $trial_sections[0]
  92. menu_off = 0
  93. $loc_arg = $trial_sections[0]
  94. minut += 2
  95. !!Image of the desk, or an experimental trials folder
  96. '<center><img <<$set_imgh>> src="images\system\image_needed.png"></center>'
  97. 'We have developed a range of enhancement pills that are designed to improve both body and mood. They''ve just been approved for human trials, so we''re still cataloguing the effects.'
  98. 'The following are expected: mood swings, aches, itches, rashes and physical changes.'
  99. act 'Sign up':
  100. $experimentQW['trial_active'] = $trial_names[0]
  101. menu_off = 1
  102. minut += 2
  103. gs 'stat'
  104. *clr & cla
  105. if rand(0,1) = 0:
  106. $temp_doc = $exp_docs[0]
  107. '<center><img <<$set_imgh>> src="images\locations\city\residential\clinic\experiments\doc1.jpg"></center>'
  108. else
  109. $temp_doc = $exp_docs[1]
  110. '<center><img <<$set_imgh>> src="images\locations\city\residential\clinic\experiments\doc2.jpg"></center>'
  111. end
  112. 'You are approached by a doctor in a white lab coat, <<$temp_doc>> neatly sown on the chest. "Miss <<$pcs_lastname>>? Please follow me."'
  113. *nl
  114. 'You are guided through narrow hallways until you end up in <<$temp_doc>>''s private office, where you take a seat in one of the free chairs available.'
  115. temp_rand = rand(0,89)
  116. !! Change tits
  117. if temp_rand < 10:
  118. $temp_pill_color = 'cyan'
  119. $experimentQW['trial_active'] = 'pill_cyan'
  120. experimentQW['pill_cyan_taken'] += 1
  121. experimentQW['trial_duration'] = rand(1, 3)
  122. !! Change stren, vital, or agil
  123. elseif temp_rand < 20:
  124. $temp_pill_color = 'red'
  125. $experimentQW['trial_active'] = 'pill_red'
  126. experimentQW['pill_red_taken'] += 1
  127. experimentQW['trial_duration'] = rand(2, 4)
  128. !! Change intel, cha, perception?
  129. elseif temp_rand < 30:
  130. $temp_pill_color = 'blue'
  131. $experimentQW['trial_active'] = 'pill_blue'
  132. experimentQW['pill_blue_taken'] += 1
  133. experimentQW['trial_duration'] = rand(2, 4)
  134. !! Change skin
  135. elseif temp_rand < 40:
  136. $temp_pill_color = 'yellow'
  137. $experimentQW['trial_active'] = 'pill_yellow'
  138. experimentQW['pill_yellow_taken'] += 1
  139. experimentQW['trial_duration'] = rand(2, 5)
  140. !! Change butt
  141. elseif temp_rand < 50:
  142. $temp_pill_color = 'orange'
  143. $experimentQW['trial_active'] = 'pill_orange'
  144. experimentQW['pill_orange_taken'] += 1
  145. experimentQW['trial_duration'] = rand(2, 4)
  146. !! Change inhib
  147. elseif temp_rand < 60:
  148. $temp_pill_color = 'violet'
  149. $experimentQW['trial_active'] = 'pill_violet'
  150. experimentQW['pill_violet_taken'] += 1
  151. experimentQW['trial_duration'] = 1
  152. !! Change min_arousal
  153. elseif temp_rand < 65:
  154. $temp_pill_color = 'brown'
  155. $experimentQW['trial_active'] = 'pill_brown'
  156. experimentQW['pill_brown_taken'] += 1
  157. experimentQW['trial_duration'] = rand(2, 4)
  158. !! Change clit
  159. elseif temp_rand < 70:
  160. $temp_pill_color = 'purple'
  161. $experimentQW['trial_active'] = 'pill_purple'
  162. experimentQW['pill_purple_taken'] += 1
  163. experimentQW['trial_duration'] = rand(2, 4)
  164. !! Change alko_status
  165. elseif temp_rand < 80:
  166. $temp_pill_color = 'green'
  167. $experimentQW['trial_active'] = 'pill_green'
  168. experimentQW['pill_green_taken'] += 1
  169. experimentQW['trial_duration'] = 1
  170. !! Give exhib level or change willwpower
  171. elseif temp_rand < 85:
  172. $temp_pill_color = 'gray'
  173. $experimentQW['trial_active'] = 'pill_gray'
  174. experimentQW['pill_gray_taken'] += 1
  175. experimentQW['trial_duration'] = 1
  176. !! Give bimbo lvl or change willpower?
  177. elseif temp_rand < 90:
  178. $temp_pill_color = 'pink'
  179. $experimentQW['trial_active'] = 'pill_pink'
  180. experimentQW['pill_pink_taken'] += 1
  181. experimentQW['trial_duration'] = 1
  182. end
  183. experimentQW['times_participated_0'] += 1
  184. '<<$temp_doc>> briefly searches through a drawer, pulls out a nondescript <font color=<<$temp_pill_color>>><<$temp_pill_color>> pill</font> and hands it to you. "Please swallow this, and you''ll get paid."'
  185. killvar '$temp_doc'
  186. killvar 'temp_rand'
  187. act 'Swallow the <font color=<<$temp_pill_color>>><<$temp_pill_color>> pill</font>':
  188. minut += 3
  189. *clr & cla
  190. '<center><img <<$set_imgh>> src="images\locations\city\residential\clinic\experiments\pill<<rand(2, 4)>>.jpg"></center>'
  191. 'The doctor observes as you swallow the pill and then makes a note on a clipboard. "Thank you for your participation, Miss <<$pcs_lastname>>. We''ll speak again soon."'
  192. gs 'city_experimental_trials_list', 'act_return', trial_pays[0]
  193. end
  194. end
  195. gs 'city_experimental_trials_list', 'act_go_back'
  196. !! Breast Cream
  197. elseif $ARGS[0] = $trial_sections[1]:
  198. $menu_loc = 'city_experimental_trials_list'
  199. $menu_arg = $trial_sections[1]
  200. menu_off = 0
  201. $loc_arg = $trial_sections[1]
  202. minut += 2
  203. 'We have developed a cream, based on natural hormones, which enhances the natural growth of breasts, leading to fuller and more natural looking breasts.'
  204. 'No side effects are listed for this clinical trial.'
  205. act 'Sign up':
  206. experimentQW['times_participated_1'] += 1
  207. $experimentQW['trial_active'] = $trial_sections[1]
  208. experimentQW['trial_duration'] = trial_durations[1]
  209. if therapistQW['breast_cream'] = 1: therapistQW['breast_cream'] = 2
  210. menu_off = 1
  211. minut += 2
  212. gs 'stat'
  213. *clr & cla
  214. if rand(0,1) = 0:
  215. $temp_doc = $exp_docs[0]
  216. '<center><img <<$set_imgh>> src="images\locations\city\residential\clinic\experiments\doc1.jpg"></center>'
  217. else
  218. $temp_doc = $exp_docs[1]
  219. '<center><img <<$set_imgh>> src="images\locations\city\residential\clinic\experiments\doc2.jpg"></center>'
  220. end
  221. 'You are approached by a doctor in a white lab coat, <<$temp_doc>> neatly sown on the chest. "Miss <<$pcs_lastname>>? Please follow me."'
  222. *nl
  223. 'You are guided through narrow hallways until you end up in <<$temp_doc>>''s private office, where he gestures you lie on the exam table. "Please lie down and expose your chest."'
  224. act 'Undress and lie down':
  225. minut += 1
  226. pcs_horny += 5
  227. gs 'stat'
  228. *clr & cla
  229. '<center><img <<$set_imgh>> src="images\locations\city\residential\clinic\experiments\bustcream1.jpg"></center>'
  230. '<<$temp_doc>> puts on a pair of latex gloves and grabs a generic white tube. Squeezing a large amount of white cream into his hands, he starts massaging it into your breasts.'
  231. 'The massage continues for about a minute, at which point <<$temp_doc>> steps away and takes off his gloves. "Thank you for your participation, Miss <<$pcs_lastname>>. We''ll speak again soon."'
  232. gs 'city_experimental_trials_list', 'act_return', trial_pays[1]
  233. end
  234. end
  235. gs 'city_experimental_trials_list', 'act_go_back'
  236. !! Hair extension shampoo
  237. elseif $ARGS[0] = $trial_sections[2]:
  238. $menu_loc = 'city_experimental_trials_list'
  239. $menu_arg = $trial_sections[2]
  240. menu_off = 0
  241. $loc_arg = $trial_sections[2]
  242. minut += 2
  243. 'We have developed a hair extension shampoo which enhances your natural hair growth, leading to longer, fuller and glossier hair.'
  244. 'No side effects are listed for this clinical trial.'
  245. act 'Sign up':
  246. experimentQW['times_participated_2'] += 1
  247. $experimentQW['trial_active'] = $trial_sections[2]
  248. experimentQW['trial_duration'] = trial_durations[2]
  249. menu_off = 1
  250. minut += 2
  251. gs 'stat'
  252. *clr & cla
  253. if rand(0,1) = 0:
  254. $temp_doc = $exp_docs[0]
  255. '<center><img <<$set_imgh>> src="images\locations\city\residential\clinic\experiments\doc1.jpg"></center>'
  256. else
  257. $temp_doc = $exp_docs[1]
  258. '<center><img <<$set_imgh>> src="images\locations\city\residential\clinic\experiments\doc2.jpg"></center>'
  259. end
  260. 'You are approached by a doctor in a white lab coat, <<$temp_doc>> neatly sown on the chest. "Miss <<$pcs_lastname>>? Please follow me."'
  261. *nl
  262. 'You are guided through narrow hallways until you end up in <<$temp_doc>>''s private office, where he gestures you lie on the exam table. "Please lie down."'
  263. act 'Lie down':
  264. minut += 1
  265. gs 'stat'
  266. *clr & cla
  267. '<center><img <<$set_imgh>> src="images\locations\city\residential\clinic\experiments\haircream1.jpg"></center>'
  268. '<<$temp_doc>> puts on a pair of latex gloves and grabs a generic chestnut brown tube. He squeezes a large amount of beige cream into his hands and starts massaging it into your hair and scalp.'
  269. 'The massage continues for about a minute, at which point <<$temp_doc>> steps away and takes off his gloves. "Thank you for your participation, Miss <<$pcs_lastname>>. We''ll speak again soon."'
  270. gs 'city_experimental_trials_list', 'act_return', trial_pays[2]
  271. end
  272. end
  273. gs 'city_experimental_trials_list', 'act_go_back'
  274. !! Aphrodisiac
  275. elseif $ARGS[0] = $trial_sections[3]:
  276. $menu_loc = 'city_experimental_trials_list'
  277. $menu_arg = $trial_sections[3]
  278. menu_off = 0
  279. $loc_arg = $trial_sections[3]
  280. minut += 2
  281. 'We have developed a general aphrodisiac to put you and your partner in the mood and ready to go for hours.'
  282. 'No side effects are listed for this clinical trial.'
  283. *nl
  284. '<sub><small>Warning! This is a strictly personal enhancer. The clinic is not liable for any criminal allegations if used on other subjects.</small></sub>'
  285. act 'Sign up':
  286. experimentQW['times_participated_3'] += 1
  287. $experimentQW['trial_active'] = $trial_sections[3]
  288. experimentQW['trial_duration'] = trial_durations[3]
  289. menu_off = 1
  290. minut += 2
  291. gs 'stat'
  292. *clr & cla
  293. if rand(0,1) = 0:
  294. $temp_doc = $exp_docs[0]
  295. '<center><img <<$set_imgh>> src="images\locations\city\residential\clinic\experiments\doc1.jpg"></center>'
  296. else
  297. $temp_doc = $exp_docs[1]
  298. '<center><img <<$set_imgh>> src="images\locations\city\residential\clinic\experiments\doc2.jpg"></center>'
  299. end
  300. 'You are approached by a doctor in a white lab coat, <<$temp_doc>> neatly sown on the chest. "Miss <<$pcs_lastname>>? Please follow me."'
  301. *nl
  302. 'You are guided through narrow hallways until you end up in <<$temp_doc>>''s private office, where you take a seat in one of the free chairs available.'
  303. '<<$temp_doc>> briefly searches through a drawer, pulls out a brightly coloured pink pill and hands it to you. "Please swallow this, and you''ll get paid."'
  304. killvar '$temp_doc'
  305. act 'Swallow the aphrodisiac</font>':
  306. minut += 3
  307. *clr & cla
  308. '<center><img <<$set_imgh>> src="images\locations\city\residential\clinic\experiments\pill1.jpg"></center>'
  309. 'The doctor observes as you swallow the pill and then makes a note on a clipboard. "Thank you for your participation, Miss <<$pcs_lastname>>. We''ll speak again soon."'
  310. gs 'city_experimental_trials_list', 'act_return', trial_pays[3]
  311. end
  312. end
  313. gs 'city_experimental_trials_list', 'act_go_back'
  314. !! Butt injection
  315. elseif $ARGS[0] = $trial_sections[4]:
  316. $menu_loc = 'city_experimental_trials_list'
  317. $menu_arg = $trial_sections[4]
  318. menu_off = 0
  319. $loc_arg = $trial_sections[4]
  320. minut += 2
  321. 'Dissapointed by your genetic disposition to a flat behind, but afraid of invasive surgery? We at Kardashian Medics have heard you and developed our patented<sup>*</sup> KBI treatment! Get a behind like ours!'
  322. 'No side effects are listed for this clinical trial.'
  323. '<br><br><br><br><br><br><br><br><br><br>'
  324. '<sub><small>*Patent following. The Kardashian Butt Injection is not affiliated with the Kardashian family.</small></sub>'
  325. act 'Sign up':
  326. experimentQW['times_participated_4'] += 1
  327. $experimentQW['trial_active'] = $trial_sections[4]
  328. experimentQW['trial_duration'] = trial_durations[4]
  329. menu_off = 1
  330. minut += 2
  331. gs 'stat'
  332. *clr & cla
  333. if rand(0,1) = 0:
  334. $temp_doc = $exp_docs[0]
  335. '<center><img <<$set_imgh>> src="images\locations\city\residential\clinic\experiments\doc1.jpg"></center>'
  336. else
  337. $temp_doc = $exp_docs[1]
  338. '<center><img <<$set_imgh>> src="images\locations\city\residential\clinic\experiments\doc2.jpg"></center>'
  339. end
  340. 'You are approached by a doctor in a white lab coat, <<$temp_doc>> neatly sown on the chest. "Miss <<$pcs_lastname>>? Please follow me."'
  341. *nl
  342. 'You are guided through narrow hallways until you end up in <<$temp_doc>>''s private office, where he gestures you lie on the exam table. "Please expose your buttocks and lie face down on the exam table."'
  343. act 'Undress and lie down':
  344. minut += 3
  345. *clr & cla
  346. '<center><img <<$set_imgh>> src="images\locations\city\residential\clinic\experiments\assinjection1.jpg"></center>'
  347. '<<$temp_doc>> briefly searches through a drawer and pulls out a syringe filled with a light brownish liquid. A mild sting and a small injection in each bottock, and you are done.'
  348. '"Thank you for your participation, Miss <<$pcs_lastname>>. We''ll speak again soon."'
  349. gs 'city_experimental_trials_list', 'act_return', trial_pays[4]
  350. end
  351. end
  352. gs 'city_experimental_trials_list', 'act_go_back'
  353. !! Fertility shot
  354. elseif $ARGS[0] = $trial_sections[5]:
  355. $menu_loc = 'city_experimental_trials_list'
  356. $menu_arg = $trial_sections[5]
  357. menu_off = 0
  358. $loc_arg = $trial_sections[5]
  359. minut += 2
  360. 'Do you want a baby, but are having problems getting pregnant? Fear not, for we have developed the answer! Just one shot and your chances of bringing that little ray of sunshine into your life will quadruple!'
  361. 'Side effects include: Hormonal imbalance, superovulation and uncontrolled arousal.'
  362. act 'Sign up':
  363. experimentQW['times_participated_5'] += 1
  364. $experimentQW['trial_active'] = $trial_sections[5]
  365. experimentQW['trial_duration'] = trial_durations[5]
  366. menu_off = 1
  367. minut += 2
  368. gs 'stat'
  369. *clr & cla
  370. if rand(0,1) = 0:
  371. $temp_doc = $exp_docs[0]
  372. '<center><img <<$set_imgh>> src="images\locations\city\residential\clinic\experiments\doc1.jpg"></center>'
  373. else
  374. $temp_doc = $exp_docs[1]
  375. '<center><img <<$set_imgh>> src="images\locations\city\residential\clinic\experiments\doc2.jpg"></center>'
  376. end
  377. 'You are approached by a doctor in a white lab coat, <<$temp_doc>> neatly sown on the chest. "Miss <<$pcs_lastname>>? Please follow me."'
  378. *nl
  379. 'You are guided through narrow hallways until you end up in <<$temp_doc>>''s private office, where he gestures you lie on the exam table. "Please expose your stomach and lie face down on the exam table."'
  380. act 'Lie down':
  381. minut += 3
  382. *clr & cla
  383. '<center><img <<$set_imgh>> src="images\locations\city\residential\clinic\experiments\pregshot1.jpg"></center>'
  384. '<<$temp_doc>> briefly searches through a drawer and pulls out a syringe filled with a bubbling red liquid. A sharp sting and an injection into your lower stomach, and you are done.'
  385. '"Thank you for your participation, Miss <<$pcs_lastname>>. We''ll speak again soon."'
  386. gs 'city_experimental_trials_list', 'act_return', trial_pays[5]
  387. end
  388. end
  389. gs 'city_experimental_trials_list', 'act_go_back'
  390. end
  391. if $ARGS[0] = 'act_go_back':
  392. act 'Go back':
  393. gt 'city_experimental_trials_list', 'see_trials'
  394. end
  395. end
  396. if $ARGS[0] = 'act_return':
  397. temp_pay = ARGS[1]
  398. act 'Return to the clinic':
  399. money += temp_pay
  400. killvar 'temp_pay'
  401. gs 'city_experimental_trials_list', 'killvars'
  402. gt 'city_clinic', 'start'
  403. end
  404. end
  405. if $ARGS[0] = 'killvars':
  406. killvar '$trial_names'
  407. killvar 'trial_pays'
  408. killvar 'trial_codes'
  409. killvar '$exp_docs'
  410. killvar '$temp_doc'
  411. end
  412. --- city_experimental_trials_list ---------------------------------