summaryrefslogtreecommitdiff
path: root/npc/001-1/entertainer.txt
diff options
context:
space:
mode:
authorBen Longbons <b.r.longbons@gmail.com>2011-06-18 21:58:47 -0700
committerBen Longbons <b.r.longbons@gmail.com>2011-06-19 14:19:55 -0700
commitbae4b92e560c2694eaaf0e8b4d9e95e56204471b (patch)
tree4acc120f6a94cfbf9694bf344658493de5aaa67b /npc/001-1/entertainer.txt
parent319f80526f8585ecadaec986e37c9bd326f4d363 (diff)
downloadserverdata-bae4b92e560c2694eaaf0e8b4d9e95e56204471b.tar.gz
serverdata-bae4b92e560c2694eaaf0e8b4d9e95e56204471b.tar.bz2
serverdata-bae4b92e560c2694eaaf0e8b4d9e95e56204471b.tar.xz
serverdata-bae4b92e560c2694eaaf0e8b4d9e95e56204471b.zip
Move to a subdirectory
Diffstat (limited to 'npc/001-1/entertainer.txt')
-rw-r--r--npc/001-1/entertainer.txt44
1 files changed, 0 insertions, 44 deletions
diff --git a/npc/001-1/entertainer.txt b/npc/001-1/entertainer.txt
deleted file mode 100644
index 149f1e2f..00000000
--- a/npc/001-1/entertainer.txt
+++ /dev/null
@@ -1,44 +0,0 @@
-// 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;
-
-}