|
@@ -4,6 +4,13 @@
|
|
|
! 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
|
|
@@ -37,7 +44,7 @@ $EntryPoint = $ARGS[0]
|
|
|
'<center><img <<$set_imgh>> src="images/locations/shared/park/tree_circle.jpg"></center>'
|
|
|
|
|
|
'The small clearing in the center of the tree circle is two body lengths wide. The ground is covered with a soft, sponging moss. Everything is surprisingly visible considering you cna 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
|
|
@@ -47,7 +54,7 @@ if spellKnown['teleport'] = 1:
|
|
|
if pcs_manna > spellMana['teleport']:
|
|
|
canTeleport = 1
|
|
|
else:
|
|
|
- ''
|
|
|
+ *nl
|
|
|
'You feel too tired to pull off a shift right now.'
|
|
|
end
|
|
|
else:
|
|
@@ -59,19 +66,24 @@ end
|
|
|
tpKnown[$EntryPoint] = 1
|
|
|
|
|
|
! Setup Actions for locations when applicable
|
|
|
-gs 'treeCircActs', 'CentralPark'
|
|
|
-gs 'treeCircActs', 'PavlovskPark'
|
|
|
-gs 'treeCircActs', 'GadForest'
|
|
|
-gs 'treeCircActs', 'PushkinPark'
|
|
|
-gs 'treeCircActs', 'Village'
|
|
|
+i = 0
|
|
|
+:LocLoop
|
|
|
+if i < ARRSIZE('$tpLocations'):
|
|
|
+ $tpLocations[i]
|
|
|
+ gs 'treeCircActs', $tpLocations[i]
|
|
|
+ i += 1
|
|
|
+ jump 'LocLoop'
|
|
|
+end
|
|
|
+killvar 'i'
|
|
|
|
|
|
act 'Masturbate to clear your head.':
|
|
|
- ''
|
|
|
+ *nl
|
|
|
'<center><video autoplay loop src="images/locations/shared/park/tree_masturb.mp4"></center>'
|
|
|
- ''
|
|
|
+ *nl
|
|
|
'That''s better!'
|
|
|
- gs 'arousal', 'masturbate', -100
|
|
|
- minut += 15
|
|
|
+ orgasm_or = 'yes'
|
|
|
+ gs 'arousal', 'masturbate', 15
|
|
|
+ gs 'arousal', 'end'
|
|
|
gs 'stat'
|
|
|
end
|
|
|
|