LakeBoyZ.qsrc 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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 += 15
  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. alko+=3
  30. pcs_mood += 30
  31. gs'stat'
  32. 'You drink beer with the guy, and the two of you chat for a while.'
  33. 'Suddenly, he puts his hand on your thigh.'
  34. '"Another beer, <<$pcs_nickname>>?"'
  35. act 'Thank him for the beer and leave':gt'glake'
  36. act 'Drink some more beer':
  37. cls
  38. alko+=3
  39. pcs_mood += 30
  40. gs 'arousal', 'foreplay', 15
  41. gs 'stat'
  42. 'You drink more beer with <<$boydesc>>. He begins stroking your leg and puts his hand on your chest as he leans into you.'
  43. if rand(1,100) <= 20:
  44. 'Leaned in he whispers to you, "I need to taste those lips."'
  45. act 'Push him away and leave':gt'glake'
  46. act 'Kiss him':
  47. cls
  48. gs 'arousal', 'kiss', 5
  49. gs 'arousal', 'end'
  50. gs 'stat'
  51. 'You passionately kiss <<$boydesc>>, as he continues to caress your body, paying particular interest to your breasts.'
  52. '<<$boydesc>> invites you to his house.'
  53. act 'Call it a day and leave':gt'glake'
  54. act 'Follow him to his house':
  55. if $clothingworntype = 'nude':
  56. gs 'clothing', 'wear_last_worn'
  57. if $clothingworntype = 'swimwear':gs 'clothing', 'wear', $normalclothingworntype, normalclothingwornno
  58. gt 'LBZhouse'
  59. else
  60. gs 'clothing', 'wear', $normalclothingworntype, normalclothingwornno
  61. gt 'LBZhouse'
  62. end
  63. end
  64. end
  65. else
  66. '<<$boydesc>> smiles and suggests that the two of you go for a walk.'
  67. act 'Reject and leave':gt'glake'
  68. act 'Agree':
  69. cls
  70. minut += 15
  71. if $clothingworntype = 'nude':
  72. gs 'clothing', 'wear_last_worn'
  73. if $clothingworntype = 'swimwear':gs 'clothing', 'wear', $normalclothingworntype, normalclothingwornno
  74. else
  75. gs 'clothing', 'wear', $normalclothingworntype, normalclothingwornno
  76. end
  77. gs'stat'
  78. 'You quickly get changed into your regular clothes and go for a walk with <<$boydesc>>.'
  79. '<<$boydesc>> invites you over to his house.'
  80. act 'Call it a day and leave':gt'pavResidential'
  81. act 'Follow him to his house':gt'LBZhouse'
  82. end
  83. end
  84. end
  85. end
  86. end
  87. end
  88. }
  89. --- LakeBoyZ ---------------------------------