-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathroom18.asc
63 lines (48 loc) · 1.49 KB
/
room18.asc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
// NewsTV (Kevins Haus)
/****************************
* Raum-Funktionen
****************************/
function room_Load()
{
gAction.Visible = false;
gMaingui.Visible = false;
Mouse.Visible = false;
}
function room_AfterFadeIn()
{
PlayMusic(24);
StartCutscene(eSkipESCOrRightButton);
Wait(30);
cTVGirl.Say("Wir unterbrechen das aktuelle Programm für eine Sondermeldung!");
cTVGirl.Say("Wie soeben bekannt gegeben wurde ...");
cTVGirl.Say("... steht das SP für Maniac Mansion Mania ...");
cTVGirl.Say("... jetzt zum Download bereit!");
cTVGirl.Say("...");
cTVGirl.Say("Erstellt wurde das Starterpack von ...");
cTVGirl.Say("... äh ...");
// cTVGirl.Say("Als besonderen Bonus enthalten sind ...");
// cTVGirl.Say("... viele neue Charaktere aus den Episoden:");
// cTVGirl.Say("...");
cTVGirl.Say("Besonderer Dank an die Beta-Tester!!!");
cTVGirl.Say("...");
cTVGirl.Say("Und nun zurück zum laufenden Programm.");
Wait(20);
player.ChangeRoom(player.PreviousRoom);
gAction.Visible = true;
gMaingui.Visible = true;
Mouse.Visible = true;
StopMusic ();
EndCutscene();
}
/****************************
* Tür-Hotspot-Funktionen
****************************/
/****************************
* Objekt-Funktionen
****************************/
/****************************
* Hotspot-Funktionen
****************************/
/****************************
* Regionen-Funktionen
****************************/