intro_sg.qsrc 3.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. !!folder: start
  2. # intro_sg
  3. gs 'themes', 'indoors'
  4. if $ARGS[0] = 'start':
  5. menu_off = 1
  6. '<center><img <<$set_imgh>> src="images/system/1_openings/shared/pre_5.jpg"></center>'
  7. 'You were born in the small town of Pavlovsk near the city of St Petersburg. You have an older sister, Anya, who is two years older than you.'
  8. 'Your mother is Natasha. You don''t know much about your biological father; your mother never wants to talk about him, or why he left you and Anya with her.'
  9. 'Your mother met another man not too long after her and your biological father got divorced, Vladimir. Together they had your little brother Kolka. Even though he''s not your real father, Vladimir has always treated you and Anya as if you were his own children.'
  10. act '<center><b>Continue</b></center>': gt 'intro_sg', 'Two'
  11. end
  12. if $ARGS[0] = 'Two':
  13. '<center><img <<$set_imgh>> src="images/system/1_openings/shared/pre_6.jpg"></center>'
  14. 'You had a pleasant, undisturbed childhood when you were young. Although you don''t remember much from kindergarten, you do remember going to elementary school when you were 6 years old.'
  15. act '<center><b>Continue</b></center>': gt 'intro_sg', 'Three'
  16. end
  17. if $ARGS[0] = 'Three':
  18. $loc = 'intro_sg'
  19. $loc_arg = 'four'
  20. '<center><img <<$set_imgh>> src="images/system/1_openings/shared/pre_7.jpg"></center>'
  21. 'Like it does for most girls, you reached the milestone of puberty when you were 13 years old. You had your first period, which sucked, but that was just the start of your changes.'
  22. 'Your chest felt strange and you discovered your breasts were growing! This excited you: how big will they be when you grow up? Hair also began to grow in your armpits and pubic area, and at the same time you felt things... intimate things. Over time you learned to appreciate these feelings, and how to manage your developing body. Your troublesome skin complexion remains an issue though.'
  23. 'When you finished 9th grade, you decided to continue with your secondary education. You completed the first one, only one more year of school to go, but first: What type of student are you?'
  24. act '<center><b>Time to choose</b></center>': gt 'intro_sg_select', 'start'
  25. end
  26. if $ARGS[0] = 'four':
  27. $loc = 'intro_sg'
  28. $loc_arg = 'four'
  29. '<center><b><font color = maroon>Character Face</font></b></center>'
  30. '<center><b>Allows you to alter hair and eyes, use to match fixed profile picture if in use.</b></center>'
  31. '<center><img <<$set_imgh>> src="images/system/1_openings/shared/character_creation_2.jpg"></center>'
  32. *nl
  33. '<center>Customize your:</center>'
  34. '<center><a href="exec:gs ''intro_customization'', ''hair''"><img src="images/system/1_openings/shared/icon_hair.png"></a> <a href="exec:gs ''intro_customization'', ''eyes''"><img src="images/system/1_openings/shared/icon_eye.png"></a></center>'
  35. if $start_type['magic'] = 'magic':
  36. act '<center><b>Done</b></center>': gt 'intro_sg_m', 'four'
  37. else
  38. act '<center><b>Done</b></center>': gt 'intro_sg', 'five'
  39. end
  40. end
  41. if $ARGS[0] = 'five':
  42. gs 'intro_sg_select', 'sg_settings'
  43. gs 'intro_initialization'
  44. showstat 1
  45. showobjs 1
  46. gs 'obj_din', 'old'
  47. *clr
  48. cla
  49. '<center><img <<$set_imgh>> src="images/system/1_openings/2_sg/start_sg.jpg"></center>'
  50. 'Welcome to the Schoolgirl version! You will need to carry on with your school life, manage your relationships and deal with whatever else comes up along the way!'
  51. act 'Begin':
  52. close all
  53. if start_location = 2:
  54. gt 'gadhouse', 'intro'
  55. elseif start_location = 1:
  56. gt 'bedrPar', 'intro'
  57. end
  58. end
  59. act 'Restart':
  60. *clr & cla
  61. 'This will reset everything and take you back to the begining.'
  62. 'Are you <i><b>very</i></b> sure you want to start from the begining again?'
  63. act 'No, I hit the wrong option!': gt 'intro_sg', 'four'
  64. act 'Yes, I''m sure, start over.': killall & gt 'start'
  65. end
  66. end
  67. --- intro_sg ---------------------------------