From 0b9235d0865509feb9ef97aa197204293cee0b1f Mon Sep 17 00:00:00 2001 From: Wombat Date: Wed, 18 Aug 2010 21:02:01 -0400 Subject: Low Level Tulimshar Release News, Small Fixes, Tulimshar Related Quests, Sandstorm Mob Changes Expensive Hurnscald Warp NPC --- npc/002-4_Desert_mines/_mobs.txt | 38 ++++++++++++++++++++++++--- npc/002-4_Desert_mines/chest.txt | 9 ++++--- npc/002-4_Desert_mines/miners.txt | 55 ++++++++++++++++++++++++++++++++++++++- 3 files changed, 93 insertions(+), 9 deletions(-) (limited to 'npc/002-4_Desert_mines') diff --git a/npc/002-4_Desert_mines/_mobs.txt b/npc/002-4_Desert_mines/_mobs.txt index f0a77adf..d86f0272 100644 --- a/npc/002-4_Desert_mines/_mobs.txt +++ b/npc/002-4_Desert_mines/_mobs.txt @@ -1,7 +1,22 @@ // 002-4 Desert mines mobs -002-4.gat,0,0,0,0 monster Spider 1012,20,100000,30000,Mob002-4::On1012 -002-4.gat,0,0,0,0 monster Yellow Slime 1007,25,100000,30000,Mob002-4::On1007 +002-4.gat,36,89,11,6 monster Ice Goblin 1058,3,100000,30000,Mob002-4::On1058 +002-4.gat,33,76,2,11 monster Cave Maggot 1056,3,100000,30000,Mob002-4::On1056 +002-4.gat,39,67,5,3 monster Angry Scorpion 1057,3,100000,30000,Mob002-4::On1057 +002-4.gat,39,37,17,4 monster Archant 1060,3,100000,30000,Mob002-4::On1060 +002-4.gat,61,70,1,7 monster Ice Goblin 1058,3,100000,30000,Mob002-4::On1058 +002-4.gat,55,96,1,3 monster Archant 1060,1,100000,30000,Mob002-4::On1060 +002-4.gat,67,99,11,1 monster Yellow Slime 1007,4,100000,30000,Mob002-4::On1007 +002-4.gat,91,80,1,4 monster Archant 1060,1,100000,30000,Mob002-4::On1060 +002-4.gat,88,93,1,4 monster Archant 1060,1,100000,30000,Mob002-4::On1060 +002-4.gat,73,77,1,4 monster Archant 1060,2,100000,30000,Mob002-4::On1060 +002-4.gat,93,69,1,4 monster Archant 1060,1,100000,30000,Mob002-4::On1060 +002-4.gat,90,62,7,1 monster Yellow Slime 1007,1,100000,30000,Mob002-4::On1007 +002-4.gat,73,35,1,4 monster Archant 1060,1,100000,30000,Mob002-4::On1060 +002-4.gat,84,33,1,4 monster Archant 1060,1,100000,30000,Mob002-4::On1060 +002-4.gat,84,45,1,4 monster Archant 1060,1,100000,30000,Mob002-4::On1060 +002-4.gat,98,37,1,4 monster Archant 1060,1,100000,30000,Mob002-4::On1060 +002-4.gat,92,38,7,1 monster Yellow Slime 1007,2,100000,30000,Mob002-4::On1007 002-4.gat,0,0,0 script Mob002-4 -1,{ @@ -10,8 +25,23 @@ On1007: callfunc "MobPoints"; break; -On1012: - set @mobID, 1012; +On1056: + set @mobID, 1056; + callfunc "MobPoints"; + break; + +On1057: + set @mobID, 1057; + callfunc "MobPoints"; + break; + +On1058: + set @mobID, 1058; + callfunc "MobPoints"; + break; + +On1060: + set @mobID, 1060; callfunc "MobPoints"; break; diff --git a/npc/002-4_Desert_mines/chest.txt b/npc/002-4_Desert_mines/chest.txt index e1825d0f..158b79fc 100644 --- a/npc/002-4_Desert_mines/chest.txt +++ b/npc/002-4_Desert_mines/chest.txt @@ -1,7 +1,8 @@ // 002-4.gat,93,37,0 script Treasure 111,{ - if( ChestQuest & 1) goto L_Finished; + + if (TMW_Quest >= 38) goto L_Finished; mes "[Chest]"; mes "Would you try to open it?"; @@ -16,10 +17,10 @@ L_Yes: getinventorylist; if (@inventorylist_count == 100 && countitem("TreasureKey") > 3) goto L_TooMany; mes "[Chest]"; - mes "You opened it and found a short sword!"; + mes "You opened it and found a short bow!"; delitem "TreasureKey", 3; - getitem "ShortSword", 1; - set ChestQuest, ChestQuest | 1; + getitem "ShortBow", 1; + set TMW_Quest, 38; close; L_Not_Enough: diff --git a/npc/002-4_Desert_mines/miners.txt b/npc/002-4_Desert_mines/miners.txt index 90cf4068..9fbaea89 100644 --- a/npc/002-4_Desert_mines/miners.txt +++ b/npc/002-4_Desert_mines/miners.txt @@ -1,7 +1,60 @@ // 002-4.gat,32,94,6 script Sema 109,{ + + if (TMW_Quest >= 40) goto L_Sema_Done; + if (TMW_Quest == 39) goto L_Sema_Happy; + if (TMW_Quest == 38) goto L_Sema_GCM; + + mes "[Sema the Miner]"; + mes "\"This place is odd. There is a chest somewhere in this palace, but I don't know where. I think the archants have eaten all the spare keys for the chest.\""; + close; + +L_Sema_GCM: + mes "[Sema the Miner]"; + mes "\"I saw a giant cave maggot eat one of the other miners and it might eat me! Can you kill it?\""; + menu + "Yes.", L_Sema_Yes, + "No.", L_Sema_No; + close; + +L_Sema_No: + mes "[Sema the Miner]"; + mes "\"Ahh! I am very scared now!\""; + close; + +L_Sema_Yes: + set TMW_Quest, 39; + monster "002-4.gat", 70, 90, "", 1059, 1; mes "[Sema the Miner]"; - mes "\"This place is odd.\""; + mes "\"Good luck. To prove you killed it, please bring the iten it swallowed when it ate the miner. Be careful, there could be more than one.\""; close; + +L_Sema_Happy: + if (countitem ("Iten") < 1) goto L_Sema_Not_Happy; + getinventorylist; + if (@inventorylist_count - (countitem ("Iten") == 1) > 99) goto L_Sema_TooMany; + delitem "Iten", 1; + getitem "DesertShirt", 1; + set TMW_Quest, 40; + mes "[Sema the Miner]"; + mes "\"You killed it! As a reward for helping me, take this desert shirt\""; + close; + +L_Sema_TooMany: + mes "[Sema the Miner]"; + mes "\"You have too many items for me to give you a reward. Please drop or sell something so I can give it to you.\""; + close; + +L_Sema_Not_Happy: + set TMW_Quest, 38; + itemheal -Hp, 0; + mes "A stone falls on your head."; + close; + +L_Sema_Done: + mes "[Sema the Miner]"; + mes "\"Thank you for all your help.\""; + close; + } -- cgit v1.2.3-70-g09d2