2022-10-21 03:43:01 +02:00
|
|
|
|
|
|
|
label splashscreen:
|
|
|
|
$ persistent.splashtype = random.randint(0,2000 - 1)
|
2022-12-29 21:43:58 +01:00
|
|
|
|
|
|
|
image caveintrosequence:
|
|
|
|
"caveintro"
|
|
|
|
alpha 0
|
|
|
|
time 0.5
|
|
|
|
linear 3.5 alpha 1
|
2023-01-01 02:36:22 +01:00
|
|
|
time 10
|
2022-12-29 21:43:58 +01:00
|
|
|
linear 1 alpha 0
|
|
|
|
|
|
|
|
show caveintrosequence
|
2023-01-01 02:36:22 +01:00
|
|
|
play sound 'audio/OST/startup.ogg'
|
|
|
|
pause 11.2
|
|
|
|
stop sound
|
2022-10-21 03:43:01 +02:00
|
|
|
|
2022-10-29 07:45:15 +02:00
|
|
|
if (persistent.languaged_up is None):
|
2022-11-28 11:19:03 +01:00
|
|
|
$ persistent.languaged_up = True
|
2022-11-17 08:56:53 +01:00
|
|
|
$ preferences.set_volume('ui', config.default_sfx_volume) # hack
|
2022-11-28 10:52:18 +01:00
|
|
|
call screen lang_sel
|
2022-10-21 11:51:52 +02:00
|
|
|
|
|
|
|
|
2022-10-21 03:43:01 +02:00
|
|
|
return
|
2022-10-21 11:51:52 +02:00
|
|
|
|