I think many guys are already knew this.
Auto store gems while you are auto mining.
first. you need DeusRPG pack and Taurik's script pack.
second. follow these steps.
// For autostoring gems while mining. Needs hooks into DeusSkillTraining.cs to work.
// The examples show the code surrounding the changes so you know what it should look like.
// To Install:
// 1. Open Tribes\Config\DeusRpgPack\DeusSkillTraining.cs
// 2. Search for this line: "if(%opt == "old")"
// 3. Right above that line put if($StoreGems == 1) CD::StoreGems();
//
// Example: $MiningMove = 1;
// $Xin_::MineWatch = 0;
// $Xin_::MoveCount = 0;
// if($StoreGems == 1) CD::StoreGems();
// if(%opt == "old")
// Mining::Movement();
// else
// Xin_::AutoMine();
//
// 4. Search for this line: "Client::centerPrint("<jc><f0>Auto Mining <f1>stopped", 1)"
// 5. Right above that line put: CD::StoreGemsStop();
//
// Example: Schedule("DeusRPG::StopMoving();", 6);
// Schedule::Cancel(MineMover);
// postAction(2048, IDACTION_BREAK1, 1);
// CD::StoreGemsStop();
// Client::centerPrint("<jc><f0>Auto Mining <f1>stopped", 1);
// Schedule("Client::centerPrint(\"\", 1);", 4);
//
// 6. Make sure $StoreGems == 1; at the top of this script. Save the file.
this tip is from cdfunk.cs
another tip.
to use other weapons(like Thorr's Hammer or Der Oberhammer(tm) ) when you run auto mine.
1.open your DeusSkillTraining.cs
2.find this line function DeusRPG::CheckForPickAxe() {
3.make this line
else if(getItemCount("Weapon name"))
use("Weapon name");
ex))
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("Thorr's Hammer"))
use("Thorr's Hammer");
else if(getItemCount("Der Oberhammer(tm)"))
use("Der Oberhammer(tm)");
else {
4. go mining.