divan 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. # divan
  2. ! WD: Reading book code cant use argument
  3. if $ARGS[0] = 'start' or $ARGS[0] = '':
  4. $divmastr = {
  5. cls
  6. minut += 15
  7. if pcs_sweat < 25 : pcs_sweat += 5
  8. pcs_horny += rand(1, 5)
  9. if divanmastr = 0:
  10. divanmastr = 1
  11. stat['mast'] += 1
  12. if pcs_exhibition < 30:exhibition_exp += rand(1,3)
  13. end
  14. gs 'stat'
  15. '<center><img src="images/shared/sex/mast/divmas.jpg"></center>'
  16. 'You lie down on the sofa and began to fondle your chest with one hand while you slide the other hand down your stomach and across your mound.'
  17. 'With your middle finger you start rubbing and stroking your clit, which responds to the touch by bringing a sensual warmth to your entire body.'
  18. if pcs_horny >= 100:orgasm += 1 & pcs_horny = 0 & 'Suddenly a sumptuous jolt hits your body and you delight in a powerful orgasmn.'
  19. act 'Get off the couch':divanmastr = 0 & gt 'divan', 'fin'
  20. if pcs_horny >= 75:act 'Proceed':dynamic $divmastr
  21. }
  22. cla
  23. clr
  24. gs 'stat'
  25. '<center><img src="images/shared/home/divan.jpg"></center>'
  26. 'You lie down on the sofa.'
  27. act 'Chill out':
  28. cla
  29. waiting = input ("For how many minutes do you chill out? (No more than 120 minutes)")
  30. if waiting <= 0 or waiting > 120:minut += 15
  31. if waiting > 0 and waiting <= 120:minut += waiting
  32. act 'Get off the couch':gt 'divan', 'fin'
  33. end
  34. if TV > 0 and $loc ! 'dachain':
  35. act 'Watch TV':
  36. cla
  37. gt 'TV', 'start'
  38. end
  39. end
  40. gs 'events', 'read'
  41. if pcs_horny >= 75:
  42. act 'Masturbate (0:15)':dynamic $divmastr
  43. end
  44. act 'Get off the couch':
  45. cla
  46. gt 'divan', 'fin'
  47. end
  48. end
  49. if $ARGS[0] = 'fin':
  50. cla
  51. gt $locM, $metkaM
  52. !!if housr = 1 and housrA = 1:
  53. !! housrA = 0
  54. !! gt 'sitr'
  55. !!end
  56. end
  57. --- divan ---------------------------------