Go to: Dynamix/Tribes/config/DeusRPGPack/
Open DeusSkillTraining.cs. Hit Ctrl+F(Find) and search: function DeusRPG::CheckForPickAxe() {
Replace that function with this:
function DeusRPG::CheckForPickAxe() {
if(getItemCount("Hammer Pick")) //Check for a mining tool
use("Hammer Pick");
else if(getItemCount("Pick Axe"))
use("Pick Axe");
else if(getItemCount("Rusty Pick Axe"))
use("Rusty Pick Axe");
else if(getItemCount("Der OberHammer(tm)"))
use("Der OberHammer(tm)");
else {
$MiningMove = "";
return false;
}
return true;
}
I just added these two lines:
else if(getItemCount("Der OberHammer(tm)"))
use("Der OberHammer(tm)");
It'll work with the OberHammer but I dunno how well it'll work since the swing delay on it is kinda high.