summaryrefslogtreecommitdiff
path: root/npc/001-1/entertainer.txt
diff options
context:
space:
mode:
authorJared Adams <jaxad0127@gmail.com>2011-06-01 15:27:26 -0600
committerJared Adams <jaxad0127@gmail.com>2011-06-01 15:37:09 -0600
commit3d0823d5c9b56be5c3892c0a4e717f961cb93e69 (patch)
tree6545b29dbd08d81b57f9cb1f9f83df57ead489c2 /npc/001-1/entertainer.txt
parentc6e448824925eec18edffffc7342399b73b6feb4 (diff)
downloadserverdata-3d0823d5c9b56be5c3892c0a4e717f961cb93e69.tar.gz
serverdata-3d0823d5c9b56be5c3892c0a4e717f961cb93e69.tar.bz2
serverdata-3d0823d5c9b56be5c3892c0a4e717f961cb93e69.tar.xz
serverdata-3d0823d5c9b56be5c3892c0a4e717f961cb93e69.zip
Change the Converter to use different folder names
And update everything to use it.
Diffstat (limited to 'npc/001-1/entertainer.txt')
-rw-r--r--npc/001-1/entertainer.txt44
1 files changed, 44 insertions, 0 deletions
diff --git a/npc/001-1/entertainer.txt b/npc/001-1/entertainer.txt
new file mode 100644
index 00000000..149f1e2f
--- /dev/null
+++ b/npc/001-1/entertainer.txt
@@ -0,0 +1,44 @@
+// Emote NPC allows for players to learn the emote skill
+
+001-1.gat,30,45,0 script Entertainer 165,{
+ set @EMOTE_SKILL, 1;
+ if (getskilllv(@EMOTE_SKILL) > 0) goto L_Has;
+
+ mes "[Entertainer]";
+ mes "\"Yes how can I help you?\"";
+ menu
+ "What are those emotions above your head?", L_Learn,
+ "Nothing I guess", -;
+ close;
+
+L_Learn:
+ mes "[Entertainer]";
+ mes "\"They are called emotes, I use them to express how I am feeling";
+ mes "I can teach you to do them too\"";
+ menu
+ "Ok sure", L_Learn2,
+ "Why would I need to that", -;
+ close;
+
+L_Learn2:
+ setskill @EMOTE_SKILL, 1;
+ mes "[Entertainer]";
+ mes "\"All you have to do is press alt and a number";
+ mes "The number determines what emotion will be showned";
+ mes "Some clients will also show an emote shortcut-bar with the F12 button\"";
+ close;
+
+L_Has:
+ mes "[Entertainer]";
+ mes "\"The entertainment life is a hard life...\" *sigh*";
+ close;
+
+
+OnTimer3000:
+ emotion rand(0,11);
+ setnpctimer 0;
+
+OnInit:
+ initnpctimer;
+
+}