|
@@ -184,7 +184,7 @@ if ARGS[0] = '':
|
|
|
!{Menstruation to Follicular. Verifies that the cycle is in the bloody phase. It then checks to see if you are done bleeding. If you are, it starts the Follicular phase. There is a small chance your follcular phase will be anywhere from a day to 3 days short, done by the random release of a boosted EggRH. Otherwise, it just starts it clean.}
|
|
|
if cycle <= 0:
|
|
|
if mesec <= 0:
|
|
|
- Cycle = 1
|
|
|
+ cycle = 1
|
|
|
mesec = 0
|
|
|
if rand(0,1000) = 1000:
|
|
|
EggRH = rand(20,80)
|
|
@@ -220,7 +220,7 @@ if ARGS[0] = '':
|
|
|
end
|
|
|
FocH = 0
|
|
|
Ovulate = 24 + rand(0,20)
|
|
|
- Cycle = 2
|
|
|
+ cycle = 2
|
|
|
ferteggage = 0
|
|
|
end
|
|
|
!{Fertilization. It checks if you are ovulating and that there is cum in the cum array. Then it sets a random flag with a chance of 25*10000. (1 in 25 chance.) It then overlays that chance with the concentration of pill chemical in your blood, initializing it if it is in the negatives for some reason. It begins at the beginning of the cum array, and starts the processing. The check should be done with the same number. It is checking the oldest first. Their sperm should already be in the best position, even though it is unhealty by comparison. Then it moves down to the fresher stuff. The first sperm to have the potency above the threshold gets to fertilize. So a custom potency of a million is a sure pregnancy.}
|
|
@@ -381,7 +381,7 @@ if ARGS[0] = '':
|
|
|
KILLVAR '$wombpotfath'
|
|
|
temprand = rand(0,10)
|
|
|
if pillcon < 30000 or temprand = 0:
|
|
|
- Cycle = 0
|
|
|
+ cycle = 0
|
|
|
if cyccustom = 1:
|
|
|
daylastperiod = daystart
|
|
|
end
|
|
@@ -396,7 +396,7 @@ if ARGS[0] = '':
|
|
|
else
|
|
|
FocH = 0
|
|
|
EggRH = 0
|
|
|
- Cycle = 1
|
|
|
+ cycle = 1
|
|
|
mesec = 0
|
|
|
end
|
|
|
end
|
|
@@ -407,7 +407,7 @@ if ARGS[0] = '':
|
|
|
!{Recovery to Follicular. It checks to see if you are in the recovery phase after a pregnancy. If you are, it checks to see if you still have recovery hormone. If you dont, it sets you into the follicular phase with a chance of a boosted Egg releasing hormone. Otherwise it decreases your recovery hormone with a chance to decrease it twice.}
|
|
|
elseif cycle = 4:
|
|
|
if RecovH <= 0:
|
|
|
- Cycle = 1
|
|
|
+ cycle = 1
|
|
|
if cyccustom = 1:
|
|
|
knowpregloss = 0
|
|
|
knowpregrecover = 0
|