1
0

divan.tw 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. :: divan
  2. <<set $here = 'divan'>>
  3. <<set $ARGS = $location_var[$here]>>
  4. <!-- ! WD: Reading book code cant use argument-->
  5. <<set $menu_off = 1>>
  6. <<if $location_var[$here][0] == 'start' or !$location_var[$here][0]>>
  7. <<image "shared/home/divan.jpg">>
  8. You lie down on the sofa.
  9. <<actCLA 'wait'>>
  10. <<gs 'wait'>>
  11. <</actCLA>>
  12. <<if getvar("$TV") > 0 and $loc != 'dachain'>>
  13. <<actCLA 'Watch TV'>>
  14. <<gt 'TV' 'start'>>
  15. <</actCLA>>
  16. <</if>>
  17. <<gs 'events' 'read'>>
  18. <<if $pc.horny >= 75>>
  19. <<actCLA 'Masturbate (0:15)'>>
  20. <<divmastr>>
  21. <</actCLA>>
  22. <</if>>
  23. <<actCLA 'Get off the couch'>>
  24. <<gt 'divan' 'fin'>>
  25. <</actCLA>>
  26. <</if>>
  27. <<if $location_var[$here][0] == 'fin'>>
  28. <<gt $location>>
  29. <</if>>
  30. :: divmastr_macro[widget]
  31. <<widget 'divmastr'>>
  32. <<if $pc.pcs_sweat < 25>>
  33. <<run $pc.sweatAdd(5)>>
  34. <</if>>
  35. <<if getvar("$divanmastr") == 0>>
  36. <<set $divanmastr = 1>>
  37. <<if $pc.pcs_inhib < 30>>
  38. <<run $pc.skillExperienceGain('inhibition',rand(1,3))>>
  39. <</if>>
  40. <</if>>
  41. <<image "shared/sex/mast/divmas.jpg">>
  42. 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.
  43. 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.
  44. <<set $orgasm_or = 'yes'>>
  45. <<arouse 'clit_finger' 15 `['masturbate']`>>
  46. <<arousalEnd>>
  47. <<actCLA 'Get off the couch'>>
  48. <<set $divanmastr = 0>> <<gt 'divan' 'fin'>>
  49. <</actCLA>>
  50. <</widget>>