Browse Source

Merge remote-tracking branch 'slanon/suggestions'

KevinSmarts 4 years ago
parent
commit
ea5d48bbf4

+ 215 - 90
locations/npccleanc.qsrc

@@ -3,96 +3,221 @@
 !! {This code should be called to purge a specific NPC. It expects an ARGS[0] of the code of the C array.}
 $tempcclean = $ARGS[0]
 
-$npc_firstname[$tempcclean] = ''
-$npc_nickname[$tempcclean] = ''
-$npc_lastname[$tempcclean] = ''
-$npc_usedname[$tempcclean] = ''
-$npc_notes[$tempcclean] = ''
-npc_dob[$tempcclean] = 0
-npc_vital[$tempcclean] = 0
-npc_stren[$tempcclean] = 0
-npc_intel[$tempcclean] = 0
-npc_agil[$tempcclean] = 0
-npc_sprt[$tempcclean] = 0
-npc_magik[$tempcclean] = 0
-npc_drunk[$tempcclean] = 0
-npc_pantys[$tempcclean] = 0
-npc_cyc[$tempcclean] = 0
-npc_fert[$tempcclean] = 0
-$npc_firstpart[$tempcclean] = ''
-$npc_lastpart[$tempcclean] = ''
-$npc_kidpater[$tempcclean] = ''
-npc_gender[$tempcclean] = 0
-$npc_thdick[$tempcclean] = ''
-npc_dick[$tempcclean] = 0
-npc_sexskill[$tempcclean] = 0
-npc_spermpot[$tempcclean] = 0
-npc_vag[$tempcclean] = 0
-npc_ass[$tempcclean] = 0
-npc_hymen[$tempcclean] = 0
-npc_horny[$tempcclean] = 0
-npc_Pavrep[$tempcclean] = 0
-npc_Godrep[$tempcclean] = 0
-npc_apprnc[$tempcclean] = 0
-npc_lipbalm[$tempcclean] = 0
-npc_makeup[$tempcclean] = 0
-npc_sweat[$tempcclean] = 0
-npc_dye[$tempcclean] = 0
-npc_hairbsh[$tempcclean] = 0
-npc_skin[$tempcclean] = 0
-npc_bodyhair[$tempcclean] = 0
-npc_breath[$tempcclean] = 0
-npc_hipcurv[$tempcclean] = 0
-npc_hgt[$tempcclean] = 0
-npc_bust[$tempcclean] = 0
-npc_nips[$tempcclean] = 0
-npc_fat[$tempcclean] = 0
-npc_pubes[$tempcclean] = 0
-npc_hairlng[$tempcclean] = 0
-npc_haircol[$tempcclean] = 0
-npc_haircurl[$tempcclean] = 0
-npc_tan[$tempcclean] = 0
-npc_lip[$tempcclean] = 0
-npc_lashes[$tempcclean] = 0
-npc_eyesize[$tempcclean] = 0
-npc_eyecol[$tempcclean] = 0
-npc_dom[$tempcclean] = 0
-npc_sub[$tempcclean] = 0
-npc_glasses[$tempcclean] = 0
-npc_grades[$tempcclean] = 0
-npc_run[$tempcclean] = 0
-npc_vball[$tempcclean] = 0
-npc_shoot[$tempcclean] = 0
-npc_sewing[$tempcclean] = 0
-npc_serving[$tempcclean] = 0
-npc_chess[$tempcclean] = 0
-npc_dance[$tempcclean] = 0
-npc_danceero[$tempcclean] = 0
-npc_jab[$tempcclean] = 0
-npc_punch[$tempcclean] = 0
-npc_kick[$tempcclean] = 0
-npc_def[$tempcclean] = 0
-npc_vokal[$tempcclean] = 0
-npc_teach[$tempcclean] = 0
-npc_QW[$tempcclean] = 0
-npc_rel[$tempcclean] = 0
-npc_love[$tempcclean] = 0
-npc_job[$tempcclean] = 0
-npc_cloc[$tempcclean] = 0
-$npc_dad[$tempcclean] = ''
-$npc_mom[$tempcclean] = ''
-$npc_pic[$tempcclean] = ''
-npc_herpes[$tempcclean] = 0
-npc_syth[$tempcclean] = 0
-npc_gon[$tempcclean] = 0
-npc_chlam[$tempcclean] = 0
-npc_genwart[$tempcclean] = 0
-npc_thrush[$tempcclean] = 0
-npc_malen[$tempcclean] = 0
-npc_chem[$tempcclean] = 0
-npc_clothpref[$tempcclean] = 0
-$npc_PersType[$tempcclean] = ''
-$npc_dna[$tempcclean] = ''
+if mid($tempcclean, 1, 1) = 'C' and npc_firstname['$tempcclean'] > 0:
+    !! {create arrays to loop through}
+    ! {array for strings}
+    $tmpStrArr[0] = 'npc_firstname'
+    $tmpStrArr[] = 'npc_nickname'
+    $tmpStrArr[] = 'npc_lastname'
+    $tmpStrArr[] = 'npc_usedname'
+    $tmpStrArr[] = 'npc_notes'
+    $tmpStrArr[] = 'npc_firstpart'
+    $tmpStrArr[] = 'npc_lastpart'
+    $tmpStrArr[] = 'npc_kidpater'
+    $tmpStrArr[] = 'npc_thdick'
+    $tmpStrArr[] = 'npc_dad'
+    $tmpStrArr[] = 'npc_mom'
+    $tmpStrArr[] = 'npc_pic'
+    $tmpStrArr[] = 'npc_PersType'
+    $tmpStrArr[] = 'npc_dna'
+    ! {array for ints}
+    $tmpIntArr[0] = 'npc_dob'
+    $tmpIntArr[] = 'npc_vital'
+    $tmpIntArr[] = 'npc_stren'
+    $tmpIntArr[] = 'npc_intel'
+    $tmpIntArr[] = 'npc_agil'
+    $tmpIntArr[] = 'npc_sprt'
+    $tmpIntArr[] = 'npc_magik'
+    $tmpIntArr[] = 'npc_drunk'
+    $tmpIntArr[] = 'npc_pantys'
+    $tmpIntArr[] = 'npc_cyc'
+    $tmpIntArr[] = 'npc_fert'
+    $tmpIntArr[] = 'npc_gender'
+    $tmpIntArr[] = 'npc_dick'
+    $tmpIntArr[] = 'npc_sexskill'
+    $tmpIntArr[] = 'npc_spermpot'
+    $tmpIntArr[] = 'npc_vag'
+    $tmpIntArr[] = 'npc_ass'
+    $tmpIntArr[] = 'npc_hymen'
+    $tmpIntArr[] = 'npc_horny'
+    $tmpIntArr[] = 'npc_Pavrep'
+    $tmpIntArr[] = 'npc_Godrep'
+    $tmpIntArr[] = 'npc_apprnc'
+    $tmpIntArr[] = 'npc_lipbalm'
+    $tmpIntArr[] = 'npc_makeup'
+    $tmpIntArr[] = 'npc_sweat'
+    $tmpIntArr[] = 'npc_dye'
+    $tmpIntArr[] = 'npc_hairbsh'
+    $tmpIntArr[] = 'npc_skin'
+    $tmpIntArr[] = 'npc_bodyhair'
+    $tmpIntArr[] = 'npc_breath'
+    $tmpIntArr[] = 'npc_hipcurv'
+    $tmpIntArr[] = 'npc_hgt'
+    $tmpIntArr[] = 'npc_bust'
+    $tmpIntArr[] = 'npc_nips'
+    $tmpIntArr[] = 'npc_fat'
+    $tmpIntArr[] = 'npc_pubes'
+    $tmpIntArr[] = 'npc_hairlng'
+    $tmpIntArr[] = 'npc_haircol'
+    $tmpIntArr[] = 'npc_haircurl'
+    $tmpIntArr[] = 'npc_tan'
+    $tmpIntArr[] = 'npc_lip'
+    $tmpIntArr[] = 'npc_lashes'
+    $tmpIntArr[] = 'npc_eyesize'
+    $tmpIntArr[] = 'npc_eyecol'
+    $tmpIntArr[] = 'npc_dom'
+    $tmpIntArr[] = 'npc_sub'
+    $tmpIntArr[] = 'npc_glasses'
+    $tmpIntArr[] = 'npc_grades'
+    $tmpIntArr[] = 'npc_run'
+    $tmpIntArr[] = 'npc_vball'
+    $tmpIntArr[] = 'npc_shoot'
+    $tmpIntArr[] = 'npc_sewing'
+    $tmpIntArr[] = 'npc_serving'
+    $tmpIntArr[] = 'npc_chess'
+    $tmpIntArr[] = 'npc_dance'
+    $tmpIntArr[] = 'npc_danceero'
+    $tmpIntArr[] = 'npc_jab'
+    $tmpIntArr[] = 'npc_punch'
+    $tmpIntArr[] = 'npc_kick'
+    $tmpIntArr[] = 'npc_def'
+    $tmpIntArr[] = 'npc_vokal'
+    $tmpIntArr[] = 'npc_teach'
+    $tmpIntArr[] = 'npc_QW'
+    $tmpIntArr[] = 'npc_rel'
+    $tmpIntArr[] = 'npc_love'
+    $tmpIntArr[] = 'npc_job'
+    $tmpIntArr[] = 'npc_cloc'
+    $tmpIntArr[] = 'npc_herpes'
+    $tmpIntArr[] = 'npc_syth'
+    $tmpIntArr[] = 'npc_gon'
+    $tmpIntArr[] = 'npc_chlam'
+    $tmpIntArr[] = 'npc_genwart'
+    $tmpIntArr[] = 'npc_thrush'
+    $tmpIntArr[] = 'npc_malen'
+    $tmpIntArr[] = 'npc_chem'
+    $tmpIntArr[] = 'npc_clothpref'
+
+    ! {loop through the arrays to kill entries}
+    tmpArrIndex = 0
+    :cleanupstrloop
+    if tmpArrIndex < arrsize('$tmpStrArr'):
+        tmpNpcIndex = arrpos(('<<$tmpStrArr[tmpArrIndex]>>'), val('<<mid($tempcclean, 2)>>'))
+        if tmpNpcIndex >= 0:
+            killvar '<<$tmpStrArr[tmpArrIndex]>>', tmpNpcIndex
+        end
+        tmpArrIndex += 1
+        jump 'cleanupstrloop'
+    end
+    tmpArrIndex = 0
+    :cleanupintloop
+    if tmpArrIndex < arrsize('$tmpIntArr'):
+        tmpNpcIndex = arrpos(('$<<$tmpIntArr[tmpArrIndex]>>'), '<<mid($tempcclean, 2)>>')
+        if tmpNpcIndex >= 0:
+            killvar ('$<<$tmpIntArr[tmpArrIndex]>>'), tmpNpcIndex
+        end
+        tmpArrIndex += 1
+        jump 'cleanupintloop'
+    end
+
+    ! {cleanup}
+    killvar 'tmpArrIndex'
+    killvar 'tmpNpcIndex'
+    killvar 'tmpStrArr'
+    killvar 'tmpIntArr'
+else
+	! {legacy code in case there is no corresponding index: just sets values to default}
+	$npc_firstname[$tempcclean] = ''
+	$npc_nickname[$tempcclean] = ''
+	$npc_lastname[$tempcclean] = ''
+	$npc_usedname[$tempcclean] = ''
+	$npc_notes[$tempcclean] = ''
+	npc_dob[$tempcclean] = 0
+	npc_vital[$tempcclean] = 0
+	npc_stren[$tempcclean] = 0
+	npc_intel[$tempcclean] = 0
+	npc_agil[$tempcclean] = 0
+	npc_sprt[$tempcclean] = 0
+	npc_magik[$tempcclean] = 0
+	npc_drunk[$tempcclean] = 0
+	npc_pantys[$tempcclean] = 0
+	npc_cyc[$tempcclean] = 0
+	npc_fert[$tempcclean] = 0
+	$npc_firstpart[$tempcclean] = ''
+	$npc_lastpart[$tempcclean] = ''
+	$npc_kidpater[$tempcclean] = ''
+	npc_gender[$tempcclean] = 0
+	$npc_thdick[$tempcclean] = ''
+	npc_dick[$tempcclean] = 0
+	npc_sexskill[$tempcclean] = 0
+	npc_spermpot[$tempcclean] = 0
+	npc_vag[$tempcclean] = 0
+	npc_ass[$tempcclean] = 0
+	npc_hymen[$tempcclean] = 0
+	npc_horny[$tempcclean] = 0
+	npc_Pavrep[$tempcclean] = 0
+	npc_Godrep[$tempcclean] = 0
+	npc_apprnc[$tempcclean] = 0
+	npc_lipbalm[$tempcclean] = 0
+	npc_makeup[$tempcclean] = 0
+	npc_sweat[$tempcclean] = 0
+	npc_dye[$tempcclean] = 0
+	npc_hairbsh[$tempcclean] = 0
+	npc_skin[$tempcclean] = 0
+	npc_bodyhair[$tempcclean] = 0
+	npc_breath[$tempcclean] = 0
+	npc_hipcurv[$tempcclean] = 0
+	npc_hgt[$tempcclean] = 0
+	npc_bust[$tempcclean] = 0
+	npc_nips[$tempcclean] = 0
+	npc_fat[$tempcclean] = 0
+	npc_pubes[$tempcclean] = 0
+	npc_hairlng[$tempcclean] = 0
+	npc_haircol[$tempcclean] = 0
+	npc_haircurl[$tempcclean] = 0
+	npc_tan[$tempcclean] = 0
+	npc_lip[$tempcclean] = 0
+	npc_lashes[$tempcclean] = 0
+	npc_eyesize[$tempcclean] = 0
+	npc_eyecol[$tempcclean] = 0
+	npc_dom[$tempcclean] = 0
+	npc_sub[$tempcclean] = 0
+	npc_glasses[$tempcclean] = 0
+	npc_grades[$tempcclean] = 0
+	npc_run[$tempcclean] = 0
+	npc_vball[$tempcclean] = 0
+	npc_shoot[$tempcclean] = 0
+	npc_sewing[$tempcclean] = 0
+	npc_serving[$tempcclean] = 0
+	npc_chess[$tempcclean] = 0
+	npc_dance[$tempcclean] = 0
+	npc_danceero[$tempcclean] = 0
+	npc_jab[$tempcclean] = 0
+	npc_punch[$tempcclean] = 0
+	npc_kick[$tempcclean] = 0
+	npc_def[$tempcclean] = 0
+	npc_vokal[$tempcclean] = 0
+	npc_teach[$tempcclean] = 0
+	npc_QW[$tempcclean] = 0
+	npc_rel[$tempcclean] = 0
+	npc_love[$tempcclean] = 0
+	npc_job[$tempcclean] = 0
+	npc_cloc[$tempcclean] = 0
+	$npc_dad[$tempcclean] = ''
+	$npc_mom[$tempcclean] = ''
+	$npc_pic[$tempcclean] = ''
+	npc_herpes[$tempcclean] = 0
+	npc_syth[$tempcclean] = 0
+	npc_gon[$tempcclean] = 0
+	npc_chlam[$tempcclean] = 0
+	npc_genwart[$tempcclean] = 0
+	npc_thrush[$tempcclean] = 0
+	npc_malen[$tempcclean] = 0
+	npc_chem[$tempcclean] = 0
+	npc_clothpref[$tempcclean] = 0
+	$npc_PersType[$tempcclean] = ''
+	$npc_dna[$tempcclean] = ''    
+end
 
 i = arrsize('$cemptyarray')
 $cemptyarray[i] = $tempcclean

+ 111 - 1
locations/npcgeneratec.qsrc

@@ -31,6 +31,9 @@ else
 end
 carraynumber += 1
 
+! {moved up to here}
+npclastgeneratedn = mid($npclastgenerated, 2)
+
 ! {Now we need a random birthday based on the rough age given.}
 npctempc1[1] = year - npctempgage
 npctempc1[2] = rand(1,12)
@@ -46,6 +49,8 @@ end
 npc_dob[$npclastgenerated] = npctempc1[1] * 10000
 npc_dob[$npclastgenerated] += (npctempc1[2] * 100)
 npc_dob[$npclastgenerated] += npctempc1[3]
+! {we save the unique number of the npc, to be able to get the index of the array via arrpos}
+$npc_dob[$npclastgenerated] = '<<npclastgeneratedn>>'
 
 ! {Now, we set the variable for the stat randomization as well as calculate chance of virginity.}
 if npctempgage < 18:
@@ -66,6 +71,11 @@ else
 	$npc_kidpater[$npclastgenerated] = 'N'
 	npc_sexskill[$npclastgenerated] = 0
 end
+! {index}
+npc_firstpart[$npclastgenerated] = npclastgeneratedn
+npc_lastpart[$npclastgenerated] = npclastgeneratedn
+npc_kidpater[$npclastgenerated] = npclastgeneratedn
+$npc_sexskill[$npclastgenerated] = '<<npclastgeneratedn>>'
 
 
 ! {Then we need to give them a name, and establish their official gender}
@@ -141,6 +151,18 @@ else
 		npc_hymen[$npclastgenerated] = 0
 	end
 end
+! {index}
+$npc_gender[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_cyc[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_fert[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_spermpot[$npclastgenerated] = '<<npclastgeneratedn>>'
+npc_thdick[$npclastgenerated] = npclastgeneratedn
+$npc_dick[$npclastgenerated] = '<<npclastgeneratedn>>'
+npc_notes[$npclastgenerated] = npclastgeneratedn
+$npc_bust[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_nips[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_hymen[$npclastgenerated] = '<<npclastgeneratedn>>'
+
 
 ! {Then we set the names, and the stat high ends as determined earlier.}
 gs 'npcrnamefile', 'rusSur'
@@ -153,6 +175,16 @@ npc_stren[$npclastgenerated] = rand(1,npctempc2)
 npc_intel[$npclastgenerated] = rand(1,npctempc2)
 npc_agil[$npclastgenerated] = rand(1,npctempc2)
 npc_sprt[$npclastgenerated] = rand(1,npctempc2)
+! {index}
+npc_firstname[$npclastgenerated] = npclastgeneratedn
+npc_nickname[$npclastgenerated] = npclastgeneratedn
+npc_lastname[$npclastgenerated] = npclastgeneratedn
+npc_usedname[$npclastgenerated] = npclastgeneratedn
+$npc_vital[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_stren[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_intel[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_agil[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_sprt[$npclastgenerated] = '<<npclastgeneratedn>>'
 
 ! {Then we call out other stats}
 npc_magik[$npclastgenerated] = 0
@@ -160,11 +192,21 @@ npc_drunk[$npclastgenerated] = 0
 npc_pantys[$npclastgenerated] = 0
 npc_vag[$npclastgenerated] = 0
 npc_ass[$npclastgenerated] = 0
+! {index}
+$npc_magik[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_drunk[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_pantys[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_vag[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_ass[$npclastgenerated] = '<<npclastgeneratedn>>'
 
 ! {NPCs start with random horniness}
 npc_horny[$npclastgenerated] = rand(0,60)
 npc_Pavrep[$npclastgenerated] = 0
 npc_Godrep[$npclastgenerated] = 0
+! {index}
+$npc_horny[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_Pavrep[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_Godrep[$npclastgenerated] = '<<npclastgeneratedn>>'
 
 ! {Random attractiveness}
 npc_apprnc[$npclastgenerated] = rand(30,60)
@@ -173,6 +215,13 @@ npc_makeup[$npclastgenerated] = 0
 npc_sweat[$npclastgenerated] = 0
 npc_dye[$npclastgenerated] = 0
 npc_hairbsh[$npclastgenerated] = 0
+! {index}
+$npc_apprnc[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_lipbalm[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_makeup[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_sweat[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_dye[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_hairbsh[$npclastgenerated] = '<<npclastgeneratedn>>'
 
 ! {Random skin quality and body hair}
 npc_skin[$npclastgenerated] = rand(30,70)
@@ -181,6 +230,13 @@ npc_breath[$npclastgenerated] = 0
 npc_hipcurv[$npclastgenerated]  = 0
 npc_hgt[$npclastgenerated] = 0
 npc_fat[$npclastgenerated] = 0
+! {index}
+$npc_skin[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_bodyhair[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_breath[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_hipcurv[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_hgt[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_fat[$npclastgenerated] = '<<npclastgeneratedn>>'
 
 ! {Random pubic hair}
 npc_pubes[$npclastgenerated] = rand(0,1)
@@ -194,6 +250,18 @@ npc_eyesize[$npclastgenerated] = 0
 npc_eyecol[$npclastgenerated] = 0
 npc_dom[$npclastgenerated] = 0
 npc_sub[$npclastgenerated] = 0
+! {index}
+$npc_pubes[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_hairlng[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_haircol[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_haircurl[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_tan[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_lip[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_lashes[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_eyesize[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_eyecol[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_dom[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_sub[$npclastgenerated] = '<<npclastgeneratedn>>'
 
 ! {Random glasses, grades, and other skills, based on age established above.}
 npc_glasses[$npclastgenerated] = rand(0,1)
@@ -212,20 +280,48 @@ npc_kick[$npclastgenerated] = rand(0,(npctempc2 + 10))
 npc_def[$npclastgenerated] = rand(0,(npctempc2 + 10))
 npc_vokal[$npclastgenerated] = rand(0,(npctempc2 + 10))
 npc_teach[$npclastgenerated] = rand(0,(npctempc2 + 10))
+! {index}
+$npc_glasses[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_grades[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_run[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_vball[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_shoot[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_sewing[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_serving[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_chess[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_dance[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_danceero[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_jab[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_punch[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_kick[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_def[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_vokal[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_teach[$npclastgenerated] = '<<npclastgeneratedn>>'
 
 ! {Starting at 0 quest state and love for the character, and slightly disliked.}
 npc_QW[$npclastgenerated]= 0
 npc_rel[$npclastgenerated] = 40
 npc_love[$npclastgenerated] = 0
+! {index}
+$npc_QW[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_rel[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_love[$npclastgenerated] = '<<npclastgeneratedn>>'
 
 ! {Start unemployed and unspecified location}
 npc_job[$npclastgenerated] = 0
 npc_cloc[$npclastgenerated] = 0
+! {index}
+$npc_job[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_cloc[$npclastgenerated] = '<<npclastgeneratedn>>'
 
 ! {Unspecified dad and <<$npc_nickname[''A29'']>>, and picture. We could have a stock group of pictures and have it pick based on certain attribute types, but...}
 $npc_dad[$npclastgenerated] = 'U'
 $npc_mom[$npclastgenerated] = 'U'
 $npc_pic[$npclastgenerated] = 'xPICx'
+! {index}
+npc_dad[$npclastgenerated] = npclastgeneratedn
+npc_mom[$npclastgenerated] = npclastgeneratedn
+npc_pic[$npclastgenerated] = npclastgeneratedn
 
 ! {STDs are not randomly given here. For characters with a STD, you need to gs npcgenext rstd. It will be expecting an npclastgeneratedn variable.}
 npc_herpes[$npclastgenerated] = 0
@@ -235,18 +331,32 @@ npc_chlam[$npclastgenerated] = 0
 npc_genwart[$npclastgenerated] = 0
 npc_Thrush[$npclastgenerated] = 0
 npc_Malen[$npclastgenerated] = 0
+! {index}
+$npc_herpes[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_syth[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_gon[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_chlam[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_genwart[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_Thrush[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_Malen[$npclastgenerated] = '<<npclastgeneratedn>>'
 
 ! {Chemestry and clothing preference are unspecified}
 npc_Chem[$npclastgenerated] = 0
 npc_Clothpref[$npclastgenerated] = 0
+! {index}
+$npc_Chem[$npclastgenerated] = '<<npclastgeneratedn>>'
+$npc_Clothpref[$npclastgenerated] = '<<npclastgeneratedn>>'
 
 ! {Personality is called up}
 gs 'npcgenext', 'pers'
 $npc_PersType[$npclastgenerated] = $npctempgn[6]
-npclastgeneratedn = mid($npclastgenerated, 2)
+! {index}
+npc_PersType[$npclastgenerated] = npclastgeneratedn
 
 ! {Creating the DNA of the character. If it is someone specific, like father, mother, daughter, sone, etc. then should be overwritten.}
 $npc_dna[$npclastgenerated] = func('DNA','create')
+! {index}
+npc_dna[$npclastgenerated] = npclastgeneratedn
 
 ! {Variables are cleaned up.}
 killvar '$npctempgn'

File diff suppressed because it is too large
+ 95 - 486
locations/npcstatic1.qsrc


+ 63 - 498
locations/npcstatic2.qsrc

@@ -2,347 +2,205 @@
 
 
 npctemp = 50
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1435367511 1891990398 1521901210 1459906326 1825460937 1413691134 1744017772'
 $npc_firstname['A<<npctemp>>'] = 'Stas'
 $npc_notes['A<<npctemp>>'] = 'Supermarket Manager'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
 $npc_thdick['A<<npctemp>>'] = 'thicker than average'
 npc_dick['A<<npctemp>>'] = 15
 npc_sexskill['A<<npctemp>>'] = 1
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
-npc_nips['A<<npctemp>>'] = 1
 
 
 npctemp = 51
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1852796600 2106532432 1184050637 1847025401 1606707948 1039681085 1957750328'
 $npc_firstname['A<<npctemp>>'] = 'Vitali'
 $npc_usedname['A<<npctemp>>'] = 'Vitali'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
 $npc_thdick['A<<npctemp>>'] = 'massive'
 npc_dick['A<<npctemp>>'] = 18
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
-npc_nips['A<<npctemp>>'] = 1
 
 
 npctemp = 52
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1571713339 1381421911 1129274296 1580593240 1693511984 1798824352 1655802955'
 $npc_firstname['A<<npctemp>>'] = 'Nicholas'
 $npc_lastname['A<<npctemp>>'] = 'Polyakov'
 $npc_usedname['A<<npctemp>>'] = 'Nicholas'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
 $npc_thdick['A<<npctemp>>'] = 'thick'
 npc_dick['A<<npctemp>>'] = 16
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
-npc_nips['A<<npctemp>>'] = 1
 
 
 npctemp = 53
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1987201506 1646392419 1036777300 1820041031 1625967645 1373112497 1790005211'
 $npc_firstname['A<<npctemp>>'] = 'Joe'
 $npc_notes['A<<npctemp>>'] = 'Joe the Plumber'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
 $npc_thdick['A<<npctemp>>'] = 'thicker than average'
 npc_dick['A<<npctemp>>'] = 20
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
-npc_nips['A<<npctemp>>'] = 1
 
 
 npctemp = 54
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '2134980269 1704535752 1434251081 1076620970 1443727294 1838260118 1205245791'
 $npc_firstname['A<<npctemp>>'] = 'Mikhail'
 $npc_nickname['A<<npctemp>>'] = 'Uncle Misha'
 $npc_usedname['A<<npctemp>>'] = 'uncle Misha'
 $npc_notes['A<<npctemp>>'] = 'Local Crime Lord'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
+gs 'npcstaticdefaults', 'group', 'family'
 $npc_thdick['A<<npctemp>>'] = 'massive'
 npc_dick['A<<npctemp>>'] = 18
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
-npc_nips['A<<npctemp>>'] = 1
-npc_grupTipe['A<<npctemp>>'] = 7
-npc_selfieon['A<<npctemp>>'] = 1
 $npc_selfie['A<<npctemp>>'] = '<a href="exec:numnpc = 54 & gt ''phone_selfies'', ''listretrieve2''"><<$npc_usedname[''A54'']>>'
 
 
 npctemp = 55
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1160422782 1599231242 1170518020 1844217422 1970929518 1568598475 1217564731'
 $npc_firstname['A<<npctemp>>'] = 'Oluuosegun'
 $npc_nickname['A<<npctemp>>'] = 'Olu'
 $npc_lastname['A<<npctemp>>'] = 'Maina'
 $npc_usedname['A<<npctemp>>'] = 'Olu'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
 $npc_thdick['A<<npctemp>>'] = 'monstrous'
 npc_dick['A<<npctemp>>'] = 30
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
-npc_nips['A<<npctemp>>'] = 1
 
 
 npctemp = 56
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1731740316 1035407288 1124546006 1260253434 1082292496 1455110922 1434089976'
 $npc_firstname['A<<npctemp>>'] = 'Roma'
 $npc_nickname['A<<npctemp>>'] = 'Roma'
 $npc_lastname['A<<npctemp>>'] = 'Meynold'
 $npc_usedname['A<<npctemp>>'] = 'Roma'
 $npc_notes['A<<npctemp>>'] = 'Your Sister''s Boyfriend. Brother to Katja and Viktoriya.'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
+npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
+gs 'npcstaticdefaults', 'group', 'friends'
 $npc_firstpart['A<<npctemp>>'] = 'A33'
 $npc_lastpart['A<<npctemp>>'] = 'A33'
-$npc_kidpater['A<<npctemp>>'] = 'N'
-npc_gender['A<<npctemp>>'] = 0
 $npc_thdick['A<<npctemp>>'] = 'thicker than average'
 npc_dick['A<<npctemp>>'] = 17
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
-npc_nips['A<<npctemp>>'] = 1
-npc_grupTipe['A<<npctemp>>'] = 8
-npc_selfieon['A<<npctemp>>'] = 1
-$npc_selfie['A<<npctemp>>'] = '<a href="exec:numnpc = 56 & gt ''phone_selfies'', ''listretrieve2''"><<$npc_firstname[''A56'']>> <<$npc_lastname[''A56'']>></a>'
 
 
 npctemp = 57
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1173276062 1427985989 1736266892 1028816280 1824359669 1132882533 1134471109'
 $npc_firstname['A<<npctemp>>'] = 'Rex'
 $npc_usedname['A<<npctemp>>'] = 'Rex'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
+npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
+gs 'npcstaticdefaults', 'group', 'friends'
 $npc_firstpart['A<<npctemp>>'] = 'V'
 $npc_lastpart['A<<npctemp>>'] = 'V'
-$npc_kidpater['A<<npctemp>>'] = 'N'
-npc_gender['A<<npctemp>>'] = 0
 $npc_thdick['A<<npctemp>>'] = 'well proportioned'
 npc_dick['A<<npctemp>>'] = 14
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
-npc_nips['A<<npctemp>>'] = 1
-npc_grupTipe['A<<npctemp>>'] = 8
-npc_selfieon['A<<npctemp>>'] = 1
-$npc_selfie['A<<npctemp>>'] = '<a href="exec:numnpc = 57 & gt ''phone_selfies'', ''listretrieve2''"><<$npc_firstname[''A57'']>>'
 
 
 npctemp = 58
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1443401856 1151112047 8321006077 1153217734 1305220298 7921283143 7765736018'
 $npc_firstname['A<<npctemp>>'] = 'Zhendos'
 $npc_nickname['A<<npctemp>>'] = 'Zhen'
 $npc_lastname['A<<npctemp>>'] = 'Mikhailov'
 $npc_usedname['A<<npctemp>>'] = 'Zhendos'
 $npc_notes['A<<npctemp>>'] = 'Your Brother''s Friend.'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
+npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
 $npc_firstpart['A<<npctemp>>'] = 'V'
 $npc_lastpart['A<<npctemp>>'] = 'V'
-$npc_kidpater['A<<npctemp>>'] = 'N'
-npc_gender['A<<npctemp>>'] = 0
 $npc_thdick['A<<npctemp>>'] = 'thicker than average'
 npc_dick['A<<npctemp>>'] = 14
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
-npc_nips['A<<npctemp>>'] = 1
 
 
 npctemp = 59
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1670044870 1746541889 1939734844 1792989216 1320934850 1111430962 2142228809'
 $npc_firstname['A<<npctemp>>'] = 'Mishan'
 $npc_nickname['A<<npctemp>>'] = 'Misha'
 $npc_lastname['A<<npctemp>>'] = 'Andreev'
 $npc_usedname['A<<npctemp>>'] = 'Mishan'
 $npc_notes['A<<npctemp>>'] = 'Your brother''s friend.'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
+npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
 $npc_firstpart['A<<npctemp>>'] = 'V'
 $npc_lastpart['A<<npctemp>>'] = 'V'
-$npc_kidpater['A<<npctemp>>'] = 'N'
-npc_gender['A<<npctemp>>'] = 0
 $npc_thdick['A<<npctemp>>'] = 'well proportioned'
 npc_dick['A<<npctemp>>'] = 13
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
-npc_nips['A<<npctemp>>'] = 1
 
 
 npctemp = 60
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1277459319 1572128651 2011848683 1766614432 1751115695 2053109941 2123319868'
 $npc_firstname['A<<npctemp>>'] = 'miroslava'
 $npc_nickname['A<<npctemp>>'] = 'Mira'
 $npc_usedname['A<<npctemp>>'] = 'Mira'
 $npc_notes['A<<npctemp>>'] = 'Girl from Gadukino. Daughter of Afanasiy'
 npc_dob['A<<npctemp>>'] = ((school_year - 1) * 10000) + 0805
-npc_cyc['A<<npctemp>>'] = rand(0,29)
-npc_fert['A<<npctemp>>'] = 1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 1
-$npc_thdick['A<<npctemp>>'] = 'clitoris'
-npc_dick['A<<npctemp>>'] = -1
-npc_spermpot['A<<npctemp>>'] = -1
+gs 'npcstaticdefaults', 'defaults'
 npc_bust['A<<npctemp>>'] = 9
-npc_nips['A<<npctemp>>'] = 4
 $npc_pic['A<<npctemp>>'] = 'images/characters/village/mira/mira.jpg'
 
 
 npctemp = 61
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1674740055 1616332471 1238320018 1885547841 1948804143 1271878978 1383881679'
 $npc_firstname['A<<npctemp>>'] = 'Kolyamba'
 $npc_usedname['A<<npctemp>>'] = 'Kolyamba'
 $npc_notes['A<<npctemp>>'] = 'Boy from Gadukino'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
 $npc_thdick['A<<npctemp>>'] = 'thicker than average'
 npc_dick['A<<npctemp>>'] = 16
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
-npc_nips['A<<npctemp>>'] = 1
 
 
 npctemp = 62
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1461313531 1705318453 1315320361 1648677747 1742189125 1337017581 1188201934'
 $npc_firstname['A<<npctemp>>'] = 'Vasyanya'
 $npc_nickname['A<<npctemp>>'] = 'Vasyan'
 $npc_usedname['A<<npctemp>>'] = 'Vasyan'
 $npc_notes['A<<npctemp>>'] = 'Boy from Gadukino'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
 $npc_thdick['A<<npctemp>>'] = 'thicker than average'
 npc_dick['A<<npctemp>>'] = 15
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
-npc_nips['A<<npctemp>>'] = 1
 
 
 npctemp = 63
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1262037798 1489580076 1482201365 1230199953 1331830585 1923429750 1570327975'
 $npc_firstname['A<<npctemp>>'] = 'Dimitriy'
 $npc_nickname['A<<npctemp>>'] = 'Mitka'
 $npc_usedname['A<<npctemp>>'] = 'Mitka'
 $npc_notes['A<<npctemp>>'] = 'He is barely older than you, you remember him from your childhood.  You both used to swim in the local river together.'
 npc_dob['A<<npctemp>>'] = (school_year * 10000) + 117
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
 $npc_thdick['A<<npctemp>>'] = 'thick'
 npc_dick['A<<npctemp>>'] = 18
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
-npc_nips['A<<npctemp>>'] = 1
-npc_dom['A<<npctemp>>'] = 50
 $npc_pic['A<<npctemp>>'] = 'images/locations/gadukino/village/mitka.jpg'
 
 
 npctemp = 64
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '2011848683 2053109941 2123319868 1126381092 1930867160 1481040265 1607304091'
 $npc_firstname['A<<npctemp>>'] = 'Afanasiy'
 $npc_usedname['A<<npctemp>>'] = 'Afanasiy'
 $npc_notes['A<<npctemp>>'] = 'Mira''s Father'
 npc_dob['A<<npctemp>>'] = (pcs_dob - (pcs_dob mod 10000)) + 34523
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
 $npc_thdick['A<<npctemp>>'] = 'thick'
 npc_dick['A<<npctemp>>'] = 18
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
-npc_nips['A<<npctemp>>'] = 1
 $npc_pic['A<<npctemp>>'] = 'images/locations/gadukino/village/mirafather.jpg'
 
 
 npctemp = 65
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1407717462 1572128651 2011848683 1766614432 1751115695 2053109941 2123319868'
 $npc_firstname['A<<npctemp>>'] = 'Evel'
 $npc_nickname['A<<npctemp>>'] = 'Evel'
 $npc_lastname['A<<npctemp>>'] = 'Knievel'
 $npc_notes['A<<npctemp>>'] = 'Mira''s Brother'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
 $npc_thdick['A<<npctemp>>'] = 'thick'
 npc_dick['A<<npctemp>>'] = 20
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
-npc_nips['A<<npctemp>>'] = 1
 
 
 npctemp = 66
@@ -350,670 +208,377 @@ npctemp = 66
 
 
 npctemp = 67
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1770994710 1045056456 1630291439 1823144512 2022969490 1003713468 1769557695'
 $npc_firstname['A<<npctemp>>'] = 'Big C'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'U'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
 $npc_thdick['A<<npctemp>>'] = 'monstrous'
 npc_dick['A<<npctemp>>'] = 21
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
-npc_nips['A<<npctemp>>'] = 1
 
 
 npctemp = 68
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1180829350 1861722783 1533731343 2060083553 1474192936 1030861215 1441974536'
 $npc_firstname['A<<npctemp>>'] = 'Perth'
 $npc_nickname['A<<npctemp>>'] = 'Peter'
 $npc_lastname['A<<npctemp>>'] = 'Petrovich'
 $npc_usedname['A<<npctemp>>'] = 'Dr. Petrovich'
 $npc_notes['A<<npctemp>>'] = 'The gynocologist in Pavlovsk'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
 $npc_thdick['A<<npctemp>>'] = 'slim'
 npc_dick['A<<npctemp>>'] = 13
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
-npc_nips['A<<npctemp>>'] = 1
 
 
 npctemp = 69
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1497408906 2062794580 1954918340 1284438971 1189615485 1330569260 1356806209'
 $npc_firstname['A<<npctemp>>'] = 'Mikhail'
 $npc_nickname['A<<npctemp>>'] = 'Coach'
 $npc_lastname['A<<npctemp>>'] = 'Nikolaevich'
 $npc_usedname['A<<npctemp>>'] = 'Mikhail N.'
 $npc_notes['A<<npctemp>>'] = 'Mikhail Nikolaevich is the coach of the Pavlovsk girls volleyball team. Was heading towards the big leagues and almost became a pro himself but an injury shattered those dreams. A bit harsh sometimes because he''s enormously competitive, always wanting to win no matter what. If you want to be a part of the squad you''ll have to put in work one way or another.'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
+gs 'npcstaticdefaults', 'group', 'teacher'
 $npc_thdick['A<<npctemp>>'] = 'well proportioned'
 npc_dick['A<<npctemp>>'] = 18
 npc_sexskill['A<<npctemp>>'] = 2
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
-npc_nips['A<<npctemp>>'] = 1
-npc_grupTipe['A<<npctemp>>'] = 6
-npc_selfieon['A<<npctemp>>'] = 1
-$npc_selfie['A<<npctemp>>'] = '<a href="exec:numnpc = 69 & gt ''phone_selfies'', ''listretrieve2''"><<$npc_firstname[''A69'']>> <<$npc_lastname[''A69'']>></a>'
-schoolenable['A<<npctemp>>'] = 1
 discoenable['A<<npctemp>>'] = 1
-$npcGo['A<<npctemp>>'] = '<a href="exec:numnpc = 69 & gt ''Snpc''"><<$npc_firstname[''A69'']>> <<$npc_lastname[''A69'']>></a>'
-$school_static_num['A<<npctemp>>'] = 'A69'
 
 
 npctemp = 70
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1625103852 1058929809 1950538836 1778016905 1380420827 1079863842 1745265049'
 $npc_lastname['A<<npctemp>>'] = 'Katalkin'
 $npc_usedname['A<<npctemp>>'] = 'Captain Katalkin'
 $npc_notes['A<<npctemp>>'] = 'Pavlovsk police officer Captain Katalkin'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
 $npc_thdick['A<<npctemp>>'] = 'thick'
 npc_dick['A<<npctemp>>'] = 18
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
-npc_nips['A<<npctemp>>'] = 1
 
 
 npctemp = 71
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '2132719934 1311181050 1171683829 1946919542 1528886114 2035827969 1077439399'
 $npc_firstname['A<<npctemp>>'] = 'Pasha'
 $npc_usedname['A<<npctemp>>'] = 'Officer Pasha'
 $npc_notes['A<<npctemp>>'] = 'A Pavlovsk police officer.'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
 $npc_thdick['A<<npctemp>>'] = 'thick'
 npc_dick['A<<npctemp>>'] = 18
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
-npc_nips['A<<npctemp>>'] = 1
 
 
 npctemp = 72
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1416935739 1965395103 1375203982 1925522281 1102922011 2030344556 1049774393'
 $npc_firstname['A<<npctemp>>'] = 'Sergi'
 $npc_usedname['A<<npctemp>>'] = 'Officer Sergi'
 $npc_notes['A<<npctemp>>'] = 'A Pavlovsk police officer.'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
 $npc_thdick['A<<npctemp>>'] = 'thick'
 npc_dick['A<<npctemp>>'] = 19
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
-npc_nips['A<<npctemp>>'] = 1
 
 
 npctemp = 73
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '2012922376 1037502234 1553944791 1481530732 1811451079 1396452842 1984210226'
 $npc_firstname['A<<npctemp>>'] = 'Arthur'
 $npc_nickname['A<<npctemp>>'] = 'Arthur'
 $npc_usedname['A<<npctemp>>'] = 'Arthur'
 $npc_notes['A<<npctemp>>'] = 'An entrepeneur who owns market stalls in several locations.'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
 $npc_thdick['A<<npctemp>>'] = 'monstrous'
 npc_dick['A<<npctemp>>'] = 26
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
-npc_nips['A<<npctemp>>'] = 1
 
 
 npctemp = 74
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1770755490 1681513008 1124194992 1296486173 1065745146 1634914638 1526211903'
 $npc_firstname['A<<npctemp>>'] = 'Anatoly'
 $npc_nickname['A<<npctemp>>'] = 'Chubais'
 $npc_lastname['A<<npctemp>>'] = 'Borisovich'
 $npc_usedname['A<<npctemp>>'] = 'Anatoly'
 $npc_notes['A<<npctemp>>'] = 'Director of the Burger Bistro'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
+$npc_lastpart['A<<npctemp>>'] = 'A80'
 $npc_thdick['A<<npctemp>>'] = 'slim'
 npc_dick['A<<npctemp>>'] = 12
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
-npc_nips['A<<npctemp>>'] = 1
 
 
 npctemp = 75
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '2039225506 1786885929 1179834057 1525285053 1729741476 1870377171 1879004056'
 $npc_firstname['A<<npctemp>>'] = 'Sergei'
+$npc_lastname['A<<npctemp>>'] = 'Borisovich'
 $npc_usedname['A<<npctemp>>'] = 'Sergei'
 $npc_notes['A<<npctemp>>'] = 'Assistant Manager at the Burger Bistro, son of the owner.'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
 $npc_thdick['A<<npctemp>>'] = 'massive'
 npc_dick['A<<npctemp>>'] = 20
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
-npc_nips['A<<npctemp>>'] = 1
 npc_QW['A<<npctemp>>'] = 0
 npc_rel['A<<npctemp>>'] = 0
 npc_love['A<<npctemp>>'] = 0
 npc_job['A<<npctemp>>'] = 0
 npc_cloc['A<<npctemp>>'] = 0
-$npc_dad['A<<npctemp>>'] = 'A72'
+$npc_dad['A<<npctemp>>'] = 'A74'
+$npc_mom['A<<npctemp>>'] = 'A80'
 
 
 npctemp = 76
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1008510370 1518299135 1584717411 1093601930 1547392081 1332335506 1589745960'
 $npc_firstname['A<<npctemp>>'] = 'Ivan'
 $npc_usedname['A<<npctemp>>'] = 'Ivan'
 $npc_notes['A<<npctemp>>'] = 'Manager at the Burger Bistro'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
 $npc_thdick['A<<npctemp>>'] = 'thicker than average'
 npc_dick['A<<npctemp>>'] = 17
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
-npc_nips['A<<npctemp>>'] = 1
 
 
 npctemp = 77
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1971687970 1162271469 1942122372 1675574199 1926720739 1720477118 2120304425'
 $npc_firstname['A<<npctemp>>'] = 'Timothy'
 $npc_usedname['A<<npctemp>>'] = 'Timothy'
 $npc_notes['A<<npctemp>>'] = 'Lives in apartment 69 in the Residential area of the City'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
+npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
 $npc_firstpart['A<<npctemp>>'] = 'V'
 $npc_lastpart['A<<npctemp>>'] = 'V'
-$npc_kidpater['A<<npctemp>>'] = 'N'
-npc_gender['A<<npctemp>>'] = 0
 $npc_thdick['A<<npctemp>>'] = 'well proportioned'
 npc_dick['A<<npctemp>>'] = 14
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
-npc_nips['A<<npctemp>>'] = 1
 
 
 npctemp = 78
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1129198910 2123899265 2070826103 1263408683 1266342598 1852602642 1659580757'
 $npc_firstname['A<<npctemp>>'] = 'Vic'
 $npc_usedname['A<<npctemp>>'] = 'Vic'
 $npc_notes['A<<npctemp>>'] = 'Personnel Manager of the Burger Bistro.'
-npc_cyc['A<<npctemp>>'] = rand(0,29)
-npc_fert['A<<npctemp>>'] = 1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 1
-$npc_thdick['A<<npctemp>>'] = 'clitoris'
-npc_dick['A<<npctemp>>'] = -1
-npc_spermpot['A<<npctemp>>'] = -1
+gs 'npcstaticdefaults', 'defaults'
 npc_bust['A<<npctemp>>'] = 9
-npc_nips['A<<npctemp>>'] = 4
 
 
 npctemp = 79
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1493775493 1711020559 1913087213 1896156768 1664736488 1487004190 1687464440'
 $npc_firstname['A<<npctemp>>'] = 'Lena'
 $npc_notes['A<<npctemp>>'] = 'Coworker at the Burger Bistro.'
-npc_cyc['A<<npctemp>>'] = rand(0,29)
-npc_fert['A<<npctemp>>'] = 1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 1
-$npc_thdick['A<<npctemp>>'] = 'clitoris'
-npc_dick['A<<npctemp>>'] = -1
-npc_spermpot['A<<npctemp>>'] = -1
+gs 'npcstaticdefaults', 'defaults'
 npc_bust['A<<npctemp>>'] = 9
-npc_nips['A<<npctemp>>'] = 4
 
 
 npctemp = 80
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1043237462 1787303410 2015535291 1536406969 1119401804 1423821092 1202659815'
 $npc_lastname['A<<npctemp>>'] = 'Borisovich'
 $npc_usedname['A<<npctemp>>'] = 'Mrs. Borisovich'
 $npc_notes['A<<npctemp>>'] = 'Wife of Anatoly Borisovich.'
-npc_cyc['A<<npctemp>>'] = rand(0,29)
-npc_fert['A<<npctemp>>'] = 1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'A74'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 1
-$npc_thdick['A<<npctemp>>'] = 'clitoris'
-npc_dick['A<<npctemp>>'] = -1
-npc_spermpot['A<<npctemp>>'] = -1
+gs 'npcstaticdefaults', 'defaults'
+$npc_lastpart['A<<npctemp>>'] = 'A74'
 npc_bust['A<<npctemp>>'] = 9
-npc_nips['A<<npctemp>>'] = 4
 
 
 npctemp = 81
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1781969758 1233736852 1968991800 1271757488 1003619294 1186735786 1089618370'
 $npc_firstname['A<<npctemp>>'] = 'Alexei'
 $npc_usedname['A<<npctemp>>'] = 'Alexey'
 $npc_notes['A<<npctemp>>'] = 'Your vocal class instructor who is the DJ from the Disco.'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
 $npc_thdick['A<<npctemp>>'] = 'thicker than average'
 npc_dick['A<<npctemp>>'] = 20
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
-npc_nips['A<<npctemp>>'] = 1
 
 
 npctemp = 82
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1518919857 1263522764 1853362558 1903972455 1560042249 1858587108 1920541253'
 $npc_firstname['A<<npctemp>>'] = 'DeMarcus'
 $npc_usedname['A<<npctemp>>'] = 'DeMarcus'
 $npc_notes['A<<npctemp>>'] = 'African University Student'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
 $npc_thdick['A<<npctemp>>'] = 'monstrous'
 npc_dick['A<<npctemp>>'] = 24
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
-npc_nips['A<<npctemp>>'] = 1
 
 
 npctemp = 83
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1473539500 1300272748 1849153490 1148245338 1587757384 1435094984 1944660918'
 $npc_firstname['A<<npctemp>>'] = 'Goshi'
 $npc_usedname['A<<npctemp>>'] = 'Goshi'
 $npc_notes['A<<npctemp>>'] = 'A student in the University'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
 $npc_thdick['A<<npctemp>>'] = 'thick'
 npc_dick['A<<npctemp>>'] = 14
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
-npc_nips['A<<npctemp>>'] = 1
 
 
 npctemp = 84
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '2106927598 1295208699 1791495642 1377661124 2006483992 1113518034 1579903219'
 $npc_firstname['A<<npctemp>>'] = 'Kendra'
 $npc_notes['A<<npctemp>>'] = 'A female student in the University'
-npc_cyc['A<<npctemp>>'] = rand(0,29)
-npc_fert['A<<npctemp>>'] = 1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 1
-$npc_thdick['A<<npctemp>>'] = 'clitoris'
-npc_dick['A<<npctemp>>'] = -1
-npc_spermpot['A<<npctemp>>'] = -1
+gs 'npcstaticdefaults', 'defaults'
 npc_bust['A<<npctemp>>'] = 9
-npc_nips['A<<npctemp>>'] = 4
 
 
 npctemp = 85
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1938942779 2106314839 1289521515 1217866816 2023591880 1519928587 1939169723'
 $npc_firstname['A<<npctemp>>'] = 0
 $npc_nickname['A<<npctemp>>'] = 'Kas'
 $npc_notes['A<<npctemp>>'] = 'A black handyman from the office.'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
 $npc_thdick['A<<npctemp>>'] = 'thicker than average'
 npc_dick['A<<npctemp>>'] = 16
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
-npc_nips['A<<npctemp>>'] = 1
 
 
 npctemp = 86
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1292901057 1445078354 1576836749 1579962358 1713996320 2046365622 1579166032'
 $npc_firstname['A<<npctemp>>'] = 'Yaroslav'
 $npc_usedname['A<<npctemp>>'] = 'Yaroslav'
 $npc_notes['A<<npctemp>>'] = 'A businessman whose house you clean.'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
 $npc_thdick['A<<npctemp>>'] = 'thick'
 npc_dick['A<<npctemp>>'] = 20
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
-npc_nips['A<<npctemp>>'] = 1
 
 
 npctemp = 87
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1847378236 1162293273 1556619643 1329175895 1349109199 1613614049 1534225588'
 $npc_firstname['A<<npctemp>>'] = 'Boris'
 $npc_nickname['A<<npctemp>>'] = 0
 $npc_lastname['A<<npctemp>>'] = 'Ivanovich'
 $npc_notes['A<<npctemp>>'] = 'Cleaning Job Boss'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
 $npc_thdick['A<<npctemp>>'] = 'slim'
 npc_dick['A<<npctemp>>'] = 16
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
-npc_nips['A<<npctemp>>'] = 1
 
 
 npctemp = 88
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1072747711 1893613779 1095190471 1168304377 1119586478 1317838894 1161492926'
 $npc_firstname['A<<npctemp>>'] = 'Alexander'
 $npc_usedname['A<<npctemp>>'] = 'Alexander E.'
 $npc_notes['A<<npctemp>>'] = 'Owner of the Disco. A large bellied bald man.'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
 $npc_thdick['A<<npctemp>>'] = 'thick'
 npc_dick['A<<npctemp>>'] = 17
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
-npc_nips['A<<npctemp>>'] = 1
 
 
 npctemp = 89
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1686681956 1037303803 1438812408 1000615186 1838310950 1945611800 1031199730'
 $npc_firstname['A<<npctemp>>'] = 'Eugene'
 $npc_nickname['A<<npctemp>>'] = 'Eugene'
 $npc_usedname['A<<npctemp>>'] = 'Eugene'
 $npc_notes['A<<npctemp>>'] = 'A dickgirl whom is the barmaid at the barbeque by the lake. She has one testicle in her sack, the other having ascended to become an ovary. Sister of Angela.'
-npc_cyc['A<<npctemp>>'] = rand(0,29)
-npc_fert['A<<npctemp>>'] = 1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 1
+gs 'npcstaticdefaults', 'defaults'
 $npc_thdick['A<<npctemp>>'] = 'thick'
 npc_dick['A<<npctemp>>'] = 17
 npc_spermpot['A<<npctemp>>'] = 5000
 npc_bust['A<<npctemp>>'] = 9
-npc_nips['A<<npctemp>>'] = 4
 
 
 npctemp = 90
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1551794736 1037303803 1438812408 1000615186 1838310950 1945611800 1031199730'
 $npc_firstname['A<<npctemp>>'] = 'Angela'
 $npc_notes['A<<npctemp>>'] = 'Sister of Eugene, works as a cook at the barbecue by the lake.'
-npc_cyc['A<<npctemp>>'] = rand(0,29)
-npc_fert['A<<npctemp>>'] = 1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 1
-$npc_thdick['A<<npctemp>>'] = 'clitoris'
-npc_dick['A<<npctemp>>'] = -1
+gs 'npcstaticdefaults', 'defaults'
 npc_sexskill['A<<npctemp>>'] = 1
-npc_spermpot['A<<npctemp>>'] = -1
 npc_hymen['A<<npctemp>>'] = 5
 npc_bust['A<<npctemp>>'] = 9
-npc_nips['A<<npctemp>>'] = 4
 
 
 npctemp = 91
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1091682576 2037714665 1534661263 1602294938 1206288726 1612990215 1456060861'
 $npc_firstname['A<<npctemp>>'] = 'Abdul'
 $npc_usedname['A<<npctemp>>'] = 'Abdul'
 $npc_notes['A<<npctemp>>'] = 'Owns a market stall next to Arthur.'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
 $npc_thdick['A<<npctemp>>'] = 'massive'
 npc_dick['A<<npctemp>>'] = 21
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
-npc_nips['A<<npctemp>>'] = 1
 
 
 npctemp = 92
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1215179226 1132967920 1233565533 2074043785 1042603573 1361029355 2138150185'
 $npc_firstname['A<<npctemp>>'] = 'Hassan'
 $npc_usedname['A<<npctemp>>'] = 'Hassan'
 $npc_notes['A<<npctemp>>'] = 'Owns a market stall next to Arthur.'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
 $npc_thdick['A<<npctemp>>'] = 'thick'
 npc_dick['A<<npctemp>>'] = 18
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
-npc_nips['A<<npctemp>>'] = 1
 
 
 npctemp = 93
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1419539166 1635112879 1449039561 1653076316 1282274667 1815783068 1891294665'
 $npc_firstname['A<<npctemp>>'] = 'Irina'
 $npc_nickname['A<<npctemp>>'] = 'Ira'
 $npc_notes['A<<npctemp>>'] = 'Bar Waitress at the Residential Area Cafe.'
-npc_cyc['A<<npctemp>>'] = rand(0,29)
-npc_fert['A<<npctemp>>'] = 1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 1
-$npc_thdick['A<<npctemp>>'] = 'clitoris'
-npc_dick['A<<npctemp>>'] = -1
-npc_spermpot['A<<npctemp>>'] = -1
+gs 'npcstaticdefaults', 'defaults'
 npc_bust['A<<npctemp>>'] = 9
-npc_nips['A<<npctemp>>'] = 4
 
 
 npctemp = 94
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1867223522 1532675696 1762275784 1308084289 2089817449 1807718763 1325197727'
 $npc_firstname['A<<npctemp>>'] = 'Nadia'
 $npc_notes['A<<npctemp>>'] = 'Saleswoman of Hassan''s Stall in the Residential Area marketplace.'
-npc_cyc['A<<npctemp>>'] = rand(0,29)
-npc_fert['A<<npctemp>>'] = 1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 1
-$npc_thdick['A<<npctemp>>'] = 'clitoris'
-npc_dick['A<<npctemp>>'] = -1
-npc_spermpot['A<<npctemp>>'] = -1
+gs 'npcstaticdefaults', 'defaults'
 npc_bust['A<<npctemp>>'] = 9
-npc_nips['A<<npctemp>>'] = 4
 
 
 npctemp = 95
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1665716568 1089177521 1951416857 1629130965 1139147327 1335392254 1729246241'
 $npc_firstname['A<<npctemp>>'] = 'Anna'
 $npc_notes['A<<npctemp>>'] = 'Saleswoman of Abdul''s Stall'
-npc_cyc['A<<npctemp>>'] = rand(0,29)
-npc_fert['A<<npctemp>>'] = 1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 1
-$npc_thdick['A<<npctemp>>'] = 'clitoris'
-npc_dick['A<<npctemp>>'] = -1
-npc_spermpot['A<<npctemp>>'] = -1
+gs 'npcstaticdefaults', 'defaults'
 npc_bust['A<<npctemp>>'] = 9
-npc_nips['A<<npctemp>>'] = 4
 
 
 npctemp = 96
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1460502649 1673367532 1417003328 1868999426 1609397406 1943603327 1181997081'
 $npc_firstname['A<<npctemp>>'] = 'Katya'
 $npc_usedname['A<<npctemp>>'] = 'Aunt Katya'
 $npc_notes['A<<npctemp>>'] = 'A woman who sells pies in the residential area marketplace'
-npc_cyc['A<<npctemp>>'] = rand(0,29)
-npc_fert['A<<npctemp>>'] = 1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 1
-$npc_thdick['A<<npctemp>>'] = 'clitoris'
-npc_dick['A<<npctemp>>'] = -1
-npc_spermpot['A<<npctemp>>'] = -1
+gs 'npcstaticdefaults', 'defaults'
 npc_bust['A<<npctemp>>'] = 9
-npc_nips['A<<npctemp>>'] = 4
 
 
 npctemp = 97
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1094943856 1353290235 1572450107 1956501688 1542692525 1988448865 1619643443'
 $npc_firstname['A<<npctemp>>'] = 'Camille'
 $npc_notes['A<<npctemp>>'] = 'A Sexually agressive caucasian from the Residential Area marketplace.'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
 $npc_thdick['A<<npctemp>>'] = 'massive'
 npc_dick['A<<npctemp>>'] = 20
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
-npc_nips['A<<npctemp>>'] = 1
 
 
 npctemp = 98
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1236168432 1165329555 1245952733 1661287661 1117236841 1677164094 1151987548'
 $npc_firstname['A<<npctemp>>'] = 'Aslan'
 $npc_usedname['A<<npctemp>>'] = 'Aslan'
 $npc_notes['A<<npctemp>>'] = 'A Sexually agressive caucasian from the Residential Area marketplace.'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
 $npc_thdick['A<<npctemp>>'] = 'thicker than average'
 npc_dick['A<<npctemp>>'] = 17
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
-npc_nips['A<<npctemp>>'] = 1
 
 
 npctemp = 99
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1510466089 1004233017 1279999730 1803351444 1641046743 1766586587 1960434703'
 $npc_firstname['A<<npctemp>>'] = 'Mukhtar'
 $npc_usedname['A<<npctemp>>'] = 'Mukhtar'
 $npc_notes['A<<npctemp>>'] = 'A Sexually agressive caucasian from the Residential Area marketplace.'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
 $npc_thdick['A<<npctemp>>'] = 'massive'
 npc_dick['A<<npctemp>>'] = 18
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
-npc_nips['A<<npctemp>>'] = 1
 
 
 --- npcstatic2 ---------------------------------

+ 85 - 620
locations/npcstatic3.qsrc

@@ -5,341 +5,202 @@ npctemp = 100
 
 
 npctemp = 101
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1316262053 1139860599 1054558181 1564591207 1897612229 1770085065 1904973185'
 $npc_firstname['A<<npctemp>>'] = 'Andrew'
 $npc_lastname['A<<npctemp>>'] = 'Sobulyagin'
 $npc_usedname['A<<npctemp>>'] = 'Andrew M.'
 $npc_notes['A<<npctemp>>'] = 'Store Manager of Pussy Cats'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
 $npc_thdick['A<<npctemp>>'] = 'massive'
 npc_dick['A<<npctemp>>'] = 20
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
 
 
 npctemp = 102
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1543553151 1178430341 1325302453 1973698959 1957668534 1742596417 1164209202'
 $npc_firstname['A<<npctemp>>'] = 'Vasan'
 $npc_nickname['A<<npctemp>>'] = 'Nails'
 $npc_usedname['A<<npctemp>>'] = 'Bob'
 $npc_notes['A<<npctemp>>'] = 'A Gopnik'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
 $npc_thdick['A<<npctemp>>'] = 'well proportioned'
 npc_dick['A<<npctemp>>'] = 11
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
 
 
 npctemp = 103
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1067395578 2076484645 1105399915 1907879678 1427565612 1490215506 1150379156'
 $npc_firstname['A<<npctemp>>'] = 'Bereza'
 $npc_nickname['A<<npctemp>>'] = 'Birch'
 $npc_notes['A<<npctemp>>'] = 'A Gopnik'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
 $npc_thdick['A<<npctemp>>'] = 'well proportioned'
 npc_dick['A<<npctemp>>'] = 15
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
 
 
 npctemp = 104
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1043823602 2024518232 1177653510 1378276310 1952592877 1519571965 1344291245'
 $npc_firstname['A<<npctemp>>'] = 'Konstantin'
 $npc_nickname['A<<npctemp>>'] = 'Witek'
 $npc_notes['A<<npctemp>>'] = 'A Gopnik'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
 $npc_thdick['A<<npctemp>>'] = 'massive'
 npc_dick['A<<npctemp>>'] = 21
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
 
 
 npctemp = 105
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1142923155 1109221512 1878952508 1385940310 1720623901 2002904662 1060291391'
 $npc_firstname['A<<npctemp>>'] = 'Kostil'
 $npc_nickname['A<<npctemp>>'] = 'Spike'
 $npc_notes['A<<npctemp>>'] = 'A Gopnik'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
 $npc_thdick['A<<npctemp>>'] = 'thicker than average'
 npc_dick['A<<npctemp>>'] = 19
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
 
 
 npctemp = 106
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1417673067 1028156270 1577447008 1963640062 1937710404 1257008617 1439724726'
 $npc_firstname['A<<npctemp>>'] = 'Udmurt'
 $npc_nickname['A<<npctemp>>'] = 'Udmurt'
 $npc_notes['A<<npctemp>>'] = 'A Gopnik'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
 $npc_thdick['A<<npctemp>>'] = 'thick'
 npc_dick['A<<npctemp>>'] = 17
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
 
 
 npctemp = 107
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1844078701 1752959121 1178966198 1524261234 1583340322 1917049302 1492514745'
 $npc_firstname['A<<npctemp>>'] = 'Seri'
 $npc_nickname['A<<npctemp>>'] = 'Gray'
 $npc_notes['A<<npctemp>>'] = 'A Gopnik'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
 $npc_thdick['A<<npctemp>>'] = 'well proportioned'
 npc_dick['A<<npctemp>>'] = 16
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
 
 
 npctemp = 108
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1643991188 1952232493 1071028063 2074038111 1147795375 2118341095 1847972590'
 $npc_firstname['A<<npctemp>>'] = 'Vladimir'
 $npc_usedname['A<<npctemp>>'] = 'Vladimir'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
 $npc_thdick['A<<npctemp>>'] = 'thicker than average'
 npc_dick['A<<npctemp>>'] = 14
 npc_sexskill['A<<npctemp>>'] = 1
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
 
 
 npctemp = 109
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1746569371 1346237388 1813218844 1467700105 1086609823 1654865621 1715437717'
 $npc_firstname['A<<npctemp>>'] = 'Glory'
 $npc_nickname['A<<npctemp>>'] = 'Banzai'
 $npc_notes['A<<npctemp>>'] = 'Vladimir''s asian Driver. Crazy and a master of racing.'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
 $npc_thdick['A<<npctemp>>'] = 'slim'
 npc_dick['A<<npctemp>>'] = 14
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
 
 
 npctemp = 110
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1382385133 2015745814 1777689033 1679307387 1776217771 1917449428 2071160465'
 $npc_firstname['A<<npctemp>>'] = 'Vitaly'
 $npc_usedname['A<<npctemp>>'] = 'Vitaly'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
 $npc_thdick['A<<npctemp>>'] = 'slim'
 npc_dick['A<<npctemp>>'] = 12
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
 
 
 npctemp = 111
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1089725928 1899475061 1329520737 1102315698 1749072929 1621723771 1753154554'
 $npc_firstname['A<<npctemp>>'] = 'Isolde'
 npc_dob['A<<npctemp>>'] = 19970410
-npc_cyc['A<<npctemp>>'] = rand(0,29)
-npc_fert['A<<npctemp>>'] = 1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 1
-$npc_thdick['A<<npctemp>>'] = 'clitoris'
-npc_dick['A<<npctemp>>'] = -1
-npc_spermpot['A<<npctemp>>'] = -1
+gs 'npcstaticdefaults', 'defaults'
 npc_bust['A<<npctemp>>'] = 9
-npc_nips['A<<npctemp>>'] = 4
 $npc_pic['A<<npctemp>>'] = 'images/characters/city/isolde/izolda.jpg'
 
 
 npctemp = 112
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1357552191 1808035750 1644370082 1970842460 1776176573 1211917555 1776040163'
 $npc_firstname['A<<npctemp>>'] = 'Sergey'
 $npc_lastname['A<<npctemp>>'] = 'Shulgin'
 $npc_usedname['A<<npctemp>>'] = 'Sergey'
 $npc_notes['A<<npctemp>>'] = 'gray hair and a small beer belly, but still hearty looking. Father of Vasily.'
 npc_dob['A<<npctemp>>'] = 19670504
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
+gs 'npcstaticdefaults', 'group', 'friends'
 $npc_thdick['A<<npctemp>>'] = 'well proportioned'
 npc_dick['A<<npctemp>>'] = 16
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
-npc_grupTipe['A<<npctemp>>'] = 8
-npc_selfieon['A<<npctemp>>'] = 1
-$npc_selfie['A<<npctemp>>'] = '<a href="exec:numnpc = 112 & gt ''phone_selfies'', ''listretrieve2''"><<$npc_firstname[''A112'']>> <<$npc_lastname[''A112'']>></a>'
 
 
 npctemp = 113
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1774396206 1848301631 1697225452 1143268439 1252055647 2110725762 1260967419'
 $npc_firstname['A<<npctemp>>'] = 'Vadim'
 $npc_lastname['A<<npctemp>>'] = 'Bely'
 $npc_usedname['A<<npctemp>>'] = 'Vadim Bely'
 $npc_notes['A<<npctemp>>'] = 'He looks truly intimidating, his entire body covered in criminal gang tattoos. He''s the local crime lord of Pavlovsk.'
 npc_dob['A<<npctemp>>'] = 19900603
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
 $npc_thdick['A<<npctemp>>'] = 'well proportioned'
 npc_dick['A<<npctemp>>'] = 15
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
 
 
 npctemp = 114
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1774396205 1848301631 1697225452 1143268439 1252055647 2110725762 1260967419'
 $npc_firstname['A<<npctemp>>'] = 'Georgiy'
 $npc_lastname['A<<npctemp>>'] = 'Bely'
 $npc_notes['A<<npctemp>>'] = 'Vadim Bely''s younger brother. Covered in gang tattoos much like his brother.'
 npc_dob['A<<npctemp>>'] = 19930717
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
 $npc_thdick['A<<npctemp>>'] = 'massive'
 npc_dick['A<<npctemp>>'] = 21
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
 
 
 npctemp = 115
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1074209213 1187173282 1211031753 1535474248 1134590256 1026540873 1721369948'
 $npc_firstname['A<<npctemp>>'] = 'Siple'
 $npc_notes['A<<npctemp>>'] = 'One of Vadim Bely''s henchmen.'
 npc_dob['A<<npctemp>>'] = 19920420
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
 $npc_thdick['A<<npctemp>>'] = 'thick'
 npc_dick['A<<npctemp>>'] = 18
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
 
 
 npctemp = 116
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1542399937 1905241817 1701426477 1002823534 1464267474 1011697976 1988839911'
 $npc_firstname['A<<npctemp>>'] = 'Tatar'
 $npc_notes['A<<npctemp>>'] = 'One of Vadim Bely''s henchmen.'
 npc_dob['A<<npctemp>>'] = 19900223
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
 $npc_thdick['A<<npctemp>>'] = 'thick'
 npc_dick['A<<npctemp>>'] = 17
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
 
 
 npctemp = 117
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '4542399937 4905241817 4701426477 4002823534 4464267474 4011697976 4988839911'
 $npc_firstname['A<<npctemp>>'] = 'Dimitrij'
 $npc_nickname['A<<npctemp>>'] = 'Stallion'
 $npc_lastname['A<<npctemp>>'] = 'Zherebets'
 $npc_usedname['A<<npctemp>>'] = 'Stallion'
 npc_dob['A<<npctemp>>'] = 19911205
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
 $npc_thdick['A<<npctemp>>'] = 'well proportioned'
 npc_dick['A<<npctemp>>'] = 14
 npc_spermpot['A<<npctemp>>'] = 60000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
 
 
 npctemp = 118
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1705291842 1203561941 1602837590 1811774530 1215541632 1893678025 1991423109'
 $npc_firstname['A<<npctemp>>'] = 'Boris'
 $npc_nickname['A<<npctemp>>'] = 'Boris'
@@ -347,809 +208,413 @@ $npc_lastname['A<<npctemp>>'] = 'Barlovskaya'
 $npc_usedname['A<<npctemp>>'] = 'Mr. Barlovskaya'
 $npc_notes['A<<npctemp>>'] = 'Albina Barlovskaya''s Father. He is running for mayor of Pavlovsk.'
 npc_dob['A<<npctemp>>'] = 19720221
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
 $npc_thdick['A<<npctemp>>'] = 'well proportioned'
 npc_dick['A<<npctemp>>'] = 11
 npc_sexskill['A<<npctemp>>'] = 1
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
 
 
 npctemp = 119
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '2031631571 1995569440 1450381571 1372658726 1715345534 1718505125 1736791711'
 $npc_firstname['A<<npctemp>>'] = 'Borislav'
 $npc_nickname['A<<npctemp>>'] = 'Slava'
 $npc_notes['A<<npctemp>>'] = 'The owner of the Cafe your <<$npc_nickname[''A29'']>> works at.'
 npc_dob['A<<npctemp>>'] = 19711209
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
 $npc_lastpart['A<<npctemp>>'] = 'A29'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
 $npc_thdick['A<<npctemp>>'] = 'well proportioned'
 npc_dick['A<<npctemp>>'] = 26
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
 
 
 npctemp = 120
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1288672090 1312650625 1126852365 1579537441 1050383706 1530771556 1757833025'
 $npc_usedname['A<<npctemp>>'] = 'Mistress'' companion'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
 $npc_thdick['A<<npctemp>>'] = 'thicker than average'
 npc_dick['A<<npctemp>>'] = 19
 npc_sexskill['A<<npctemp>>'] = 2
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
 
 
 npctemp = 121
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1145156791 1748081183 1137690401 1121192373 1440194064 1029860550 1346974726'
 $npc_usedname['A<<npctemp>>'] = 'That Guy'
 $npc_notes['A<<npctemp>>'] = 'The Man from the park bench.'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
 $npc_thdick['A<<npctemp>>'] = 'thicker than average'
 npc_dick['A<<npctemp>>'] = 17
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
 
 
 npctemp = 122
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '2130577244 1640932093 1191659262 1340043332 1009313498 1205807037 1759548391'
 $npc_usedname['A<<npctemp>>'] = 'Adrik'
 $npc_notes['A<<npctemp>>'] = 'Boy from the Stairwell'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
 $npc_thdick['A<<npctemp>>'] = 'massive'
 npc_dick['A<<npctemp>>'] = 22
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
 
 
 npctemp = 123
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1213144477 1393767889 1853481730 1216131062 1625069235 1446669832 1709998708'
 $npc_usedname['A<<npctemp>>'] = 'Petr'
 $npc_notes['A<<npctemp>>'] = 'Boy from the Stairwell'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
 $npc_thdick['A<<npctemp>>'] = 'well proportioned'
 npc_dick['A<<npctemp>>'] = 14
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
 
 
 npctemp = 124
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1665174694 1988944116 1807917594 1254176734 2064239242 1643819573 1392786112'
 $npc_usedname['A<<npctemp>>'] = 'Kolyan'
 $npc_notes['A<<npctemp>>'] = 'Boy from the Stairwell'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
 $npc_thdick['A<<npctemp>>'] = 'thicker than average'
 npc_dick['A<<npctemp>>'] = 18
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
 
 
 npctemp = 125
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1782310214 1854425806 1138563924 1277981120 1771674321 1225102514 1034678700'
 $npc_usedname['A<<npctemp>>'] = 'Yakov'
 $npc_notes['A<<npctemp>>'] = 'Boy from the Stairwell'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
 $npc_thdick['A<<npctemp>>'] = 'thicker than average'
 npc_dick['A<<npctemp>>'] = 12
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
 
 
 npctemp = 126
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1464522854 1308604424 1705249327 1562011617 1043225628 1849417361 1015855202'
 $npc_usedname['A<<npctemp>>'] = 'Mikhail'
 $npc_notes['A<<npctemp>>'] = 'Boy from the Stairwell'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
 $npc_thdick['A<<npctemp>>'] = 'thick'
 npc_dick['A<<npctemp>>'] = 16
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
 
 
 npctemp = 127
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1797467433 2003489967 1798597247 1058757155 1598996372 1954728943 1657496532'
 $npc_usedname['A<<npctemp>>'] = 'Gosha'
 $npc_notes['A<<npctemp>>'] = 'Dimka''s friend Gosha.'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
 $npc_thdick['A<<npctemp>>'] = 'well proportioned'
 npc_dick['A<<npctemp>>'] = 14
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
 
 
 npctemp = 128
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1329445270 1353015030 1000782701 1036165668 1639583614 1529658078 1975679453'
 $npc_firstname['A<<npctemp>>'] = 'Makar'
 $npc_nickname['A<<npctemp>>'] = 'Makar'
 $npc_lastname['A<<npctemp>>'] = 'Vasilyev'
 $npc_usedname['A<<npctemp>>'] = 'Mr. Vasilyev'
 $npc_notes['A<<npctemp>>'] = 'Makar Vasilyev is the school''s music, art, and drama teacher. He is always warm and friendly to all of his students and even those not in his class. He always smiles and will always take the time to listen or help out the students. He is well liked by most of the students.'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
+gs 'npcstaticdefaults', 'group', 'teacher'
 $npc_thdick['A<<npctemp>>'] = 'thicker than average'
 npc_dick['A<<npctemp>>'] = 17
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
-npc_grupTipe['A<<npctemp>>'] = 6
-npc_selfieon['A<<npctemp>>'] = 1
-$npc_selfie['A<<npctemp>>'] = '<a href="exec:numnpc = 128 & gt ''phone_selfies'', ''listretrieve2''"><<$npc_firstname[''A128'']>> <<$npc_lastname[''A128'']>></a>'
-schoolenable['A<<npctemp>>'] = 1
-discoenable['A<<npctemp>>'] = 0
-$npcGo['A<<npctemp>>'] = '<a href="exec:numnpc = 128 & gt ''Snpc''"><<$npc_firstname[''A128'']>> <<$npc_lastname[''A128'']>></a>'
-$school_static_num['A<<npctemp>>'] = 'A128'
 
 
 npctemp = 129
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1440577620 1404493595 1159165013 1229533074 1597914660 1301026307 1275667543'
 $npc_firstname['A<<npctemp>>'] = 'Serafim'
 $npc_nickname['A<<npctemp>>'] = 'Serafim'
 $npc_lastname['A<<npctemp>>'] = 'Ivanov'
 $npc_usedname['A<<npctemp>>'] = 'Mr. Ivanov'
 $npc_notes['A<<npctemp>>'] = 'Serafim Ivanov is the school''s science and computer Science teacher. A former student of the school that returned to the town after college. He is a no nonsense, bitter teacher, who is known to pile on the homework, have many pop quizzes and is brutal when it comes to his grading. He is also known to be unfair, he gives the nerds a free pass with homework or even quizzes, that he never would do with another student group. He seems to take delight when he catches one of the cool kids, jocks or Gopniks out, ridiculing them on how little they know.'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
+gs 'npcstaticdefaults', 'group', 'teacher'
 $npc_thdick['A<<npctemp>>'] = 'massive'
 npc_dick['A<<npctemp>>'] = 22
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
-npc_grupTipe['A<<npctemp>>'] = 6
-npc_selfieon['A<<npctemp>>'] = 1
-$npc_selfie['A<<npctemp>>'] = '<a href="exec:numnpc = 129 & gt ''phone_selfies'', ''listretrieve2''"><<$npc_firstname[''A129'']>> <<$npc_lastname[''A129'']>></a>'
-schoolenable['A<<npctemp>>'] = 1
-discoenable['A<<npctemp>>'] = 0
-$npcGo['A<<npctemp>>'] = '<a href="exec:numnpc = 129 & gt ''Snpc''"><<$npc_firstname[''A129'']>> <<$npc_lastname[''A129'']>></a>'
-$school_static_num['A<<npctemp>>'] = 'A129'
 
 
 npctemp = 130
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1726870149 1624130023 1044618711 1429525298 1800638929 1340956737 1405979189'
 $npc_firstname['A<<npctemp>>'] = 'Ilya'
 $npc_nickname['A<<npctemp>>'] = 'Ilya'
 $npc_lastname['A<<npctemp>>'] = 'Yenotin'
 $npc_usedname['A<<npctemp>>'] = 'Mr. Yenotin'
 $npc_notes['A<<npctemp>>'] = 'Ilya Yenotin is the school''s literature, language and your homeroom teacher. Does his best at keeping everyone happy but is unliked by most of the class, simply because he''s comes off as fake. You can often see him running down the halls chasing down the Gopniks, trying getting them to attend class.'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
+gs 'npcstaticdefaults', 'group', 'teacher'
 $npc_thdick['A<<npctemp>>'] = 'slim'
 npc_dick['A<<npctemp>>'] = 13
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
-npc_grupTipe['A<<npctemp>>'] = 6
-npc_selfieon['A<<npctemp>>'] = 1
-$npc_selfie['A<<npctemp>>'] = '<a href="exec:numnpc = 130 & gt ''phone_selfies'', ''listretrieve2''"><<$npc_firstname[''A130'']>> <<$npc_lastname[''A130'']>></a>'
-schoolenable['A<<npctemp>>'] = 1
-discoenable['A<<npctemp>>'] = 0
-$npcGo['A<<npctemp>>'] = '<a href="exec:numnpc = 130 & gt ''Snpc''"><<$npc_firstname[''A130'']>> <<$npc_lastname[''A130'']>></a>'
-$school_static_num['A<<npctemp>>'] = 'A130'
 
 
 npctemp = 131
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1290761368 1731705745 1556198951 1402252861 1318878286 1783536035 1235327987'
 $npc_firstname['A<<npctemp>>'] = 'Viktor'
 $npc_nickname['A<<npctemp>>'] = 'Viktor'
 $npc_lastname['A<<npctemp>>'] = 'Pavlovich'
 $npc_usedname['A<<npctemp>>'] = 'Mr. Pavlovich'
 $npc_notes['A<<npctemp>>'] = 'Viktor Pavlovich is the school''s P.E. teacher. He looks like a former weight lifter, having a power build with a massive upper body strength. He keeps a black painted paddle he calls the ''Black Widow'' hanging from his office.  He likes to use it on students, especially female students. He is single, and rumored to be a player. You''ve often seen him with different women around town.'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
+gs 'npcstaticdefaults', 'group', 'teacher'
 $npc_thdick['A<<npctemp>>'] = 'thicker than average'
 npc_dick['A<<npctemp>>'] = 17
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
-npc_grupTipe['A<<npctemp>>'] = 6
-npc_selfieon['A<<npctemp>>'] = 1
-$npc_selfie['A<<npctemp>>'] = '<a href="exec:numnpc = 131 & gt ''phone_selfies'', ''listretrieve2''"><<$npc_firstname[''A131'']>> <<$npc_lastname[''A131'']>></a>'
-schoolenable['A<<npctemp>>'] = 1
-discoenable['A<<npctemp>>'] = 0
-$npcGo['A<<npctemp>>'] = '<a href="exec:numnpc = 131 & gt ''Snpc''"><<$npc_firstname[''A131'']>> <<$npc_lastname[''A131'']>></a>'
-$school_static_num['A<<npctemp>>'] = 'A131'
 
 
 npctemp = 132
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1845705457 1671776475 1432615990 2143340423 1777183626 1122316963 1021792548'
 $npc_firstname['A<<npctemp>>'] = 'Ruslan'
 $npc_nickname['A<<npctemp>>'] = 'Ruslan'
 $npc_lastname['A<<npctemp>>'] = 'Kuznetsov'
 $npc_usedname['A<<npctemp>>'] = 'Mr. Kuznetsov'
 $npc_notes['A<<npctemp>>'] ='Ruslan Kuznetsov is the school''s special ed, career advisor and shop teacher. Is one of the few teachers that''s passionate about his job. He really believes that he can impact on the students future but is mostly ignored by everyone even his colleagues. Which recently has seen him start becoming bitter.'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
+gs 'npcstaticdefaults', 'group', 'teacher'
 $npc_thdick['A<<npctemp>>'] = 'massive'
 npc_dick['A<<npctemp>>'] = 21
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
-npc_grupTipe['A<<npctemp>>'] = 6
-npc_selfieon['A<<npctemp>>'] = 1
-$npc_selfie['A<<npctemp>>'] = '<a href="exec:numnpc = 132 & gt ''phone_selfies'', ''listretrieve2''"><<$npc_firstname[''A132'']>> <<$npc_lastname[''A132'']>></a>'
-schoolenable['A<<npctemp>>'] = 1
-discoenable['A<<npctemp>>'] = 0
-$npcGo['A<<npctemp>>'] = '<a href="exec:numnpc = 132 & gt ''Snpc''"><<$npc_firstname[''A132'']>> <<$npc_lastname[''A132'']>></a>'
-$school_static_num['A<<npctemp>>'] = 'A132'
+
 
 npctemp = 133
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1771221536 2027750396 2089544713 1734369517 1759135620 1433377965 1088177703'
 $npc_firstname['A<<npctemp>>'] = 'Rolan'
 $npc_nickname['A<<npctemp>>'] = 'Rolan'
 $npc_lastname['A<<npctemp>>'] = 'Matveev'
 $npc_usedname['A<<npctemp>>'] = 'Mr. Matveev'
 $npc_notes['A<<npctemp>>'] = 'Rolan Matveev is the school''s janitor and handyman. He is quiet and rarely interacts with the students. There is a rumor going around that he got caught as he was rummaging through the girls lockers stealing their panties, while others say he stalks the girls and photographs them. Regardless if the rumors are true or not, everyone agree''s he looks and acts creepy.'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
+gs 'npcstaticdefaults', 'group', 'teacher'
 $npc_thdick['A<<npctemp>>'] = 'well proportioned'
 npc_dick['A<<npctemp>>'] = 12
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
-npc_grupTipe['A<<npctemp>>'] = 6
-npc_selfieon['A<<npctemp>>'] = 1
-$npc_selfie['A<<npctemp>>'] = '<a href="exec:numnpc = 133 & gt ''phone_selfies'', ''listretrieve2''"><<$npc_firstname[''A133'']>> <<$npc_lastname[''A133'']>></a>'
-schoolenable['A<<npctemp>>'] = 1
-discoenable['A<<npctemp>>'] = 0
-$npcGo['A<<npctemp>>'] = '<a href="exec:numnpc = 133 & gt ''Snpc''"><<$npc_firstname[''A133'']>> <<$npc_lastname[''A133'']>></a>'
-$school_static_num['A<<npctemp>>'] = 'A133'
 
 
 npctemp = 134
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1837796316 1436860618 1699933821 1423519204 1271493655 1566380915 1482989416'
 $npc_firstname['A<<npctemp>>'] = 'Aleksandrina'
 $npc_nickname['A<<npctemp>>'] = 'Aleksandrina'
 $npc_lastname['A<<npctemp>>'] = 'Volkov'
 $npc_usedname['A<<npctemp>>'] = 'Miss Volkov'
 $npc_notes['A<<npctemp>>'] = 'Aleksandrina Volkov is the school''s new headmistress. An attractive woman in her mid to late thirties, who always dresses well. She was recently brought in to improve the school results after the school was falling behind in the national test scores. She has a reputation for being a strict disciplinarian, but fair. She also comes off as cold and distant to the students.'
-npc_cyc['A<<npctemp>>'] = rand(0,29)
-npc_fert['A<<npctemp>>'] = 1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 1
-$npc_thdick['A<<npctemp>>'] = 'clitoris'
-npc_dick['A<<npctemp>>'] = -1
-npc_spermpot['A<<npctemp>>'] = -1
+gs 'npcstaticdefaults', 'defaults'
+gs 'npcstaticdefaults', 'group', 'teacher'
 npc_bust['A<<npctemp>>'] = 9
-npc_nips['A<<npctemp>>'] = 4
-npc_grupTipe['A<<npctemp>>'] = 6
-npc_selfieon['A<<npctemp>>'] = 1
-$npc_selfie['A<<npctemp>>'] = '<a href="exec:numnpc = 134 & gt ''phone_selfies'', ''listretrieve2''"><<$npc_firstname[''A134'']>> <<$npc_lastname[''A134'']>></a>'
-schoolenable['A<<npctemp>>'] = 1
-discoenable['A<<npctemp>>'] = 0
-$npcGo['A<<npctemp>>'] = '<a href="exec:numnpc = 134 & gt ''Snpc''"><<$npc_firstname[''A134'']>> <<$npc_lastname[''A134'']>></a>'
-$school_static_num['A<<npctemp>>'] = 'A134'
 
 
 npctemp = 135
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1482962188 1063482733 1488899248 1806709653 1901966276 1373982700 1143695253'
 $npc_firstname['A<<npctemp>>'] = 'Yeva'
 $npc_nickname['A<<npctemp>>'] = 'Yeva'
 $npc_lastname['A<<npctemp>>'] = 'Sokoloff'
 $npc_usedname['A<<npctemp>>'] = 'Miss Sokoloff'
 $npc_notes['A<<npctemp>>'] = 'Yeva Sokoloff is the school''s geography and history teacher. She is the oldest teacher at school and has a very firm no nonsense teaching style, but can also be very kind and motherly to students that work hard and behave.'
-npc_cyc['A<<npctemp>>'] = rand(0,29)
-npc_fert['A<<npctemp>>'] = 1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 1
-$npc_thdick['A<<npctemp>>'] = 'clitoris'
-npc_dick['A<<npctemp>>'] = -1
-npc_spermpot['A<<npctemp>>'] = -1
+gs 'npcstaticdefaults', 'defaults'
+gs 'npcstaticdefaults', 'group', 'teacher'
 npc_bust['A<<npctemp>>'] = 9
-npc_nips['A<<npctemp>>'] = 4
-npc_grupTipe['A<<npctemp>>'] = 6
-npc_selfieon['A<<npctemp>>'] = 1
-$npc_selfie['A<<npctemp>>'] = '<a href="exec:numnpc = 135 & gt ''phone_selfies'', ''listretrieve2''"><<$npc_firstname[''A135'']>> <<$npc_lastname[''A135'']>></a>'
-schoolenable['A<<npctemp>>'] = 1
-discoenable['A<<npctemp>>'] = 0
-$npcGo['A<<npctemp>>'] = '<a href="exec:numnpc = 135 & gt ''Snpc''"><<$npc_firstname[''A135'']>> <<$npc_lastname[''A135'']>></a>'
-$school_static_num['A<<npctemp>>'] = 'A135'
 
 
 npctemp = 136
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1323009327 1170828061 1350671739 1453635383 1122377435 1922441585 1637692781'
 $npc_firstname['A<<npctemp>>'] = 'Olga'
 $npc_nickname['A<<npctemp>>'] = 'Olga'
 $npc_lastname['A<<npctemp>>'] = 'Aleksandrov'
 $npc_usedname['A<<npctemp>>'] = 'Miss Aleksandrov'
 $npc_notes['A<<npctemp>>'] = 'Olga Aleksandrov is the school''s nurse. Miss Aleksandrov just transferred to your school at the start of the year. All the boys have fallen head over heel over this true beauty. The boys describe her as slim and stacked, the ideal woman.'
-npc_cyc['A<<npctemp>>'] = rand(0,29)
-npc_fert['A<<npctemp>>'] = 1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 1
-$npc_thdick['A<<npctemp>>'] = 'clitoris'
-npc_dick['A<<npctemp>>'] = -1
-npc_spermpot['A<<npctemp>>'] = -1
+gs 'npcstaticdefaults', 'defaults'
+gs 'npcstaticdefaults', 'group', 'teacher'
 npc_bust['A<<npctemp>>'] = 9
-npc_nips['A<<npctemp>>'] = 4
-npc_grupTipe['A<<npctemp>>'] = 6
-npc_selfieon['A<<npctemp>>'] = 1
-$npc_selfie['A<<npctemp>>'] = '<a href="exec:numnpc = 136 & gt ''phone_selfies'', ''listretrieve2''"><<$npc_firstname[''A136'']>> <<$npc_lastname[''A136'']>></a>'
-schoolenable['A<<npctemp>>'] = 1
-discoenable['A<<npctemp>>'] = 0
-$npcGo['A<<npctemp>>'] = '<a href="exec:numnpc = 136 & gt ''Snpc''"><<$npc_firstname[''A136'']>> <<$npc_lastname[''A136'']>></a>'
-$school_static_num['A<<npctemp>>'] = 'A136'
 
 
 npctemp = 137
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1366158823 1463494144 1620282105 1806630761 1949066883 1679902075 1297964182'
 $npc_firstname['A<<npctemp>>'] = 'Raven'
 $npc_nickname['A<<npctemp>>'] = 'Raven'
 $npc_lastname['A<<npctemp>>'] = 'Braakman'
 $npc_usedname['A<<npctemp>>'] = 'Miss Braakman'
 $npc_notes['A<<npctemp>>'] = 'Raven Braakman is the school''s social sciences and English teacher. She is from South Africa, she married a Russian man and moved to Pavlovsk, a few years ago her husband died in a car accident. She has a strict teacher style, accepting only the best out of her students. It is rumored she is a bit of a party goer in her free time.'
-npc_cyc['A<<npctemp>>'] = rand(0,29)
-npc_fert['A<<npctemp>>'] = 1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 1
-$npc_thdick['A<<npctemp>>'] = 'clitoris'
-npc_dick['A<<npctemp>>'] = -1
-npc_spermpot['A<<npctemp>>'] = -1
+gs 'npcstaticdefaults', 'defaults'
+gs 'npcstaticdefaults', 'group', 'teacher'
 npc_bust['A<<npctemp>>'] = 9
-npc_nips['A<<npctemp>>'] = 4
-npc_grupTipe['A<<npctemp>>'] = 6
-npc_selfieon['A<<npctemp>>'] = 1
-$npc_selfie['A<<npctemp>>'] = '<a href="exec:numnpc = 137 & gt ''phone_selfies'', ''listretrieve2''"><<$npc_firstname[''A137'']>> <<$npc_lastname[''A137'']>></a>'
-schoolenable['A<<npctemp>>'] = 1
-discoenable['A<<npctemp>>'] = 0
-$npcGo['A<<npctemp>>'] = '<a href="exec:numnpc = 137 & gt ''Snpc''"><<$npc_firstname[''A137'']>> <<$npc_lastname[''A137'']>></a>'
-$school_static_num['A<<npctemp>>'] = 'A137'
-
 
 npctemp = 138
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1041262937 1103319358 1212009691 1617547174 1655867289 1930930487 1952353548'
 $npc_firstname['A<<npctemp>>'] = 'Arina'
 $npc_nickname['A<<npctemp>>'] = 'Arina'
 $npc_lastname['A<<npctemp>>'] = 'Orlov'
 $npc_usedname['A<<npctemp>>'] = 'Miss Orlov'
 $npc_notes['A<<npctemp>>'] = 'Arina Orlov is the school''s biology and health teacher. She is the youngest teacher at school, having just finished college and this is her first job. She is a bit shy and mousey, which makes many of the students to ignore her during class, she has a bit of a problem controlling her classes. She''s not much older than her students and very cute as well, which causes the boys to pay extra special attention to her.'
-npc_cyc['A<<npctemp>>'] = rand(0,29)
-npc_fert['A<<npctemp>>'] = 1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 1
-$npc_thdick['A<<npctemp>>'] = 'clitoris'
-npc_dick['A<<npctemp>>'] = -1
-npc_spermpot['A<<npctemp>>'] = -1
+gs 'npcstaticdefaults', 'defaults'
+gs 'npcstaticdefaults', 'group', 'teacher'
 npc_bust['A<<npctemp>>'] = 9
-npc_nips['A<<npctemp>>'] = 4
-npc_grupTipe['A<<npctemp>>'] = 6
-npc_selfieon['A<<npctemp>>'] = 1
-$npc_selfie['A<<npctemp>>'] = '<a href="exec:numnpc = 138 & gt ''phone_selfies'', ''listretrieve2''"><<$npc_firstname[''A138'']>> <<$npc_lastname[''A138'']>></a>'
-schoolenable['A<<npctemp>>'] = 1
-discoenable['A<<npctemp>>'] = 0
-$npcGo['A<<npctemp>>'] = '<a href="exec:numnpc = 138 & gt ''Snpc''"><<$npc_firstname[''A138'']>> <<$npc_lastname[''A138'']>></a>'
-$school_static_num['A<<npctemp>>'] = 'A138'
 
 
 npctemp = 139
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1194676974 1594146631 1238391630 1274433221 1950748802 1727312584 8321006077'
 $npc_firstname['A<<npctemp>>'] = 'Stanislava'
 $npc_nickname['A<<npctemp>>'] = 'Stasya'
 $npc_lastname['A<<npctemp>>'] = 'Pavlov'
 $npc_usedname['A<<npctemp>>'] = 'Stasya'
 $npc_notes['A<<npctemp>>'] = 'Stasya Pavlov is a complete bitch, and always has been one, but now that her boyfriend Andrey seems to hanging around the new exchange student Marcus more than her, she has become a lot worse. She doesn''t care for Marcus at all, but never says anything around Marcus or Andrey. Instead she seems to take out her anger on everyone around her, but especially the nerds and the outcasts.'
-npc_cyc['A<<npctemp>>'] = rand(0,29)
-npc_fert['A<<npctemp>>'] = 1
+npc_gender['A<<npctemp>>'] = 1
+gs 'npcstaticdefaults', 'defaults'
+gs 'npcstaticdefaults', 'group', 'coolkid'
 $npc_firstpart['A<<npctemp>>'] = 'V'
 $npc_lastpart['A<<npctemp>>'] = 'V'
-$npc_kidpater['A<<npctemp>>'] = 'N'
-npc_gender['A<<npctemp>>'] = 1
-$npc_thdick['A<<npctemp>>'] = 'clitoris'
-npc_dick['A<<npctemp>>'] = -1
-npc_spermpot['A<<npctemp>>'] = -1
 npc_bust['A<<npctemp>>'] = 9
-npc_nips['A<<npctemp>>'] = 4
-npc_grupTipe['A<<npctemp>>'] = 1
-npc_selfieon['A<<npctemp>>'] = 1
-$npc_selfie['A<<npctemp>>'] = '<a href="exec:numnpc = 139 & gt ''phone_selfies'', ''listretrieve2''"><<$npc_firstname[''A139'']>> <<$npc_lastname[''A139'']>></a>'
-schoolenable['A<<npctemp>>'] = 1
-discoenable['A<<npctemp>>'] = 1
-$npcGo['A<<npctemp>>'] = '<a href="exec:numnpc = 139 & gt ''Snpc''"><<$npc_firstname[''A139'']>> <<$npc_lastname[''A139'']>></a>'
-$npcGoSchool['A<<npctemp>>'] = '<a href="exec:gt ''gschool_chats1'',''stasya''"><<$npc_usedname[''A139'']>></a>'
-$school_static_num['A<<npctemp>>'] = 'A139'
 hotcat_rating['A<<npctemp>>'] = 6
 
+
 npctemp = 140
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1388957981 1104285969 1184925418 1994156965 1456422790 2095370094 1430302038'
 $npc_firstname['A<<npctemp>>'] = 'Yelizaveta'
 $npc_nickname['A<<npctemp>>'] = 'Lizaveta'
 $npc_lastname['A<<npctemp>>'] = 'Petrov'
 $npc_usedname['A<<npctemp>>'] = 'Lizaveta'
 $npc_notes['A<<npctemp>>'] = 'Lizaveta Petrov wants to know everyone''s secrets, but is completely incapable of keeping them. Extremely nosy, and is the first to arrive at the scene of any commotion, eager to pry into the details. Not unattractive, but most boys avoid her since they don''t want everything they do to become public knowledge.'
-npc_cyc['A<<npctemp>>'] = rand(0,29)
-npc_fert['A<<npctemp>>'] = 1
+npc_gender['A<<npctemp>>'] = 1
+gs 'npcstaticdefaults', 'defaults'
+gs 'npcstaticdefaults', 'group', 'coolkid'
 $npc_firstpart['A<<npctemp>>'] = 'V'
 $npc_lastpart['A<<npctemp>>'] = 'V'
-$npc_kidpater['A<<npctemp>>'] = 'N'
-npc_gender['A<<npctemp>>'] = 1
-$npc_thdick['A<<npctemp>>'] = 'clitoris'
-npc_dick['A<<npctemp>>'] = -1
-npc_spermpot['A<<npctemp>>'] = -1
 npc_bust['A<<npctemp>>'] = 9
-npc_nips['A<<npctemp>>'] = 4
-npc_grupTipe['A<<npctemp>>'] = 1
-npc_selfieon['A<<npctemp>>'] = 1
-$npc_selfie['A<<npctemp>>'] = '<a href="exec:numnpc = 140 & gt ''phone_selfies'', ''listretrieve2''"><<$npc_firstname[''A140'']>> <<$npc_lastname[''A140'']>></a>'
-schoolenable['A<<npctemp>>'] = 1
-discoenable['A<<npctemp>>'] = 1
-$npcGo['A<<npctemp>>'] = '<a href="exec:numnpc = 140 & gt ''Snpc''"><<$npc_firstname[''A140'']>> <<$npc_lastname[''A140'']>></a>'
-$npcGoSchool['A<<npctemp>>'] = '<a href="exec:gt ''gschool_chats1'',''lizaveta''"><<$npc_usedname[''A140'']>></a>'
-$school_static_num['A<<npctemp>>'] = 'A140'
 hotcat_rating['A<<npctemp>>'] = 7
 
+
 npctemp = 141
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '2132183395 1401313649 8321006077 1434417039 2321026077 7921283143 7765736018'
 $npc_firstname['A<<npctemp>>'] = 'Veronika'
 $npc_nickname['A<<npctemp>>'] = 'Ronnie'
 $npc_lastname['A<<npctemp>>'] = 'Sokolov'
 $npc_usedname['A<<npctemp>>'] = 'Veronika'
 $npc_notes['A<<npctemp>>'] = 'Veronika Sokolov is called the ice queen by her fellow students behind her back, for a couple of reasons. One of the reasons is that she is very talented ice skater, there is even talk about she might compete in the next winter Olympics. The other reason is because she is cold and indifferent. She never lets anyone get close to her. She comes from a rich family.'
-npc_cyc['A<<npctemp>>'] = rand(0,29)
-npc_fert['A<<npctemp>>'] = 1
+npc_gender['A<<npctemp>>'] = 1
+gs 'npcstaticdefaults', 'defaults'
+gs 'npcstaticdefaults', 'group', 'jock'
 $npc_firstpart['A<<npctemp>>'] = 'V'
 $npc_lastpart['A<<npctemp>>'] = 'V'
-$npc_kidpater['A<<npctemp>>'] = 'N'
-npc_gender['A<<npctemp>>'] = 1
-$npc_thdick['A<<npctemp>>'] = 'clitoris'
-npc_dick['A<<npctemp>>'] = -1
-npc_spermpot['A<<npctemp>>'] = -1
 npc_bust['A<<npctemp>>'] = 9
-npc_nips['A<<npctemp>>'] = 4
-npc_grupTipe['A<<npctemp>>'] = 2
-npc_selfieon['A<<npctemp>>'] = 1
-$npc_selfie['A<<npctemp>>'] = '<a href="exec:numnpc = 141 & gt ''phone_selfies'', ''listretrieve2''"><<$npc_firstname[''A141'']>> <<$npc_lastname[''A141'']>></a>'
-schoolenable['A<<npctemp>>'] = 1
-discoenable['A<<npctemp>>'] = 1
-$npcGo['A<<npctemp>>'] = '<a href="exec:numnpc = 141 & gt ''Snpc''"><<$npc_firstname[''A141'']>> <<$npc_lastname[''A141'']>></a>'
-$npcGoSchool['A<<npctemp>>'] = '<a href="exec:gt ''gschool_chats1'',''veronika''"><<$npc_usedname[''A141'']>></a>'
-$school_static_num['A<<npctemp>>'] = 'A141'
 hotcat_rating['A<<npctemp>>'] = 7
 
+
 npctemp = 142
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1972767054 1454786801 1222281674 1247981358 1828806656 1613393781 2115243730'
 $npc_firstname['A<<npctemp>>'] = 'Zinaida'
 $npc_nickname['A<<npctemp>>'] = 'Zina'
 $npc_lastname['A<<npctemp>>'] = 'Alkaev'
 $npc_usedname['A<<npctemp>>'] = 'Zinaida'
 $npc_notes['A<<npctemp>>'] = 'Zinaida Alkaev is a mousey girl who is very plain looking. She never wears makeup, dresses in baggy clothes and barely bothers to brush her hair. She mostly keeps to herself, playing various games on her phone, although she is fairly popular with the nerd boys, for reasons unknown to everyone else.'
-npc_cyc['A<<npctemp>>'] = rand(0,29)
-npc_fert['A<<npctemp>>'] = 1
+npc_gender['A<<npctemp>>'] = 1
+gs 'npcstaticdefaults', 'defaults'
+gs 'npcstaticdefaults', 'group', 'nerd'
 $npc_firstpart['A<<npctemp>>'] = 'V'
 $npc_lastpart['A<<npctemp>>'] = 'V'
-$npc_kidpater['A<<npctemp>>'] = 'N'
-npc_gender['A<<npctemp>>'] = 1
-$npc_thdick['A<<npctemp>>'] = 'clitoris'
-npc_dick['A<<npctemp>>'] = -1
-npc_spermpot['A<<npctemp>>'] = -1
 npc_bust['A<<npctemp>>'] = 9
-npc_nips['A<<npctemp>>'] = 4
-npc_grupTipe['A<<npctemp>>'] = 3
-npc_selfieon['A<<npctemp>>'] = 1
-$npc_selfie['A<<npctemp>>'] = '<a href="exec:numnpc = 142 & gt ''phone_selfies'', ''listretrieve2''"><<$npc_firstname[''A142'']>> <<$npc_lastname[''A142'']>></a>'
-schoolenable['A<<npctemp>>'] = 1
-discoenable['A<<npctemp>>'] = 1
-$npcGo['A<<npctemp>>'] = '<a href="exec:numnpc = 142 & gt ''Snpc''"><<$npc_firstname[''A142'']>> <<$npc_lastname[''A142'']>></a>'
-$npcGoSchool['A<<npctemp>>'] = '<a href="exec:gt ''gschool_chats2'',''zinaida''"><<$npc_usedname[''A142'']>></a>'
-$school_static_num['A<<npctemp>>'] = 'A142'
 hotcat_rating['A<<npctemp>>'] = 5
 
+
 npctemp = 143
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1483702075 1521949936 1508959207 1971565483 1258438946 1771252769 1861114888'
 $npc_firstname['A<<npctemp>>'] = 'Alyona'
 $npc_nickname['A<<npctemp>>'] = 'Alyona'
 $npc_lastname['A<<npctemp>>'] = 'Zima'
 $npc_usedname['A<<npctemp>>'] = 'Alyona'
 $npc_notes['A<<npctemp>>'] = 'Alyona Zima is a hardcore troublemaker, she lives to cause trouble or jumps into any trouble she can find. She comes from a fucked up family, her parents are alcoholics and drug addicts, most view her as the apple that didn''t fall far from the tree. Knowing this the teachers don''t even bother to try and help her out anymore.'
-npc_cyc['A<<npctemp>>'] = rand(0,29)
-npc_fert['A<<npctemp>>'] = 1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 1
-$npc_thdick['A<<npctemp>>'] = 'clitoris'
-npc_dick['A<<npctemp>>'] = -1
-npc_spermpot['A<<npctemp>>'] = -1
+gs 'npcstaticdefaults', 'defaults'
+gs 'npcstaticdefaults', 'group', 'gopnik'
 npc_bust['A<<npctemp>>'] = 9
-npc_nips['A<<npctemp>>'] = 4
-npc_grupTipe['A<<npctemp>>'] = 4
-npc_selfieon['A<<npctemp>>'] = 1
-$npc_selfie['A<<npctemp>>'] = '<a href="exec:numnpc = 143 & gt ''phone_selfies'', ''listretrieve2''"><<$npc_firstname[''A143'']>> <<$npc_lastname[''A143'']>></a>'
-schoolenable['A<<npctemp>>'] = 1
-discoenable['A<<npctemp>>'] = 1
-$npcGo['A<<npctemp>>'] = '<a href="exec:numnpc = 143 & gt ''Snpc''"><<$npc_firstname[''A143'']>> <<$npc_lastname[''A143'']>></a>'
-$npcGoSchool['A<<npctemp>>'] = '<a href="exec:gt ''gschool_chats3'',''alyona''"><<$npc_usedname[''A143'']>></a>'
-$school_static_num['A<<npctemp>>'] = 'A143'
 hotcat_rating['A<<npctemp>>'] = 6
 
+
 npctemp = 144
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1273241012 2077038465 1275739884 1535053248 1434891447 1879708703 1237809681'
 $npc_firstname['A<<npctemp>>'] = 'Anushka'
 $npc_nickname['A<<npctemp>>'] = 'Nush'
 $npc_lastname['A<<npctemp>>'] = 'Konstantinov'
 $npc_usedname['A<<npctemp>>'] = 'Anushka'
 $npc_notes['A<<npctemp>>'] = 'Anushka Konstantinov is the lead guitarist in Radomir''s band. She has very strong political views, which she shares in her anarchist lyrics that she writes for the band. She has strong if untrained vocal ability as well, doing some of the singing. She is pretty dominant and can be cruel but not sadistic like some of the other Gopniks. She is very adventurous and not shy about her bisexuality, she is also a bit of an exhibitionist.'
-npc_cyc['A<<npctemp>>'] = rand(0,29)
-npc_fert['A<<npctemp>>'] = 1
+npc_gender['A<<npctemp>>'] = 1
+gs 'npcstaticdefaults', 'defaults'
+gs 'npcstaticdefaults', 'group', 'gopnik'
 $npc_firstpart['A<<npctemp>>'] = 'V'
 $npc_lastpart['A<<npctemp>>'] = 'V'
-$npc_kidpater['A<<npctemp>>'] = 'N'
-npc_gender['A<<npctemp>>'] = 1
-$npc_thdick['A<<npctemp>>'] = 'clitoris'
-npc_dick['A<<npctemp>>'] = -1
-npc_spermpot['A<<npctemp>>'] = -1
 npc_bust['A<<npctemp>>'] = 9
-npc_nips['A<<npctemp>>'] = 4
-npc_grupTipe['A<<npctemp>>'] = 4
-npc_selfieon['A<<npctemp>>'] = 1
-$npc_selfie['A<<npctemp>>'] = '<a href="exec:numnpc = 144 & gt ''phone_selfies'', ''listretrieve2''"><<$npc_firstname[''A144'']>> <<$npc_lastname[''A144'']>></a>'
-schoolenable['A<<npctemp>>'] = 1
-discoenable['A<<npctemp>>'] = 1
-$npcGo['A<<npctemp>>'] = '<a href="exec:numnpc = 144 & gt ''Snpc''"><<$npc_firstname[''A144'']>> <<$npc_lastname[''A144'']>></a>'
-$npcGoSchool['A<<npctemp>>'] = '<a href="exec:gt ''gschool_chats3'',''anushka''"><<$npc_usedname[''A144'']>></a>'
-$school_static_num['A<<npctemp>>'] = 'A144'
 hotcat_rating['A<<npctemp>>'] = 8
 
+
 npctemp = 145
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1353721655 1926973992 1103624951 1850596792 1430454682 1886117868 1618747491'
 $npc_firstname['A<<npctemp>>'] = 'Ekaterina'
 $npc_nickname['A<<npctemp>>'] = 'Katyusha'
 $npc_lastname['A<<npctemp>>'] = 'Maksimov'
 $npc_usedname['A<<npctemp>>'] = 'Ekaterina'
 $npc_notes['A<<npctemp>>'] = 'Ekaterina Maksimov also known as Katyusha. She''s a chameleon, fitting in with all the groups. She is pretty athletic and does surprisingly well in school considering how little school work she does when she bothers to show up in class. She is not a traditional beauty, her face is too masculine for that, but she is attractive and could be even more so if she bothered to try, but she doesn''t. She only seems to care about two things, booze and fighting. She gets the booze in any way she can, stealing or smooching from the boys in exchange for favors. Or she buys it from her considerable "war chest" (her father is an army Colonel that is rarely around). When she "plays" with the boys, it only goes as far as she wants it. She is the only girl other than Lena who can do that, but while the boys are afraid of Lena''s brother, Katyusha prefers fighting the boys herself. She practices Sambo in the park every day before school, regardless of weather. She often taunts or makes fun of the boxers, claiming boxing is for pussies, real fighters fight without rules. She doesn''t see herself as a gopnik, it''s others that consider her one. This doesn''t bother her because she only cares about the opinion of the people whom earn her respect. Which is really hard to do.'
-npc_cyc['A<<npctemp>>'] = rand(0,29)
-npc_fert['A<<npctemp>>'] = 1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 1
-$npc_thdick['A<<npctemp>>'] = 'clitoris'
-npc_dick['A<<npctemp>>'] = -1
-npc_spermpot['A<<npctemp>>'] = -1
+gs 'npcstaticdefaults', 'defaults'
+gs 'npcstaticdefaults', 'group', 'gopnik'
 npc_bust['A<<npctemp>>'] = 9
-npc_nips['A<<npctemp>>'] = 4
-npc_grupTipe['A<<npctemp>>'] = 4
-npc_selfieon['A<<npctemp>>'] = 1
-$npc_selfie['A<<npctemp>>'] = '<a href="exec:numnpc = 145 & gt ''phone_selfies'', ''listretrieve2''"><<$npc_firstname[''A145'']>> <<$npc_lastname[''A145'']>></a>'
-schoolenable['A<<npctemp>>'] = 1
-discoenable['A<<npctemp>>'] = 1
-$npcGo['A<<npctemp>>'] = '<a href="exec:numnpc = 145 & gt ''Snpc''"><<$npc_firstname[''A145'']>> <<$npc_lastname[''A145'']>></a>'
-$npcGoSchool['A<<npctemp>>'] = '<a href="exec:gt ''gschool_chats3'',''ekaterina''"><<$npc_usedname[''A145'']>></a>'
-$school_static_num['A<<npctemp>>'] = 'A145'
 hotcat_rating['A<<npctemp>>'] = 4
 
+
 npctemp = 146
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1970425464 1559405118 2117548142 1930104143 1673957846 1166458305 1888536480'
 $npc_firstname['A<<npctemp>>'] = 'Marcus'
 $npc_nickname['A<<npctemp>>'] = 'Marcus'
 $npc_lastname['A<<npctemp>>'] = 'Larson'
 $npc_usedname['A<<npctemp>>'] = 'Marcus'
 $npc_notes['A<<npctemp>>'] = 'Marcus Larson is an African American exchange student. He does well in school and is fairly athletic. He seems to really enjoy Russia and has an eye for Russian girls, always going on about how they are so much more beautiful, than the girls back home. He is a decent looking guy, combined with his exotic looks, accent, athletic ability, and different views has made him pretty popular with the cool kids and jocks. He is friendly and outgoing, he stays with Andrey''s family, whom he has become close friends with.'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
+gs 'npcstaticdefaults', 'group', 'coolkid'
 $npc_thdick['A<<npctemp>>'] = 'thick'
 npc_dick['A<<npctemp>>'] = 20
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
-npc_grupTipe['A<<npctemp>>'] = 1
-npc_selfieon['A<<npctemp>>'] = 1
-$npc_selfie['A<<npctemp>>'] = '<a href="exec:numnpc = 146 & gt ''phone_selfies'', ''listretrieve2''"><<$npc_firstname[''A146'']>> <<$npc_lastname[''A146'']>></a>'
-schoolenable['A<<npctemp>>'] = 1
-discoenable['A<<npctemp>>'] = 1
-$npcGo['A<<npctemp>>'] = '<a href="exec:numnpc = 146 & gt ''Snpc''"><<$npc_firstname[''A146'']>> <<$npc_lastname[''A146'']>></a>'
-$npcGoSchool['A<<npctemp>>'] = '<a href="exec:gt ''gschool_chats1'',''marcus''"><<$npc_usedname[''A146'']>></a>'
-$school_static_num['A<<npctemp>>'] = 'A146'
-
 
 npctemp = 147
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1457300123 1918120099 1967335170 1056889039 1290544338 1170828061 1350671739'
 $npc_firstname['A<<npctemp>>'] = 'Andrey'
 $npc_nickname['A<<npctemp>>'] = 'Andrey'
 $npc_lastname['A<<npctemp>>'] = 'Aleksandrov'
 $npc_usedname['A<<npctemp>>'] = 'Andrey'
 $npc_notes['A<<npctemp>>'] = 'Andrey Aleksandrov family took part in the exchange student program. Rumor is they were less than happy when the student they sent was an African American, but Andrey doesn''t seem to mind. He and Marcus quickly became friends, he tends to use Marcus popularity to boost his own and in the process spend a lot less time with his long time girl friend Stasya. The school nurse is his aunt.'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
+gs 'npcstaticdefaults', 'group', 'coolkid'
 $npc_thdick['A<<npctemp>>'] = 'thick'
 npc_dick['A<<npctemp>>'] = 19
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
-npc_grupTipe['A<<npctemp>>'] = 1
-npc_selfieon['A<<npctemp>>'] = 1
-$npc_selfie['A<<npctemp>>'] = '<a href="exec:numnpc = 147 & gt ''phone_selfies'', ''listretrieve2''"><<$npc_firstname[''A147'']>> <<$npc_lastname[''A147'']>></a>'
-schoolenable['A<<npctemp>>'] = 1
-discoenable['A<<npctemp>>'] = 1
-$npcGo['A<<npctemp>>'] = '<a href="exec:numnpc = 147 & gt ''Snpc''"><<$npc_firstname[''A147'']>> <<$npc_lastname[''A147'']>></a>'
-$npcGoSchool['A<<npctemp>>'] = '<a href="exec:gt ''gschool_chats1'',''andrey''"><<$npc_usedname[''A147'']>></a>'
-$school_static_num['A<<npctemp>>'] = 'A147'
-
 
 npctemp = 148
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1110871039 1215316528 1439574498 1881549627 1043257862 2062098828 1713844818'
 $npc_firstname['A<<npctemp>>'] = 'Mefodiy'
 $npc_nickname['A<<npctemp>>'] = 'Mefodiy'
 $npc_lastname['A<<npctemp>>'] = 'Utkin'
 $npc_usedname['A<<npctemp>>'] = 'Mefodiy'
 $npc_notes['A<<npctemp>>'] = 'Mefodiy Utkin is reasonably intelligent, with middle-of-the-road grades. Fairly average looking, but possess a good sense of humor and timing. He isn''t to popular, just popular enough to hang among the cool kids, who like his humor.'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
+gs 'npcstaticdefaults', 'group', 'coolkid'
 $npc_thdick['A<<npctemp>>'] = 'thick'
 npc_dick['A<<npctemp>>'] = 20
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
-npc_grupTipe['A<<npctemp>>'] = 1
-npc_selfieon['A<<npctemp>>'] = 1
-$npc_selfie['A<<npctemp>>'] = '<a href="exec:numnpc = 148 & gt ''phone_selfies'', ''listretrieve2''"><<$npc_firstname[''A148'']>> <<$npc_lastname[''A148'']>></a>'
-schoolenable['A<<npctemp>>'] = 1
-discoenable['A<<npctemp>>'] = 1
-$npcGo['A<<npctemp>>'] = '<a href="exec:numnpc = 148 & gt ''Snpc''"><<$npc_firstname[''A148'']>> <<$npc_lastname[''A148'']>></a>'
-$npcGoSchool['A<<npctemp>>'] = '<a href="exec:gt ''gschool_chats1'',''mefodiy''"><<$npc_usedname[''A148'']>></a>'
-$school_static_num['A<<npctemp>>'] = 'A148'
-
 
 npctemp = 149
-gs 'npcstaticdefaults', 'defaults'
 $npc_dna['A<<npctemp>>'] = '1299436863 1261698091 1686799294 1465620552 1949917866 1150154188 1072586683'
 $npc_firstname['A<<npctemp>>'] = 'Lazar'
 $npc_nickname['A<<npctemp>>'] = 'Lazar'
 $npc_lastname['A<<npctemp>>'] = 'Pajari'
 $npc_usedname['A<<npctemp>>'] = 'Lazar'
 $npc_notes['A<<npctemp>>'] = 'Lazar Pajari is the school football star. He is a central midfielder and team captain. He excels in other sports as well, but his passion is football, least when he is not chasing girls or more often being chased by girls, whom he happily lets catch him. His status make him desirable among the girls and he is often seen with different girls.'
-npc_cyc['A<<npctemp>>'] = -1
-npc_fert['A<<npctemp>>'] = -1
-$npc_firstpart['A<<npctemp>>'] = 'U'
-$npc_lastpart['A<<npctemp>>'] = 'U'
-$npc_kidpater['A<<npctemp>>'] = 'N'
 npc_gender['A<<npctemp>>'] = 0
+gs 'npcstaticdefaults', 'defaults'
+gs 'npcstaticdefaults', 'group', 'jock'
 $npc_thdick['A<<npctemp>>'] = 'thick'
 npc_dick['A<<npctemp>>'] = 23
-npc_spermpot['A<<npctemp>>'] = 10000
-npc_vag['A<<npctemp>>'] = -1
-npc_hymen['A<<npctemp>>'] = -1
-npc_grupTipe['A<<npctemp>>'] = 2
-npc_selfieon['A<<npctemp>>'] = 1
-$npc_selfie['A<<npctemp>>'] = '<a href="exec:numnpc = 149 & gt ''phone_selfies'', ''listretrieve2''"><<$npc_firstname[''A149'']>> <<$npc_lastname[''A149'']>></a>'
-schoolenable['A<<npctemp>>'] = 1
-discoenable['A<<npctemp>>'] = 1
-$npcGo['A<<npctemp>>'] = '<a href="exec:numnpc = 149 & gt ''Snpc''"><<$npc_firstname[''A149'']>> <<$npc_lastname[''A149'']>></a>'
-$npcGoSchool['A<<npctemp>>'] = '<a href="exec:gt ''gschool_chats1'',''lazar''"><<$npc_usedname[''A149'']>></a>'
-$school_static_num['A<<npctemp>>'] = 'A149'
-
 
 --- npcstatic3 ---------------------------------
 

File diff suppressed because it is too large
+ 61 - 491
locations/npcstatic4.qsrc


File diff suppressed because it is too large
+ 74 - 621
locations/npcstatic5.qsrc


+ 120 - 0
locations/npcstaticdefaults.qsrc

@@ -1,10 +1,130 @@
 # npcstaticdefaults
 
+!{npc_gender['A<<npctemp>>'] should be set before calling 'defaults'}
+!{set skills via gs 'npcstaticdefaults', 'skills' followed by the categories in any combination
+	examples:
+	gs 'npcstaticdefaults', 'skills', 'combat', 'dance', 'sport'
+	gs 'npcstaticdefaults', 'skills', 'combat', 'sport'
+	gs 'npcstaticdefaults', 'skills', 'dance', 'sport', 'combat'
+	gs 'npcstaticdefaults', 'skills', 'dance'
+}
+!{names (npc_firstname, npc_lastname and npc_usedname) should be set before calling 'group'
+  set social group values by group name or number, eg:
+	gs 'npcstaticdefaults', 'group', 'coolkid'
+	gs 'npcstaticdefaults', 'group', 1
+  just set selfie values by calling
+	gs 'npcstaticdefaults', 'group'
+}
+!{override wrong values after the gs call}
+
+
 if $ARGS[0] = 'defaults':
 	$npc_dad['A<<npctemp>>'] = 'U'
 	$npc_mom['A<<npctemp>>'] = 'U'
 	$npc_pic['A<<npctemp>>'] = 'xPICx'
 	$npc_PersType['A<<npctemp>>'] = 'XXXX'
+	$npc_firstpart['A<<npctemp>>'] = 'U'
+	$npc_lastpart['A<<npctemp>>'] = 'U'
+	$npc_kidpater['A<<npctemp>>'] = 'N'
+	! {standards by gender}
+	if npc_gender['A<<npctemp>>'] = 0:
+		! {male}
+		npc_cyc['A<<npctemp>>'] = -1
+		npc_fert['A<<npctemp>>'] = -1
+		npc_spermpot['A<<npctemp>>'] = 10000
+		npc_vag['A<<npctemp>>'] = -1
+		npc_hymen['A<<npctemp>>'] = -1
+		npc_nips['A<<npctemp>>'] = 1
+	elseif npc_gender['A<<npctemp>>'] = 1:
+		! {female}
+		$npc_thdick['A<<npctemp>>'] = 'clitoris'
+		npc_cyc['A<<npctemp>>'] = rand(0,29)
+		npc_fert['A<<npctemp>>'] = 1
+		npc_dick['A<<npctemp>>'] = -1
+		npc_spermpot['A<<npctemp>>'] = -1
+		npc_nips['A<<npctemp>>'] = 4
+	end
+! {other possible args ?
+elseif $ARGS[0] = 'attribs':
+	! standard attribute values
+}
+elseif $ARGS[0] = 'skills':
+	if arrpos(1, '$ARGS', 'combat') > 0:
+		npc_jab['A<<npctemp>>'] = 20
+		npc_punch['A<<npctemp>>'] = 20
+		npc_kick['A<<npctemp>>'] = 20
+		npc_def['A<<npctemp>>'] = 30
+	end
+	if arrpos(1, '$ARGS', 'dance') > 0:
+		npc_dance['A<<npctemp>>'] = 30
+		npc_danceero['A<<npctemp>>'] = 10
+	end
+	if arrpos(1, '$ARGS', 'sport') > 0:
+		npc_run['A<<npctemp>>'] = 30
+		npc_vball['A<<npctemp>>'] = 30
+		npc_chess['A<<npctemp>>'] = 30
+	end
+elseif $ARGS[0] = 'body':
+	if $ARGS[1] = 'model':
+		npc_vag['A<<npctemp>>'] = 30
+		npc_ass['A<<npctemp>>'] = 10
+		npc_apprnc['A<<npctemp>>'] = 100
+		npc_lipbalm['A<<npctemp>>'] = 1
+		npc_makeup['A<<npctemp>>'] = 1
+		npc_skin['A<<npctemp>>'] = 100
+		npc_hgt['A<<npctemp>>'] = 165
+		npc_bust['A<<npctemp>>'] = 90
+		npc_hairlng['A<<npctemp>>'] = 100
+		npc_haircol['A<<npctemp>>'] = 2
+		npc_lip['A<<npctemp>>'] = 2
+		npc_lashes['A<<npctemp>>'] = 2
+		npc_eyesize['A<<npctemp>>'] = 2
+		npc_eyecol['A<<npctemp>>'] = 3
+	elseif $ARGS[1] = 'actor':
+		npc_hgt['A<<npctemp>>'] = 188
+		npc_hairlng['A<<npctemp>>'] = 20
+		npc_tan['A<<npctemp>>'] = 1
+		npc_lip['A<<npctemp>>'] = 1
+		npc_eyecol['A<<npctemp>>'] = 1
+	end
+elseif $ARGS[0] = 'group':
+	! {social groups}
+	npc_selfieon['A<<npctemp>>'] = 1
+	if $npc_lastname['A<<npctemp>>'] ! '':
+		$npc_selfie['A<<npctemp>>'] = '<a href="exec:numnpc = <<npctemp>> & gt ''phone_selfies'', ''listretrieve2''"><<$npc_firstname["A<<npctemp>>"]>> <<$npc_lastname["A<<npctemp>>"]>></a>'
+	else
+		$npc_selfie['A<<npctemp>>'] = '<a href="exec:numnpc = <<npctemp>> & gt ''phone_selfies'', ''listretrieve2''"><<$npc_firstname["A<<npctemp>>"]>></a>'
+	end
+
+	if $ARGS[1] = 'friends' or ARGS[1] = 8:
+		npc_grupTipe['A<<npctemp>>'] = 8	
+	elseif $ARGS[1] = 'family' or ARGS[1] = 7:
+		npc_grupTipe['A<<npctemp>>'] = 7
+	else
+		schoolenable['A<<npctemp>>'] = 1
+		discoenable['A<<npctemp>>'] = 1
+		$npcGo['A<<npctemp>>'] = '<a href="exec:numnpc = <<npctemp>> & gt ''Snpc''"><<$npc_firstname["A<<npctemp>>"]>> <<$npc_lastname["A<<npctemp>>"]>></a>'
+		$school_static_num['A<<npctemp>>'] = 'A<<npctemp>>'
+		if $ARGS[1] = 'teacher' or ARGS[1] = 6:
+			npc_grupTipe['A<<npctemp>>'] = 6
+			discoenable['A<<npctemp>>'] = 0		
+		elseif $ARGS[1] = 'outcast' or ARGS[1] = 5:
+			npc_grupTipe['A<<npctemp>>'] = 5	
+			$npcGoSchool['A<<npctemp>>'] = '<a href="exec:gt ''gschool_chats1'', ''' + $lcase($npc_usedname['A<<npctemp>>']) + '''"><<$npc_usedname["A<<npctemp>>"]>></a>'
+		elseif $ARGS[1] = 'gopnik' or ARGS[1] = 4:
+			npc_grupTipe['A<<npctemp>>'] = 4	
+			$npcGoSchool['A<<npctemp>>'] = '<a href="exec:gt ''gschool_chats3'', ''' + $lcase($npc_usedname['A<<npctemp>>']) + '''"><<$npc_usedname["A<<npctemp>>"]>></a>'
+		elseif $ARGS[1] = 'nerd' or ARGS[1] = 3:
+			npc_grupTipe['A<<npctemp>>'] = 3	
+			$npcGoSchool['A<<npctemp>>'] = '<a href="exec:gt ''gschool_chats2'', ''' + $lcase($npc_usedname['A<<npctemp>>']) + '''"><<$npc_usedname["A<<npctemp>>"]>></a>'
+		elseif $ARGS[1] = 'jock' or ARGS[1] = 2:
+			npc_grupTipe['A<<npctemp>>'] = 2	
+			$npcGoSchool['A<<npctemp>>'] = '<a href="exec:gt ''gschool_chats1'', ''' + $lcase($npc_usedname['A<<npctemp>>']) + '''"><<$npc_usedname["A<<npctemp>>"]>></a>'
+		elseif $ARGS[1] = 'coolkid' or ARGS[1] = 1:
+			npc_grupTipe['A<<npctemp>>'] = 1	
+			$npcGoSchool['A<<npctemp>>'] = '<a href="exec:gt ''gschool_chats1'', ''' + $lcase($npc_usedname['A<<npctemp>>']) + '''"><<$npc_usedname["A<<npctemp>>"]>></a>'
+		end
+	end
 end
 
 --- npcstaticdefaults ---------------------------------

Some files were not shown because too many files changed in this diff