Open index.php.
Change:
- Code: Select all
$professions = array(
"Alchemy" => $wordings[$roster_conf['roster_lang']]['Alchemy'],
"Blacksmithing" => $wordings[$roster_conf['roster_lang']]['Blacksmithing'],
"Cooking" => $wordings[$roster_conf['roster_lang']]['Cooking'],
"Enchanting" => $wordings[$roster_conf['roster_lang']]['Enchanting'],
"Engineering" => $wordings[$roster_conf['roster_lang']]['Engineering'],
"Firstaid" => $wordings[$roster_conf['roster_lang']]['First Aid'],
"Leatherworking" => $wordings[$roster_conf['roster_lang']]['Leatherworking'],
"Tailoring" => $wordings[$roster_conf['roster_lang']]['Tailoring']);
to:
- Code: Select all
$professions = array(
"Alchemy" => $wordings[$roster_conf['roster_lang']]['Alchemy'],
"Blacksmithing" => $wordings[$roster_conf['roster_lang']]['Blacksmithing'],
"Cooking" => $wordings[$roster_conf['roster_lang']]['Cooking'],
"Enchanting" => $wordings[$roster_conf['roster_lang']]['Enchanting'],
"Engineering" => $wordings[$roster_conf['roster_lang']]['Engineering'],
"Firstaid" => $wordings[$roster_conf['roster_lang']]['First Aid'],
"Jewelcrafting" => $wordings[$roster_conf['roster_lang']]['Jewelcrafting'],
"Leatherworking" => $wordings[$roster_conf['roster_lang']]['Leatherworking'],
"Tailoring" => $wordings[$roster_conf['roster_lang']]['Tailoring']);
Then open missing.php.
BEFORE:
- Code: Select all
case 'Leatherworking':
$url = 'http://wow.allakhazam.com/db/skill.html?line=165';
break;
insert:
- Code: Select all
case 'Jewelcrafting':
$url = 'http://wow.allakhazam.com/db/skill.html?line=755';
break;
That seemed to do it for me. Don't forget that your system will take a while to parse the data for the first time, so it'll be slow to load at first, then work at the same speed as the rest of the MR add-on.