-
Notifications
You must be signed in to change notification settings - Fork 0
/
room44.asc
45 lines (35 loc) · 1.04 KB
/
room44.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
// Kellerraum 2 (Vor dem Hobbyraum und der Waschküche) (Familie Pantz)
/****************************
* Raum-Funktionen
****************************/
function room_Load()
{
aMusic51.Play();
// script for Room: Player enters screen (before fadein)
oTuer1.init_object(21);
oTuer2.init_object(23);
}
/****************************
* Tür-Hotspot-Funktionen
****************************/
function hTuerLinks_AnyClick()
{
if (any_click_on_door(21, oTuer1, 172, 120, eDirectionUp, 45, 17, 125, eDirectionRight) == 0 ) Unhandled();
}
function hTuerRechts_AnyClick()
{
if (any_click_on_door(23, oTuer2, 267, 120, eDirectionUp, 47, 24, 123, eDirectionRight) == 0 ) Unhandled();
}
/****************************
* Objekt-Funktionen
****************************/
/****************************
* Hotspot-Funktionen
****************************/
/****************************
* Regionen-Funktionen
****************************/
function region1_WalksOnto()
{
player.ChangeRoom(43, 397, 100, eDirectionDown);
}