Browse Source

[fixed] some variables got turned into incorrect arrays

hornguy6 1 year ago
parent
commit
82dbbcc148
1 changed files with 4 additions and 4 deletions
  1. 4 4
      locations/foto.qsrc

+ 4 - 4
locations/foto.qsrc

@@ -19,8 +19,8 @@ if $ARGS[0] = 'start':
 	else
 		'Entering the studio, you head to the back room to strip down.'
 	end
-	special_model['status'] = rand(30,1400)
-	special_skill_model['status'] = rand(1,500)
+	special_model['roll'] = rand(30,1400)
+	special_skill_model['roll'] = rand(1,500)
 	foto['documentary'] = rand(1,100)
 	act'Strip down':
 		cla & *clr
@@ -151,8 +151,8 @@ if $ARGS[0] = 'studio':
 
 	if model['spcial_job_day'] ! daystart:
 		model['spcial_job_day'] = daystart
-		if special_model['status'] < min(fame['city_modelling'], 700) and modelfoto['topless'] > 0 and hour < 15: gt 'foto_events', 'fame'
-		if special_skill_model['status'] < pcs_mdlng and modelfoto['nip'] > 0: gt 'foto_events', 'skill'
+		if special_model['roll'] < min(fame['city_modelling'], 700) and modelfoto['topless'] > 0 and hour < 15: gt 'foto_events', 'fame'
+		if special_skill_model['roll'] < pcs_mdlng and modelfoto['nip'] > 0: gt 'foto_events', 'skill'
 		if foto['documentary'] >= 95 and $pantyworntype = 'none' and modelfoto['shoots']>= foto['documentary_timer']: gt 'foto_model_documentary', '1st_documentary'
 	end