diff options
Diffstat (limited to 'world/map/npc')
-rw-r--r-- | world/map/npc/006-1/pachua.txt | 1 | ||||
-rw-r--r-- | world/map/npc/027-4/monsters.txt | 10 | ||||
-rw-r--r-- | world/map/npc/027-6/general_krukan.txt | 2 | ||||
-rw-r--r-- | world/map/npc/functions/undead_debug.txt | 12 |
4 files changed, 19 insertions, 6 deletions
diff --git a/world/map/npc/006-1/pachua.txt b/world/map/npc/006-1/pachua.txt index 43681d84..c9fc1210 100644 --- a/world/map/npc/006-1/pachua.txt +++ b/world/map/npc/006-1/pachua.txt @@ -6,6 +6,7 @@ goto L_Close; set @LEATHER_PATCH_PRICE, 300; + set @wants_leather_patch, QUEST_Forestbow_state & NIBBLE_4_MASK; if (QUEST_MIRIAM_cheat != 0) goto L_warp_cheat; if (QUEST_MIRIAM_start != 0) goto L_smoke; diff --git a/world/map/npc/027-4/monsters.txt b/world/map/npc/027-4/monsters.txt index adc89a88..c575f056 100644 --- a/world/map/npc/027-4/monsters.txt +++ b/world/map/npc/027-4/monsters.txt @@ -1,11 +1,11 @@ // 027-4 Graveyard zombies and fallens // they need to be in an extra file because of the crying child quest -027-4.gat,39,84,38,22|monster|Fallen|1045,3,60000,8000,Mob027-4::On1045 -027-4.gat,27,57,15,22|monster|Zombie|1036,2,60000,8000,Mob027-4::On1036 -027-4.gat,108,77,39,14|monster|Fallen|1045,3,60000,8000,Mob027-4::On1045 -027-4.gat,61,37,38,30|monster|Zombie|1036,2,60000,8000,Mob027-4::On1036 -027-4.gat,101,36,38,30|monster|Zombie|1036,2,60000,8000,Mob027-4::On1036 +027-4.gat,39,84,38,22|monster|Fallen|1045,3,60000,8000,specialMob027-4::On1045 +027-4.gat,27,57,15,22|monster|Zombie|1036,2,60000,8000,specialMob027-4::On1036 +027-4.gat,108,77,39,14|monster|Fallen|1045,3,60000,8000,specialMob027-4::On1045 +027-4.gat,61,37,38,30|monster|Zombie|1036,2,60000,8000,specialMob027-4::On1036 +027-4.gat,101,36,38,30|monster|Zombie|1036,2,60000,8000,specialMob027-4::On1036 027-4.gat,0,0,0|script|specialMob027-4|-1, { diff --git a/world/map/npc/027-6/general_krukan.txt b/world/map/npc/027-6/general_krukan.txt index 67213b49..ea37051c 100644 --- a/world/map/npc/027-6/general_krukan.txt +++ b/world/map/npc/027-6/general_krukan.txt @@ -26,7 +26,7 @@ L_TomeMain: "Nothing.", L_Close; L_SummonReagents: - mes "Says we need " + @KRUKAN_SOUL_REQ + " Souls, " + @KRUKAN_SKULL_REQ + " Diseased Hearts, " + @KRUKAN_DARK_CRYSTAL_REQ + " Undead Eyes, and " + @KRUKAN_BONE_REQ + " Undead Ears to perform the ritual."; + mes "Says we need " + @KRUKAN_SOUL_REQ + " Soul, " + @KRUKAN_SKULL_REQ + " Skulls, " + @KRUKAN_DARK_CRYSTAL_REQ + " Dark Crystals, and " + @KRUKAN_BONE_REQ + " Bones to perform the ritual."; next; goto L_TomeMain; diff --git a/world/map/npc/functions/undead_debug.txt b/world/map/npc/functions/undead_debug.txt index 4f01a78c..4b2a015a 100644 --- a/world/map/npc/functions/undead_debug.txt +++ b/world/map/npc/functions/undead_debug.txt @@ -87,6 +87,10 @@ L_Close: set @undeaddebug, 3; callfunc "UndeadDebug"; end; +OnInit: + if (!debug) + disablenpc "UndeadDebug3"; + end; } // Debug for Razha @@ -95,6 +99,10 @@ L_Close: set @undeaddebug, 4; callfunc "UndeadDebug"; end; +OnInit: + if (!debug) + disablenpc "UndeadDebug4"; + end; } // Debug for Terogan @@ -103,4 +111,8 @@ L_Close: set @undeaddebug, 5; callfunc "UndeadDebug"; end; +OnInit: + if (!debug) + disablenpc "UndeadDebug5"; + end; } |