begin.qsrc 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. # begin
  2. !!2021/04/01
  3. if $ARGS[0] = 'start':
  4. $loc_arg = 'start'
  5. $loc = 'begin'
  6. alarmVars['timerEndH'] = 8
  7. alarmVars['timerEndM'] = 0
  8. alarmVars['timerH'] = 6
  9. alarmVars['timerM'] = 30
  10. sleepVars['events_active'] = 1
  11. sleepVars['dreams_active'] = 1
  12. settingmode = 0
  13. $checkimg = {
  14. if $ARGS[0]=$ARGS[1]:
  15. $result = '<TD><center><img src="images/system/icons/check.png" height="50"></center></TD>'
  16. else
  17. $result = '<TD><center><a href="exec:$start_type = ''<<$ARGS[1]>>'' & gt ''begin'',''start''"><img src="images/system/icons/uncheck.png" height="50"></a></center></TD>'
  18. end
  19. }
  20. gs 'Cheatmenu_din'
  21. showstat 1
  22. '<center><b><font color="maroon">CHOOSE GAME START</font></b></center>'
  23. *nl
  24. '<center>There are three main start types:'
  25. 'Last year of school (before or after summer holidays);'
  26. 'In the city post graduation from school;'
  27. 'First year of university.'
  28. *nl
  29. 'For each start type there are 3 options:'
  30. 'Standard;'
  31. 'Magical (Your character will gain magic abilities and learn about a secret magical world);'
  32. 'M2F (As per magic but your character will magically be turned into a girl in the intro).</center>'
  33. *nl
  34. *nl
  35. *nl
  36. *nl
  37. '<center><table><TH width="100"><p align="center">Start Type</p></TH><TH width="80"><p align="center">Standard</p></TH><TH width="80"><p align="center">Magical</p></TH><TH width="80"><p align="center">M2F</p></TH>'
  38. $start_text = '<TR><TD><p align="center">School</p></TD>'
  39. $start_text += $dyneval($checkimg,$start_type,'sg')
  40. $start_text += $dyneval($checkimg,$start_type,'sg_m')
  41. $start_text += $dyneval($checkimg,$start_type,'sg_tg')
  42. $start_text += '<TR><TD><p align="center">City</p></TD>'
  43. $start_text += $dyneval($checkimg,$start_type,'city')
  44. $start_text += $dyneval($checkimg,$start_type,'city_m')
  45. $start_text += $dyneval($checkimg,$start_type,'city_tg')
  46. $start_text += '<TR><TD><p align="center">University</p></TD>'
  47. $start_text += $dyneval($checkimg,$start_type,'uni')
  48. $start_text += $dyneval($checkimg,$start_type,'uni_m')
  49. $start_text += $dyneval($checkimg,$start_type,'uni_tg')
  50. $start_text
  51. '</table></center>'
  52. if $start_type = 'sg' or $start_type = 'sg_m':
  53. act '<center><b>Start</b></center>': gt 'intro_sg', 'start'
  54. elseif $start_type ! '':
  55. act '<center><b>Start</b></center>': gt 'intro_'+$start_type, 'start'
  56. end
  57. act '<center><b>Change game settings</b></center>': settingmode = 1 & gs '$menu_setting'
  58. end
  59. if $ARGS[0] = 'warning':
  60. '<center><b><font color = white>WARNING</font></b></center>'
  61. *nl
  62. *nl
  63. *nl
  64. *nl
  65. *nl
  66. *nl
  67. '<center><img <<$set_imgh>> src="images/system/1_openings/warning.jpg" ></center>'
  68. act '<center><b>Continue</b></center>': gt 'begin','real_character'
  69. end
  70. if $ARGS[0] = 'real_character':
  71. $BACKIMAGE = ''
  72. cls
  73. '<center><b><font color = maroon>CHARACTER SELECTION</font></b></center>'
  74. '<center><img <<$set_imgh>> src="images/system/1_openings/shared/character_creation_1.jpg"></center><center>'
  75. *nl
  76. 'This game has two ways to display your character''s face, either dynamically depending on your hair style and colour or a fixed image of your choice.'
  77. 'To use a fixed image, replace the image "avatar" in the "images" folder of the game with a file of the same name and format (.jpg) and select "Use a fixed image".'
  78. 'Please note, this choice can be changed in the cheat menu at any time. Only one fixed image can be used at a time and will be the same across all saves.'
  79. 'Your fixed image is your own personal choice, and is based on your personal preferences. By default, the game uses an avatar image from the site wikimedia.org.'
  80. *nl
  81. 'If you are playing with Quest player for Android, click '
  82. if Enable_Android = 1:
  83. *P '<a href="exec:Enable_Android = 0 & gt ''begin'',''real_character''">Here</a> (Current: <B>Yes</B>)'
  84. else
  85. *P '<a href="exec:Enable_Android = 1 & gt ''begin'',''real_character''">Here</a> (Current: <B>No</B>)'
  86. end
  87. '</center>'
  88. act'<center><b>Use the dynamic profile system</b></center>':
  89. cls
  90. gt 'begin', 'start'
  91. end
  92. act'<center><b>Use a fixed profile image</b></center>':
  93. cls
  94. player_avatar = 1
  95. gt 'begin', 'start'
  96. end
  97. end
  98. --- begin ---------------------------------