diff options
author | wushin <pasekei@gmail.com> | 2015-01-07 21:04:38 -0600 |
---|---|---|
committer | wushin <pasekei@gmail.com> | 2015-01-07 21:04:38 -0600 |
commit | 61c88ec162713b980f30e6e5111c1cfbd9f23d3a (patch) | |
tree | cbc5f399ccf8dd226056887a70b9a313f88bee6e /world/map/npc/001-2/tathin.txt | |
parent | 2901ba177dea5867cbd52eb2b02a0ef8e1816e15 (diff) | |
download | serverdata-61c88ec162713b980f30e6e5111c1cfbd9f23d3a.tar.gz serverdata-61c88ec162713b980f30e6e5111c1cfbd9f23d3a.tar.bz2 serverdata-61c88ec162713b980f30e6e5111c1cfbd9f23d3a.tar.xz serverdata-61c88ec162713b980f30e6e5111c1cfbd9f23d3a.zip |
Adjust rest of world to Match new tutorial
Diffstat (limited to 'world/map/npc/001-2/tathin.txt')
-rw-r--r-- | world/map/npc/001-2/tathin.txt | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/world/map/npc/001-2/tathin.txt b/world/map/npc/001-2/tathin.txt new file mode 100644 index 00000000..491eb151 --- /dev/null +++ b/world/map/npc/001-2/tathin.txt @@ -0,0 +1,29 @@ +001-2.gat,28,21,0|script|Tathin|107 +{ + mes "[Tathin]"; + mes "\"Hello what Can I do for you?\""; + next; + + menu + "I'd like to join a party.", L_Give_Party, + "I'd like to create my own party.", L_Give_Make_Party, + "Nothing, I guess.", L_Close; + +L_Give_Party: + mes "[Tathin]"; + mes "\"You'll need to be invited by an existing member of a party to join it. You may also create your own party.\""; + next; + mes "[Tathin]"; + mes "\"Remember, parties cannot share experience if any members are more than 10 levels apart.\""; + menu + "I'd like to create my own party.", L_Give_Make_Party, + "Goodbye.", L_Close; + +L_Give_Make_Party: + mes "[Tathin]"; + mes "\"You can create parties with the 'new' or 'create' commands on the Party tab in the client. Parties need to have unique names.\""; + close; + +L_Close: + close; +} |