Explorar el Código

[added] HF's content for the therapist.

anjuna krokus hace 7 meses
padre
commit
cddd1d9e23
Se han modificado 2 ficheros con 493 adiciones y 25 borrados
  1. 4 6
      locations/pav_hotel.qsrc
  2. 489 19
      locations/therapist_hotel.qsrc

+ 4 - 6
locations/pav_hotel.qsrc

@@ -135,26 +135,24 @@ else
 	end
 end
 
-if therapist_key = 2 and week = 6 and hour > 19 and pcs_traits['commando_lvl'] = 3 and therapist_key[1] ! daystart:
+if therapist_key = 2 and week = 6 and hour > 19 and pcs_traits['commando_lvl'] = 3 and therapist_key[1] ! daystart and therapistQW['escaped'] = 0:
 	therapist_key[1] = daystart
 	gs 'willpower', 'misc', 'resist', 'medium'
 
 	act 'Visit the therapist': gt 'therapist_hotel', 'start'
 
-	if will_cost <= pcs_willpwr:
+	if pcs_willpwr < will_cost:
+		act 'Don''t visit the therapist (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
+	else
 		act 'Don''t visit the therapist':
 			gs 'willpower', 'pay', 'medium'
 			gt 'pav_hotel'
 		end
-	else
-		act 'Don''t visit the therapist (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
 	end
 	exit
 end
 
 
-
-
 if hour >= 12 and hour < 20 and proshotelopen = 1: '<a href="exec:gt ''pav_hotel'',''Pavlin''">Pavlin</a> is sitting in the lobby looking around for fresh prey.'
 
 if hour >= 12 and hour <= 13 and GermanQW > 0: 'Next to the reception desk, you see a door labeled <a href="exec:minut += 1 & gt ''pav_hotelAdmin''">"Administration"</a>. That must be where the hotel manager works. The door is currently open.'

+ 489 - 19
locations/therapist_hotel.qsrc

@@ -8,7 +8,7 @@ if $ARGS[0] = 'start':
 	$menu_arg = 'start'
 	menu_off = 0
 	$location_type = 'private_indoors'
-	minut+= 5
+	minut += 5
 
 	gs 'stat'
 	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/resident/therapist/room.jpg"></center>'
@@ -16,9 +16,9 @@ if $ARGS[0] = 'start':
 
 	'Suddenly the water in the shower stopped!'
 
-	act 'Wait': gt 'therapist_hotel', 'event'
+	act 'Wait': gt 'therapist_hotel', 'event_switch'
 	gs 'willpower', 'misc', 'resist', 'medium'
-	if will_cost <= pcs_willpwr:
+	if pcs_willpwr >= will_cost:
 		act 'RUN!!!':
 			gs 'willpower', 'pay', 'medium'
 			gt 'pav_hotel'
@@ -26,23 +26,43 @@ if $ARGS[0] = 'start':
 	end
 end
 
-if $ARGS[0] = 'event':
-	*clr & cla
+if $ARGS[0] = 'event_switch':
+	if therapistQW['hotel_visits'] = 0:
+		gt 'therapist_hotel', 'event1'
+	elseif therapistQW['hotel_visits'] = 1:
+		gt 'therapist_hotel', 'event2'
+	elseif therapistQW['hotel_visits'] = 2:
+		gt 'therapist_hotel', 'event3'
+	else
+		if therapistQW['hotel_submit'] >= 4:
+			gt 'therapist_hotel', 'event5_submit'
+		else
+			gt 'therapist_hotel', 'event4'
+		end
+	end
+end
+
+
+if $ARGS[0] = 'event1':
 	menu_off = 1
-	minut+= 2
+	minut += 2
 	gs 'stat'
+
 	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/resident/therapist/arrive.jpg"></center>'
 	'When the man walks out of the shower in a heavy bathrobe, your mind becomes blank and you enter the black room.'
 	'The Therapist walks over to you to check your panties as he makes sure you are not wearing any. Once he realizes this, he moves you over to the bed. "Welcome to my home," he says. "I''ve lived here since I divorced my wife, just waiting for the divorce to become official." He sits down in front of you. "So, when that happens, you will be my wife, but we need to make you want that, so this is the next part of your training." He continues.'
+
 	act 'Continue':
-		minut+= 2
 		*clr & cla
+		minut += 2
 		gs 'stat'
+
 		'<center><img <<$set_imgh>> src="images/locations/pavlovsk/hotel/hotel.room.better1.jpg"></center>'
 		'"Every Saturday, you will show up here and we will do some more training. You can still meet me at the clinic but here?" He smiles and moves in to kiss you. "You will be trained to be my wife, in all facets. Now, please take a shower and come out naked when you are done.'
+
 		act 'Continue':
-			minut+= 2
 			*clr & cla
+			minut += 2
 			$lastwornclothingtype['therapist'] = $clothingworntype
 			lastwornclothingnumber['therapist'] = clothingwornnumber
 			$lastwornpantytype['therapist'] = $pantyworntype
@@ -51,20 +71,26 @@ if $ARGS[0] = 'event':
 			lastwornbranumber['therapist'] = brawornnumber
 			dynamic $showerdin
 			gs 'stat'
+
 			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/resident/therapist/naked.jpg"></center>'
 			'After you shower, you walk out of the bathroom and stand naked before him. "Good, a clean wife makes a happy husband" he says and walks up to you and kisses you while fondling your chest. "Now, your first order, while you are in this room you will respond to Wife, not Cunt is that understood Wife?"'
-			act 'Yes, Master': gt 'therapist_hotel', 'post_shower'
+
+			act 'Yes, Master': gt 'therapist_hotel', 'event1_post_shower'
 
 			gs 'willpower', 'misc', 'resist', 'medium'
-			if will_cost <= pcs_willpwr:
-				act 'No, Master':
+			if pcs_willpwr < will_cost:
+				act 'No, Master (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
+			else
+				act 'No, Master (<font><<will_cost>> Willpower</font>)':
 					*clr & cla
-					minut+= 5
+					minut += 5
 					gs 'willpower', 'pay', 'medium'
 					gs 'stat'
+
 					'<center><img <<$set_imgh>> src="images/locations/pavlovsk/clinic/therapist/pavlov.jpg"></center>'
 					'"Then get out of here until you do"'
 					'He guides you out of the door and closes it behind you.'
+
 					act 'Continue': gt 'pav_hotel'
 				end
 			end
@@ -72,52 +98,496 @@ if $ARGS[0] = 'event':
 	end
 end
 
-if $ARGS[0] = 'post_shower':
+if $ARGS[0] = 'event1_post_shower':
 	minut+= 2
-	*clr & cla
 	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/resident/therapist/bj.jpg"></center>'
 	'"Let''s start off slow. As your husband, you have to keep me calm," he points to under the desk. When he says "get under there", you move under the desk and look at him before he sits in his chair and imprisons you. You just sit there for what feels like a couple of hours before he opens his robe and moves your face to his cock. Knowing what he wants you start to suck on his cock. You only hear, "Don''t stop, even if i cum, you keep my cock in your mouth" and he goes back to whatever he''s doing.'
+
 	if hypnoHardToCum = 1: hypnoHardToCum = 2
 	gs 'arousal', 'bj', 60, 'sub'
 	gs 'stat'
 	act 'Continue':
-		minut+= 2
 		*clr & cla
+		minut += 2
 		gs 'stat'
+
 		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/resident/therapist/sex.jpg"></center>'
 		'You spend most of the day here, getting cum in your mouth and throat while he works. Once he pulls his cock from your mouth, and then pulls you from under the desk, you can see its already night time. "Get on the bed, on your back, I want to breed you as a reward tonight before we sleep"'
+
 		gs 'arousal', 'bj', 120, 'sub'
 		gs 'stat'
 		act 'Thank you, Master':
-			minut+= 2
 			*clr & cla
+			minut += 2
 			gs 'stat'
+
 			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/resident/therapist/sex2.jpg"></center>'
 			'You stand up and move to the bed and looking up at your therapist as he climbs on top of you and pushes himself inside you. He has his way with your body, fondling your chest, sucking your nipples, kissing and sucking on your neck. He enjoys your body until he cums deep inside you. Unlike back in the clinic, he stays inside you as he pulls a blanket over you and himself before falling asleep.'
+
 			gs 'arousal', 'vaginal', 20, 'sub'
 			gs 'cum_call', 0, 'A186', 2, 0, 15000, 60
 			gs 'arousal', 'end'
 			if hypnoHardToCum = 2: hypnoHardToCum = 1
 			gs 'stat'
+
 			act 'Sleep':
+				therapistQW['hotel_visits'] = 1
 				gs 'sleep_simple', 'simple'
-				gt 'therapist_hotel', 'morning'
+				gt 'therapist_hotel', 'event1_morning'
 			end
 		end
 	end
 end
 
-if $ARGS[0] = 'morning':
+if $ARGS[0] = 'event1_morning':
 	dynamic $showerdin
 	gs 'clothing', 'wear', $lastwornclothingtype['therapist'], lastwornclothingnumber['therapist']
 	gs 'panties', 'wear', $lastwornpantytype['therapist'], lastwornpantynumber['therapist']
 	gs 'bras', 'wear', $lastwornbratype['therapist'], lastwornbranumber['therapist']
-	*clr & cla
 	gs 'stat'
+
 	'<center><img <<$set_imgh>> src="images/locations/pavlovsk/hotel/hotel.room.better1.jpg"></center>'
 	'You wake up alone in a hotel room. You are naked and dripping of cum. You ask yourself, "What did I do last night?" after the hypnosis ends. You only remember sleeping with someone and having sex with them, but you have no idea who. You finally use the shower in the room, dress in what you wore the day before and leave the room.'
+
 	act 'Continue': gt 'pav_hotel'
 end
 
+
+if $ARGS[0] = 'event2':
+	menu_off = 1
+	minut += 2
+	gs 'stat'
+
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/resident/therapist/arrive2.jpg"></center>'
+	'Once more, it''s Saturday night, and you find yourself entering a hotel room that you have a key to, with the goal of locating the person staying here so that you can return the key to them. However, you find yourself looking directly at him, someone you know, naked and hard while looking you over. Before you can do anything, your mind goes blank and you are in the black room of your hypnotized state, leaving you at his mercy.'
+	'"My wife, you''ve returned to me. Come, remove your clothes and sit next to me and we''ll talk" he says to you, and as if your legs move on their own, you remove your clothes before sitting down beside him.'
+
+	act 'Continue':
+		*clr & cla
+		minut += 2
+		gs 'stat'
+		
+		'"Today is an important day for you", the therapist said. “You will feel your heart flutter with love every time you see me, no matter if it''s at the clinic or out in public, as we begin your mental training. It will seem as if you are actually in love with me and you want to stay by my side every chance you get. It is imperative that you act the part when I take you out of your training if you intend to be my wife in real life. There will be times when I need you to do something for me, so when I snap, you will return to that dark room. Do you get it, wife?"'
+		
+		act '"Yes" - (continue)':
+			*clr & cla
+			minut+= 5
+			'"Wonderful, now remember, a clean wife is a happy wife. I will join you this time, to make sure you are completely clean." He says and takes your hand and pulls you into the bathroom and helps you get undressed, feeling you up each chance he gets. "Your young body is incredible".'
+			
+			act 'Go take a shower':
+				*clr & cla
+				minut += 5
+				if func('pcs_has_attr', 'body_tits_big'):
+					'He spends a lot of time fondling your breasts in a gentle manner. "These will make feeding our children a wonderful sight" he says and pulls you into the shower.'
+				else
+					'"Have you ever thought about getting work done? While your current size is nice, they could be larger" he says and pulls you into the shower.'
+				end
+
+				act 'Continue': gt 'therapist_hotel', 'event2_shower'
+			end
+		end
+
+		gs 'willpower', 'misc', 'resist', 'medium'
+		if pcs_willpwr < will_cost:
+			act '"No" - (rebel) (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
+		else
+			act '"No" - (rebel) (<font><<will_cost>> Willpower</font>)':
+				*clr & cla
+				minut += 5
+				gs 'willpower', 'pay', 'medium'
+				gs 'stat'
+
+				'<center><img <<$set_imgh>> src="images/locations/pavlovsk/hotel/hotel.room.better1.jpg"></center>'
+				'"Then come back when you are ready to take that step" He says and walks you to the door. You wake up in the hallway, standing outside a hotel room, unable to remember why you were there in the first place.'
+
+				act 'Continue': gt 'pav_hotel'
+			end
+		end
+	end
+end
+
+if $ARGS[0] = 'event2_shower':
+	minut += 5
+	$lastwornclothingtype['therapist'] = $clothingworntype
+	lastwornclothingnumber['therapist'] = clothingwornnumber
+	$lastwornpantytype['therapist'] = $pantyworntype
+	lastwornpantynumber['therapist'] = pantywornnumber
+	$lastwornbratype['therapist'] = $braworntype
+	lastwornbranumber['therapist'] = brawornnumber
+	dynamic $showerdin
+	gs 'stat'
+
+	'<center><img <<$set_imgh>> src="images/system/image_needed.png"></center>'
+	'In the warm water of the shower, the therapist orders you to stay still while he rubs his hands through your hair, scrubbing and massaging your scalp. He takes great care with his actions on your hair. In your mind this feels really pleasant. As he rinses your hair, he says, "Now wife, I want you to kneel before me and clean my cock and balls with your mouth. Be very thorough with your actions and don''t miss an inch." You turn to give him the blowjob that he has ordered you to do. "I want you to know what you''re doing but not who you''re doing it for. As if you are in a dream, wake up." He says and you get a bit of your consciousness back. You feel like you are in a hazy dream. His cock is in your mouth but you don''t know whose it is.'
+
+	act 'Give Blowjob':
+		*clr & cla
+		gs 'arousal', 'bj', 30, 'sub'
+		gs 'stat'
+
+		'<center><img <<$set_imgh>> src="images/system/image_needed.png"></center>'
+		'Your eyes are clear but you are in a haze. You feel a cock in your mouth and you start sucking. It tastes delicious to you and you want to keep doing it. You move your mouth over the long shaft. As you lick and kiss, suck and fondle, you enjoy this man''s meat. You feel his hands touch the back of your head and this man cums in your throat, drinking up every last drop. "Holy hell gi.. Wife" he says, slipping on his training. "You''re going to be a fantastic lover when I''m done with your training." He says and takes your hand and pulls you into the hotel room.'
+
+		act 'Continue':
+			*clr & cla
+			gs 'arousal', 'vaginal', 20, 'sub'
+			gs 'cum_call', 0, 'A186', 2, 0, 15000, 60
+			gs 'arousal', 'end'
+			if hypnoHardToCum = 2: hypnoHardToCum = 1
+			gs 'stat'
+
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/resident/therapist/sex2.jpg"></center>'
+			'He places you on the bed and quickly pushes you back into his body. You moan as you feel everything happening to you. Your mind is still foggy but you are aware of the sensations. His actions make you moan and groan on the bed. You squirm over the covers as he takes you relentlessly. His lips on your breasts, his hands on your hips, he gives you a fuck you won''t forget. It''s not long before you hear him groan and feel your body warming up with his seed. "Fuck, Wife, I''ll never tire of you, now sleep" he says and your mind returns back to the black room as you feel him start up again, realizing he will fuck you in your sleep.'
+
+			act 'Sleep':
+				*clr & cla
+				therapistQW['hotel_visits'] = 2
+				gs 'sleep_simple', 'simple'
+
+				dynamic $showerdin
+
+				gs 'clothing', 'wear', $lastwornclothingtype['therapist'], lastwornclothingnumber['therapist']
+				gs 'panties', 'wear', $lastwornpantytype['therapist'], lastwornpantynumber['therapist']
+				gs 'bras', 'wear', $lastwornbratype['therapist'], lastwornbranumber['therapist']
+				gs 'stat'
+
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/resident/therapist/creampy2.jpg"></center>'
+				'You wake up the next morning feeling like a million dollars. You sit up and feel something squirt out of your pussy. You were filled up by whomever you slept. Your subconscious mind makes your body want to keep it inside you. You get up, shower, dress and head back to town.'
+				act 'Continue': gt 'pav_market'
+			end
+		end
+	end
+
+	gs 'willpower', 'misc', 'resist', 'medium'
+	if pcs_willpwr < will_cost:
+		act 'Bite down hard (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
+	else
+		act 'Bite down hard (<font><<will_cost>> Willpower</font>)':
+			*clr & cla
+			minut += 5
+			therapistQW['escaped'] = 1
+			!! Remove clothing!!
+
+			'<center><img <<$set_imgh>> src="images/system/image_needed.png"></center>'
+			'You don''t know why, but you feel this isn''t right. You can''t put your finger on why but this man isn''t your lover. As soon as you bite down hard on his cock, he screams out in pain. This wakes you up from your dreamlike state. Not sticking around, you grab a nearby robe and run out of the hotel room and into the night.'
+
+			act 'Continue': gt 'pav_market'
+		end
+	end
+end
+
+if $ARGS[0] = 'event3':
+	menu_off = 1
+	minut += 2
+	gs 'stat'
+
+	'<center><img <<$set_imgh>> src="images/locations/pavlovsk/hotel/hotel.room.better1.jpg"></center>'
+	'You make your way into the hotel room once again and see no one around. You wonder if its empty, but before you can look around, you hear a snap and your mind goes blank. "Welcome back, Wife. Today you will be doing house work for me and you will be doing it naked. You always want to be naked around me. This will change when we have children, but for now, this will be natural for you. When I say, <font color="purple">"This place is a mess"</font>, you will start cleaning up the place on your own. Do a good job and you will get a reward." he says and then asks. "Got it, wife?"'
+
+	act 'Yes Sir':
+		*clr & cla
+		minut += 2
+		'"Good" he says and snaps his fingers again and you come out of your trance. "My dear, thank you for coming over, I really hope you had a good day" he says and gives you a kiss, which you return. "Sorry about being a bad host. This place is a mess, I''ve not had time to clean up" he says and your mind triggers and you remove your clothes, fold them up nicely, place then on the bed, then begin to clean up the hotel room.'
+
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/resident/therapist/hotel_clean.webp"></center>'
+
+		$lastwornclothingtype['therapist'] = $clothingworntype
+		lastwornclothingnumber['therapist'] = clothingwornnumber
+		$lastwornpantytype['therapist'] = $pantyworntype
+		lastwornpantynumber['therapist'] = pantywornnumber
+		$lastwornbratype['therapist'] = $braworntype
+		lastwornbranumber['therapist'] = brawornnumber
+		gs 'clothing', 'strip'
+
+		if func('pcs_has_attr', 'body_tits_big'):
+			'You sense his eyes on you the whole time. "I love watching your body move" he says and this compliment makes you feel happy. You feel like you might love this man, and he''s helped you so much with all your issues. "Thank you, I like to keep my body in healthy shape, I want you to be happy when looking at me" You tell him.'
+		else
+			'You feel his eyes on you the entire time. "So, I have a friend in St. Petersberg that sells a cream that can make your breasts grow larger. I want you to go there and buy some and use it" he suggests. "It will help you relax and help you with that issue you told me about while you were under hypnosis a few weeks back" he lies and you nod your head. "If you think it will help." You tell him.'
+		end
+
+		act 'Finish cleaning the room':
+			*clr & cla
+			gs 'arousal', 'cuni', 35, 'sub'
+			gs 'stat'
+			'<center><img <<$set_imgh>> src="images/shared/sex/kuni/kuni.jpg"></center>'
+			'You finish cleaning up the hotel room and when you pick something up, you feel his hands on your bottom. He feels up your rear. This is what you want him to do, but you don''t move. It''s not long before he kneels down behind you and you feel his lips on your pussy and starts to make out with your lower hole. This causes you to moan out softly as he eats you out. This lasts for a few minutes before he pulls back and pushes you onto the bed and is quickly on top of you again.'
+
+			act 'Submit':
+				*clr & cla
+				gs 'arousal', 'vaginal', 60, 'sub'
+				gs 'stat'
+
+				'<center><img <<$set_imgh>> src="images/system/image_needed.png"></center>'
+				'You moan when he pushes his entire size inside you. You really want this. You push back and help him push deeper inside you. He grabs a hold of your waist and starts to push in and pull out of you. This carries on for several minutes before you feel him cum inside you and he holds you tight to his own body. "Mmmm, dear, your pussy is so perfect" he says giving you another compliment. He holds you on his cock and falls to his side and stays inside you as he pulls the blanket over you and spoons you as you both fall asleep.'
+
+				act 'Sleep':
+					*clr & cla
+					therapistQW['hotel_visits'] = 3
+					gs 'sleep_simple', 'simple'
+
+					dynamic $showerdin
+
+					gs 'clothing', 'wear', $lastwornclothingtype['therapist'], lastwornclothingnumber['therapist']
+					gs 'panties', 'wear', $lastwornpantytype['therapist'], lastwornpantynumber['therapist']
+					gs 'bras', 'wear', $lastwornbratype['therapist'], lastwornbranumber['therapist']
+					gs 'stat'
+
+					'<center><img <<$set_imgh>> src="images/system/image_needed.png"></center>'
+					'You wake up the next morning to hands fondling your breasts and the therapist groaning in his sleep. You slowly and gently free yourself from his hold, get dressed and head out with a smile on your face. While your mind and heart feel this is right, something in the back of your mind is bothering you, but you just can''t place it.'
+					act 'Leave': gt 'pav_market'
+				end
+			end
+
+			gs 'willpower', 'misc', 'resist', 'medium'
+			if pcs_willpwr < will_cost:
+				act 'Resist (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
+			else
+				act 'Resist (<font><<will_cost>> Willpower</font>)':
+					*clr & cla
+					gs 'arousal', 'vaginal', 60, 'sub', 'rape'
+					gs 'willpower', 'pay', 'medium'
+					gs 'stat'
+
+					'<center><img <<$set_imgh>> src="images/system/image_needed.png"></center>'
+					'Something inside you is wanting to rebel, when you are pushed onto the bed. You feel as if something is wrong and when he pushes inside you, you moan out, "No...." softly as he starts pumping in and out of you. He is larger than you so you can’t really do much about this and when he grunts and cums inside you, you see a chance to do something. He pulls out and lays on the bed. "Mmm, that was good," he says and when you see him drift off to sleep, you grab your clothes and place the key card on the table and run out of the door and head home.'
+
+					act 'Leave': gt 'pav_market'
+				end
+			end
+		end
+	end
+end
+
+
+if $ARGS[0] = 'event4':
+	menu_off = 1
+	minut += 2
+	gs 'stat'
+
+	$lastwornclothingtype['therapist'] = $clothingworntype
+	lastwornclothingnumber['therapist'] = clothingwornnumber
+	$lastwornpantytype['therapist'] = $pantyworntype
+	lastwornpantynumber['therapist'] = pantywornnumber
+	$lastwornbratype['therapist'] = $braworntype
+	lastwornbranumber['therapist'] = brawornnumber
+	gs 'clothing', 'strip'
+
+	'<center><img <<$set_imgh>> src="images/locations/pavlovsk/hotel/hotel.room.better1.jpg"></center>'
+	'You arrive at the hotel room on another Saturday night. You walk in like you own the place and strip down and take a shower. You spend a few minutes cleaning up and come out wearing only a towel, and you see the therapist watching TV.'
+
+	act 'Continue':
+		*clr & cla
+		minut += 2
+		gs 'stat'
+
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/resident/therapist/arrive4.jpg"></center>'
+		'"Ah, my wife, how are you today." He says while getting up and walking over to kiss you on the lips. You return the kiss as if it was natural. "There is something I want you to do for me today" he says and snaps his fingers. "You will stay in here naked and ready for me. I''m leaving to go get us something to eat." He whispers and snaps his fingers again and you wake up. "I''ll be back in a few minutes," he explains and pulls your towel off as he leaves the room, leaving you naked and alone.'
+
+		act 'Submit':
+			*clr & cla
+			therapistQW['hotel_submit'] += 1
+			minut += 60
+			gs 'stat'
+
+			'<center><img <<$set_imgh>> src="images/characters/pavlovsk/resident/therapist/hotel_wait_tv.jpg"></center>'
+			'You obey his orders and sit on the bed naked and watch whatever he was watching until he returns holding a bag of food.'
+
+			act 'Continue': gt 'therapist_hotel', 'event4_post_wait'
+		end
+
+		if pcs_intel >= 90:
+			act 'Look around the room':
+				*clr & cla
+				therapistQW['hotel_hypno_study'] += 1
+				minut += 60
+				gs 'stat'
+
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/resident/therapist/hotel_wait_tv.jpg"></center>'
+				'There are a lot of items in the room, including his computer, books, files, and notes. You see a book on his table next to a file with your name on it. The book is called "The Theory of Hypnosis". You look at the back cover and read it: "Does mind control fascinate you? Are you interested in understanding the human mind? Do you want to learn how to influence others and bend them to your will? Imagine winning almost any argument, turning people to your way of thinking or controlling situations to your own advantage. This is all while ensuring others do not hold the same power over you. You should know that most of our choices are generated and managed through specific methods of covert manipulation. Reading this book you’ll uncover the most powerful principles in the world of Dark Psychology." You open the book and thumb through it. Sitting down on a chair near you, you read and gain a deeper understanding of Hypnotherapy. You spend a good hour learning a few things before hearing the door click. Putting the book down, you stand up and watch as the therapist returns with a bag of food.'
+
+				if therapistQW['hotel_hypno_study'] >= 4:
+					'This is the end of this path, more to come!'
+					act 'Continue': gt 'therapist_hotel', 'event4_post_wait'
+				else
+					act 'Continue': gt 'therapist_hotel', 'event4_post_wait'
+				end
+			end
+		end
+
+		gs 'willpower', 'misc', 'resist', 'medium'
+		if pcs_willpwr < will_cost:
+			act 'Leave (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
+		else
+			act 'Leave (<font><<will_cost>> Willpower</font>)':
+				*clr & cla
+				minut += 5
+				therapistQW['hotel_left'] += 1
+				gs 'willpower', 'pay', 'medium'
+
+				gs 'clothing', 'wear', $lastwornclothingtype['therapist'], lastwornclothingnumber['therapist']
+				gs 'panties', 'wear', $lastwornpantytype['therapist'], lastwornpantynumber['therapist']
+				gs 'bras', 'wear', $lastwornbratype['therapist'], lastwornbranumber['therapist']
+
+				gs 'stat'
+
+				'<center><video autoplay loop <<$set_imgh>> src="images/pc/activities/misc/dress_<<rand(1, 2)>>.mp4"></video></center>'
+				'As you stand there naked, you slowly come to and, seeing yourself naked, you quickly get dressed. You are not sure why you are here and decide to leave.'
+
+				if therapistQW['hotel_left'] += 1:
+					'This is the end of this path, more to come!'
+					act 'Leave': gt 'pav_market'
+				else
+					act 'Leave': gt 'pav_market'
+				end
+			end
+		end
+	end
+end
+
+
+if $ARGS[0] = 'event4_post_wait':
+	minut += 5
+	gs 'stat'
+
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/resident/therapist/hotel_lap.jpg"></center>'
+	'He cleans off the desk and places the food on it. When he sits down, he pats his lap. "Come, sit on my lap," he says and you do just that. He wraps an arm around you and feeds you some of his fries. After about 15 minutes, he lifts you up and places you on the bed. Removing his clothes, he lies down next to you and wraps his arms around you. This time, he doesn''t have sex with you and just cuddles you until you both fall asleep.'
+
+	act 'Sleep':
+		*clr & cla
+		therapistQW['hotel_visits'] = 3
+		gs 'sleep_simple', 'simple'
+
+		dynamic $showerdin
+
+		gs 'clothing', 'wear', $lastwornclothingtype['therapist'], lastwornclothingnumber['therapist']
+		gs 'panties', 'wear', $lastwornpantytype['therapist'], lastwornpantynumber['therapist']
+		gs 'bras', 'wear', $lastwornbratype['therapist'], lastwornbranumber['therapist']
+		gs 'stat'
+		
+		'<center><img <<$set_imgh>> src="images/locations/pavlovsk/hotel/hotel.room.better1.jpg"></center>'
+		'The next morning, you wake up in the therapist''s arms. You slowly remove yourself from his hold, dress, and leave the room.'
+
+		act 'Leave': gt 'pav_market'
+	end
+end
+
+if $ARGS[0] = 'event5_submit_end':
+	menu_off = 1
+	minut += 2
+	gs 'stat'
+
+	$lastwornclothingtype['therapist'] = $clothingworntype
+	lastwornclothingnumber['therapist'] = clothingwornnumber
+	$lastwornpantytype['therapist'] = $pantyworntype
+	lastwornpantynumber['therapist'] = pantywornnumber
+	$lastwornbratype['therapist'] = $braworntype
+	lastwornbranumber['therapist'] = brawornnumber
+	gs 'clothing', 'strip'
+
+	'After another Saturday night in the hotel room, you feel flushed when you see your therapist. Your heart feels like it''s pounding a million miles a second. When he stands up in his robe, you see his cock and your mind goes blank. "Wife, welcome back." He walks up to you and kisses your lips and squeezes your chest. "Now, every time you come into this room, you will no longer enter a trance and you will stay, as my lover, you will be wet and ready as you want me but will wait for me to start anything. You will also strip down to nothing and will not want to wear clothing while you are here with me." He commands. "When I say the phrase, ‘My dear’, you will do whatever I command you while you are awake. Do you understand?" he asks, planting more triggers in your mind.'
+	'"Yes, sir." you respond.'
+	'"All right, now undress and present yourself to me."'
+	*nl
+	'<center><img <<$set_imgh>> src="images/characters/pavlovsk/resident/therapist/hotel_undressed_knee.jpg"></center>'
+	'You strip down to your birthday suit and turn to show him your body. He pulls you into his lap and moves a hand over your legs before moving it between your legs, feeling you up. "Now, wake up and be my woman."'
+	*nl
+	*nl
+	'<center><font color="red"> >>>Major Choice<<< </font></center>'
+	'<font color="red">If you continue from this point, you will enter a story moment where there are only 3 ways to break free. If you do not have these conditions meet, they will be passed up and you will fall into this bad end, unless you are into that kind of thing. This is a MAJOR POINT OF NO RETURN.</font>'
+
+	act 'Accept':
+		*clr & cla
+		therapist['hotel_submit'] = 10
+		gs 'arousal', 'vaginal_finger', 15, 'sub'
+		gs 'stat'
+
+		'<center><img <<$set_imgh>> src="images/characters/pavlovsk/resident/therapist/hotel_undressed_knee.jpg"></center>'
+		'You come to and look at the therapist and when you feel his hand between your legs, you open them for him. "Good girl, tell me what you think about me," he says, as he slips a finger into your honeypot.'
+		'"I think I am falling for you. From the dreams I''ve had about you, to kissing you after our sessions, I want to offer myself to you, but I don''t know just yet," you tell him and then moan out when he kisses your neck.'
+
+		act 'Continue':
+			*clr & cla
+			gs 'arousal', 'cuni', 35, 'sub'
+			gs 'stat'
+
+			'<center><img <<$set_imgh>> src="images/shared/sex/kuni/kuni.jpg"></center>'
+			'"Take your time, I''ll just use your body and you feel like you want me to," he replies and lays you back on the bed and suckles on your neck while fingering you. "Mmm, you taste so delicious" he says over you, before moving down your body, suckling on your breasts for a bit before moving further down between your legs and starts to eat you out.'
+			'"Sir?!" You moan out as he ravishes your pussy with his mouth and tongue.'
+			'"You will be mine, your body will not deny me, you only have to say yes to me. My dear, tell me to fuck you." He exclaims and the trigger clicks in your mind.'
+
+			act '"Sire, please, fuck me"':
+				*clr & cla
+				gs 'arousal', 'vaginal', 60, 'sub'
+				gs 'arousal', 'end'
+				gs 'stat'
+
+				'<center><img <<$set_imgh>> src="images/characters/pavlovsk/resident/therapist/sex2.jpg"></center>'
+				'You say and he climbs on top of you and pushes inside you again. "Anything for you," he says and starts to have sex with you. This continues for the night. "My dear, you want my cum inside you, right? You love my cum in your body,” he explains.'
+				'"Yes, I love your cum inside me, I love how it feels inside me." and with that he cums hard inside you.'
+				'"Good Girl, I''ll keep cumming inside you until you are with my child," he says and you say nothing. "My Dear, tell me, You want my babies inside you, correct?"'
+				'"Yes, Sir" you say and he kisses you again.'
+				'"Good, but for now, let''s sleep. In the morning we will have more of this before you leave," he says and your eyes close and you fall into a deep sleep.'
+
+				act 'Sleep':
+					*clr & cla
+					gs 'sleep_simple', 'simple'
+					gs 'stat'
+
+					gs 'arousal', 'vaginal', 60, 'sub'
+					gs 'arousal', 'end'
+					gs 'stat'
+
+					'<center><video autoplay loop <<$set_imgh>> src="images/shared/sex/cum/vagcreampie/doggy5.mp4"></video></center>'
+					'You wake up the next morning to the therapist pumping in and out of you. "Mmm, good morning my dear, you love me waking you up like this," he says and you nod in agreement with him. "Now be a good girl and just lay there and enjoy it." He says and spends an hour pumping more and more cum inside you.'
+
+					act 'Leave':
+						*clr & cla
+						minut += 5
+						gs 'stat'
+
+						'He stops and kisses you and then pulls out of you and slowly gets dressed. “My dear, get up, clean up, then return the same time next week,” he says, leaving you alone to get dressed and cleaned up before leaving.'
+						'<center><video autoplay loop <<$set_imgh>> src="images/pc/activities/misc/dress_<<rand(1, 2)>>.mp4"></video></center>'
+						act 'Continue':
+							*clr & cla
+							minut += 15
+							dynamic $showerdin
+
+							gs 'clothing', 'wear', $lastwornclothingtype['therapist'], lastwornclothingnumber['therapist']
+							gs 'panties', 'wear', $lastwornpantytype['therapist'], lastwornpantynumber['therapist']
+							gs 'bras', 'wear', $lastwornbratype['therapist'], lastwornbranumber['therapist']
+							gs 'stat'
+
+							gt 'pav_market'
+						end
+					end
+				end
+			end
+		end
+	end
+	
+	act 'Break free':
+		*clr & cla
+		minut += 5
+		therapistQW['escaped'] = 2
+		gs 'stat'
+		
+		'You come to and see that you are naked. "WHAT THE HELL?" you yell and slap the therapist. You quickly get up and grab your clothes and rush out of the hotel room to the front desk to ask them to call the police. After explaining everything, they send a single officer to the hotel room to find it empty. You are slapped with a 500 ₽ fine for public indecency, told not to waste their time, and sent on your way.'
+		pcs_money -= 500
+		if pcs_money < 0: pcs_money = 0
+		'<center><font color="red"> >>>Therapist is no longer an option for now<<< </font></center>'
+
+		act 'Get dressed and leave':
+			gs 'clothing', 'wear', $lastwornclothingtype['therapist'], lastwornclothingnumber['therapist']
+			gs 'panties', 'wear', $lastwornpantytype['therapist'], lastwornpantynumber['therapist']
+			gs 'bras', 'wear', $lastwornbratype['therapist'], lastwornbranumber['therapist']
+			gs 'stat'
+
+			gt 'pav_market'
+		end
+	end
+end
+
+
+
 --- therapist_hotel ---------------------------------