Browse Source

[changed] small day 0 patch to the likelyhood

anjuna krokus 1 month ago
parent
commit
a249035d22
1 changed files with 2 additions and 2 deletions
  1. 2 2
      locations/blackmailer.qsrc

+ 2 - 2
locations/blackmailer.qsrc

@@ -11,7 +11,7 @@ if $ARGS[0] = 'init_check':
 	temp_prob_chance += max(fame['pav_slut'], fame['city_slut'])
 	temp_prob_chance += max(fame['pav_modelling'], fame['city_modelling']) / 10
 	temp_prob_chance += max(fame['pav_porn'], fame['city_porn']) / 10
-	temp_prob_chance -= 10 * max(0, min(exhibitionism_lvl, 3))
+	temp_prob_chance -= 15 * min(exhibitionism_lvl * exhibitionism_lvl, 9)
 	if temp_prob_chance > 600: killvar 'temp_prob_chance' & exit
 
 	if $ARGS[1] = 'tits':
@@ -24,7 +24,7 @@ if $ARGS[0] = 'init_check':
 		temp_prob_chance -= 100
 	end
 
-	if rand(0, temp_prob_chance) > 1: exit
+	if rand(0, temp_prob_chance) >= 2: exit
 	killvar 'temp_prob_chance'
 
 	gs 'blackmailer', 'init_blackmail', $ARGS[1]