Browse Source

New metro events and suburb stop

KevinSmarts 7 years ago
parent
commit
ff146f5dae
4 changed files with 536 additions and 29 deletions
  1. 1 0
      glife-notepad++
  2. 1 0
      glife.qproj
  3. 21 29
      locations/metro
  4. 513 0
      locations/metro_events

+ 1 - 0
glife-notepad++

@@ -430,6 +430,7 @@
             <File name="locations\MenuLoc" />
             <File name="locations\MenuMainLoc" />
             <File name="locations\metro" />
+            <File name="locations\metro_events" />
             <File name="locations\mey_tamara_events" />
             <File name="locations\mey_vika_events" />
             <File name="locations\mey_vika_strings" />

+ 1 - 0
glife.qproj

@@ -148,6 +148,7 @@
       <Location name="train"/>
       <Location name="train_incidental"/>
       <Location name="metro"/>
+      <Location name="metro_events"/>
       <Location name="events"/>
       <Location name="street_event"/>
     </Folder>

+ 21 - 29
locations/metro

@@ -20,7 +20,6 @@ if $ARGS[0] = 'start':
 	!!elseif $loc = 'island': !!for now calling it island, will have to check what we name the file.
 		!!'<center><b><font color="maroon">Vasilievsky Island</font></b></center>'
 		!!'<center><img src="images/locations/city/shared/metro/platisland.jpg"></center>'
-!!should be able to delete below here since now all the locations have their own image.
 	end
 
 	'Subway fare costs 16 <b>₽</b>.'
@@ -47,6 +46,7 @@ if $ARGS[0] = 'start':
 			act 'Go to the <b>Residential Area</b> (16 <b>₽</b>)':
 				$loc = 'street'
 				$metka = ''
+				money -= 16
 				gt 'metro', 'vagon'
 			end
 		end
@@ -55,6 +55,7 @@ if $ARGS[0] = 'start':
 			act 'Go to the <b>City Center</b> (16 <b>₽</b>)':
 				$loc = 'down'
 				$metka = ''
+				money -= 16
 				gt 'metro', 'vagon'
 			end
 		end
@@ -63,6 +64,7 @@ if $ARGS[0] = 'start':
 			act 'Go to the <b>City Industrial Area</b> (16 <b>₽</b>)':
 				$loc = 'Nord'
 				$metka = ''
+				money -= 16
 				gt 'metro', 'vagon'
 			end
 		end
@@ -71,6 +73,7 @@ if $ARGS[0] = 'start':
 			act 'Go to the <b>City Suburbs</b> (16 <b>₽</b>)':
 				$loc = 'psiklin'
 				$metka = 'start'
+				money -= 16
 				gt 'metro', 'vagon'
 			end
 		end
@@ -79,13 +82,14 @@ if $ARGS[0] = 'start':
 !!			act 'Go to the <b>Vasilievsky Island</b> (16 <b>₽</b>)':
 !!				$loc = 'island'
 !!				$metka = ''
+!!				money -= 16
 !!				gt 'metro', 'vagon'
 !!			end
 !!		end
 	end
 
-	act 'Get off the Metro':
-		minut += 15
+	act 'Leave the Metro station':
+		minut += 5
 		gt $loc, $metka
 	end
 	
@@ -101,11 +105,9 @@ if $ARGS[0] = 'start':
 end
 
 if $ARGS[0] = 'vagon':
-	cla
-	clr
+	cls
 	CLOSE ALL
 	if sound = 0:PLAY 'sound/metro1.mp3',30
-	money -= 16
 	gs 'stat'
 	if night_mode = 1:
 		fcolor = rgb(255, 255, 255)
@@ -119,18 +121,21 @@ if $ARGS[0] = 'vagon':
 
 	'<center><b><font color="maroon">Metro car</font></b></center>'
 	if hour < 7 or hour >=22:
+		if rand(0, 100) >= 70:gt 'metro_events', 'frot'
 		if rand(0,1) = 0:
 			metro_busy = 0
 		else
 			metro_busy = 1
 		end
 	elseif (hour >= 9 and hour < 16) or (hour >= 18 and hour < 22):
+		if rand(0, 100) >= 80:gt 'metro_events', 'frot'
 		if rand(0,1) = 0:
 			metro_busy = 1
 		else
 			metro_busy = 2
 		end
 	else
+		if rand(0, 100) >= 90:gt 'metro_events', 'frot'
 		if rand(0,1) = 0:
 			metro_busy = 2
 		else
@@ -152,28 +157,6 @@ if $ARGS[0] = 'vagon':
 		'The car is packed with people, most of them are forced to stand, as there is not enough seats. It is so tightly packed that people are crammed tight up against each other either in the seats or standing up. You manage to squeeze yourself in among the people, you can feel other bodies pressed up tightly against yours, it is very uncomfortable and hot.'
 	end
 
-	frotrand = rand(0, 100)
-
-		if frotrand >= 90 - (frot * 10) and frot < 3:
-'FROT 1 <<frot>>'
-			gt 'frot', 'a'
-		elseif frotrand >= 90 - (frot * 10) and frot >= 3 and spdirtyc = 0 and PCloSkirt > 0:
-'FROT 2 <<frot>>'
-			tipfrot = rand(0, 2)
-
-			if tipfrot = 0:gt 'frot', 'b'
-			if tipfrot = 1:gt 'frot', 'd1'
-			if tipfrot = 2:gt 'frot', 'c'
-
-			!!gt 'frot', 'b'
-		elseif frotrand >= 90 - (frot * 10) and frot >= 3 and spdirtyc = 0 and PCloSkirt = 0:
-'FROT 3 <<frot>>'
-			tipfrot = rand(0, 2)
-
-			if tipfrot =0:gt 'frot', 'c'
-			if tipfrot =1:gt 'frot', 'd'
-			if tipfrot =2:gt 'frot', 'e'
-		end
 	end
 
 	if sosedQW >= 1:
@@ -191,7 +174,16 @@ if $ARGS[0] = 'vagon':
 		end
 	end
 
-	act 'Get out of the car':gt 'metro', 'start'
+	act 'Get out of the car':
+		if hour < 7 or hour >=22:
+			if rand(0, 100) >= 70:gt 'metro_events', 'station'
+		elseif (hour >= 9 and hour < 16) or (hour >= 18 and hour < 22):
+			if rand(1,100) >= 80:gt 'metro_events', 'station'
+		else
+			if rand(1,100) >= 90:gt 'metro_events', 'station'
+		end			
+		gt 'metro', 'start'
+	end
 end
 
 if $ARGS[0] = 'shop':

+ 513 - 0
locations/metro_events

@@ -0,0 +1,513 @@
+# metro_events
+
+if $ARGS[0] = 'frot':
+	if rand(1,100) < 80:gt 'metro_events', 'train'
+	if rand(0,1) = 1:
+		gt 'metro_events', 'a'
+	elseif PCloSkirt > 0:
+		gt 'metro_events', 'b'
+	else
+		gt 'metro_events', 'c'
+	end
+end
+
+if $ARGS[0] = 'a':
+	cla
+	*clr
+	svol = rand(30,50)
+	spot = 500*rand(16,24)
+	gs 'stat'
+	'<center><img src="images/locations/city/shared/metro/sex/frot.jpg"></center>'
+	'You feel something solid pressing against your ass, after a few moments, you realize the hardness you feel pressing against you, is someones rock hard dick.'
+	act 'Move away':gt 'frot', 'fin'
+	act 'Disregard':
+		cla
+		*clr
+		pcs_horny += 10
+		sub += 1
+		clr
+		gs 'stat'
+		'<center><img src="images/locations/city/shared/metro/sex/frot1.jpg"></center>'
+		'The guy standing behind you, with no regard for other passengers, grabs your butt with his hand, and rubs his crotch against your ass.'
+		act 'Move away':gt 'frot', 'fin'
+		act 'Disregard':
+			cla
+			*clr
+			pcs_horny += 10
+			sub += 1
+			clr
+			gs 'stat'
+			'<center><img src="images/locations/city/shared/metro/sex/frot2.jpg"></center>'
+			'You feel the rock hard cock; rubbing against your ass, by the way it is moving, you are sure he has taken it out of his pants. His hands continue to cling on to you, and squeezing your buttocks.'
+			act 'Move away':gt 'frot', 'fin'
+			act 'Disregard':
+				cla
+				*clr
+				pcs_horny += 10
+				frot += 1
+				gs 'cum_call', 'pantyrear', 'stranger on the metro', 0, 0, spot, svol
+				sub += 3
+				dynamic '<<$clothingworntype>>H[<<clothingwornnumber>>] -= 1'
+				clr
+				gs 'stat'
+				'<center><img src="images/locations/city/shared/metro/sex/frotc'+ rand(1,2) +'.jpg"></center>'
+				'The man jerks back, and stops molesting you. A few moments later, you can feel something wet seep through you clothes. After a few more seconds, the guy moves away.'
+				act 'Finished':gt 'fort', 'fin2'
+			end
+		end
+	end
+end
+
+!!this one is if Sveta is wearing a dress or skirt
+if $ARGS[0] = 'b':
+	cla
+	*clr
+	svol = rand(30,50)
+	spot = 500*rand(16,24)
+	gs 'stat'
+	'<center><img src="images/locations/city/shared/metro/sex/frotd2.jpg"></center>'
+	'You feel the man standing behind you. The man begins playing with your skirt.'
+	act 'Move away':gt 'frot', 'fin'
+			act 'Disregard':
+			cla
+			*clr
+			pcs_horny += 10
+			sub += 1
+			clr
+			gs 'stat'
+			'<center><img src="images/locations/city/shared/metro/sex/frota1.jpg"></center>'
+			'The man lifts your skirt then begins caressing your buttocks with his strong hands.'
+			act 'Move away':gt 'frot', 'fin'
+			act 'Disregard':
+				cla
+				*clr
+				pcs_horny += 10
+				sub += 1
+				clr
+				gs 'stat'
+				'<center><img src="images/locations/city/shared/metro/sex/frota2.jpg"></center>'
+				'The man pull your panties down to your knees, then lets your skirt fall back into place. He slides his hand between your thighs to caress your pussy. After a couple of minutes of this, he pulls your hand back, and places it on his dick.'
+				act 'Move away':gt 'frot', 'fin'
+				act 'Pull Hand Away':
+					cla
+					*clr
+					pcs_horny += 10
+					clr
+					gs 'stat'
+					pcs_horny += 10
+					frot += 1
+					gs 'cum_call', 'stranger on the metro', 0, 0, spot, svol
+					sub += 3
+					clr
+					gs 'stat'
+					'<center><img src="images/locations/city/shared/metro/sex/frotd1.jpg"></center>'
+					'You pull your hand away from him, and he lets you pull away. a few moments later, you can feel the head of his dick, and hand, bumping against your ass check, as he jerks off. Minutes later you feel spurts of hot cum splashing against your ass cheek. Once he is finished, he pulls your panties back up over your sperm covered ass then pats you on the butt, before moving away, and disappearing in the crowd.'
+					act 'Finished':gt 'fort', 'fin2'
+				end
+		        act 'Stroke his cock':
+			        cla
+					*clr
+					pcs_horny += 10
+					stat['hj'] += 1
+					gs 'cum_call', 'butt', 'stranger on the metro', 0, 0, spot, svol
+					sub += 3
+					frot += 1
+					clr
+					gs 'stat'
+					'<center><img src="images/locations/city/shared/metro/sex/frotd.jpg"></center>'
+					'With your hand on his dick, you grip it firmly, and start stroking it. As he seems to really start enjoying it, he reaches up then places his hands on your shoulders, and tries to push you down to your knees.'
+					act 'Resist and keep jerking him off':
+						'<center><img src="images/locations/city/shared/metro/sex/frotd1.jpg"></center>'
+						'He stand firm, and shake your shoulders a bit, he stops trying to push you down, and just relaxes as you keep jerking him off. When he moans into your ear, you start stroking it more vigorously, a couple of minutes later, you feel spurts of hot cum splashing against your ass cheek. Once he is finished he pulls your panties back up over your sperm covered ass then pats you on the butt, before moving away, and disappearing in the crowd.'
+						act 'Finished':gt 'fort', 'fin2'
+					end
+					act 'Squat':
+						cla
+						*clr
+						pcs_horny += 10
+						clr
+						gs 'stat'
+						'<center><img src="images/locations/city/shared/metro/sex/frote1.jpg"></center>'
+						'You give into his demands, and squat down in front of him, he grabs your head then turns your face to his crotch. Where you find his rock hard cock; waiting for you. He starts rubbing his dick against your face, and lips.'
+						if pcs_dom > 0:act 'Move away':gt 'frot', 'fin'
+						act 'Suck it':
+							cla
+							*clr
+							pcs_horny += 10
+							stat['bj'] += 1
+							guy += 1
+							sub += 2
+							frot += 1
+							clr
+							gs 'stat'
+							'<center><img src="images/locations/city/shared/metro/sex/frote2.jpg"></center>'
+							'You obediently start sucking his hard cock. You are sitting on your haunches; in the middle of a crowded subway car, and sucking a strangers dick.'
+							act 'Continue to suck':
+								cla
+								*clr
+								pcs_horny += 10
+								gs 'cum_call', 'face', 'stranger on the metro', 0, 0, spot, svol
+								facial += 1
+								sub += 3
+								clr
+								gs 'stat'
+								'<center><img src="images/locations/city/shared/metro/sex/frote3.jpg"></center>'
+								'The man pulls his cock out of your mouth, and hot cum splatters across your cheek and chin. Once he has milked the last drop of sperm from his dick; into your face, he tucks his dick into his pants then moves away. Forcing his way through the crowd before disappearing, leaving you alone with his cum; all over your face.'
+								act 'Finished':gt 'fort', 'fin2'
+							end
+						end
+					end
+				end
+			end
+		end
+	end
+end
+
+!!this one is if Sveta is wearing pants
+if $ARGS[0] = 'c':
+	cla
+	*clr
+	svol = rand(30,50)
+	spot = 500*rand(16,24)
+	gs 'stat'
+	'<center><img src="images/locations/city/shared/metro/sex/frotp.jpg"></center>'
+	'The man standing behind you; shoves his hand down the back of your pants.'
+	act 'Move away':gt 'frot', 'fin'
+	act 'Disregard':
+		cla
+		*clr
+		pcs_horny += 10
+		sub += 1
+		clr
+		gs 'stat'
+		'<center><img src="images/locations/city/shared/metro/sex/frotp.jpg"></center>'
+		'You enjoy the nice sensation of the stranger caressing your ass; under your pants, with his other hand; he reaches around and starts fondling your breasts.'
+		act 'Move away':gt 'frot', 'fin'
+		act 'Disregard':
+			cla
+			*clr
+			pcs_horny += 10
+			clrbelo -= 1
+			sub += 1
+			clr
+			gs 'stat'
+			'<center><img src="images/locations/city/shared/metro/sex/frotp2.jpg"></center>'
+			'After a few moments of the dual attention, your ass, and boobs feel, he pulls his hand out of your pants then uses both hands to massage your breasts.'
+			act 'Move away':gt 'frot', 'fin'
+			act 'Enjoy':
+				cla
+				*clr
+				pcs_horny += 10
+				sub += 1
+				clr
+				gs 'stat'
+				'<center><img src="images/locations/city/shared/metro/sex/frotd.jpg"></center>'
+				'Once he hears you moan, he pulls his hands away from your breasts, he slides them down the front of your body; to the waist of your pants. He unbuttons your pants then pulls them; along with your panties, down to your knees, leaving you; exposed from the waist down, in a crowded subway car, he takes your hand then places it on his rock hard cock.'
+				act 'Move away':gt 'frot', 'fin'
+				act 'Pull Hand Away':
+					cla
+					*clr
+					pcs_horny += 10
+					clr
+					gs 'stat'
+					pcs_horny += 10
+					frot += 1
+					gs 'cum_call', 'stranger on the metro', 0, 0, spot, svol
+					sub += 3
+					clr
+					gs 'stat'
+					'<center><img src="images/locations/city/shared/metro/sex/frotd1.jpg"></center>'
+					'You pull your hand away from him, and he lets you pull away. a few moments later, you can feel the head of his dick, and hand bumping against your ass check, as he jerks off. Minutes later, you feel spurts of hot cum splashing against your ass cheek. Once he is finished, he pulls your pants, and panties back up over your sperm covered ass then pats you on the butt, before moving away, and disappearing in the crowd.'
+					act 'Finished':gt 'fort', 'fin2'
+				end
+		        act 'Stroke his cock':
+			        cla
+					*clr
+					pcs_horny += 10
+					stat['hj'] += 1
+					gs 'cum_call', 'butt', 'stranger on the metro', 0, 0, spot, svol
+					sub += 3
+					frot += 1
+					clr
+					gs 'stat'
+					'<center><img src="images/locations/city/shared/metro/sex/frotd.jpg"></center>'
+					'With your hand on his dick, you grip it firmly then begin stroking it. As he seems to really start enjoying it, he reaches up then places his hands on your shoulder, and tries to push you down to your knees.'
+					act 'Resist and keep jerking him off':
+						'<center><img src="images/locations/city/shared/metro/sex/frotd1.jpg"></center>'
+						'You stand firm, and shake your shoulders a bit, he stops trying to push you down, and just relaxes, as you keep jerking him off. As he moans into your ear, you start stroking it more vigorously, a couple of minutes later, you feel spurts of hot cum splashing against your ass cheek. Once he is finished, he pulls your pants, and panties back up over your sperm covered ass then pats you on the butt, before moving away, and disappearing in the crowd.'
+						act 'Finished':gt 'fort', 'fin2'
+					end
+					act 'Squat':
+						cla
+						*clr
+						pcs_horny += 10
+						clr
+						gs 'stat'
+						'<center><img src="images/locations/city/shared/metro/sex/frote1.jpg"></center>'
+						'You give into his demands, and squat down in front of him, he grabs your head then turns your face to his crotch. Where you find his rock hard cock; waiting for you. He starts rubbing his dick against your face and lips.'
+						if pcs_dom > 0:act 'Move away':gt 'frot', 'fin'
+						act 'Suck it':
+							cla
+							*clr
+							pcs_horny += 10
+							stat['bj'] += 1
+							guy += 1
+							sub += 2
+							frot += 1
+							clr
+							gs 'stat'
+							'<center><img src="images/locations/city/shared/metro/sex/frote2.jpg"></center>'
+							'You obediently start sucking his hard cock. You are sitting on your haunches; in the middle of a crowded subway car, sucking a strangers dick.'
+							act 'Continue to suck':
+								cla
+								*clr
+								pcs_horny += 10
+								gs 'cum_call', 'face', 'stranger on the metro', 0, 0, spot, svol
+								facial += 1
+								sub += 3
+								clr
+								gs 'stat'
+								'<center><img src="images/locations/city/shared/metro/sex/frote3.jpg"></center>'
+								'The man pulls his cock out of your mouth then hot cum splatters across your cheek and chin. Once he has milked the last drop of sperm from his dick; into your face, he tucks his dick into his pants then moves away. Forcing his way through the crowd, he disappears, leaving you alone with his cum all over your face.'
+								act 'Finished':gt 'fort', 'fin2'
+							end
+						end
+					end
+				end
+			end
+		end
+	end
+end
+
+if $ARGS[0] = 'fin':
+	cla
+	'You barely manage to pull away from the horny idiot. You force your way through the crowded car, and find a new place to stand, as far away from him, as you can get. After a while, you get to your station.'
+	act 'Get out of the car':gt 'metro', 'start'
+end
+
+if $ARGS[0] = 'fin2':
+	cla
+	'Now that he is gone, and your are covered in his cum, you notice the other passengers staring at you. You should likely clean up before your stop.'
+	act 'Get out of the car':gt 'metro', 'start'
+end
+
+
+if $ARGS[0] = 'station':
+	metrorand = rand(1,13)
+	if metrorand = 1:
+		'<center><img src="images/locations/city/shared/metro/station/aflash.jpg"></center>'
+		'After your ride on the metro, you leave the station, following several people up the stairs, towards the street. The backside of a women''s skirt keeps lifting up; from the draft of air. Each time it lifts up, it shows off her firm tightly ass, which draws the attention of several men and a few women.'
+
+		act 'Leave':minut += 5 & gt $loc, $metka
+	elseif metrorand = 2:
+		'<center><img src="images/locations/city/shared/metro/station/guitar'+ rand(1,3) +'.jpg"></center>'
+		'As you head through the metro station, you notice a man playing a guitar, he has his guitar case open and you can see some money in it already. Several other people have stopped to listen to him play, he isn''t half bad.'
+		act 'Ignore':minut += 5 & gt $loc, $metka
+		act 'Listen':
+			minut += 10
+			mood += 10
+			'You stop and listen to him play several songs, he really is pretty good. You wonder why he is playing in a metro station, perhaps the old adage about starving artist applies to musicians as well.'
+
+			act 'Leave':minut += 5 & gt $loc, $metka
+			if money > 50:
+				act 'Give him money':
+					money -= 50
+					mood += 10
+					'You reach into your purse and pull out some money, you drop it into his case. He looks up at you and smiles and nods his head, but keeps playing. With your good deed done you leave the station and go on your way.'
+
+					act 'Leave':minut += 5 & gt $loc, $metka
+				end
+			end
+		end
+	elseif metrorand = 3:
+		'<center><img src="images/locations/city/shared/metro/station/violin'+ rand(1,3) +'.jpg"></center>'
+		'As you head through the metro station, you notice a young woman, she has her violin case open and you can see some money in it already. Several other people have stopped to listen to her play, she isn''t half bad.'
+		act 'Ignore': minut += 5 & gt $loc, $metka
+		act 'Listen':
+			minut += 10
+			mood += 10
+			'You stop and listen to her play several songs, she really is pretty good. You wonder why she is playing in a metro station, perhaps the old adage about starving artist applies to musicians as well.'
+			act 'Leave': minut += 5 & gt $loc, $metka
+			if money > 50:
+				act 'Give her money':
+					money -= 50
+					mood += 10
+					'You reach into your purse and pull out some money, you drop it into her case. She looks up at you and smiles and nods her head, but keeps playing. With your good deed done you leave the station and go on your way.'
+
+					act 'Leave':minut += 5 & gt $loc, $metka
+				end
+			end
+		end
+	elseif metrorand = 4:
+		'<center><img src="images/locations/city/shared/metro/station/flashd1.gif"></center>'
+		'As you leave the metro car, you, and nearly everyone else, notice two African men walking. One of them has a huge bulge in the front of his pants. When he catches you looking, he stops, and pulls his pants down. As he does a massive black dicks springs free, which causes a lot more people to look.'
+
+		act 'Hurry away':minut += 5 & gt $loc, $metka
+		!!act 'Smile':
+			!!'text'
+		!!act 'Lick your lips':
+			!!'text'
+	elseif metrorand = 5:
+		'<center><img src="images/locations/city/shared/metro/station/flashus'+ rand(1,5) +'.jpg"></center>'
+		'As you head through the metro station, you notice a pretty young woman, she keeps lifting her skirt; flashing her pussy at various strangers. As you get closer she smiles at you then flashes you her pussy.'
+
+		act 'Hurry away':minut += 5 & gt $loc, $metka
+		!!act 'Smile':
+			!!'text'
+		!!act 'Return the favor':
+			!!'text'
+	elseif metrorand = 6:
+		'<center><img src="images/locations/city/shared/metro/station/nakedg1.jpg"></center>'
+		'As you head through the metro station, you see a naked woman, only wearing a pair of boots boarding another metro train. She is actually walking around casually, like there is nothing; even remotely, out of the ordinary. She is garnering a lot of attention from everyone around her, but she seems completely oblivious to it. Within moments, she boards the other train, and is gone.'
+
+		act 'Leave': minut += 5 & gt $loc, $metka
+	elseif metrorand = 7:
+		'<center><img src="images/locations/city/shared/metro/station/nakedg2.jpg"></center>'
+		'As you head through the metro station, you see a naked woman, she is huddle down on her knees; against one of the pillars. She is using her arms to cover up her body, as best she can; clearly ashamed.'
+
+		act 'Ignore Her':minut += 5 & gt $loc, $metka
+		!!act 'Help Her':
+			!!'text'
+	elseif metrorand = 8:
+		'<center><img src="images/locations/city/shared/metro/station/nakedm1.jpg"></center>'
+		'As you head through the metro station, you see a naked man, the only thing he is wearing is a huge grin. He seems rather proud at the attention he is getting, though you have no idea why. After a quick check he is nothing special in the manhood department. He continues on his way, just as you do.'
+
+		act 'Leave': minut += 5 & gt $loc, $metka
+	elseif metrorand = 9:
+		'<center><img src="images/locations/city/shared/metro/station/nakedp1.jpg"></center>'
+		'As you head through the metro station, you see two couples; two men, and women. All four of them are naked, only wearing shoes, and carrying bags with them. They act normal, as if walking through the metro completely naked is a perfectly normal thing to do. They garner a lot of attention from the other people in the station, but they just head towards one of the metro trains.'
+
+		act 'Leave': minut += 5 & gt $loc, $metka
+	elseif metrorand = 10:
+		'<center><img src="images/locations/city/shared/metro/station/seethru1.jpg"></center>'
+		'As you leave the metro station, you find yourself walking up the stairs behind a woman wearing a sheer dress. It is completely see through, it is obvious that she is not wearing any underwear at all. Which gives you a very nice view of her ass, once you reach the street, she heads off down the sidewalk.'
+
+		act 'Leave': minut += 5 & gt $loc, $metka
+	elseif metrorand = 11:
+		'<center><img src="images/locations/city/shared/metro/station/sex/jerkoff.gif.jpg"></center>'
+		'As you walk past one of the pillars, you see a man with his pants around his knees jerking off, just as you walk past, he starts cumming. He starts hooting his sperm out onto the floor, barely missing a woman that happened by at the wrong moment. Once he stops cumming, he pulls his pants up, and goes about his business.'
+
+		act 'Leave': minut += 5 & gt $loc, $metka
+	elseif metrorand = 12:
+		'<center><img src="images/locations/city/shared/metro/station/sex/les1.jpg"></center>'
+		'As you head through the metro station, you see a woman sitting on one of the benches in the station. Her skirt is pulled up, she has no panties, her legs are pulled up, and spread wide. Leaving plenty of room for the girl down on all fours in front of her to eat her pussy, who''s skirt is also pulled up and not wearing panties, giving everyone walking by a perfect view of her pussy.'
+		'The one sitting fends off anyone trying to join in while her friend eats her out. Many people stop to watch the pair, several people pull out their smart phones, and start recording it.'
+
+		act 'Leave': minut += 5 & gt $loc, $metka
+		act 'Record them':
+			'You pull out your phone as well then start recording them. The one on all fours really is going at it, soon her friend is moaning loudly, and clutching at her hair. Moments later, she gasps loudly, and withers against her friends face, obviously having an orgasm. Once she recovers from her orgasm, she passionately kisses her friend, then the two of them get up then straighten up their clothes, before heading out.'
+			act 'Leave': minut += 5 & gt $loc, $metka
+		end
+	elseif metrorand = 13:
+	!!random images 1-2
+		'<center><img src="images/locations/city/shared/metro/station/sex/fuck'+ rand(1,2) +'.jpg"></center>'
+		'As you head through the metro station, you see a couple leaning against one of the walls, their clothes are pulled away just enough to let them fuck. The woman is standing bent over at the waist while the man is behind her, hammering her for all he is worth. Several people gather around the couple to watch them fuck, many of them pulling out their smart phones to record the couple fucking. A couple of men are trying to join in, but are quickly shooed away.'
+		act 'Leave': minut += 5 & gt $loc, $metka
+		act 'Record them':
+			'You pull out your phone as well then start recording them. He pounds her with out mercy, but by the sounds of her moans, she is loving every moment of it. They fuck for several more minutes until he starts to grunt, and then buries himself; balls deep in her for a moment, as he is obviously cumming. Once he pulls out of her, they both quickly get dressed then move to catch a train.'
+
+			act 'Leave': minut += 5 & gt $loc, $metka
+		end
+	end
+end
+
+if $ARGS[0] = 'train':
+	metrorand = rand(1,18)
+	if metrorand = 1:
+		'<center><img src="images/locations/city/shared/metro/annoyed.jpg"></center>'
+		'As you take a seat on the metro, you hear a huff. You glance up to see a woman giving you a dirty look, like you took her seat, or something. She moves over to sit across from you, and for the rest of the ride, gives you a dirty look. You really have no idea what you did, but what ever it was it pissed her off.'
+
+		act 'Leave': gt 'metro', 'start'
+	elseif metrorand = 2:
+		if PCloskirt = 0: gt 'metro', 'vagon'
+		'<center><img src="images/locations/city/shared/metro/draft.gif"></center>'
+		'You are unable to find a seat that you want to sit in. This train car is badly in need of a cleaning. So instead you find yourself standing for the duration of the ride, There seems to be a draft in the car, every few moments a strong draft rushes through the car, lifting your skirt.'
+
+		act 'Leave': gt 'metro', 'start'
+	elseif metrorand = 3:
+		'<center><img src="images/locations/city/shared/metro/flasha'+ rand(1,2) +'.jpg"></center>'
+		'As you ride the metro, you notice a young woman. She seems to have almost everyones attention, and you soon learn why. She repeatedly lifts her skirt up, flashing her ass to the other passengers in the car. She seems to love the attention that she is getting, as she maintains a very please smile.'
+
+		act 'Leave': gt 'metro', 'start'
+	elseif metrorand = 4:
+		'<center><img src="images/locations/city/shared/metro/flashb'+ rand(1,2) +'.jpg"></center>'
+		'As you ride the metro, you notice a young woman. She seems to have almost everyones attention, and you soon learn why. She repeatedly lifts her shirt up, flashing her boobs to the other passengers in the car. She seems to love the attention she is getting, as she maintains a very please smile.'
+
+		act 'Leave': gt 'metro', 'start'
+	elseif metrorand = 5:
+		'<center><img src="images/locations/city/shared/metro/flashd1.jpg"></center>'
+		'As you ride the metro, you notice a young man. As you are watching, he reaches into his pants then pulls out his dick, and stares at it. Occasionally bouncing it in place as if, playing with it.'
+
+		act 'Leave': gt 'metro', 'start'
+	elseif metrorand = 6:
+		'<center><img src="images/locations/city/shared/metro/flashg'+ rand(1,3) +'.jpg"></center>'
+		'As you ride the metro, you notice a young woman. She seems to have almost everyones attention and you soon learn why. She is repeatedly pulling her clothes away, flashing her naked body to the other passengers in the car. She seems to love the attention she is getting, as she maintains a very please smile.'
+
+		act 'Leave': gt 'metro', 'start'
+	elseif metrorand = 7:
+		if hotcat < 7: gt 'metro', 'vagon'
+		'<center><img src="images/locations/city/shared/metro/flashus'+ rand(1,5) +'.jpg"></center>'
+		'As you ride the metro, you notice a young woman. When she sees you looking at her, she gives you a wicked grin, and winks. She then spreads her legs, showing off her pussy from under her skirt. She sticks out her tongue, and flicks it at you, as if mimicking eating pussy.'
+		act 'Ignore her': gt 'metro', 'start'
+		!!act 'Smile':
+			!!'text'
+	elseif metrorand = 8:
+		'<center><img src="images/locations/city/shared/metro/girlcat.jpg"></center>'
+		'As you ride the metro, you notice a young woman sitting across from you, she is playing on her phone. But that is not what draws your attention to her, it is the large black cat sitting in her lap. The cat seems surprisingly calm, and happy considering the strange people around, and movement of the train. Occasionally she reaches down to pet the cat while playing on her phone. Once the metro comes to a stop, she lifts the cat then carries it in her arms, as she leaves the train.'
+		act 'Leave': gt 'metro', 'start'
+	elseif metrorand = 9:
+		'<center><img src="images/locations/city/shared/metro/kilt.jpg"></center>'
+		'As you ride the metro, you notice a man wearing a kilt. You over hear several other men commenting on him wearing a skirt, which he just ignores. He is likely use to such comments, if he has been in Russia long.'
+
+		act 'Leave': gt 'metro', 'start'
+	elseif metrorand = 10:
+		'<center><img src="images/locations/city/shared/metro/manasleep.jpg"></center>'
+		'As you ride the metro, you notice a young man laying on the floor of the car, in front of one of the doors. He seems to be fast asleep, or maybe he is passed out. Several other people near his age are sitting near him, perhaps they are his friends, and are just taking him home. When your stop arrives everyone just steps over him, as they enter, or exit the metro. You quickly follow suit.'
+
+		act 'Leave': gt 'metro', 'start'
+	elseif metrorand = 11:
+		'<center><img src="images/locations/city/shared/metro/nakedg'+ rand(1,5) +'.jpg"></center>'
+		'As you find a seat, and notice a woman, well she is wearing shoes, but other than that she is naked. She is sitting in one of the seats, as if riding the metro naked was the most normal thing in the world. At the very next stop she gets off, leaving you wondering why she was naked, and where she was going.'
+
+		act 'Leave': gt 'metro', 'start'
+	elseif metrorand = 12:
+		'<center><img src="images/locations/city/shared/metro/nakedm'+ rand(1,2) +'.jpg"></center>'
+		'As you find a seat, you notice a naked man. He acts as if, walking around naked; is the most normal thing in the world to do. At the very next stop he gets off, leaving you wondering why he was naked, and where he was going.'
+
+		act 'Leave': gt 'metro', 'start'
+	elseif metrorand = 13:
+		'<center><img src="images/locations/city/shared/metro/nakedgm1.jpg"></center>'
+		'As you find a seat, you notice several naked men. They are laughing, and talking, and also appear to be a little drunk. They seem to be aware of all the looks that they are getting, but find it more funny, than anything. Often winking at any of the women that look there way. At the very next stop, they get off, leaving you wondering why they was naked, and where they were going.'
+
+		act 'Leave': gt 'metro', 'start'
+	elseif metrorand = 14:
+		'<center><img src="images/locations/city/shared/metro/sex/3some1.jpg"></center>'
+		'As you find a seat, you notice a woman half naked kneeling in one of the seats. A man behind her is fucking her hard, while she sucks the dick of another man in front of her. This goes on for some time until finally both of the men; cum inside of her respectively in each of the holes that they was fucking. Once done, they get dressed, and sit together then start talking among themselves. At your stop, you leave, as they remain on the train.'
+
+		act 'Leave': gt 'metro', 'start'
+	elseif metrorand = 15:
+		'<center><img src="images/locations/city/shared/metro/sex/anal1.gif"></center>'
+		'As you find a seat, you notice a woman naked from the waist down, on all fours in the middle of the car. She does seem to have a collar around her neck with a leash attached. Another woman is squatting in front of her, reaching back to pull her butt checks apart. While a man behind the kneeling woman pounds her ass, the sounds of her cries makes it hard to tell, if she is enjoying the experience or not.'
+		'Once he finishes, the squatting woman reaches down, and grabs the leash then tightly pulls on it, almost choking the other girl. She and the man, talk for a bit, while the leashed girl stays on her knees, still naked from the waist down, but with cum running down her thighs. After their talk the man goes to take a seat, while the woman holding the leash, walks over to another spot to sit. Tugging on the leash to pull the other girl along, after a few more minutes, she leans over and whispers something to the leashed girl, who then gets dressed again, but remains kneeling at the feet, of what can only be, her mistress.'
+
+		act 'Leave': gt 'metro', 'start'
+	elseif metrorand = 16:
+		'<center><img src="images/locations/city/shared/metro/sex/fingering1.gif"></center>'
+		'As you find a seat, you notice a woman with her skirt pulled up, and panties pushes aside being finger banged by a man in a suit. Her cries of ecstasy get louder, and louder, as he keeps it up until they finally reach a crescendo, leaving her legs to buckle. Forcing the man to catch her before she crumples to the floor. She leans against him, as he holds her tight, pulling her clothes back in place. You can hear them laughing at the attention they got, she is blushing, and they quickly exit at the next stop.'
+
+		act 'Leave': gt 'metro', 'start'
+	elseif metrorand = 17:
+		'<center><img src="images/locations/city/shared/metro/sex/fuck'+ rand(1,3) +'.gif"></center>'
+		'As you find a seat, you notice a couple with just enough clothes removed to let them fuck. Which they are doing with some gusto. Many people are watching them, some even pull out smart phones then begin recording it. They switch to several positions during the ride. The man seems to have a lot of stamina, as they are still going at it hard, and heavy when your stop arrives.'
+
+		act 'Leave': gt 'metro', 'start'
+	elseif metrorand = 18:
+		'<center><img src="images/locations/city/shared/metro/sex/les1.jpg"></center>'
+		'As you find a seat, you notice a girl kneeling in her seat; facing the wrong way. Her skirt is pulled up, and her panties are down around her knees. Another girl is squatting behind her eating her pussy. This goes on for several minutes until the first girl finally has a orgasm, once she does she gets dressed, and sits by her friend. They share several french kisses, for the rest of the ride, exiting at the next stop.'
+
+		act 'Leave': gt 'metro', 'start'
+	end
+end
+
+--- metro_events ---------------------------------
+