diff options
author | wushin <pasekei@gmail.com> | 2015-01-07 21:00:16 -0600 |
---|---|---|
committer | wushin <pasekei@gmail.com> | 2015-01-07 21:00:16 -0600 |
commit | 2901ba177dea5867cbd52eb2b02a0ef8e1816e15 (patch) | |
tree | 81cc70a70e7cc0b9e46cc3e055dea1c702db1309 /world/map/npc/001-1/entertainer.txt | |
parent | fb7caf2cb0e768cf4b9c7f83df644edc97250a78 (diff) | |
download | serverdata-2901ba177dea5867cbd52eb2b02a0ef8e1816e15.tar.gz serverdata-2901ba177dea5867cbd52eb2b02a0ef8e1816e15.tar.bz2 serverdata-2901ba177dea5867cbd52eb2b02a0ef8e1816e15.tar.xz serverdata-2901ba177dea5867cbd52eb2b02a0ef8e1816e15.zip |
Moving Tutorial from Tulimshar to Candor
Diffstat (limited to 'world/map/npc/001-1/entertainer.txt')
-rw-r--r-- | world/map/npc/001-1/entertainer.txt | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/world/map/npc/001-1/entertainer.txt b/world/map/npc/001-1/entertainer.txt deleted file mode 100644 index 3bc2e141..00000000 --- a/world/map/npc/001-1/entertainer.txt +++ /dev/null @@ -1,38 +0,0 @@ -// Emote NPC allows for players to learn the emote skill - -001-1.gat,30,43,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; -} |