diff options
-rw-r--r-- | npc/001-1/doors.txt | 27 | ||||
-rw-r--r-- | npc/001-2-12/_warps.txt | 4 | ||||
-rw-r--r-- | npc/001-2-13/_warps.txt | 2 | ||||
-rw-r--r-- | npc/001-2-14/_warps.txt | 2 |
4 files changed, 35 insertions, 0 deletions
diff --git a/npc/001-1/doors.txt b/npc/001-1/doors.txt index 95904938..19589a8b 100644 --- a/npc/001-1/doors.txt +++ b/npc/001-1/doors.txt @@ -139,3 +139,30 @@ OnInit: setnpcdistance 5; end; } + +001-1,142,30,0 script #Warp6 32767,0,0,{ +OnTouch: + warp "001-2-12", 33, 35; + close; + +OnUnTouch: + doevent "npc1::OnUnTouch"; +} + +001-1,142,30,0 script #Door6 906,3,3,{ + close; + +OnTouch: + doorTouch; + +OnUnTouch: + doorUnTouch; + +OnTimer340: + doorTimer; + +OnInit: + setnpcsex G_MALE; + setnpcdistance 5; + end; +} diff --git a/npc/001-2-12/_warps.txt b/npc/001-2-12/_warps.txt index cce4515a..a802e1cf 100644 --- a/npc/001-2-12/_warps.txt +++ b/npc/001-2-12/_warps.txt @@ -1 +1,5 @@ // 001-2-12 + +001-2-12,33,36,0 warp To Artis#001-2-12 0,0,001-1,142,31 +001-2-12,26,28,0 warp To Second Floor#001-2-12 1,0,001-2-13,27,29 +001-2-12,28,28,0 warp To Cellar#001-2-12 0,0,001-2-14,25,30 diff --git a/npc/001-2-13/_warps.txt b/npc/001-2-13/_warps.txt index dcdc421e..ddfb8378 100644 --- a/npc/001-2-13/_warps.txt +++ b/npc/001-2-13/_warps.txt @@ -1 +1,3 @@ // 001-2-13 + +001-2-13,26,30,0 warp To First Floor#001-2-13 1,0,001-2-12,27,30 diff --git a/npc/001-2-14/_warps.txt b/npc/001-2-14/_warps.txt index b784894c..03f076e3 100644 --- a/npc/001-2-14/_warps.txt +++ b/npc/001-2-14/_warps.txt @@ -1 +1,3 @@ // 001-2-14 + +001-2-14,26,28,0 warp To First Floor#001-2-14 1,0,001-2-12,30,29 |