Results 1 to 19 of 19

Thread: [Runique]MudRuner

  1. #1
    Join Date
    Oct 2016
    Posts
    7
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default [Runique]MudRuner

    Hey I decided to make a Mud Rune crusher for candies/keys in the Private Server Runique.
    Function
    -Grinds Mud Runes
    -Banks Them + H'ween Keys and Candies

    There are a few settings you need to have setup.
    Bank Tab
    BankTab.png

    Zoom High North and stand in front of Bank Booth
    Settings.png

    Mud runes must be in first slot. Pestle and Mortar in 2nd slot.

    You can also change the XpRate and GpRate at the bottom for a realistic progress report.

    Very simple but more to come soon hopefully

    Shoutout to GoodGameScript for the Include and a lot of useful information <3

    ***********Mud Runer***********
    Inventories Done: 133
    Cash Made: 27664000
    Approx. Exp Gained: 207480
    ***********`````````*********** I manually Stopped

    ***********Mud Runer***********
    Inventories Done: 220
    Cash Made: 45760000
    Approx. Exp Gained: 343200
    ***********`````````**********

    Code:
    program new;
    {$i Runique/RuniqueInclude.simba}
    {$i Runique/eZForm.simba}
    var
    Invs, Cash, XP, XpRate, GpRate, Keys, BankColor:integer;   //ints for proggy
    
    procedure Proggy;    //progress report
    begin
      Writeln('***********Mud Runer***********');
      Writeln('Inventories Done: ' + IntToStr(Invs));
      Writeln('Cash Made: ' + IntToStr(Cash));
      Writeln('Approx. Exp Gained: ' + IntToStr(XP));
      Writeln('Keys Gained: ' + IntToStr(Keys));
      Writeln('***********`````````***********');
      end;
    
    function ClickRunes:boolean; //clicks runes in 1st inv slot
    var
      x, y:integer;
      begin
      if FindColorTolerance(x, y, 1456472, RuniqueBackPack, 15) then
      begin
      mouse(x, y, 5, 5, mouse_Left);
      end;
      end;
    
      function ClickPM:boolean; //clicks pestle in 2nd inv slot
    var
      x, y:integer;
      begin
      if FindColorTolerance(x, y, 13553621, 610, 260, 635, 280, 35) then
      begin
      writeln('ok');
      mouse(x, y, 5, 5, mouse_Left);
      end;
      end;
    
      function ClickGrind:boolean; //clicks grind all runes
    var
      x, y:integer;
      begin
      if FindColorTolerance(x, y, 9277080, 207, 430, 290, 490, 35) then
      begin
      writeln('ok');
      mouse(x, y, 5, 5, mouse_right);
      wait(750);
      RSPSChooseOption('Make All');
      end;
      end;
    
    function MakingRunes:boolean; //function to stop ClickGrind
    var
    x, y:integer;
    begin
    if findColorTolerance(x, y, 65536, 647, 267, 683, 285, 10) then
      result := true;
    end
    
    Procedure  GrindRunes;  //Whole procedure to grind runes with pestle
    
    begin
       if not RuniqueBagFull then
    begin
       if not MakingRunes then
      begin
        ClickRunes;
        wait(600);
        ClickPM;
        wait(1000);
        ClickGrind;
        wait(2500);
    end;
      end;
      end
    
    function DepositRunes:boolean; //deposits all ground runes
    var
    x, y:integer;
    begin
      if FindColorTolerance(x, y, 660764, 560, 297, 726, 501, 15) then
      mouse(x, y, 5, 5, mouse_Right);
      wait(250);
      RSPSChooseOption('Store All');
    end
    
    function DepositCandy:boolean; //deposits all candies
    var
    x, y:integer;
    begin
      if FindColorTolerance(x, y, 9840246, 560, 297, 726, 501, 15) then
      mouse(x, y, 5, 5, mouse_Right);
      wait(250);
      RSPSChooseOption('Store 5');
    end
    
    function DepositKey:boolean;   //deposits all hween keys
    var
    x, y:integer;
    begin
      if FindColorTolerance(x, y, 6265511, 560, 297, 726, 501, 15) then
      mouse(x, y, 5, 5, mouse_Right);
      wait(250);
      RSPSChooseOption('Store 1');
      Keys := Keys + 1;
    end
    
    procedure DepositItems; //deposits all in one procedure
    begin
    DepositRunes;
    DepositCandy;
    DepositKey;
    end
    
    procedure Bank; //banking procedure
    var
    x, y:integer;
    begin
    if RuniqueBagFull then
    begin
      if findColorTolerance(x, y, BankColor, 145, 60,  335, 215, 5) then
       mouse(x, y, 5, 5, mouse_Right);
       RSPSChooseOption('Use');
       wait(1050);
       begin
       if BankIsOpen then
       DepositItems;
       begin
       if not RuniqueBagFull then
       begin
       if not MakingRunes then
       Closebank;
       ClearDebug;
       Invs := Invs + 1;
       Cash := Cash + (26*(GpRate));
       XP   := XP + (26 *(XpRate));
       Proggy;
    end
    end
    end
    end
    end
    
    
    procedure MakeRunes; //main procedure
    begin
      GrindRunes;
      Bank;
    end
    
    Procedure main;  //^^
    begin
      repeat
        MakeRunes;
      until(false);
    end;
    
    procedure EndProggy;
    begin
    ClearDebug;
    wait(250);
    Proggy;
    end
    
    begin
    SetupRuniqueinclude();
    AddOnTerminate('EndProggy')
    XpRate := 60; //Put exp per rune here
    GpRate := 8000; //Put Gp per rune here
    BankColor := 8822188; //color of your bank stall
    ClearDebug;
    main;
    end.
    Last edited by Learn; 10-23-2016 at 03:16 AM. Reason: Adding info

  2. #2
    Join Date
    Mar 2014
    Posts
    195
    Mentioned
    4 Post(s)
    Quoted
    92 Post(s)

    Default

    Don't forget to tell them where to get the Runique include from

    and grats on release =D

  3. #3
    Join Date
    Oct 2016
    Posts
    7
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    You have Skype or kik? Or do you want to add ingame so we can possibly discuss some script related things

  4. #4
    Join Date
    Mar 2014
    Posts
    195
    Mentioned
    4 Post(s)
    Quoted
    92 Post(s)

    Default

    Quote Originally Posted by Learn View Post
    You have Skype or kik? Or do you want to add ingame so we can possibly discuss some script related things
    lol just message me on here or post in the help section i work most of the time =s

  5. #5
    Join Date
    Oct 2016
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Getting a "Error: Operator expected at line 167" and unsure why, any ideas?

  6. #6
    Join Date
    Jun 2013
    Location
    Scranton
    Posts
    496
    Mentioned
    5 Post(s)
    Quoted
    220 Post(s)

    Default

    Quote Originally Posted by hick jr View Post
    Getting a "Error: Operator expected at line 167" and unsure why, any ideas?
    Line 166 needs a semicolon

  7. #7
    Join Date
    Oct 2016
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Error - Block expecter at line 10? Any idea's?

  8. #8
    Join Date
    Oct 2016
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    How do i set this up will someone please help me?

  9. #9
    Join Date
    Mar 2014
    Posts
    195
    Mentioned
    4 Post(s)
    Quoted
    92 Post(s)

    Default

    Quote Originally Posted by halloweenicxi View Post
    How do i set this up will someone please help me?
    Download the runique include extract it and rename it to Runique.

    Place it in your includes folder.

    Copy his code to a new simba document, save it as RuniqueMudRuner{can be anything} inside the scripts folder.

    Adjust the code a bit for errors.
    Quote Originally Posted by jstemper View Post
    Line 166 needs a semicolon
    Hit play with the correct settings.

  10. #10
    Join Date
    Apr 2016
    Posts
    18
    Mentioned
    1 Post(s)
    Quoted
    6 Post(s)

    Default

    Hello this might be dumb but please, help. Error: Plugin(ProSocks32) has not been found
    Compiling failed.

  11. #11
    Join Date
    Mar 2014
    Posts
    195
    Mentioned
    4 Post(s)
    Quoted
    92 Post(s)

    Default

    Quote Originally Posted by gedux1998 View Post
    Someone help error plugin prosocks32 has not been found
    Download ProSocks.dll from Github and place it into your Plugins folder.

  12. #12
    Join Date
    Apr 2016
    Posts
    18
    Mentioned
    1 Post(s)
    Quoted
    6 Post(s)

    Default

    Another problem, it doesnt bank ground mud runes just stops after it has full inventory

  13. #13
    Join Date
    Jun 2016
    Posts
    23
    Mentioned
    3 Post(s)
    Quoted
    15 Post(s)

    Default

    Is it worth banking? I made script that drops them and makes over 30m/h

  14. #14
    Join Date
    Sep 2010
    Posts
    5,762
    Mentioned
    136 Post(s)
    Quoted
    2739 Post(s)

    Default

    Quote Originally Posted by hawkzz View Post
    Is it worth banking? I made script that drops them and makes over 30m/h
    You can't tell them to sigmund but it would be faster than to bank them than to drop them. I actually made a mixer/cleaner I'm finishing up the final stages now. I could release it but it wouldn't be user friendly (in order to clean them fast you gotta change a procedure right quick, and in order to mix them you have to change the same thing to a slower mouse so it doesn't click to fast and wander away from the bank). Also it only has DTMs for the super restore ingredients

    cleans around 10,500 herbs an hour and mixes 2,000 potions an hour

  15. #15
    Join Date
    Mar 2014
    Posts
    195
    Mentioned
    4 Post(s)
    Quoted
    92 Post(s)

    Default

    Quote Originally Posted by rj View Post
    You can't tell them to sigmund but it would be faster than to bank them than to drop them. I actually made a mixer/cleaner I'm finishing up the final stages now. I could release it but it wouldn't be user friendly (in order to clean them fast you gotta change a procedure right quick, and in order to mix them you have to change the same thing to a slower mouse so it doesn't click to fast and wander away from the bank). Also it only has DTMs for the super restore ingredients

    cleans around 10,500 herbs an hour and mixes 2,000 potions an hour
    ahh as for the fastest dropping method, runique has a fast way of dropping : hold shift then click the first and last item you want to drop, and right click drop. It will drop everything in 4 clicks.

  16. #16
    Join Date
    Mar 2017
    Posts
    13
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    this is a good way to make money...

  17. #17
    Join Date
    Oct 2016
    Posts
    17
    Mentioned
    0 Post(s)
    Quoted
    16 Post(s)

    Default

    Error: File "RuniqueRuniqueInclude.simba" not found at line 2
    I'm unsure how to compile this script. Please help me?

  18. #18
    Join Date
    Mar 2014
    Posts
    195
    Mentioned
    4 Post(s)
    Quoted
    92 Post(s)

    Default

    Quote Originally Posted by Twerk4jesus View Post
    Error: File "RuniqueRuniqueInclude.simba" not found at line 2
    I'm unsure how to compile this script. Please help me?
    https://villavu.com/forum/showthread...86#post1380186

  19. #19
    Join Date
    Feb 2012
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    getting this issue, first time trying to use any of this, not sure whats going wrong

    Scanning for RuniqueClient..
    0
    Client Not Ready
    Successfully executed.

Thread Information

Users Browsing this Thread

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

Posting Permissions

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