LakeBoyZ 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. # LakeBoyZ
  2. $gL_boy_z = {
  3. act '<<$pcs_nickname>>':
  4. cls
  5. gs'stat'
  6. 'The guy seems nice enough, you tell him your name.'
  7. randvnesh = RAND(40,120)
  8. if RAND(0,10) = 0 and pcs_apprnc >= randvnesh:
  9. '<<$boydesc>> says, "You''re a cool girl. Maybe we''ll meet again?"'
  10. act 'Smile and leave':gt'glake'
  11. act 'Tell him your phone number':
  12. cls
  13. pcs_mood += 10
  14. gs 'boy', 'details'
  15. minut += 30
  16. bmFrend[Tboynum] = 1
  17. gs'stat'
  18. 'You tell the guy your phone and he puts it in his phone.'
  19. 'The man then makes his excuses and leaves, promising to call you.'
  20. act 'Return' :gt'glake'
  21. end
  22. else
  23. '<<$boydesc>> sits closer to you and offers you a cold beer.'
  24. act 'Smile and leave':gt'glake'
  25. act'Drink beer':
  26. cls
  27. minut+=15
  28. alko+=3
  29. pcs_mood += 30
  30. gs'stat'
  31. 'You drink beer with the guy, and he chats away with you.'
  32. 'Suddenly, he puts his hand on your foot.'
  33. '""More on beer <<$pcs_nickname>>?"'
  34. act 'Call it a day and leave':gt'glake'
  35. act'Drink more beer':
  36. cls
  37. alko+=3
  38. pcs_mood += 30
  39. gs'stat'
  40. 'You drink more beer with the guy, and he strokes your legs and puts his hand on your chest as he leans in close to you.'
  41. gs 'arousal', 'foreplay', 15
  42. gs 'stat'
  43. if rand(1,100) <= 20:
  44. 'He whispers, "Let''s kiss."'
  45. act 'Call it a day and leave':gt'glake'
  46. act'Kiss him':
  47. cls
  48. gs'stat'
  49. 'You passionately kiss <<$boydesc>>, as he continues to caress your body, paying particular interest to your breasts.'
  50. '<<$boydesc>> invites you to his house.'
  51. gs 'arousal', 'foreplay', 5
  52. gs 'arousal', 'end'
  53. gs 'stat'
  54. act 'Call it a day and leave':gt'glake'
  55. act'Go with the guy':
  56. if $clothingworntype = 'nude':
  57. gs 'clothing', 'wear_last_worn'
  58. if $clothingworntype = 'swimwear':gs 'clothing', 'wear', $normalclothingworntype, normalclothingwornno
  59. gt'LBZhouse'
  60. else
  61. gs 'clothing', 'wear', $normalclothingworntype, normalclothingwornno
  62. gt'LBZhouse'
  63. end
  64. end
  65. end
  66. else
  67. '<<$boydesc>> smiles, then suggests a walk.'
  68. act 'Call it a day and leave':gt'glake'
  69. act'Go for a walk':
  70. cls
  71. minut+=15
  72. if $clothingworntype = 'nude':
  73. gs 'clothing', 'wear_last_worn'
  74. if $clothingworntype = 'swimwear':gs 'clothing', 'wear', $normalclothingworntype, normalclothingwornno
  75. else
  76. gs 'clothing', 'wear', $normalclothingworntype, normalclothingwornno
  77. end
  78. gs'stat'
  79. 'You quickly get changed into your regular clothes and go for a walk with a guy.'
  80. '<<$boydesc>> invites you over to his house.'
  81. act 'Call it a day and leave':gt'pavResidential'
  82. act'Go with the guy':gt'LBZhouse'
  83. end
  84. end
  85. end
  86. end
  87. end
  88. end
  89. }
  90. --- LakeBoyZ ---------------------------------