diff options
author | Wombat <hpwombat@yahoo.com> | 2010-08-18 18:47:49 -0400 |
---|---|---|
committer | Wombat <hpwombat@yahoo.com> | 2010-08-18 18:47:49 -0400 |
commit | 75dfdd443d6dbe9bd556debeb1c50d3000d95967 (patch) | |
tree | 9389216dfae858103c920a959899aac1f21fc510 /npc/020-2_Nivalis/taro.txt | |
parent | 2050f443896ddc540f7e6221666d278edf59dfab (diff) | |
download | serverdata-75dfdd443d6dbe9bd556debeb1c50d3000d95967.tar.gz serverdata-75dfdd443d6dbe9bd556debeb1c50d3000d95967.tar.bz2 serverdata-75dfdd443d6dbe9bd556debeb1c50d3000d95967.tar.xz serverdata-75dfdd443d6dbe9bd556debeb1c50d3000d95967.zip |
Nivalis Removal and Related Changes
All warps to Nivalis removed, furquest moved, magic house notes changed,
Nivalis Soul-Menhir changed to Hurnscald flags
Diffstat (limited to 'npc/020-2_Nivalis/taro.txt')
-rw-r--r-- | npc/020-2_Nivalis/taro.txt | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/npc/020-2_Nivalis/taro.txt b/npc/020-2_Nivalis/taro.txt new file mode 100644 index 00000000..a9418f80 --- /dev/null +++ b/npc/020-2_Nivalis/taro.txt @@ -0,0 +1,74 @@ + +// 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; +} |