Advertisement
Guest User

Plugins (Custom.pl)

a guest
Oct 8th, 2013
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Perl 48.06 KB | None | 0 0
  1. sub Skill
  2. {
  3.     my %skills = (0 =>  "1H Blunt",
  4.     1   =>  "1H Slashing",
  5.     2   =>  "2H Blunt",
  6.     3   =>  "2H Slashing",
  7.     4   =>  "Abjuration",
  8.     5   =>  "Alteration",
  9.     6   =>  "Apply Poison",
  10.     7   =>  "Archery",
  11.     8   =>  "Backstab",
  12.     9   =>  "Bind Wound",
  13.     10  =>  "Bash",
  14.     11  =>  "Block",
  15.     12  =>  "Brass Instruments",
  16.     13  =>  "Channelling",
  17.     14  =>  "Conjuration",
  18.     15  =>  "Defense",
  19.     16  =>  "Disarm",
  20.     17  =>  "Disarm Traps",
  21.     18  =>  "Divination",
  22.     19  =>  "Dodge",
  23.     20  =>  "Double Attack",
  24.     21  =>  "Dragon Punch",
  25.     22  =>  "Dual Wield",
  26.     23  =>  "Eagle Strike",
  27.     24  =>  "Evocation",
  28.     25  =>  "Feign Death",
  29.     26  =>  "Flying Kick",
  30.     27  =>  "Forage",
  31.     28  =>  "Hand to Hand",
  32.     29  =>  "Hide",
  33.     30  =>  "Kick",
  34.     31  =>  "Meditate",
  35.     32  =>  "Mend",
  36.     33  =>  "Offense",
  37.     34  =>  "Parry",
  38.     35  =>  "Picklock",
  39.     36  =>  "Piercing",
  40.     37  =>  "Riposte",
  41.     38  =>  "Round Kick",
  42.     39  =>  "Safe Fall",
  43.     40  =>  "Sense Heading",
  44.     41  =>  "Singing",
  45.     42  =>  "Sneak",
  46.     43  =>  "Specialize Abjuration",
  47.     44  =>  "Specialize Alteration",
  48.     45  =>  "Specialize Conjuration",
  49.     46  =>  "Specialize Divination",
  50.     47  =>  "Specialize Evocation",
  51.     48  =>  "Pick Pockets",
  52.     49  =>  "Stringed Instruments",
  53.     50  =>  "Swimming",
  54.     51  =>  "Throwing",
  55.     52  =>  "Tiger Claw",
  56.     53  =>  "Tracking",
  57.     54  =>  "Wind Instruments",
  58.     55  =>  "Fishing",
  59.     56  =>  "Make Poison",
  60.     57  =>  "Tinkering",
  61.     58  =>  "Research",
  62.     59  =>  "Alchemy",
  63.     60  =>  "Baking",
  64.     61  =>  "Tailoring",
  65.     62  =>  "Sense Traps",
  66.     63  =>  "Blacksmithing",
  67.     64  =>  "Fletching",
  68.     65  =>  "Brewing",
  69.     66  =>  "Alcohol Tolerance",
  70.     67  =>  "Begging",
  71.     68  =>  "Jewellery Making",
  72.     69  =>  "Pottery",
  73.     70  =>  "Percussion Instruments",
  74.     71  =>  "Intimidation",
  75.     72  =>  "Berserking",
  76.     73  =>  "Taunt",
  77.     74  =>  "Frenzy");
  78.     my $skill = $_[0];
  79.     return "$skills{$skill}";
  80. }
  81.    
  82. sub Class
  83. {
  84.     my %classes = (1 => "Warrior",
  85.     2 => "Cleric",
  86.     3 => "Paladin",
  87.     4 => "Ranger",
  88.     5 => "Shadow Knight",
  89.     6 => "Druid",
  90.     7 => "Monk",
  91.     8 => "Bard",
  92.     9 => "Rogue",
  93.     10 => "Shaman",
  94.     11 => "Necromancer",
  95.     12 => "Wizard",
  96.     13 => "Magician",
  97.     14 => "Enchanter",
  98.     15 => "Beastlord",
  99.     16 => "Berserker",
  100.     20 => "Warrior Guildmaster",
  101.     21 => "Cleric Guildmaster",
  102.     22 => "Paladin Guildmaster",
  103.     23 => "Ranger Guildmaster",
  104.     24 => "Shadow Knight Guildmaster",
  105.     25 => "Druid Guildmaster",
  106.     26 => "Monk Guildmaster",
  107.     27 => "Bard Guildmaster",
  108.     28 => "Rogue Guildmaster",
  109.     29 => "Shaman Guildmaster",
  110.     30 => "Necromancer Guildmaster",
  111.     31 => "Wizard Guildmaster",
  112.     32 => "Magician Guildmaster",
  113.     33 => "Enchanter Guildmaster",
  114.     34 => "Beastlord Guildmaster",
  115.     35 => "Berserker Guildmaster",
  116.     40 => "Banker",
  117.     41 => "Merchant",
  118.     59 => "Discord Merchant",
  119.     60 => "Adventure Merchant",
  120.     63 => "Tribute Master",
  121.     64 => "Guild Tribute Master",
  122.     66 => "Guild Banker",
  123.     67 => "Radiant Crystal Merchant",
  124.     68 => "Ebon Crystal Merchant",
  125.     69 => "Fellowships",
  126.     70 => "Alternate Currency Merchant",
  127.     71 => "Mercenary Merchant");
  128.     my $class = $_[0];
  129.     return "$classes{$class}";
  130. }
  131.  
  132. sub Race
  133. {
  134.     my %races = (1 => "Human",
  135.     2 => "Barbarian",
  136.     3 => "Erudite",
  137.     4 => "Wood Elf",
  138.     5 => "High Elf",
  139.     6 => "Dark Elf",
  140.     7 => "Half Elf",
  141.     8 => "Dwarf",
  142.     9 => "Troll",
  143.     10 => "Ogre",
  144.     11 => "Halfling",
  145.     12 => "Gnome",
  146.     13 => "Aviak",
  147.     14 => "Werewolf",
  148.     15 => "Brownie",
  149.     16 => "Centaur",
  150.     17 => "Golem",
  151.     18 => "Giant",
  152.     19 => "Trakanon",
  153.     20 => "Venril Sathir",
  154.     21 => "Evil Eye",
  155.     22 => "Beetle",
  156.     23 => "Kerran",
  157.     24 => "Fish",
  158.     25 => "Fairy",
  159.     26 => "Froglok",
  160.     27 => "Froglok",
  161.     28 => "Fungusman",
  162.     29 => "Gargoyle",
  163.     30 => "Gasbag",
  164.     31 => "Gelatinous Cube",
  165.     32 => "Ghost",
  166.     33 => "Ghoul",
  167.     34 => "Bat",
  168.     35 => "Eel",
  169.     36 => "Rat",
  170.     37 => "Snake",
  171.     38 => "Spider",
  172.     39 => "Gnoll",
  173.     40 => "Goblin",
  174.     41 => "Gorilla",
  175.     42 => "Wolf",
  176.     43 => "Bear",
  177.     44 => "Guard",
  178.     45 => "Demi Lich",
  179.     46 => "Imp",
  180.     47 => "Griffin",
  181.     48 => "Kobold",
  182.     49 => "Dragon",
  183.     50 => "Lion",
  184.     51 => "Lizard Man",
  185.     52 => "Mimic",
  186.     53 => "Minotaur",
  187.     54 => "Orc",
  188.     55 => "Beggar",
  189.     56 => "Pixie",
  190.     57 => "Drachnid",
  191.     58 => "Solusek Ro",
  192.     59 => "Goblin",
  193.     60 => "Skeleton",
  194.     61 => "Shark",
  195.     62 => "Tunare",
  196.     63 => "Tiger",
  197.     64 => "Treant",
  198.     65 => "Vampire",
  199.     66 => "Rallos Zek",
  200.     67 => "Human",
  201.     68 => "Tentacle Terror",
  202.     69 => "Will-O-Wisp",
  203.     70 => "Zombie",
  204.     71 => "Human",
  205.     72 => "Ship",
  206.     73 => "Launch",
  207.     74 => "Piranha",
  208.     75 => "Elemental",
  209.     76 => "Puma",
  210.     77 => "Dark Elf",
  211.     78 => "Erudite",
  212.     79 => "Bixie",
  213.     80 => "Reanimated Hand",
  214.     81 => "Halfling",
  215.     82 => "Scarecrow",
  216.     83 => "Skunk",
  217.     84 => "Snake Elemental",
  218.     85 => "Spectre",
  219.     86 => "Sphinx",
  220.     87 => "Armadillo",
  221.     88 => "Clockwork Gnome",
  222.     89 => "Drake",
  223.     90 => "Barbarian",
  224.     91 => "Alligator",
  225.     92 => "Troll",
  226.     93 => "Ogre",
  227.     94 => "Dwarf",
  228.     95 => "Cazic Thule",
  229.     96 => "Cockatrice",
  230.     97 => "Daisy Man",
  231.     98 => "Vampire",
  232.     99 => "Amygdalan",
  233.     100 => "Dervish",
  234.     101 => "Efreeti",
  235.     102 => "Tadpole",
  236.     103 => "Kedge",
  237.     104 => "Leech",
  238.     105 => "Swordfish",
  239.     106 => "Guard",
  240.     107 => "Mammoth",
  241.     108 => "Eye",
  242.     109 => "Wasp",
  243.     110 => "Mermaid",
  244.     111 => "Harpy",
  245.     112 => "Guard",
  246.     113 => "Drixie",
  247.     114 => "Ghost Ship",
  248.     115 => "Clam",
  249.     116 => "Seahorse",
  250.     117 => "Ghost",
  251.     118 => "Ghost",
  252.     119 => "Sabertooth",
  253.     120 => "Wolf",
  254.     121 => "Gorgon",
  255.     122 => "Dragon",
  256.     123 => "Innoruuk",
  257.     124 => "Unicorn",
  258.     125 => "Pegasus",
  259.     126 => "Djinn",
  260.     127 => "Invisible Man",
  261.     128 => "Iksar",
  262.     129 => "Scorpion",
  263.     130 => "Vah Shir",
  264.     131 => "Sarnak",
  265.     132 => "Draglock",
  266.     133 => "Drolvarg",
  267.     134 => "Mosquito",
  268.     135 => "Rhinoceros",
  269.     136 => "Xalgoz",
  270.     137 => "Goblin",
  271.     138 => "Yeti",
  272.     139 => "Iksar",
  273.     140 => "Giant",
  274.     141 => "Boat",
  275.     144 => "Burynai",
  276.     145 => "Goo",
  277.     146 => "Sarnak Spirit",
  278.     147 => "Iksar Spirit",
  279.     148 => "Fish",
  280.     149 => "Scorpion",
  281.     150 => "Erollisi",
  282.     151 => "Tribunal",
  283.     152 => "Bertoxxulous",
  284.     153 => "Bristlebane",
  285.     154 => "Fay Drake",
  286.     155 => "Undead Sarnak",
  287.     156 => "Ratman",
  288.     157 => "Wyvern",
  289.     158 => "Wurm",
  290.     159 => "Devourer",
  291.     160 => "Iksar Golem",
  292.     161 => "Undead Iksar",
  293.     162 => "Man-Eating Plant",
  294.     163 => "Raptor",
  295.     164 => "Sarnak Golem",
  296.     165 => "Dragon",
  297.     166 => "Animated Hand",
  298.     167 => "Succulent",
  299.     168 => "Holgresh",
  300.     169 => "Brontotherium",
  301.     170 => "Snow Dervish",
  302.     171 => "Dire Wolf",
  303.     172 => "Manticore",
  304.     173 => "Totem",
  305.     174 => "Ice Spectre",
  306.     175 => "Enchanted Armor",
  307.     176 => "Snow Rabbit",
  308.     177 => "Walrus",
  309.     178 => "Geonid",
  310.     181 => "Yakkar",
  311.     182 => "Faun",
  312.     183 => "Coldain",
  313.     184 => "Dragon",
  314.     185 => "Hag",
  315.     186 => "Hippogriff",
  316.     187 => "Siren",
  317.     188 => "Giant",
  318.     189 => "Giant",
  319.     190 => "Othmir",
  320.     191 => "Ulthork",
  321.     192 => "Dragon",
  322.     193 => "Abhorrent",
  323.     194 => "Sea Turtle",
  324.     195 => "Dragon",
  325.     196 => "Dragon",
  326.     197 => "Ronnie Test",
  327.     198 => "Dragon",
  328.     199 => "Shik'Nar",
  329.     200 => "Rockhopper",
  330.     201 => "Underbulk",
  331.     202 => "Grimling",
  332.     203 => "Worm",
  333.     204 => "Evan Test",
  334.     205 => "Shadel",
  335.     206 => "Owlbear",
  336.     207 => "Rhino Beetle",
  337.     208 => "Vampire",
  338.     209 => "Earth Elemental",
  339.     210 => "Air Elemental",
  340.     211 => "Water Elemental",
  341.     212 => "Fire Elemental",
  342.     213 => "Wetfang Minnow",
  343.     214 => "Thought Horror",
  344.     215 => "Tegi",
  345.     216 => "Horse",
  346.     217 => "Shissar",
  347.     218 => "Fungal Fiend",
  348.     219 => "Vampire",
  349.     220 => "Stonegrabber",
  350.     221 => "Scarlet Cheetah",
  351.     222 => "Zelniak",
  352.     223 => "Lightcrawler",
  353.     224 => "Shade",
  354.     225 => "Sunfbelow",
  355.     226 => "Sun Revenant",
  356.     227 => "Shrieker",
  357.     228 => "Galorian",
  358.     229 => "Netherbian",
  359.     230 => "Akheva",
  360.     231 => "Grieg Veneficus",
  361.     232 => "Sonic Wolf",
  362.     233 => "Ground Shaker",
  363.     234 => "Vah Shir Skeleton",
  364.     235 => "Wretch",
  365.     236 => "Seru",
  366.     237 => "Recuso",
  367.     238 => "Vah Shir",
  368.     239 => "Guard",
  369.     240 => "Teleport Man",
  370.     241 => "Werewolf",
  371.     242 => "Nymph",
  372.     243 => "Dryad",
  373.     244 => "Treant",
  374.     245 => "Fly",
  375.     246 => "Tarew Marr",
  376.     247 => "Solusek Ro",
  377.     248 => "Clockwork Golem",
  378.     249 => "Clockwork Brain",
  379.     250 => "Banshee",
  380.     251 => "Guard of Justice",
  381.     252 => "Mini POM",
  382.     253 => "Diseased Fiend",
  383.     254 => "Solusek Ro Guard",
  384.     255 => "Bertoxxulous",
  385.     256 => "The Tribunal",
  386.     257 => "Terris Thule",
  387.     258 => "Vegerog",
  388.     259 => "Crocodile",
  389.     260 => "Bat",
  390.     261 => "Hraquis",
  391.     262 => "Tranquilion",
  392.     263 => "Tin Soldier",
  393.     264 => "Nightmare Wraith",
  394.     265 => "Malarian",
  395.     266 => "Knight of Pestilence",
  396.     267 => "Lepertoloth",
  397.     268 => "Bubonian",
  398.     269 => "Bubonian Underling",
  399.     270 => "Pusling",
  400.     271 => "Water Mephit",
  401.     272 => "Stormrider",
  402.     273 => "Junk Beast",
  403.     274 => "Broken Clockwork",
  404.     275 => "Giant Clockwork",
  405.     276 => "Clockwork Beetle",
  406.     277 => "Nightmare Goblin",
  407.     278 => "Karana",
  408.     279 => "Blood Raven",
  409.     280 => "Nightmare Gargoyle",
  410.     281 => "Mouth of Insanity",
  411.     282 => "Skeletal Horse",
  412.     283 => "Saryrn",
  413.     284 => "Fennin Ro",
  414.     285 => "Tormentor",
  415.     286 => "Soul Devourer",
  416.     287 => "Nightmare",
  417.     288 => "Rallos Zek",
  418.     289 => "Vallon Zek",
  419.     290 => "Tallon Zek",
  420.     291 => "Air Mephit",
  421.     292 => "Earth Mephit",
  422.     293 => "Fire Mephit",
  423.     294 => "Nightmare Mephit",
  424.     295 => "Zebuxoruk",
  425.     296 => "Mithaniel Marr",
  426.     297 => "Undead Knight",
  427.     298 => "The Rathe",
  428.     299 => "Xegony",
  429.     300 => "Fiend",
  430.     301 => "Test Object",
  431.     302 => "Crab",
  432.     303 => "Phoenix",
  433.     304 => "Dragon",
  434.     305 => "Bear",
  435.     306 => "Giant",
  436.     307 => "Giant",
  437.     308 => "Giant",
  438.     309 => "Giant",
  439.     310 => "Giant",
  440.     311 => "Giant",
  441.     312 => "Giant",
  442.     313 => "War Wraith",
  443.     314 => "Wrulon",
  444.     315 => "Kraken",
  445.     316 => "Poison Frog",
  446.     317 => "Nilborien",
  447.     318 => "Valorian",
  448.     319 => "War Boar",
  449.     320 => "Efreeti",
  450.     321 => "War Boar",
  451.     322 => "Valorian",
  452.     323 => "Animated Armor",
  453.     324 => "Undead Footman",
  454.     325 => "Rallos Zek Minion",
  455.     326 => "Arachnid",
  456.     327 => "Crystal Spider",
  457.     328 => "Zebuxoruk's Cage",
  458.     329 => "BoT Portal",
  459.     330 => "Froglok",
  460.     331 => "Troll",
  461.     332 => "Troll",
  462.     333 => "Troll",
  463.     334 => "Ghost",
  464.     335 => "Pirate",
  465.     336 => "Pirate",
  466.     337 => "Pirate",
  467.     338 => "Pirate",
  468.     339 => "Pirate",
  469.     340 => "Pirate",
  470.     341 => "Pirate",
  471.     342 => "Pirate",
  472.     343 => "Frog",
  473.     344 => "Troll Zombie",
  474.     345 => "Luggald",
  475.     346 => "Luggald",
  476.     347 => "Luggalds",
  477.     348 => "Drogmore",
  478.     349 => "Froglok Skeleton",
  479.     350 => "Undead Froglok",
  480.     351 => "Knight of Hate",
  481.     352 => "Arcanist of Hate",
  482.     353 => "Veksar",
  483.     354 => "Veksar",
  484.     355 => "Veksar",
  485.     356 => "Chokidai",
  486.     357 => "Undead Chokidai",
  487.     358 => "Undead Veksar",
  488.     359 => "Vampire",
  489.     360 => "Vampire",
  490.     361 => "Rujarkian Orc",
  491.     362 => "Bone Golem",
  492.     363 => "Synarcana",
  493.     364 => "Sand Elf",
  494.     365 => "Vampire",
  495.     366 => "Rujarkian Orc",
  496.     367 => "Skeleton",
  497.     368 => "Mummy",
  498.     369 => "Goblin",
  499.     370 => "Insect",
  500.     371 => "Froglok Ghost",
  501.     372 => "Dervish",
  502.     373 => "Shade",
  503.     374 => "Golem",
  504.     375 => "Evil Eye",
  505.     376 => "Box",
  506.     377 => "Barrel",
  507.     378 => "Chest",
  508.     379 => "Vase",
  509.     380 => "Table",
  510.     381 => "Weapon Rack",
  511.     382 => "Coffin",
  512.     383 => "Bones",
  513.     384 => "Jokester",
  514.     385 => "Nihil",
  515.     386 => "Trusik",
  516.     387 => "Stone Worker",
  517.     388 => "Hynid",
  518.     389 => "Turepta",
  519.     390 => "Cragbeast",
  520.     391 => "Stonemite",
  521.     392 => "Ukun",
  522.     393 => "Ixt",
  523.     394 => "Ikaav",
  524.     395 => "Aneuk",
  525.     396 => "Kyv",
  526.     397 => "Noc",
  527.     398 => "Ra`tuk",
  528.     399 => "Taneth",
  529.     400 => "Huvul",
  530.     401 => "Mutna",
  531.     402 => "Mastruq",
  532.     403 => "Taelosian",
  533.     404 => "Discord Ship",
  534.     405 => "Stone Worker",
  535.     406 => "Mata Muram",
  536.     407 => "Lightning Warrior",
  537.     408 => "Succubus",
  538.     409 => "Bazu",
  539.     410 => "Feran",
  540.     411 => "Pyrilen",
  541.     412 => "Chimera",
  542.     413 => "Dragorn",
  543.     414 => "Murkglider",
  544.     415 => "Rat",
  545.     416 => "Bat",
  546.     417 => "Gelidran",
  547.     418 => "Discordling",
  548.     419 => "Girplan",
  549.     420 => "Minotaur",
  550.     421 => "Dragorn Box",
  551.     422 => "Runed Orb",
  552.     423 => "Dragon Bones",
  553.     424 => "Muramite Armor Pile",
  554.     425 => "Crystal Shard",
  555.     426 => "Portal",
  556.     427 => "Coin Purse",
  557.     428 => "Rock Pile",
  558.     429 => "Murkglider Egg Sack",
  559.     430 => "Drake",
  560.     431 => "Dervish",
  561.     432 => "Drake",
  562.     433 => "Goblin",
  563.     434 => "Kirin",
  564.     435 => "Dragon",
  565.     436 => "Basilisk",
  566.     437 => "Dragon",
  567.     438 => "Dragon",
  568.     439 => "Puma",
  569.     440 => "Spider",
  570.     441 => "Spider Queen",
  571.     442 => "Animated Statue",
  572.     445 => "Dragon Egg",
  573.     446 => "Dragon Statue",
  574.     447 => "Lava Rock",
  575.     448 => "Animated Statue",
  576.     449 => "Spider Egg Sack",
  577.     450 => "Lava Spider",
  578.     451 => "Lava Spider Queen",
  579.     452 => "Dragon",
  580.     453 => "Giant",
  581.     454 => "Werewolf",
  582.     455 => "Kobold",
  583.     456 => "Sporali",
  584.     457 => "Gnomework",
  585.     458 => "Orc",
  586.     459 => "Corathus",
  587.     460 => "Coral",
  588.     461 => "Drachnid",
  589.     462 => "Drachnid Cocoon",
  590.     463 => "Fungus Patch",
  591.     464 => "Gargoyle",
  592.     465 => "Witheran",
  593.     466 => "Dark Lord",
  594.     467 => "Shiliskin",
  595.     468 => "Snake",
  596.     469 => "Evil Eye",
  597.     470 => "Minotaur",
  598.     471 => "Zombie",
  599.     472 => "Clockwork Boar",
  600.     473 => "Fairy",
  601.     474 => "Witheran",
  602.     475 => "Air Elemental",
  603.     476 => "Earth Elemental",
  604.     477 => "Fire Elemental",
  605.     478 => "Water Elemental",
  606.     479 => "Alligator",
  607.     480 => "Bear",
  608.     481 => "Scaled Wolf",
  609.     482 => "Wolf",
  610.     483 => "Spirit Wolf",
  611.     484 => "Skeleton",
  612.     485 => "Spectre",
  613.     486 => "Bolvirk",
  614.     487 => "Banshee",
  615.     488 => "Banshee",
  616.     489 => "Elddar",
  617.     490 => "Forest Giant",
  618.     491 => "Bone Golem",
  619.     492 => "Horse",
  620.     493 => "Pegasus",
  621.     494 => "Shambling Mound",
  622.     495 => "Scrykin",
  623.     496 => "Treant",
  624.     497 => "Vampire",
  625.     498 => "Ayonae Ro",
  626.     499 => "Sullon Zek",
  627.     500 => "Banner",
  628.     501 => "Flag",
  629.     502 => "Rowboat",
  630.     503 => "Bear Trap",
  631.     504 => "Clockwork Bomb",
  632.     505 => "Dynamite Keg",
  633.     506 => "Pressure Plate",
  634.     507 => "Puffer Spore",
  635.     508 => "Stone Ring",
  636.     509 => "Root Tentacle",
  637.     510 => "Runic Symbol",
  638.     511 => "Saltpetter Bomb",
  639.     512 => "Floating Skull",
  640.     513 => "Spike Trap",
  641.     514 => "Totem",
  642.     515 => "Web",
  643.     516 => "Wicker Basket",
  644.     517 => "Nightmare/Unicorn",
  645.     518 => "Horse",
  646.     519 => "Nightmare/Unicorn",
  647.     520 => "Bixie",
  648.     521 => "Centaur",
  649.     522 => "Drakkin",
  650.     523 => "Giant",
  651.     524 => "Gnoll",
  652.     525 => "Griffin",
  653.     526 => "Giant Shade",
  654.     527 => "Harpy",
  655.     528 => "Mammoth",
  656.     529 => "Satyr",
  657.     530 => "Dragon",
  658.     531 => "Dragon",
  659.     532 => "Dyn'Leth",
  660.     533 => "Boat",
  661.     534 => "Weapon Rack",
  662.     535 => "Armor Rack",
  663.     536 => "Honey Pot",
  664.     537 => "Jum Jum Bucket",
  665.     538 => "Toolbox",
  666.     539 => "Stone Jug",
  667.     540 => "Small Plant",
  668.     541 => "Medium Plant",
  669.     542 => "Tall Plant",
  670.     543 => "Wine Cask",
  671.     544 => "Elven Boat",
  672.     545 => "Gnomish Boat",
  673.     546 => "Barrel Barge Ship",
  674.     547 => "Goo",
  675.     548 => "Goo",
  676.     549 => "Goo",
  677.     550 => "Merchant Ship",
  678.     551 => "Pirate Ship",
  679.     552 => "Ghost Ship",
  680.     553 => "Banner",
  681.     554 => "Banner",
  682.     555 => "Banner",
  683.     556 => "Banner",
  684.     557 => "Banner",
  685.     558 => "Aviak",
  686.     559 => "Beetle",
  687.     560 => "Gorilla",
  688.     561 => "Kedge",
  689.     562 => "Kerran",
  690.     563 => "Shissar",
  691.     564 => "Siren",
  692.     565 => "Sphinx",
  693.     566 => "Human",
  694.     567 => "Campfire",
  695.     568 => "Brownie",
  696.     569 => "Dragon",
  697.     570 => "Exoskeleton",
  698.     571 => "Ghoul",
  699.     572 => "Clockwork Guardian",
  700.     573 => "Mantrap",
  701.     574 => "Minotaur",
  702.     575 => "Scarecrow",
  703.     576 => "Shade",
  704.     577 => "Rotocopter",
  705.     578 => "Tentacle Terror",
  706.     579 => "Wereorc",
  707.     580 => "Worg",
  708.     581 => "Wyvern",
  709.     582 => "Chimera",
  710.     583 => "Kirin",
  711.     584 => "Puma",
  712.     585 => "Boulder",
  713.     586 => "Banner",
  714.     587 => "Elven Ghost",
  715.     588 => "Human Ghost",
  716.     589 => "Chest",
  717.     590 => "Chest",
  718.     591 => "Crystal",
  719.     592 => "Coffin",
  720.     593 => "Guardian CPU",
  721.     594 => "Worg",
  722.     595 => "Mansion",
  723.     596 => "Floating Island",
  724.     597 => "Cragslither",
  725.     598 => "Wrulon",
  726.     600 => "Invisible Man of Zomm",
  727.     601 => "Robocopter of Zomm",
  728.     602 => "Burynai",
  729.     603 => "Frog",
  730.     604 => "Dracolich",
  731.     605 => "Iksar Ghost",
  732.     606 => "Iksar Skeleton",
  733.     607 => "Mephit",
  734.     608 => "Muddite",
  735.     609 => "Raptor",
  736.     610 => "Sarnak",
  737.     611 => "Scorpion",
  738.     612 => "Tsetsian",
  739.     613 => "Wurm",
  740.     614 => "Nekhon",
  741.     615 => "Hydra Crystal",
  742.     616 => "Crystal Sphere",
  743.     617 => "Gnoll",
  744.     618 => "Sokokar",
  745.     619 => "Stone Pylon",
  746.     620 => "Demon Vulture",
  747.     621 => "Wagon",
  748.     622 => "God of Discord",
  749.     623 => "Feran Mount",
  750.     624 => "Ogre NPC - Male",
  751.     625 => "Sokokar Mount",
  752.     626 => "Giant",
  753.     627 => "Sokokar",
  754.     628 => "10th Anniversary Banner",
  755.     629 => "10th Anniversary Cake",
  756.     630 => "Wine Cask",
  757.     631 => "Hydra Mount",
  758.     632 => "Hydra NPC",
  759.     633 => "Wedding Fbelows",
  760.     634 => "Wedding Arbor",
  761.     635 => "Wedding Altar",
  762.     636 => "Powder Keg",
  763.     637 => "Apexus",
  764.     638 => "Bellikos",
  765.     639 => "Brell's First Creation",
  766.     640 => "Brell",
  767.     641 => "Crystalskin Ambuloid",
  768.     642 => "Cliknar Queen",
  769.     643 => "Cliknar Soldier",
  770.     644 => "Cliknar Worker",
  771.     645 => "Coldain",
  772.     646 => "Coldain",
  773.     647 => "Crystalskin Sessiloid",
  774.     648 => "Genari",
  775.     649 => "Gigyn",
  776.     650 => "Greken - Young Adult",
  777.     651 => "Greken - Young",
  778.     652 => "Cliknar Mount",
  779.     653 => "Telmira",
  780.     654 => "Spider Mount",
  781.     655 => "Bear Mount",
  782.     656 => "Rat Mount - Mystery Race",
  783.     657 => "Sessiloid Mount",
  784.     658 => "Morell Thule",
  785.     659 => "Marionette",
  786.     660 => "Book Dervish",
  787.     661 => "Topiary Lion",
  788.     662 => "Rotdog",
  789.     663 => "Amygdalan",
  790.     664 => "Sandman",
  791.     665 => "Grandfather Clock",
  792.     666 => "Gingerbread Man",
  793.     667 => "Royal Guard",
  794.     668 => "Rabbit",
  795.     669 => "Blind Dreamer",
  796.     670 => "Cazic Thule",
  797.     671 => "Topiary Lion Mount",
  798.     672 => "Rot Dog Mount",
  799.     673 => "Goral Mount",
  800.     674 => "Selyrah Mount",
  801.     675 => "Sclera Mount - Mystery Race",
  802.     676 => "Braxi Mount",
  803.     677 => "Kangon Mount",
  804.     678 => "Erudite",
  805.     679 => "Wurm Mount",
  806.     680 => "Raptor Mount",
  807.     681 => "Invisible Man",
  808.     682 => "Whirligig",
  809.     683 => "Gnomish Balloon",
  810.     684 => "Gnomish Rocket Pack",
  811.     685 => "Gnomish Hovering Transport",
  812.     686 => "Selyrah",
  813.     687 => "Goral",
  814.     688 => "Braxi",
  815.     689 => "Kangon",
  816.     690 => "Invisible Man",
  817.     691 => "Floating Tower",
  818.     692 => "Explosive Cart",
  819.     693 => "Blimp Ship",
  820.     694 => "Tumbleweed",
  821.     695 => "Alaran",
  822.     696 => "Swinetor",
  823.     697 => "Triumvirate",
  824.     698 => "Hadal",
  825.     699 => "Hovering Platform",
  826.     700 => "Parasitic Scavenger",
  827.     701 => "Grendlaen",
  828.     702 => "Ship in a Bottle",
  829.     703 => "Alaran Sentry Stone",
  830.     704 => "Dervish",
  831.     705 => "Regeneration Pool",
  832.     706 => "Teleportation Stand",
  833.     707 => "Relic Case",
  834.     708 => "Alaran Ghost",
  835.     709 => "Skystrider",
  836.     710 => "Water Spout",
  837.     711 => "Aviak Pull Along",
  838.     712 => "Gelatinous Cube",
  839.     713 => "Cat",
  840.     714 => "Elk Head",
  841.     715 => "Holgresh",
  842.     716 => "Beetle",
  843.     717 => "Vine Maw",
  844.     718 => "Ratman",
  845.     719 => "Fallen Knight",
  846.     720 => "Flying Carpet",
  847.     721 => "Carrier Hand",
  848.     722 => "Akheva",
  849.     723 => "Servant of Shadow",
  850.     724 => "Luclin");
  851.     my $race = $_[0];
  852.     return "$races{$race}";
  853. }
  854.  
  855. sub Deity
  856. {
  857.     my %deities = (140 => "Agnostic",
  858.     201 =>  "Bertoxxulous",
  859.     202 =>  "Brell Serilis",
  860.     203 =>  "Cazic Thule",
  861.     204 =>  "Erollsi Marr",
  862.     205 =>  "Bristlebane",
  863.     206 =>  "Innoruuk",
  864.     207 =>  "Karana",
  865.     208 =>  "Mithaniel Marr",
  866.     209 =>  "Prexus",
  867.     210 =>  "Quellious",
  868.     211 =>  "Rallos Zek",
  869.     212 =>  "Rodcet Nife",
  870.     213 =>  "Solusek Ro",
  871.     214 =>  "The Tribunal",
  872.     215 =>  "Tunare",
  873.     216 =>  "Veeshan");
  874.     my $deity = $_[0];
  875.     return "$deities{$deity}";
  876. }
  877.    
  878. sub Gender
  879. {
  880.     my %genders = (0 => "Male",
  881.     1 => "Female",
  882.     2 => "Neuter");
  883.     my $gender = $_[0];
  884.     return "$genders{$gender}";
  885. }
  886.  
  887. sub Zone
  888. {
  889.     my %zones = (1  =>      "South Qeynos",
  890.     2       =>      "North Qeynos",
  891.     3       =>      "The Surefall Glade",
  892.     4       =>      "The Qeynos Hills",
  893.     5       =>      "Highpass Hold",
  894.     6       =>      "High Keep",
  895.     8       =>      "North Freeport",
  896.     9       =>      "West Freeport",
  897.     10      =>      "East Freeport",
  898.     11      =>      "The Liberated Citadel of Runnyeye",
  899.     12      =>      "The Western Plains of Karana",
  900.     13      =>      "The Northern Plains of Karana",
  901.     14      =>      "The Southern Plains of Karana",
  902.     15      =>      "Eastern Plains of Karana",
  903.     16      =>      "Gorge of King Xorbb",
  904.     17      =>      "Blackburrow",
  905.     18      =>      "The Lair of the Splitpaw",
  906.     19      =>      "Rivervale",
  907.     20      =>      "Kithicor Forest",
  908.     21      =>      "West Commonlands",
  909.     22      =>      "East Commonlands",
  910.     23      =>      "The Erudin Palace",
  911.     24      =>      "Erudin",
  912.     25      =>      "The Nektulos Forest",
  913.     25      =>      "The Nektulos Forest",
  914.     26      =>      "Sunset Home",
  915.     27      =>      "The Lavastorm Mountains",
  916.     28      =>      "Nektropos",
  917.     29      =>      "Halas",
  918.     30      =>      "Everfrost Peaks",
  919.     31      =>      "Solusek's Eye",
  920.     32      =>      "Nagafen's Lair",
  921.     33      =>      "Misty Thicket",
  922.     34      =>      "Northern Desert of Ro",
  923.     35      =>      "Southern Desert of Ro",
  924.     36      =>      "Befallen",
  925.     37      =>      "Oasis of Marr",
  926.     38      =>      "Toxxulia Forest",
  927.     39      =>      "The Hole",
  928.     40      =>      "Neriak - Foreign Quarter",
  929.     41      =>      "Neriak - Commons",
  930.     42      =>      "Neriak - 3rd Gate",
  931.     43      =>      "Neriak Palace",
  932.     44      =>      "Najena",
  933.     45      =>      "The Qeynos Aqueduct System",
  934.     46      =>      "Innothule Swamp",
  935.     47      =>      "The Feerrott",
  936.     48      =>      "Accursed Temple of CazicThule",
  937.     49      =>      "Oggok",
  938.     50      =>      "The Rathe Mountains",
  939.     51      =>      "Lake Rathetear",
  940.     52      =>      "Grobb",
  941.     53      =>      "Aviak Village",
  942.     54      =>      "The Greater Faydark",
  943.     55      =>      "Ak'Anon",
  944.     56      =>      "Steamfont Mountains",
  945.     57      =>      "The Lesser Faydark",
  946.     58      =>      "Crushbone",
  947.     59      =>      "The Castle of Mistmoore",
  948.     60      =>      "South Kaladim",
  949.     61      =>      "Northern Felwithe",
  950.     62      =>      "Southern Felwithe",
  951.     63      =>      "The Estate of Unrest",
  952.     64      =>      "Kedge Keep",
  953.     65      =>      "The City of Guk",
  954.     66      =>      "The Ruins of Old Guk",
  955.     67      =>      "North Kaladim",
  956.     68      =>      "Butcherblock Mountains",
  957.     69      =>      "Ocean of Tears",
  958.     70      =>      "Dagnor's Cauldron",
  959.     71      =>      "The Plane of Sky",
  960.     72      =>      "The Plane of Fear",
  961.     73      =>      "The Permafrost Caverns",
  962.     74      =>      "Kerra Isle",
  963.     75      =>      "Paineel",
  964.     76      =>      "Plane of Hate",
  965.     77      =>      "The Arena",
  966.     78      =>      "The Field of Bone",
  967.     79      =>      "The Warsliks Woods",
  968.     80      =>      "The Temple of Solusek Ro",
  969.     81      =>      "The Temple of Droga",
  970.     82      =>      "Cabilis West",
  971.     83      =>      "The Swamp of No Hope",
  972.     84      =>      "Firiona Vie",
  973.     85      =>      "Lake of Ill Omen",
  974.     86      =>      "The Dreadlands",
  975.     87      =>      "The Burning Wood",
  976.     88      =>      "Kaesora",
  977.     89      =>      "The Ruins of Sebilis",
  978.     90      =>      "The City of Mist",
  979.     91      =>      "The Skyfire Mountains",
  980.     92      =>      "Frontier Mountains",
  981.     93      =>      "The Overthere",
  982.     94      =>      "The Emerald Jungle",
  983.     95      =>      "Trakanon's Teeth",
  984.     96      =>      "Timorous Deep",
  985.     97      =>      "Kurn's Tower",
  986.     98      =>      "Erud's Crossing",
  987.     100     =>      "The Stonebrunt Mountains",
  988.     101     =>      "The Warrens",
  989.     102     =>      "Karnor's Castle",
  990.     103     =>      "Chardok",
  991.     104     =>      "The Crypt of Dalnir",
  992.     105     =>      "The Howling Stones",
  993.     106     =>      "Cabilis East",
  994.     107     =>      "The Mines of Nurga",
  995.     108     =>      "Veeshan's Peak",
  996.     109     =>      "Veksar",
  997.     110     =>      "The Iceclad Ocean",
  998.     111     =>      "The Tower of Frozen Shadow",
  999.     112     =>      "Velketor's Labyrinth",
  1000.     113     =>      "Kael Drakkel",
  1001.     114     =>      "Skyshrine",
  1002.     115     =>      "The City of Thurgadin",
  1003.     116     =>      "Eastern Wastes",
  1004.     117     =>      "Cobaltscar",
  1005.     118     =>      "The Great Divide",
  1006.     119     =>      "The Wakening Land",
  1007.     120     =>      "The Western Wastes",
  1008.     121     =>      "The Crystal Caverns",
  1009.     123     =>      "Dragon Necropolis",
  1010.     124     =>      "The Temple of Veeshan",
  1011.     125     =>      "Siren's Grotto",
  1012.     126     =>      "The Plane of Mischief",
  1013.     127     =>      "The Plane of Growth",
  1014.     128     =>      "The Sleeper's Tomb",
  1015.     129     =>      "Icewell Keep",
  1016.     130     =>      "Marauders Mire",
  1017.     150     =>      "Shadow Haven",
  1018.     151     =>      "The Bazaar",
  1019.     151     =>      "The Bazaar",
  1020.     152     =>      "Nexus",
  1021.     153     =>      "The Echo Caverns",
  1022.     154     =>      "The Acrylia Caverns",
  1023.     155     =>      "The City of Shar Vahl",
  1024.     156     =>      "The Paludal Caverns",
  1025.     157     =>      "The Fungus Grove",
  1026.     158     =>      "Vex Thal",
  1027.     159     =>      "Sanctus Seru",
  1028.     160     =>      "Katta Castellum",
  1029.     161     =>      "Netherbian Lair",
  1030.     162     =>      "Ssraeshza Temple",
  1031.     163     =>      "Grieg's End",
  1032.     164     =>      "The Deep",
  1033.     165     =>      "Shadeweaver's Thicket",
  1034.     166     =>      "Hollowshade Moor",
  1035.     167     =>      "Grimling Forest",
  1036.     168     =>      "Marus Seru",
  1037.     169     =>      "Mons Letalis",
  1038.     170     =>      "The Twilight Sea",
  1039.     171     =>      "The Grey",
  1040.     172     =>      "The Tenebrous Mountains",
  1041.     173     =>      "The Maiden's Eye",
  1042.     174     =>      "The Dawnshroud Peaks",
  1043.     175     =>      "The Scarlet Desert",
  1044.     176     =>      "The Umbral Plains",
  1045.     179     =>      "The Akheva Ruins",
  1046.     180     =>      "The Arena Two",
  1047.     181     =>      "The Jaggedpine Forest",
  1048.     182     =>      "Nedaria's Landing",
  1049.     183     =>      "EverQuest Tutorial",
  1050.     184     =>      "Loading Zone",
  1051.     185     =>      "New Loading Zone",
  1052.     186     =>      "The Plane of Hate",
  1053.     187     =>      "Shadowrest",
  1054.     188     =>      "The Mines of Gloomingdeep",
  1055.     189     =>      "The Mines of Gloomingdeep",
  1056.     190     =>      "Loading",
  1057.     200     =>      "The Crypt of Decay",
  1058.     201     =>      "The Plane of Justice",
  1059.     202     =>      "The Plane of Knowledge",
  1060.     203     =>      "The Plane of Tranquility",
  1061.     204     =>      "The Plane of Nightmares",
  1062.     205     =>      "The Plane of Disease",
  1063.     206     =>      "The Plane of Innovation",
  1064.     207     =>      "Torment, the Plane of Pain",
  1065.     208     =>      "The Plane of Valor",
  1066.     209     =>      "Bastion of Thunder",
  1067.     210     =>      "The Plane of Storms",
  1068.     211     =>      "The Halls of Honor",
  1069.     212     =>      "The Tower of Solusek Ro",
  1070.     213     =>      "Plane of War",
  1071.     214     =>      "Drunder, the Fortress of Zek",
  1072.     215     =>      "The Plane of Air",
  1073.     216     =>      "The Plane of Water",
  1074.     217     =>      "The Plane of Fire",
  1075.     218     =>      "The Plane of Earth",
  1076.     219     =>      "The Plane of Time",
  1077.     220     =>      "The Temple of Marr",
  1078.     221     =>      "The Lair of Terris Thule",
  1079.     222     =>      "The Plane of Earth",
  1080.     223     =>      "The Plane of Time",
  1081.     224     =>      "The Gulf of Gunthak",
  1082.     225     =>      "Dulak's Harbor",
  1083.     226     =>      "The Torgiran Mines",
  1084.     227     =>      "The Crypt of Nadox",
  1085.     228     =>      "Hate's Fury",
  1086.     229     =>      "Deepest Guk: Cauldron of Lost Souls",
  1087.     230     =>      "The Rujarkian Hills: Bloodied Quarries",
  1088.     231     =>      "Takish-Hiz: Sunken Library",
  1089.     232     =>      "Miragul's Menagerie: Silent Gallery",
  1090.     233     =>      "Mistmoore's Catacombs: Forlorn Caverns",
  1091.     234     =>      "The Drowning Crypt",
  1092.     235     =>      "The Rujarkian Hills: Halls of War",
  1093.     236     =>      "Takish-Hiz: Shifting Tower",
  1094.     237     =>      "Miragul's Menagerie: Frozen Nightmare",
  1095.     238     =>      "Mistmoore's Catacombs: Dreary Grotto",
  1096.     239     =>      "Deepest Guk: Ancient Aqueducts",
  1097.     240     =>      "The Rujarkian Hills: Wind Bridges",
  1098.     241     =>      "Takish-Hiz: Fading Temple",
  1099.     242     =>      "The Spider Den",
  1100.     243     =>      "Mistmoore's Catacombs: Struggles within the Progeny",
  1101.     244     =>      "The Mushroom Grove",
  1102.     245     =>      "The Rujarkian Hills: Prison Break",
  1103.     246     =>      "Takish-Hiz: Royal Observatory",
  1104.     247     =>      "Miragul's Menagerie: Hushed Banquet",
  1105.     248     =>      "Mistmoore's Catacombs: Chambers of Eternal Affliction",
  1106.     249     =>      "Deepest Guk: The Curse Reborn",
  1107.     250     =>      "The Rujarkian Hills: Drudge Hollows",
  1108.     251     =>      "Takish-Hiz: River of Recollection",
  1109.     252     =>      "The Frosted Halls",
  1110.     253     =>      "Mistmoore's Catacombs: Sepulcher of the Damned",
  1111.     254     =>      "Deepest Guk: Chapel of the Witnesses",
  1112.     255     =>      "The Rujarkian Hills: Fortified Lair of the Taskmasters",
  1113.     256     =>      "Takish-Hiz: Sandfall Corridors",
  1114.     257     =>      "The Forgotten Wastes",
  1115.     258     =>      "Mistmoore's Catacombs: Scion Lair of Fury",
  1116.     259     =>      "The Root Garden",
  1117.     260     =>      "The Rujarkian Hills: Hidden Vale of Deceit",
  1118.     261     =>      "Takish-Hiz: Balancing Chamber",
  1119.     262     =>      "Miragul's Menagerie: Heart of the Menagerie",
  1120.     263     =>      "Mistmoore's Catacombs: Cesspits of Putrescence",
  1121.     264     =>      "Deepest Guk: Accursed Sanctuary",
  1122.     265     =>      "The Rujarkian Hills: Blazing Forge ",
  1123.     266     =>      "Takish-Hiz: Sweeping Tides",
  1124.     267     =>      "The Morbid Laboratory",
  1125.     268     =>      "Mistmoore's Catacombs: Aisles of Blood",
  1126.     269     =>      "The Rujarkian Hills: Arena of Chance",
  1127.     270     =>      "Takish-Hiz: Antiquated Palace",
  1128.     271     =>      "The Theater of Imprisoned Horror",
  1129.     272     =>      "Mistmoore's Catacombs: Halls of Sanguinary Rites",
  1130.     273     =>      "The Rujarkian Hills: Barracks of War",
  1131.     274     =>      "Takish-Hiz: Prismatic Corridors",
  1132.     275     =>      "Miragul's Menagerie: Grand Library",
  1133.     276     =>      "Mistmoore's Catacombs: Infernal Sanctuary",
  1134.     277     =>      "Chardok: The Halls of Betrayal",
  1135.     278     =>      "The Caverns of Exile",
  1136.     279     =>      "The Abysmal Sea",
  1137.     280     =>      "Natimbi, the Broken Shores",
  1138.     281     =>      "Qinimi, Court of Nihilia",
  1139.     282     =>      "Riwwi, Coliseum of Games",
  1140.     283     =>      "Barindu, Hanging Gardens",
  1141.     284     =>      "Ferubi, Forgotten Temple of Taelosia",
  1142.     285     =>      "Sewers of Nihilia, Pool of Sludg",
  1143.     286     =>      "Sewers of Nihilia, Lair of Trapp",
  1144.     287     =>      "Sewers of Nihilia, Purifying Pla",
  1145.     288     =>      "Sewers of Nihilia, Emanating Cre",
  1146.     289     =>      "Tipt, Treacherous Crags",
  1147.     290     =>      "Vxed, the Crumbling Caverns",
  1148.     291     =>      "Yxtta, Pulpit of Exiles ",
  1149.     292     =>      "Uqua, the Ocean God Chantry",
  1150.     293     =>      "Kod'Taz, Broken Trial Grounds",
  1151.     294     =>      "Ikkinz, Chambers of Transcendence",
  1152.     295     =>      "Qvic, Prayer Grounds of Calling",
  1153.     296     =>      "Inktu'Ta, the Unmasked Chapel",
  1154.     297     =>      "Txevu, Lair of the Elite",
  1155.     298     =>      "Tacvi, The Broken Temple",
  1156.     299     =>      "Qvic, the Hidden Vault",
  1157.     300     =>      "Wall of Slaughter",
  1158.     301     =>      "The Bloodfields",
  1159.     302     =>      "Dranik's Scar",
  1160.     303     =>      "Nobles' Causeway",
  1161.     304     =>      "Muramite Proving Grounds",
  1162.     305     =>      "Muramite Proving Grounds",
  1163.     306     =>      "Muramite Proving Grounds",
  1164.     307     =>      "Muramite Proving Grounds",
  1165.     308     =>      "Muramite Proving Grounds",
  1166.     309     =>      "Muramite Proving Grounds",
  1167.     316     =>      "Muramite Provinggrounds",
  1168.     317     =>      "Anguish, the Fallen Palace",
  1169.     318     =>      "Dranik's Hollows",
  1170.     319     =>      "Dranik's Hollows",
  1171.     320     =>      "Dranik's Hollows",
  1172.     328     =>      "Catacombs of Dranik",
  1173.     329     =>      "Catacombs of Dranik",
  1174.     330     =>      "Catacombs of Dranik",
  1175.     331     =>      "Sewers of Dranik",
  1176.     332     =>      "Sewers of Dranik",
  1177.     333     =>      "Sewers of Dranik",
  1178.     334     =>      "Riftseekers' Sanctum",
  1179.     335     =>      "Harbinger's Spire",
  1180.     336     =>      "The Ruined City of Dranik",
  1181.     337     =>      "The Broodlands",
  1182.     338     =>      "Stillmoon Temple",
  1183.     339     =>      "The Ascent",
  1184.     340     =>      "Thundercrest Isles",
  1185.     341     =>      "Lavaspinner's Lair",
  1186.     342     =>      "Tirranun's Delve",
  1187.     343     =>      "The Nest",
  1188.     344     =>      "Guild Lobby",
  1189.     345     =>      "Guild Hall",
  1190.     346     =>      "The Barter Hall",
  1191.     347     =>      "Ruins of Illsalin",
  1192.     348     =>      "Illsalin Marketplace",
  1193.     349     =>      "Temple of Korlach",
  1194.     350     =>      "The Nargil Pits",
  1195.     351     =>      "Dreadspire Keep",
  1196.     354     =>      "The Hive",
  1197.     355     =>      "The Hatchery",
  1198.     356     =>      "The Cocoons",
  1199.     357     =>      "Queen Sendaii`s Lair",
  1200.     358     =>      "Stoneroot Falls",
  1201.     359     =>      "Prince's Manor",
  1202.     360     =>      "Caverns of the Lost",
  1203.     361     =>      "Lair of the Korlach",
  1204.     362     =>      "The Undershore",
  1205.     363     =>      "Snarlstone Dens",
  1206.     364     =>      "Shadow Spine",
  1207.     365     =>      "Corathus Creep",
  1208.     366     =>      "Sporali Caverns",
  1209.     367     =>      "The Corathus Mines",
  1210.     368     =>      "Shadowed Grove",
  1211.     369     =>      "Arcstone, Isle of Spirits",
  1212.     370     =>      "Relic, the Artifact City",
  1213.     371     =>      "Skylance",
  1214.     372     =>      "The Devastation",
  1215.     373     =>      "The Seething Wall",
  1216.     374     =>      "Sverag, Stronghold of Rage",
  1217.     375     =>      "Razorthorn, Tower of Sullon Zek",
  1218.     376     =>      "Ruins of Takish-Hiz",
  1219.     377     =>      "The Root of Ro",
  1220.     378     =>      "The Elddar Forest",
  1221.     379     =>      "Tunare's Shrine",
  1222.     380     =>      "Theater of Blood",
  1223.     381     =>      "Deathknell, Tower of Dissonance",
  1224.     382     =>      "East Freeport",
  1225.     383     =>      "West Freeport",
  1226.     384     =>      "Freeport Sewers",
  1227.     385     =>      "Academy of Arcane Sciences",
  1228.     386     =>      "Temple of Marr",
  1229.     387     =>      "Freeport Militia House: My Precious",
  1230.     388     =>      "Arena",
  1231.     389     =>      "City Hall",
  1232.     390     =>      "Theater of the Tranquil",
  1233.     391     =>      "Hall of Truth: Bounty",
  1234.     392     =>      "North Desert of Ro",
  1235.     393     =>      "South Desert of Ro",
  1236.     394     =>      "Crescent Reach",
  1237.     395     =>      "Blightfire Moors",
  1238.     396     =>      "Stone Hive",
  1239.     397     =>      "Goru`kar Mesa",
  1240.     398     =>      "Blackfeather Roost",
  1241.     399     =>      "The Steppes",
  1242.     400     =>      "Icefall Glacier",
  1243.     401     =>      "Valdeholm",
  1244.     402     =>      "Frostcrypt, Throne of the Shade King",
  1245.     403     =>      "Sunderock Springs",
  1246.     404     =>      "Vergalid Mines",
  1247.     405     =>      "Direwind Cliffs",
  1248.     406     =>      "Ashengate, Reliquary of the Scale",
  1249.     407     =>      "Highpass Hold",
  1250.     408     =>      "The Commonlands",
  1251.     409     =>      "The Ocean of Tears",
  1252.     410     =>      "Kithicor Forest",
  1253.     411     =>      "Befallen",
  1254.     412     =>      "HighKeep",
  1255.     413     =>      "The Innothule Swamp",
  1256.     414     =>      "Toxxulia Forest",
  1257.     415     =>      "The Misty Thicket",
  1258.     416     =>      "Katta Castrum",
  1259.     417     =>      "Thalassius, the Coral Keep",
  1260.     418     =>      "Jewel of Atiiki",
  1261.     419     =>      "Zhisza, the Shissar Sanctuary",
  1262.     420     =>      "Silyssar, New Chelsith",
  1263.     421     =>      "Solteris, the Throne of Ro",
  1264.     422     =>      "Barren Coast",
  1265.     423     =>      "The Buried Sea",
  1266.     424     =>      "Jardel's Hook",
  1267.     425     =>      "Monkey Rock",
  1268.     426     =>      "Suncrest Isle",
  1269.     427     =>      "Deadbone Reef",
  1270.     428     =>      "Blacksail Folly",
  1271.     429     =>      "Maiden's Grave",
  1272.     430     =>      "Redfeather Isle",
  1273.     431     =>      "The Open Sea",
  1274.     432     =>      "The Open Sea",
  1275.     433     =>      "The Open Sea",
  1276.     434     =>      "The Open Sea",
  1277.     435     =>      "The Open Sea",
  1278.     436     =>      "Fortress Mechanotus",
  1279.     437     =>      "Meldrath's Majestic Mansion",
  1280.     438     =>      "The Steam Factory",
  1281.     439     =>      "S.H.I.P. Workshop",
  1282.     440     =>      "Gyrospire Beza",
  1283.     441     =>      "Gyrospire Zeka",
  1284.     442     =>      "Dragonscale Hills",
  1285.     443     =>      "Loping Plains",
  1286.     444     =>      "Hills of Shade",
  1287.     445     =>      "Bloodmoon Keep",
  1288.     446     =>      "Crystallos, Lair of the Awakened",
  1289.     447     =>      "The Mechamatic Guardian",
  1290.     448     =>      "The Steamfont Mountains",
  1291.     449     =>      "Crypt of Shade",
  1292.     451     =>      "Deepscar's Den",
  1293.     452     =>      "Field of Scale",
  1294.     453     =>      "Kaesora Library",
  1295.     454     =>      "Kaesora Hatchery",
  1296.     455     =>      "Kurn's Tower",
  1297.     456     =>      "Bloody Kithicor",
  1298.     457     =>      "Old Commonlands",
  1299.     458     =>      "Highpass Hold",
  1300.     459     =>      "The Void",
  1301.     460     =>      "The Void",
  1302.     461     =>      "The Void",
  1303.     462     =>      "The Void",
  1304.     463     =>      "The Void",
  1305.     464     =>      "The Void",
  1306.     465     =>      "The Void",
  1307.     466     =>      "Oceangreen Hills",
  1308.     467     =>      "Oceangreen Village",
  1309.     468     =>      "BlackBurrow",
  1310.     469     =>      "Temple of Bertoxxulous",
  1311.     470     =>      "Korafax, Home of the Riders",
  1312.     471     =>      "Citadel of the Worldslayer",
  1313.     472     =>      "Old Bloodfields",
  1314.     473     =>      "The Precipice of War",
  1315.     474     =>      "City of Dranik",
  1316.     475     =>      "Toskirakk",
  1317.     476     =>      "Korascian Warrens",
  1318.     477     =>      "Rathe Council Chamber",
  1319.     480     =>      "Brell's Rest",
  1320.     481     =>      "Fungal Forest",
  1321.     482     =>      "The Underquarry",
  1322.     483     =>      "The Cooling Chamber",
  1323.     484     =>      "Kernagir, the Shining City",
  1324.     485     =>      "Arthicrex",
  1325.     486     =>      "The Foundation",
  1326.     487     =>      "Lichen Creep",
  1327.     488     =>      "Pellucid Grotto",
  1328.     489     =>      "Volska's Husk",
  1329.     490     =>      "Brell's Temple",
  1330.     491     =>      "The Convorteum",
  1331.     492     =>      "Brell's Arena",
  1332.     493     =>      "Wedding Chapel",
  1333.     494     =>      "Wedding Chapel",
  1334.     495     =>      "Lair of the Risen",
  1335.     700     =>      "The Feerrott",
  1336.     701     =>      "House of Thule",
  1337.     702     =>      "House of Thule, Upper Floors",
  1338.     703     =>      "The Grounds",
  1339.     704     =>      "The Library",
  1340.     705     =>      "The Well",
  1341.     706     =>      "Erudin Burning",
  1342.     707     =>      "Morell's Castle",
  1343.     708     =>      "Sanctum Somnium",
  1344.     709     =>      "Al'Kabor's Nightmare",
  1345.     710     =>      "Miragul's Nightmare",
  1346.     711     =>      "Fear Itself",
  1347.     712     =>      "Sunrise Hills",
  1348.     724     =>      "Argath, Bastion of Illdaera",
  1349.     725     =>      "Valley of Lunanyn",
  1350.     726     =>      "Sarith, City of Tides",
  1351.     727     =>      "Rubak Oseka, Temple of the Sea",
  1352.     728     =>      "Beasts' Domain",
  1353.     729     =>      "The Resplendent Temple",
  1354.     730     =>      "Pillars of Alra",
  1355.     731     =>      "Windsong Sanctuary",
  1356.     732     =>      "Erillion, City of Bronze",
  1357.     733     =>      "Sepulcher of Order",
  1358.     734     =>      "Sepulcher East",
  1359.     735     =>      "Sepulcher West",
  1360.     752     =>      "Shard's Landing",
  1361.     753     =>      "Valley of King Xorbb",
  1362.     754     =>      "Kael Drakkel: The King's Madness",
  1363.     755     =>      "East Wastes: Zeixshi-Kar's Awakening",
  1364.     756     =>      "The Crystal Caverns: Fragment of Fear",
  1365.     757     =>      "The Breeding Grounds",
  1366.     758     =>      "Evantil, the Vile Oak",
  1367.     759     =>      "Grelleth's Palace, the Chateau of Filth",
  1368.     760     =>      "Chapterhouse of the Fallen",
  1369.     996     =>      "Art Testing Domain",
  1370.     998     =>      "The Forgotten Halls",
  1371.     999     =>      "Designer Apprentice");
  1372.     my $zone = $_[0];
  1373.     return "$zones{$zone}";
  1374. }
  1375.  
  1376. sub ZoneShortName
  1377. {
  1378.     my %zonesn = (1 =>  "qeynos",
  1379.     2   =>  "qeynos2",
  1380.     3   =>  "qrg",
  1381.     4   =>  "qeytoqrg",
  1382.     5   =>  "highpass",
  1383.     6   =>  "highkeep",
  1384.     8   =>  "freportn",
  1385.     9   =>  "freportw",
  1386.     10  =>  "freporte",
  1387.     11  =>  "runnyeye",
  1388.     12  =>  "qey2hh1",
  1389.     13  =>  "northkarana",
  1390.     14  =>  "southkarana",
  1391.     15  =>  "eastkarana",
  1392.     16  =>  "beholder",
  1393.     17  =>  "blackburrow",
  1394.     18  =>  "paw",
  1395.     19  =>  "rivervale",
  1396.     20  =>  "kithicor",
  1397.     21  =>  "commons",
  1398.     22  =>  "ecommons",
  1399.     23  =>  "erudnint",
  1400.     24  =>  "erudnext",
  1401.     25  =>  "nektulos",
  1402.     25  =>  "nektulos",
  1403.     26  =>  "cshome",
  1404.     27  =>  "lavastorm",
  1405.     28  =>  "nektropos",
  1406.     29  =>  "halas",
  1407.     30  =>  "everfrost",
  1408.     31  =>  "soldunga",
  1409.     32  =>  "soldungb",
  1410.     33  =>  "misty",
  1411.     34  =>  "nro",
  1412.     35  =>  "sro",
  1413.     36  =>  "befallen",
  1414.     37  =>  "oasis",
  1415.     38  =>  "tox",
  1416.     39  =>  "hole",
  1417.     40  =>  "neriaka",
  1418.     41  =>  "neriakb",
  1419.     42  =>  "neriakc",
  1420.     43  =>  "neriakd",
  1421.     44  =>  "najena",
  1422.     45  =>  "qcat",
  1423.     46  =>  "innothule",
  1424.     47  =>  "feerrott",
  1425.     48  =>  "cazicthule",
  1426.     49  =>  "oggok",
  1427.     50  =>  "rathemtn",
  1428.     51  =>  "lakerathe",
  1429.     52  =>  "grobb",
  1430.     53  =>  "aviak",
  1431.     54  =>  "gfaydark",
  1432.     55  =>  "akanon",
  1433.     56  =>  "steamfont",
  1434.     57  =>  "lfaydark",
  1435.     58  =>  "crushbone",
  1436.     59  =>  "mistmoore",
  1437.     60  =>  "kaladima",
  1438.     61  =>  "felwithea",
  1439.     62  =>  "felwitheb",
  1440.     63  =>  "unrest",
  1441.     64  =>  "kedge",
  1442.     65  =>  "guktop",
  1443.     66  =>  "gukbottom",
  1444.     67  =>  "kaladimb",
  1445.     68  =>  "butcher",
  1446.     69  =>  "oot",
  1447.     70  =>  "cauldron",
  1448.     71  =>  "airplane",
  1449.     72  =>  "fearplane",
  1450.     73  =>  "permafrost",
  1451.     74  =>  "kerraridge",
  1452.     75  =>  "paineel",
  1453.     76  =>  "hateplane",
  1454.     77  =>  "arena",
  1455.     78  =>  "fieldofbone",
  1456.     79  =>  "warslikswood",
  1457.     80  =>  "soltemple",
  1458.     81  =>  "droga",
  1459.     82  =>  "cabwest",
  1460.     83  =>  "swampofnohope",
  1461.     84  =>  "firiona",
  1462.     85  =>  "lakeofillomen",
  1463.     86  =>  "dreadlands",
  1464.     87  =>  "burningwood",
  1465.     88  =>  "kaesora",
  1466.     89  =>  "sebilis",
  1467.     90  =>  "citymist",
  1468.     91  =>  "skyfire",
  1469.     92  =>  "frontiermtns",
  1470.     93  =>  "overthere",
  1471.     94  =>  "emeraldjungle",
  1472.     95  =>  "trakanon",
  1473.     96  =>  "timorous",
  1474.     97  =>  "kurn",
  1475.     98  =>  "erudsxing",
  1476.     100 =>  "stonebrunt",
  1477.     101 =>  "warrens",
  1478.     102 =>  "karnor",
  1479.     103 =>  "chardok",
  1480.     104 =>  "dalnir",
  1481.     105 =>  "charasis",
  1482.     106 =>  "cabeast",
  1483.     107 =>  "nurga",
  1484.     108 =>  "veeshan",
  1485.     109 =>  "veksar",
  1486.     110 =>  "iceclad",
  1487.     111 =>  "frozenshadow",
  1488.     112 =>  "velketor",
  1489.     113 =>  "kael",
  1490.     114 =>  "skyshrine",
  1491.     115 =>  "thurgadina",
  1492.     116 =>  "eastwastes",
  1493.     117 =>  "cobaltscar",
  1494.     118 =>  "greatdivide",
  1495.     119 =>  "wakening",
  1496.     120 =>  "westwastes",
  1497.     121 =>  "crystal",
  1498.     123 =>  "necropolis",
  1499.     124 =>  "templeveeshan",
  1500.     125 =>  "sirens",
  1501.     126 =>  "mischiefplane",
  1502.     127 =>  "growthplane",
  1503.     128 =>  "sleeper",
  1504.     129 =>  "thurgadinb",
  1505.     130 =>  "erudsxing2",
  1506.     150 =>  "shadowhaven",
  1507.     151 =>  "bazaar",
  1508.     151 =>  "bazaar",
  1509.     152 =>  "nexus",
  1510.     153 =>  "echo",
  1511.     154 =>  "acrylia",
  1512.     155 =>  "sharvahl",
  1513.     156 =>  "paludal",
  1514.     157 =>  "fungusgrove",
  1515.     158 =>  "vexthal",
  1516.     159 =>  "sseru",
  1517.     160 =>  "katta",
  1518.     161 =>  "netherbian",
  1519.     162 =>  "ssratemple",
  1520.     163 =>  "griegsend",
  1521.     164 =>  "thedeep",
  1522.     165 =>  "shadeweaver",
  1523.     166 =>  "hollowshade",
  1524.     167 =>  "grimling",
  1525.     168 =>  "mseru",
  1526.     169 =>  "letalis",
  1527.     170 =>  "twilight",
  1528.     171 =>  "thegrey",
  1529.     172 =>  "tenebrous",
  1530.     173 =>  "maiden",
  1531.     174 =>  "dawnshroud",
  1532.     175 =>  "scarlet",
  1533.     176 =>  "umbral",
  1534.     179 =>  "akheva",
  1535.     180 =>  "arena2",
  1536.     181 =>  "jaggedpine",
  1537.     182 =>  "nedaria",
  1538.     183 =>  "tutorial",
  1539.     184 =>  "load",
  1540.     185 =>  "load2",
  1541.     186 =>  "hateplaneb",
  1542.     187 =>  "shadowrest",
  1543.     188 =>  "tutoriala",
  1544.     189 =>  "tutorialb",
  1545.     190 =>  "clz",
  1546.     200 =>  "codecay",
  1547.     201 =>  "pojustice",
  1548.     202 =>  "poknowledge",
  1549.     203 =>  "potranquility",
  1550.     204 =>  "ponightmare",
  1551.     205 =>  "podisease",
  1552.     206 =>  "poinnovation",
  1553.     207 =>  "potorment",
  1554.     208 =>  "povalor",
  1555.     209 =>  "bothunder",
  1556.     210 =>  "postorms",
  1557.     211 =>  "hohonora",
  1558.     212 =>  "solrotower",
  1559.     213 =>  "powar",
  1560.     214 =>  "potactics",
  1561.     215 =>  "poair",
  1562.     216 =>  "powater",
  1563.     217 =>  "pofire",
  1564.     218 =>  "poeartha",
  1565.     219 =>  "potimea",
  1566.     220 =>  "hohonorb",
  1567.     221 =>  "nightmareb",
  1568.     222 =>  "poearthb",
  1569.     223 =>  "potimeb",
  1570.     224 =>  "gunthak",
  1571.     225 =>  "dulak",
  1572.     226 =>  "torgiran",
  1573.     227 =>  "nadox",
  1574.     228 =>  "hatesfury",
  1575.     229 =>  "guka",
  1576.     230 =>  "ruja",
  1577.     231 =>  "taka",
  1578.     232 =>  "mira",
  1579.     233 =>  "mmca",
  1580.     234 =>  "gukb",
  1581.     235 =>  "rujb",
  1582.     236 =>  "takb",
  1583.     237 =>  "mirb",
  1584.     238 =>  "mmcb",
  1585.     239 =>  "gukc",
  1586.     240 =>  "rujc",
  1587.     241 =>  "takc",
  1588.     242 =>  "mirc",
  1589.     243 =>  "mmcc",
  1590.     244 =>  "gukd",
  1591.     245 =>  "rujd",
  1592.     246 =>  "takd",
  1593.     247 =>  "mird",
  1594.     248 =>  "mmcd",
  1595.     249 =>  "guke",
  1596.     250 =>  "ruje",
  1597.     251 =>  "take",
  1598.     252 =>  "mire",
  1599.     253 =>  "mmce",
  1600.     254 =>  "gukf",
  1601.     255 =>  "rujf",
  1602.     256 =>  "takf",
  1603.     257 =>  "mirf",
  1604.     258 =>  "mmcf",
  1605.     259 =>  "gukg",
  1606.     260 =>  "rujg",
  1607.     261 =>  "takg",
  1608.     262 =>  "mirg",
  1609.     263 =>  "mmcg",
  1610.     264 =>  "gukh",
  1611.     265 =>  "rujh",
  1612.     266 =>  "takh",
  1613.     267 =>  "mirh",
  1614.     268 =>  "mmch",
  1615.     269 =>  "ruji",
  1616.     270 =>  "taki",
  1617.     271 =>  "miri",
  1618.     272 =>  "mmci",
  1619.     273 =>  "rujj",
  1620.     274 =>  "takj",
  1621.     275 =>  "mirj",
  1622.     276 =>  "mmcj",
  1623.     277 =>  "chardokb",
  1624.     278 =>  "soldungc",
  1625.     279 =>  "abysmal",
  1626.     280 =>  "natimbi",
  1627.     281 =>  "qinimi",
  1628.     282 =>  "riwwi",
  1629.     283 =>  "barindu",
  1630.     284 =>  "ferubi",
  1631.     285 =>  "snpool",
  1632.     286 =>  "snlair",
  1633.     287 =>  "snplant",
  1634.     288 =>  "sncrematory",
  1635.     289 =>  "tipt",
  1636.     290 =>  "vxed",
  1637.     291 =>  "yxtta",
  1638.     292 =>  "uqua",
  1639.     293 =>  "kodtaz",
  1640.     294 =>  "ikkinz",
  1641.     295 =>  "qvic",
  1642.     296 =>  "inktuta",
  1643.     297 =>  "txevu",
  1644.     298 =>  "tacvi",
  1645.     299 =>  "qvicb",
  1646.     300 =>  "wallofslaughter",
  1647.     301 =>  "bloodfields",
  1648.     302 =>  "draniksscar",
  1649.     303 =>  "causeway",
  1650.     304 =>  "chambersa",
  1651.     305 =>  "chambersb",
  1652.     306 =>  "chambersc",
  1653.     307 =>  "chambersd",
  1654.     308 =>  "chamberse",
  1655.     309 =>  "chambersf",
  1656.     316 =>  "provinggrounds",
  1657.     317 =>  "anguish",
  1658.     318 =>  "dranikhollowsa",
  1659.     319 =>  "dranikhollowsb",
  1660.     320 =>  "dranikhollowsc",
  1661.     328 =>  "dranikcatacombsa",
  1662.     329 =>  "dranikcatacombsb",
  1663.     330 =>  "dranikcatacombsc",
  1664.     331 =>  "draniksewersa",
  1665.     332 =>  "draniksewersb",
  1666.     333 =>  "draniksewersc",
  1667.     334 =>  "riftseekers",
  1668.     335 =>  "harbingers",
  1669.     336 =>  "dranik",
  1670.     337 =>  "broodlands",
  1671.     338 =>  "stillmoona",
  1672.     339 =>  "stillmoonb",
  1673.     340 =>  "thundercrest",
  1674.     341 =>  "delvea",
  1675.     342 =>  "delveb",
  1676.     343 =>  "thenest",
  1677.     344 =>  "guildlobby",
  1678.     345 =>  "guildhall",
  1679.     346 =>  "barter",
  1680.     347 =>  "illsalin",
  1681.     348 =>  "illsalina",
  1682.     349 =>  "illsalinb",
  1683.     350 =>  "illsalinc",
  1684.     351 =>  "dreadspire",
  1685.     354 =>  "drachnidhive",
  1686.     355 =>  "drachnidhivea",
  1687.     356 =>  "drachnidhiveb",
  1688.     357 =>  "drachnidhivec",
  1689.     358 =>  "westkorlach",
  1690.     359 =>  "westkorlacha",
  1691.     360 =>  "westkorlachb",
  1692.     361 =>  "westkorlachc",
  1693.     362 =>  "eastkorlach",
  1694.     363 =>  "eastkorlacha",
  1695.     364 =>  "shadowspine",
  1696.     365 =>  "corathus",
  1697.     366 =>  "corathusa",
  1698.     367 =>  "corathusb",
  1699.     368 =>  "nektulosa",
  1700.     369 =>  "arcstone",
  1701.     370 =>  "relic",
  1702.     371 =>  "skylance",
  1703.     372 =>  "devastation",
  1704.     373 =>  "devastationa",
  1705.     374 =>  "rage",
  1706.     375 =>  "ragea",
  1707.     376 =>  "takishruins",
  1708.     377 =>  "takishruinsa",
  1709.     378 =>  "elddar",
  1710.     379 =>  "elddara",
  1711.     380 =>  "theater",
  1712.     381 =>  "theatera",
  1713.     382 =>  "freeporteast",
  1714.     383 =>  "freeportwest",
  1715.     384 =>  "freeportsewers",
  1716.     385 =>  "freeportacademy",
  1717.     386 =>  "freeporttemple",
  1718.     387 =>  "freeportmilitia",
  1719.     388 =>  "freeportarena",
  1720.     389 =>  "freeportcityhall",
  1721.     390 =>  "freeporttheater",
  1722.     391 =>  "freeporthall",
  1723.     392 =>  "northro",
  1724.     393 =>  "southro",
  1725.     394 =>  "crescent",
  1726.     395 =>  "moors",
  1727.     396 =>  "stonehive",
  1728.     397 =>  "mesa",
  1729.     398 =>  "roost",
  1730.     399 =>  "steppes",
  1731.     400 =>  "icefall",
  1732.     401 =>  "valdeholm",
  1733.     402 =>  "frostcrypt",
  1734.     403 =>  "sunderock",
  1735.     404 =>  "vergalid",
  1736.     405 =>  "direwind",
  1737.     406 =>  "ashengate",
  1738.     407 =>  "highpasshold",
  1739.     408 =>  "commonlands",
  1740.     409 =>  "oceanoftears",
  1741.     410 =>  "kithforest",
  1742.     411 =>  "befallenb",
  1743.     412 =>  "highpasskeep",
  1744.     413 =>  "innothuleb",
  1745.     414 =>  "toxxulia",
  1746.     415 =>  "mistythicket",
  1747.     416 =>  "kattacastrum",
  1748.     417 =>  "thalassius",
  1749.     418 =>  "atiiki",
  1750.     419 =>  "zhisza",
  1751.     420 =>  "silyssar",
  1752.     421 =>  "solteris",
  1753.     422 =>  "barren",
  1754.     423 =>  "buriedsea",
  1755.     424 =>  "jardelshook",
  1756.     425 =>  "monkeyrock",
  1757.     426 =>  "suncrest",
  1758.     427 =>  "deadbone",
  1759.     428 =>  "blacksail",
  1760.     429 =>  "maidensgrave",
  1761.     430 =>  "redfeather",
  1762.     431 =>  "shipmvp",
  1763.     432 =>  "shipmvu",
  1764.     433 =>  "shippvu",
  1765.     434 =>  "shipuvu",
  1766.     435 =>  "shipmvm",
  1767.     436 =>  "mechanotus",
  1768.     437 =>  "mansion",
  1769.     438 =>  "steamfactory",
  1770.     439 =>  "shipworkshop",
  1771.     440 =>  "gyrospireb",
  1772.     441 =>  "gyrospirez",
  1773.     442 =>  "dragonscale",
  1774.     443 =>  "lopingplains",
  1775.     444 =>  "hillsofshade",
  1776.     445 =>  "bloodmoon",
  1777.     446 =>  "crystallos",
  1778.     447 =>  "guardian",
  1779.     448 =>  "steamfontmts",
  1780.     449 =>  "cryptofshade",
  1781.     451 =>  "dragonscaleb",
  1782.     452 =>  "oldfieldofbone",
  1783.     453 =>  "oldkaesoraa",
  1784.     454 =>  "oldkaesorab",
  1785.     455 =>  "oldkurn",
  1786.     456 =>  "oldkithicor",
  1787.     457 =>  "oldcommons",
  1788.     458 =>  "oldhighpass",
  1789.     459 =>  "thevoida",
  1790.     460 =>  "thevoidb",
  1791.     461 =>  "thevoidc",
  1792.     462 =>  "thevoidd",
  1793.     463 =>  "thevoide",
  1794.     464 =>  "thevoidf",
  1795.     465 =>  "thevoidg",
  1796.     466 =>  "oceangreenhills",
  1797.     467 =>  "oceangreenvillage",
  1798.     468 =>  "oldblackburrow",
  1799.     469 =>  "bertoxtemple",
  1800.     470 =>  "discord",
  1801.     471 =>  "discordtower",
  1802.     472 =>  "oldbloodfield",
  1803.     473 =>  "precipiceofwar",
  1804.     474 =>  "olddranik",
  1805.     475 =>  "toskirakk",
  1806.     476 =>  "korascian",
  1807.     477 =>  "rathechamber",
  1808.     480 =>  "brellsrest",
  1809.     481 =>  "fungalforest",
  1810.     482 =>  "underquarry",
  1811.     483 =>  "coolingchamber",
  1812.     484 =>  "shiningcity",
  1813.     485 =>  "arthicrex",
  1814.     486 =>  "foundation",
  1815.     487 =>  "lichencreep",
  1816.     488 =>  "pellucid",
  1817.     489 =>  "stonesnake",
  1818.     490 =>  "brellstemple",
  1819.     491 =>  "convorteum",
  1820.     492 =>  "brellsarena",
  1821.     493 =>  "weddingchapel",
  1822.     494 =>  "weddingchapeldark",
  1823.     495 =>  "dragoncrypt",
  1824.     700 =>  "feerrott2",
  1825.     701 =>  "thulehouse1",
  1826.     702 =>  "thulehouse2",
  1827.     703 =>  "housegarden",
  1828.     704 =>  "thulelibrary",
  1829.     705 =>  "well",
  1830.     706 =>  "fallen",
  1831.     707 =>  "morellcastle",
  1832.     708 =>  "somnium",
  1833.     709 =>  "alkabormare",
  1834.     710 =>  "miragulmare",
  1835.     711 =>  "thuledream",
  1836.     712 =>  "neighborhood",
  1837.     724 =>  "argath",
  1838.     725 =>  "arelis",
  1839.     726 =>  "sarithcity",
  1840.     727 =>  "rubak",
  1841.     728 =>  "beastdomain",
  1842.     729 =>  "resplendent",
  1843.     730 =>  "pillarsalra",
  1844.     731 =>  "windsong",
  1845.     732 =>  "cityofbronze",
  1846.     733 =>  "sepulcher",
  1847.     734 =>  "eastsepulcher",
  1848.     735 =>  "westsepulcher",
  1849.     752 =>  "shardslanding",
  1850.     753 =>  "xorbb",
  1851.     754 =>  "kaelshard",
  1852.     755 =>  "eastwastesshard",
  1853.     756 =>  "crystalshard",
  1854.     757 =>  "breedinggrounds",
  1855.     758 =>  "eviltree",
  1856.     759 =>  "grelleth",
  1857.     760 =>  "chapterhouse",
  1858.     996 =>  "arttest",
  1859.     998 =>  "fhalls",
  1860.     999 =>  "apprentice");
  1861.     my $zone = $_[0];
  1862.     return "$zonesn{$zone}";
  1863. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement