Bläddra i källkod

More fixes as identified by s4n

KevinSmarts 8 år sedan
förälder
incheckning
a8369e6234

+ 0 - 1
locations/MHall

@@ -73,7 +73,6 @@ if $ARGS[0] = 'east':
 		'<center><img src="images/BDSM_Club/Hallways/maid_b5.gif"></center>'
 		'A submissive woman is give her dominant a blowjob while another sub watches from the stairs.'
 		act 'Return': gt 'MHall', 'east'
-	end
 	elseif rand (0,100) < 3:
 		cls
 		horny += 5

+ 40 - 20
locations/WorkHosp

@@ -218,26 +218,46 @@ end
 
 $randdoc = {
 	randdoc = rand(1,20)
-	if randdoc = 1:$boy = 'Dr. Ivanov'
-	elseif randdoc = 2:$boy = 'Dr. Smirnov'
-	elseif randdoc = 3:$boy = 'Dr. Kuznetsov'
-	elseif randdoc = 4:$boy = 'Dr. Popov'
-	elseif randdoc = 5:$boy = 'Dr. Vasiliev'
-	elseif randdoc = 6:$boy = 'Dr. Petrov'
-	elseif randdoc = 7:$boy = 'Dr. Sokolov'
-	elseif randdoc = 8:$boy = 'Dr. Mikhailov'
-	elseif randdoc = 9:$boy = 'Dr. Fedorov'
-	elseif randdoc = 10:$boy = 'Dr. Morozov'
-	elseif randdoc = 11:$boy = 'Dr. Volkov'
-	elseif randdoc = 12:$boy = 'Dr. Alexeev'
-	elseif randdoc = 13:$boy = 'Dr. Lebedev'
-	elseif randdoc = 14:$boy = 'Dr. Semenov'
-	elseif randdoc = 15:$boy = 'Dr. Egerov'
-	elseif randdoc = 16:$boy = 'Dr. Pavlov'
-	elseif randdoc = 17:$boy = 'Dr. Kozlov'
-	elseif randdoc = 18:$boy = 'Dr. Stepanov'
-	elseif randdoc = 19:$boy = 'Dr. Nikolaev'
-	elseif randdoc = 20:$boy = 'Dr. Orlov'
+	if randdoc = 1:
+		$boy = 'Dr. Ivanov'
+	elseif randdoc = 2:
+		$boy = 'Dr. Smirnov'
+	elseif randdoc = 3:
+		$boy = 'Dr. Kuznetsov'
+	elseif randdoc = 4:
+		$boy = 'Dr. Popov'
+	elseif randdoc = 5:
+		$boy = 'Dr. Vasiliev'
+	elseif randdoc = 6:
+		$boy = 'Dr. Petrov'
+	elseif randdoc = 7:
+		$boy = 'Dr. Sokolov'
+	elseif randdoc = 8:
+		$boy = 'Dr. Mikhailov'
+	elseif randdoc = 9:
+		$boy = 'Dr. Fedorov'
+	elseif randdoc = 10:
+		$boy = 'Dr. Morozov'
+	elseif randdoc = 11:
+		$boy = 'Dr. Volkov'
+	elseif randdoc = 12:
+		$boy = 'Dr. Alexeev'
+	elseif randdoc = 13:
+		$boy = 'Dr. Lebedev'
+	elseif randdoc = 14:
+		$boy = 'Dr. Semenov'
+	elseif randdoc = 15:
+		$boy = 'Dr. Egerov'
+	elseif randdoc = 16:
+		$boy = 'Dr. Pavlov'
+	elseif randdoc = 17:
+		$boy = 'Dr. Kozlov'
+	elseif randdoc = 18:
+		$boy = 'Dr. Stepanov'
+	elseif randdoc = 19:
+		$boy = 'Dr. Nikolaev'
+	elseif randdoc = 20:
+		$boy = 'Dr. Orlov'
 	end
 	docfuck[randdoc] += 1
 }

+ 24 - 12
locations/_clothing_image

@@ -3,18 +3,30 @@
 !! ARGS 0 - clothing group name
 !! ARGS 1 - clothing index
 
-if $ARGS[0] = 'cheap':$RESULT = 'images/Clothing/1cheap/Cheap<<ARGS[1]>>.jpg'
-if $ARGS[0] = 'average':$RESULT = 'images/Clothing/2average/Average<<ARGS[1]>>.jpg'
-if $ARGS[0] = 'expensive':$RESULT = 'images/Clothing/3expensive/Expensive<<ARGS[1]>>.jpg'
-if $ARGS[0] = 'formal':$RESULT = 'images/Clothing/4formal/Formal<<ARGS[1]>>.jpg'
-if $ARGS[0] = 'office':$RESULT = 'images/Clothing/5office/Office<<ARGS[1]>>.jpg'
-if $ARGS[0] = 'school':$RESULT = 'images/Clothing/6school/School<<ARGS[1]>>.jpg'
-if $ARGS[0] = 'exercise':$RESULT = 'images/Clothing/7exercise/Exercise<<ARGS[1]>>.jpg'
-if $ARGS[0] = 'naughty':$RESULT = 'images/Clothing/8naughty/Naughty<<ARGS[1]>>.jpg'
-if $ARGS[0] = 'exhibit':$RESULT = 'images/Clothing/9exhibit/Exhibit<<ARGS[1]>>.jpg'
-if $ARGS[0] = 'uniform':$RESULT = 'images/Clothing/10uniform/Uniform<<ARGS[1]>>.jpg'
-if $ARGS[0] = 'coat':$RESULT = 'images/Clothing/11coat/Coat<<ARGS[1]>>.jpg'
-if $ARGS[0] = 'swimwear':$RESULT = 'images/Clothing/12swimwear/Swimwear<<ARGS[1]>>.jpg'
+if $ARGS[0] = 'cheap':
+	$RESULT = 'images/Clothing/1cheap/Cheap<<ARGS[1]>>.jpg'
+elseif $ARGS[0] = 'average':
+	$RESULT = 'images/Clothing/2average/Average<<ARGS[1]>>.jpg'
+elseif $ARGS[0] = 'expensive':
+	$RESULT = 'images/Clothing/3expensive/Expensive<<ARGS[1]>>.jpg'
+elseif $ARGS[0] = 'formal':
+	$RESULT = 'images/Clothing/4formal/Formal<<ARGS[1]>>.jpg'
+elseif $ARGS[0] = 'office':
+	$RESULT = 'images/Clothing/5office/Office<<ARGS[1]>>.jpg'
+elseif $ARGS[0] = 'school':
+	$RESULT = 'images/Clothing/6school/School<<ARGS[1]>>.jpg'
+elseif $ARGS[0] = 'exercise':
+	$RESULT = 'images/Clothing/7exercise/Exercise<<ARGS[1]>>.jpg'
+elseif $ARGS[0] = 'naughty':
+	$RESULT = 'images/Clothing/8naughty/Naughty<<ARGS[1]>>.jpg'
+elseif $ARGS[0] = 'exhibit':
+	$RESULT = 'images/Clothing/9exhibit/Exhibit<<ARGS[1]>>.jpg'
+elseif $ARGS[0] = 'uniform':
+	$RESULT = 'images/Clothing/10uniform/Uniform<<ARGS[1]>>.jpg'
+elseif $ARGS[0] = 'coat':
+	$RESULT = 'images/Clothing/11coat/Coat<<ARGS[1]>>.jpg'
+elseif $ARGS[0] = 'swimwear':
+	$RESULT = 'images/Clothing/12swimwear/Swimwear<<ARGS[1]>>.jpg'
 end
 
 --- $clothing_image ---------------------------------

+ 5 - 2
locations/_short_description

@@ -19,8 +19,11 @@ elseif $ARGS[0] = 'naughty':
 elseif $ARGS[0] = 'exhibit':
 	$RESULT = 'Revealing outfit number '
 elseif $ARGS[0] = 'uniform':
-	if $ARGS[1] = 1:$RESULT = 'Maid outfit number '
-	elseif $ARGS[1] = 2:$RESULT = 'Server uniform number '
+	if $ARGS[1] = 1:
+		$RESULT = 'Maid outfit number '
+	elseif $ARGS[1] = 2:
+		$RESULT = 'Server uniform number '
+	end
 elseif $ARGS[0] = 'coat':
 	$RESULT = 'Coat number '
 elseif $ARGS[0] = 'swimwear':

+ 66 - 77
locations/brother

@@ -484,7 +484,7 @@ $sleepsexcum = {
 				sexpartkno = 1
 				gs 'cum_manage'
 			elseif pose = 1:
-				if rand(0,1) = 0
+				if rand(0,1) = 0:
 					spafinloc = 8
 					'<<$boy>> groans and you quickly pull yourself off of his dick. His hot sperm squirts on your back.'
 				else
@@ -521,9 +521,7 @@ $brothersleepSexEnd = {
 	gs 'stat'
 
 	'You catch your breath then carefully climb off your still sleeping, though smiling, brother. You gently replace the blanket and quietly step away.'
-		act 'Escape':gt $loc
-		end
-	end
+	act 'Escape':gt $loc
 }
 
 $brother_showbody = {
@@ -1260,22 +1258,22 @@ if $ARGS[0] = 'brother_voyeur_ev8':
 			gs'stat'
 			picrand = RAND(1,2)
 			'<center><img src="images/qwest/alter/ev2/brother/f (7.<<picrand>>).jpg"></center>'
-		if brotherQW = 5:
-			if brotherQW = 5:brotherQW = 6
-			'Recovering from your orgasm you are now aware of what has happened:'
-			'"Oh!" He exclaims almost too loudly while looking at the cum on your stomach.'
-			'"Aha..." Kolka said, out of breath.'
-			'"Whore... You... NO WORDS!"'
-			'"And I liked it..." He grins.'
-			'"Not a word to anyone!"'
-			'"Yes, I know and don''t shout our mother might hear you!"'
-		elseif brotherQW > 5:
-			'You look at your brother who is smiling:'
-			'"Aha..." Kolka says, out of breath.'
-			'"Lucky no one caught us"'
-			'"Come on... <<$name>> it was fun!"'
-		end
-		act'Dress':gt $CURLOC
+			if brotherQW = 5:
+				if brotherQW = 5:brotherQW = 6
+				'Recovering from your orgasm you are now aware of what has happened:'
+				'"Oh!" He exclaims almost too loudly while looking at the cum on your stomach.'
+				'"Aha..." Kolka said, out of breath.'
+				'"Whore... You... NO WORDS!"'
+				'"And I liked it..." He grins.'
+				'"Not a word to anyone!"'
+				'"Yes, I know and don''t shout our mother might hear you!"'
+			elseif brotherQW > 5:
+				'You look at your brother who is smiling:'
+				'"Aha..." Kolka says, out of breath.'
+				'"Lucky no one caught us"'
+				'"Come on... <<$name>> it was fun!"'
+			end
+			act'Dress':gt $CURLOC
 		end
 	elseif brotherSex > 0:
 		cls
@@ -1291,66 +1289,57 @@ if $ARGS[0] = 'brother_voyeur_ev8':
 		brotherSexCount -= 1
 		brotherEvSex = daystart
 		gs 'stat'
-
-		
-			picrand = RAND(1,2)
-			'<center><img src="images/qwest/alter/ev2/brother/f (6.<<picrand>>).jpg"></center>'
-			'Getting down from the chair and onto the carpet, You are overcome with excitement and desire, lying under your brother you begin to caress your pussy.'
-			if vagina > 0:'You slip your fingers inside while softly moaning and panting.'
-			'You spot your brother''s member and you closely follow his every move, he moves it towards your mouth, you open you lips and take it in greedily. You feel warmth and excitement build up in your abdomen, you start to feel an orgasm coming, focusing on your brother''s member it begins to twitch, he groans and jets of his warm sperm fill your mouth you begin writhing as your orgasm washes over you at the same time.'
-			act'Further':
-				cls
-				cla
-				CLOSE ALL
-				gs'stat'
-					'<center><img src="images/qwest/alexey/bjcum14.jpg"></center>'
-					'Recovering from your orgasm you are now aware of what has happened:'
-					'You slowly move your mouth away from you brother''s member.'
-					'Kolka catches his breath, then says, "Nice one <<$nickname>>, good job, just remember this is our little secret!", He continues to go about his business.'
-					'You don''t say anything as you get dressed.'
-				act'Dress':gt $CURLOC
-				end
-		
+		picrand = RAND(1,2)
+		'<center><img src="images/qwest/alter/ev2/brother/f (6.<<picrand>>).jpg"></center>'
+		'Getting down from the chair and onto the carpet, You are overcome with excitement and desire, lying under your brother you begin to caress your pussy.'
+		if vagina > 0:'You slip your fingers inside while softly moaning and panting.'
+		'You spot your brother''s member and you closely follow his every move, he moves it towards your mouth, you open you lips and take it in greedily. You feel warmth and excitement build up in your abdomen, you start to feel an orgasm coming, focusing on your brother''s member it begins to twitch, he groans and jets of his warm sperm fill your mouth you begin writhing as your orgasm washes over you at the same time.'
+		act'Further':
+			cls
+			cla
+			CLOSE ALL
+			gs'stat'
+			'<center><img src="images/qwest/alexey/bjcum14.jpg"></center>'
+			'Recovering from your orgasm you are now aware of what has happened:'
+			'You slowly move your mouth away from you brother''s member.'
+			'Kolka catches his breath, then says, "Nice one <<$nickname>>, good job, just remember this is our little secret!", He continues to go about his business.'
+			'You don''t say anything as you get dressed.'
+			act'Dress':gt $CURLOC
+		end
 	elseif brotherConfidence > 10 and brotherSex = 0:
-					cls
-					minut += 5
-					horny += 10
-					bj += 1
-					$boy = 'Kolka'
-					spafinloc = 12
-					sexpartkno = 1
-					gs 'cum_manage'
-					swallow += 1
-					brotherSex += 1
-					brotherSexCount -= 1
-					brotherEvSex = daystart
-					gs 'stat'
-
-					
-						picrand = RAND(1,2)
-						'<center><img src="images/qwest/alter/ev2/brother/f (6.<<picrand>>).jpg"></center>'
-						'Getting down from the chair and onto the carpet, You are overcome with excitement and desire, lying under your brother you begin to caress your pussy.'
-						if vagina > 0:'You slip your fingers inside while softly moaning and panting.'
-						'You spot your brother''s member and you closely follow his every move, slowly he moves it towards your mouth, you open you lips and take it in. You feel warmth and excitement build up in your abdomen, you start to feel an orgasm coming, focusing on your brother''s member it begins to twitch, he groans and jets of his warm sperm fill your mouth you begin writhing as your orgasm washes over you at the same time.'
-						act'Further':
-							cls
-							cla
-							CLOSE ALL
-							gs'stat'
-								'<center><img src="images/qwest/alexey/bjcum14.jpg"></center>'
-								'Recovering from your orgasm you are now aware of what has happened:'
-								'You slowly move your mouth away from you brother''s member.'
-								'Kolka signs contently, clearly out of breath.'
-								'Slowly you get up not making eye contact. The room suddenly feels very quiet.'
-								'You don''t say anything as you get dressed.'
-							act'Dress':gt $CURLOC
-							end	
-							
-					end
+		cls
+		minut += 5
+		horny += 10
+		bj += 1
+		$boy = 'Kolka'
+		spafinloc = 12
+		sexpartkno = 1
+		gs 'cum_manage'
+		swallow += 1
+		brotherSex += 1
+		brotherSexCount -= 1
+		brotherEvSex = daystart
+		gs 'stat'
+		picrand = RAND(1,2)
+		'<center><img src="images/qwest/alter/ev2/brother/f (6.<<picrand>>).jpg"></center>'
+		'Getting down from the chair and onto the carpet, You are overcome with excitement and desire, lying under your brother you begin to caress your pussy.'
+		if vagina > 0:'You slip your fingers inside while softly moaning and panting.'
+		'You spot your brother''s member and you closely follow his every move, slowly he moves it towards your mouth, you open you lips and take it in. You feel warmth and excitement build up in your abdomen, you start to feel an orgasm coming, focusing on your brother''s member it begins to twitch, he groans and jets of his warm sperm fill your mouth you begin writhing as your orgasm washes over you at the same time.'
+		act'Further':
+			cls
+			cla
+			CLOSE ALL
+			gs'stat'
+				'<center><img src="images/qwest/alexey/bjcum14.jpg"></center>'
+				'Recovering from your orgasm you are now aware of what has happened:'
+				'You slowly move your mouth away from you brother''s member.'
+				'Kolka signs contently, clearly out of breath.'
+				'Slowly you get up not making eye contact. The room suddenly feels very quiet.'
+				'You don''t say anything as you get dressed.'
+			act'Dress':gt $CURLOC
+		end
 	end
 end
 
-
-
 --- brother ---------------------------------
 

+ 29 - 21
locations/dinSex

@@ -260,19 +260,22 @@ $veneradinitog = {
 		elseif tipvenerarand = 7:
 			!!syphilis
 			if rand(1, 100) > 95: Venera += 1
-			if SifacOnce = 0:SifacOnce = 1
+			if SifacOnce = 0:
+				SifacOnce = 1
 				Sifilis += 1
 			end
 		elseif tipvenerarand >= 5 and tipvenerarand < 7:
 			!!gonorrhea/triper
 			if rand(1, 100) > 95: Venera += 1
-            if TriperOnce = 0:TriperOnce = 1
+            if TriperOnce = 0:
+				TriperOnce = 1
 				Triper += 1
 			end
 		elseif tipvenerarand < 5:
 			!!candidiasis/thrush
 			if rand(1, 100) > 85:
-				if KandidozOnce = 0:KandidozOnce = 1
+				if KandidozOnce = 0:
+					KandidozOnce = 1
 					Kandidoz += 1
 				end
 			end
@@ -384,7 +387,8 @@ $sexstart2 = {
 				if silavag = 2:
 					orgrand = rand(50, 300)
 					if orgrand > preOrg: oragazm = 4
-				elseif silavag < 2: oragazm = 4
+				elseif silavag < 2:
+					oragazm = 4
 				end
 			elseif razeba = 4:
 				if silavag = 2:
@@ -447,13 +451,14 @@ $sexstart2 = {
 			willpower += 5
 			'You feel as his penis enters your pussy.You feel nice between your legs , but his <<dick>> inches dick is significantly less than your pussy and not enough for you. Gradually a pleasant warmth and pulsations is increasing in the abdomen, then the feeling a decreases a little and remained until the end.'
 		end
-		if vagina <= dick: vagina += 1
-		elseif vagina = 0 and mesec <= 0:
+		if vagina = 0:
 			horny = 0
 			manna -= 15
 			willpower -= 15
 			vagina += 1
 			'You have bitten your <<$liptalk>> in pain and tears started to flow from your eyes when <<$boy>> entered, breaking your hymen. You moan while crying and his <<dick>> centimeter dick fucks your bloody pussy.'
+		elseif vagina <= dick:
+			vagina += 1
 		end
 	if vagina < dick: vagina += 1
 	cumprecheck = 1
@@ -550,7 +555,8 @@ $sexstart3 = {
 				if silavag = 2:
 					orgrand = rand(50, 300)
 					if orgrand > preOrg:oragazm = 4
-				elseif silavag < 2: oragazm = 4
+				elseif silavag < 2:
+					oragazm = 4
 				end
 			elseif razeba = 4:
 				if silavag = 2:
@@ -614,15 +620,15 @@ $sexstart3 = {
 			willpower += 5
 			'You feel as his penis enters your pussy.You feel nice between your legs , but his <<dick>> inches dick is significantly less than your pussy and not enough for you. Gradually a pleasant warmth and pulsations is increasing in the abdomen, then the feeling a decreases a little and remained until the end.'
 		end
-		if vagina <= dick:vagina += 1
-		elseif vagina = 0 and mesec <= 0:
+		if vagina = 0:
 			horny = 0
 			manna -= 15
 			willpower -= 15
 			vagina += 1
-			'You have bitten your <<$liptalk>> in pain and tears started to flow from your eyes when <<$boy>> entered, breaking your hymen. You Weep and moan while you jump on strong <<dick>> centimeter dick with your bloody pussy.'
+			'You have bitten your <<$liptalk>> in pain and tears started to flow from your eyes when <<$boy>> entered, breaking your hymen. You moan while crying and his <<dick>> centimeter dick fucks your bloody pussy.'
+		elseif vagina <= dick:
+			vagina += 1
 		end
-		if vagina < dick:vagina += 1
 	end
 	cumprecheck = 1
 	gs 'cum_manage'
@@ -717,7 +723,8 @@ $sexstart4 = {
 				if silavag = 2:
 					orgrand = rand(50, 300)
 					if orgrand > preOrg:oragazm = 4
-				elseif silavag < 2: oragazm = 4
+				elseif silavag < 2:
+					oragazm = 4
 				end
 			elseif razeba = 4:
 				if silavag = 2:
@@ -781,15 +788,15 @@ $sexstart4 = {
 			willpower += 5
 			'You feel as a dick gets into your pussy, when <<$boy>> penetrated. You have a nice feeling between your legs, but a <<dick>> centimeters dick is too small for your pussy. Gradually a pleasant warmth and throbbing feeling grow in the lower abdomen, then feeling slightly reduced and remain until the end. '
 		end
-		if vagina <= dick:vagina += 1
-		elseif vagina = 0 and mesec <= 0:
+		if vagina = 0:
 			horny = 0
 			manna -= 15
 			willpower -= 15
 			vagina += 1
-			'You bit your lip in pain and tears streamed from your eyes when <<$boy>> penetrated, breaking your hymen. You are weeping and moaning while a strong <<dick>> centimeter dick fucks your bloody pussy.'
+			'You have bitten your <<$liptalk>> in pain and tears started to flow from your eyes when <<$boy>> entered, breaking your hymen. You moan while crying and his <<dick>> centimeter dick fucks your bloody pussy.'
+		elseif vagina <= dick:
+			vagina += 1
 		end
-		if vagina < dick:vagina += 1
 	end
 	cumprecheck = 1
 	gs 'cum_manage'
@@ -900,7 +907,8 @@ $sexudo = {
 				if silavag = 2:
 					orgrand = rand(50, 300)
 					if orgrand > preOrg:oragazm = 4
-				elseif silavag < 2: oragazm = 4
+				elseif silavag < 2:
+					oragazm = 4
 				end
 			elseif razeba = 4:
 				if silavag = 2:
@@ -965,15 +973,15 @@ $sexudo = {
 			willpower += 5
 			'You feel when <<$boy>> entered you. You feel nice between your legs , but his <<dick>> inches dick is significantly less than your pussy and not enough for you. Gradually a pleasant warmth and pulsations is increasing in the lower abdomen, then the feeling decreases a little and remained until the end.'
 		end
-		if vagina <= dick:vagina += 1
-		elseif vagina = 0 and mesec <= 0:
+		if vagina = 0:
 			horny = 0
 			manna -= 15
 			willpower -= 15
 			vagina += 1
-			'You bite your lip in pain and tears gushed from your eyes when <<$boy>> entered you, breaking your hymen. You moan while weeping as his strong <<dick>> centimeter dick fucks your bloody pussy.'
+			'You have bitten your <<$liptalk>> in pain and tears started to flow from your eyes when <<$boy>> entered, breaking your hymen. You moan while crying and his <<dick>> centimeter dick fucks your bloody pussy.'
+		elseif vagina <= dick:
+			vagina += 1
 		end
-		if vagina < dick:vagina += 1
 
 	cumprecheck = 1
 	gs 'cum_manage'

+ 2 - 2
locations/dinSex2

@@ -406,14 +406,14 @@ $doublepenetration = {
 
 		agapetime = totminut
 		DPass = 2
-	elseif anus+lubonus < dick2 and anus+lubonus+5 >= dick2:
+	elseif (anus + lubonus) < dick2 and (anus + lubonus + 5) >= dick2:
 		if agape = 2:agape = 3
 
 		if agape < 2:agape = 2
 
 		agapetime = totminut
 		DPass = 1
-	elseif anus +lubonus >= dick2:
+	elseif (anus + lubonus) >= dick2:
 		if agape = 2:agape = 3
 		if agape = 1:agape = 2
 		if agape < 1:agape = 1

+ 1 - 1
locations/din_bad

@@ -780,7 +780,7 @@ $d_cycreport_actor = {
 		else
 			denypreg = 0
 			thinkpreg = 0
-			temp[1] = daystart-daylastperiod
+			temp[1] = daystart - daylastperiod
 		end
 		dynamic $d_cycreport_update
 		gs 'stat'

+ 1 - 1
locations/poli

@@ -324,7 +324,7 @@ if $ARGS[0] = 'start':
 			preg = 0
 			nextbaby = arrsize('yearkid')
 			:poliabortloop
-			if Babyptype[nextbaby] < 200
+			if Babyptype[nextbaby] < 200:
 				KILLVAR 'polkid',nextbaby
 				KILLVAR '$kidname',nextbaby
 				KILLVAR 'kidage',nextbaby

+ 1 - 1
locations/scale.table

@@ -25,7 +25,7 @@ args['empty'] = 100 - args['x']
 if args['x'] > 0:
 	$ARGS['table'] += '<td width="<<args['x']>>%" bgcolor="#' + $ARGS[3] + '">&nbsp;</td>'
 elseif args['empty'] > 0:
-	$ARGS['table'] + = "<td width="<<args['empty']>>%" bgcolor="#888888">&nbsp;</td>"
+	$ARGS['table'] + = '<td width="<<args['empty']>>%" bgcolor="#888888">&nbsp;</td>'
 end
 
 $ARGS['table'] += '</tr></table>'

+ 14 - 7
locations/sexdvoe

@@ -29,14 +29,21 @@ if $ARGS[0] = 'menu':
 		end
 	else
 		act 'Continue':
-			if BlowBan = 1 and DoubleBan ! 1:sexdvoe = rand(1,3)
-			elseif BlowBan = 1 and DoubleBan = 1:sexdvoe = rand(2,3)
-			else sexdvoe = rand(0,3)
+			if BlowBan = 1 and DoubleBan ! 1:
+				sexdvoe = rand(1,3)
+			elseif BlowBan = 1 and DoubleBan = 1:
+				sexdvoe = rand(2,3)
+			else
+				sexdvoe = rand(0,3)
 			end
-			if sexdvoe = 0:sexdvoeloc = 0 & gt 'sexdvoe', 'sex'
-			elseif sexdvoe = 1:sexdvoeloc = rand(3,4) & gt 'sexdvoe', 'sex'
-			elseif sexdvoe = 2:sexdvoeloc = rand(5,6) & gt 'sexdvoe', 'sex'
-			else sexdvoeloc = rand(1,2) & gt 'sexdvoe', 'sex'
+			if sexdvoe = 0:
+				sexdvoeloc = 0 & gt 'sexdvoe', 'sex'
+			elseif sexdvoe = 1:
+				sexdvoeloc = rand(3,4) & gt 'sexdvoe', 'sex'
+			elseif sexdvoe = 2:
+				sexdvoeloc = rand(5,6) & gt 'sexdvoe', 'sex'
+			else
+				sexdvoeloc = rand(1,2) & gt 'sexdvoe', 'sex'
 			end
 		end
 	end

+ 43 - 44
locations/sisterQW

@@ -632,59 +632,58 @@ if $ARGS[0] = 'sisboyQW_party':
 	'And you cheerful asked Anja:'
 	'- You miss your sister Th, as well-ka fun, until devastate the glass, I will not leave you..'
 	'Free cups was not, and she gave you a bottle of booze in hand.'
-		act 'Drink':
-			cls
-			minut += 15
-			alko += 3
-			cumspclnt = 2
-			gs 'cum_cleanup'
-			fbreath = 0
-			gs'stat'
-			'<center><img src="images/qwest/alter/sisterQW/Party/sisboyQWParty_9.jpg"></center>'
-			'You took the bottle from his hands Ani.
+	act 'Drink':
+		cls
+		minut += 15
+		alko += 3
+		cumspclnt = 2
+		gs 'cum_cleanup'
+		fbreath = 0
+		gs'stat'
+		'<center><img src="images/qwest/alter/sisterQW/Party/sisboyQWParty_9.jpg"></center>'
+		'You took the bottle from his hands Ani.
 - Well, let`s go the full, - and gulp down the throat with a strong intoxicating beverage, the sound and gogate company.
 - Look, Baba drinking more than you, - with these words, everyone began to drink kitty..'
-			dynamic $sisboy_dance
-			dynamic $sisboy_drink
-			dynamic $sisboy_sit
-		end
-		act 'Try to forgo':
-			cls
-			minut += 15
-			alko += 3
-			cumspclnt = 2
-			gs 'cum_cleanup'
-			fbreath = 0
-			gs'stat'
-			'<center><img src="images/qwest/alter/sisterQW/Party/sisboyQWParty_9.jpg"></center>'
-			'You are friendly tried to refuse to drink.
+		dynamic $sisboy_dance
+		dynamic $sisboy_drink
+		dynamic $sisboy_sit
+	end
+	act 'Try to forgo':
+		cls
+		minut += 15
+		alko += 3
+		cumspclnt = 2
+		gs 'cum_cleanup'
+		fbreath = 0
+		gs'stat'
+		'<center><img src="images/qwest/alter/sisterQW/Party/sisboyQWParty_9.jpg"></center>'
+		'You are friendly tried to refuse to drink.
 But seeing this choir began to shout: "Drink, drink, drink, drink, drink,drink...."
 Realizing, which is a little nagarajuna company just will not leave..
 You took the bottle from his hands Ani, and gulp down the throat with a strong intoxicating beverage, the sound and gogate company.'
-			dynamic $sisboy_dance
-			dynamic $sisboy_drink
-			dynamic $sisboy_sit
-		end
-		act 'To get up to dance':
-			cls
-			minut += 15
-			alko += 3
-			cumspclnt = 2
-			gs 'cum_cleanup'
-			fbreath = 0
-			gs'stat'
-			'<center><img src="images/qwest/alter/sisterQW/Party/sisboyQWParty_9.jpg"></center>'
-			'Standing, you tried to get out from behind his Desk, to go dancing, but no one was there, all sat and drank.
+		dynamic $sisboy_dance
+		dynamic $sisboy_drink
+		dynamic $sisboy_sit
+	end
+	act 'To get up to dance':
+		cls
+		minut += 15
+		alko += 3
+		cumspclnt = 2
+		gs 'cum_cleanup'
+		fbreath = 0
+		gs'stat'
+		'<center><img src="images/qwest/alter/sisterQW/Party/sisboyQWParty_9.jpg"></center>'
+		'Standing, you tried to get out from behind his Desk, to go dancing, but no one was there, all sat and drank.
 Seeing, you got up and want to leave the table, Rex pulled you over:
 - Where are you, it`s only the beginning, hold the bottle, and let`s drink, otherwise I would be offended.
 You couldn`t deny the birthday boy, took the bottle from his hands,  and gulp down the throat with a strong intoxicating beverage, the sound and gogate company.'
-			dynamic $sisboy_dance
-			dynamic $sisboy_drink
-			dynamic $sisboy_sit
-		end
-	!elseif sisboypartyQW >= 2:
-	!	gt'sbReksHome','party'
+		dynamic $sisboy_dance
+		dynamic $sisboy_drink
+		dynamic $sisboy_sit
 	end
+!elseif sisboypartyQW >= 2:
+!	gt'sbReksHome','party'
 end
 
 $sisboy_dance = {

+ 1 - 1
locations/stat

@@ -541,7 +541,7 @@ end
 if kid > 0:
 	i = arrsize('yearkid')
 	:LoopKidAgeCounter
-	if 	i >= 0
+	if 	i >= 0:
 		if yearkid[i] = year + 1 and monthkid[i] = month and daykid[i] = day: msg'It is <<$kidname[i]>>''s birthday today.'
 		i -= 1
 		jump 'LoopKidAgeCounter'

+ 1 - 1
locations/stat_display

@@ -679,7 +679,7 @@ cumanus = 0
 if $clothingworntype = 'nude' and lactatemess > 0:
 	if lactatemess < 3:
 		pl'<font color = black>You have a little milk residue around your nipples.</font>'
-	elseif if lactatemess < 7:
+	elseif lactatemess < 7:
 		pl'<font color = black>You have a lot of milk residue around your nipples.</font>'
 	else
 		pl'<font color = black>Your breasts are drenched with milk residue.</font>'

+ 1 - 1
locations/vanrPar

@@ -24,7 +24,7 @@ if $ARGS[0] = '':
 	! WD: Correct Image path ~ "images/qwest/alter/<<$loc>>.jpg"
 	'<center><img src="images/qwest/alter/vanrPar.jpg"></center>'
 	'The bathroom is very small and unimpressive. Nevertheless, it has everything you need: a shower, toilet, <a href="exec:GT ''mirror'',''start''">mirror</a>, sink and even a bath tub.'
-	if vanr_hanger = 1: 'Next to the sink, you find the neatly folded <a href="exec:dynamic $vanr_hanger_dress & tanga = tanga_hanger & GT ''vanrPar'' ">clothes</a> Mom washed for you'.
+	if vanr_hanger = 1: 'Next to the sink, you find the neatly folded <a href="exec:dynamic $vanr_hanger_dress & tanga = tanga_hanger & GT ''vanrPar'' ">clothes</a> Mom washed for you.'
 
 	if stanok > 0:'Your razor will last for <b><<stanok>></b> more shavings.'
 	!WD: heal chafe