Page 58 of 90 FirstFirst ... 848565758596068 ... LastLast
Results 1,426 to 1,450 of 2238

Thread: [C][SRL5]ZMI-Extreme

  1. #1426
    Join Date
    Dec 2006
    Location
    Sweden
    Posts
    10,812
    Mentioned
    3 Post(s)
    Quoted
    16 Post(s)

    Default

    I got a fun infinite loop, I think.

    I came back to http://i.imgur.com/8Oqha.jpg .. the mouse flipping around the screen for quite a bit, I assume was going on for a while. Was trying to find banker when it failed to find him the first time, when it actually clicked him properly, I think?


    Send SMS messages using Simba
    Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!

  2. #1427
    Join Date
    Aug 2007
    Location
    Colorado
    Posts
    7,421
    Mentioned
    268 Post(s)
    Quoted
    1442 Post(s)

    Default

    Quote Originally Posted by Harry View Post
    I got a fun infinite loop, I think.

    I came back to http://i.imgur.com/8Oqha.jpg .. the mouse flipping around the screen for quite a bit, I assume was going on for a while. Was trying to find banker when it failed to find him the first time, when it actually clicked him properly, I think?
    I believe this has something to do with withdrawing essence after having just previously repaired a rune pouch. I'm not entirely sure why it happens, but a simple solution would be to modify this part of code in the 'OpenBankEniola' function:
    Simba Code:
    if (BankScreen or RunesMenu) then
        begin
          Result := True;
          Exit;
        end;

    So it should never try finding the banker again if the RunesMenu is visible.

    Edit:
    Nevermind, the RunesMenu is handled within that function, we can't exit out. "This" should work:
    Simba Code:
    Function OpenBankEniola: Boolean;
      var
        X,Y,T,T2,F,B: Integer;
        GoOn: Boolean;
      label
        Start,MenuStage;
      begin
        Result := False;
        GoOn := False;

        Start:
        if BankScreen then
        begin
          Result := True;
          Exit;
        end;

        if RunesMenu then
          goto MenuStage;

        FindNormalRandoms;
        if not LoggedIn then Exit;

        if (FindBanker(X, Y) or FindBanker2(X, Y)) then
        begin
          GoOn := True
        end else
        begin

          if (F > 4) then
            TeleportOut;

          HumanMMouse(255, 325, 20, 10);
          if not WaitUpTextMulti(['Walk', 'alk h', 'here'], 300) then
          begin
            ClickMouse2(False);
            WaitOptionMulti(['Walk', 'alk h', 'here'], 300);
          end else
            ClickMouse2(True);

          FFlag(5);

          Inc(F);

          goto Start;
        end;

        if GoOn then
        begin

          ClickMouse2(False);
          if not WaitOptionMulti(['Bank','ank','nk E'], 500) then
          begin
            Inc(B);

            if (B > 5) then
            begin
              Writeln('Error finding Banker text, teleporting...');
              TeleportOut;
              Exit;
            end;

            goto Start;
          end else
            HumanMMouse(MPoint.X, MPoint.Y, 25, 25);

          While IsMoving_F do
            Wait(1);

          MarkTime(T);
          repeat
            FindNormalRandoms;
            if (TimeFromMark(T) > 3000) then
              Exit;
            if RunesMenu then
              break;
          until(false);

          MenuStage:
          if RunesMenu then
          begin
            HumanMMouse(MPoint.X, MPoint.Y, 7, 7);
            ClickMouse2(True);

            MarkTime(T2);
            repeat
              FindNormalRandoms;
              if (TimeFromMark(T2) > 5000) then
                Exit;
              if (BankScreen) or (PinScreen) then
                break;
              Wait(100);
            until(false)

            if PinScreen then
              if (Players[CurrentPlayer].Pin <> '') then
                InPin(Players[CurrentPlayer].Pin)
              else
                Shutdown('No PIN # given');

            Wait(RandomRange(175, 350));

          end;
        end;

        Result := BankScreen;
      end;
    Last edited by Flight; 03-17-2012 at 08:46 AM.

    Current projects:
    [ AeroGuardians (GotR minigame), Motherlode Miner, Blast furnace ]

    "I won't fall in your gravity. Open your eyes,
    you're the Earth and I'm the sky..."


  3. #1428
    Join Date
    Dec 2011
    Location
    Berlin
    Posts
    795
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    Quote Originally Posted by dmsu View Post
    Thanks for your hard work. The 1.75 script seems to crash Simba when it's about to leave the bank to the altar. It's probably my mac-wine emulation playing up, but the previous scripts didn't have this problem.
    You got other versions running on Mac?

    I will try to answer all Runescape related questions!

  4. #1429
    Join Date
    Feb 2012
    Location
    Denver, CO
    Posts
    863
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Does anyone have any proggies for the script without using max banking? I'm sure it's slower, but I am still curious.

  5. #1430
    Join Date
    Jan 2012
    Posts
    61
    Mentioned
    0 Post(s)
    Quoted
    7 Post(s)

    Default

    yes i agree with u.this is slower.
    Well the bad thing is its slower at bonus xp weekend and faster before bonus xp .

  6. #1431
    Join Date
    Jun 2006
    Location
    N Wales
    Posts
    558
    Mentioned
    2 Post(s)
    Quoted
    56 Post(s)

    Default

    this script is hot! Thanks Flight,
    Progress Report:
    [=======================================]
    [ ZMI-Extreme 1.72                      ]
    [               by Flight               ]
    [=======================================]
    [ Run Time         : 4 Hr 17 Min 17 Sec ]
    [ Exp Gained       : 258042             ]
    [ Loads Completed  : 191                ]
    [ Monkfish Ate     : 30                 ]
    [ Pouches Repaired : 1                  ]
    [ Breaks           : 1                  ]
    [=======================================]
    [           ZMI-Extreme 1.72            ]
    [=======================================]

  7. #1432
    Join Date
    Dec 2011
    Posts
    733
    Mentioned
    2 Post(s)
    Quoted
    7 Post(s)

    Default

    There are many people at the altar this weekend, so a tolerance of .3 seems to work much better than .5;

    Also, Ring of life support would be great. Im attempting to implement it right now. Script shoiuld teleport to the altar if it gets lost, then retry to find the altar;

  8. #1433
    Join Date
    Dec 2011
    Location
    Berlin
    Posts
    795
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    Quote Originally Posted by m34tcode View Post
    There are many people at the altar this weekend, so a tolerance of .3 seems to work much better than .5;

    Also, Ring of life support would be great. Im attempting to implement it right now. Script shoiuld teleport to the altar if it gets lost, then retry to find the altar;
    I totally agree that Deathwalking would be nice. I am tanking those arrows but the script would be better with.

    I will try to answer all Runescape related questions!

  9. #1434
    Join Date
    Feb 2012
    Location
    Toronto Ontario, Canada
    Posts
    331
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Script ran for 5 hours without fail last night,

    but when I run it now, it often clicks the 'mining' symbol North-East of the Ourania teleport, from there it just gets stuck and doesn't go back.
    ---------------------------------------------------------------------------------------
    Proggy with babysitting:


    [======================================]
    [ ZMI-Extreme 1.71 ]
    [ by Flight ]
    [======================================]
    [ Run Time : 4 Hr 6 Min 14 Sec ]
    [ Exp Gained : 166767 ]
    [ Loads Completed : 160 ]
    [ Lobster Ate : 65 ]
    [ Pouches Repaired : 0 ]
    [ Breaks : 1 ]
    [======================================]
    [ ZMI-Extreme 1.71 ]
    [======================================]
    118/120 Dungeoneering

  10. #1435
    Join Date
    Feb 2012
    Location
    Denver, CO
    Posts
    863
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by ashihtaka View Post
    Script ran for 5 hours without fail last night,

    but when I run it now, it often clicks the 'mining' symbol North-East of the Ourania teleport, from there it just gets stuck and doesn't go back.
    ---------------------------------------------------------------------------------------
    Proggy with babysitting:


    [======================================]
    [ ZMI-Extreme 1.71 ]
    [ by Flight ]
    [======================================]
    [ Run Time : 4 Hr 6 Min 14 Sec ]
    [ Exp Gained : 166767 ]
    [ Loads Completed : 160 ]
    [ Lobster Ate : 65 ]
    [ Pouches Repaired : 0 ]
    [ Breaks : 1 ]
    [======================================]
    [ ZMI-Extreme 1.71 ]
    [======================================]
    Switch to 1.72, I haven't gotten the mining symbol error yet in this version.

  11. #1436
    Join Date
    Feb 2012
    Location
    Toronto Ontario, Canada
    Posts
    331
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    forgot about 1.72, hopefully it will run as long as well, i'll give it a go now.
    118/120 Dungeoneering

  12. #1437
    Join Date
    Dec 2011
    Location
    Berlin
    Posts
    795
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    Quote Originally Posted by ashihtaka View Post
    forgot about 1.72, hopefully it will run as long as well, i'll give it a go now.
    Sometimes it clickes the Mining simbol instead of the Prayer Simbol. And Sometimes it runes not to the ledder, then it runs over the hunter spots and just keeps standing over there.

    I will try to answer all Runescape related questions!

  13. #1438
    Join Date
    Jan 2012
    Posts
    537
    Mentioned
    1 Post(s)
    Quoted
    16 Post(s)

    Default

    97 now, yay!

  14. #1439
    Join Date
    Aug 2007
    Location
    Colorado
    Posts
    7,421
    Mentioned
    268 Post(s)
    Quoted
    1442 Post(s)

    Default

    Yeah that Mining symbol, I'm not sure if anything was changed about it in V1.72. Today I'll be back to working on custom SPS maps to, once and for all, correct V1.75, so keep your fingers crossed.

    Also just as a reminder, should any of you hit 99 Runecrafting using the script please do post here! You don't have to post a picture or anything, just make a post if you'd like. (I'm personally under 400k until 99)

    Current projects:
    [ AeroGuardians (GotR minigame), Motherlode Miner, Blast furnace ]

    "I won't fall in your gravity. Open your eyes,
    you're the Earth and I'm the sky..."


  15. #1440
    Join Date
    Feb 2012
    Location
    Toronto Ontario, Canada
    Posts
    331
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Early grats on your 99, and I just realized you make the most useful scripts for public users! (Heavy-rodder, zmi rcer, granite miner, and probably others I have yet to discover). Just wanted to thank you for that. got me from 70-80 fishing, 75-85 runecraft, and now going to start your miner.
    118/120 Dungeoneering

  16. #1441
    Join Date
    Nov 2011
    Posts
    165
    Mentioned
    0 Post(s)
    Quoted
    40 Post(s)

    Default

    flight when i run the scripts it work for a few minutes but later it wont go down the ladder u know how i can fix this thanks

  17. #1442
    Join Date
    Dec 2011
    Location
    Berlin
    Posts
    795
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    Quote Originally Posted by lorenzo View Post
    flight when i run the scripts it work for a few minutes but later it wont go down the ladder u know how i can fix this thanks
    You have to use v. 1.72 . It is running flawless.

    I will try to answer all Runescape related questions!

  18. #1443
    Join Date
    Jan 2012
    Posts
    83
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    It goes to the hunter spot quite often. I'm running 1.72.

  19. #1444
    Join Date
    Dec 2011
    Location
    Berlin
    Posts
    795
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    Quote Originally Posted by newy1 View Post
    It goes to the hunter spot quite often. I'm running 1.72.


    You see this arrow on the right site of my simba. Normally if I start Simba up its in the middle. I put it a litle bit higher and now it´s running since 2 hours without any bug or missklick. Btw. I did not helped the bot to solve any problem. I just let it run and watch every 30minutes if its running anymore. I dont got the problem with the mining simbol too. Running on v. 1.72 atm

    I will try to answer all Runescape related questions!

  20. #1445
    Join Date
    Mar 2012
    Posts
    5
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Hi guys

    First off - My script isn't telling me exp's - Just stays on '-1' with no error..
    And all of a sudden it's stopped praying? It was working perfectly before but now it won't pray at all or even go to the altar.I've tried everything to get it praying, but it won't work. I can't script at all, so I have no idea what to do.
    Your help would be greatly appreciated. <3
    Yes, I'm on 1.72

    PS. I'm on Curses.

  21. #1446
    Join Date
    Feb 2012
    Location
    Toronto Ontario, Canada
    Posts
    331
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by FlyingMonkey View Post
    Hi guys

    First off - My script isn't telling me exp's - Just stays on '-1' with no error..
    And all of a sudden it's stopped praying? It was working perfectly before but now it won't pray at all or even go to the altar.I've tried everything to get it praying, but it won't work. I can't script at all, so I have no idea what to do.
    Your help would be greatly appreciated. <3
    Yes, I'm on 1.72

    PS. I'm on Curses.
    make sure prayer is set to 'True' and try setting the priority bar to max, as mentioned above.
    118/120 Dungeoneering

  22. #1447
    Join Date
    Mar 2012
    Posts
    5
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Wow i feel quite embarrassed. Didn't realise it was on false.
    Thank you for that.
    By the way, I know I'm new, but if anyone could donate their time, or wants to have an 'apprentice' scripter, I would love to learn. I know there are tutorials and things, but it's nice also to have interaction.
    Only if you feel like it'd be nice for you

  23. #1448
    Join Date
    Dec 2011
    Location
    Berlin
    Posts
    795
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    Quote Originally Posted by ashihtaka View Post
    make sure prayer is set to 'True' and try setting the priority bar to max, as mentioned above.
    I have set Prayer to ´False`and its running now since 4hours and 30minutes ( 1 20minutes break) without any help from me.

    I will try to answer all Runescape related questions!

  24. #1449
    Join Date
    Feb 2012
    Posts
    35
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    since 1.72, I am getting some odd behavior such as; error: "Failed to find symbols, attempting to TPA-Walk"

    and

    After banking, it sometimes chooses to try to run the 'Longer' of the two path's, after having ran some distans in the Longer path, it runs back and run the shorter path.

    ...anyone?


    Apart from that it's running quite decent @ about 53k/h

  25. #1450
    Join Date
    Aug 2007
    Location
    Colorado
    Posts
    7,421
    Mentioned
    268 Post(s)
    Quoted
    1442 Post(s)

    Default

    Quote Originally Posted by Zyzolol View Post
    since 1.72, I am getting some odd behavior such as; error: "Failed to find symbols, attempting to TPA-Walk"

    and

    After banking, it sometimes chooses to try to run the 'Longer' of the two path's, after having ran some distans in the Longer path, it runs back and run the shorter path.

    ...anyone?


    Apart from that it's running quite decent @ about 53k/h
    The first message you're getting "Failed to find symbols ect..." that's normal. The above ground walking to the ladder is done through locating the Runecrafting or Prayer Altar symbols on the MM. If they're found, the script clicks there (basically where the ladder is), if not you'll get that message telling you that the symbols were not found on the map, so instead the script will TPA walk to that area, or atleast as close as it can get.

    The second problem you're having is just a slip-up with SPS (color walking system). The script always corrects itself, it's nothing to worry about, it only makes you look dumb for a few seconds.

    Not to worry though, both issues are dealt with in V1.75.

    Current projects:
    [ AeroGuardians (GotR minigame), Motherlode Miner, Blast furnace ]

    "I won't fall in your gravity. Open your eyes,
    you're the Earth and I'm the sky..."


Page 58 of 90 FirstFirst ... 848565758596068 ... 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
  •