diff options
Diffstat (limited to 'npc/027-2_Caretakers_House')
-rw-r--r-- | npc/027-2_Caretakers_House/_mobs.txt | 21 | ||||
-rw-r--r-- | npc/027-2_Caretakers_House/door.txt | 9 |
2 files changed, 28 insertions, 2 deletions
diff --git a/npc/027-2_Caretakers_House/_mobs.txt b/npc/027-2_Caretakers_House/_mobs.txt index e765f51c..b6827a92 100644 --- a/npc/027-2_Caretakers_House/_mobs.txt +++ b/npc/027-2_Caretakers_House/_mobs.txt @@ -1,7 +1,28 @@ // 027-2 Caretaker's House mobs +027-2.gat,81,41,11,9 monster DrunkenSkeleton 1077,1,100000,30000,Mob027-2::On1077 +027-2.gat,91,38,11,9 monster TipsySkeleton 1078,1,100000,30000,Mob027-2::On1078 +027-2.gat,110,26,11,11 monster TipsySkeleton 1078,1,100000,30000,Mob027-2::On1078 +027-2.gat,104,28,11,9 monster DrunkenSkeleton 1077,1,100000,30000,Mob027-2::On1077 +027-2.gat,89,34,11,9 monster DrunkenLadySkeleton 1079,1,100000,30000,Mob027-2::On1079 +027-2.gat,116,26,11,9 monster DrunkenLadySkeleton 1079,1,100000,30000,Mob027-2::On1079 027-2.gat,0,0,0 script Mob027-2 -1,{ +On1077: + set @mobID, 1077; + callfunc "MobPoints"; + break; + +On1078: + set @mobID, 1078; + callfunc "MobPoints"; + break; + +On1079: + set @mobID, 1079; + callfunc "MobPoints"; + break; + end; } diff --git a/npc/027-2_Caretakers_House/door.txt b/npc/027-2_Caretakers_House/door.txt index 7cf479fd..630e0ee2 100644 --- a/npc/027-2_Caretakers_House/door.txt +++ b/npc/027-2_Caretakers_House/door.txt @@ -1,4 +1,4 @@ -027-2.gat,24,99,0 script #Door 127,1,1,{ +027-2.gat,25,100,0 script #DoorIn 127,1,1,{ set @Graveyard_Inn_MASK, NIBBLE_0_MASK; set @Graveyard_Inn_SHIFT, NIBBLE_0_SHIFT; @@ -9,6 +9,11 @@ end; L_Warp: - warp "027-2.gat", 26, 99; + warp "027-2.gat", 27, 99; + end; +} + +027-2.gat,26,99,0 script #DoorOut 127,1,1,{ + warp "027-2.gat", 23, 98; end; } |