gskino.qsrc 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. # gskino
  2. gs 'stat'
  3. if night_mode = 1:
  4. fcolor = rgb(255, 255, 255)
  5. bcolor = rgb(0, 0, 0)
  6. lcolor = rgb(106, 90, 205)
  7. else
  8. fcolor = rgb(0, 0, 0)
  9. bcolor = rgb(255, 255, 255)
  10. lcolor = rgb(106, 90, 205)
  11. end
  12. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/park/theater/kinoteatr.jpg"></center>'
  13. 'Small cinema in which there is just one small screen. A movie ticket costs 100 <b>₽</b>.'
  14. $kinoevent = {
  15. act 'Turn around and look':
  16. cls
  17. pcs_horny += 3
  18. gs'stat'
  19. '<center><img src="images/locations/pavlovsk/park/theater/sex/kino.mp4"></center>'
  20. 'You see on the back row a girl sucking a guy, nobody reacts to the loud smacking sound that can be heard by the whole cinema.'
  21. 'You turn back and watch the rest of the film.'
  22. act 'Leave the cinema':gt'gskver'
  23. end
  24. }
  25. if money >= 100:
  26. act 'Go to the movies':
  27. cla
  28. *clr
  29. money -= 100
  30. minut += 120
  31. pcs_mood += rand(30, 50)
  32. if pav_slut >= 50 and rand(0,2) > 0:
  33. cla
  34. 'As you are watching the film a guy sits next to you and whispers in your ear, "Everyone knows you like to suck cock, I''ll pay you if you have a go on this."'
  35. 'Its dark, but you can just about see well enough to see that he is pointing at his dick.'
  36. act 'Agree':gt 'gevent', '2'
  37. act 'Reject':
  38. cla
  39. 'You tell him you''d rather watch the film, he mutters something that sounded like bitch and leaves you to watch the rest of the movie in peace.'
  40. act 'Leave the cinema':gt 'gskver'
  41. end
  42. exit
  43. end
  44. if rand(1,100) > 10:
  45. 'You quietly watch the film.'
  46. else
  47. 'You quietly watch the movie, but suddenly behind you there is a strange sound.' & dynamic $kinoevent
  48. end
  49. act 'Leave the cinema':gt 'gskver'
  50. end
  51. end
  52. act 'Leave the cinema':minut += 5 & gt 'gskver'
  53. --- gskino ---------------------------------