summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Beller <stefanbeller@googlemail.com>2011-01-23 23:24:41 +0100
committerStefan Beller <stefanbeller@googlemail.com>2011-01-23 23:24:41 +0100
commitbc98b0e3a8c65071b86438938b4480e1150d7b42 (patch)
treeb7ba32b30070ae8922548c8967096ed9bea56882
parent446c7dae4c5a37ccb23b22a103a1f28a6b67fdc0 (diff)
downloadserverdata-bc98b0e3a8c65071b86438938b4480e1150d7b42.tar.gz
serverdata-bc98b0e3a8c65071b86438938b4480e1150d7b42.tar.bz2
serverdata-bc98b0e3a8c65071b86438938b4480e1150d7b42.tar.xz
serverdata-bc98b0e3a8c65071b86438938b4480e1150d7b42.zip
removing taro forever
if anyone wants her back, use git wisely to reset to a state before this commit. This is done so the Converter tool wont produce these many diffs
-rw-r--r--npc/014-1_Woodland/taro.txt74
-rw-r--r--npc/019-1_Snow_field/taro.txt72
2 files changed, 0 insertions, 146 deletions
diff --git a/npc/014-1_Woodland/taro.txt b/npc/014-1_Woodland/taro.txt
deleted file mode 100644
index d2f1091e..00000000
--- a/npc/014-1_Woodland/taro.txt
+++ /dev/null
@@ -1,74 +0,0 @@
-
-// Woodland Taro
-
-//014-1.gat,54,43,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;
-}
diff --git a/npc/019-1_Snow_field/taro.txt b/npc/019-1_Snow_field/taro.txt
deleted file mode 100644
index f57e75e9..00000000
--- a/npc/019-1_Snow_field/taro.txt
+++ /dev/null
@@ -1,72 +0,0 @@
-// Snow Taro
-
-//019-1.gat,57,61,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'm scared!!!";
- mes "Take me back, pleeeease!!!\"";
- next;
- menu
- "Ok", L_Warp,
- "Just give me one more minute.", -;
- close;
-
-L_Santa:
- mes "[Taro]";
- mes "\"SANTA! Will you take me back home?\"";
- next;
-
- menu
- "Of course!", L_Warp,
- "No, I need to finish some stuff up here.", -;
- close;
-
-L_Elf:
- mes "[Taro]";
- mes "\"Aren't you one of Santa's elves? Can you help me back home?\"";
- next;
-
- menu
- "Yes", L_Warp,
- "No. I'm too busy.", -;
- close;
-
-L_NearElf:
- mes "[Taro]";
- mes "\"Aren't you one of Santa's elves? Oh, you're not. Will you help me get home anyways?\"";
- next;
-
- menu
- "Yes", L_Warp,
- "No", -;
- close;
-
-L_Antlers:
- mes "[Taro]";
- mes "\"Mister reindeer? Will you take me home?\"";
- next;
-
- menu
- "Yes", L_Warp,
- "No", -;
- close;
-
-L_Tree:
- mes "[Taro]";
- mes "\"Oh Christmas tree, I wish I could go home now!\"";
- next;
-
- menu
- "Let me take you", L_Warp,
- "Sorry, I'm not a magic tree", -;
- close;
-
-L_Warp:
- warp "014-1.gat", 52, 45;
- close;
-}