summaryrefslogtreecommitdiff
path: root/npc/000-2-3/hammock.txt
blob: 1d94ffd504875344427fb1eaacd30b99a3df66df (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
// Evol scripts.
// Author:
//    Reid
// Description:
//    Animated hammock at the top level of the ship.

// Gender = 2
000-2-3,28,24,0	script	#name5	904,1,0,{

OnTouchFirst:
    setnpcdir 4;
    close;

OnUnTouchAll:
    setnpcdir 2;
    initnpctimer;
    close;

OnTimer5440:
    setnpcdir 4;
    stopnpctimer;
    end;
}