From 167ec30542c137a3b9923a0998c02fbbf89dfa89 Mon Sep 17 00:00:00 2001 From: Jared Adams Date: Sat, 22 Nov 2008 20:58:00 +0000 Subject: Add some missing files And some that aren't finished yet --- npc/002-2/_import.txt | 3 +++ npc/002-2/_mobs.txt | 19 +++++++++++++++++++ npc/002-2/_warps.txt | 3 +++ npc/002-3_Desert_mines/monsters.txt | 20 ++++++++++++++++++++ npc/002-4_Desert_mines/miners.txt | 7 +++++++ npc/013-3_Cave/_import.txt | 4 ++++ npc/013-3_Cave/barrier.txt | 17 +++++++++++++++++ npc/013-3_Cave/bookcase.txt | 0 npc/013-3_Cave/mask_chest.txt | 5 +++++ npc/013-3_Cave/misc.txt | 0 npc/013-3_Cave/sword_chest.txt | 0 npc/_import.txt | 1 - 12 files changed, 78 insertions(+), 1 deletion(-) create mode 100644 npc/002-2/_import.txt create mode 100644 npc/002-2/_mobs.txt create mode 100644 npc/002-2/_warps.txt create mode 100644 npc/002-3_Desert_mines/monsters.txt create mode 100644 npc/002-4_Desert_mines/miners.txt create mode 100644 npc/013-3_Cave/barrier.txt create mode 100644 npc/013-3_Cave/bookcase.txt create mode 100644 npc/013-3_Cave/mask_chest.txt create mode 100644 npc/013-3_Cave/misc.txt create mode 100644 npc/013-3_Cave/sword_chest.txt diff --git a/npc/002-2/_import.txt b/npc/002-2/_import.txt new file mode 100644 index 00000000..a09dbeaf --- /dev/null +++ b/npc/002-2/_import.txt @@ -0,0 +1,3 @@ +map: 002-2.gat +npc: npc/002-2/_warps.txt +npc: npc/002-2/_mobs.txt diff --git a/npc/002-2/_mobs.txt b/npc/002-2/_mobs.txt new file mode 100644 index 00000000..a505cef4 --- /dev/null +++ b/npc/002-2/_mobs.txt @@ -0,0 +1,19 @@ +// 002-2 mobs + +002-2.gat,38,38,9,9 monster Red Slime 1008,1,0,0,Mob002-2::On1008 +002-2.gat,82,92,9,9 monster Black Scorpion 1009,1,0,0,Mob002-2::On1009 + + +002-2.gat,0,0,0 script Mob002-2 -1,{ +On1008: + set @mobID, 1008; + callfunc "MobPoints"; + break; + +On1009: + set @mobID, 1009; + callfunc "MobPoints"; + break; + + end; +} diff --git a/npc/002-2/_warps.txt b/npc/002-2/_warps.txt new file mode 100644 index 00000000..93722bd0 --- /dev/null +++ b/npc/002-2/_warps.txt @@ -0,0 +1,3 @@ +// 002-2 warps + +002-2.gat,38,30 warp CaveExit 2,-1,1.gat,18,90 diff --git a/npc/002-3_Desert_mines/monsters.txt b/npc/002-3_Desert_mines/monsters.txt new file mode 100644 index 00000000..550b3d17 --- /dev/null +++ b/npc/002-3_Desert_mines/monsters.txt @@ -0,0 +1,20 @@ +// Map: new_2-1 +// This is the Desert mines south of Tulimshar -- level 1. +// + +002-3.gat,0,0,0,0 monster RedSlime 1008,30,2500,0,Mob2::OnRedSlime +002-3.gat,0,0,0,0 monster BlackScorpion 1009,15,2500,0,Mob2::OnBlackScorpion + +002-3.gat,0,0,0 script Mob2 -1,{ +OnRedSlime: + set @mobID, 1008; + callfunc "MobPoints"; + break; + +OnBlackScorpion: + set @mobID, 1009; + callfunc "MobPoints"; + break; + + end; +} diff --git a/npc/002-4_Desert_mines/miners.txt b/npc/002-4_Desert_mines/miners.txt new file mode 100644 index 00000000..9e67c1ec --- /dev/null +++ b/npc/002-4_Desert_mines/miners.txt @@ -0,0 +1,7 @@ +// + +002-4.gat,32,94,6 script Naem 109,{ + mes "[Naem the Miner]"; + mes "\"This place is odd.\""; + close; +} diff --git a/npc/013-3_Cave/_import.txt b/npc/013-3_Cave/_import.txt index 83f4256e..e4208f4f 100644 --- a/npc/013-3_Cave/_import.txt +++ b/npc/013-3_Cave/_import.txt @@ -1,3 +1,7 @@ map: 013-3.gat +npc: npc/013-3_Cave/barrier.txt +npc: npc/013-3_Cave/misc.txt npc: npc/013-3_Cave/_warps.txt npc: npc/013-3_Cave/_mobs.txt +npc: npc/013-3_Cave/mask_chest.txt +npc: npc/013-3_Cave/sword_chest.txt diff --git a/npc/013-3_Cave/barrier.txt b/npc/013-3_Cave/barrier.txt new file mode 100644 index 00000000..07f7a12b --- /dev/null +++ b/npc/013-3_Cave/barrier.txt @@ -0,0 +1,17 @@ +// + +013-3.gat,71,21 script #DemonMineBarrier1 127,1,1,{ + if (QUEST_demon_mines >= 2) quit; + + if (QUEST_demon_mines == 1 && countitem(1198) >= 1) goto L_Has_Jack_O_Soul; + + mes "The barrier around the opening pushes you bach as you approach."; + + warp "013-3.gat", 71, 38; + quit; + +L_Has_Jack_O_Soul: + mes "The barrier around the opening allows you passage."; + set QUEST_demon_mines, 2; + delitem 1198, 1; +} diff --git a/npc/013-3_Cave/bookcase.txt b/npc/013-3_Cave/bookcase.txt new file mode 100644 index 00000000..e69de29b diff --git a/npc/013-3_Cave/mask_chest.txt b/npc/013-3_Cave/mask_chest.txt new file mode 100644 index 00000000..1fdb6559 --- /dev/null +++ b/npc/013-3_Cave/mask_chest.txt @@ -0,0 +1,5 @@ +// + +013-3.gat,28,27 script Chest#DemonMask ,{ + +} diff --git a/npc/013-3_Cave/misc.txt b/npc/013-3_Cave/misc.txt new file mode 100644 index 00000000..e69de29b diff --git a/npc/013-3_Cave/sword_chest.txt b/npc/013-3_Cave/sword_chest.txt new file mode 100644 index 00000000..e69de29b diff --git a/npc/_import.txt b/npc/_import.txt index 42b140a9..1812076a 100644 --- a/npc/_import.txt +++ b/npc/_import.txt @@ -36,7 +36,6 @@ import: npc/018-2_Woodland_minning_camp/_import.txt import: npc/018-3_Cave/_import.txt import: npc/019-1_Snow_field/_import.txt import: npc/020-1/_import.txt -import: npc/test/_import.txt import: npc/020-2/_import.txt import: npc/020-3_Ice_cave/_import.txt import: npc/020-4_Ice_cave/_import.txt -- cgit v1.2.3-60-g2f50 From 7d0a7521690fa9837ec0e35724b7f8a2ae591737 Mon Sep 17 00:00:00 2001 From: Jared Adams Date: Sat, 22 Nov 2008 20:58:54 +0000 Subject: Remove 002-2 --- npc/002-2/_import.txt | 3 --- npc/002-2/_mobs.txt | 19 ------------------- npc/002-2/_warps.txt | 3 --- 3 files changed, 25 deletions(-) delete mode 100644 npc/002-2/_import.txt delete mode 100644 npc/002-2/_mobs.txt delete mode 100644 npc/002-2/_warps.txt diff --git a/npc/002-2/_import.txt b/npc/002-2/_import.txt deleted file mode 100644 index a09dbeaf..00000000 --- a/npc/002-2/_import.txt +++ /dev/null @@ -1,3 +0,0 @@ -map: 002-2.gat -npc: npc/002-2/_warps.txt -npc: npc/002-2/_mobs.txt diff --git a/npc/002-2/_mobs.txt b/npc/002-2/_mobs.txt deleted file mode 100644 index a505cef4..00000000 --- a/npc/002-2/_mobs.txt +++ /dev/null @@ -1,19 +0,0 @@ -// 002-2 mobs - -002-2.gat,38,38,9,9 monster Red Slime 1008,1,0,0,Mob002-2::On1008 -002-2.gat,82,92,9,9 monster Black Scorpion 1009,1,0,0,Mob002-2::On1009 - - -002-2.gat,0,0,0 script Mob002-2 -1,{ -On1008: - set @mobID, 1008; - callfunc "MobPoints"; - break; - -On1009: - set @mobID, 1009; - callfunc "MobPoints"; - break; - - end; -} diff --git a/npc/002-2/_warps.txt b/npc/002-2/_warps.txt deleted file mode 100644 index 93722bd0..00000000 --- a/npc/002-2/_warps.txt +++ /dev/null @@ -1,3 +0,0 @@ -// 002-2 warps - -002-2.gat,38,30 warp CaveExit 2,-1,1.gat,18,90 -- cgit v1.2.3-60-g2f50