I dont use the form, im old school. But yes i only have it set to mine iron, i did not include any other ores.
This is my setup
Code:
begin
Name := 'SRL '; // Username
Pass := 'gem'; // Password
Pin := ''; // Bank pin; leave as '' if player doesn't have one
Active := True; // Use this player?
Member := False; // Is this player a member?
BreakLoads := 3; // Amount of loads before breaking/switching players; leave 0 to not take breaks
BreakTime := 0; // Amount of time (in minutes) before breaking/witching; leave 0 to not take breaks
TotalLoads := 0; // Total loads for the player to do; leave 0 if using TotalTime or to go forever
TotalTime := 0; // How long for the player to run? (in minutes); leave 0 if using TotalLoads or go forever
with Scripts[0] do
begin
Name := SCRIPT_VE_MINER;
Rocks := [ROCK_IRON];
Priority := [100];
DontDrop := [GEM_UNCUT_DIAMOND,GEM_UNCUT_RUBY,GEM_UNCUT_EMERALD,GEM_UNCUT_SAPPHIRE];
Exceptions := [];
MaxLevel := 99;
end;
end;