drugs.qsrc 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579
  1. # drugs
  2. !! How to use:
  3. !! Smoking: gs 'drugs', 'smoke' (if it isn''t svetas cigarette, you have to use use gs 'drugs', 'smoke', 1 OR add mc_inventory['cigarettes'] += 1 or )
  4. !! Joint/Weed: gs 'drugs', 'joint' (if it isn''t svetas joint, you have to use gs 'drugs', 'joint', 1 OR add mc_inventory['joints'] += 1)
  5. !! Heroin: gs 'drugs', 'heroin'
  6. !! Cocaine: gs 'drugs', 'cocaine' (if it isn''t svetas cocaine, you have to use gs 'drugs', 'cocaine', 1 OR add mc_inventory['cocaine'] += 1)
  7. !! Amphetamine: gs 'drugs', 'amphetamine' (if it isn''t svetas amphetamine, you have to use gs 'drugs', 'amphetamine', 1 OR add mc_inventory['amphetamine'] += 1)
  8. !! Neurobooster:gs 'drugs', 'mentats' (if it isn''t svetas mentats, you have to use gs 'drugs', 'mentats', 1 OR add mc_inventory['mentats'] += 1)
  9. !! Aphrodisiac: gs 'drugs', 'aphrodisiac' (if it isn''t svetas aphrodisiac, you have to use gs 'drugs', 'aphrodisiac', 1 OR add mc_inventory['aphrodisiac'] += 1)
  10. !! Steroids: gs 'drugs', 'steroids' (if it isn''t svetas steroids, you have to use gs 'drugs', 'steroids', 1 OR add mc_inventory['steroids'] += 1)
  11. !! Breast Cream:gs 'drugs', 'breastcream' (if it isn''t svetas breast cream, you have to use gs 'drugs', 'breastcream', 1 OR add mc_inventory['breastcream'] += 1)
  12. !! Alcohol: gs 'drugs', 'alcohol', 'type', count
  13. !! Types: beer, champagne, moonshine, rum, scotch, vodka, wine, whiskey
  14. !! Count: Number of drinks of the chosen type sveta drinks (if the number is 1, you don''t have add the count, but it isn''t a problem if you do)
  15. !! Example 1: sveta drinks vodka gs 'drugs', 'alcohol', 'vodka' (or gs 'drugs', 'alcohol', 'vodka', 1)
  16. !! Example 2: sveta drinks 2 beer gs 'drugs', 'alcohol', 'beer', 2
  17. if $ARGS[0] = 'cikl':
  18. gs 'drugs', 'cocaine', 'cikl'
  19. gs 'drugs', 'mentats', 'cikl'
  20. gs 'drugs', 'aphrodisiac', 'cikl'
  21. elseif $ARGS[0] = 'hourly_events':
  22. gs 'drugs', 'smoke', 'hourly_events'
  23. gs 'drugs', 'joint', 'hourly_events'
  24. gs 'drugs', 'heroin', 'hourly_events'
  25. gs 'drugs', 'cocaine', 'hourly_events'
  26. gs 'drugs', 'amphetamine', 'hourly_events'
  27. gs 'drugs', 'aphrodisiac', 'hourly_events'
  28. elseif $ARGS[0] = 'stat':
  29. gs 'drugs', 'heroin', 'stat'
  30. gs 'drugs', 'alcohol', 'stat'
  31. gs 'drugs', 'cocaine', 'stat'
  32. gs 'drugs', 'amphetamine', 'stat'
  33. elseif $ARGS[0] = 'pain_relief':
  34. if alko > 9:
  35. pain['relief'] = 70
  36. elseif alko > 6:
  37. pain['relief'] = 40
  38. elseif alko > 3:
  39. pain['relief'] = 15
  40. end
  41. if drugVars['heroin_high'] > 0:
  42. pain['relief'] = 90
  43. elseif drugVars['cocaine_system'] > 0:
  44. pain['relief'] = 60
  45. elseif pain['killer'] > 12 and alko <= 9:
  46. pain['relief'] = 50
  47. end
  48. elseif $ARGS[0] = 'smoke':
  49. if $ARGS[1] = 'hourly_events':
  50. if drugVars['cigarettes_used'] >= 20 and cheatVars['drugs_immune'] = 0: drugVars['cigarettes_need'] += 1
  51. if drugVars['cigarettes_need'] > 10 and InSleep = 0 and pcs_mood > 20 and cheatVars['drugs_immune'] = 0: pcs_mood -= pcs_mood / 10
  52. if drugVars['cigarettes_need'] > 300:
  53. drugVars['cigarettes_need'] = 0
  54. drugVars['cigarettes_used'] = 0
  55. end
  56. else
  57. if ARGS[1] = 0 and $ARGS[1] = '':
  58. mc_inventory['cigarettes'] -= 1
  59. if mc_inventory['cigarettes'] <= 0: mc_inventory['cigarettes'] = 0 & msg 'That was your last cigarette.'
  60. end
  61. if cheatVars['drugs_immune'] = 1:
  62. drugVars['cigarettes_used'] += 1
  63. if drugVars['cigarettes_used'] > 20 and drugVars['cigarettes_exp'] = 0: drugVars['cigarettes_exp'] = 1
  64. end
  65. stat['cigarettes_smoked'] += 1
  66. drugVars['cigarettes_day'] = daystart
  67. drugVars['cigarettes_hour'] = hour
  68. drugVars['cigarettes_minute'] = minut + 3
  69. drugVars['cigarettes_need'] = 0
  70. teeth['smoked'] += 1
  71. pcs_breath = 0
  72. pcs_mood += 100
  73. if pcs_hydra >= 100:
  74. pcs_hydra -= 5
  75. else
  76. pcs_hydra -= 10
  77. end
  78. if pcs_energy < 80: pcs_energy += 4
  79. cumspclnt = 2
  80. gs 'cum_cleanup'
  81. gs 'stat'
  82. end
  83. elseif $ARGS[0] = 'joint':
  84. if $ARGS[1] = 'hourly_events':
  85. if drugVars['weed_high'] > 0: drugVars['weed_high'] -= 1
  86. else
  87. if ARGS[1] = 0 and $ARGS[1] = '':
  88. mc_inventory['joints'] -= 1
  89. if mc_inventory['joints'] <= 0: mc_inventory['joints'] = 0 & msg 'That was your last joint.'
  90. end
  91. if cheatVars['drugs_immune'] = 0:
  92. drugVars['weed_used'] += 1
  93. if drugVars['weed_used'] > 5 and drugVars['weed_exp'] = 0: drugVars['weed_exp'] = 1
  94. end
  95. if minut > 30:
  96. drugVars['weed_high'] = 2
  97. else
  98. drugVars['weed_high'] = 1
  99. end
  100. drugVars['weed_day'] = daystart
  101. drugVars['weed_hour'] = hour
  102. drugVars['weed_minute'] = minut + 2
  103. pcs_breath = 0
  104. pcs_mood += 100
  105. if pcs_hydra >= 100:
  106. pcs_hydra -= 5
  107. else
  108. pcs_hydra -= 10
  109. end
  110. pcs_energy = max(0, pcs_energy - 20)
  111. cumspclnt = 2
  112. gs 'cum_cleanup'
  113. gs 'stat'
  114. end
  115. elseif $ARGS[0] = 'heroin':
  116. if $ARGS[1] = 'hourly_events':
  117. if drugVars['heroin_high'] > 0:
  118. pcs_mood -= (40 / drugVars['heroin_high'])
  119. drugVars['heroin_high'] -= 1
  120. end
  121. if drugVars['heroin_need'] > 0 and pcs_mood > 10:
  122. drugVars['heroin_need'] += 1
  123. pcs_mood -= pcs_mood / 10
  124. end
  125. if drugVars['heroin_need'] > 100 and drugVars['heroin_high'] <= 0:
  126. drugVars['heroin_need'] = 0
  127. drugVars['heroin_used'] = 0
  128. end
  129. elseif $ARGS[1] = 'stat':
  130. if drugVars['heroin_high'] >= 20 and alko > 0: alko = 0
  131. if drugVars['heroin_high'] <= 0:
  132. if drugVars['heroin_used'] >= 3 and drugVars['heroin_need'] = 0: drugVars['heroin_need'] = 1
  133. else
  134. if drugVars['heroin_need'] > 0: drugVars['heroin_need'] = 0
  135. pcs_mood = 100
  136. end
  137. if drugVars['heroin_used'] >= drugVars['heroin_penalty'] * 25:
  138. if drugVars['heroin_penalty'] > 0: vidage += 1
  139. drugVars['heroin_penalty'] += 1
  140. end
  141. else
  142. if cheatVars['drugs_immune'] = 0:
  143. drugVars['heroin_used'] += 1
  144. if drugVars['heroin_used'] > 1 and drugVars['heroin_exp'] = 0: drugVars['heroin_exp'] = 1
  145. end
  146. drugVars['heroin_high'] += 25
  147. drugVars['heroin_day'] = daystart
  148. pcs_mood = 100
  149. pcs_health -= 10
  150. gs 'stat'
  151. end
  152. elseif $ARGS[0] = 'cocaine':
  153. if $ARGS[1] = 'cikl':
  154. if drugVars['cocaine_system'] > 60:
  155. drugVars['cocaine_system'] = 60
  156. elseif drugVars['cocaine_system'] > 30:
  157. drugVars['cocaine_system'] -= 3
  158. elseif drugVars['cocaine_system'] > 0:
  159. drugVars['cocaine_system'] -= 1
  160. end
  161. elseif $ARGS[1] = 'hourly_events':
  162. if drugVars['cocaine_addict'] = 1 and drugVars['cocaine_day'] ! daystart:
  163. pcs_health -= 5
  164. !! Changed from pcs_mood > 40 -> pcs_mood > 45 to avoid pcs_mood becoming lower than 5. Blame Anjuna
  165. if pcs_mood > 45:
  166. pcs_mood -= 40
  167. else
  168. pcs_mood = 5
  169. end
  170. end
  171. elseif $ARGS[1] = 'stat':
  172. if cheatVars['drugs_immune'] = 1:
  173. if drugVars['cocaine_addict'] ! 0: drugVars['cocaine_addict'] = 0
  174. elseif drugVars['cocaine_system'] >= 30 and drugVars['cocaine_addict'] = 0 and cheatVars['drugs_immune'] = 0:
  175. drugVars['cocaine_addict'] = 1
  176. elseif drugVars['cocaine_system'] = 0 and drugVars['cocaine_addict'] = 1:
  177. drugVars['cocaine_addict'] = 0
  178. end
  179. else
  180. if ARGS[1] = 0 and $ARGS[1] = '':
  181. mc_inventory['cocaine'] -= 1
  182. if mc_inventory['cocaine'] <= 0: mc_inventory['cocaine'] = 0 & msg 'That was your last line of cocaine.'
  183. end
  184. if cheatVars['drugs_immune'] = 0:
  185. drugVars['cocaine_used'] += 1
  186. if drugVars['cocaine_used'] > 3 and drugVars['cocaine_exp'] = 0: drugVars['cocaine_exp'] = 1
  187. end
  188. drugVars['cocaine_system'] += 10
  189. drugVars['cocaine_day'] = daystart
  190. if drugVars['cocaine_willday'] ! daystart: drugVars['cocaine_willday'] = daystart & pcs_willpwr += 10
  191. pcs_health = pcs_vital * 10 + pcs_stren * 5
  192. pcs_mood = 100
  193. pcs_horny = 100
  194. gs 'stat'
  195. end
  196. elseif $ARGS[0] = 'amphetamine':
  197. if $ARGS[1] = 'hourly_events':
  198. if insleep = 1:
  199. if drugVars['amphetamine_high'] > 0:
  200. pcs_energy -= (4 / drugVars['amphetamine_bonus'])
  201. pcs_hydra -= (8 / drugVars['amphetamine_bonus'])
  202. else
  203. pcs_energy -= (4 * drugVars['amphetamine_bonus'])
  204. pcs_hydra -= (8 * drugVars['amphetamine_bonus'])
  205. end
  206. else
  207. if drugVars['amphetamine_high'] > 0:
  208. pcs_energy -= ( 8 / drugVars['amphetamine_bonus'])
  209. pcs_hydra -= (16 / drugVars['amphetamine_bonus'])
  210. else
  211. pcs_energy -= ( 8 * drugVars['amphetamine_bonus'])
  212. pcs_hydra -= (16 * drugVars['amphetamine_bonus'])
  213. end
  214. end
  215. if drugVars['amphetamine_withdrawl'] >= 5:
  216. drugVars['amphetamine_withdrawl'] += 1
  217. pcs_mood -= (drugVars['amphetamine_withdrawl'] / 5)
  218. end
  219. if drugVars['amphetamine_high'] > 0:
  220. if drugVars['amphetamine_withdrawl'] < 2: drugVars['amphetamine_withdrawl'] = 2
  221. drugVars['amphetamine_bonus'] = 3
  222. drugVars['amphetamine_high'] -= 4
  223. pcs_mood += (2 * drugVars['amphetamine_high'])
  224. elseif drugVars['amphetamine_high'] <= 0 and drugVars['amphetamine_withdrawl'] = 2:
  225. if drugVars['amphetamine_intake'] > 0:
  226. drugVars['amphetamine_intake'] -= 1
  227. else
  228. drugVars['amphetamine_withdrawl'] = 0
  229. end
  230. drugVars['amphetamine_high'] = 0
  231. drugVars['amphetamine_bonus'] = 2
  232. pcs_mood -= pcs_mood / 10
  233. elseif drugVars['amphetamine_intake'] > 0:
  234. drugVars['amphetamine_withdrawl'] += 1
  235. elseif drugVars['amphetamine_high'] = 0 and drugVars['amphetamine_withdrawl'] = 0:
  236. drugVars['amphetamine_bonus'] = 1
  237. end
  238. if drugVars['amphetamine_withdrawl'] > 169:
  239. drugVars['amphetamine_withdrawl'] = 1
  240. drugVars['amphetamine_bonus'] = 1
  241. drugVars['amphetamine_used'] = 0
  242. end
  243. elseif $ARGS[1] = 'stat':
  244. if drugVars['amphetamine_used'] > 3 and drugVars['amphetamine_high'] <= 0:
  245. temp_addictChance = rand(1,10)
  246. if temp_addictChance > 8:
  247. drugVars['amphetamine_withdrawl'] = 2
  248. end
  249. killvar 'temp_addictChance'
  250. end
  251. else
  252. if drugVars['amphetamine_intake'] >= 2:
  253. 'Your heart is already beating uncontrollably in your chest, you should avoid taking anymore pills.'
  254. else
  255. '<font color= blue>You swallow the white pill.</font>'
  256. if ARGS[1] = 0 and $ARGS[1] = '':
  257. mc_inventory['amphetamine'] -= 1
  258. if mc_inventory['amphetamine'] <= 0: mc_inventory['amphetamine'] = 0 & msg 'That was your last amphetamine pill.'
  259. end
  260. if cheatVars['drugs_immune'] = 0:
  261. drugVars['amphetamine_used'] += 1
  262. if drugVars['amphetamine_used'] > 5 and drugVars['amphetamine_exp'] = 0: drugVars['amphetamine_exp'] = 1
  263. end
  264. drugVars['amphetamine_intake'] += 1
  265. drugVars['amphetamine_high'] = 12
  266. end
  267. gs 'stat'
  268. end
  269. elseif $ARGS[0] = 'mentats':
  270. if $ARGS[1] = 'cikl':
  271. if drugVars['mentats_dose'] = 1:
  272. drugVars['mentats_dose'] = 0
  273. elseif drugVars['mentats_dose'] > 1:
  274. pain['head'] += 20 * drugVars['mentats_dose']
  275. drugVars['mentats_dose'] = 0
  276. end
  277. else
  278. if ARGS[1] = 0 and $ARGS[1] = '':
  279. mc_inventory['mentats'] -= 1
  280. if mc_inventory['mentats'] <= 0: mc_inventory['mentats'] = 0 & msg 'That was your last neurobooster pill.'
  281. end
  282. drugVars['mentats_used'] += 1
  283. drugVars['mentats_dose'] += 1
  284. gs 'stat'
  285. end
  286. elseif $ARGS[0] = 'steroids':
  287. if $ARGS[1] = 'cikl':
  288. if drugVars['steroids_dose'] >= 1:
  289. if lashair < 1:
  290. pcs_pubes += drugVars['steroids_dose']
  291. pcs_leghair += drugVars['steroids_dose']
  292. end
  293. drugVars['steroids_dose'] = 0
  294. end
  295. else
  296. if drugVars['steroids_dose'] < 3:
  297. '<font color = blue>You swallow the orange pill.</font>'
  298. if ARGS[1] = 0 and $ARGS[1] = '':
  299. mc_inventory['steroids'] -= 1
  300. if mc_inventory['steroids'] <= 0: mc_inventory['steroids'] = 0 & msg 'That was your last steroid pill.'
  301. end
  302. drugVars['steroids_used'] += 1
  303. drugVars['steroids_dose'] += 1
  304. else
  305. 'You really shouldn''t take any more pills today.'
  306. end
  307. gs 'stat'
  308. end
  309. elseif $ARGS[0] = 'breastcream':
  310. if $ARGS[1] = 'cikl':
  311. if drugVars['breastcream_dose'] >= 1:
  312. drugVars['breastcream_dose'] = 0
  313. temp = pcs_mass['bust'] - pcs_mass['bust_gen']
  314. temp = rand(0, 5 + max(0, temp)) / max(1, temp)
  315. if temp > 0:
  316. bodyVars['bust_other'] += 1
  317. 'Feels like your breasts have grown slightly.'
  318. end
  319. killvar 'temp'
  320. end
  321. else
  322. if drugVars['breastcream_dose'] < 1:
  323. '<font color = #DB7093>You smear the cream onto your breasts and rub it in.</font>'
  324. if ARGS[1] = 0 and $ARGS[1] = '':
  325. mc_inventory['breastcream'] -= 1
  326. if mc_inventory['breastcream'] <= 0: mc_inventory['breastcream'] = 0 & msg 'That was your last bit of breast cream.'
  327. end
  328. drugVars['breastcream_used'] += 1
  329. drugVars['breastcream_dose'] = 1
  330. else
  331. 'Using any more cream won''t have any effect.'
  332. end
  333. gs 'stat'
  334. end
  335. elseif $ARGS[0] = 'painkiller':
  336. if ARGS[1] = 0 and $ARGS[1] = '':
  337. mc_inventory['painkillers'] -= 1
  338. if mc_inventory['painkillers'] <= 0: mc_inventory['painkillers'] = 0 & msg 'That was your last painkiller.'
  339. end
  340. drugVars['painkillers_used'] += 1
  341. pain['killer'] += 1
  342. gs 'stat'
  343. elseif $ARGS[0] = 'alcohol':
  344. if $ARGS[1] = 'stat':
  345. if alko > 9:
  346. pain['relief'] = 70
  347. elseif alko > 6:
  348. pain['relief'] = 40
  349. elseif alko > 3:
  350. pain['relief'] = 15
  351. end
  352. else
  353. if cheatVars['drugs_immune'] = 0:
  354. drugVars['alcohol_used'] += 1
  355. if drugVars['alcohol_used'] > 15 and drugVars['alcohol_exp'] = 0: drugVars['alcohol_exp'] = 1
  356. end
  357. if ARGS[2] <= 1:
  358. temp_alc_count = 1
  359. else
  360. temp_alc_count = ARGS[2]
  361. end
  362. :alcohol_jump
  363. temp_alc_count -= 1
  364. pcs_health -= 5
  365. pcs_energy -= 5
  366. if $ARGS[1] = 'beer':
  367. if pcs_traits['alko_status'] = -1:
  368. alko += rand(1,2)
  369. elseif pcs_traits['alko_status'] = 1:
  370. alko += rand(0,1)
  371. else
  372. alko += 1
  373. end
  374. pcs_traits['alko_day'] += 1
  375. fat += 3
  376. pcs_mood += 10
  377. if pcs_hydra >= 100:
  378. pcs_hydra += 5
  379. else
  380. pcs_hydra += 10
  381. end
  382. elseif $ARGS[1] = 'wine' or $ARGS[1] = 'champagne':
  383. if pcs_traits['alko_status'] = -1:
  384. alko += 3
  385. elseif pcs_traits['alko_status'] = 1:
  386. alko += 1
  387. else
  388. alko += 2
  389. end
  390. pcs_traits['alko_day'] += 2
  391. fat += 4
  392. pcs_mood += 20
  393. if pcs_hydra >= 100:
  394. pcs_hydra += 5
  395. else
  396. pcs_hydra += 10
  397. end
  398. elseif $ARGS[1] = 'vodka' or $ARGS[1] = 'whiskey' or $ARGS[1] = 'scotch' or $ARGS[1] = 'rum':
  399. pcs_traits['alko_day'] += 3
  400. if pcs_traits['alko_status'] = -1:
  401. alko += rand(4,5)
  402. elseif pcs_traits['alko_status'] = 1:
  403. alko += rand(1,2)
  404. else
  405. alko += 3
  406. end
  407. fat += 6
  408. if pcs_hydra >= 100:
  409. pcs_hydra -= 5
  410. else
  411. pcs_hydra -= 10
  412. end
  413. elseif $ARGS[1] = 'moonshine':
  414. if pcs_traits['alko_status'] = -1:
  415. alko += rand(7,8)
  416. elseif pcs_traits['alko_status'] = 1:
  417. alko += rand(2,3)
  418. else
  419. alko += 5
  420. end
  421. pcs_traits['alko_day'] += 5
  422. fat += 6
  423. if pcs_hydra >= 100:
  424. pcs_hydra -= 5
  425. else
  426. pcs_hydra -= 10
  427. end
  428. else
  429. '<br><font color = red>Developer note: The type of alcohol: (<<$ARGS[1]>>) is missing in this scene. Please report this and a small part of the text of the current scene as a bug.</font>'
  430. end
  431. if temp_alc_count > 0: jump 'alcohol_jump'
  432. killvar 'temp_alc_count'
  433. frost = 0
  434. pcs_breath = 0
  435. cumspclnt = 2
  436. gs 'cum_cleanup'
  437. gs 'stat'
  438. end
  439. elseif $ARGS[0] = 'aphrodisiac':
  440. if $ARGS[1] = 'cikl':
  441. if drugVars['aphrodisiac_overdose'] = 1: drugVars['aphrodisiac_overdose'] = 0
  442. if drugVars['aphrodisiac_timer'] ! 0: drugVars['aphrodisiac_timer'] = 0
  443. elseif $ARGS[1] = 'hourly_events':
  444. if drugVars['aphrodisiac_timer'] >= 1:
  445. !! Changed from pcs_horny < 80 -> pcs_horny < 70 to ensure a minimum increase of +10. Blame Anjuna
  446. if pcs_horny < 70:
  447. pcs_horny = 80
  448. else
  449. pcs_horny += 10
  450. end
  451. drugVars['aphrodisiac_timer'] -= 1
  452. end
  453. else
  454. if drugVars['aphrodisiac_overdose'] = 1:
  455. $drugVars['aphrodisiac_msg'] = '<br>You''ve had enough aphrodisiac for today.'
  456. else
  457. if ARGS[1] = 0 and $ARGS[1] = '':
  458. mc_inventory['aphrodisiac'] -= 1
  459. if mc_inventory['aphrodisiac'] <= 0: mc_inventory['aphrodisiac'] = 0 & msg 'That was your last aphrodisiac pill.'
  460. end
  461. drugVars['aphrodisiac_used'] += 1
  462. if drugVars['aphrodisiac_timer'] = 0:
  463. $drugVars['aphrodisiac_msg'] = '<font color = #DB7093><br>You take a gum and chew it. It tastes like strawberry, but is also kind of spicy.</font>'
  464. drugVars['aphrodisiac_timer'] += 8
  465. pcs_horny = 80
  466. elseif drugVars['aphrodisiac_timer'] > 0 and drugVars['aphrodisiac_timer'] <= 8:
  467. $drugVars['aphrodisiac_msg'] = '<font color = #DB7093><br>You take another gum and chew it. It makes your mouth feel kinda tingly.</font>'
  468. drugVars['aphrodisiac_timer'] += 8
  469. pcs_horny = 100
  470. elseif drugVars['aphrodisiac_timer'] > 8 and min_arousal < 60:
  471. $drugVars['aphrodisiac_msg'] = '<font color = red><b><br>You take yet another gum and start chewing it. Suddenly you find yourself in grip of an intense orgasm!<br>It goes on and on and you sink to the ground and do your best to endure it.</b></font>'
  472. drugVars['aphrodisiac_overdose'] = 1
  473. pcs_horny = min_arousal
  474. orgasm += 1
  475. pcs_mood = 100
  476. min_arousal += 10
  477. if min_arousal <= 10:
  478. $min_arousal_msg = '<font color = #DB7093>That was intense! You can still feel the tingles.</font>'
  479. elseif min_arousal <= 20:
  480. $min_arousal_msg = '<font color = #DB7093>You are really starting to enjoy these! Your crotch still feels kinda hot though.</font>'
  481. elseif min_arousal <= 30:
  482. $min_arousal_msg = '<font color = #DB7093>As you are trying to get back to your feet you notice that you are still horny. What is happening to you?</font>'
  483. elseif min_arousal <= 40:
  484. $min_arousal_msg = '<font color = #DB7093>You are certain of it. Every time those gums give you an orgasm they also increase your libido.</font>'
  485. elseif min_arousal <= 50:
  486. $min_arousal_msg = '<font color = #DB7093>You run a finger across your slit and shudder. You really should stop chewing these gums while you can still think of something other than sex.</font>'
  487. else
  488. $min_arousal_msg = '<font color = #DB7093>You are burning up. You feel like you could fuck anything and everything all day long.</font>'
  489. end
  490. else
  491. $drugVars['aphrodisiac_msg'] = '<font color = #DB7093>You chew another gum with trepidation, looking forward to more orgasms but nothing happens. Huh. Have you become immune?</font>'
  492. end
  493. end
  494. gs 'stat'
  495. end
  496. else
  497. '<br><font color = red>Developer note: The type of drug is wrong or missing in this scene. Please report this and a small part of the text of the current scene as a bug.</font>'
  498. end
  499. gs 'traits', 'addictive_personality'
  500. --- drugs ---------------------------------