treeCircle.qsrc 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. # treeCircle
  2. ! The Magical Teleport Tree Circle
  3. !
  4. ! ARGS[0] is your entrance point as those listed below. If the user doesn''t have the magical ability,
  5. ! they will only be allowed to leave back from their entry point.
  6. ! Locations
  7. $tpLocations[0] = 'CentralPark'
  8. $tpLocations[1] = 'PavlovskPark'
  9. $tpLocations[2] = 'GadForest'
  10. $tpLocations[3] = 'PushkinPark'
  11. $tpLocations[4] = 'Village'
  12. ! Build Info Arrays for Locations
  13. ! treeCircName = The Pretty Name of the Location
  14. ! treeCircLoc = The Location to send the user to when leaving Circle
  15. ! treeCircArg = An argument to get the user to the right spot in the location.
  16. !Central Park Location
  17. $treeCircName['CentralPark'] = 'Central Park'
  18. $treeCircLoc['CentralPark'] = 'city_park'
  19. $treeCircArg['CentralPark'] = 'start'
  20. !Pavlovsk Park Location
  21. $treeCircName['PavlovskPark'] = 'Pavlovsk Park'
  22. $treeCircLoc['PavlovskPark'] = 'pav_parkev'
  23. $treeCircArg['PavlovskPark'] = 'go_for_walk2'
  24. !Gadukino Forest Location
  25. $treeCircName['GadForest'] = 'Gadukino Forest'
  26. $treeCircLoc['GadForest'] = 'gadforest'
  27. $treeCircArg['GadForest'] = 'forest_edge'
  28. !Pushkin Park Location
  29. $treeCircName['PushkinPark'] = 'Pushkin Park'
  30. $treeCircLoc['PushkinPark'] = 'lug'
  31. $treeCircArg['PushkinPark'] = 'prut2'
  32. !Communal Village Spring Location
  33. $treeCircName['Village'] = 'Communal Village Spring'
  34. $treeCircLoc['Village'] = 'etoexhib'
  35. $treeCircArg['Village'] = 'pos6'
  36. $EntryPoint = $ARGS[0]
  37. killvar '$tpRand'
  38. *clr & cla
  39. '<center><h2>Mysterious Circle of Trees</h2></center>'
  40. '<center><img <<$set_imgh>> src="images/locations/shared/park/tree_circle.jpg"></center>'
  41. 'The small clearing in the center of the tree circle is two body lengths wide. The ground is covered with a soft, spongy moss. Everything is surprisingly visible considering you can barely see the sky through the overhead cover of leaves and branches. As you look to the outside of the circle, everything seems to be vague and indistinct. This makes it hard to comprehend what lies outside the ring.'
  42. *nl
  43. ! Determine if this user can teleport at all.
  44. canTeleport = 0
  45. if spellKnown['teleport'] = 1:
  46. if tpKnown[$EntryPoint] = 0:
  47. 'You take the fairy''s advice and get to know this circle.'
  48. minut += 15
  49. ! Learn the current entry point
  50. tpKnown[$EntryPoint] = 1
  51. end
  52. if pcs_mana > spellMana['teleport']:
  53. canTeleport = 1
  54. else
  55. *nl
  56. 'You feel too tired to pull off a shift right now.'
  57. end
  58. else
  59. 'You can feel something strange and powerful in this place, but you can''t quite put your finger on it. It is intriguing though, so you take your time and look the place over to try to understand it.'
  60. minut += 15
  61. ! Learn the current entry point
  62. tpKnown[$EntryPoint] = 1
  63. end
  64. gs 'treeCircActs', $EntryPoint
  65. ! Setup Actions for locations when applicable
  66. i = 0
  67. :LocLoop
  68. if i < ARRSIZE('$tpLocations'):
  69. if $EntryPoint ! $tpLocations[i]:
  70. gs 'treeCircActs', $tpLocations[i]
  71. end
  72. i += 1
  73. jump 'LocLoop'
  74. end
  75. killvar 'i'
  76. if pcs_inhib >= 30 and pcs_horny > 60:
  77. act 'Masturbate to clear your head':
  78. minut += 5
  79. *clr & cla
  80. '<center><video autoplay loop src="images/locations/shared/park/tree_masturb.mp4"></center>'
  81. *nl
  82. 'It fells like it takes an age to masturbate out in the cold of the tree circle but the magical wards here keep you safe even when you would otherwise being putting on such a lewd show.'
  83. 'About 5 minutes later your climax hits and you feel instantly connected the trees seeing glimpses of hundreds of years of history in this place.'
  84. 'Just as suddenly you snap back to reality.'
  85. $orgasm_or = 'yes'
  86. gs 'arousal', 'clit_finger', 5, 'masturbate'
  87. gs 'arousal', 'end'
  88. gs 'stat'
  89. cla
  90. act 'Head cleared': gt 'treeCircle', $EntryPoint
  91. end
  92. end
  93. --- treeCircle ---------------------------------