diff options
author | Jared Adams <jaxad0127@gmail.com> | 2008-11-02 22:45:17 +0000 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2008-11-02 22:45:17 +0000 |
commit | ec9be0a2967b38955d26e337b05bc3a042ac4544 (patch) | |
tree | e1ef509c78c8a3fe777b4adb0f4c650364fa55cb /npc/new_2-1-cave1 | |
parent | 2fd04617279829d54349b325bacb4c72addebfe4 (diff) | |
download | serverdata-ec9be0a2967b38955d26e337b05bc3a042ac4544.tar.gz serverdata-ec9be0a2967b38955d26e337b05bc3a042ac4544.tar.bz2 serverdata-ec9be0a2967b38955d26e337b05bc3a042ac4544.tar.xz serverdata-ec9be0a2967b38955d26e337b05bc3a042ac4544.zip |
Branch data for eAthena
Diffstat (limited to 'npc/new_2-1-cave1')
-rw-r--r-- | npc/new_2-1-cave1/miners.txt | 39 | ||||
-rw-r--r-- | npc/new_2-1-cave1/monsters.txt | 20 | ||||
-rw-r--r-- | npc/new_2-1-cave1/passages.txt | 1 |
3 files changed, 60 insertions, 0 deletions
diff --git a/npc/new_2-1-cave1/miners.txt b/npc/new_2-1-cave1/miners.txt new file mode 100644 index 00000000..1bbb1637 --- /dev/null +++ b/npc/new_2-1-cave1/miners.txt @@ -0,0 +1,39 @@ +// + +new_2-1.gat,35,35,6 script Nathan 109,{ + mes "[Nathan the Miner]"; + mes "\"It's very dangerous in here."; + mes "We had a big earthquake here"; + mes "just recently, too... so be"; + mes "careful!\""; + close; +} + +new_5-1.gat,32,94,6 script Naem 109,{ + mes "[Naem the Miner]"; + mes "\"Do you want me to lift you to the upper level?\""; + next; + menu + "Sure", L_Sure, + "Not yet!", -; + close; + +L_Sure: + warp "new_2-1.gat", 87, 99; + close; +} + +new_2-1.gat,85,97,6 script Naem 109,{ + mes "[Naem the Miner]"; + mes "\"We discovered an underground palace."; + mes "Do you want me to let you in?\""; + next; + menu + "Sure", L_Sure, + "Not yet!", -; + close; + +L_Sure: + warp "new_5-1.gat", 34, 92; + close; +} diff --git a/npc/new_2-1-cave1/monsters.txt b/npc/new_2-1-cave1/monsters.txt new file mode 100644 index 00000000..b673ef65 --- /dev/null +++ b/npc/new_2-1-cave1/monsters.txt @@ -0,0 +1,20 @@ +// Map: new_2-1 +// This is the Desert mines south of Tulimshar -- level 1. +// + +new_2-1.gat,0,0,0,0 monster RedSlime 1008,30,2500,0,Mob2::OnRedSlime +new_2-1.gat,0,0,0,0 monster BlackScorpion 1009,15,2500,0,Mob2::OnBlackScorpion + +new_2-1.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/new_2-1-cave1/passages.txt b/npc/new_2-1-cave1/passages.txt new file mode 100644 index 00000000..e11badd6 --- /dev/null +++ b/npc/new_2-1-cave1/passages.txt @@ -0,0 +1 @@ +new_2-1.gat,36,30 warp caveexit 3,0,new_1-1.gat,25,95 |