start.qsrc 2.9 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. if $QSPVER ! '5.7.0':
  10. showacts 0
  11. '<center><font size="+3" color="red"><b>RUNTIME VERSION MISMATCH</b></font><br>'
  12. 'The player you are using is incompatible with <b>Girl Life</b><br>'
  13. 'Please use one of the recommended players: <a href="https://tfgames.site/index.php?module=viewgame&id=597"><b>link</b</a></center>'
  14. exit
  15. end
  16. showacts 1
  17. disablescroll = 1
  18. $ongload = 'loadg'
  19. $ongsave = 'saveg'
  20. $onnewloc = 'LOCA'
  21. $onobjsel = 'onobjsel'
  22. $counter = 'counter'
  23. $usercom = 'inputProcessing'
  24. $fname = 'Tahoma'
  25. fsize = 12
  26. gs 'saveg'
  27. gs 'addbuilddate'
  28. $version = '<b><<version_major+"."+version_minor+"."+version_revision+"."+version_patch+iif($git_hash ! "", "<br>"+$git_hash+" (dev build)", "")>></b><br>built on <b><<$builddate>></b>'
  29. opPRE = 1
  30. *nl
  31. '<center>Version <<$version>></center>'
  32. '<center><font color="red"><b>Children under 18 years are strictly forbidden to play</b></font>'
  33. *nl
  34. '<center><img <<$set_imgh>> src="images/system/1_openings/splashes/splash' + rand(1,30) + '.jpg" ></center>'
  35. '<center>Based on the Russian game ЭТО by DeGross.</center>'
  36. *nl
  37. 'This game is about the simulated life of a woman containing elements of RPG, strategy, porn and magical combat.'
  38. 'You may choose what kind of life the character will live according to your play style, conscience or even personal beliefs.'
  39. 'There are many choices to make in this game, from chaste nun to slutty porn star. Will you be a saint or a sinner?'
  40. *nl
  41. 'All characters in this game are fictional and any similarities to any persons living or dead are purely coincidental.'
  42. 'All explicit images are performed by consenting adults aged 18 or older. Images are for illustrative purposes only.'
  43. *nl
  44. '<b><a href="exec:gt ''version''">Change log</a> and <a href="exec:gt ''history''">Game history</a></b>'
  45. *nl
  46. '<b>* Wiki hosted by Google sites available <a href="https://sites.google.com/view/girllifewiki/home">here</a> (External link) *</center></b>'
  47. '<center>Feel free to contribute.</center>'
  48. gs 'themes', 'indoors'
  49. act '<center><b>Start</b></center>':
  50. cla
  51. if music_on = 0:
  52. music_on = 1
  53. $track_loop = 'sound/suki.mp3'
  54. volume = 100
  55. music_loop = 1
  56. end
  57. gt 'begin','warning'
  58. end
  59. act '<center><b>LOAD</b></center>':OPENGAME
  60. act '<center>Load <b>QuickSave</b></center>':OPENGAME 'quicksave.sav'
  61. !! act '<center>Load Autosave for <b>original</b> start game</center>':OPENGAME 'autosave.sav'
  62. !! act '<center>Load Autosave for <b>schoolgirl</b> start game</center>':OPENGAME 'autosave_alt.sav'
  63. act '<center>Test video</center>':
  64. cls
  65. '<center><video autoplay loop src="images/system/test_video.mp4"></video></center>'
  66. *nl
  67. '<center><b>Video should be playing here, there may be a short delay for on this first video.</b></center>'
  68. act 'Return': gt 'start'
  69. end
  70. ! WD: Set variable to store Image needed HTML code
  71. set $ImageNeededPlacholder = '<center><img src="images/system/image_needed.png"></center>'
  72. --- start ---------------------------------