Results 1 to 20 of 20

Thread: 10% done lumbridge miner

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

    Default 10% done lumbridge miner

    well i was thinking of makeing a leet lumbridge miner but icba to all the doors stairs ect >.<

    well here it is set out nicely but hardly anythink done continue if u want i wouldlike to see someone continue this plz


    SCAR Code:
    //------------------------------------------------------------------------------
    //     .____                 ___.         .__    .___
    //     |    |    __ __  _____\_ |_________|__| __| _/ ____   ____
    //     |    |   |  |  \/     \| __ \_  __ \  |/ __ | / ___\_/ __ \
    //     |    |___|  |  /  Y Y  \ \_\ \  | \/  / /_/ |/ /_/  >  ___/
    //     |_______ \____/|__|_|  /___  /__|  |__\____ |\___  / \___  >
    //             \/           \/    \/              \/_____/      \/
    //       _____          __                 .__
    //      /  _  \  __ ___/  |_  ____   _____ |__| ____   ___________
    //     /  /_\  \|  |  \   __\/  _ \ /     \|  |/    \_/ __ \_  __ \
    //    /    |    \  |  /|  | (  <_> )  Y Y  \  |   |  \  ___/|  | \/
    //    \____|__  /____/ |__|  \____/|__|_|  /__|___|  /\___  >__|
    //            \/                         \/        \/     \/
    //------------------------------------------------------------------------------

    //------------------------------------------------------------------------------
    //                            | What It Does |
    //                            -=-=-=-=-=-=-=-
    //  * The Lumbridge Autominer Is Desgined To Mine Around Lumbridge Banking OR Dropping.
    //  * Is Mines Tin Or Copper AND I Will Get It To Walk Around To Varrock.
    //  * This Will Bring U Up Some Mineing Lvls And No Walking Required.
    //------------------------------------------------------------------------------

    //------------------------------------------------------------------------------
    //                         | How To Use |
    //                         -=-=-=-=-=-=-=-
    //    * Setup Up Your Plaeyers Correctly And Target RS
    //    * Scar Divi 3.11 And SRL 4
    //    * This Script Will Cast Home Tele And Do Its Job.
    //-------------------------------------------------------------------------------

    //-------------------------------------------------------------------------------
    //                            | Credit |
    //                            -=-=-=-=-=-
    //                      * Me For Makeing This *
    //                  * SRL For teh Sexy Includes Ect *
    //                       * Nielsie For ACA *
    //
    //------------------------------------------------------------------------------


    program TehLumbridgeMiner;
    {.include SRL/SRL.scar}


    Procedure DeclarePlayers;
    begin
    NumberOfPlayers(6);

      Players[0].Name :='Username';
      Players[0].Pass :='Password';
      Players[0].Nick :='3-4 Letters Of Your Name';
      Players[0].Active :=True;
      Players[0].booleans[0]:= False;       // Is The Pick Equipped?

      Players[1].Name :='';
      Players[1].Pass :='';
      Players[1].Nick :='';
      Players[1].Active :=True;
      Players[1].booleans[0]:= False;       // Is The Pick Equipped?


      Players[2].Name :='';
      Players[2].Pass :='';
      Players[2].Nick :='';
      Players[2].Active :=True;
      Players[2].booleans[0]:= False;       // Is The Pick Equipped?


      Players[3].Name :='';
      Players[3].Pass :='';
      Players[3].Nick :='';
      Players[3].Active :=True;
      Players[3].booleans[0]:= False;       // Is The Pick Equipped?


      Players[4].Name :='';
      Players[4].Pass :='';
      Players[4].Nick :='';
      Players[4].Active :=True;
      Players[4].booleans[0]:= False;       // Is The Pick Equipped?


      Players[5].Name :=' ';
      Players[5].Pass :='';
      Players[5].Nick :='';
      Players[5].Active :=True;
      Players[5].booleans[0]:= False;       // Is The Pick Equipped?

      Writeln('Using '+IntToStr(NumberOfPlayers)+' Players');

    End;


    Procedure LoadBitmaps; // These Are Wizups Bitmaps!
    Begin
      CopperOre := BitmapFromString(1, 18, '6C3D1A7B461D884E22955' +
      '524A15C28AA612AB8692E00000100000153432E67533A6E583D74' +
      '5D42765F43796245826849876D4C8C7150');

      TinOre := BitmapFromString(1, 16, '696262635C5B635C5B635C5B' +
      '635C5B736B6B7971707F76760000016E583D765F43826849846B4' +
      'A876D4C8C71508E7351');
    End;


    {--------------------------------------------------------

    Function FindFastRandoms: Boolean;    // By WT-Fakawi.

    FindFastRandoms is a quicker version of FindNormalRandoms.
    It does not include ALL the Anti-Randoms though.

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


    Function FindFastRandoms: Boolean;    // By WT-Fakawi.
    var
      i: Integer;
    begin
      for i:=1 to 13 do
      begin
        case I of
           1:  If FindDead then
                 Result := True;
           2:  If FindMod then
                 Result := True;
           3:  If FindMime then
                 Result := True;
           4:  If FindMaze then
                 Result := True;
           5:  If FindQuiz then
                 Result := True;
           6:  If FindDemon then
                 Result := True;
           7: begin
                 if NoGameTab then
                 begin
                   Result := True;
                   Players[CurrentPlayer].loc := 'No GameTab';
                   Logout;
                   Exit;
                 end;
               end;
           8: begin
                 If InBlack then
                 begin
                   Result := True;
                   Players[CurrentPlayer].loc := 'InBlack';
                   Logout;
                   Exit;
                 end;
               end;
           9 : If RC Then Result := True;

           10 :   If FindFight Then
                 Begin
                   Result := True;
                   MakeCompass('N');
                   RunTo('S', True);
                   MakeCompass('N');
                 End;

           11: If FindTalk Then Result := True;

           12: If HandleTrade Then Result := True;

           13: If ClickToContinue;
        End;
        Wait(1);
      end;
    end;


    Procedure HomeTele;
    Begin
      If TabExits(7) Then
      GameTab(7);
      Cast('Home Teleport')
      Wait(15000 + Random (2000)) If FindSymbol('Water') Then
      Writeln('In Lumbridge... Starting Script');
    End;




    begin
    SetupSRL;
    end.

  2. #2
    Join Date
    May 2007
    Location
    baltimore, md
    Posts
    836
    Mentioned
    0 Post(s)
    Quoted
    8 Post(s)

    Default

    lol u bereley did anything so i guess just an idea with the standard coding already there lol.

  3. #3
    Join Date
    Nov 2006
    Location
    NSW, Australia
    Posts
    3,487
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Exactly what I was going to say
    [CENTER][img]http://signatures.mylivesignature.com/54486/113/4539C8FAAF3EAB109A3CC1811EF0941B.png[/img][/CENTER]
    [CENTER][BANANA]TSN ~ Vacation! ~ says :I Love Santy[/BANANA][/CENTER]

    [CENTER][BANANA]Raymond - Oh rilie? says :Your smart[/BANANA][/CENTER]

  4. #4
    Join Date
    Aug 2007
    Posts
    282
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    plus.. Mouse(695, 437).. your missing 3 parameters

  5. #5
    Join Date
    Nov 2006
    Location
    NSW, Australia
    Posts
    3,487
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    What the?! That's awfully weird.

    He also put in credits before making the script
    [CENTER][img]http://signatures.mylivesignature.com/54486/113/4539C8FAAF3EAB109A3CC1811EF0941B.png[/img][/CENTER]
    [CENTER][BANANA]TSN ~ Vacation! ~ says :I Love Santy[/BANANA][/CENTER]

    [CENTER][BANANA]Raymond - Oh rilie? says :Your smart[/BANANA][/CENTER]

  6. #6
    Join Date
    Aug 2007
    Posts
    282
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    hey i do that!

    well i take that back, but i do them as i go, he hasn't used ACA yet and its in there.

  7. #7
    Join Date
    Nov 2006
    Location
    Latvia
    Posts
    53
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Accually i think. Nvm dude, but how you get in SRL Member your coding is very easy in primitive. Nvm, it`s not nothing persionally, but i think i can much better, so im just lazy, but i think i need to show some of my scripts to SRL administration, and i think i will be then SRL memeber. Nvm rudeboialex, it`s nothing persionally. But good is that, to i hope you are not so lazy like me, proabobly
    http://www.fenjer.com/adnan/SRL/21/5...0by%20JaBa.png -Full Version Be Ready Soon, Free Version Is out If Anyone wanna try, then MSN me
    http://www.fenjer.com/adnan/SRL/9/3/...d%20Runner.png
    http://www.fenjer.com/adnan/SRL/14/5...0Collector.png - After Tutorial Island Runner Finishing...

  8. #8
    Join Date
    May 2007
    Location
    baltimore, md
    Posts
    836
    Mentioned
    0 Post(s)
    Quoted
    8 Post(s)

    Default

    SCAR Code:
    Cast('Home Teleport') Or Mouse(695, 437)
    plus that doesnt even make sence

  9. #9
    Join Date
    Nov 2006
    Location
    Latvia
    Posts
    53
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by jhildy View Post
    SCAR Code:
    Cast('Home Teleport') Or Mouse(695, 437)
    plus that doesnt even make sence
    maybe:
    SCAR Code:
    if not(Cast('Home Teleport')) then  Mouse(695, 437, 3, 3, true);
    http://www.fenjer.com/adnan/SRL/21/5...0by%20JaBa.png -Full Version Be Ready Soon, Free Version Is out If Anyone wanna try, then MSN me
    http://www.fenjer.com/adnan/SRL/9/3/...d%20Runner.png
    http://www.fenjer.com/adnan/SRL/14/5...0Collector.png - After Tutorial Island Runner Finishing...

  10. #10
    Join Date
    Dec 2006
    Location
    Copy pastin to my C#
    Posts
    3,788
    Mentioned
    8 Post(s)
    Quoted
    29 Post(s)

    Default

    I think the scienfitical (right word?) for that is "Template" =D

  11. #11
    Join Date
    Oct 2006
    Location
    finland, helsinki
    Posts
    2,501
    Mentioned
    3 Post(s)
    Quoted
    2 Post(s)

    Default

    i'd say its less then 10% done :P Im currently working on a VEM

    Code:
    • Narcle: I recall Jukka releasing a bunch of scripts like this before... Its how he rolls I think. rofl
    • Solarwind: Dude, you are like... t3h s3x.
    • Hy71194: JuKKa you're a machine! You released 3 scripts in 10 minutes! :O
    • benjaa: woah.... Jukka is the man Guildminer pwns all
    • NaumanAkhlaQ: And JuKKa Is my Her0!

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

    Default

    Quote Originally Posted by kodeejs View Post
    Accually i think. Nvm dude, but how you get in SRL Member your coding is very easy in primitive. Nvm, it`s not nothing persionally, but i think i can much better, so im just lazy, but i think i need to show some of my scripts to SRL administration, and i think i will be then SRL memeber. Nvm rudeboialex, it`s nothing persionally. But good is that, to i hope you are not so lazy like me, proabobly
    i got in with alot of uck + i new minimum scripting and i posted around here lots

    everyone i was gonna use all ACA ect..... and i put credits in before cas they what i plan to use lool

  13. #13
    Join Date
    Aug 2007
    Posts
    282
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by rudeboialex View Post
    i got in with alot of uck + i new minimum scripting and i posted around here lots

    everyone i was gonna use all ACA ect..... and i put credits in before cas they what i plan to use lool
    then how do you have a scripters cup?

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

    Default

    i dunno alod of people got thwm lock this up plz

  15. #15
    Join Date
    Aug 2007
    Location
    England
    Posts
    734
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Pretty much everything you added is nothing to do with mining in lumbridge
    The truth finally came out...


  16. #16
    Join Date
    Jun 2006
    Location
    USA
    Posts
    1,828
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Whats actually the main idea on making this thread? ...I just dont get it.

  17. #17
    Join Date
    Apr 2007
    Posts
    36
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I don't see the point, the code that is actual actually run is:
    begin
    end;

    this makes no sense.

  18. #18
    Join Date
    May 2006
    Posts
    1,230
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Meh, im working on a Lumbridge miner, smither and banker. Walking isn't done yet and its already 800 lines. Walking is also the only thing i've worked on so far.

  19. #19
    Join Date
    Nov 2006
    Location
    NSW, Australia
    Posts
    3,487
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    OoO! Maybe you can combine it with your clay softener, if you can mine clay in Lumbridge that is..
    [CENTER][img]http://signatures.mylivesignature.com/54486/113/4539C8FAAF3EAB109A3CC1811EF0941B.png[/img][/CENTER]
    [CENTER][BANANA]TSN ~ Vacation! ~ says :I Love Santy[/BANANA][/CENTER]

    [CENTER][BANANA]Raymond - Oh rilie? says :Your smart[/BANANA][/CENTER]

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

    Default

    Quote Originally Posted by jackkat View Post
    I don't see the point, the code that is actual actually run is:
    begin
    end;

    this makes no sense.
    Guess why..... cause its 10%!! .


    Everyone just let this die please!

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Lumbridge West Swamp Miner
    By The Claw in forum RS3 Outdated / Broken Scripts
    Replies: 472
    Last Post: 08-22-2010, 06:10 AM

Posting Permissions

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