divan 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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. sweat += 1
  8. horny += rand(1, 5)
  9. if divanmastr = 0:divanmastr = 1 & mastr += 1
  10. gs 'stat'
  11. '<center><img src="images/pics/divmas.jpg"></center>'
  12. '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.'
  13. '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.'
  14. if horny >= 100:orgasm += 1 & horny = 0 & 'Suddenly a sumptuous jolt hits your body and you delight in a powerful orgasmn.'
  15. act 'Get off the couch':divanmastr = 0 & gt 'divan', 'fin'
  16. if horny >= 75:act 'Proceed':dynamic $divmastr
  17. }
  18. cla
  19. clr
  20. gs 'stat'
  21. '<center><img src="images/pics/divan.jpg"></center>'
  22. 'You lie down on the sofa.'
  23. act 'Chill out':
  24. cla
  25. waiting = input ("For how many minutes do you chill out? (No more than 120 minutes)")
  26. if waiting <= 0 or waiting > 120:minut += 15
  27. if waiting > 0 and waiting <= 120:minut += waiting
  28. act 'Get off the couch':gt 'divan', 'fin'
  29. end
  30. if TV > 0:
  31. act 'Watch TV':
  32. cla
  33. gt 'TV', 'start'
  34. end
  35. end
  36. ! WD: Uninitialised ~ 'book'
  37. !{
  38. if book > 0:
  39. act 'Read a book (0:30)':
  40. cla
  41. *clr
  42. minut += 30
  43. horny += 5
  44. '<center><img src="images/pics/book.jpg"></center>'
  45. 'You are reading a book.'
  46. act 'Put the book':gt 'divan', 'start'
  47. end
  48. end
  49. }
  50. ! WD: Use read book code
  51. if f_book > 0 or fantasybook > 0 or w_book > 0 or womanbook > 0:
  52. $loc = 'divan'
  53. dynamic $d_read_book
  54. end
  55. if horny >= 75:
  56. act 'Masturbate (0:15)':dynamic $divmastr
  57. end
  58. act 'Get off the couch':
  59. cla
  60. gt 'divan', 'fin'
  61. end
  62. end
  63. if $ARGS[0] = 'fin':
  64. cla
  65. gt $locM, $metkaM
  66. !'
  67. if housr = 1 and housrA = 1:
  68. housrA = 0
  69. gt 'sitr'
  70. end
  71. '!
  72. end
  73. --- divan ---------------------------------