blackmailer.qsrc 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  1. # blackmailer
  2. if $ARGS[0] = 'init_check':
  3. if blackmailQW['day'] ! 0: exit
  4. if ($ARGS[2] = 'inside' or $ARGS[2] = 'indoors'):
  5. if strpos($loc, 'church') < 0: exit
  6. end
  7. temp_prob_chance = 300
  8. temp_prob_chance += max(fame['pav_slut'], fame['city_slut'])
  9. temp_prob_chance += max(fame['pav_modelling'], fame['city_modelling']) / 10
  10. temp_prob_chance += max(fame['pav_porn'], fame['city_porn']) / 10
  11. temp_prob_chance -= 15 * min(exhibitionist_lvl * exhibitionist_lvl, 9)
  12. temp_prob_chance -= pcs_exhib
  13. if temp_prob_chance > 600: killvar 'temp_prob_chance' & exit
  14. if $ARGS[1] = 'tits':
  15. temp_prob_chance -= 40
  16. elseif $ARGS[1] = 'butt':
  17. temp_prob_chance -= 60
  18. elseif $ARGS[1] = 'pussy':
  19. temp_prob_chance -= 80
  20. elseif $ARGS[1] = 'full':
  21. temp_prob_chance -= 100
  22. end
  23. if rand(0, temp_prob_chance) >= 2: exit
  24. killvar 'temp_prob_chance'
  25. gs 'blackmailer', 'init_blackmail', $ARGS[1]
  26. end
  27. if $ARGS[0] = 'init_blackmail':
  28. blackmailQW['day'] = daystart
  29. blackmailQW['stage'] = 1
  30. blackmailQW['init_day'] = daystart
  31. if $ARGS[1] = 'panty':
  32. $blackmailQW['init_flashaction'] = 'panties'
  33. elseif $ARGS[1] = 'pantyrear':
  34. $blackmailQW['init_flashaction'] = 'panty clad ass'
  35. elseif $ARGS[1] = 'butt_plug':
  36. $blackmailQW['init_flashaction'] = 'butt plug'
  37. elseif $ARGS[1] = 'full':
  38. $blackmailQW['init_flashaction'] = 'naked body'
  39. else
  40. $blackmailQW['init_flashaction'] = $ARGS[1]
  41. end
  42. $blackmailQW['init_flashimage'] = $flash_image
  43. $blackmailQW['init_flashloc'] = $loc
  44. $blackmailQW['init_flashloc_arg'] = $loc_arg
  45. if strpos($loc, 'park') >= 0:
  46. 'A flash of light briefly brightens the surrounding trees and you see a shadow darting between the trees. The light of the camera flash prickling on your exposed skin.'
  47. elseif strpos($loc, 'church') >= 0:
  48. 'The flash of a camera illuminates the inside of the church, but the source eludes you.'
  49. elseif strpos($loc, 'zaprF') >= 0:
  50. 'You briefly think a car turned on their headlights, before you realise it was the flash of a camera, the source of which already gone.'
  51. else
  52. 'You think you notice the flash of a camera from the corner of your eye, but its source is already out of view.'
  53. end
  54. if exhibitionist_lvl > 0:
  55. gs 'arousal', 'flashlite', -5
  56. gs 'arousal', 'end'
  57. end
  58. end
  59. !!=============================================!!
  60. !! !!
  61. !! DREAMS !!
  62. !! !!
  63. !!=============================================!!
  64. if $ARGS[0] = 'blackmail_dreams':
  65. if blackmailQW['stage'] = 1:
  66. $sleep_events_priority[] = 'gs ''blackmailer'', ''photo_dream1'' '
  67. elseif blackmailQW['stage'] = 2:
  68. $sleep_events_priority[] = 'gt ''blackmailer'', ''photo_dream2'' '
  69. else
  70. temp_rand = rand(0, 1)
  71. if temp_rand >= 1 and blackmailQW['stage'] >= 2:
  72. $sleep_events[] = 'gt ''blackmailer'', ''photo_dream2'' '
  73. else
  74. $sleep_events[] = 'gs ''blackmailer'', ''photo_dream1'' '
  75. end
  76. end
  77. end
  78. if $ARGS[0] = 'photo_dream1':
  79. if blackmailQW['stage'] = 1: blackmailQW['stage'] = 2
  80. blackmailQW['dream_day'] = daystart + 3
  81. if strpos('panty_pantyrear_bra', $blackmailQW['init_flashtype']):
  82. gs 'arousal', 'flashlite', -5
  83. else
  84. gs 'arousal', 'flash', -5
  85. end
  86. gs 'arousal', 'end'
  87. '<center><img <<$set_imgh>> src="<<$blackmailQW[''init_flashimage'']>>.jpg"></center>'
  88. $temp_dream_text = 'You dream about getting caught while flashing your '
  89. $temp_dream_text += $blackmailQW['init_flashtype']
  90. if strpos($loc, 'church') >= 0:
  91. $temp_dream_text += ' in a church'
  92. elseif strpos($loc, 'park') >= 0:
  93. $temp_dream_text += ' in a park'
  94. elseif strpos($loc, 'zaprF') >= 0:
  95. $temp_dream_text += ' while washing cars'
  96. end
  97. $temp_dream_text += ', your skin prickling from the light of unending camera flashes.'
  98. $temp_dream_text
  99. killvar 'temp_dream_text'
  100. gs 'dream_events', 'event_end'
  101. elseif $ARGS[0] = 'photo_dream2':
  102. if blackmailQW['stage'] = 2: blackmailQW['stage'] = 3
  103. blackmailQW['dreamday'] = daystart + 3
  104. gs 'arousal', 'flash', -5
  105. gs 'arousal', 'end'
  106. if motherKnowWhore = 0 and npc_rel['A29'] > 0:
  107. '<center><img <<$set_imgh>> src="images/characters/pavlovsk/resident/mom/mother.jpg"></center>'
  108. 'You dream that your <<$npc_nickname[''A29'']>> is sitting at the kitchen table, looking somber, almost defeated, reading what seems to be a letter.'
  109. act 'Ask your <<$npc_nickname[''A29'']>> what''s wrong':
  110. *clr & cla
  111. '<center><img <<$set_imgh>> src="images/characters/pavlovsk/resident/mom/mum_gyno2.jpg"></center>'
  112. 'You walk up to her and ask "What''s wrong <<$npc_nickname[''A29'']>>?"'
  113. 'She drops the letter and see that it is accompanied by a picture.'
  114. act 'Look at the picture':
  115. *clr & cla
  116. '<center><img <<$set_imgh>> src="<<$blackmailQW[''init_flashimage'']>>.jpg"></center>'
  117. $temp_dream_text = 'You get a clear look at the picture depicting you flashing your '
  118. $temp_dream_text += $blackmailQW['init_flashtype']
  119. if strpos($loc, 'church') >= 0:
  120. $temp_dream_text += ' in a church'
  121. elseif strpos($loc, 'park') >= 0:
  122. $temp_dream_text += ' in a park'
  123. elseif strpos($loc, 'zaprF') >= 0:
  124. $temp_dream_text += ' while washing cars'
  125. end
  126. $temp_dream_text += '.'
  127. $temp_dream_text
  128. killvar '$temp_dream_text'
  129. 'Overcoming the initial shock, you can barely hear that your <<$npc_nickname[''A29'']>> is speaking to you, though you don''t register what she''s saying to you.'
  130. act 'Listen to your mother':
  131. *clr & cla
  132. '<center><img <<$set_imgh>> src="images/characters/pavlovsk/resident/mom/spank.jpg"></center>'
  133. '"Oh, you slut! Your father and I worked so hard to raise you as a decent person, hoping you would find a good husband some day and it turns out you''re a whore who gets off on showing her <<$blackmailQW[''init_flashaction'']>> to strangers!"'
  134. 'Suddenly her expression steels, her mind made up. "You can still be saved. I will turn you away from this errant path, you will not shame this family even if I have to beat the sin out of you."'
  135. 'She grabs your arm and yanks you over kitchen table, ripping donw your pants as she reaches for something outside of your view.'
  136. 'You hear sound of metal and leather, the feel of thick, rough, leather against your naked behind. The sound as she cracks it like a whip. "This is for your own good, someday you''ll understand."'
  137. '...'
  138. '"Someday you will."'
  139. act 'Brace yourself':
  140. *clr & cla
  141. '<center><img <<$set_imgh>> src="images/characters/pavlovsk/resident/mom/hug_sad1.jpg"></center>'
  142. 'Bracing yourself for the pain that never comes, the dream shifts. You are left on the outside looking in, the house a mess, your <<$npc_nickname[''A29'']>> crying, <<$npc_nickname[''A34'']>> and your <<$npc_nickname[''A28'']>> nowhere to be seen.'
  143. 'The lingering feelings of a happy family quickly fading.'
  144. gs 'dream_events', 'event_end'
  145. end
  146. end
  147. end
  148. end
  149. elseif $start_type['loc'] = 'sg' and gruptipe ! 5:
  150. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/building/locker.jpg"></center>'
  151. 'You dream that it''s the end of a long school day, a tired track back to your lockers, the drab hallways, the monotonous marching of time.'
  152. 'Opening your locker to take your stuff, ready for the same walk home, you yelp in surprise as hundreds of polaroids flow out of your opened locker. Similar shouts of surprise happen all around you as even more polaroids burst from their lockers too.'
  153. 'As the surprise fades you can hear snickering around you, your friends holding the pictures pointing and laughing at you.'
  154. act 'Grab a polaroid':
  155. *clr & cla
  156. '<center><img <<$set_imgh>> src="<<$blackmailQW[''init_flashimage'']>>.jpg"></center>'
  157. $temp_dream_text = 'You grab one of the pictures and see yourself flashing your '
  158. $temp_dream_text += $blackmailQW['init_flashtype']
  159. if strpos($loc, 'church') >= 0:
  160. $temp_dream_text += ' in a church'
  161. elseif strpos($loc, 'park') >= 0:
  162. $temp_dream_text += ' in a park'
  163. elseif strpos($loc, 'zaprF') >= 0:
  164. $temp_dream_text += ' while washing cars'
  165. end
  166. $temp_dream_text += '.'
  167. $temp_dream_text
  168. killvar '$temp_dream_text'
  169. 'The laughter around you grows, you are surrounded by a sea of people holding your picture and laughing at you.'
  170. 'Wading through the ocean of polaroids, you are ever confronted with the fact that you have lost the respect of your former friends.'
  171. gs 'dream_events', 'event_end'
  172. end
  173. else
  174. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/gorodok.jpg"></center>'
  175. 'You dream that you''re walking through Pavlovsk on a beautiful, windless, cloudless, sunny afternoon, the soft hum of cars, people, wind, and birds fills your ears as the simmering heat of the sun caresses your skin.'
  176. 'Snippets of conversations happening around you press against the edges of your mind.'
  177. '"...ink that''s h...", "..ooks li...", "...ouldn''t da...", "...at a sl..."'
  178. 'You can''t really under stand what''s being said as the harsh wind rips the words from the air, but from the way that they''re looking at the newspaper you guess that''s what they''re talking about.'
  179. act 'Head to the post office to satiate your curriosity':
  180. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/pavresn.jpg"></center>'
  181. 'You hurry to the post office to get a copy of your own, the wind howling in your ears. The cold sends shivers down you spine as the rain beats relentless in your face.'
  182. 'When you finally arive you see the postmaster, an older man, look at you strangly. Deafening thunder shakes the building, rain drums loudly against the windows as lightning flashes outside.'
  183. act 'Buy a newspaper':
  184. '<center><img <<$set_imgh>> src="<<$blackmailQW[''init_flashimage'']>>.jpg"></center>'
  185. $temp_dream_text = 'The postmaster distandly hands you a newspaper, and on the front cover you see a picture of yourself flashing your '
  186. $temp_dream_text += $blackmailQW['init_flashtype']
  187. if strpos($loc, 'church') >= 0:
  188. $temp_dream_text += ' in a church'
  189. elseif strpos($loc, 'park') >= 0:
  190. $temp_dream_text += ' in a park'
  191. elseif strpos($loc, 'zaprF') >= 0:
  192. $temp_dream_text += ' while washing cars'
  193. end
  194. $temp_dream_text += '.'
  195. $temp_dream_text
  196. killvar '$temp_dream_text'
  197. '"I didn''t know that you were such a whore!", "That''s really her, what a slut!", "Maybe she''ll let us fuck her too!"'
  198. 'You run outside into the raging storm, the insults piercing through, chasing you.'
  199. gs 'dream_events', 'event_end'
  200. end
  201. end
  202. end
  203. end
  204. --- blackmailer ---------------------------------