thx for reply B2! but problem has not solved with the way you offered me.
i think these lines are control the auto mining movements
}
function Mining::Movement() {
if(!DeusRPG::CheckForPickAxe()) {
Client::centerPrint("<jc><f0>Don't have any kind of <f1>Pick Axe!", 1);
Schedule("Client::centerPrint(\"\", 1);", 2);
Mining::Stop();
return;
}
if($MiningMove == 1) {
postAction(2048, IDACTION_FIRE1, 1);
if($DeusRPG::QuitOnOverWeight)
DeusRPG::Getweight(); //Check your weight
//Schedule("Backward1();", 0.5); Schedule("StopBackward1();", 0.9); Schedule("Forward1();", 4.5); Schedule("StopForward1();", 4.8199); Schedule("Mining::Movement();", 15); // OLD
Schedule("Backward1();", 0.5); //NEW
Schedule("StopBackward1();", 0.7); //Thanks to TangWei
Schedule("Forward1();", 5.4); //This will keep you on a crystal for about an hour or so if no lag...
Schedule("StopForward1();", 5.632);
Schedule::Add("Mining::Movement();", 10, MineMover);
}
}
but i cant find how i edit the stop time