diff options
author | wushin <pasekei@gmail.com> | 2014-04-11 14:32:22 -0500 |
---|---|---|
committer | wushin <pasekei@gmail.com> | 2014-04-15 20:26:28 -0500 |
commit | 47f790759ea3ea56d31e000bc3f3b7f142ee802d (patch) | |
tree | 369dc32bddb447076c5cf9298f6624366aa03ce2 /world/map/npc/006-2/npcs.txt | |
parent | 6e9543af67c5e027269bfc32e9c6f36111f3832a (diff) | |
download | serverdata-47f790759ea3ea56d31e000bc3f3b7f142ee802d.tar.gz serverdata-47f790759ea3ea56d31e000bc3f3b7f142ee802d.tar.bz2 serverdata-47f790759ea3ea56d31e000bc3f3b7f142ee802d.tar.xz serverdata-47f790759ea3ea56d31e000bc3f3b7f142ee802d.zip |
Npcs remaining script fixes
Npcs changed for travel
Npcs changed for new maps
Npcs changed for basic crypts
Diffstat (limited to 'world/map/npc/006-2/npcs.txt')
-rw-r--r-- | world/map/npc/006-2/npcs.txt | 87 |
1 files changed, 87 insertions, 0 deletions
diff --git a/world/map/npc/006-2/npcs.txt b/world/map/npc/006-2/npcs.txt new file mode 100644 index 00000000..90d5b176 --- /dev/null +++ b/world/map/npc/006-2/npcs.txt @@ -0,0 +1,87 @@ +// Pachua's Tribe + +006-2.gat,49,25,0|script|Falkurn|178, +{ + mes "[Falkurn]"; + mes "\"Greetings traveler, what wind brings you to our door?\""; + menu + "I'm looking for exotic goods.", L_Shops, + "I need some leatherwork done.", L_Pachua, + "Just Looking Around.", L_Close; + +L_Shops: + mes "\"My Wife, Ardra, tends the Kitchen see her for food and drink.\""; + mes "\"She can be found in the West Cave.\""; + next; + mes "\"Reathe trades many of our leather goods to exotic lands.\""; + mes "\"She always has the most interesting finds.\""; + mes "\"She can be found in the East Cave.\""; + goto L_Close; + +L_Pachua: + mes "\"Our Chief can be found by going through the southern most cave.\""; + mes "\"He can help you with any leatherwork you may need done.\""; + goto L_Close; + +L_Close: + close; +} + +006-2.gat,80,25,0|script|Darug|178, +{ + mes "[Darug]"; + mes "\"We are the all thats left of the natives that used to wander the plains.\""; + mes "\"Years of war between the various 'Civilized' nations drained the natural resources.\""; + next; + mes "\"The waters have begun to run dry.\""; + mes "\"All manner of beasts are getting more agressive.\""; + mes "\"The Mana has been poison by Dark Magic.\""; + next; + mes "\"Even now, I sense a evil presense nearby.\""; + mes "\"I can feel it lying deep underground.\""; + mes "\"Gnawing at the underbelly of Tonori.\""; + next; + mes "\"We believe it's one of the evils Nu'rem let loose to destroy The Mana\""; + mes "\"We have been searching, but have not been able to locate the source.\""; + mes "\"Maybe our scouts will return soon with the answers.\""; + close; +} + +006-2.gat,34,64,0|script|Meluna|179, +{ + mes "[Meluna]"; + mes "\"Greetings traveler, how blows the wind?\""; + goto L_Main; + +L_Main: + menu + "Um... What?", L_Explain, + "Gentle.", L_Heal, + "Strong.", L_Close; + +L_Explain: + mes "\"Ahh sorry, you are not familiar with our customs.\""; + mes "\"The Mana was made into the 4 main elements by The Gods; Jande made Fire, Nu'rem made Earth, Tal made Air, and, Di'tal made Water.\""; + mes "\"It was Tal that gives us our first and last breathe.\""; + next; + mes "\"When we ask you how 'blows the wind?'\""; + mes "\"We mean how are your feeling?\""; + next; + mes "\"We typically respond with a strength of wind; normally Gentle or Strong\""; + goto L_Main; + +L_Heal: + if (BaseLevel > 70) + goto L_NoHeal; + heal 1000,100; + goto L_Close; + +L_NoHeal: + mes "\"I already sense the power of the Gods carrying you.\""; + mes "\"Any wounds you have are beyond my power to fix.\""; + goto L_Close; + +L_Close: + mes "\"May Tal carry you on their back.\""; + close; +} |