Browse Source

[added] possibility to use pad/tampon even if sveta isn't using one at the moment

julzor 5 years ago
parent
commit
8aa89fcc36
1 changed files with 2 additions and 10 deletions
  1. 2 10
      locations/din_van.qsrc

+ 2 - 10
locations/din_van.qsrc

@@ -1351,10 +1351,6 @@ if $ARGS[0] = 'prvt_pee_end':
 	end
 end
 
-
-
-
-
 !!Public bathrooms: These texts should be randomly selected if using a public restroom
 if $ARGS[0] = 'pblc_pee':	
 	act 'Go pee':
@@ -1426,9 +1422,7 @@ if $ARGS[0] = 'pblc_pee':
 			end
 		end
 
-!!If PC is on her period and using tampon, then the following options should appear as well as the standard "Finish and wipe" act:
-!!This may require an addition check to see if the PC has a purse since I think they need that to carry tampons with them.
-		if isprok = 1 and tampon > 0:
+		if mesec > 0 and (isprok = 1 or (isprok = 0 and isprokp = 0)) and tampon > 0 and bag = 1:
 			act 'Change tampon':
 				*clr & cla
 				'<center><img <<$set_imgh>> src="images/pc/pee/period/tampon/' + rand(1,12) + '.jpg"></center>'
@@ -1438,9 +1432,7 @@ if $ARGS[0] = 'pblc_pee':
 			end
 		end
 
-!!If PC is on her period and using pad, then the following options should appear as well as the standard "Finish and wipe" act:
-!!This may require an addition check to see if the PC has a purse since I think they need that to carry pads with them.
-		if isprokp = 1 and sanpad > 0:
+		if mesec > 0 and (isprokp = 1 or (isprok = 0 and isprokp = 0)) and sanpad > 0 and bag = 1:
 			act 'Change pad':
 				*clr & cla
 				'<center><img <<$set_imgh>> src="images/pc/pee/period/pad/' + rand(1,6) + '.jpg"></center>'