LakeBoyZ.qsrc 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. # LakeBoyZ
  2. $gL_boy_z = {
  3. act '<<$pcs_nickname>>':
  4. cls
  5. gs 'stat'
  6. 'He seems nice enough so you decide to give him your name.'
  7. randvnesh = rand(40,120)
  8. if rand(0,10) = 0 and pcs_apprnc >= randvnesh:
  9. '<<$boydesc>> smiles as he says, "You''re a pretty cool girl. Maybe we can hang out again?"'
  10. act 'Smile and leave': gt 'glake'
  11. act 'Give him your phone number':
  12. cls
  13. pcs_mood += 10
  14. gs 'boy', 'details'
  15. if rand(0,2) = 0: gs 'boyfrend','start'
  16. minut += 5
  17. bmFrend[Tboynum] = 1
  18. gs 'stat'
  19. 'You give <<$boydesc>> your phone number and he adds it to his contact list.'
  20. 'He then excuses himself and leaves, promising to call you.'
  21. act 'Return': gt 'glake'
  22. end
  23. else
  24. '<<$boydesc>> sits closer to you and offers you a cold beer.'
  25. act 'Smile and leave':gt'glake'
  26. act 'Drink beer':
  27. cls
  28. minut += 15
  29. gs 'drugs', 'alcohol', 'beer', 1
  30. gs 'stat'
  31. 'You drink beer with the guy, and the two of you chat for a while.'
  32. 'Suddenly, he puts his hand on your thigh.'
  33. '"Another beer, <<$pcs_nickname>>?"'
  34. gs 'willpower', 'drink', 'resist', 'easy'
  35. if will_cost <= pcs_willpwr:
  36. act 'Thank him for the beer and leave (<<will_cost>> Willpower)': gs 'willpower', 'pay', 'resist' & gt 'glake'
  37. else
  38. act 'Thank him for the beer and leave (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  39. end
  40. act 'Drink some more beer':
  41. cls
  42. gs 'drugs', 'alcohol', 'beer', 1
  43. gs 'arousal', 'foreplay', 5
  44. gs 'stat'
  45. 'You drink more beer with <<$boydesc>>. He begins stroking your leg and puts his hand on your chest as he leans into you.'
  46. if rand(1,100) <= 20:
  47. 'Leaned in he whispers to you, "I need to taste those lips."'
  48. gs 'willpower', 'kiss', 'resist', 'easy'
  49. if will_cost <= pcs_willpwr:
  50. act 'Push him away and leave (<<will_cost>> Willpower)': gs 'willpower', 'pay', 'resist' & gt 'glake'
  51. else
  52. act 'Push him away and leave (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  53. end
  54. act 'Kiss him':
  55. cls
  56. gs 'arousal', 'kiss', 5
  57. gs 'arousal', 'end'
  58. gs 'stat'
  59. 'You passionately kiss <<$boydesc>>, as he continues to caress your body, paying particular interest to your breasts.'
  60. '<<$boydesc>> invites you to his house.'
  61. gs 'willpower', 'sex', 'resist', 'easy'
  62. if will_cost <= pcs_willpwr:
  63. act 'Call it a day and leave (<<will_cost>> Willpower)': gs 'willpower', 'pay', 'resist' & gt 'glake'
  64. else
  65. act 'Call it a day and leave (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  66. end
  67. act 'Follow him to his house':
  68. if $clothingworntype = 'nude':
  69. gs 'clothing', 'wear_last_worn'
  70. if $clothingworntype = 'swimwear':gs 'clothing', 'wear', $normalclothingworntype, normalclothingwornno
  71. gt 'LBZhouse'
  72. else
  73. gs 'clothing', 'wear', $normalclothingworntype, normalclothingwornno
  74. gt 'LBZhouse'
  75. end
  76. end
  77. end
  78. else
  79. '<<$boydesc>> smiles and suggests that the two of you go for a walk.'
  80. act 'Reject and leave':gt'glake'
  81. act 'Agree':
  82. cls
  83. minut += 15
  84. if $clothingworntype = 'nude':
  85. gs 'clothing', 'wear_last_worn'
  86. if $clothingworntype = 'swimwear':gs 'clothing', 'wear', $normalclothingworntype, normalclothingwornno
  87. else
  88. gs 'clothing', 'wear', $normalclothingworntype, normalclothingwornno
  89. end
  90. gs'stat'
  91. 'You quickly get changed into your regular clothes and go for a walk with <<$boydesc>>.'
  92. '<<$boydesc>> invites you over to his house.'
  93. gs 'willpower', 'sex', 'resist', 'easy'
  94. if will_cost <= pcs_willpwr:
  95. act 'Call it a day and leave (<<will_cost>> Willpower)': gs 'willpower', 'pay', 'resist' & gt 'glake'
  96. else
  97. act 'Call it a day and leave (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  98. end
  99. act 'Follow him to his house':gt'LBZhouse'
  100. end
  101. end
  102. end
  103. end
  104. end
  105. end
  106. }
  107. --- LakeBoyZ ---------------------------------