hunters.qsrc 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. # hunters
  2. if $ARGS[0] = 'start':
  3. gs 'stat'
  4. !The comment below is a monument to the countless unnamed souls fallen in the battle to revamp this code and text
  5. !$textsexhunter = 'From a member of the unpleasant smells and remains in the mouth tastes foul feces. "-Damn, I had to do an enema." - belatedly dumaeete you.'
  6. act 'Walk away':gt'swamp_yard'
  7. if huntersKnow = 0:
  8. act 'Greet them':
  9. gs 'hunter_interactions', 'meet_hunters '
  10. end
  11. end
  12. end
  13. if $ARGS[0] = 'check_opinion':
  14. cla & *clr
  15. if $loc = 'swamp_yard':
  16. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hanterstalk.jpg"></center>'
  17. 'You look at the hunters hanging out at the yard.'
  18. elseif $loc = 'swamphouse':
  19. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hantersrelax1.4.jpg"></center>'
  20. 'You look at the hunters hanging out inside the hut.'
  21. end
  22. !TODO: More images and flesh out the text
  23. !Friendliness:
  24. if hunter_collective_opinion > 50:
  25. 'Igor smiles when notices you looking at them and gives you a friendly wave.'
  26. elseif hunter_collective_opinion > 25:
  27. 'Igor makes eye contact with you and nods before going back to what he was doing.'
  28. else
  29. 'Igor frowns at you when he notices you looking before you break eye contact.'
  30. end
  31. !Sexuality
  32. if hunter_sexual_comfort > 50:
  33. if $clothingworntype ! 'nude':
  34. 'Andrei then looks at you and says "What is it with all the clothing? Let it all air out!"'
  35. else
  36. '"Damn, <<$pcs_nickname>>, you look really good without the clothes. The things I would want to do to you..." said a somewhat aroused Andrei.'
  37. end
  38. elseif hunter_sexual_comfort > 25:
  39. 'Andrei then looks at you and throws you an air kiss.'
  40. else
  41. 'The other hunters completely ignore you, pretending you are not even there.'
  42. end
  43. act 'Further': gt $loc
  44. end
  45. if $ARGS[0] = 'huntersgroupfaint':
  46. *clr & cla
  47. minut += 1
  48. pcs_horny += rand(5,10)
  49. gs 'stat'
  50. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hantersgroupfaint.jpg"></center>'
  51. if shootingfaint = 1:
  52. shooting = 2
  53. 'You feel a pain and everything before you begins to darken, the world starts spinning and you collapse...'
  54. else
  55. 'You suddenly feel an unbearable pain. Your sight begins to darken, the world starts spinning and you collapse...'
  56. end
  57. if huntersRape = 4 or huntdanceslut = 4 or forest_gopsex = 1:
  58. act 'Wake up':
  59. *clr & cla
  60. minut += 10
  61. pcs_health += 100
  62. pcs_mood = 100
  63. pcs_willpwr += 100
  64. huntersexnude = 0
  65. forest_gopsex = 0
  66. slutgosex = 0
  67. gs 'stat'
  68. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hantersgroupfaint1.jpg"></center>'
  69. 'Someone''s pouring water on you making you to wake up...'
  70. '"<<$pcs_nickname>>, are you still alive?" You hear <<$boydesc>> asking while making sure that you''ve come around.'
  71. 'You weakly nod your head.'
  72. '"Good, I''m glad you aren''t hurt." he says'
  73. act 'Further':gt $loc, $metka
  74. end
  75. else
  76. act 'Wake up':
  77. *clr & cla
  78. minut += 10
  79. pcs_health += 100
  80. pcs_mood = 100
  81. pcs_willpwr += 100
  82. shootingfaint = 0
  83. huntersexnude = 0
  84. forest_gopsex = 0
  85. slutgosex = 0
  86. gs 'stat'
  87. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hantersgroupfaint2.jpg"></center>'
  88. 'You wake up by someone''s lightly pats on the cheek...'
  89. '"<<$pcs_nickname>>, are you still alive?" You hear <<$boydesc>> asking while making sure that you''ve come around.'
  90. 'You weakly nod your head.'
  91. '"You really scared us, you were so fucked up last night. Go to the hut and rest."'
  92. act 'Further': gt'swamphouse'
  93. end
  94. end
  95. end
  96. --- hunters ---------------------------------