Page 1 of 11 123 ... LastLast
Results 1 to 25 of 254

Thread: [SRL] Power Miner

  1. #1
    Join Date
    May 2007
    Location
    UK
    Posts
    4,007
    Mentioned
    1 Post(s)
    Quoted
    12 Post(s)

    Default [SRL] Power Miner

    [SRL] Power Miner

    HERE IS MY PRESENT TO YOU SRL! Merry Christmas!

    Current Status: Working

    Current Version: 5.0

    Script History
    v1.0 - Released - 1 view
    v1.1 - 9 views
    v1.2 - 31 views
    • Fixed Ore Counting.
    • Fixed Double Clicking.
    • Fixed Stats.
    • Fixed Proggy.
    • Fixed Finding Ores.

    v2.0 - Fixed lots
    v3.0 - Added emailing reports and Compiling issues
    v4.0 COMPLETE REBUILD - views: 65
    v4.1 - Fixed counting ores
    v4.2 - compatible with SRL 5 - 1200+ views
    v5 - Rebuild.
    Features:
    • Super Fast Ore Detection!
    • Power Mines ANYWHERE!
    • Multi Player
    • SMART
    • Safe - AntiRandoms and AntiBan
    • Stats!


    Bugs/Suggestions/To Do List:
    • Add Dragon Pickaxe compatibility


    Instructions:
    You need SMART8

    Simba Code:
    {
    |                            .:Ores Available:.                        
    |   ¤ tin                                                              
    |   ¤ copper
    |   ¤ iron                                                                                                                          
    |   ¤ coal                                                                                                                              
    |                                                                        
    |                                                                        
    }
    Simba Code:
    const
      TooManyPlayers = 10; // How many players is too crowded till we move world?
      Version = 'Christmas'; // Leave
      ScriptName = '[SRL] Power Miner'; // Leave
      SmartMembers = False; // Are you a member?
      SmartWorld = 123; // What SmartWorld?
      DependClick = 5; // 1 in how many clicks is a right click option. (Mining)
      DoDebug = True; // Do you want the script to debug?
      SRLStats_UserID = '';  // Your SRL Stats username.
      SRLStats_Password = '';   // Your SRL Stats Password.
    Fill in Declare Players including Stats User and Pass.
    Hit run!


    Quote Originally Posted by YoHoJo View Post
    SRL is THE MOST trustable of all runescape cheating communities, I guarantee this script will not steal your password silly, look at how many people are using it!

    Please post Progress reports otherwise I will move to Members.

    If you would like to donate, to keep me updating this script please use this button:


    If you do not have the funds to donate then can I suggest Rep+ me?

    Have Fun!
    -Boom

    Last edited by Dynamite; 12-27-2012 at 01:51 PM.

  2. #2
    Join Date
    May 2007
    Location
    UK
    Posts
    4,007
    Mentioned
    1 Post(s)
    Quoted
    12 Post(s)

    Default

    Longest Proggy

    Quote Originally Posted by JPHamlett View Post
    Simba Code:
    /---------------------------------------\\
    |             SRL Power Miner             |
    |             Author : Dynamite           |
    |             Version 4.0         |
    \\---------------------------------------//
    //------------ Single Player ------------\\
    | Player[0] Active: True|
    |  Time Running: 5 Hours, 24 Minutes and 47 Seconds               |
    |  Ores Mined: 2689   |
    |  Loads: 101                   |
    |  EXP Gained 94115
    |  Changed player: 0 time/s |
    |            Please give feedback          |
    \\----------------------------------------//
    Status: /~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
    Status: |     SRL Randoms Report       |
    Status: |       [url]www.villavu.com[/url]        |
    Status: |~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
    Status: \~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
    Last edited by Dynamite; 01-05-2012 at 11:58 PM.

  3. #3
    Join Date
    Nov 2007
    Location
    46696E6C616E64
    Posts
    3,069
    Mentioned
    44 Post(s)
    Quoted
    302 Post(s)

    Default

    You could have added them to main post.

    Also ill test tomorrow.
    There used to be something meaningful here.

  4. #4
    Join Date
    Aug 2009
    Location
    Inside the Matrix...yes it has me, and it has you too.
    Posts
    1,896
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Hmm...one thing i see
    I may be wrong, because i never use GetSystemTime, I always use MarkTime, and I'm just guessing how it works, but GetSystemTime gets the time running from the start of the script, right? Or am i just an idiot .
    NYAN NYAN NYAN NYAN NYAN NYAN NYAN NYAN NYAN NYAN NYAN NYAN NYAN

  5. #5
    Join Date
    May 2007
    Location
    UK
    Posts
    4,007
    Mentioned
    1 Post(s)
    Quoted
    12 Post(s)

    Default

    You are right Bionicle.

  6. #6
    Join Date
    Aug 2009
    Location
    Inside the Matrix...yes it has me, and it has you too.
    Posts
    1,896
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by The Man View Post
    You are right Bionicle.
    OK, so if thats right, then in your MineOre function,
    SCAR Code:
    //stuff
      T := GetSystemTime;
      while (not FindOre(which, x, y)) do
      begin
        AntiRandoms;
        Case Random(2) Of
          0: Wait(200 + Random(500));
          1: SleepAndMoveMouse(400 + Random(1000));
        End;
        If (GetSystemTime - T > 60000) Then
        begin
          writeln('couldn''t find ore?'); //lol lol lol lol
          Result := false;
          exit;
        end;
    Wouldn't that mean that every time after a minute from the start of the script it would say it couldn't find the ore?

    EDIT: Oh wait, i didn't see the GetSystemTime - T aha, my bad nvm
    NYAN NYAN NYAN NYAN NYAN NYAN NYAN NYAN NYAN NYAN NYAN NYAN NYAN

  7. #7
    Join Date
    May 2007
    Location
    UK
    Posts
    4,007
    Mentioned
    1 Post(s)
    Quoted
    12 Post(s)

    Default

    Wait, no, it gets the time from when you called AFAIK.

  8. #8
    Join Date
    Feb 2009
    Posts
    1,447
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by bionicle1800 View Post
    Hmm...one thing i see
    I may be wrong, because i never use GetSystemTime, I always use MarkTime, and I'm just guessing how it works, but GetSystemTime gets the time running from the start of the script, right? Or am i just an idiot .
    SCAR Code:
    procedure MarkTime(var TimeMarker: Integer);
    begin
      TimeMarker := GetSystemTime;
    end;

    Quote Originally Posted by bionicle1800 View Post
    Or am i just an idiot .
    Your just an idiot.

  9. #9
    Join Date
    May 2007
    Location
    UK
    Posts
    4,007
    Mentioned
    1 Post(s)
    Quoted
    12 Post(s)

    Default

    Update to 1.1
    - Disguise fix.

    Left pass in
    Changed already though.
    Last edited by YoHoJo; 01-29-2010 at 03:05 AM.

  10. #10
    Join Date
    Nov 2007
    Location
    46696E6C616E64
    Posts
    3,069
    Mentioned
    44 Post(s)
    Quoted
    302 Post(s)

    Default

    offtopic: is double posting allowed these days?
    There used to be something meaningful here.

  11. #11
    Join Date
    Mar 2007
    Posts
    3,116
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Quote Originally Posted by Frement View Post
    offtopic: is double posting allowed these days?
    I see what you did there... Calling him out without saying it

  12. #12
    Join Date
    Nov 2007
    Location
    46696E6C616E64
    Posts
    3,069
    Mentioned
    44 Post(s)
    Quoted
    302 Post(s)

    Default

    Well i was just thinking because everyones doing it and no-one mentions :/
    There used to be something meaningful here.

  13. #13
    Join Date
    May 2007
    Location
    UK
    Posts
    4,007
    Mentioned
    1 Post(s)
    Quoted
    12 Post(s)

    Default

    No people arent supposed to, but if someone does ot every so often, who cares?
    It is a post on a forum...

  14. #14
    Join Date
    Nov 2007
    Location
    46696E6C616E64
    Posts
    3,069
    Mentioned
    44 Post(s)
    Quoted
    302 Post(s)

    Default

    Btw, your scripts stats wont work properly, you have gained xp but no ores mined.
    There used to be something meaningful here.

  15. #15
    Join Date
    May 2007
    Location
    UK
    Posts
    4,007
    Mentioned
    1 Post(s)
    Quoted
    12 Post(s)

    Default

    Yeh, will fix tomorrow.

  16. #16
    Join Date
    Feb 2006
    Location
    Tracy/Davis, California
    Posts
    12,631
    Mentioned
    135 Post(s)
    Quoted
    418 Post(s)

    Default

    Uggh wtf dude You stole my script intro design it's exactly the same!
    I'm flattered you like it.

  17. #17
    Join Date
    May 2007
    Location
    UK
    Posts
    4,007
    Mentioned
    1 Post(s)
    Quoted
    12 Post(s)

    Default

    Sorry YoHoJo, I am rubbish with stuff like that
    Has anyone tested yet?

    Huge Update: 1.2
    Fixed Ore Counting.
    Fixed Double Clicking.
    Fixed Stats.
    Fixed Proggy.
    Fixed Finding Ores.
    New AutoColors.

    Please test and report back.
    The Proggy saves itself so there is no excuse that you lost it :P

    Also got stats sigs!

    T~M
    Last edited by YoHoJo; 01-29-2010 at 03:07 AM.

  18. #18
    Join Date
    Aug 2009
    Location
    Inside the Matrix...yes it has me, and it has you too.
    Posts
    1,896
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by The Man View Post
    Also got stats sigs!

    T~M
    Hmm this looks familiar
    NYAN NYAN NYAN NYAN NYAN NYAN NYAN NYAN NYAN NYAN NYAN NYAN NYAN

  19. #19
    Join Date
    May 2007
    Location
    UK
    Posts
    4,007
    Mentioned
    1 Post(s)
    Quoted
    12 Post(s)

    Default

    Haha, can people please test this!
    It is fast and pretty much flawless

  20. #20
    Join Date
    Feb 2007
    Location
    Alberta,Canada
    Posts
    2,358
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    can I ask why you copied the exact design of YoJoHo's script all the way down to his stats signature? Just seems kind of weird to do.
    “Ignorance, the root and the stem of every evil.”

  21. #21
    Join Date
    Nov 2007
    Location
    46696E6C616E64
    Posts
    3,069
    Mentioned
    44 Post(s)
    Quoted
    302 Post(s)

    Default

    Quote Originally Posted by Blumblebee View Post
    can I ask why you copied the exact design of YoJoHo's script all the way down to his stats signature? Just seems kind of weird to do.
    Its actually my design, and i made the signatures. Im thinking of using it on the signature system i make. And ill add more templates too ofcourse.
    There used to be something meaningful here.

  22. #22
    Join Date
    May 2007
    Location
    UK
    Posts
    4,007
    Mentioned
    1 Post(s)
    Quoted
    12 Post(s)

    Default

    //---------------------------------------\\
    | The Man's Extravagant Power Miner EPM |
    | Version 1.0 |
    \\---------------------------------------//
    //-- Multiplayer (2)--
    | Player[0] Active: True|
    | Time Running: 9 Hours, 34 Minutes and 57 Seconds |
    | Ores Mined: 1501 |
    | Loads: 0 |
    | Ores Mined at a rate of 156 per hour |
    | Loads Mined at a rate of 0 per hour |
    | EXP Gained 105070
    | EXP Gained at a rate of 10967.3229145525 per hour |
    | Changed player: 0 time/s |
    | Please give feedback |
    \\----------------------------------------//
    | Player[1] Active: True|
    | Time Running: 9 Hours, 34 Minutes and 57 Seconds |
    | Ores Mined: 0 |
    | Loads: 0 |
    | Ores Mined at a rate of 156 per hour |
    | Loads Mined at a rate of 0 per hour |
    | EXP Gained 105070
    | EXP Gained at a rate of 10967.3229145525 per hour |
    | Changed player: 0 time/s |
    | Please give feedback |
    \\----------------------------------------//

  23. #23
    Join Date
    Jan 2010
    Posts
    5,227
    Mentioned
    6 Post(s)
    Quoted
    60 Post(s)

    Default

    "EXP Gained at a rate of 10967.3229145525 per hour"

    x] round it, brah.

  24. #24
    Join Date
    May 2007
    Location
    UK
    Posts
    4,007
    Mentioned
    1 Post(s)
    Quoted
    12 Post(s)

    Default

    Ok will do in next version.
    You testing?

  25. #25
    Join Date
    Jan 2010
    Posts
    5,227
    Mentioned
    6 Post(s)
    Quoted
    60 Post(s)

    Default

    Sorry, no SCAR/SRL on this comp. :<

Page 1 of 11 123 ... LastLast

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
  •