diff options
author | Saulc <lucashelaine14@gmail.com> | 2018-02-18 02:08:36 +0100 |
---|---|---|
committer | Saulc <lucashelaine14@gmail.com> | 2018-02-18 02:08:36 +0100 |
commit | 26faa9a208a15ea858f5069a4c0d92e8a0709bdb (patch) | |
tree | 7ef0a6a5e39cb63f72ea9a6742f5a4cb320b41b4 /npc/001-1/doors.txt | |
parent | b9416a07a0f085c64888ac02fecd47d43feee218 (diff) | |
download | serverdata-26faa9a208a15ea858f5069a4c0d92e8a0709bdb.tar.gz serverdata-26faa9a208a15ea858f5069a4c0d92e8a0709bdb.tar.bz2 serverdata-26faa9a208a15ea858f5069a4c0d92e8a0709bdb.tar.xz serverdata-26faa9a208a15ea858f5069a4c0d92e8a0709bdb.zip |
delete evol maps
Diffstat (limited to 'npc/001-1/doors.txt')
-rw-r--r-- | npc/001-1/doors.txt | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/npc/001-1/doors.txt b/npc/001-1/doors.txt deleted file mode 100644 index 31ca2b7df..000000000 --- a/npc/001-1/doors.txt +++ /dev/null @@ -1,57 +0,0 @@ -// Evol scripts. -// Authors: -// 4144 -// Reid -// Description: -// Doors warp and animations in map 001-1 -// - -001-1,57,41,0 script #Warp20 NPC_HIDDEN,0,0,{ -OnTouch: - .@enora = getq(ArtisQuests_Enora); - - if (.@enora < 11) - { - narrator S_LAST_NEXT, - l("The door to the legion building is temporarily closed."); - } - else - { - warp "001-2-33", 34, 46; - } - - closedialog; - close; - -OnUnTouch: - doevent "#Door20::OnUnTouch"; -} - -001-1,57,41,0 script #Door20 NPC_ARTIS_DOOR,2,3,{ - close; - -OnTouch: - .@enora = getq(ArtisQuests_Enora); - if (.@enora < 11) - { - setfakecells 57, 41, 1; - end; - } - setfakecells 57, 41, 0; - doorTouch; - -OnUnTouch: - .@enora = getq(ArtisQuests_Enora); - if (.@enora < 11) - { - end; - } - doorUnTouch; - -OnTimer340: - doorTimer; - -OnInit: - doorInit; -} - |