1
0

start.qsrc 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. # start
  2. killall
  3. close all
  4. usehtml = 1
  5. debug = 1
  6. showstat 0
  7. showobjs 0
  8. showinput 0
  9. disablescroll = 1
  10. $ongload = 'loadg'
  11. $ongsave = 'saveg'
  12. $onnewloc = 'LOCA'
  13. $onobjsel = 'onobjsel'
  14. $counter = 'counter'
  15. $usercom = 'inputProcessing'
  16. if night_mode = 1:
  17. fcolor = rgb(255, 255, 255)
  18. bcolor = rgb(0, 0, 0)
  19. lcolor = rgb(106, 90, 205)
  20. elseif night_mode = 2:
  21. fcolor = rgb(255, 255, 255)
  22. bcolor = rgb(20, 20, 20)
  23. lcolor = rgb(106, 90, 205)
  24. else
  25. fcolor = rgb(0, 0, 0)
  26. bcolor = rgb(255, 255, 255)
  27. lcolor = rgb(106, 90, 205)
  28. end
  29. $fname = 'Tahoma'
  30. fsize = 12
  31. $version = '0.7.2 The one with pee on it version.'
  32. opPRE = 1
  33. *nl
  34. '<center>Version <b><<$version>></b></center>'
  35. '<center><font color="red"><b>Children under 18 years are strictly forbidden to play</b></font>'
  36. *nl
  37. '<center><img <<$set_imgh>> src="images/system/gl3.jpg" ></center>'
  38. '<center>Based on the Russian game ЭТО by DeGross.</center>'
  39. *nl
  40. 'This game is about the simulated life of a woman containing elements of RPG, strategy, porn and magical combat.'
  41. 'You may choose what kind of life the character will live according to your play style, conscience or even personal beliefs.'
  42. 'There are many choices to make in this game, will you be a saint or a sinner?'
  43. *nl
  44. 'All characters in this game are fictional and any similarities to any persons living or dead are purely coincidental.'
  45. 'All explicit images are performed by consenting adults aged 18 or older. Images are for illustrative purposes only.'
  46. *nl
  47. '<b><a href="exec:gt ''version''">Change log</a> and <a href="exec:gt ''history''">Game history</a></b>'
  48. *nl
  49. '<b>* Wiki hosted by Wikia available <a href="http://girl-life.wikia.com/wiki/Girl_life_Wiki">here</a> (External link) *</center></b>'
  50. '<center>Feel free to contribute.</center>'
  51. act '<center><b>Start</b></center>':
  52. cla
  53. if music_on = 0:
  54. music_on = 1
  55. $track_loop = 'sound/suki.mp3'
  56. volume = 100
  57. music_loop = 1
  58. end
  59. gt 'begin','real_character'
  60. end
  61. act '<center><b>LOAD</b></center>':OPENGAME
  62. act '<center>Load <b>QuickSave</b></center>':OPENGAME 'quicksave.sav'
  63. act '<center>Load Autosave for <b>original</b> start game</center>':OPENGAME 'autosave.sav'
  64. act '<center>Load Autosave for <b>schoolgirl</b> start game</center>':OPENGAME 'autosave_alt.sav'
  65. act '<center>Test video</center>':
  66. cls
  67. '<center><video autoplay loop src="images/system/test_video.mp4"></video></center>'
  68. *nl
  69. '<center><b>Video should be playing here, there may be a short delay for on this first video.</b></center>'
  70. act 'Return': gt 'start'
  71. end
  72. ! WD: Set variable to store Image needed HTML code
  73. set $ImageNeededPlacholder = '<center><img src="images/system/image_needed.png"></center>'
  74. --- start ---------------------------------