summaryrefslogtreecommitdiff
path: root/npc/functions/doors.txt
blob: b8171a9dc3477bab8afd6807f830cb26586b9d9b (plain) (blame)
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
// Evol functions.
// Authors:
//    4144
// Description:
//    Doors utility functions
// Variables:
//    none

function	script	doorTouch	{
    if (getareausers() <= 1)
    {
        .dir = 2;
        stopnpctimer;
        initnpctimer;
    }
    close;
}

function	script	doorUnTouch	{
    if (getareausers() == 0)
    {
        .dir = 4;
        initnpctimer;
        startnpctimer;
    }
    close;
}

function	script	doorTimer	{
    stopnpctimer;
    if (.dir == 2) .dir = 6;
    if (.dir == 4) .dir = 8;
    end;
}

function	script	doorInit	{
    .distance = 5;
    .alwaysVisible = true;
    end;
}

function	script	open_door	{
    .@door$ = getarg(0);
    setnpcdir.@door$, 2;
    sleep 300;
    setnpcdir .@door$, 6;
    sleep 300;
    return 0;
}

function	script	close_door	{
    .@door$ = getarg(0);
    setnpcdir .@door$, 4;
    sleep 300;
    setnpcdir .@door$, 8;
    sleep 300;
    return 0;
}