diff options
author | Wushin <pasekei@gmail.com> | 2015-01-07 21:25:14 -0600 |
---|---|---|
committer | Wushin <pasekei@gmail.com> | 2015-01-07 21:25:14 -0600 |
commit | b734af239e8ff1e7ea746ea327fb84c62be09b7e (patch) | |
tree | cbc5f399ccf8dd226056887a70b9a313f88bee6e /world/map/npc/009-2/entertainer.txt | |
parent | 2c09797ebd2c03b2cbe9a458f8ea8d1fbd04ccff (diff) | |
parent | 61c88ec162713b980f30e6e5111c1cfbd9f23d3a (diff) | |
download | serverdata-b734af239e8ff1e7ea746ea327fb84c62be09b7e.tar.gz serverdata-b734af239e8ff1e7ea746ea327fb84c62be09b7e.tar.bz2 serverdata-b734af239e8ff1e7ea746ea327fb84c62be09b7e.tar.xz serverdata-b734af239e8ff1e7ea746ea327fb84c62be09b7e.zip |
Merge pull request #223 from wushin/moving-tutorial
Move Tutorial to Hurnscald
Diffstat (limited to 'world/map/npc/009-2/entertainer.txt')
-rw-r--r-- | world/map/npc/009-2/entertainer.txt | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/world/map/npc/009-2/entertainer.txt b/world/map/npc/009-2/entertainer.txt new file mode 100644 index 00000000..1b2b9622 --- /dev/null +++ b/world/map/npc/009-2/entertainer.txt @@ -0,0 +1,38 @@ +// Emote NPC allows for players to learn the emote skill + +009-2.gat,61,49,0|script|Entertainer|165 +{ + mes "[Entertainer]"; + mes "\"Yes how can I help you?\""; + menu + "How are you showing emotions above your head?", L_Learn, + "Never mind", L_Close; + +L_Learn: + mes "[Entertainer]"; + mes "\"They are called emotes, I use them to express how I am feeling."; + mes "I can teach you if you'd like?\""; + menu + "Yes please.", L_Learn2, + "I don't see the point right now.", L_Close; + +L_Learn2: + mes "[Entertainer]"; + mes "\"All you have to do is press alt and a number."; + mes "The number determines what emotion will be shown."; + mes "Some clients will also show an emote shortcut-bar with the F12 button\""; + goto L_Close; + +L_Close: + close; + +OnTimer3000: + emotion rand(EMOTE_DISGUST, EMOTE_TEARS); + setnpctimer 0; + end; + +OnInit: + if (debug >= 2) end; + initnpctimer; + end; +} |