%PDF- %PDF-
Direktori : /www/old2/_music/ |
Current File : /www/old2/_music/boss.php |
<?php error_reporting(0); function getDungeon($id, $name) { if(!file_exists("/home/combatlog/bl/$name")) { $out = ""; $text = file_get_contents("http://www.wowhead.com/zone=$id"); preg_match("/\[minibox\](.*?)\[\/minibox\]/", $text, $matches); preg_match_all("/npc=([0-9]+)/", $matches[1], $matches); foreach($matches[1] as $match) { $out .= "$match;$name\n"; } file_put_contents("/home/combatlog/bl/$name", $out); return $out; } } header("Content-type: text/plain"); $dungeons = array( 'Deadmines' => 1581, 'WC' => 718, 'SFK' => 209, 'RFC' => 2437, 'BFD' => 719, 'Stockade' => 717, 'Gnomeregan' => 721, 'SM' => 796, 'RFK' => 491, 'Maraudon' => 2100, 'Uldaman' => 1337, 'Scholo' => 2057, 'RFD' => 722, 'DM' => 2557, 'ZF' => 1176, 'Strat' => 2017, 'ST' => 1477, 'BRD' => 1584, 'BRS' => 1583, 'Ramparts' => 3562, 'BF' => 3713, 'SP' => 3717, 'UB' => 3716, 'MT' => 3792, 'Auchenai' => 3790, 'CoT-OH' => 2367, 'SH' => 3791, 'SL' => 3789, 'SV' => 3715, 'ShatH' => 3714, 'Botanica' => 3847, 'Mechanar' => 3849, 'CoT:BM' => 2366, 'MgT' => 4131, 'Alcatraz' => 3848, 'AK' => 4494, 'AN' => 4277, 'CoT-Stratholme' => 4100, 'ToCh' => 4723, 'DTK' => 4196, 'Gundrak' => 4416, 'HoR' => 4820, 'PoS' => 4813, 'FoS' => 4809, 'Nexus' => 4265, 'Oculus' => 4228, 'VH' => 4415, 'HoL' => 4272, 'HoS' => 4264, 'UK' => 206, 'UP' => 1196, 'TotT' => 5004, 'BRC' => 4926, 'Grim_Batol' => 4950, 'HoO' => 4945, 'Lost_City' => 5396, 'Stonecore' => 5088, 'Vortex_Pinacle' => 5035, 'BWL' => 2677, 'MC' => 2717, 'AQ20' => 3429, 'AQ40' => 3428, 'BT' => 3959, 'Hyjal' => 3606, 'SSC' => 3607, 'Gruul' => 3923, 'Magtheridon' => 3836, 'SWP' => 4075, 'TK' => 3845, 'ZA' => 3805, 'Karazhan' => 3457, 'ToC' => 4722, 'ICC' => 4812, 'Naxx' => 3456, 'Onyxia' => 2159, 'EoE' => 4500, 'Ulduar' => 4273, 'VoA' => 4603, 'OS' => 4493, 'RS' => 4987, 'BH' => 5600, 'BWD' => 5094, 'BoT' => 5334, 'ToFW' => 5638, 'ZG' => 1977, 'Firelands' => 5723, 'DragonSoul' => 5892, 'EndTime' => 5789, 'HoT' => 5844, 'WoE' => 5788, 'HoF' => 6297, 'MogushanVaults' => 6125, 'ToES' => 6067, 'GotSS' => 5976, 'MogushanPalace' => 6182, 'ScarletHHC' => 6052, 'ScarletMHC' => 6109, 'SPM' => 5918, 'ScholoHC' => 6066, 'SoNT' => 6214, 'SsB' => 5963, 'ToJS' => 5956 // '' => , ); reset($dungeons); while(list($key, $value) = each($dungeons)) { echo getDungeon($value, $key); } ?>