start 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  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.1 The banking update version.'
  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></center>'
  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. 'We will try to avoid rights and wrongs during the game.'
  42. *nl
  43. '<b>* Change log and wiki now available <a href="http://git.tfgamessite.com/mjsmagalhes/girllife-ecv/wikis/home">here</a>. *</b>'
  44. *nl
  45. 'Recent Version Tracking: <a href="gt ''version''">Here</a>'
  46. *nl
  47. StoryLine = 0
  48. MagikDostup = 0
  49. $name = 'Michael'
  50. $surname = 'Kuznetsov'
  51. age = 35
  52. vidage = 35
  53. year = 2015
  54. month = 5
  55. week = 1
  56. hour = 7
  57. day = 25
  58. !!body
  59. rost = 186
  60. fat = 130
  61. dick = 0
  62. energy = 60
  63. water = 60
  64. son = 70
  65. !!stats
  66. stren = 160
  67. speed = 50
  68. agil = 50
  69. vital = 160
  70. intel = 50
  71. will = 100
  72. react = 50
  73. health = vital * 10
  74. willpower = intel * 5 + will * 5
  75. manna = (intel * magik) + vital * 5
  76. BDSMfilm = 0
  77. pornstudio = 0
  78. pfilmSTOP = 0
  79. money = 1500
  80. opPRE = 1
  81. tanga = 1
  82. clrbelo = 1
  83. birthday = 5
  84. birthmonth = 3
  85. !initializing elasticity
  86. vshrink = 1
  87. vshrinkdays = 6
  88. ashrink = 1
  89. ashrinkdays = 3
  90. !MJ: The day the month ends. Including possible rollover months 0 and 13.
  91. monthsend[1] = 31
  92. if ((year mod 4 = 0) and (year mod 100 ! 0)) or (year mod 400 = 0):
  93. Leapyear = 1 & monthsend[2] = 29
  94. else
  95. Leapyear = 0 & monthsend[2] = 28
  96. end
  97. monthsend[3] = 31
  98. monthsend[4] = 30
  99. monthsend[5] = 31
  100. monthsend[6] = 30
  101. monthsend[7] = 31
  102. monthsend[8] = 31
  103. monthsend[9] = 30
  104. monthsend[10] = 31
  105. monthsend[11] = 30
  106. monthsend[12] = 31
  107. $monthName[1] = 'January'
  108. $monthName[2] = 'February'
  109. $monthName[3] = 'March'
  110. $monthName[4] = 'April'
  111. $monthName[5] = 'May'
  112. $monthName[6] = 'June'
  113. $monthName[7] = 'July'
  114. $monthName[8] = 'August'
  115. $monthName[9] = 'September'
  116. $monthName[10] = 'October'
  117. $monthName[11] = 'November'
  118. $monthName[12] = 'December'
  119. $month = $monthName[month]
  120. act '<center><b>Start</b></center>':
  121. cla
  122. gt 'begin','real_character'
  123. end
  124. act '<center><b>LOAD</b></center>':OPENGAME
  125. act '<center>Load Autosave for <b>original</b> start game</center>':OPENGAME 'autosave.sav'
  126. act '<center>Load Autosave for <b>schoolgirl</b> start game</center>':OPENGAME 'autosave_alt.sav'
  127. if music_on = 0:
  128. inited = 1
  129. music_on = 1
  130. volume = 100
  131. $music_theme = 'sukizaebali'
  132. gs 'init_music'
  133. end
  134. ! WD: Set variable to store Image needed HTML code
  135. set $ImageNeededPlacholder = '<center><img src="images/community/Image_needed.png"></center>'
  136. --- start ---------------------------------