Forráskód Böngészése

[Bug & Typo fixes] General corrections to fix bugs and text passages.

Myles Croft (Hooded Silence) 2 hete
szülő
commit
7e7f60b28b

+ 1 - 1
MakeQSP.bat

@@ -164,7 +164,7 @@ goto menu
 set start=%time%
 
 echo.
-echo validating...
+echo Validating ...
 python tools\txtmerge.py locations glife.txt
 
 @ECHO ON

+ 1 - 1
locations/emp_functions.qsrc

@@ -135,7 +135,7 @@ if $ARGS[0] = 'gen_schedule':
 		set_hour = hour * 2
 		$msg_centre = ' | <a href="exec:gs ''emp_functions'', ''gen_schedule'', <<set_hour>>"><b>Jump to current time</b></a>'
 	else
-		msg_centre = ''
+		$msg_centre = ''
 	end
 	if (mod_max_hour - 8) > 0:
 		set_hour = ARGS[1] - 8

+ 1 - 1
locations/gad_gphouse.qsrc

@@ -25,7 +25,7 @@ if $ARGS[0] = 'entry' or $ARGS[0] = 'start':
 	gs 'gad_gphouse', 'nudity_trouble_limit'
 	gs 'gad_gphouse', 'enter_events'
 
-	if ARGS[1] ! '':
+	if $ARGS[1] ! '':
 		gt $loc, $ARGS[1]
 	else
 		gt $loc, 'main'

+ 1 - 1
locations/npc_274_init.qsrc

@@ -23,7 +23,7 @@ if $ARGS[0] = 'scheduler':
 		elseif hour= 17 and hour < 18:
 			$locat['maya'] = 'kitchen'
 		elseif hour = 18 and hour < 22:
-			$locat['maya'] = rand(1,2)
+			locat['maya'] = rand(1,2)
 			if $locat['maya'] = '1':
 				maya['home'] = 1
 				$locat['maya'] = 'living_room'

+ 4 - 4
locations/npcstatic6.qsrc

@@ -535,8 +535,8 @@ gs 'npcstaticdefaults', 'body', 'model'
 !! mod appearance NPC settings, height in cm, weight in kg
 $npc_haircolour['A<<npctemp>>'] = 'Blonde'
 $npc_eyecolour['A<<npctemp>>'] = 'blue'
-$npc_height['A<<npctemp>>'] = 160
-$npc_weight['A<<npctemp>>'] = 50
+npc_height['A<<npctemp>>'] = 160
+npc_weight['A<<npctemp>>'] = 50
 $npc_img_path['A<<npctemp>>'] = 'images/characters/pushkin/maya'
 gs 'npcstaticdefaults', 'defaults'
 gs 'npcstaticdefaults', 'skills', 'dance', 'sport'
@@ -610,8 +610,8 @@ npc_hotcat['A<<npctemp>>'] = 6
 !! mod appearance NPC settings, height in cm, weight in kg
 $npc_haircolour['A<<npctemp>>'] = 'Brunette'
 $npc_eyecolour['A<<npctemp>>'] = 'Blue'
-$npc_height['A<<npctemp>>'] = 145
-$npc_weight['A<<npctemp>>'] = 40
+npc_height['A<<npctemp>>'] = 145
+npc_weight['A<<npctemp>>'] = 40
 $npc_img_path['A<<npctemp>>'] = 'images/characters/pushkin/gasha'
 gs 'npcstaticdefaults', 'defaults'
 gs 'npcstaticdefaults', 'skills', 'dance', 'sport'

+ 4 - 4
locations/shortgs.qsrc

@@ -789,11 +789,11 @@ if $ARGS[0] = 'clothing_status':
 	if $clothingworntype = 'ballet_secrets' and $shoeworntype = 'ballet_secrets': $apparel['status'] = 'dance'
 	if $clothingworntype = 'moncheri_gown' and $shoeworntype = 'moncheri_shoes': $apparel['status'] = 'ballgown'
 	!! Failsafe
-	if apparel['status'] = '':
-		if apparel['panty'] ! '':
-			apparel['status'] = apparel['panty']
+	if $apparel['status'] = '':
+		if $apparel['panty'] ! '':
+			$apparel['status'] = $apparel['panty']
 		else
-			apparel['status'] = apparel['bra']
+			$apparel['status'] = $apparel['bra']
 		end
 	end
 end