1
0

start 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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.0 The moving pictures version.'
  28. opPRE = 1
  29. '<center>This game is based on the Russian game ЭТО by DeGross.</center>'
  30. *nl
  31. '<center>Version <b><<$version>></b></center>'
  32. *nl
  33. '<center><font color="red"><b>Children under 18 years are strictly forbidden to play</b></font>'
  34. *nl
  35. '<center><img <<$set_imgh>> src="images/system/gl3.jpg" ></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, 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. 'The images used for sexual elements of this game are performed by 18yo and over consenting adults and used for illustrative purposes only.'
  43. *nl
  44. '<b>Change log: <a href="exec:gt ''version''">Here</a>. Game history: <a href="exec:gt ''history''">Here</a></b>'
  45. *nl
  46. '<b>* Wiki hosted by Wikia available <a href="http://girl-life.wikia.com/wiki/Girl_life_Wiki">here</a> (External link). * Feel free to contribute.</center></b>'
  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. if music_on = 0:
  56. music_on = 1
  57. $track_loop = 'sound/suki.mp3'
  58. volume = 100
  59. music_loop = 1
  60. end
  61. ! WD: Set variable to store Image needed HTML code
  62. set $ImageNeededPlacholder = '<center><img src="images/system/image_needed.png"></center>'
  63. --- start ---------------------------------