Przeglądaj źródła

Made it a bit nice and made sure the guitar can be used on 1st day too

netuttki 1 rok temu
rodzic
commit
d87520e7cd
1 zmienionych plików z 16 dodań i 5 usunięć
  1. 16 5
      locations/city_musicstore.qsrc

+ 16 - 5
locations/city_musicstore.qsrc

@@ -126,11 +126,8 @@ if $ARGS[0] = 'buycheapacoustic':
 		'Jimmy puts the guitar in a gigbag, and drops a set of strings and picks in the pocket. "A proper starter kit" he states and rings up the purchase.'
 	end
 	'He looks at you thoughtfully, then drops a thick, slightly worn booklet in the bag "Some stuff to learn from" he says handing your purchase to you "Congratulations, welcome to the starving musician community."'
-	ml_guitars['jb-budget-acoustic'] = 1
-	ml_strings = 2
-	ml_guitar['chordbook'] = 1
-	ml_guitar['hasguitar'] = 1 
-	ml_guitar['carried'] = 1
+	
+	gs 'city_musicstore', 'first_setup'
 	
 	if $ARGS[1] = 'money': money -= 3400
 	if $ARGS[2] = 'karta': karta -= 3400
@@ -155,4 +152,18 @@ if $ARGS[0] = 'payandtakestuff':
 	killvar 'ml_hardcase'
 	act 'Leave': gt 'torgcentr'
 end
+
+if $ARGS[0] = 'first_setup':
+	!! First instrument and other items
+	ml_guitars['jb-budget-acoustic'] = 1
+	ml_strings = 2
+	ml_guitar['chordbook'] = 1
+	ml_guitar['hasguitar'] = 1 
+	ml_guitar['carried'] = 1
+
+	!! Has to set it here as cikl calculates it otherwise at midnight
+	ml_performance['max_perform_minutes'] = pcs_instrmusic + pcs_vokal
+	ml_performance['performed_minutes'] = 0
+end
+
 --- city_musicstore ---------------------------------