Page 2 of 2 FirstFirst 12
Results 26 to 45 of 45

Thread: Auto Miner Dropping Ores

  1. #26
    Join Date
    Jan 2007
    Location
    Not here
    Posts
    1,604
    Mentioned
    2 Post(s)
    Quoted
    19 Post(s)

    Default

    SCAR Code:
    //////////////////////////////////////////////////////////
    /////////////////////////////////////////////////////////
    //                  THE NOOBIEST                      //
    //                   POWERMINER                      //
    //                  BY RKROXPUNK                    //
    //                                                 //
    ////////////////////////////////////////////////////
    ///////////////////////////////////////////////////
    program PowerMiner;
    {.include SRL/SRL.scar}

    ////////////////////////////////////////////////////////////
    ///////////////////////////////////////////////////////////
    //                  LOGIN AND SETUP                     //
    /////////////////////////////////////////////////////////
    ////////////////////////////////////////////////////////

    const StartPlayer   = 0;
    VersionNumber       = '2';
    OreColor            = 3099497;//put the colour of the ore you want to mine here
    WaitTime            = 7000;//how long before it clicks again

    Procedure DeclarePlayers;

    begin
         HowManyPlayers  :=1;               // Set Number of Players here.
         NumberOfPlayers(HowManyPlayers);   // Sets the Players Array Length;
         CurrentPlayer:=StartPlayer;
         
         Players[0].Name :='';
         Players[0].Pass :='';
         Players[0].Nick :='';
         Players[0].Loc  :='Loc1';
         Players[0].Skill:='Mining';
         Players[0].Active:=True;
         
     writeln(inttostr(HowManyPlayers)+' Players');
    end;
    ////////////////////////////////////////////////////////////
    ///////////////////////////////////////////////////////////
    //            RANDOMS AND ANTIBAN                       //
    /////////////////////////////////////////////////////////
    ////////////////////////////////////////////////////////
    procedure Randoms;
    begin
      TalkToRand;
      FindNormalRandoms;
      if (FindFight) then
      begin
        RunWhere('N', false);
        Wait(10000 + random(200))
          RunBack;
      end;
      if (FindNewBox) then
      begin
        writeln('Found Strange Box Trying To Solve..')
          OpenBox;
        SolveBox;
        wait(1000);
      end;
      if (FindNewBox) then
      begin
        GambleNewBox;
      end;
      if (FindNewBox) then
      begin
        LogOut;
        Writeln('Unable To Solve Box....Terminating');
        TerminateScript;
      end;
      begin
        LoadSandArray;
        LoadSWBitMaps;
        SetupSandwich;
        ReleasesandWich;
        GetSandQuestion;
        SolveSandwich;
        SolveFrog;
      end;
    end;
    function DoAntiBan: Boolean;
    begin
      AntiBan;
      wait(50 + random(100));
      BoredEvery(3 + random(3));
      wait(100 + random(100))
        RotateEvery(7 + random(4));
      wait(750 + random(250));
      LeaveScreenEvery(5 + random(7));
      wait(500 + random(150));
    end;
    ////////////////////////////////////////////////////////////
    ///////////////////////////////////////////////////////////
    //                  MINEING AND DROPPING                //
    /////////////////////////////////////////////////////////
    ////////////////////////////////////////////////////////
    procedure Mine;
    begin
    repeat
    if(FindColor(x,y,OreColor,0,0,515,337))then

    MMouse(x,y,0,0);

    IsTextAt2(9, 9, 'Mine', 20)

    Mouse(x,y,0,0,true);

    wait(WaitTime+random(250))

    until(InvFull);
    end;

    procedure Drop;
    begin
    DropAll;
    end;
    ////////////////////////////////////////////////////////////
    ///////////////////////////////////////////////////////////
    //                    MAIN LOOP                         //
    /////////////////////////////////////////////////////////
    ////////////////////////////////////////////////////////
    begin
    SetupSRL;
    DeclarePlayers;
    LoginPlayer;
    repeat
    Mine;
    LoadSandArray;
        LoadSWBitMaps;
        SetupSandwich;
        ReleasesandWich;
        GetSandQuestion;
        SolveSandwich;
        SolveFrog;
    Drop;
    until(false);
    end.

  2. #27
    Join Date
    Dec 2006
    Posts
    2,244
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Does youre dropping work does it drop evrything includeing the pick

  3. #28
    Join Date
    Jan 2007
    Location
    Not here
    Posts
    1,604
    Mentioned
    2 Post(s)
    Quoted
    19 Post(s)

    Default

    using bronze pick so its equipped. yes it works and drops all

  4. #29
    Join Date
    Dec 2006
    Posts
    2,244
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    kk im gonna add the gas thing to mine

  5. #30
    Join Date
    Jan 2007
    Location
    Not here
    Posts
    1,604
    Mentioned
    2 Post(s)
    Quoted
    19 Post(s)

    Default

    post please

  6. #31
    Join Date
    Dec 2006
    Posts
    2,244
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    It already had gas random well it worked for me
    SCAR Code:
    program MyWorkingPowerMiner;
    {.include SRL\SRL.scar}
    //JAD antiban is in here credits for that goes to him
    //Ore Color needed on line 23
    //Mannal ore color is better
    //Must were weildable pick

    //CopperColor       = 4286610;
    //TinColor          = 9277080;
    //ClayColor         = 4553880;
    //IronColor         = 1910851;
    //SilverColor       = 12434885;
    //CoalColor         = 2834753;
    //GoldColor         = 1881051;
    //MithrilColor      = 7359564;
    //AdamantColor      = 6322272;
    //RuniteColor       = 8681306;


    const
      RockWait = 6000;//Time to hit rock again change if to fast
      NumberOfUsers = 1;//can only do one 1 at the moment
      StartPlayer = 0;//Cant be anything else at the moment
      RockColor = 4747162;//use ore color above for what u want to powermine
      DropCeptPick = false; //if set to true then it will drop everything except
                        //pick. if false will use DTM's to only drop ores.
      RunDir         =    'S'; // RunDirection, choose it wisely.
    {--------------------------------------------------------

    Procedure DeclarePlayers;

    --------------------------------------------------------}


    Procedure DeclarePlayers;

      Begin
         HowManyPlayers := NumberOfUsers;
         NumberOfPlayers( HowManyPlayers );
         CurrentPlayer := StartPlayer;

         Players[0].Name :='Yanan06';//Username here
         Players[0].Pass :='killppl90';//Password here
         Players[0].Nick :='nan';//3 Lowercase letters of youre name
         Players[0].Active:=True;

    end;
    procedure Miner;

    begin

      repeat

        FindColorSpiral(x, y, RockColor, 14, 19, 495, 325)

        MMouse(x, y, 3, 3)

        IsTextAt2(9, 9, 'Mine', 20)

        Mouse(x, y, 2, 2, True)

        Wait(RockWait + Random(300))

      until(InvFull)

      if(InvFull = True)then
    end;

    procedure Randoms;
    begin
      TalkToRand;
      FindNormalRandoms;
      if (FindFight) then
      begin
        RunWhere(RunDir, false);
        Wait(10000 + random(200))
          RunBack;
      end;
      begin
        RunWhere(RunDir, false);
        Wait(2000 + random(1000));
        RunBack;
        WriteLn('Waiting For Gas to Stop ..');
        Wait(10000 + random(2000));
      end;
      if (FindNewBox) then
      begin
        writeln('Found Strange Box Trying To Solve..')
          OpenBox;
        SolveBox;
        wait(1000);
      end;
      if (FindNewBox) then
      begin
        GambleNewBox;
      end;
      if (FindNewBox) then
      begin
        LogOut;
        Writeln('Unable To Solve Box....Terminating');
        TerminateScript;
      end;
      begin
        LoadSandArray;
        LoadSWBitMaps;
        SetupSandwich;
        ReleasesandWich;
        GetSandQuestion;
        SolveSandwich;
        SolveFrog;
      end;
    end;


    function DoAntiBan: Boolean;
    begin
      AntiBan;
      wait(50 + random(100));
      BoredEvery(3 + random(3));
      wait(100 + random(100))
        RotateEvery(7 + random(4));
      wait(750 + random(250));
      LeaveScreenEvery(5 + random(7));
      wait(500 + random(150));
    end;


    procedure Drop;
    begin
    DropAll;
    end;


    begin

      SetupSRL;

      repeat

      DeclarePlayers;
        Miner;
        LoadSandArray;
        LoadSWBitMaps;
        SetupSandwich;
        ReleasesandWich;
        GetSandQuestion;
        SolveSandwich;
        SolveFrog;
        DropAll;

      until(False)

    end.

    SCAR Code:
    procedure Randoms;
    begin
      TalkToRand;
      FindNormalRandoms;
      if (FindFight) then
      begin
        RunWhere(RunDir, false);
        Wait(10000 + random(200))
          RunBack;
      end;
      begin
        RunWhere(RunDir, false);
        Wait(2000 + random(1000));
        RunBack;
        WriteLn('Waiting For Gas to Stop ..');
        Wait(10000 + random(2000));
      end;
      if (FindNewBox) then
      begin
        writeln('Found Strange Box Trying To Solve..')
          OpenBox;
        SolveBox;
        wait(1000);
      end;
      if (FindNewBox) then
      begin
        GambleNewBox;
      end;
      if (FindNewBox) then
      begin
        LogOut;
        Writeln('Unable To Solve Box....Terminating');
        TerminateScript;
      end;
      begin
        LoadSandArray;
        LoadSWBitMaps;
        SetupSandwich;
        ReleasesandWich;
        GetSandQuestion;
        SolveSandwich;
        SolveFrog;
      end;
    end;

    You see the gas random im gonna release this now

  7. #32
    Join Date
    Jan 2007
    Location
    Not here
    Posts
    1,604
    Mentioned
    2 Post(s)
    Quoted
    19 Post(s)

    Default

    have u actually encountered gas?

  8. #33
    Join Date
    Dec 2006
    Posts
    2,244
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    well no but it should work if it dont ill fix were u wearing white cloth

  9. #34
    Join Date
    Jan 2007
    Location
    Not here
    Posts
    1,604
    Mentioned
    2 Post(s)
    Quoted
    19 Post(s)

    Default

    nup

  10. #35
    Join Date
    Dec 2006
    Posts
    2,244
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    well ill get some people to test ill see if i can get a procedure for it if it dont work maybe the allmity Wizzup? will let me get his lol

  11. #36
    Join Date
    Jan 2007
    Location
    Not here
    Posts
    1,604
    Mentioned
    2 Post(s)
    Quoted
    19 Post(s)

    Default

    lol k

  12. #37
    Join Date
    Jan 2007
    Location
    Not here
    Posts
    1,604
    Mentioned
    2 Post(s)
    Quoted
    19 Post(s)

    Default

    ok my script was screwing up. so i took out your randoms and it worked. what it was doing was saying question not answered or something then logging.
    any ideas

  13. #38
    Join Date
    Dec 2006
    Posts
    2,244
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    nope im starting radialwalking lummby to varrock now i need the proper procedure to drop em

  14. #39
    Join Date
    Jan 2007
    Location
    Not here
    Posts
    1,604
    Mentioned
    2 Post(s)
    Quoted
    19 Post(s)

    Default

    ooo what are you using to learn that i need to learn

  15. #40
    Join Date
    Dec 2006
    Posts
    2,244
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Might of fixed the dropping thing read jasons2gs radial walking guide
    heres my other version of the dropping ore thing
    SCAR Code:
    program MyWorkingPowerMiner;
    {.include SRL\SRL.scar}
    //JAD antiban is in here credits for that goes to him
    //Ore Color needed on line 23
    //Mannal ore color is better
    //Must were weildable pick

    //CopperColor       = 4286610;
    //TinColor          = 9277080;
    //ClayColor         = 4553880;
    //IronColor         = 1910851;
    //SilverColor       = 12434885;
    //CoalColor         = 2834753;
    //GoldColor         = 1881051;
    //MithrilColor      = 7359564;
    //AdamantColor      = 6322272;
    //RuniteColor       = 8681306;


    const
      RockWait = 6000;//Time to hit rock again change if to fast
      NumberOfUsers = 1;//can only do one 1 at the moment
      StartPlayer = 0;//Cant be anything else at the moment
      RockColor = 4747162;//use ore color above for what u want to powermine
      DropCeptPick = false; //if set to true then it will drop everything except
                        //pick. if false will use DTM's to only drop ores.
      RunDir         =    'S'; // RunDirection, choose it wisely.
    {--------------------------------------------------------

    Procedure DeclarePlayers;

    --------------------------------------------------------}


    Procedure DeclarePlayers;

      Begin
         HowManyPlayers := NumberOfUsers;
         NumberOfPlayers( HowManyPlayers );
         CurrentPlayer := StartPlayer;

         Players[0].Name :='Yanan06';//Username here
         Players[0].Pass :='killppl90';//Password here
         Players[0].Nick :='nan';//3 Lowercase letters of youre name
         Players[0].Active:=True;

    end;
    procedure Miner;

    begin

      repeat

        FindColorSpiral(x, y, RockColor, 14, 19, 495, 325)

        MMouse(x, y, 3, 3)

        IsTextAt2(9, 9, 'Mine', 20)

        Mouse(x, y, 2, 2, True)

        Wait(RockWait + Random(300))

      until(InvFull)

      if(InvFull = True)then
    end;

    procedure Randoms;
    begin
      TalkToRand;
      FindNormalRandoms;
      if (FindFight) then
      begin
        RunWhere(RunDir, false);
        Wait(10000 + random(200))
          RunBack;
      end;
      begin
        RunWhere(RunDir, false);
        Wait(2000 + random(1000));
        RunBack;
        WriteLn('Waiting For Gas to Stop ..');
        Wait(10000 + random(2000));
      end;
      if (FindNewBox) then
      begin
        writeln('Found Strange Box Trying To Solve..')
          OpenBox;
        SolveBox;
        wait(1000);
      end;
      if (FindNewBox) then
      begin
        GambleNewBox;
      end;
      if (FindNewBox) then
      begin
        LogOut;
        Writeln('Unable To Solve Box....Terminating');
        TerminateScript;
      end;
      begin
        LoadSandArray;
        LoadSWBitMaps;
        SetupSandwich;
        ReleasesandWich;
        GetSandQuestion;
        SolveSandwich;
        SolveFrog;
      end;
    end;


    function DoAntiBan: Boolean;
    begin
      AntiBan;
      wait(50 + random(100));
      BoredEvery(3 + random(3));
      wait(100 + random(100))
        RotateEvery(7 + random(4));
      wait(750 + random(250));
      LeaveScreenEvery(5 + random(7));
      wait(500 + random(150));
    end;


    procedure DropOre;
    var Ore, x, y: Integer;
    begin
      if (not (loggedin)) then
        Exit;
      Ore := DTMFromString('78DA63AC64666078CBC8800EFEC36820604C0' +
        '7AAF98CAE86118904D2B94035CF08A8A903AA7944404D2B11E694' +
        '02D5FC22A0A604A8E63E7E3500A8CD0ECB');
      GameTab(4);
      if (DropCeptPick = false) then
      begin
        repeat
          if FindDTM(Ore, x, y, 820, 471, 995, 733) then
          begin
            MMouse(x, y, 0, 0);
            wait(200 + random(100));
            Mouse(x, y, 4, 6, false);
            if (ChooseOption(x, y, 'rop')) then
          end;
        until (not (FindDTM(Ore, x, y, 820, 471, 995, 733)));
        if (DropCeptPick = true) and (Players[CurrentPlayer].Boolean1 = false) then
        begin
          DropTo(2, 28);
        end;
        if (DropCeptPick = true) and (Players[CurrentPlayer].Boolean1 = true) then
        begin
          DropAll;
        end;
      end;
    end;


    begin

      SetupSRL;

      repeat

      DeclarePlayers;
        Miner;
        LoadSandArray;
        LoadSWBitMaps;
        SetupSandwich;
        ReleasesandWich;
        GetSandQuestion;
        SolveSandwich;
        SolveFrog;
        DropAll;

      until(False)

    end.

  16. #41
    Join Date
    Jan 2007
    Location
    Not here
    Posts
    1,604
    Mentioned
    2 Post(s)
    Quoted
    19 Post(s)

    Default

    Ok heres my script i changed how it found ores works a lot better feel free to use. also check out my drop thing it's simple and will not drop first invent slot.
    next thing i gotta learn in anti randoms and ban.
    SCAR Code:
    //////////////////////////////////////////////////////////
    /////////////////////////////////////////////////////////
    //                  THE NOOBIEST                      //
    //                   POWERMINER                      //
    //                  BY RKROXPUNK                    //
    //                                                 //
    ////////////////////////////////////////////////////
    ///////////////////////////////////////////////////
    program PowerMiner;
    {.include SRL/SRL.scar}
    {.include srl\srl\skill\Mining.scar}

    ////////////////////////////////////////////////////////////
    ///////////////////////////////////////////////////////////
    //                  LOGIN AND SETUP                     //
    /////////////////////////////////////////////////////////
    ////////////////////////////////////////////////////////

    const StartPlayer   = 0;
    VersionNumber       = '2';
    OreeColor           = 4484245;//put the colour of the ore you want to mine here
    WaitTime            = 7000;//how long before it clicks again

    Procedure DeclarePlayers;

    begin
         HowManyPlayers  :=1;               // Set Number of Players here.
         NumberOfPlayers(HowManyPlayers);   // Sets the Players Array Length;
         CurrentPlayer:=StartPlayer;
         
         Players[0].Name :='';
         Players[0].Pass :='';
         Players[0].Nick :='';
         Players[0].Loc  :='Loc1';
         Players[0].Skill:='Mining';
         Players[0].Active:=True;
         
     writeln(inttostr(HowManyPlayers)+' Players');
    end;
    ////////////////////////////////////////////////////////////
    ///////////////////////////////////////////////////////////
    //            RANDOMS AND ANTIBAN                       //
    /////////////////////////////////////////////////////////
    ////////////////////////////////////////////////////////

    ////////////////////////////////////////////////////////////
    ///////////////////////////////////////////////////////////
    //                  MINEING AND DROPPING                //
    /////////////////////////////////////////////////////////
    ////////////////////////////////////////////////////////
    Function FindOre: Boolean;
    begin
    if FindColorSpiral(x, y, OreeColor, 0, 0, 515, 336)then
    begin
        Result := True;
        Status('Found Ore :D');
      end else
        Status('Did not find Ore :(');
        wait(5+random(5));
    end;

    Function MouseToOre: Boolean;
    begin
      repeat
        if (FindOre) then
      begin
        MMouse(x, y, 0, 0);
        Result := True;
        Wait(20+random(150));
        Exit;
        end;
        until(false)
     end;

    procedure ClickRock;
    begin
      if (MouseToOre = true) then
      begin
        Mouse(x, y, 0, 0, True)
        Wait(WaitTime+random(100));
      end;
    end;

    procedure Drop;
    begin
    if(InvFull)then
    DropTo(2,28);
    end;
    ////////////////////////////////////////////////////////////
    ///////////////////////////////////////////////////////////
    //                    MAIN LOOP                         //
    /////////////////////////////////////////////////////////
    ////////////////////////////////////////////////////////
    begin
    SetupSRL;
    SetupSRLMining;
    begin
      LoadMiningBitMaps;
      PickUpItems := False;
    end;
    DeclarePlayers;
    LoginPlayer;
    repeat
    FindOre;
    MouseToOre;
    ClickRock;
    GasColors(x,y);
    GasFound(x,y);
    Drop;
    until(false);
    end.

  17. #42
    Join Date
    Dec 2006
    Posts
    2,244
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Change ur passsssssssssss

  18. #43
    Join Date
    Jan 2007
    Location
    Not here
    Posts
    1,604
    Mentioned
    2 Post(s)
    Quoted
    19 Post(s)

    Default

    lol thx

  19. #44
    Join Date
    Dec 2006
    Posts
    2,244
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    lol np i done the exact same thing

  20. #45
    Join Date
    Feb 2007
    Posts
    433
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    hey i can try and fix it and it worked for me after i changed the color, and also i would change FindColorSpiral to FindColorSpiralTolerance, u had a color that wasnt on the screen and so idk it must of been something in the find color that it was looking for it, oh i just remembered, u had it find the coordinates in an area much smaller than the whole rs screen, so thats like the only place it could look for :P i think it will work if u use the one i changed on ur release for the script

Page 2 of 2 FirstFirst 12

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. need a good script , auto miner auto banker plz!!
    By samuel in forum RS3 Outdated / Broken Scripts
    Replies: 27
    Last Post: 11-19-2007, 08:46 AM
  2. auto miner
    By C000LIN in forum OSR Help
    Replies: 3
    Last Post: 07-28-2007, 07:53 PM
  3. auto miner for ess
    By xist2spire in forum RS3 Outdated / Broken Scripts
    Replies: 6
    Last Post: 03-04-2007, 06:40 AM
  4. My auto miner v2
    By HarryJames in forum OSR Help
    Replies: 2
    Last Post: 03-01-2007, 10:11 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •