Browse Source

brothel.qsrc funtions for section2 actions put in

Nekoforce 2 years ago
parent
commit
fe6f924fc9
1 changed files with 58 additions and 6 deletions
  1. 58 6
      locations/brothel.qsrc

+ 58 - 6
locations/brothel.qsrc

@@ -2031,8 +2031,9 @@ if $ARGS[0] = 'section2_lobby':
 	'Only a single room is attached to the lobby by a wide door.Judging by the state of the floor, a lot of heavy equipment is regularly dragged in and out.'
 	'One of the doors also leads to a <a href="exec:gt ''brothel'', ''brothel_dressingroom'',''2''">room</a> made for the girls. '
 	if (klismaday = daystart and (pcs_leghair <= 3 or pcs_pubes <= 3) and pcs_hairbsh = 1 and pcs_makeup >= 1 and pcs_lipbalm >= 1 and $pantyworntype = 'none' and $clothingworntype = 'nude' and (cumloc[1] = 0 and cumloc[4] = 0 and cumloc[8] = 0 and cumloc[9] = 0 and cumloc[10] = 0 and cumloc[11] = 0 and cumloc[15] = 0 and cumloc[16] = 0 and cumloc[17] = 0) and pcs_sweat < 40 and alko < 3 and StrongNarkota = 0 or jointhigh = 0):
-      	act 'Party with a client': gt 'brothel', 'section2_party'
-      	act 'Have a bender': gt 'brothel', 'section2_bender'
+      	!!stage = 1
+      	!!act 'Party with a client': gt 'brothel', 'section2_party'
+      	!!act 'Have a bender': gt 'brothel', 'section2_bender'
 	else
 		'To be able to get working, you need to:'
 		if pcs_sweat >= 40: '- have a shower.'
@@ -2053,13 +2054,64 @@ if $ARGS[0] = 'section2_lobby':
 end
       
 if $ARGS[0] = 'section2_party':
-      !!Client wants a bondage session while using drugs, PC has to use drugs during session
-      act 'Return to the Lobby':gt 'brothel','section2_lobby'
+    !!Client wants a bondage session while using drugs, PC has to use drugs during session
+    if stage = 1:
+		stage += 1
+		gt 'brothel', 'section2_party_start'
+	elseif stage = 2:
+		stage += 1
+		gt 'brothel', 'section2_party_bound'
+	elseif stage = 3:
+		stage += 1
+		gt 'brothel', 'section2_party_drugs'
+    elseif stage = 4:
+		stage += 1
+		gt 'brothel', 'section2_party_effect'
+    elseif stage = 5:
+		stage += 1
+		gt 'brothel', 'section2_party_fuck'
+    elseif stage = 6:
+		stage += 1
+		gt 'brothel', 'section2_party_fuck2'
+    elseif stage = 7:
+		stage += 1
+		gt 'brothel', 'section2_party_cum'
+    elseif stage = 8:
+		stage += 1
+		gt 'brothel', 'section2_party_release'
+    elseif stage = 9:
+		stage += 1
+		gt 'brothel', 'section2_party_recover'
+	end
 end
       
 if $ARGS[0] = 'section2_bender':
-      !!Client will drink heavily with the PC, followed by rough sex
-      act 'Return to the Lobby':gt 'brothel','section2_lobby'
+    !!Client will drink heavily with the PC, followed by rough sex
+    if stage = 1:
+		stage += 1
+		gt 'brothel', 'section2_bender_start'
+	elseif stage = 2:
+		stage += 1
+		gt 'brothel', 'section2_bender_drink'
+	elseif stage = 3:
+		stage += 1
+		gt 'brothel', 'section2_bender_drink_finish'
+    elseif stage = 4:
+		stage += 1
+		gt 'brothel', 'section2_bender_effect'
+    elseif stage = 5:
+		stage += 1
+		gt 'brothel', 'section2_bender_fuck'
+    elseif stage = 6:
+		stage += 1
+		gt 'brothel', 'section2_bender_fuck2'
+    elseif stage = 7:
+		stage += 1
+		gt 'brothel', 'section2_bender_cum'
+    elseif stage = 8:
+		stage += 1
+		gt 'brothel', 'section2_bender_leave'
+	end
 end
 
 --- brothel ---------------------------------