diff options
author | Jessica Tölke <jtoelke@mail.upb.de> | 2011-04-22 21:29:56 +0200 |
---|---|---|
committer | Jessica Tölke <jtoelke@mail.upb.de> | 2011-04-22 21:29:56 +0200 |
commit | 0ec52989da6e0e6a053e64e0b723bad6cba1e76b (patch) | |
tree | 3b39927248d99c39d1c26037a0b7708ee8d03c79 /npc | |
parent | de5fefc33d6e19bbc5b2c2f194b47b288c5900e3 (diff) | |
download | serverdata-0ec52989da6e0e6a053e64e0b723bad6cba1e76b.tar.gz serverdata-0ec52989da6e0e6a053e64e0b723bad6cba1e76b.tar.bz2 serverdata-0ec52989da6e0e6a053e64e0b723bad6cba1e76b.tar.xz serverdata-0ec52989da6e0e6a053e64e0b723bad6cba1e76b.zip |
changing towels, adding gem powders
Diffstat (limited to 'npc')
-rw-r--r-- | npc/items/warpTowels.txt | 42 |
1 files changed, 20 insertions, 22 deletions
diff --git a/npc/items/warpTowels.txt b/npc/items/warpTowels.txt index 11373b83..5ef5167b 100644 --- a/npc/items/warpTowels.txt +++ b/npc/items/warpTowels.txt @@ -1,52 +1,50 @@ +function script useWhiteWarpTowel { + warp "020-1.gat",66,91; // Nivalis + getitem "GreyWarpTowel", 1; + end; +} function script useRedWarpTowel { warp "009-1.gat",51,40; // Hurnscald - getitem "WhiteWarpTowel", 1; + getitem "GreyWarpTowel", 1; end; } function script useGreenWarpTowel { warp "003-1.gat",35,25; - getitem "WhiteWarpTowel", 1; + getitem "GreyWarpTowel", 1; end; } -function script useDarkBlueWarpTowel { +function script useBlueWarpTowel { warp "003-1.gat",35,25; - getitem "WhiteWarpTowel", 1; + getitem "GreyWarpTowel", 1; end; } function script useYellowWarpTowel { warp "001-1.gat",40,71; // Tulimshar - getitem "WhiteWarpTowel", 1; - end; -} -function script useLightBlueWarpTowel { - warp "020-1.gat",66,91; // Nivalis - getitem "WhiteWarpTowel", 1; + getitem "GreyWarpTowel", 1; end; } -function script usePinkWarpTowel { +function script usePurpleWarpTowel { warp "003-1.gat",35,25; - getitem "WhiteWarpTowel", 1; + getitem "GreyWarpTowel", 1; end; } -function script useBlackWarpTowel { +function script useOrangeWarpTowel { warp "003-1.gat",35,25; - getitem "WhiteWarpTowel", 1; + getitem "GreyWarpTowel", 1; end; } -function script useOrangeWarpTowel { +function script usePinkWarpTowel { warp "003-1.gat",35,25; - getitem "WhiteWarpTowel", 1; + getitem "GreyWarpTowel", 1; end; } -function script usePurpleWarpTowel { +function script useTealWarpTowel { warp "003-1.gat",35,25; - getitem "WhiteWarpTowel", 1; + getitem "GreyWarpTowel", 1; end; } -function script useDarkGreenWarpTowel { +function script useLimeWarpTowel { warp "003-1.gat",35,25; - getitem "WhiteWarpTowel", 1; + getitem "GreyWarpTowel", 1; end; } - -//TODO: entry in items.xml |