Page 3 of 8 FirstFirst 12345 ... LastLast
Results 51 to 75 of 200

Thread: [F2P] Iron Man - Mines Outside Resource Dungeon - Good XP and GP [F2P]

  1. #51
    Join Date
    Feb 2012
    Location
    Ålesund,Norway
    Posts
    281
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    [==========================================]
    [ Iron Man 1.2 ]
    [ by litoris ]
    [==========================================]
    [ Time Running : 35 Minutes And 38 Seconds ]
    [ Loads Done : 13 ]
    [ Ores Mined : 363 ]
    [ Xp Gained : 12705 ]
    [==========================================]
    [ Iron Man 1.2 ]
    [==========================================]
    Script Over
    Successfully executed.
    Compiled successfully in 1076 ms.
    stops always after 13 loads :S even if i have 999999 loads :S

    EDIT: [==================================================]
    [ Iron Man 1.2 ]
    [ by litoris ]
    [==================================================]
    [ Time Running : 2 Hours, 41 Minutes And 4 Seconds ]
    [ Loads Done : 37 ]
    [ Ores Mined : 1027 ]
    [ Xp Gained : 35945 ]
    [==================================================]
    [ Iron Man 1.2 ]
    [==================================================]
    Best proggie so far! stopped it myself after sloved random event Beekeeper; !
    Last edited by thomas1116; 06-09-2012 at 01:22 PM.

  2. #52
    Join Date
    Jun 2012
    Posts
    8
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Ye i got like 2 hours and 40minutes, with like 42k exp gained. so its working i guess.

    -Nicely done litoris@


    Edit: how can i cancel the anti breaks. Please of someone knows tell me, or show me what to delete. Thanks.

  3. #53
    Join Date
    Jul 2011
    Location
    /home/litoris
    Posts
    2,226
    Mentioned
    0 Post(s)
    Quoted
    159 Post(s)

    Default

    Quote Originally Posted by radamesmuniz View Post
    Edit: how can i cancel the anti breaks. Please of someone knows tell me, or show me what to delete. Thanks.
    The breaks are there to prevent you from getting banned, because nobody concentrates o n mining for that long. Either restart the bot every 30 minutes(antiban starts after 30 mins of run time) or learn a bit about scripting and remove it as a whole. We have a very nice tutorials section here: http://villavu.com/forum/forumdisplay.php?f=95
    Miner & Urn Crafter & 07 Chicken Killer
    SPS BlindWalk Tutorial

    Working on: Nothing

    teacher in every art, brought the fire that hath proved to mortals a means to mighty ends

  4. #54
    Join Date
    Jan 2008
    Location
    C:\
    Posts
    1,483
    Mentioned
    2 Post(s)
    Quoted
    2 Post(s)

    Default

    Hey litoris,

    I took a look through your script, and I've got a few suggestions for you. Note that they're mostly for shortening code and increasing efficiency; what you've got so far already works great.

    First off, you've got 4 functions (FindRock, FindDoorAtMine, FindDoorAtBank, OpenDBox) using the same basic structure. You should try using a case statement and combining them all. Also, take a look at the comments I put in:

    Simba Code:
    function FindObject(Which: String): Boolean; //Mine as well make it a function
    var
    TPA1, TPA2, RTPA: TPointArray;
    Color, Tol: TIntegerArray;
    Dist, nCTS, cts, i: Integer;
    ATPA: T2DPointArray;
    Option, Uptext: String;
    begin
      case Lowercase(Which) of
        'rock':
        begin
          nCTS := 2;
          Color := [3557498, 3829892];
          Tol := [5, 5];
          Dist := 10;
          Uptext := 'ron ore';
          Option := 'ine';
        end;
        //'bank door':
        //'mine door':
        //'dbox':
      end;
      Result := False;
      cts := GetColorToleranceSpeed;
      ColorToleranceSpeed(nCTS);
      FindColorsTolerance(TPA1, Color[0], MSX1, MSY1, MSX2, MSY2, Tol[0]);
      RAaSTPAEx(TPA1,3,3);
      FindColorsTolerance(TPA2, Color[1], MSX1, MSY1, MSX2, MSY2, Tol[1]);
      RAaSTPAEx(TPA2,3,3);

      RTPA := AND_TPA(TPA1,TPA2,0,Dist);

      if Length(RTPA) = 0 then
      begin
        writeln('Didn''t find '+Which+' colors.');
        ColorToleranceSpeed(cts);
        Exit;
      end;
      ColorToleranceSpeed(cts);
      ATPA := SplitTPAEx(RTPA, 15, 15);

      if (Length(ATPA) > 0) then
      begin
        SortATPASize(ATPA, true); //Not sure if using both is necessary/efficient
        SortATPAFrom(ATPA, Point(MSCX, MSCY));
      end else
        Exit;
      SMART_ClearCanvas;
      Proggy;
      for i:= 0 to high(ATPA) do
      begin
        Antirandoms;
        SMART_DebugTPA(False, ATPA[i]);
        MMouse(MiddleTPA(ATPA[i]).x, MiddleTPA(ATPA[i]).y, 5, 5);
        if (WaitUptext(Uptext, 300 + Random(100))) then
        begin
          ClickMouse2(mouse_right);
          if WaitOption(Option, 600) then //Should add an if..then here so it will continue if option isn't found
          begin
            Result := True;
            Exit;
          end;
        end;
      end;
    end;

    That way you can do this with your mining loop:

    Simba Code:
    procedure Minemine;   //clicks rock and waits
    var
    z : Integer;
    begin
      if FindObject('rock') then
      begin
        MarkTime(z);
        repeat
          Antiban;
          Antirandoms;
          Proggy;  //proggy while waiting
          Wait(600);
        until (not (Mining)) or (TimeFromMark(z) > (2400 + Random(300)))
      end;
    end;

    I think that's it. You've got a great script here, I hope to see more from you in the future

  5. #55
    Join Date
    Jul 2011
    Location
    /home/litoris
    Posts
    2,226
    Mentioned
    0 Post(s)
    Quoted
    159 Post(s)

    Default

    Thank you Runaway for doing the hard work with the object finding function! I was thinking of fixing it in a few days but was too lazy :P I'll finish the cases and put it in the next version.
    I think I can remove the size based sort, it was there before I had used AND_TPA and I didn't know much about scripting then.
    Miner & Urn Crafter & 07 Chicken Killer
    SPS BlindWalk Tutorial

    Working on: Nothing

    teacher in every art, brought the fire that hath proved to mortals a means to mighty ends

  6. #56
    Join Date
    Feb 2012
    Location
    Ålesund,Norway
    Posts
    281
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i love this script, made it run for 7,5 houers, without any problems!, Rs got updated, but i forgot too save the proggie :S gaineed 60-69 mining in less than 1 day :P

  7. #57
    Join Date
    Jul 2011
    Location
    /home/litoris
    Posts
    2,226
    Mentioned
    0 Post(s)
    Quoted
    159 Post(s)

    Default

    Quote Originally Posted by thomas1116 View Post
    i love this script, made it run for 7,5 houers, without any problems!, Rs got updated, but i forgot too save the proggie :S gaineed 60-69 mining in less than 1 day :P
    I suppose you are the thomas that made those commits to the stats page Glad you liked it, would be nice to have the proggy though. Do you remember the xp/h you got at least?
    Miner & Urn Crafter & 07 Chicken Killer
    SPS BlindWalk Tutorial

    Working on: Nothing

    teacher in every art, brought the fire that hath proved to mortals a means to mighty ends

  8. #58
    Join Date
    Feb 2012
    Location
    Ålesund,Norway
    Posts
    281
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Thumbs up

    Quote Originally Posted by litoris View Post
    I suppose you are the thomas that made those commits to the stats page Glad you liked it, would be nice to have the proggy though. Do you remember the xp/h you got at least?

    Yeah thats me! , erhmm i think i get around 23-27k xp/h using d pickaxe , it's smooth and fast, it even beat the other peeps when they mine at same place

    Keep up the good work Litoris!

    EDIT: Here's an another proggy Didn't find rock colors.
    Didn't find rock colors.
    Antiban mini break...
    Didn't find door colors at mine.
    [==================================================]
    [ Iron Man 1.2 ]
    [ by litoris ]
    [==================================================]
    [ Time Running : 8 Hours, 38 Minutes And 7 Seconds ]
    [ Loads Done : 89 ]
    [ Ores Mined : 2463 ]
    [ Xp Gained : 86205 ]
    [==================================================]
    [ Iron Man 1.2 ]
    [==================================================]
    SRL_Stats: Invalid time

    Been stuck for many houers at the dungoen door, it didnt get in to the deposit box, so i may be in trouble now :S But it's my own fail, i left it on and went to school :S thought it wud dcd me if it got messed up ,
    Last edited by thomas1116; 06-11-2012 at 01:44 PM.

  9. #59
    Join Date
    Jan 2012
    Posts
    550
    Mentioned
    2 Post(s)
    Quoted
    177 Post(s)

    Default

    I guess since yours is so good I can stop working on mine and devote my limited time to other scripting interests.

  10. #60
    Join Date
    Jul 2011
    Location
    /home/litoris
    Posts
    2,226
    Mentioned
    0 Post(s)
    Quoted
    159 Post(s)

    Default

    Quote Originally Posted by thomas1116 View Post
    Yeah thats me! , erhmm i think i get around 23-27k xp/h using d pickaxe , it's smooth and fast, it even beat the other peeps when they mine at same place

    Keep up the good work Litoris!

    EDIT: Here's an another proggy Didn't find rock colors.
    Didn't find rock colors.
    Antiban mini break...
    Didn't find door colors at mine.
    [==================================================]
    [ Iron Man 1.2 ]
    [ by litoris ]
    [==================================================]
    [ Time Running : 8 Hours, 38 Minutes And 7 Seconds ]
    [ Loads Done : 89 ]
    [ Ores Mined : 2463 ]
    [ Xp Gained : 86205 ]
    [==================================================]
    [ Iron Man 1.2 ]
    [==================================================]
    SRL_Stats: Invalid time

    Been stuck for many houers at the dungoen door, it didnt get in to the deposit box, so i may be in trouble now :S But it's my own fail, i left it on and went to school :S thought it wud dcd me if it got messed up ,
    Nice proggy there, putting it on the first page! I don't know about the color finding issue, but it ran straight for 8 hours so it can't be too bad :P
    Miner & Urn Crafter & 07 Chicken Killer
    SPS BlindWalk Tutorial

    Working on: Nothing

    teacher in every art, brought the fire that hath proved to mortals a means to mighty ends

  11. #61
    Join Date
    Jun 2012
    Posts
    14
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default


    What I think thomas1116 encountered was when the script finished banking, someone took all of the iron ores and the script itself couldnt find the colors at all and just froze there. it happened to me several times too.

    Edit:

    The script just freezes up like this
    Last edited by lilgoldfish; 06-12-2012 at 04:33 AM.

  12. #62
    Join Date
    Feb 2012
    Location
    Ålesund,Norway
    Posts
    281
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by lilgoldfish View Post

    What I think thomas1116 encountered was when the script finished banking, someone took all of the iron ores and the script itself couldnt find the colors at all and just froze there. it happened to me several times too.

    Edit:

    The script just freezes up like this
    Yeah same as me ! on the proggie i was on for 8 and a half houer its been stuck for 2-3 houers:S so Litoris, if u fix that , ima take the next flight an come kiss u !

  13. #63
    Join Date
    Jul 2011
    Location
    /home/litoris
    Posts
    2,226
    Mentioned
    0 Post(s)
    Quoted
    159 Post(s)

    Default

    Lol ı seriously have no idea why it would suddenly stop recognizing the colors. I haven't had much time to script these days, I will change some stuff and I will try to add a failsafe when it can't find the color for let's say, 20 times in a row.
    Miner & Urn Crafter & 07 Chicken Killer
    SPS BlindWalk Tutorial

    Working on: Nothing

    teacher in every art, brought the fire that hath proved to mortals a means to mighty ends

  14. #64
    Join Date
    Feb 2012
    Location
    Ålesund,Norway
    Posts
    281
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Talking

    Quote Originally Posted by litoris View Post
    Lol ı seriously have no idea why it would suddenly stop recognizing the colors. I haven't had much time to script these days, I will change some stuff and I will try to add a failsafe when it can't find the color for let's say, 20 times in a row.
    Sounds great! if u cud speed it up at anyplaces that wud be fine to and don't make it drop gems or anything and maby inprove the antiban a lil ?

    Just sum ideas

  15. #65
    Join Date
    Jun 2012
    Posts
    14
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by thomas1116 View Post
    Sounds great! if u cud speed it up at anyplaces that wud be fine to and don't make it drop gems or anything and maby inprove the antiban a lil ?

    Just sum ideas
    it doesnt drop gems :P.



  16. #66
    Join Date
    Feb 2012
    Location
    Ålesund,Norway
    Posts
    281
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by lilgoldfish View Post
    it doesnt drop gems :P.


    hmm ok , i just have so few gems in my bank s i thought he dropped it :S but then its ok , Wish he cud add COAL SUPPORT! i need them

  17. #67
    Join Date
    Jul 2011
    Location
    /home/litoris
    Posts
    2,226
    Mentioned
    0 Post(s)
    Quoted
    159 Post(s)

    Default

    Why do you guys want gems dropped? It's free money.
    Miner & Urn Crafter & 07 Chicken Killer
    SPS BlindWalk Tutorial

    Working on: Nothing

    teacher in every art, brought the fire that hath proved to mortals a means to mighty ends

  18. #68
    Join Date
    Feb 2012
    Location
    Ålesund,Norway
    Posts
    281
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by litoris View Post
    Why do you guys want gems dropped? It's free money.
    i dont want them dropped, i just thought the bot did it , cus i had so few gems in my bank ... but i gto bed cya! post any news if there is some features comming soon ?

  19. #69
    Join Date
    Jun 2012
    Posts
    14
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    To my knowledge it's impossible to have a 8 hour proggy....the RS client stops you after 6 hours so you have to stop and run the script again after 6 hours. 8+ hours would mean it got stuck. and the timer just kept going.

  20. #70
    Join Date
    Feb 2012
    Location
    Ålesund,Norway
    Posts
    281
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by lilgoldfish View Post
    To my knowledge it's impossible to have a 8 hour proggy....the RS client stops you after 6 hours so you have to stop and run the script again after 6 hours. 8+ hours would mean it got stuck. and the timer just kept going.
    yeah i know! but it was stuck but still online .... and now it gets stuck at deposite box too :S

  21. #71
    Join Date
    Jul 2011
    Location
    /home/litoris
    Posts
    2,226
    Mentioned
    0 Post(s)
    Quoted
    159 Post(s)

    Default

    I've been working on this today, will probably release it tomorrow (~18 hours later)
    It will log out and log back in if it can't find the color too many times. Changing the colors doesn't help at all -- I have had it stuck at the rocks only once and I have ran it for 20+ hours total, while some people get that after half an hour of running.
    Miner & Urn Crafter & 07 Chicken Killer
    SPS BlindWalk Tutorial

    Working on: Nothing

    teacher in every art, brought the fire that hath proved to mortals a means to mighty ends

  22. #72
    Join Date
    Jun 2012
    Posts
    25
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thanks for the script bro! I will test this script out and proggy it as soon as I have the time (writing and perfecting my 2nd script at the moment ) . Looks very good so far looking at the script. I am new and even with my super limited knowledge of scripting, this looks great!

  23. #73
    Join Date
    Feb 2012
    Location
    Ålesund,Norway
    Posts
    281
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by litoris View Post
    I've been working on this today, will probably release it tomorrow (~18 hours later)
    It will log out and log back in if it can't find the color too many times. Changing the colors doesn't help at all -- I have had it stuck at the rocks only once and I have ran it for 20+ hours total, while some people get that after half an hour of running.
    Yeah it can sometimes get stuck even after 10 min :S
    But keep on working on it ! Thanks , !

  24. #74
    Join Date
    Jul 2011
    Location
    /home/litoris
    Posts
    2,226
    Mentioned
    0 Post(s)
    Quoted
    159 Post(s)

    Default

    Script updated!

    It's now more compact thanks to Runaway. Will log out and back in if it gets stuck for too long. Will show what it's doing on the title when running.

    Post proggies please!
    Miner & Urn Crafter & 07 Chicken Killer
    SPS BlindWalk Tutorial

    Working on: Nothing

    teacher in every art, brought the fire that hath proved to mortals a means to mighty ends

  25. #75
    Join Date
    Jul 2011
    Location
    /home/litoris
    Posts
    2,226
    Mentioned
    0 Post(s)
    Quoted
    159 Post(s)

    Default

    23 people downloaded the script, no comments...
    Would be really nice if you could give me some feedback and proggies.
    Miner & Urn Crafter & 07 Chicken Killer
    SPS BlindWalk Tutorial

    Working on: Nothing

    teacher in every art, brought the fire that hath proved to mortals a means to mighty ends

Page 3 of 8 FirstFirst 12345 ... 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
  •