Browse Source

[Changed] Changed how the women's bathroom work at the night club

ADCSux 2 years ago
parent
commit
967cb70cd1
3 changed files with 48 additions and 1 deletions
  1. 1 0
      glife.qproj
  2. 1 1
      locations/city_nightclub.qsrc
  3. 46 0
      locations/city_nightclubToilet.qsrc

+ 1 - 0
glife.qproj

@@ -830,6 +830,7 @@
 		<Location name="butoilet"/>
 		<Location name="cfnm"/>
 		<Location name="city_nightclub"/>
+		<Location name="city_nightclubToilet"/>
 		<Location name="Club2"/>
 		<Location name="vipclub"/>
 		<Location name="danceclass"/>

+ 1 - 1
locations/city_nightclub.qsrc

@@ -165,7 +165,7 @@ if $ARGS[0] = 'inside':
 	end
 
 	if hour <= 3 or hour >= 18:
-		act 'Use the toilet':gt 'city_nightclub', 'toi'
+		act 'Use the toilet':gt 'city_nightclubToilet', 'start'
 		act 'Go to the dance floor':gt 'city_nightclub', 'dance'
 		act 'Go to the bar':gt 'city_nightclub', 'bar'
 	end

+ 46 - 0
locations/city_nightclubToilet.qsrc

@@ -0,0 +1,46 @@
+# city_nightclubToilet
+
+if $ARGS[0] = 'start':
+    $location_type = 'public_indoors'
+    $menu_loc = 'clubtoilet'
+    $loc = 'clubtoilet'
+    gs 'themes', 'indoors'
+    $menu_arg = 'start'
+	$loc_arg = 'start'
+	killvar '$locclass'
+	menu_off = 0
+	gs 'stat'
+	*clr & cla
+    
+
+    act 'Enter the women''s restroom': gt 'city_nightclubToilet', 'clubtoilet_women'
+end
+
+if $ARGS[0] = 'clubtoilet_men':
+
+end
+
+if $ARGS[0] = 'clubtoilet_women':
+    $loc_arg = 'womens'
+	$loc = 'clubtoilet_women'
+	$locM_arg = 'womens'
+	$locM = 'clubtoilet_women'
+	$menu_loc = 'clubtoilet_women'
+	$menu_arg = 'womens'
+	menu_off = 0
+	$location_type = 'bathroom'
+	$locclass = 'restroom'
+	*clr & cla
+	gs 'stat'
+	'<center><b><font color="maroon">Women''s Room</font></b></center>'
+	'<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/toilet.jpg"></center>'
+	'You walk in to the women''s restroom. You see some sinks and <a href="exec:gt ''mirror'', ''start''">mirrors</a>. You notice the last stall has its door wide open.'
+
+	act 'Leave': gt 'city_nightclubToilet', 'start'
+	
+	dynamic $tampon
+	dynamic $quickwash
+	dynamic $basin	
+end
+
+--- city_nightclubToilet ---------------------------------