Page 9 of 38 FirstFirst ... 789101119 ... LastLast
Results 201 to 225 of 943

Thread: [SRL]SumPowerMiner

  1. #201
    Join Date
    Oct 2006
    Posts
    491
    Mentioned
    0 Post(s)
    Quoted
    41 Post(s)

    Default

    ohhh okkkk wow i never knew that...i just thought we put it in each scipt...like wizzups has an area to put it in =/ also does certer solver work? mines is set to false.... and whats certer's anyways?
    and also you saw my post how it clicks in the same spot on the rock or near it seems it should be more random altogh other than that this script is owning wizzups in terms of randomness etc =)

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

    Default

    I'll test it tonight and post prog tomorrow. Looks pretty good.

  3. #203
    Join Date
    Jan 2007
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    im such a nub can sum1 explain. first. where do i click to dl this?

  4. #204
    Join Date
    Jun 2006
    Location
    Tennessee, USA
    Posts
    2,603
    Mentioned
    1 Post(s)
    Quoted
    46 Post(s)

    Default

    Quote Originally Posted by revolver View Post
    im such a nub can sum1 explain. first. where do i click to dl this?
    on the first page its over on the far right, just download the latest version


    heres a proggy i got today, i just stopped it because i had to do other stuff on the computer. it was still running good.

    SCAR Code:
    <============= SumPowerMiner ==============>
    <========= -0.65- Progress Report =========>
    /==========================================\
          Worked for 4 Hours, 39 Minutes and 41 Seconds
          Mined 676 ores.
          Avoided gas 44 times.
    \==========================================/
    SCAR Code:
    /~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
    |     SRL Randoms Report       |
    |    [url]www.villu-reborn.com[/url]      |
    |~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
    | Logged in              :  16 |
    | Trade[s] Missed        :  3  |
    | Fight Random[s]        :  3  |
    | Talking Random[s]      :  4  |
    | Rick[s] Solved         :  1  |
    | OldMen Solved          :  1  |
    | SandWich[es] Solved    :  1  |
    | New Box[es] Solved     :  3  |
    | ScapeRune[s] found     :  1  |
    | Pickaxe[s] Attached    :  2  |
    \~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/

    i love it! heres another proggy from last night. it ran pretty much perfectly.
    SCAR Code:
    <============= SumPowerMiner ==============>
    <========= -0.65- Progress Report =========>
    /==========================================\
          Worked for 8 Hours, 54 Minutes and 42 Seconds
          Mined 1437 ores.
          Avoided gas 33 times.
    \==========================================/
    SCAR Code:
    /~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
    |     SRL Randoms Report       |
    |    [url]www.villu-reborn.com[/url]      |
    |~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
    | Logged in              :  31 |
    | Trade[s] Missed        :  2  |
    | Fight Random[s]        :  5  |
    | Talking Random[s]      :  11 |
    | Rick[s] Solved         :  2  |
    | OldMen Solved          :  2  |
    | SandWich[es] Missed    :  1  |
    | Lamp[s] Solved         :  2  |
    | Frog[s] Solved         :  1  |
    | Frog[s] Missed         :  1  |
    | New Box[es] Solved     :  11 |
    | Pickaxe[s] Attached    :  8  |
    \~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/

  5. #205
    Join Date
    Feb 2006
    Location
    L.A, USA
    Posts
    1,632
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Yay, you learned standards. No more capitilizing the bold. >;D

    while do's are prettier than repeat.untils

    Cool mining procedures. :P

  6. #206
    Join Date
    Jun 2006
    Location
    The Netherlands
    Posts
    2,984
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    Yes yes and ty XD
    Administrator's Warning:


  7. #207
    Join Date
    Feb 2006
    Location
    Amsterdam
    Posts
    13,692
    Mentioned
    146 Post(s)
    Quoted
    130 Post(s)

    Default

    Quote Originally Posted by WhiteShadow View Post
    Yay, you learned standards. No more capitilizing the bold. >;D

    while do's are prettier than repeat.untils

    Cool mining procedures. :P
    - The Capitalizing the bold was mostly because I do that to make a script easier to read. If you copy it from me and don't "standarize" it your way, they will stay Capitalized.

    About the while do loops, what makes you think that!!?
    I Totally disagree, repeat looks can be more handy than While Do's.
    Let's say you Want to run some code at least once, and according to the result, do it again.
    I am sure you will prefer Repeat Until there.
    Repeat enters a loop, while the while loop checks the given argument first. So it doesn't run anything.

    Repeat is similar to while you put something like this in it:

    Code:
    repeat
      if Boolean Then Break;
      Doyouwhiledoloopstuffhere
    Until YourWhileDoStatement;
    So, actually The Repeat Until is more intelligent, unless, of course you cannot follow the code..



    The best way to contact me is by email, which you can find on my website: http://wizzup.org
    I also get email notifications of private messages, though.

    Simba (on Twitter | Group on Villavu | Website | Stable/Unstable releases
    Documentation | Source | Simba Bug Tracker on Github and Villavu )


    My (Blog | Website)

  8. #208
    Join Date
    Jun 2006
    Location
    The Netherlands
    Posts
    2,984
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    Ill give you another example when a while is more handy,

    You want to repeat walking to the west in the mining guild, until you see the ladder color, use a repeat or a while ?

    I would use a while, if it already finds the laddercolor then theres no need of walking once. Im not saying repeats arent handy, but i do think while loops look nicer ^^
    Administrator's Warning:


  9. #209
    Join Date
    Sep 2006
    Posts
    5,219
    Mentioned
    4 Post(s)
    Quoted
    1 Post(s)

    Default

    Maybe they look nicer, but everything you can do with a while, you can do with a repeat, plus you can do more with repeat. Same with for. Repeat ftw!!! lol

  10. #210
    Join Date
    Jan 2007
    Posts
    12
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thanks... I need a better powerminer... :P

  11. #211
    Join Date
    Feb 2006
    Posts
    920
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    repeats is for noobs, get it?
    It's like the first thing you learn, and many people is to shortsighted to actually discover the power of using a while..

  12. #212
    Join Date
    Jun 2006
    Location
    The Netherlands
    Posts
    2,984
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    Thank you.
    Administrator's Warning:


  13. #213
    Join Date
    Jan 2007
    Posts
    71
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    @Sum, how many Ppl have purchased your guildminer...I am considering it.


    \\powerminer seems to be great, more success than i have had with others.

  14. #214
    Join Date
    Jun 2006
    Location
    The Netherlands
    Posts
    2,984
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    Near 35 peeps bought it ^^
    Administrator's Warning:


  15. #215
    Join Date
    Feb 2006
    Location
    Amsterdam
    Posts
    13,692
    Mentioned
    146 Post(s)
    Quoted
    130 Post(s)

    Default

    Quote Originally Posted by Lorax View Post
    repeats is for noobs, get it?
    It's like the first thing you learn, and many people is to shortsighted to actually discover the power of using a while..
    Alright...

    SCAR Code:
    function FindColorsArray(Color, Tolerance, Step, MaxTol: Integer): TPointArray;
    var
      Count, tx, ty: Integer;
    begin
      while (not FindColorTolerance(tx, ty, Color, MSX1, MSY1, MSX2, MSY2, Tolerance + Count * Step))and
            (Count * Step <= MaxTol) do
        Count := Count + 1;
      FindColorsSpiralTolerance(MSCX, MSCY, Result, Color, MSX1, MSY1, MSX2, MSY2, Tolerance + Count * Step);
    end;

    SCAR Code:
    Function PowerMine:Boolean;

    Var
      RockMark: Integer;
      Failed: Boolean;


    Begin
      If Not FindOre(OreTol) Then
      Begin
        OreCounter := OreCounter + 1;
        Exit;
      End;
      GetMousePos(X, Y);
    //  If FindGas(X, Y) Then
      If FindGas(X, Y - 20) Then
      Begin
        FTWaitAll(200);
        Exit;
      End;
      Mouse(X, Y, 0, 0, True);
      OreCounter := 1;
      OreColor := GetColor(X, Y);
      MarkTime(RockMark)
      Repeat
        Wait(Speed);
        X := Dx;
        Y := Dy;
        If Not FindColorSpiralTolerance(Dx, Dy, OreColor, MSX1, MSY1, MSX2, MSY2, OreTol)
        Or (Distance(X, Y, Dx, Dy) > 20) Then
        Begin
          Failed := True;
          Break;
        End;
      Until (TimeFromMark(RockMark) > 3000);
    //  Until (TimeFromMark(RockMark) > 1500);
      If GetColor(195, 426) = 0 Then Failed := False;
      If Failed Then
        Exit;

      X := Dx;
      Y := Dy;

      FindPick;
      Result := True;
      MarkTime(RockMark);
      Repeat
        Wait(Speed);
        If FindGas(Dx, Dy - 20) Then
    //    If FindGas(Dx, Dy) Then
        Begin
          Mouse(646, 82, 3, 3, True);
          FTWaitAll(250);
        End;
        If Random(4) = 3 Then FindNormalRandoms;
        Dx := X;
        Dy := Y;
        If Not FindColorSpiralTolerance(Dx, Dy, OreColor, MSX1, MSY1, MSX2, MSY2, OreTol) Then
        Begin
          Exit;
        End;
        FindPick;
        If FindFight Then
        Begin
          MakeCompass('N');
          RunTo(RunDir, True);
          MakeCompass(LoginFace);
          Break;
        End;
      Until (TimeFromMark(RockMark)  > SecondsToWait * 1000) Or (Distance(X, Y, Dx, Dy) > 10);
    End;

    It's just what-ever you prefer...



    The best way to contact me is by email, which you can find on my website: http://wizzup.org
    I also get email notifications of private messages, though.

    Simba (on Twitter | Group on Villavu | Website | Stable/Unstable releases
    Documentation | Source | Simba Bug Tracker on Github and Villavu )


    My (Blog | Website)

  16. #216
    Join Date
    Feb 2006
    Posts
    920
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Totally correct yoú are..
    That's why we have different scripting styles..
    and different scripts..

  17. #217
    Join Date
    Feb 2006
    Location
    Amsterdam
    Posts
    13,692
    Mentioned
    146 Post(s)
    Quoted
    130 Post(s)

    Default

    And different results.



    The best way to contact me is by email, which you can find on my website: http://wizzup.org
    I also get email notifications of private messages, though.

    Simba (on Twitter | Group on Villavu | Website | Stable/Unstable releases
    Documentation | Source | Simba Bug Tracker on Github and Villavu )


    My (Blog | Website)

  18. #218
    Join Date
    Jun 2006
    Location
    The Netherlands
    Posts
    2,984
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    Should i go make a thread for this or are we going to continue the discussion here ?
    Administrator's Warning:


  19. #219
    Join Date
    Feb 2006
    Location
    Amsterdam
    Posts
    13,692
    Mentioned
    146 Post(s)
    Quoted
    130 Post(s)

    Default

    i am just helping you get your page count up.

    Okay I will stop this discussion, one last thing though.

    Maybe make your main loop at while Lorax? For comments just message me, andhelp me stop flooding the thread.



    The best way to contact me is by email, which you can find on my website: http://wizzup.org
    I also get email notifications of private messages, though.

    Simba (on Twitter | Group on Villavu | Website | Stable/Unstable releases
    Documentation | Source | Simba Bug Tracker on Github and Villavu )


    My (Blog | Website)

  20. #220
    Join Date
    Jun 2006
    Location
    The Netherlands
    Posts
    2,984
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    By all means, do continue XD
    Administrator's Warning:


  21. #221
    Join Date
    Jan 2007
    Posts
    6
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    this works well for me, frog random got me tho so far

  22. #222
    Join Date
    Jun 2006
    Location
    Tennessee, USA
    Posts
    2,603
    Mentioned
    1 Post(s)
    Quoted
    46 Post(s)

    Default

    Quote Originally Posted by nut$y View Post
    this works well for me, frog random got me tho so far
    yeah sometimes the frog random works for me and sometimes it doesnt. thats in SRL though and not the script. but neways, post some of your proggys

  23. #223
    Join Date
    Jan 2007
    Posts
    5
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    hey i cant get it to work.its the only script i got to work without errors but it wont click or find the ore just moves randomly.can you send me the script i just need to use 1 player.myth109@gmail.com. my acc name is myscape6 i will put the pass in. plz

  24. #224
    Join Date
    Dec 2006
    Posts
    249
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by myscape6 View Post
    hey i cant get it to work.its the only script i got to work without errors but it wont click or find the ore just moves randomly.can you send me the script i just need to use 1 player.myth109@gmail.com. my acc name is myscape6 i will put the pass in. plz
    This script works for me.

    allways make sure that SRL is installed correctly and that you are using the correct setting in the RS client. (low detail 32 bit colour).

    If you want to re download the script go to post no.1 and re save it. make sure you allow it to check for updates, as this script will download a new version when they are made.


    Here is my last proggie .

    /~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
    | SRL Randoms Report |
    | www.villu-reborn.com |
    |~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
    | Logged in : 59 |
    | Trade[s] Missed : 1 |
    | Fight Random[s] : 14 |
    | Talking Random[s] : 26 |
    | Dwarf[s] Solved : 1 |
    | Rick[s] Solved : 4 |
    | OldMen Solved : 11 |
    | Lamp[s] Solved : 4 |
    | Frog[s] Solved : 3 |
    | Capn Hand[s] Solved : 1 |
    | Certer[s] Solved : 1 |
    | New Box[es] Solved : 8 |
    | Quiz[es] found : 1 |
    | Pickaxe[s] Attached : 6 |
    \~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/

    <============= SumPowerMiner ==============>
    <========= -0.65- Progress Report =========>
    /==========================================\
    Worked for 14 Hours, 53 Minutes and 24 Seconds
    Mined 4416 ores.
    Avoided gas 9 times.
    \==========================================/

    ScarPreRelease 3.23 rev 80, Includes - Dev Rev 457

  25. #225
    Join Date
    Jan 2007
    Posts
    3
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    pretty good.
    but this sometimes doesnt work well on the sandwich lady and i got hit my gas quite a few times.

Page 9 of 38 FirstFirst ... 789101119 ... LastLast

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. someone help please with sumpowerminer
    By cameron7324 in forum OSR Help
    Replies: 2
    Last Post: 07-19-2007, 03:20 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
  •