|
@@ -253,7 +253,7 @@ if $ARGS[0] = 'gen_dick':
|
|
|
npcgeneratecVars['dick_length'] = 0
|
|
|
if ARGS[2] > 0: npcgeneratecVars['dick_length'] += ARGS[2]
|
|
|
|
|
|
- npcgeneratecVars['rand'] = rand(1, 10000)
|
|
|
+ npcgeneratecVars['rand'] = rand(9999, 10000)
|
|
|
if npcgeneratecVars['rand'] < 15:
|
|
|
npcgeneratecVars['dick_length'] += rand(5, 6)
|
|
|
elseif npcgeneratecVars['rand'] < 250:
|
|
@@ -269,9 +269,9 @@ if $ARGS[0] = 'gen_dick':
|
|
|
elseif npcgeneratecVars['rand'] < 9985:
|
|
|
npcgeneratecVars['dick_length'] += rand(18, 19)
|
|
|
elseif npcgeneratecVars['rand'] < 9999:
|
|
|
- npcgeneratecVars['dick_length'] += rand(20, 21)
|
|
|
+ npcgeneratecVars['dick_length'] += rand(20, 30)
|
|
|
else
|
|
|
- npcgeneratecVars['dick_length'] += rand(22, 30)
|
|
|
+ npcgeneratecVars['dick_length'] += rand(31, 40)
|
|
|
end
|
|
|
|
|
|
! It sets the girth based on the dick size
|
|
@@ -292,7 +292,7 @@ if $ARGS[0] = 'gen_dick':
|
|
|
end
|
|
|
|
|
|
! Then it gives random variance with girth. 1 or 2 drops a size. 3 or 4 stays the same. 5 or 6 goes up a size. A 1 or a 6 gives a chance to go up or down a size again, for a max of 2 changes from the base girth from size.
|
|
|
- npcgeneratecVars['rand'] = rand(1, 6)
|
|
|
+ npcgeneratecVars['rand'] = rand(6, 6)
|
|
|
if npcgeneratecVars['rand'] <= 2:
|
|
|
npcgeneratecVars['dick_girth'] -= 1
|
|
|
elseif npcgeneratecVars['rand'] >= 5:
|
|
@@ -300,7 +300,7 @@ if $ARGS[0] = 'gen_dick':
|
|
|
end
|
|
|
|
|
|
if npcgeneratecVars['rand'] = 1 or npcgeneratecVars['rand'] = 6:
|
|
|
- npcgeneratecVars['rand'] = rand(1, 3)
|
|
|
+ npcgeneratecVars['rand'] = rand(3, 3)
|
|
|
if npcgeneratecVars['rand'] = 1:
|
|
|
npcgeneratecVars['dick_girth'] -= 1
|
|
|
elseif npcgeneratecVars['rand'] = 3:
|
|
@@ -713,15 +713,15 @@ if $ARGS[0] = 'set_personality':
|
|
|
!! 3 - intellectual/clever
|
|
|
if mid($npc_perstype[$ARGS[1]], 3, 1) = 'T':
|
|
|
if mid($npc_perstype[$ARGS[1]], 1, 1) = 'E':
|
|
|
- npcgeneratecVars['humor'] = rand(2, 3)
|
|
|
+ npcgeneratecVars['humor'] = rand(2, 2)
|
|
|
else
|
|
|
- npcgeneratecVars['humor'] = 3
|
|
|
+ npcgeneratecVars['humor'] = 2
|
|
|
end
|
|
|
else
|
|
|
if mid($npc_perstype[$ARGS[1]], 1, 1) = 'E':
|
|
|
- npcgeneratecVars['humor'] = rand(1, 2)
|
|
|
+ npcgeneratecVars['humor'] = rand(2, 2)
|
|
|
else
|
|
|
- npcgeneratecVars['humor'] = 1
|
|
|
+ npcgeneratecVars['humor'] = 2
|
|
|
end
|
|
|
end
|
|
|
if npcgeneratecVars['humor'] = 1:
|
|
@@ -736,7 +736,7 @@ if $ARGS[0] = 'set_personality':
|
|
|
npc_smoker[$ARGS[1]] = rand(0, 2)
|
|
|
|
|
|
!! if npc_sexdrive determines how likely the npc will be to engage in sexual behavior and how many times they can orgasm in a single sexual encounter
|
|
|
- npcgeneratecVars['rand'] = rand(0, 49)
|
|
|
+ npcgeneratecVars['rand'] = rand(35, 49)
|
|
|
if npcgeneratecVars['rand'] < 9:
|
|
|
npc_sexdrive[$ARGS[1]] = rand(1, 3)
|
|
|
elseif npcgeneratecVars['rand'] < 29:
|
|
@@ -744,10 +744,10 @@ if $ARGS[0] = 'set_personality':
|
|
|
!! elseif npcgeneratecVars['rand'] < 35:
|
|
|
!! npc_sexdrive[$ARGS[1]] = rand(1, 10)
|
|
|
!! elseif npcgeneratecVars['rand'] < 38:
|
|
|
-!! npc_sexdrive[$ARGS[1]] = rand(7, 10)
|
|
|
+!! npc_sexdrive[$ARGS[1]] = rand(7, 20)
|
|
|
else
|
|
|
!!failsafe
|
|
|
- npc_sexdrive[$ARGS[1]] = rand(1, 10)
|
|
|
+ npc_sexdrive[$ARGS[1]] = rand(10, 100)
|
|
|
end
|
|
|
if npc_sexdrive[$ARGS[1]] > 5: npc_energetic[$boy] = rand(0, 1)
|
|
|
|
|
@@ -862,7 +862,7 @@ if $ARGS[0] = 'set_personality':
|
|
|
|
|
|
!! npc_diligent = 1: npc is more methodical, doesn''t like to skip steps, and usually plays it safe
|
|
|
!! npc_risktaker = 1: npc is more likely to take risks, such as never using a condom
|
|
|
- npcgeneratecVars['rand'] = rand(0, 2)
|
|
|
+ npcgeneratecVars['rand'] = rand(1, 1)
|
|
|
if npcgeneratecVars['rand'] = 0:
|
|
|
npc_diligent[$ARGS[1]] = 1
|
|
|
npc_risktaker[$ARGS[1]] = 0
|
|
@@ -927,7 +927,7 @@ if $ARGS[0] = 'set_personality':
|
|
|
!! ------------------------- sex related preferences ----------------------------------
|
|
|
|
|
|
|
|
|
- if rand(0, 1) >= 1:
|
|
|
+ if rand(0, 0) >= 1:
|
|
|
!! if npc_condom_conscious = 1: they will use condoms but can be talked out of it
|
|
|
!! if npc_condom_conscious = 2: they will always insist on using condoms unless you are in a committed relationship and/or trying for a baby
|
|
|
if npc_diligent[$ARGS[1]] = 1:
|
|
@@ -939,9 +939,9 @@ if $ARGS[0] = 'set_personality':
|
|
|
!! if npc_no_condoms = 1: they have a preference for skipping condoms but can be talked into using one
|
|
|
!! if npc_no_condoms = 2: they will never use a condom no matter what
|
|
|
if npc_risktaker[$ARGS[1]] = 1:
|
|
|
- npc_no_condoms[$ARGS[1]] = max(0, rand(-1, 2))
|
|
|
+ npc_no_condoms[$ARGS[1]] = max(0, rand(2, 2))
|
|
|
else
|
|
|
- npc_no_condoms[$ARGS[1]] = max(0, rand(-2, 2))
|
|
|
+ npc_no_condoms[$ARGS[1]] = max(0, rand(2, 2))
|
|
|
end
|
|
|
end
|
|
|
|
|
@@ -952,7 +952,7 @@ if $ARGS[0] = 'set_personality':
|
|
|
end
|
|
|
|
|
|
!! Preferred sexual position
|
|
|
- npcgeneratecVars['rand'] = rand(1, 7)
|
|
|
+ npcgeneratecVars['rand'] = rand(1, 3)
|
|
|
if npcgeneratecVars['rand'] = 1:
|
|
|
$npc_fav_pos[$ARGS[1]] = 'miss'
|
|
|
elseif npcgeneratecVars['rand'] = 2:
|
|
@@ -971,7 +971,7 @@ if $ARGS[0] = 'set_personality':
|
|
|
|
|
|
!! npc_sex_speed determines whether they like it slow, steady, or fast and will cause them to select that speed more frequently
|
|
|
!! 1 is slow, 2 is steady, 3 is fast/rough
|
|
|
- npc_sex_speed[$ARGS[1]] = rand(1, 3)
|
|
|
+ npc_sex_speed[$ARGS[1]] = rand(3, 3)
|
|
|
|
|
|
!! npc_sex_volume refers to how much noise they make during sex
|
|
|
!! npc_sex_volume = 0: virtually quiet during sex
|
|
@@ -981,7 +981,7 @@ if $ARGS[0] = 'set_personality':
|
|
|
npc_sex_volume[$ARGS[1]] = rand(0, 3)
|
|
|
|
|
|
if rand(0, 2) = 0:
|
|
|
- npcgeneratecVars['rand'] = rand(0, 3)
|
|
|
+ npcgeneratecVars['rand'] = rand(1, 1)
|
|
|
if npcgeneratecVars['rand'] = 0 and npc_sex_speed[$ARGS[1]] = 1:
|
|
|
!! npc has a tendency to be overly gentle and cautious
|
|
|
npc_gentle_lover[$ARGS[1]] = 1
|
|
@@ -997,7 +997,7 @@ if $ARGS[0] = 'set_personality':
|
|
|
|
|
|
!! Preferred cumming location
|
|
|
!! 0 = no preference
|
|
|
- npcgeneratecVars['rand'] = rand(0, 5)
|
|
|
+ npcgeneratecVars['rand'] = rand(1, 1)
|
|
|
if npcgeneratecVars['rand'] = 1:
|
|
|
$npc_cum_pref[$ARGS[1]] = 'creampie'
|
|
|
elseif npcgeneratecVars['rand'] = 2:
|
|
@@ -1056,7 +1056,7 @@ if $ARGS[0] = 'set_personality':
|
|
|
end
|
|
|
|
|
|
!! $npc_fav_body_part
|
|
|
- npcgeneratecVars['rand'] = rand(0, 3)
|
|
|
+ npcgeneratecVars['rand'] = rand(0, 0)
|
|
|
if npcgeneratecVars['rand'] = 0:
|
|
|
$npc_fav_body_part[$ARGS[1]] = 'pussy'
|
|
|
elseif npcgeneratecVars['rand'] = 1:
|
|
@@ -1070,7 +1070,7 @@ if $ARGS[0] = 'set_personality':
|
|
|
|
|
|
|
|
|
!! if npc_sex_stamina determines how long they can last in bed without cumming
|
|
|
- npc_sex_stamina[$ARGS[1]] = rand(1, 10)
|
|
|
+ npc_sex_stamina[$ARGS[1]] = rand(4, 10)
|
|
|
|
|
|
!!{
|
|
|
if rand(1,10) <= 4:
|
|
@@ -1101,13 +1101,13 @@ if $ARGS[0] = 'set_personality':
|
|
|
if rand(0, 2) = 0: npc_cuddler[$ARGS[1]] = 1
|
|
|
|
|
|
!! if npc_cum_cannon = 1: the npc ejaculates particularly large loads
|
|
|
- if rand(0, 4) = 0: npc_cum_cannon[$ARGS[1]] = 1
|
|
|
+ if rand(0, 1) = 0: npc_cum_cannon[$ARGS[1]] = 1
|
|
|
|
|
|
!! if npc_sex_filmer = 1: the npc likes to make sex videos
|
|
|
if rand(0, 4) = 0: npc_sex_filmer[$ARGS[1]] = 1
|
|
|
|
|
|
!! if npc_two_pump = 1: the npc will always cum immediately in the first penetration act of sex
|
|
|
- if rand(0, 5) = 0: npc_two_pump[$ARGS[1]] = 1
|
|
|
+ if rand(1, 5) = 0: npc_two_pump[$ARGS[1]] = 1
|
|
|
|
|
|
|
|
|
!! ------------------------- date preferences ----------------------------------
|