diff options
Diffstat (limited to 'npc/009-2/entertainer.txt')
-rwxr-xr-x | npc/009-2/entertainer.txt | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/npc/009-2/entertainer.txt b/npc/009-2/entertainer.txt new file mode 100755 index 00000000..13664ffb --- /dev/null +++ b/npc/009-2/entertainer.txt @@ -0,0 +1,40 @@ + +009-2,61,49,0 script Entertainer NPC165,{ + 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: + if(rand(0,1) == 1) goto L_manaplus; + emotion rand(EMOTE_DISGUST, EMOTE_BLAH); + goto OnInit; + +L_manaplus: + emotion rand(EMOTE_MEOW, EMOTE_TEARS); + goto OnInit; + +OnInit: + if (debug >= 2) end; + initnpctimer; + end; +} |