1
0

start 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. # start
  2. killall
  3. close all
  4. !addqst 'car.qsp'
  5. usehtml = 1
  6. debug = 1
  7. showstat 0
  8. showobjs 0
  9. showinput 0
  10. disablescroll = 1
  11. !nosave 0
  12. $ongload = 'loadg'
  13. $ongsave = 'saveg'
  14. $onnewloc = 'LOCA'
  15. $onobjsel = 'onobjsel'
  16. $counter = 'counter'
  17. $usercom = 'inputProcessing'
  18. fcolor = rgb(0, 0, 0)
  19. bcolor = rgb(255, 255, 255)
  20. lcolor = rgb(106, 90, 205)
  21. $fname = 'Tahoma'
  22. fsize = 12
  23. $version = '0.5.3 the rushed mess so we can get onto 0.6.0 version (sorry).'
  24. *nl
  25. *nl
  26. '<hr align="left" color="red" size="3" width="1200">'
  27. '<center><h2>Girl Life [English Community Version]</h2></center>'
  28. *nl
  29. '<center>This is game is based on the russian game ЭТО by DeGross.</center>'
  30. *nl
  31. '<hr align="left" color="red" size="3" width="1200">'
  32. *nl
  33. '<center>Version <b><<$version>></b></center>'
  34. *nl
  35. *nl
  36. '<center><font color="red"><b>Children under 18 years are strictly forbidden to play</b></font>'
  37. *nl
  38. *nl
  39. 'This game is about the simulated life of a woman containing elements of RPG, strategy, porn and magical combat.'
  40. 'You may choose what kind of life the character will live according to your play style, conscience or even personal beliefs.'
  41. 'There are many choices to make in this game, will you be a saint or a sinner?'
  42. *nl
  43. 'All characters in this game are fictional and any similarities to any persons living or dead are purely coincidental.'
  44. 'The images used for sexual elements of this game are performed by 18yo and over consenting adults and used for illustrative purposes only.'
  45. *nl
  46. '<b>* Change log and wiki now available <a href="http://git.tfgamessite.com/KevinSmarts/girllife-ecv/wikis/home">here</a> (External link). *</b>'
  47. *nl
  48. 'Recent Version History: <a href="exec:gt ''version''">Here</a></center>'
  49. *nl
  50. pc = 100
  51. StoryLine = 0
  52. MagikDostup = 0
  53. $pcs_firstname = 'Michael'
  54. $pcs_lastname = 'Kuznetsov'
  55. age = 35
  56. vidage = 35
  57. year = 2018
  58. year_start = 2018
  59. month = 5
  60. week = 1
  61. hour = 7
  62. day = 25
  63. daystart_start = 145
  64. gs 'daystart'
  65. gs 'outdoors', 'weather'
  66. !!body
  67. rost = 186
  68. fat = 130
  69. dick = 0
  70. energy = 60
  71. water = 60
  72. son = 70
  73. !!stats
  74. pcs_stren = 160
  75. speed = 50
  76. pcs_agil = 50
  77. pcs_vital = 160
  78. pcs_intel = 50
  79. will = 100
  80. react = 50
  81. health = pcs_vital * 10
  82. willpower = pcs_intel * 5 + will * 5
  83. manna = (pcs_intel * magik) + pcs_vital * 5
  84. BDSMfilm = 0
  85. pornstudio = 0
  86. pfilmSTOP = 0
  87. money = 1500
  88. opPRE = 1
  89. tanga = 1
  90. clrbelo = 1
  91. birthday = 5
  92. birthmonth = 3
  93. birthyear = 1983
  94. pcs_dob = 19830305
  95. !initializing elasticity
  96. vshrink = 1
  97. vshrinkdays = 6
  98. ashrink = 1
  99. ashrinkdays = 3
  100. oldsavehcol = 1
  101. !MJ: The day the month ends. Including possible rollover months 0 and 13.
  102. monthsend[1] = 31
  103. if ((year mod 4 = 0) and (year mod 100 ! 0)) or (year mod 400 = 0):
  104. Leapyear = 1 & monthsend[2] = 29
  105. else
  106. Leapyear = 0 & monthsend[2] = 28
  107. end
  108. monthsend[3] = 31
  109. monthsend[4] = 30
  110. monthsend[5] = 31
  111. monthsend[6] = 30
  112. monthsend[7] = 31
  113. monthsend[8] = 31
  114. monthsend[9] = 30
  115. monthsend[10] = 31
  116. monthsend[11] = 30
  117. monthsend[12] = 31
  118. $monthName[1] = 'January'
  119. $monthName[2] = 'February'
  120. $monthName[3] = 'March'
  121. $monthName[4] = 'April'
  122. $monthName[5] = 'May'
  123. $monthName[6] = 'June'
  124. $monthName[7] = 'July'
  125. $monthName[8] = 'August'
  126. $monthName[9] = 'September'
  127. $monthName[10] = 'October'
  128. $monthName[11] = 'November'
  129. $monthName[12] = 'December'
  130. $month = $monthName[month]
  131. act '<center><b>Start</b></center>':
  132. cla
  133. gt 'begin','real_character'
  134. end
  135. act '<center><b>LOAD</b></center>':OPENGAME
  136. act '<center>Load Autosave for <b>original</b> start game</center>':OPENGAME 'autosave.sav'
  137. act '<center>Load Autosave for <b>schoolgirl</b> start game</center>':OPENGAME 'autosave_alt.sav'
  138. if music_on = 0:
  139. inited = 1
  140. music_on = 1
  141. volume = 100
  142. $music_theme = 'sukizaebali'
  143. gs 'init_music'
  144. end
  145. ! WD: Set variable to store Image needed HTML code
  146. set $ImageNeededPlacholder = '<center><img src="images/community/image_needed.png"></center>'
  147. --- start ---------------------------------