start.qsrc 2.5 KB

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