|
@@ -204,7 +204,7 @@ end
|
|
|
|
|
|
!!---------------- Messages for Icons/Texts (Start)--------------------------
|
|
|
|
|
|
-if cheatNoSweat = 0:
|
|
|
+if cheatVars['no_sweat'] = 0:
|
|
|
if pcs_sweat < 0:
|
|
|
pcs_sweat = 0
|
|
|
elseif pcs_sweat > 69:
|
|
@@ -792,7 +792,7 @@ if $clothingworntype = 'nude':
|
|
|
end
|
|
|
$stat_clothes_style = 'nude'
|
|
|
elseif $clothingworntype = 'danilovich_outfits':
|
|
|
- if PCloBimbo = 1 and cheatBimbo = 0:
|
|
|
+ if PCloBimbo = 1 and cheatVars['bimbo'] = 0:
|
|
|
$stat_clothes_text = '<BR><font color = #FF00FF>You are wearing a bimbo outfit</font>'
|
|
|
$stat_clothes_msg = 'You are wearing a gym outfit a bimbo would wear'
|
|
|
$stat_clothes_tooltip = 'Bimbo gym outfit.'
|
|
@@ -811,16 +811,16 @@ elseif $clothingworntype = 'danilovich_outfits':
|
|
|
$stat_clothes_style = 'exercise'
|
|
|
end
|
|
|
elseif PCloswimwear = 1:
|
|
|
- if (PCloInhibit >= 50 or PCloThinness = 6) and PCloBimbo = 1 and cheatBimbo = 0:
|
|
|
+ if (PCloInhibit >= 50 or PCloThinness = 6) and PCloBimbo = 1 and cheatVars['bimbo'] = 0:
|
|
|
$stat_clothes_text = '<BR><font color = #FF00FF>You are wearing a bimbo outfit</font>'
|
|
|
$stat_clothes_msg = 'You''re wearing an exhibitionist swimsuit a bimbo would wear.'
|
|
|
$stat_clothes_tooltip = 'Exhibitionist/Bimbo swimsuit.'
|
|
|
$stat_clothes_style = 'swimsuit_eb'
|
|
|
- elseif (PCloInhibit >= 50 or PCloThinness = 6) and (PCloBimbo = 0 or cheatBimbo = 1):
|
|
|
+ elseif (PCloInhibit >= 50 or PCloThinness = 6) and (PCloBimbo = 0 or cheatVars['bimbo'] = 1):
|
|
|
$stat_clothes_msg = 'You are wearing an exhibitionist swimsuit.'
|
|
|
$stat_clothes_tooltip = 'Exhibitionist swimsuit.'
|
|
|
$stat_clothes_style = 'swimsuit_e'
|
|
|
- elseif PCloBimbo = 1 and cheatBimbo = 0:
|
|
|
+ elseif PCloBimbo = 1 and cheatVars['bimbo'] = 0:
|
|
|
$stat_clothes_text = '<BR><font color = #FF00FF>You are wearing a bimbo outfit</font>'
|
|
|
$stat_clothes_msg = 'You are wearing a swimsuit a bimbo would wear.'
|
|
|
$stat_clothes_tooltip = 'Bimbo swimsuit.'
|
|
@@ -843,25 +843,25 @@ elseif PCloswimwear = 1:
|
|
|
$stat_clothes_style = 'swimsuit'
|
|
|
end
|
|
|
elseif $clothingworntype = 'gm_office':
|
|
|
- if PCloStyle = 4 and PCloBimbo = 1 and cheatBimbo = 0:
|
|
|
+ if PCloStyle = 4 and PCloBimbo = 1 and cheatVars['bimbo'] = 0:
|
|
|
$stat_clothes_text = '<BR><font color = #FF00FF>You are wearing a bimbo outfit</font>'
|
|
|
$stat_clothes_msg = 'You''re wearing an office dress a bimbo or a prostitute would wear'
|
|
|
$stat_clothes_tooltip = 'Prostitute/Bimbo office dress.'
|
|
|
$stat_clothes_style = 'office_pb'
|
|
|
- elseif PCloStyle = 4 and (PCloBimbo = 0 or cheatBimbo = 1):
|
|
|
+ elseif PCloStyle = 4 and (PCloBimbo = 0 or cheatVars['bimbo'] = 1):
|
|
|
$stat_clothes_msg = 'You''re wearing an office dress a prostitute would wear.'
|
|
|
$stat_clothes_tooltip = 'Prostitute office dress.'
|
|
|
$stat_clothes_style = 'office_p'
|
|
|
- elseif (PCloInhibit >= 40 or PCloThinness = 6) and PCloBimbo = 1 and cheatBimbo = 0:
|
|
|
+ elseif (PCloInhibit >= 40 or PCloThinness = 6) and PCloBimbo = 1 and cheatVars['bimbo'] = 0:
|
|
|
$stat_clothes_text = '<BR><font color = #FF00FF>You are wearing a bimbo outfit</font>'
|
|
|
$stat_clothes_msg = 'You''re wearing an exhibitionist office dress a bimbo would wear'
|
|
|
$stat_clothes_tooltip = 'Exhibitionist/Bimbo office office dress.'
|
|
|
$stat_clothes_style = 'office_eb'
|
|
|
- elseif (PCloInhibit >= 40 or PCloThinness = 6) and (PCloBimbo = 0 or cheatBimbo = 1):
|
|
|
+ elseif (PCloInhibit >= 40 or PCloThinness = 6) and (PCloBimbo = 0 or cheatVars['bimbo'] = 1):
|
|
|
$stat_clothes_msg = 'You are wearing an exhibitionist office dress.'
|
|
|
$stat_clothes_tooltip = 'Exhibitionist office dress.'
|
|
|
$stat_clothes_style = 'office_e'
|
|
|
- elseif PCloBimbo = 1 and cheatBimbo = 0:
|
|
|
+ elseif PCloBimbo = 1 and cheatVars['bimbo'] = 0:
|
|
|
$stat_clothes_text = '<BR><font color = #FF00FF>You are wearing a bimbo outfit</font>'
|
|
|
$stat_clothes_msg = 'You are wearing an office dress a bimbo would wear'
|
|
|
$stat_clothes_tooltip = 'Bimbo office dress.'
|
|
@@ -884,16 +884,16 @@ elseif $clothingworntype = 'gm_office':
|
|
|
$stat_clothes_style = 'office'
|
|
|
end
|
|
|
elseif PCloStyle2 = 4:
|
|
|
- if PCloStyle = 4 and PCloBimbo = 1 and cheatBimbo = 0:
|
|
|
+ if PCloStyle = 4 and PCloBimbo = 1 and cheatVars['bimbo'] = 0:
|
|
|
$stat_clothes_text = '<BR><font color = #FF00FF>You are wearing a bimbo outfit</font>'
|
|
|
$stat_clothes_msg = 'You''re wearing a school uniform a prostitute or bimbo would wear.'
|
|
|
$stat_clothes_tooltip = 'Prostitute/Bimbo school uniform'
|
|
|
$stat_clothes_style = 'uniform_pb'
|
|
|
- elseif PCloStyle = 4 and (PCloBimbo = 0 or cheatBimbo = 1):
|
|
|
+ elseif PCloStyle = 4 and (PCloBimbo = 0 or cheatVars['bimbo'] = 1):
|
|
|
$stat_clothes_msg = 'You''re wearing a school uniform a prostitute would wear.'
|
|
|
$stat_clothes_tooltip = 'Prostitute school uniform.'
|
|
|
$stat_clothes_style = 'uniform_p'
|
|
|
- elseif PCloBimbo = 1 and cheatBimbo = 0:
|
|
|
+ elseif PCloBimbo = 1 and cheatVars['bimbo'] = 0:
|
|
|
$stat_clothes_text = '<BR><font color = #FF00FF>You are wearing a bimbo outfit</font>'
|
|
|
$stat_clothes_msg = 'You''re wearing a school uniform a bimbo would wear.'
|
|
|
$stat_clothes_tooltip = 'Bimbo school uniform.'
|
|
@@ -921,7 +921,7 @@ elseif $clothingworntype = 'misc_outfits' and clothingwornnumber = '1':
|
|
|
$stat_clothes_msg = 'You are wearing an old hessian sack the hunters gave you.'
|
|
|
$stat_clothes_style = 'clothes'
|
|
|
else
|
|
|
- if PCloStyle = 4 and PCloBimbo = 1 and cheatBimbo = 0:
|
|
|
+ if PCloStyle = 4 and PCloBimbo = 1 and cheatVars['bimbo'] = 0:
|
|
|
$stat_clothes_text = '<BR><font color = #FF00FF>You are wearing a bimbo, prostitute outfit</font>'
|
|
|
$stat_clothes_msg = 'You''re wearing an outfit a bimbo, prostitute would wear.'
|
|
|
$stat_clothes_tooltip = 'Prostitute/Bimbo outfit.'
|
|
@@ -930,7 +930,7 @@ else
|
|
|
$stat_clothes_msg = 'You''re wearing an outfit a prostitute would wear.'
|
|
|
$stat_clothes_tooltip = 'Prostitute outfit.'
|
|
|
$stat_clothes_style = 'clothes_p'
|
|
|
- elseif (PCloInhibit >= 40 or PCloThinness = 6) and PCloBimbo = 1 and cheatBimbo = 0:
|
|
|
+ elseif (PCloInhibit >= 40 or PCloThinness = 6) and PCloBimbo = 1 and cheatVars['bimbo'] = 0:
|
|
|
$stat_clothes_text = '<BR><font color = #FF00FF>You are wearing a bimbo, exhibitionist outfit</font>'
|
|
|
$stat_clothes_msg = 'You''re wearing exhibitionist clothes a bimbo would wear.'
|
|
|
$stat_clothes_tooltip = 'Exhibitionist/Bimbo outfit.'
|
|
@@ -939,7 +939,7 @@ else
|
|
|
$stat_clothes_msg = 'You are wearing exhibitionist clothes.'
|
|
|
$stat_clothes_tooltip = 'Exhibitionist outfit.'
|
|
|
$stat_clothes_style = 'clothes_e'
|
|
|
- elseif PCloBimbo = 1 and cheatBimbo = 0:
|
|
|
+ elseif PCloBimbo = 1 and cheatVars['bimbo'] = 0:
|
|
|
$stat_clothes_text = '<BR><font color = #FF00FF>You are wearing a bimbo outfit</font>'
|
|
|
$stat_clothes_msg = 'You are wearing bimbo clothes.'
|
|
|
$stat_clothes_tooltip = 'Bimbo outfit.'
|
|
@@ -1142,33 +1142,37 @@ if cheatStatusIcons = 0:
|
|
|
$statusIconBarTab += '<td><a href="exec:msg ''You are feeling a tingling sensation between your legs.''"><img title="You are feeling a bit aroused." height = <<set_siconht>> src="images/system/icons/status/arousal_low.png"></a></td>'
|
|
|
end
|
|
|
|
|
|
- if cheatNoEat = 0 and $stat_hunger_msg ! '' and mc_inventory['food_sandwich'] = 0:
|
|
|
- $statusIconBarTab += '<td><a href="exec:msg $stat_hunger_msg"><img title="<<$stat_hunger_tooltip>>" height = <<set_siconht>> src="images/system/icons/status/need_food.png"></a></td>'
|
|
|
- elseif cheatNoEat = 0 and $stat_hunger_msg ! '' and mc_inventory['food_sandwich'] = 1 and menu_off = 0:
|
|
|
- $statusIconBarTab += '<td><a href="exec: mc_inventory[''food_sandwich''] = 0 & pcs_energy += 40 & cumspclnt = 2 & gs ''cum_cleanup'' & fat += 1 & gs ''stat''"><img title="Click to eat your sandwich." height = <<set_siconht>> src="images/system/icons/status/need_food.png"></a></td>'
|
|
|
- elseif cheatNoEat = 0 and $stat_hunger_msg ! '' and mc_inventory['food_sandwich'] = 1 and menu_off = 1:
|
|
|
- $statusIconBarTab += '<td><a href="exec: $stat_hunger_msg"><img title="Your sandwich has to wait until you can spare a minute." height = <<set_siconht>> src="images/system/icons/status/need_food.png"></a></td>'
|
|
|
+ if cheatVars['hunger'] = 0 and $stat_hunger_msg ! '':
|
|
|
+ if mc_inventory['food_sandwich'] = 0:
|
|
|
+ $statusIconBarTab += '<td><a href="exec: msg $stat_hunger_msg"><img title="<<$stat_hunger_tooltip>>" height = <<set_siconht>> src="images/system/icons/status/need_food.png"></a></td>'
|
|
|
+ elseif mc_inventory['food_sandwich'] = 1 and menu_off = 0:
|
|
|
+ $statusIconBarTab += '<td><a href="exec: mc_inventory[''food_sandwich''] = 0 & pcs_energy += 40 & cumspclnt = 2 & gs ''cum_cleanup'' & fat += 1 & gs ''stat''"><img title="Click to eat your sandwich." height = <<set_siconht>> src="images/system/icons/status/need_food.png"></a></td>'
|
|
|
+ elseif mc_inventory['food_sandwich'] = 1 and menu_off = 1:
|
|
|
+ $statusIconBarTab += '<td><a href="exec: $stat_hunger_msg"><img title="Your sandwich has to wait until you can spare a minute." height = <<set_siconht>> src="images/system/icons/status/need_food.png"></a></td>'
|
|
|
+ end
|
|
|
end
|
|
|
|
|
|
- if cheatNoDrink = 0 and $stat_thirst_msg ! '' and mc_inventory['food_water'] = 0 and mc_inventory['refill_bottle'] < 2:
|
|
|
- $statusIconBarTab += '<td><a href="exec:msg $stat_thirst_msg"><img title="<<$stat_thirst_tooltip>>" height = <<set_siconht>> src="images/system/icons/status/need_drink.png"></a></td>'
|
|
|
- elseif cheatNoDrink = 0 and $stat_thirst_msg ! '' and mc_inventory['refill_bottle'] > 1 and menu_off = 0:
|
|
|
- $statusIconBarTab += '<td><a href="exec: mc_inventory[''refill_bottle''] -= 1 & pcs_hydra += 100 & cumspclnt = 2 & gs ''cum_cleanup'' & gs ''stat''"><img title="Click to drink from your refillable water bottle." height = <<set_siconht>> src="images/system/icons/status/need_drink.png"></a></td>'
|
|
|
- elseif cheatNoDrink = 0 and $stat_thirst_msg ! '' and mc_inventory['food_water'] > 0 and menu_off = 0:
|
|
|
- $statusIconBarTab += '<td><a href="exec: bottle = 0 & pcs_hydra += 100 & cumspclnt = 2 & gs ''cum_cleanup'' & gs ''stat''"><img title="Click to drink from your water bottle." height = <<set_siconht>> src="images/system/icons/status/need_drink.png"></a></td>'
|
|
|
- elseif cheatNoDrink = 0 and $stat_thirst_msg ! '' and (mc_inventory['food_water'] > 0 or mc_inventory['refill_bottle'] > 1) and menu_off = 1:
|
|
|
- $statusIconBarTab += '<td><a href="exec:msg $stat_thirst_msg"><img title="Your water bottle has to wait until you can spare a minute." height = <<set_siconht>> src="images/system/icons/status/need_drink.png"></a></td>'
|
|
|
+ if cheatVars['thirst'] = 0 and $stat_thirst_msg ! '':
|
|
|
+ if mc_inventory['food_water'] = 0 and mc_inventory['refill_bottle'] < 2:
|
|
|
+ $statusIconBarTab += '<td><a href="exec:msg $stat_thirst_msg"><img title="<<$stat_thirst_tooltip>>" height = <<set_siconht>> src="images/system/icons/status/need_drink.png"></a></td>'
|
|
|
+ elseif mc_inventory['refill_bottle'] > 1 and menu_off = 0:
|
|
|
+ $statusIconBarTab += '<td><a href="exec: mc_inventory[''refill_bottle''] -= 1 & pcs_hydra += 100 & cumspclnt = 2 & gs ''cum_cleanup'' & gs ''stat''"><img title="Click to drink from your refillable water bottle." height = <<set_siconht>> src="images/system/icons/status/need_drink.png"></a></td>'
|
|
|
+ elseif mc_inventory['food_water'] > 0 and menu_off = 0:
|
|
|
+ $statusIconBarTab += '<td><a href="exec: bottle = 0 & pcs_hydra += 100 & cumspclnt = 2 & gs ''cum_cleanup'' & gs ''stat''"><img title="Click to drink from your water bottle." height = <<set_siconht>> src="images/system/icons/status/need_drink.png"></a></td>'
|
|
|
+ elseif (mc_inventory['food_water'] > 0 or mc_inventory['refill_bottle'] > 1) and menu_off = 1:
|
|
|
+ $statusIconBarTab += '<td><a href="exec:msg $stat_thirst_msg"><img title="Your water bottle has to wait until you can spare a minute." height = <<set_siconht>> src="images/system/icons/status/need_drink.png"></a></td>'
|
|
|
+ end
|
|
|
end
|
|
|
|
|
|
- if cheatNoSleep= 0 and $stat_sleep_msg ! '': $statusIconBarTab += '<td><a href="exec:msg $stat_sleep_msg"><img title="<<$stat_sleep_tooltip>>" height = <<set_siconht>> src="images/system/icons/status/need_sleep.png"></a></td>'
|
|
|
+ if cheatVars['sleep'] = 0 and $stat_sleep_msg ! '': $statusIconBarTab += '<td><a href="exec:msg $stat_sleep_msg"><img title="<<$stat_sleep_tooltip>>" height = <<set_siconht>> src="images/system/icons/status/need_sleep.png"></a></td>'
|
|
|
|
|
|
$statusIconBarTab += '</tr><tr>'
|
|
|
|
|
|
!!Row 3: Pregnancy, cum, lactation, STD...
|
|
|
|
|
|
- if menu_off = 0 and cheatSlut = 0:
|
|
|
+ if menu_off = 0 and cheatVars['no_periods'] = 0:
|
|
|
$statusIconBarTab += '<td><a href="exec:dynamic $d_cycreport_choice"><img title="Click to open the cycle menu." height = <<set_siconht>> src="images/system/icons/status/vagina.png"></a></td>'
|
|
|
- elseif menu_off = 1 and cheatSlut = 0:
|
|
|
+ elseif menu_off = 1 and cheatVars['no_periods'] = 0:
|
|
|
$statusIconBarTab += '<td><a href="exec:msg $stat_disable_msg"><img title="<<$stat_disable_msg>>" height = <<set_siconht>> src="images/system/icons/status/vagina.png"></a></td>'
|
|
|
end
|
|
|
|
|
@@ -1194,7 +1198,7 @@ if cheatStatusIcons = 0:
|
|
|
!!TMI elseif implant_day > 0 and ((daystart - implant_day) * 24 + hour - implant_hour) < 5:
|
|
|
!!pregnancy spoiler $stat_bleed_msg = 'You feel a slight twinge in your abdomen.'
|
|
|
!! $statusIconBarTab += '<td><a href="exec:msg $stat_bleed_msg"><img title="<<$stat_bleed_msg>>" height = <<set_siconht>> src="images/system/icons/status/vunknown.png"></a></td>'
|
|
|
- elseif thinkpreg = 0 and knowpreg = 0 and cycle ! 6 and pillcon2 <= 30000 and succubusflag ! 1 and cheatSlut = 0 and mesec = 0:
|
|
|
+ elseif thinkpreg = 0 and knowpreg = 0 and cycle ! 6 and pillcon2 <= 30000 and succubusflag ! 1 and cheatVars['no_periods'] = 0 and mesec = 0:
|
|
|
if abortionbirthdate = 0 and daystart - daylastperiod > 28:
|
|
|
if (daystart - daylastperiod > 28) and (daystart - daylastperiod <= 35):
|
|
|
$stat_bleed_msg = 'Your period is late by <<daystart - daylastperiod - 28>> days.'
|
|
@@ -1254,20 +1258,24 @@ if cheatStatusIcons = 0:
|
|
|
|
|
|
if $stat_visible_cum_msg ! '': $statusIconBarTab += '<td><a href="exec:msg $stat_visible_cum_msg"><img title="People can see the cum on your body!" height = <<set_siconht>> src="images/system/icons/status/visible_cum.png"></a></td>'
|
|
|
|
|
|
- if stat_cumloc_check = 1 and pcs_traits['cumeater'] = 1 and cumeater_cheat = 0 and menu_off = 0:
|
|
|
- $statusIconBarTab += '<td><a href="exec: gs ''cum_manage'', ''cumeater_icon'' & gs ''stat''"><img title="Click to lick up all that delicious cum." height = <<set_siconht>> src="images/system/icons/status/cum_eater.png"></a></td>'
|
|
|
- elseif stat_cumloc_check = 1 and pcs_traits['cumeater'] = 1 and cumeater_cheat = 0 and menu_off = 1:
|
|
|
- $statusIconBarTab += '<td><a href="exec:msg $stat_disable_msg"><img title="<<$stat_disable_msg>>" height = <<set_siconht>> src="images/system/icons/status/cum_eater.png"></a></td>'
|
|
|
- elseif stat_cumloc_check = 2 and pcs_traits['cumeater'] = 1 and cumeater_cheat = 0:
|
|
|
- $statusIconBarTab += '<td><a href="exec:msg $stat_private_msg"><img title="<<$stat_private_msg>>" height = <<set_siconht>> src="images/system/icons/status/cum_eater.png"></a></td>'
|
|
|
+ if pcs_traits['cumeater'] = 1 and cheatVars['no_trait_cumeater'] = 0:
|
|
|
+ if stat_cumloc_check = 1 and menu_off = 0:
|
|
|
+ $statusIconBarTab += '<td><a href="exec: gs ''cum_manage'', ''cumeater_icon'' & gs ''stat''"><img title="Click to lick up all that delicious cum." height = <<set_siconht>> src="images/system/icons/status/cum_eater.png"></a></td>'
|
|
|
+ elseif stat_cumloc_check = 1 and menu_off = 1:
|
|
|
+ $statusIconBarTab += '<td><a href="exec:msg $stat_disable_msg"><img title="<<$stat_disable_msg>>" height = <<set_siconht>> src="images/system/icons/status/cum_eater.png"></a></td>'
|
|
|
+ elseif stat_cumloc_check = 2:
|
|
|
+ $statusIconBarTab += '<td><a href="exec:msg $stat_private_msg"><img title="<<$stat_private_msg>>" height = <<set_siconht>> src="images/system/icons/status/cum_eater.png"></a></td>'
|
|
|
+ end
|
|
|
end
|
|
|
|
|
|
- if stat_cumloc_check = 1 and mc_inventory['makeup_wipes'] > 0 and menu_off = 0:
|
|
|
- $statusIconBarTab += '<td><a href="exec:dynamic $d_salf"><img title="Click to use your wipes." height = <<set_siconht>> src="images/system/icons/status/wipes.png"></a></td>'
|
|
|
- elseif stat_cumloc_check = 1 and mc_inventory['makeup_wipes'] > 0 and menu_off = 1:
|
|
|
- $statusIconBarTab += '<td><a href="exec:msg $stat_disable_msg"><img title="<<$stat_disable_msg>>" height = <<set_siconht>> src="images/system/icons/status/wipes.png"></a></td>'
|
|
|
- elseif stat_cumloc_check = 2 and mc_inventory['makeup_wipes'] > 0:
|
|
|
- $statusIconBarTab += '<td><a href="exec:msg $stat_private_msg"><img title="<<$stat_private_msg>>" height = <<set_siconht>> src="images/system/icons/status/wipes.png"></a></td>'
|
|
|
+ if mc_inventory['makeup_wipes'] > 0:
|
|
|
+ if stat_cumloc_check = 1 and menu_off = 0:
|
|
|
+ $statusIconBarTab += '<td><a href="exec:dynamic $d_salf"><img title="Click to use your wipes." height = <<set_siconht>> src="images/system/icons/status/wipes.png"></a></td>'
|
|
|
+ elseif stat_cumloc_check = 1 and menu_off = 1:
|
|
|
+ $statusIconBarTab += '<td><a href="exec:msg $stat_disable_msg"><img title="<<$stat_disable_msg>>" height = <<set_siconht>> src="images/system/icons/status/wipes.png"></a></td>'
|
|
|
+ elseif stat_cumloc_check = 2:
|
|
|
+ $statusIconBarTab += '<td><a href="exec:msg $stat_private_msg"><img title="<<$stat_private_msg>>" height = <<set_siconht>> src="images/system/icons/status/wipes.png"></a></td>'
|
|
|
+ end
|
|
|
end
|
|
|
|
|
|
stat_STD_count = 0
|
|
@@ -1460,13 +1468,13 @@ if cheatStatusIcons = 0:
|
|
|
!!Row 5: Drugs and other short term stuff
|
|
|
|
|
|
if mc_inventory['cigarettes'] > 0:
|
|
|
- $stat_smoker_msg = 'You have <<mc_inventory[''cigarettes'']>> cigarette' + iif(mc_inventory['cigarettes'] = 1, '', 's') + iif(drugVars['cigarettes_need'] > 0 and drugVars['cheat_immune'] = 0, ' and you want to smoke.' , '.')
|
|
|
+ $stat_smoker_msg = 'You have <<mc_inventory[''cigarettes'']>> cigarette' + iif(mc_inventory['cigarettes'] = 1, '', 's') + iif(drugVars['cigarettes_need'] > 0 and cheatVars['drugs_immune'] = 0, ' and you want to smoke.' , '.')
|
|
|
$statusIconBarTab += '<td><a href="exec:msg $stat_smoker_msg"><img title="<<$stat_smoker_msg>>" height = <<set_siconht>> src="images/system/icons/status/cigarettes.png"></a></td>'
|
|
|
end
|
|
|
|
|
|
- if drugVars['cigarettes_used'] >= 20 and drugVars['cheat_immune'] = 0 and drugVars['cigarettes_need'] > 20 and mc_inventory['cigarettes'] > 0:
|
|
|
+ if drugVars['cigarettes_used'] >= 20 and cheatVars['drugs_immune'] = 0 and drugVars['cigarettes_need'] > 20 and mc_inventory['cigarettes'] > 0:
|
|
|
$statusIconBarTab += '<td><a href="exec: gs ''drugs'',''smoke'' & ''You are smoking a cigarette.''"><img title="You really need to smoke, click to smoke a cigarette." height = <<set_siconht>> src="images/system/icons/status/craving_nicotine.png"></a></td>'
|
|
|
- elseif drugVars['cigarettes_used'] >= 20 and drugVars['cheat_immune'] = 0 and drugVars['cigarettes_need'] > 20 and mc_inventory['cigarettes'] <= 0:
|
|
|
+ elseif drugVars['cigarettes_used'] >= 20 and cheatVars['drugs_immune'] = 0 and drugVars['cigarettes_need'] > 20 and mc_inventory['cigarettes'] <= 0:
|
|
|
$statusIconBarTab += '<td><a href="exec:msg ''You really need to smoke, but you have no cigarettes.''"><img title="You really need to smoke, but you have no cigarettes." height = <<set_siconht>> src="images/system/icons/status/craving_nicotine.png"></a></td>'
|
|
|
elseif mc_inventory['cigarettes'] > 0:
|
|
|
$statusIconBarTab += '<td><a href="exec: gs ''drugs'',''smoke'' & ''You are smoking a cigarette.''"><img title="Click to smoke a cigarette." height = <<set_siconht>> src="images/system/icons/status/smoke_cigarette.png"></a></td>'
|
|
@@ -1543,9 +1551,9 @@ if enable_show_status = 0:
|
|
|
if ETOmenu = 1:
|
|
|
$stat_extra_msg += '<BR><b><<$pcs_health>></b>'
|
|
|
$stat_extra_msg += '<BR><b><<$pcs_willpwr>></b>'
|
|
|
- if cheatNoEat = 0: $stat_extra_msg += '<BR><b><<$pcs_energy>></b>'
|
|
|
- if cheatNoDrink = 0: $stat_extra_msg += '<BR><b><<$pcs_hydra>></b>'
|
|
|
- if cheatNoSleep = 0: $stat_extra_msg += '<BR><b><<$pcs_sleep>></b>'
|
|
|
+ if cheatVars['hunger'] = 0: $stat_extra_msg += '<BR><b><<$pcs_energy>></b>'
|
|
|
+ if cheatVars['thirst'] = 0: $stat_extra_msg += '<BR><b><<$pcs_hydra>></b>'
|
|
|
+ if cheatVars['sleep'] = 0: $stat_extra_msg += '<BR><b><<$pcs_sleep>></b>'
|
|
|
elseif Enable_scalepic = 0:
|
|
|
$stat_extra_msg += '<font color="<<$fcolor>>"><TABLE cellpadding="1" cellspacing="0" width="200">'
|
|
|
$stat_extra_msg += '<TR><TD>'+func('indiktab', 2, pcs_horny, pcs_horny)+'</TD><TD> Arousal</TD></TR>'
|
|
@@ -1555,9 +1563,9 @@ if enable_show_status = 0:
|
|
|
$stat_extra_msg += '<TR><TD>'+func('indiktab', 1, pcs_willpwr * 100 / willpowermax, pcs_willpwr)+'</TD><TD> Willpower</TD></TR>'
|
|
|
$stat_extra_msg += '<TR><TD>'+func('indiktab', 1, pcs_stam * 100 / stammax, pcs_stam)+'</TD><TD> Stamina</TD></TR>'
|
|
|
$stat_extra_msg += '<TR><TD>'+func('indiktab', 1, pcs_mood, pcs_mood)+'</TD><TD> Mood</TD></TR>'
|
|
|
- if cheatNoEat = 0: $stat_extra_msg += '<TR><TD>'+func('indiktab', 1, pcs_energy, pcs_energy)+'</TD><TD> Hunger</TD></TR>'
|
|
|
- if cheatNoDrink = 0: $stat_extra_msg += '<TR><TD>'+func('indiktab', 1, pcs_hydra, pcs_hydra)+'</TD><TD> Thirst</TD></TR>'
|
|
|
- if cheatNoSleep = 0: $stat_extra_msg += '<TR><TD>'+func('indiktab', 1, pcs_sleep, pcs_sleep)+'</TD><TD> Sleep</TD></TR>'
|
|
|
+ if cheatVars['hunger'] = 0: $stat_extra_msg += '<TR><TD>'+func('indiktab', 1, pcs_energy, pcs_energy)+'</TD><TD> Hunger</TD></TR>'
|
|
|
+ if cheatVars['thirst'] = 0: $stat_extra_msg += '<TR><TD>'+func('indiktab', 1, pcs_hydra, pcs_hydra)+'</TD><TD> Thirst</TD></TR>'
|
|
|
+ if cheatVars['sleep'] = 0: $stat_extra_msg += '<TR><TD>'+func('indiktab', 1, pcs_sleep, pcs_sleep)+'</TD><TD> Sleep</TD></TR>'
|
|
|
$stat_extra_msg += '</TABLE></font>'
|
|
|
else
|
|
|
gs 'indik', '2', pcs_horny, pcs_horny
|
|
@@ -1583,17 +1591,17 @@ if enable_show_status = 0:
|
|
|
gs 'indik', '1', pcs_mood, pcs_mood
|
|
|
$stat_extra_msg += '<BR><<$ind>> Mood'
|
|
|
|
|
|
- if cheatNoEat = 0:
|
|
|
+ if cheatVars['hunger'] = 0:
|
|
|
gs 'indik', '1', pcs_energy, pcs_energy
|
|
|
$stat_extra_msg += '<BR><<$ind>> Hunger'
|
|
|
end
|
|
|
|
|
|
- if cheatNoDrink = 0:
|
|
|
+ if cheatVars['thirst'] = 0:
|
|
|
gs 'indik', '1', pcs_hydra, pcs_hydra
|
|
|
$stat_extra_msg += '<BR><<$ind>> Thirst'
|
|
|
end
|
|
|
|
|
|
- if cheatNoSleep = 0:
|
|
|
+ if cheatVars['sleep'] = 0:
|
|
|
gs 'indik', '1', pcs_sleep, pcs_sleep
|
|
|
$stat_extra_msg += '<BR><<$ind>> Sleep'
|
|
|
end
|
|
@@ -1834,7 +1842,7 @@ killvar 'stat_extra_msg'
|
|
|
if enable_extra_msg = 1:
|
|
|
if opPRE = 0: $stat_msg += '<BR><<$pcs_makeup>> and your hair is <<$pcs_hairbsh>>.' & !$stat_msg += '<BR>'
|
|
|
|
|
|
- if thinkpreg = 0 and knowpreg = 0 and cycle ! 6 and pillcon2 <= 30000 and succubusflag ! 1 and cheatSlut = 0 and mesec = 0:
|
|
|
+ if thinkpreg = 0 and knowpreg = 0 and cycle ! 6 and pillcon2 <= 30000 and succubusflag ! 1 and cheatVars['no_periods'] = 0 and mesec = 0:
|
|
|
if abortionbirthdate = 0 and daystart - daylastperiod > 28:
|
|
|
if (daystart - daylastperiod > 28) and (daystart - daylastperiod <= 35):
|
|
|
$stat_msg += '<BR><font color = #AB052A><b>Your period is late by <<daystart - daylastperiod - 28>> days.</b></font>'
|
|
@@ -1888,9 +1896,9 @@ if enable_extra_msg = 1:
|
|
|
$stat_msg += '</font>'
|
|
|
end
|
|
|
|
|
|
- if $cycreport_txt ! '' and menu_off = 0 and cheatSlut = 0:
|
|
|
+ if $cycreport_txt ! '' and menu_off = 0 and cheatVars['no_periods'] = 0:
|
|
|
$stat_msg += '<BR><a href="exec:dynamic $d_cycreport_choice"><<$cycreport_txt>></a><br>'
|
|
|
- elseif $cycreport_txt ! '' and menu_off = 1 and cheatSlut = 0:
|
|
|
+ elseif $cycreport_txt ! '' and menu_off = 1 and cheatVars['no_periods'] = 0:
|
|
|
$stat_msg += '<BR><a href="exec:gs ''obj_din'', ''menu_disabled''"><<$cycreport_txt>></a><br>'
|
|
|
end
|
|
|
|
|
@@ -1901,34 +1909,34 @@ if enable_extra_msg = 1:
|
|
|
if drugVars['breastcream_dose'] = 1: $stat_msg += '<BR><font color = #DB7093>Your breasts are feeling hot and tingly.</font>'
|
|
|
if drugVars['aphrodisiac_timer'] > 0: $stat_msg += '<BR><font color = #DB7093>You are feeling hot, and every move causes your groin to tingle.</font>'
|
|
|
|
|
|
- if cheatNoEat = 0 and $stat_hunger_msg ! '' and pcs_energy < 5:
|
|
|
- $stat_msg += '<BR><font color="red"><b><<$stat_hunger_msg>></b></font>'
|
|
|
- elseif cheatNoEat = 0 and $stat_hunger_msg ! '' and pcs_energy < 10:
|
|
|
- $stat_msg += '<BR><font color="red"><<$stat_hunger_msg>></font>'
|
|
|
- elseif cheatNoEat = 0 and $stat_hunger_msg ! '' and pcs_energy < 20:
|
|
|
- $stat_msg += '<BR><<$stat_hunger_msg>>'
|
|
|
- elseif cheatNoEat = 0 and $stat_hunger_msg ! '' and pcs_energy < 30:
|
|
|
- $stat_msg += '<BR><<$stat_hunger_msg>>'
|
|
|
+ if cheatVars['hunger'] = 0 and $stat_hunger_msg ! '' and pcs_energy < 30:
|
|
|
+ if pcs_energy < 5:
|
|
|
+ $stat_msg += '<br><font color="red"><b><<$stat_hunger_msg>></b></font>'
|
|
|
+ elseif pcs_energy < 10:
|
|
|
+ $stat_msg += '<br><font color="red"><<$stat_hunger_msg>></font>'
|
|
|
+ else
|
|
|
+ $stat_msg += '<br><<$stat_hunger_msg>>'
|
|
|
+ end
|
|
|
end
|
|
|
|
|
|
- if cheatNoDrink = 0 and $stat_thirst_msg ! '' and pcs_hydra < 5:
|
|
|
- $stat_msg += '<BR><font color="red"><b><<$stat_thirst_msg>></b></font>'
|
|
|
- elseif cheatNoDrink = 0 and $stat_thirst_msg ! '' and pcs_hydra < 10:
|
|
|
- $stat_msg += '<BR><font color="red"><<$stat_thirst_msg>></font>'
|
|
|
- elseif cheatNoDrink = 0 and $stat_thirst_msg ! '' and pcs_hydra < 20:
|
|
|
- $stat_msg += '<BR><<$stat_thirst_msg>>'
|
|
|
- elseif cheatNoDrink = 0 and $stat_thirst_msg ! '' and pcs_hydra < 30:
|
|
|
- $stat_msg += '<BR><<$stat_thirst_msg>>'
|
|
|
+ if cheatVars['thirst'] = 0 and $stat_thirst_msg ! '' and pcs_hydra < 30:
|
|
|
+ if pcs_hydra < 5:
|
|
|
+ $stat_msg += '<br><font color="red"><b><<$stat_thirst_msg>></b></font>'
|
|
|
+ elseif pcs_hydra < 10:
|
|
|
+ $stat_msg += '<br><font color="red"><<$stat_thirst_msg>></font>'
|
|
|
+ else
|
|
|
+ $stat_msg += '<br><<$stat_thirst_msg>>'
|
|
|
+ end
|
|
|
end
|
|
|
|
|
|
- if cheatNoSleep= 0 and $stat_sleep_msg ! '' and pcs_sleep < 5:
|
|
|
- $stat_msg += '<BR><font color="red"><b><<$stat_sleep_msg>></b></font>'
|
|
|
- elseif cheatNoSleep= 0 and $stat_sleep_msg ! '' and pcs_sleep < 10:
|
|
|
- $stat_msg += '<BR><font color="red"><<$stat_sleep_msg>></font>'
|
|
|
- elseif cheatNoSleep= 0 and $stat_sleep_msg ! '' and pcs_sleep < 20:
|
|
|
- $stat_msg += '<BR><<$stat_sleep_msg>>'
|
|
|
- elseif cheatNoSleep= 0 and $stat_sleep_msg ! '' and pcs_sleep < 30:
|
|
|
- $stat_msg += '<BR><<$stat_sleep_msg>>'
|
|
|
+ if cheatVars['sleep'] = 0 and $stat_sleep_msg ! '' and pcs_sleep < 30:
|
|
|
+ if pcs_sleep < 5:
|
|
|
+ $stat_msg += '<br><font color="red"><b><<$stat_sleep_msg>></b></font>'
|
|
|
+ elseif pcs_sleep < 10:
|
|
|
+ $stat_msg += '<br><font color="red"><<$stat_sleep_msg>></font>'
|
|
|
+ else
|
|
|
+ $stat_msg += '<br><<$stat_sleep_msg>>'
|
|
|
+ end
|
|
|
end
|
|
|
|
|
|
if pcs_horny >= 50:
|
|
@@ -1943,7 +1951,7 @@ if enable_extra_msg = 1:
|
|
|
end
|
|
|
end
|
|
|
|
|
|
- if drugVars['cigarettes_used'] >= 20 and drugVars['cheat_immune'] = 0:
|
|
|
+ if drugVars['cigarettes_used'] >= 20 and cheatVars['drugs_immune'] = 0:
|
|
|
if drugVars['cigarettes_need'] > 0:
|
|
|
if mc_inventory['cigarettes'] > 0:
|
|
|
$stat_msg += '<BR><a href="exec:gs ''drugs'',''smoke''"><font color="red"><b>You want to smoke. You have <<mc_inventory[''cigarettes'']>> cigarettes left.</b></font></a><BR>'
|
|
@@ -1964,22 +1972,24 @@ if enable_extra_msg = 1:
|
|
|
if drugVars['cigarettes_day'] = daystart and drugVars['cigarettes_hour'] = hour and drugVars['cigarettes_minute'] >= minut: $stat_msg += '<BR><font color="green">You are smoking a cigarette.</font><BR>'
|
|
|
if drugVars['weed_day'] = daystart and drugVars['weed_hour'] = hour and drugVars['weed_minute'] >= minut: $stat_msg += '<BR><font color="green">You are smoking a joint.</font><BR>'
|
|
|
|
|
|
- if cheatNoSweat = 0 and pcs_sweat > 59:
|
|
|
- $stat_msg += '<br><b><font color="red"><<$stat_sweat_msg>></font></b><br>'
|
|
|
- elseif cheatNoSweat = 0 and pcs_sweat > 49:
|
|
|
- $stat_msg += '<br><b><font color="red"><<$stat_sweat_msg>></font></b>'
|
|
|
- elseif cheatNoSweat = 0 and pcs_sweat > 39:
|
|
|
- $stat_msg += '<br><font color="red"><<$stat_sweat_msg>></font>'
|
|
|
- elseif cheatNoSweat = 0 and pcs_sweat > 29:
|
|
|
- $stat_msg += '<br><font color="red"><<$stat_sweat_msg>></font>'
|
|
|
- elseif cheatNoSweat = 0 and pcs_sweat > 19:
|
|
|
- $stat_msg += '<br><font color="brown"><<$stat_sweat_msg>></font>'
|
|
|
- elseif cheatNoSweat = 0 and pcs_sweat > 9 and deodorant_on = 1:
|
|
|
- $stat_msg += '<br><b><font color="green"><<$stat_sweat_msg>></font>'
|
|
|
- elseif cheatNoSweat = 0 and arrsize('sparrvol') = 0:
|
|
|
- $stat_msg += '<br><b><font color="green"><<$stat_sweat_msg>></font></b>'
|
|
|
- elseif cheatNoSweat = 0 and deodorant_on = 1:
|
|
|
- $stat_msg += '<br><b><font color="green"><<$stat_sweat_msg>></font></b>'
|
|
|
+ if cheatVars['no_sweat'] = 0:
|
|
|
+ if pcs_sweat > 59:
|
|
|
+ $stat_msg += '<br><b><font color="red"><<$stat_sweat_msg>></font></b><br>'
|
|
|
+ elseif pcs_sweat > 49:
|
|
|
+ $stat_msg += '<br><b><font color="red"><<$stat_sweat_msg>></font></b>'
|
|
|
+ elseif pcs_sweat > 39:
|
|
|
+ $stat_msg += '<br><font color="red"><<$stat_sweat_msg>></font>'
|
|
|
+ elseif pcs_sweat > 29:
|
|
|
+ $stat_msg += '<br><font color="red"><<$stat_sweat_msg>></font>'
|
|
|
+ elseif pcs_sweat > 19:
|
|
|
+ $stat_msg += '<br><font color="brown"><<$stat_sweat_msg>></font>'
|
|
|
+ elseif pcs_sweat > 9 and deodorant_on = 1:
|
|
|
+ $stat_msg += '<br><b><font color="green"><<$stat_sweat_msg>></font>'
|
|
|
+ elseif arrsize('sparrvol') = 0:
|
|
|
+ $stat_msg += '<br><b><font color="green"><<$stat_sweat_msg>></font></b>'
|
|
|
+ elseif deodorant_on = 1:
|
|
|
+ $stat_msg += '<br><b><font color="green"><<$stat_sweat_msg>></font></b>'
|
|
|
+ end
|
|
|
end
|
|
|
|
|
|
!! breast status
|