Procházet zdrojové kódy

[fixed] Wear and tear updated to use new clothing variables

KevinSmarts před 3 roky
rodič
revize
1452b71912
2 změnil soubory, kde provedl 29 přidání a 18 odebrání
  1. 1 1
      locations/clothing.qsrc
  2. 28 17
      locations/starenie.qsrc

+ 1 - 1
locations/clothing.qsrc

@@ -943,7 +943,7 @@ if $ARGS[0] = 'wear':
 	$clothingworntype = $ARGS[1]
 	clothingwornnumber = ARGS[2]
 
-	dynamic $ARGS[1] + 'W[<<ARGS[2]>>] = 1'
+	dynamic $ARGS[1] + '_w[<<ARGS[2]>>] = 1'
 
 	gs 'clothing_attributes', $ARGS[1], ARGS[2]
 

+ 28 - 17
locations/starenie.qsrc

@@ -1,19 +1,30 @@
 # starenie
 
-$loc_clothestypes[1]='cheap'
-$loc_clothestypes[2]='average'
-$loc_clothestypes[3]='expensive'
-$loc_clothestypes[4]='formal'
-$loc_clothestypes[5]='office'
-$loc_clothestypes[6]='school'
-$loc_clothestypes[7]='exercise'
-$loc_clothestypes[8]='fetish'
-$loc_clothestypes[9]='exhibit'
-$loc_clothestypes[10]='uniform'
+$loc_clothestypes[1]='gm_outfits'
+$loc_clothestypes[2]='gm_dress'
+$loc_clothestypes[3]='gm_office'
+$loc_clothestypes[4]='gm_school'
+$loc_clothestypes[5]='gm_uniform'
+$loc_clothestypes[6]='misc_outfits'
+$loc_clothestypes[7]='cats_dress'
+$loc_clothestypes[8]='cats_outfits'
+$loc_clothestypes[9]='flamingos_dress'
+$loc_clothestypes[10]='flamingos_outfits'
 $loc_clothestypes[11]='coat'
-$loc_clothestypes[12]='swimwear'
-$loc_clothestypes[13]='burlesque'
-$loc_clothestypes[14]='alternative'
+$loc_clothestypes[12]='coco_dress'
+$loc_clothestypes[13]='coco_outfits'
+$loc_clothestypes[14]='fashionista'
+$loc_clothestypes[15]='moncheri'
+$loc_clothestypes[16]='beach'
+$loc_clothestypes[17]='exhibit'
+$loc_clothestypes[18]='fetish'
+$loc_clothestypes[19]='fancy_burlesque'
+$loc_clothestypes[20]='dolls_outfits'
+$loc_clothestypes[21]='dolls_dress'
+$loc_clothestypes[22]='bomba_outfits'
+$loc_clothestypes[23]='bomba_dress'
+$loc_clothestypes[24]='exercise'
+$loc_clothestypes[25]='swimwear'
 
 
 ! disable wearing base school form
@@ -25,14 +36,14 @@ j = 1
 	i = 1
 	:loopclonum
 	dynamic "
-		if <<$loc_clothestypes[j]>>W[i] = 1:
-			<<$loc_clothestypes[j]>>W[i] = 0
+		if <<$loc_clothestypes[j]>>_w[i] = 1:
+			<<$loc_clothestypes[j]>>_w[i] = 0
 			<<$loc_clothestypes[j]>>_h[i] -= 1
 		end
 	"
 	i += 1
-	if i < ARRSIZE('<<$loc_clothestypes[j]>>W'):jump 'loopclonum'
-killvar '$<<$loc_clothestypes[j]>>W'
+	if i < ARRSIZE('<<$loc_clothestypes[j]>>_w'):jump 'loopclonum'
+killvar '$<<$loc_clothestypes[j]>>_w'
 j += 1
 if j < ARRSIZE('$loc_clothestypes'):jump 'loopclotype'