summaryrefslogtreecommitdiff
path: root/npc/020-2_Nivalis
diff options
context:
space:
mode:
authorStefan Beller <stefanbeller@googlemail.com>2010-12-16 00:18:03 +0100
committerStefan Beller <stefanbeller@googlemail.com>2010-12-16 00:18:03 +0100
commitf6e57121b237dd1f84e49885e99cfa18fe087ec5 (patch)
tree7cbfd21f624bed3e08d57b47449264cc19ea9265 /npc/020-2_Nivalis
parent70ea12a375c8bb69cc3d645aba0463c5653f5327 (diff)
downloadserverdata-f6e57121b237dd1f84e49885e99cfa18fe087ec5.tar.gz
serverdata-f6e57121b237dd1f84e49885e99cfa18fe087ec5.tar.bz2
serverdata-f6e57121b237dd1f84e49885e99cfa18fe087ec5.tar.xz
serverdata-f6e57121b237dd1f84e49885e99cfa18fe087ec5.zip
nivalis
Diffstat (limited to 'npc/020-2_Nivalis')
-rwxr-xr-xnpc/020-2_Nivalis/baktar.txt2
-rw-r--r--npc/020-2_Nivalis/taro.txt74
2 files changed, 1 insertions, 75 deletions
diff --git a/npc/020-2_Nivalis/baktar.txt b/npc/020-2_Nivalis/baktar.txt
index b037d7bb..b29b4be1 100755
--- a/npc/020-2_Nivalis/baktar.txt
+++ b/npc/020-2_Nivalis/baktar.txt
@@ -32,7 +32,7 @@
//# bit 0 knows the name/location of the opponent
//# bit 1 killed the ugly opponent
//#=========================
-020-2.gat,70,61,0 script Baktar 183,{
+020-2.gat,70,61,0 script Baktar 191,{
set @npcname$, "[Baktar]";
set @Q_MASK, BYTE_0_MASK;
diff --git a/npc/020-2_Nivalis/taro.txt b/npc/020-2_Nivalis/taro.txt
deleted file mode 100644
index a9418f80..00000000
--- a/npc/020-2_Nivalis/taro.txt
+++ /dev/null
@@ -1,74 +0,0 @@
-
-// Woodland Taro
-
-020-2.gat,104,28,0 script Taro 114,{
- if (getequipid(equip_head) == 511 || getequipid(equip_head) == 1206) goto L_Santa;
- if (getequipid(equip_head) == 633) goto L_Elf;
- if (getequipid(equip_head) == 628) goto L_NearElf;
- if (getequipid(equip_head) == 1204) goto L_Antlers;
- if (getequipid(equip_head) == 1205) goto L_Tree;
-
- mes "[Taro]";
- mes "\"I saw Santa Claus going up this road.";
- mes "Will you help me following him?\"";
- next;
-
- menu
- "Of course, I'll help you!", L_Warp,
- "No, it's probably dangerous out there.", -;
- close;
-
-L_Santa:
- mes "[Taro]";
- mes "\"SANTA! Will you take me to your workshop?\"";
- next;
-
- menu
- "Of course!", L_Warp,
- "No, getting there is too dangerous.", -;
- close;
-
-L_Elf:
- mes "[Taro]";
- mes "\"Aren't you one of Santa's elves? Will you take me to him?\"";
- next;
-
- menu
- "Yes", L_Warp,
- "No. Santa is too busy.", -;
- close;
-
-L_NearElf:
- mes "[Taro]";
- mes "\"Aren't you one of Santa's elves? Oh, you're not. Will you help me see him anyways?\"";
- next;
-
- menu
- "Yes", L_Warp,
- "No", -;
- close;
-
-L_Antlers:
- mes "[Taro]";
- mes "\"Mister reindeer? Will you take me to Santa Clause?\"";
- next;
-
- menu
- "Yes", L_Warp,
- "No", -;
- close;
-
-L_Tree:
- mes "[Taro]";
- mes "\"Oh Christmas tree, I wish I could go see Santa!\"";
- next;
-
- menu
- "Let me take you", L_Warp,
- "Sorry, I'm not a magic tree", -;
- close;
-
-L_Warp:
- warp "019-1.gat",56,61;
- close;
-}