Page 3 of 12 FirstFirst 12345 ... LastLast
Results 51 to 75 of 294

Thread: Almost AIO PowerMiner

  1. #51
    Join Date
    Nov 2008
    Location
    Norway, Alesund
    Posts
    924
    Mentioned
    0 Post(s)
    Quoted
    37 Post(s)

    Default

    Quote Originally Posted by BMWxi View Post
    Nice, was this normal dropping or are the hotkeys working for you?
    Method iron.
    Keys dropping.

    Ok So I going to make some trouble for you
    Simba Code:
    begin
      Smart_FixSpeed:= true; // should be useful, since IDK why,
    // but my smart was loading pretty long time
    // have no idea why this accures. but Smart_FixSpeed:= true;  fixes it.
      SetupSRL;
      DeclarePlayers;
      Repeat
        StartLogin;
        CheckFriends;
        Repeat
          if not LoggedIn then LoginPlayer;
          MineOre;
          DropGems;
        Until(not LoggedIn) or (InvFull);
        LoginPlayer;
      Until(InvFull);
    end.


    Since you are using for dropping
    Simba Code:
    TypeSendEx('1', False);
    It sometime fills up chat with characters. maybe it was my fault IDK. should do further investigation though.

    Another thing is about your mining loops.
    Simba Code:
    Until(InvCount=PlusOne) Or (TimeFromMark(OreCounter) > 10000);

    I'M currently interested in time fail-safe ( I guess you used Yohojo tutorial for that ), anyways my point is. that differences between level may take another time to mine ore out. So if someone take your rock, you standing there like bot, if you know what i mean
    Anyways, you can do create function which returns integer. depending on your chosen material and level, you will need some testing with different accounts for 5 minutes etc. each.. I guess in most cases, if level is below 40 use bronze pickax (or check which is have would be more accurate but takes longer time to do that). and after 40 level it should calculate it with rune pickax.

  2. #52
    Join Date
    Jun 2012
    Posts
    4,867
    Mentioned
    74 Post(s)
    Quoted
    1663 Post(s)

    Default

    Quote Originally Posted by Laimonas171 View Post
    Method iron.
    Keys dropping.
    So it's working for you

    Since you are using for dropping
    Simba Code:
    TypeSendEx('1', False);
    It sometime fills up chat with characters. maybe it was my fault IDK. should do further investigation though.
    This started happening to me a few days ago, but I hadn't changed anything to make it different..
    Another thing is about your mining loops.
    Simba Code:
    Until(InvCount=PlusOne) Or (TimeFromMark(OreCounter) > 10000);

    I'M currently interested in time fail-safe ( I guess you used Yohojo tutorial for that ), anyways my point is. that differences between level may take another time to mine ore out. So if someone take your rock, you standing there like bot, if you know what i mean
    Anyways, you can do create function which returns integer. depending on your chosen material and level, you will need some testing with different accounts for 5 minutes etc. each.. I guess in most cases, if level is below 40 use bronze pickax (or check which is have would be more accurate but takes longer time to do that). and after 40 level it should calculate it with rune pickax.
    Yeah, this is just a basic thing to make sure it doesn't wait for an ore it will never get. That's a good idea, I think I'll have the user input their mining level to the nearest 10, for example 16 -> 2, 73 -> 7, 80 -> 8, and so on. Will need a significant amount of testing though. Unfortunately when a rock gets stolen, you keep "mining" until the rock respawns, so pixelshift wouldn't help as much. Also, at lower levels your character appears to pause even while it is still mining which would throw it off.

  3. #53
    Join Date
    Nov 2008
    Location
    Norway, Alesund
    Posts
    924
    Mentioned
    0 Post(s)
    Quoted
    37 Post(s)

    Default

    Quote Originally Posted by BMWxi View Post
    So it's working for you


    This started happening to me a few days ago, but I hadn't changed anything to make it different..


    Yeah, this is just a basic thing to make sure it doesn't wait for an ore it will never get. That's a good idea, I think I'll have the user input their mining level to the nearest 10, for example 16 -> 2, 73 -> 7, 80 -> 8, and so on. Will need a significant amount of testing though. Unfortunately when a rock gets stolen, you keep "mining" until the rock respawns, so pixelshift wouldn't help as much. Also, at lower levels your character appears to pause even while it is still mining which would throw it off.
    You can get user level from skill tab.
    btw. I forget to mantion that i have change script a bit after all
    Simba Code:
    TypeSendEx('1', False);
    //to
    SendKeys('1', 12+ Random(12), 12+ Random(12));

  4. #54
    Join Date
    Nov 2012
    Posts
    19
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    Quote Originally Posted by Laimonas171 View Post
    btw. I forget to mantion that i have change script a bit after all
    Simba Code:
    TypeSendEx('1', False);
    //to
    SendKeys('1', 12+ Random(12), 12+ Random(12));
    Ahhhh it works perfect now!

  5. #55
    Join Date
    Jun 2012
    Posts
    4,867
    Mentioned
    74 Post(s)
    Quoted
    1663 Post(s)

    Default

    Thanks Laimonas, I'll add that to the next release along with a working 6 hour fix

  6. #56
    Join Date
    May 2012
    Posts
    103
    Mentioned
    0 Post(s)
    Quoted
    41 Post(s)

    Default

    only trouble is that when it presses "1" to drop the ore it keeps going straight into my chat box and eventually spams 1...

    i start the bot with it saying [press enter to talk] however it clicks 1 and it starts typing 1???

  7. #57
    Join Date
    Jun 2012
    Posts
    4,867
    Mentioned
    74 Post(s)
    Quoted
    1663 Post(s)

    Default

    6
    Quote Originally Posted by zunkill View Post
    only trouble is that when it presses "1" to drop the ore it keeps going straight into my chat box and eventually spams 1...

    i start the bot with it saying [press enter to talk] however it clicks 1 and it starts typing 1???
    Yeah, I was stumped on that, but a few posts above Laimonas posted a possible fix. I'll upload a new version with this and a working six hour fix very soon

  8. #58
    Join Date
    May 2012
    Posts
    103
    Mentioned
    0 Post(s)
    Quoted
    41 Post(s)

    Default

    thank you other then that the bot is beast ^^

    EDIT: i changed the type thing to

    Simba Code:
    SendKeys('1', 12+ Random(12), 12+ Random(12));

    but it still says 1 in chat log. even though i stared with press enter to chat...??? is it a timing thing?

    EDIT 2: i noticed after that you have different sections for copper tin etc XD i found the iron one and changed it. it now works beastly i love you. <3
    Last edited by zunkill; 11-30-2012 at 11:11 PM.

  9. #59
    Join Date
    Jun 2012
    Posts
    4,867
    Mentioned
    74 Post(s)
    Quoted
    1663 Post(s)

    Default

    V1.0! Check the OP!

    Progress Report:
    ~~~~~~~~~~~~Almost AIO PowerMiner~~~~~~~~~~
                     ~By BMWxi~               
    Iron Mined: 5385 (562 P/H)
    Mining XP earned: 188475 (19692 P/H)
    Total Time: 9 Hours, 34 Minutes and 15 Seconds
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~


    Woo! Still running!

  10. #60
    Join Date
    Nov 2008
    Location
    Norway, Alesund
    Posts
    924
    Mentioned
    0 Post(s)
    Quoted
    37 Post(s)

    Default

    Quote Originally Posted by BMWxi View Post
    V1.0! Check the OP!

    Progress Report:
    ~~~~~~~~~~~~Almost AIO PowerMiner~~~~~~~~~~
                     ~By BMWxi~               
    Iron Mined: 5385 (562 P/H)
    Mining XP earned: 188475 (19692 P/H)
    Total Time: 9 Hours, 34 Minutes and 15 Seconds
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~


    Woo! Still running!
    Have to try! Thanks for rep as well!

    EDIT:
    Make sure you declare worlds as well, since imagine situation
    20 F2P users uses your script at rimington most common f2p place for powermining. And guess what.. PARTY AT WORLD 10
    Since you declare world players are able too choose world they want to login. In my case it's 84 since it's members world and i know there will be no players.

    Simba Code:
    procedure DeclarePlayers;
    begin
      HowManyPlayers := 1;
      NumberOfPlayers(HowManyPlayers);
      CurrentPlayer := 0;

      with Players[0] do
      begin
        Name       := ''; // Player username
        Pass       := ''; // Player password
        BoxRewards := ['XP', 'ostume', 'mote', 'oins', 'une', 'ssence'];
        WorldInfo   := [84]; // PRETTY SURE YOU WOULD LIKE TO HAVE THIS ONE
        LampSkill  := Skill_Mining;
        Active     := True;
      end;
    end;

    by the way no need to change StartLogin; procedure.

  11. #61
    Join Date
    Jun 2012
    Posts
    4,867
    Mentioned
    74 Post(s)
    Quoted
    1663 Post(s)

    Default

    Quote Originally Posted by Laimonas171 View Post
    Have to try! Thanks for rep as well!

    EDIT:
    Make sure you declare worlds as well, since imagine situation
    20 F2P users uses your script at rimington most common f2p place for powermining. And guess what.. PARTY AT WORLD 10
    Since you declare world players are able too choose world they want to login. In my case it's 84 since it's members world and i know there will be no players.

    Simba Code:
    procedure DeclarePlayers;
    begin
      HowManyPlayers := 1;
      NumberOfPlayers(HowManyPlayers);
      CurrentPlayer := 0;

      with Players[0] do
      begin
        Name       := ''; // Player username
        Pass       := ''; // Player password
        BoxRewards := ['XP', 'ostume', 'mote', 'oins', 'une', 'ssence'];
        WorldInfo   := [84]; // PRETTY SURE YOU WOULD LIKE TO HAVE THIS ONE
        LampSkill  := Skill_Mining;
        Active     := True;
      end;
    end;

    by the way no need to change StartLogin; procedure.
    Ehh, I always need to hop for a bit to find a free world anyway, there is never one special world that is always free. Maybe in a future update I'll add it, thanks though.

  12. #62
    Join Date
    Jul 2012
    Location
    London
    Posts
    1,549
    Mentioned
    0 Post(s)
    Quoted
    86 Post(s)

    Default

    I'm using v1.0 (2) still dropping ores the old way?

    Don't worry works perfectly now just forgot to lock my action bar
    Last edited by Mr[S]; 12-01-2012 at 12:17 AM.

  13. #63
    Join Date
    Nov 2008
    Location
    Norway, Alesund
    Posts
    924
    Mentioned
    0 Post(s)
    Quoted
    37 Post(s)

    Default

    Quote Originally Posted by BMWxi View Post
    Ehh, I always need to hop for a bit to find a free world anyway, there is never one special world that is always free. Maybe in a future update I'll add it, thanks though.
    yeah, it's not necessary to do not but I missed it and letting you know to make your script even better! though works very nice..
    but in rimingtom sometimes he goes too much in eastern spot (there is only 2 or 3 iron rocks) You also may want to add "optional" settings which states
    Simba Code:
    GoToMiningSpot := true; //false as default
    and during the main loop lets say after 15 minutes +- random 5minutes he should do that if GoToMiningSpot := true;

    Simba Code:
    If FindSymbol(x, y, 'mining') Then
      Mouse(x, y, 5, 5, true); // just to make sure he is in center of mining spot.
    // (optional since not all ore are close to center)

  14. #64
    Join Date
    Jun 2012
    Posts
    4,867
    Mentioned
    74 Post(s)
    Quoted
    1663 Post(s)

    Default

    Quote Originally Posted by Mr[S] View Post
    I'm using v1.0 (2) still dropping ores the old way?

    Don't worry works perfectly now just forgot to lock my action bar
    Good to hear, thanks for trying it out. Let's see some epic proggies guys!

  15. #65
    Join Date
    Nov 2008
    Location
    Norway, Alesund
    Posts
    924
    Mentioned
    0 Post(s)
    Quoted
    37 Post(s)

    Default

    Quote Originally Posted by BMWxi View Post
    Good to hear, thanks for trying it out. Let's see some epic proggies guys!
    Leaving for night, we will see what i get though! good night for now!

  16. #66
    Join Date
    Jun 2012
    Posts
    4,867
    Mentioned
    74 Post(s)
    Quoted
    1663 Post(s)

    Default

    Quote Originally Posted by Laimonas171 View Post
    yeah, it's not necessary to do not but I missed it and letting you know to make your script even better! though works very nice..
    but in rimingtom sometimes he goes too much in eastern spot (there is only 2 or 3 iron rocks) You also may want to add "optional" settings which states
    Simba Code:
    GoToMiningSpot := true; //false as default
    and during the main loop lets say after 15 minutes +- random 5minutes he should do that if GoToMiningSpot := true;

    Simba Code:
    If FindSymbol(x, y, 'mining') Then
      Mouse(x, y, 5, 5, true); // just to make sure he is in center of mining spot.
    // (optional since not all ore are close to center)
    I like the idea, definitely going to add this!

  17. #67
    Join Date
    Nov 2008
    Location
    Norway, Alesund
    Posts
    924
    Mentioned
    0 Post(s)
    Quoted
    37 Post(s)

    Default

    Progress Report:
    ~~~~~~~~~~~~Almost AIO PowerMiner~~~~~~~~~~
                     ~By BMWxi~               
    Iron Mined: 6038 (658 P/H)
    Mining XP earned: 211330 (23033 P/H)
    Total Time: 9 Hours, 10 Minutes and 30 Seconds
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~


    Still running, though with gayish wings now... FESTIVE AURA RRRggghh.

  18. #68
    Join Date
    Jul 2012
    Location
    London
    Posts
    1,549
    Mentioned
    0 Post(s)
    Quoted
    86 Post(s)

    Default

    12 hours and still running, this is going to be one big proggie

  19. #69
    Join Date
    Jun 2012
    Posts
    4,867
    Mentioned
    74 Post(s)
    Quoted
    1663 Post(s)

    Default

    Awesome proggy Laimonas! And Sharm be sure to post yours, my longest was 12:30

  20. #70
    Join Date
    Nov 2012
    Location
    Vice City
    Posts
    50
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    proggie for older verison
    ~~~~~~~~~~~~Almost AIO PowerMiner~~~~~~~~~~
    ~By BMWxi~
    Gold Mined: 2017 (335 P/H)
    Mining XP earned: 131105 (21815 P/H)
    Total Time: 6 Hours, 35 Seconds
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    will be trying out the new 6hr one and will post proggie
    thanks to BMXxi for the scripting and laimonas for you minor fixes :]

  21. #71
    Join Date
    Jul 2012
    Location
    London
    Posts
    1,549
    Mentioned
    0 Post(s)
    Quoted
    86 Post(s)

    Default

    ~~~~~~~~~~~~Almost AIO PowerMiner~~~~~~~~~~
    ~By BMWxi~
    Iron Mined: 19076 (595 P/H)
    Mining XP earned: 667660 (-16392 P/H)
    Total Time: 32 Hours, 3 Minutes and 0 Seconds
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    The xp p/h kind of messed up near the end because my computer was on for so long...but I was doing around 22k p/h

    Thank you for 70-80 mining <3

  22. #72
    Join Date
    Nov 2008
    Location
    Norway, Alesund
    Posts
    924
    Mentioned
    0 Post(s)
    Quoted
    37 Post(s)

    Default

    I'm out of home for two days and Bot still running.. But As I mantioned too far of center of mining spot problem, I guess proggy wouldn't be so great. Though I'm pretty sure then i get back I will have 80+ mining!

    I will edit this after few minutes, goingt to add some screens. with another account.

    EDIT:

    so this is spot where i left my one account. Here is 4 rocks, and no need wait till new rock apears, since then you mine 1 another is already there (unless someone mining together really fast enough). as you see mining symbol it quite in center of that.


    the issue i get (I posted possible fix above few messages )
    It goes slightly east, and there is 2 rocks only, and it mines it quite fast thats good. but character has to wait quite long till new rock appears. so thats I count of exp lost/h. then I come back to home, I hope to get proggy (if something unexpencted doesn't happens)


    Keep it up. It's really good script, just need few quick fixes to make it flawless

  23. #73
    Join Date
    Jun 2012
    Posts
    4,867
    Mentioned
    74 Post(s)
    Quoted
    1663 Post(s)

    Default

    Quote Originally Posted by SOUPalmighty View Post
    proggie for older verison
    ~~~~~~~~~~~~Almost AIO PowerMiner~~~~~~~~~~
    ~By BMWxi~
    Gold Mined: 2017 (335 P/H)
    Mining XP earned: 131105 (21815 P/H)
    Total Time: 6 Hours, 35 Seconds
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    will be trying out the new 6hr one and will post proggie
    thanks to BMXxi for the scripting and laimonas for you minor fixes :]
    Yeah, the new version is much better

    Quote Originally Posted by Mr[S] View Post
    ~~~~~~~~~~~~Almost AIO PowerMiner~~~~~~~~~~
    ~By BMWxi~
    Iron Mined: 19076 (595 P/H)
    Mining XP earned: 667660 (-16392 P/H)
    Total Time: 32 Hours, 3 Minutes and 0 Seconds
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    The xp p/h kind of messed up near the end because my computer was on for so long...but I was doing around 22k p/h

    Thank you for 70-80 mining <3
    From your proggy it appears that my scripts losty you xp lol! When I add it to the OP I'll calculate the actual xp/h .
    Quote Originally Posted by Laimonas171 View Post
    I'm out of home for two days and Bot still running.. But As I mantioned too far of center of mining spot problem, I guess proggy wouldn't be so great. Though I'm pretty sure then i get back I will have 80+ mining!

    I will edit this after few minutes, goingt to add some screens. with another account.

    EDIT:

    so this is spot where i left my one account. Here is 4 rocks, and no need wait till new rock apears, since then you mine 1 another is already there (unless someone mining together really fast enough). as you see mining symbol it quite in center of that.
    [IMG]http://i.imgur.com/jTE1m.png[/IMG ]

    the issue i get (I posted possible fix above few messages )
    It goes slightly east, and there is 2 rocks only, and it mines it quite fast thats good. but character has to wait quite long till new rock appears. so thats I count of exp lost/h. then I come back to home, I hope to get proggy (if something unexpencted doesn't happens)
    [IMG]http://i.imgur.com/C41yJ.png[/IM G]

    Keep it up. It's really good script, just need few quick fixes to make it flawless
    Thanks for that detailed feedback! I don't know how soon I can add it, but I'll try a few things to make it stay put. Maybe in a day or two

  24. #74
    Join Date
    Nov 2008
    Location
    Norway, Alesund
    Posts
    924
    Mentioned
    0 Post(s)
    Quoted
    37 Post(s)

    Default

    Quote Originally Posted by BMWxi View Post
    Yeah, the new version is much better


    From your proggy it appears that my scripts losty you xp lol! When I add it to the OP I'll calculate the actual xp/h .

    Thanks for that detailed feedback! I don't know how soon I can add it, but I'll try a few things to make it stay put. Maybe in a day or two
    No worries, really Just letting you know, i try to do that on all scripts I use. So people can improve them, and make scripts even better since I'm not very good at simba/pascal though

  25. #75
    Join Date
    Nov 2012
    Location
    Vice City
    Posts
    50
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    ~~~~~~~~~~~~Almost AIO PowerMiner~~~~~~~~~~
    ~By BMWxi~
    Gold Mined: 3416 (346 P/H)
    Mining XP earned: 222040 (22502 P/H)
    Total Time: 9 Hours, 52 Minutes and 3 Seconds
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Successfully executed.

    pick: rune
    level: 71 - 73

    love the new version, no more spam 1's lol!
    Last edited by SOUPalmighty; 12-02-2012 at 09:33 PM.

Page 3 of 12 FirstFirst 12345 ... LastLast

Thread Information

Users Browsing this Thread

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

Tags for this Thread

Posting Permissions

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