intro_initialization.qsrc 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. # intro_initialization
  2. BDSMfilm = 0
  3. pornstudio = 0
  4. pfilmSTOP = 0
  5. thinkpreg = 0
  6. denypreg = 0
  7. pertemp = 1
  8. pillcvrt = 1
  9. pcs_naturallashes = pcs_lashes
  10. !! Initializing elasticity
  11. vshrink = 1
  12. vshrinkdays = 6
  13. ashrink = 1
  14. ashrinkdays = 3
  15. fairycurse = -1
  16. $excer_name[1] = 'Default 1'
  17. $excer_name[2] = 'Default 2'
  18. $excer_name[3] = 'Default 3'
  19. $excer_name[4] = 'Default 4'
  20. $excer_name[5] = 'Default 5'
  21. gs 'time', 'init_monthnames'
  22. gs 'time', 'init_monthends'
  23. gs 'time', 'init_weeknames'
  24. gs 'telefon', 'setup'
  25. pcs_dob = birthyear * 10000
  26. pcs_dob += (birthmonth * 100)
  27. pcs_dob += birthday
  28. age = year - ((pcs_dob - (pcs_dob mod 10000)) / 10000)
  29. if ((month * 100) + day) < pcs_dob mod 10000: age -= 1
  30. if age < 17:
  31. vidage = age
  32. else
  33. vidage = age - 1
  34. end
  35. vidageday = 300
  36. pcs_health = pcs_vital * 10 + pcs_stren * 5
  37. pcs_willpwr = pcs_intel * 5 + pcs_sprt * 5
  38. pcs_mana = (pcs_intel * pcs_magik) + pcs_magik * 100 + pcs_vital * 10 + rikudo
  39. pcs_mood = 100
  40. pcs_stam = 100
  41. makeup['base'] = 1
  42. nathcol = pcs_haircol
  43. pcs_pubecol = pcs_haircol & pcs_pubecol[1] = 1
  44. oldsavepcs_haircol = 1
  45. gs 'body', 'initial'
  46. gs 'time', 'update_date'
  47. gs 'yearstart'
  48. gs 'din_pav'
  49. gs 'din_npc'
  50. gs 'dinSex2'
  51. gs 'dina'
  52. gs 'din_van'
  53. gs 'din_bad'
  54. gs 'dinSex'
  55. gs 'newspaper', 'cikl'
  56. !! KEY! I merged 'dinBoroda' with 'clener' and removed the dynamics. This line was at the end of dinBoroda, so I moved it here just in case. Sicaa
  57. rikudootvet = 1415
  58. gs 'BanSexType'
  59. gs 'outdoors', 'weather'
  60. menoage = rand(40,50)
  61. temprand = rand(0,10)
  62. if temprand = 0:
  63. menoage += rand(0,5)
  64. elseif temprand < 4:
  65. menoage += rand(3,10)
  66. elseif temprand < 9:
  67. menoage += rand(5,12)
  68. else
  69. menoage += rand(7,13)
  70. end
  71. !!Setting up period start and turning on auto tracking if not on hardcore difficulty
  72. daylastperiod = daystart
  73. temprand = rand(1,3)
  74. if temprand = 1:
  75. cycle = 1
  76. EggRH = rand(1,149)
  77. FocH = EggRH + 4*24
  78. mesec = 0
  79. unfertegg = 0
  80. ferteggage = 0
  81. Ovulate = 0
  82. LutH = 0
  83. daylastperiod -= FocH/24
  84. elseif temprand = 2:
  85. lastovulation = daystart
  86. cycle = 2
  87. unfertegg = 1
  88. ferteggage = rand(0,44)
  89. Ovulate = (rand(24,44) - ferteggage)
  90. if Ovulate <= 0: Ovulate = 1
  91. mesec = 0
  92. EggRH = 0
  93. FocH = 0
  94. LutH = 0
  95. daylastperiod -= 10+(ferteggage/24)
  96. elseif temprand = 3:
  97. cycle = 3
  98. LutH = rand(0,300)
  99. ferteggage = 36 + LutH
  100. mesec = 0
  101. EggRH = 0
  102. FocH = 0
  103. unfertegg = 0
  104. Ovulate = 0
  105. daylastperiod -= 10+(ferteggage/24)
  106. end
  107. if daylastperiod + 4 > daystart:
  108. lastmens = daylastperiod - 20
  109. else
  110. lastmens = daylastperiod + 4
  111. end
  112. if difficulty = 4:
  113. cheatVars['track_period'] = 0
  114. else
  115. cheatVars['track_period'] = 1
  116. end
  117. cheatVars['enema'] = 1
  118. cheatVars['auto_tampons'] = 1
  119. !! give everyone some shampoo
  120. mc_inventory['shampoo'] += 10
  121. pcs_horny = 0
  122. killvar 'opPRE'
  123. killvar 'tgs_skipinto'
  124. gs 'stat'
  125. showstat 0
  126. showobjs 0
  127. if pcs_nerd > 0: lastreadday = daystart - 1
  128. ml_delparcoQW['Stage'] = 0
  129. ml_delparcoQW['Zariyah Trust'] = 50
  130. gs 'body', 'Update_Body'
  131. gs 'body', 'DailyUpdate'
  132. pcs_stam = stammax
  133. --- intro_initialization ---------------------------------