# treeCircle ! The Magical Teleport Tree Circle ! ! ARGS[0] is your entrance point as those listed below. If the user doesn''t have the magical ability, ! they will only be allowed to leave back from their entry point. ! Locations $tpLocations[0] = 'CentralPark' $tpLocations[1] = 'PavlovskPark' $tpLocations[2] = 'GadForest' $tpLocations[3] = 'PushkinPark' $tpLocations[4] = 'Village' ! Build Info Arrays for Locations ! treeCircName = The Pretty Name of the Location ! treeCircLoc = The Location to send the user to when leaving Circle ! treeCircArg = An argument to get the user to the right spot in the location. !Central Park Location $treeCircName['CentralPark'] = 'Central Park' $treeCircLoc['CentralPark'] = 'city_park' $treeCircArg['CentralPark'] = 'start' !Pavlovsk Park Location $treeCircName['PavlovskPark'] = 'Pavlovsk Park' $treeCircLoc['PavlovskPark'] = 'pav_parkev' $treeCircArg['PavlovskPark'] = 'go_for_walk2' !Gadukino Forest Location $treeCircName['GadForest'] = 'Gadukino Forest' $treeCircLoc['GadForest'] = 'gadforest' $treeCircArg['GadForest'] = 'forest_edge' !Pushkin Park Location $treeCircName['PushkinPark'] = 'Pushkin Park' $treeCircLoc['PushkinPark'] = 'lug' $treeCircArg['PushkinPark'] = 'prut2' !Communal Village Spring Location $treeCircName['Village'] = 'Communal Village Spring' $treeCircLoc['Village'] = 'etoexhib' $treeCircArg['Village'] = 'pos6' $EntryPoint = $ARGS[0] killvar '$tpRand' *clr & cla '

Mysterious Circle of Trees

' '
> src="images/locations/shared/park/tree_circle.jpg">
' '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.' *nl ! Determine if this user can teleport at all. canTeleport = 0 if spellKnown['teleport'] = 1: if tpKnown[$EntryPoint] = 0: 'You take the fairy''s advice and get to know this circle.' minut += 15 ! Learn the current entry point tpKnown[$EntryPoint] = 1 end if pcs_mana > spellMana['teleport']: canTeleport = 1 else *nl 'You feel too tired to pull off a shift right now.' end else '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.' minut += 15 ! Learn the current entry point tpKnown[$EntryPoint] = 1 end gs 'treeCircActs', $EntryPoint ! Setup Actions for locations when applicable i = 0 :LocLoop if i < ARRSIZE('$tpLocations'): if $EntryPoint ! $tpLocations[i]: gs 'treeCircActs', $tpLocations[i] end i += 1 jump 'LocLoop' end killvar 'i' if pcs_inhib >= 30 and pcs_horny > 60: act 'Masturbate to clear your head': minut += 5 *clr & cla '
' *nl '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.' '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.' 'Just as suddenly you snap back to reality.' $orgasm_or = 'yes' gs 'arousal', 'clit_finger', 5, 'masturbate' gs 'arousal', 'end' gs 'stat' cla act 'Head cleared': gt 'treeCircle', $EntryPoint end end --- treeCircle ---------------------------------