Page 11 of 32 FirstFirst ... 91011121321 ... LastLast
Results 251 to 275 of 796

Thread: Silent Spinner (Color)(ObjDTM)

  1. #251
    Join Date
    Jun 2009
    Posts
    36
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I have an error at when it trying to spin the flax it wont find the flaxer thingy.

    ~golumpa
    ~golumpa~

  2. #252
    Join Date
    Oct 2008
    Location
    C:\Simba\Includes\
    Posts
    7,566
    Mentioned
    19 Post(s)
    Quoted
    180 Post(s)

    Default

    More information on the error? That would help greatly.
    Away for awhile, life is keeping me busy. | Want to get my attention in a thread? @Kyle Undefined; me.
    { MSI Phoenix || SRL Stats Sigs || Paste || Scripts || Quotes || Graphics }

    When posting a bug, please post debug! Help us, help you!

    I would love to change the world, but they won't give me the source code. || To be the best, you've got to beat the rest. || Logic never changes, just the syntax.
    If you PM me with a stupid question or one listed in FAQ, or about a script that is not mine, I will NOT respond.


    SRL is a Library of routines made by the SRL community written for the Program Simba. We produce Scripts for the game Runescape.


  3. #253
    Join Date
    Sep 2007
    Location
    Australia, NSW
    Posts
    934
    Mentioned
    6 Post(s)
    Quoted
    145 Post(s)

    Default

    Quote Originally Posted by golumpa View Post
    I have an error at when it trying to spin the flax it wont find the flaxer thingy.

    ~golumpa
    I have a fix for the 'Not finding spinner thing'. It is just a colour issue; and I have noticed that it can not find it sometimes depending on which tile you're standing on. I'm not sure how good you are at scripting (I'll PM Silent SPY to see what he wants to do) but you'll have to change the whole FindAndClickSpinner function to:
    Code:
    function FindAndClickSpinner: Boolean;
    var
    x, y, cts, i :Integer;
    TPA, TPA2: TPointArray;
    ATPA, ATPA2: T2DPointArray;
    
    begin
      if not (LoggedIn) then
        Exit;
      if not (FindNormalRandoms) then
      begin
        MakeCompass('s');
        Wait(RandomRange(500,750));
        result:= false;
        repeat
          Wait(RandomRange(400, 700));
        until not (IsMoving);
        x:= MSCX;
        y:= MSCY;
        CTS:= GetColorToleranceSpeed;
        ColorToleranceSpeed(2);
        SetColorSpeed2Modifiers(0.03, 0.38);     //CHANGED
        FindColorsSpiralTolerance(x, y, TPA, 7374741, MSX1, MSY1, MSX2, MSCY, 11);  //CHANGED
    
        if Length(TPA) = 0 then
          FindColorsSpiralTolerance(x, y, TPA, 6386814, MSX1, MSY1, MSX2, MSY2, 11);
    
    
        ATPA:= TPAtoATPAEx(TPA, 12, 24);
        for i:= 0 to High(ATPA) do
        begin
          MiddleTPAEx(ATPA[i], x, y);
          MMouse(x, y, 2, 2);
          GetMousePos(x, y);
          if (WaitUpTextMulti(['Spin'], 300)) then
          begin
            Mouse(x, y, 0, 0, false);
            if WaitOption('Spin', 300) then
            begin
              Writeln('Clicked Spinner..');
              Result:= true;
              Exit;
            end;
          end;
          Wait(RandomRange(400, 700));
        end;
    
        SetColorSpeed2Modifiers(0.09, 0.47);    // ADDED FROM HERE
        FindColorsSpiralTolerance(x, y, TPA2, 6653085, MSX1, MSY1, MSX2, MSCY, 11);  
    
        ATPA2:= TPAtoATPAEx(TPA2, 12, 24);
        for i:= 0 to High(ATPA2) do
        begin
          MiddleTPAEx(ATPA2[i], x, y);
          MMouse(x, y, 2, 2);
          GetMousePos(x, y);
          if (WaitUpTextMulti(['Spin'], 300)) then
          begin
            Mouse(x, y, 0, 0, false);
            if WaitOption('Spin', 300) then
            begin
              Writeln('Clicked Spinner..');
              Result:= true;
              Exit;
            end;
          end;
          Wait(RandomRange(400, 700));
        end;
    
      end;
    end;
    Note: I had the same problem and this has currently fixed it! It is now running:
    Progress Report:
    /=======================================================\
    | Finishing load #9
    | Running for..17 Minutes and 38 Seconds
    | Strings made = 252
    | Experience gained...3780
    | Levels gained.......1
    \=======================================================/


    EDIT: This fix that I implemented seems to fix the small trip in the script -
    Progress Report:
    /=======================================================\
    | Finishing load #101
    | Running for..3 Hours, 25 Minutes and 56 Seconds
    | Strings made = 2800
    | Experience gained...42420
    | Levels gained.......3
    \=======================================================/

    It's just colour issues; Silent SPY's scripting methods are flawless!
    Last edited by Press Play; 12-29-2011 at 11:37 AM.

    INACTIVE
    How-to: Make S.M.A.R.T. less laggy

    Sell me your Maple Shieldbows (u)! Up to 95gp ea!

    My Scripts:
    Ivy Chopper Ultra [RS3] | Fantastic Fletcher [RS3]
    99 x78 | 99 x10 | 99 x2 | 99 x12


    Use the REPORT tags when posting progress reports to make life easier (:
    [REPORT]Put progress report in here![/REPORT]

    Super Savvy Smither V1.06Cool Classy Cooker V1.02 [EoC]

  4. #254
    Join Date
    Dec 2011
    Posts
    106
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    takes a while finding the spinning wheel
    also randomly stops after spinning 11 flax and doesent do anything

  5. #255
    Join Date
    Nov 2011
    Posts
    4
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    This is an awesome script I can run it for hours flawlessly made 20k bs in 1 day Thank you Silent Spy.

  6. #256
    Join Date
    Mar 2007
    Location
    USA
    Posts
    1,433
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by -daazndagger- View Post
    I have a fix for the 'Not finding spinner thing'. It is just a colour issue; and I have noticed that it can not find it sometimes depending on which tile you're standing on. I'm not sure how good you are at scripting (I'll PM Silent SPY to see what he wants to do) but you'll have to change the whole FindAndClickSpinner function to:
    Code:
    snipped
    Note: I had the same problem and this has currently fixed it! It is now running:
    Progress Report:
    /=======================================================\
    | Finishing load #9
    | Running for..17 Minutes and 38 Seconds
    | Strings made = 252
    | Experience gained...3780
    | Levels gained.......1
    \=======================================================/


    EDIT: This fix that I implemented seems to fix the small trip in the script -
    Progress Report:
    /=======================================================\
    | Finishing load #101
    | Running for..3 Hours, 25 Minutes and 56 Seconds
    | Strings made = 2800
    | Experience gained...42420
    | Levels gained.......3
    \=======================================================/

    It's just colour issues; Silent SPY's scripting methods are flawless!
    Thanks Dazzn, I'll probably implement that fix, I saw your Pm also

    Quote Originally Posted by lotery33 View Post
    takes a while finding the spinning wheel
    also randomly stops after spinning 11 flax and doesent do anything
    Could you post the debug log? That would be helpful

    Did you change the load amount? I believe the default load amount is somewhere around 11k flax if my memory is correct.

    Quote Originally Posted by Weinstein View Post
    This is an awesome script I can run it for hours flawlessly made 20k bs in 1 day Thank you Silent Spy.
    That makes me happy, you're very welcome! Thanks for the feedback
    I'm Silent SPY
    Secret project: 0%
    Need help? Send me a PM

  7. #257
    Join Date
    Dec 2011
    Posts
    77
    Mentioned
    5 Post(s)
    Quoted
    31 Post(s)

    Default

    Quote Originally Posted by Itankbots View Post
    rying to open the bank: 1 out of 11
    Error: Out Of Range at line 325
    The following DTMs were not freed: [SRL - Lamp bitmap, 1, 2, 3]
    The following bitmaps were not freed: [SRL - Mod bitmap, SRL - Admin bitmap, SRL - Flag bitmap]

    I know someone already posted. just letting you know multi people getting the same error, gotten it a couple times
    just letting you know I get the same error as well.

    pretty excited for this script, thanks for your work

  8. #258
    Join Date
    Dec 2011
    Location
    Vancouver, Canada
    Posts
    74
    Mentioned
    0 Post(s)
    Quoted
    8 Post(s)

    Default

    Quote Originally Posted by Sulferx View Post
    just letting you know I get the same error as well.

    pretty excited for this script, thanks for your work

    Getting the same error as well, Just started happening today for me, Couple of days ago i ran the script and it was flawless for 4+ hours.

    Thank you for the great script

    EDIT: Once it gets stuck on the "following DTMs and bitmaps" Line #325 gets highlighted to orange, Hope that helps. Here's the line:
    MinTP := IntToPoint(MiddleTPA(ATPA[0]).x, MiddleTPA(ATPA[0]).y);
    Last edited by CreaShun; 12-30-2011 at 11:41 PM.

  9. #259
    Join Date
    Mar 2007
    Location
    USA
    Posts
    1,433
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by CreaShun View Post
    Getting the same error as well, Just started happening today for me, Couple of days ago i ran the script and it was flawless for 4+ hours.

    Thank you for the great script

    EDIT: Once it gets stuck on the "following DTMs and bitmaps" Line #325 gets highlighted to orange, Hope that helps. Here's the line:
    MinTP := IntToPoint(MiddleTPA(ATPA[0]).x, MiddleTPA(ATPA[0]).y);
    I finally figured out what is causing this! Thanks for the feedback
    I'm Silent SPY
    Secret project: 0%
    Need help? Send me a PM

  10. #260
    Join Date
    Sep 2007
    Location
    Australia, NSW
    Posts
    934
    Mentioned
    6 Post(s)
    Quoted
    145 Post(s)

    Default

    ^^ That only happened to me when I was at the Spinner and not at the bank. When I manually walked to the bank aahahah. And by the way, my code fix is really messy from above. You should look through it. It was only meant to be temporary

    INACTIVE
    How-to: Make S.M.A.R.T. less laggy

    Sell me your Maple Shieldbows (u)! Up to 95gp ea!

    My Scripts:
    Ivy Chopper Ultra [RS3] | Fantastic Fletcher [RS3]
    99 x78 | 99 x10 | 99 x2 | 99 x12


    Use the REPORT tags when posting progress reports to make life easier (:
    [REPORT]Put progress report in here![/REPORT]

    Super Savvy Smither V1.06Cool Classy Cooker V1.02 [EoC]

  11. #261
    Join Date
    Mar 2007
    Location
    USA
    Posts
    1,433
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by -daazndagger- View Post
    ^^ That only happened to me when I was at the Spinner and not at the bank. When I manually walked to the bank aahahah. And by the way, my code fix is really messy from above. You should look through it. It was only meant to be temporary
    Alright I will. Yeah, that error is caused when the character isn't actually at the bank.

    Time for some fail-safes!
    I'm Silent SPY
    Secret project: 0%
    Need help? Send me a PM

  12. #262
    Join Date
    Dec 2011
    Location
    Vancouver, Canada
    Posts
    74
    Mentioned
    0 Post(s)
    Quoted
    8 Post(s)

    Default

    Quote Originally Posted by Silent SPY View Post
    Alright I will. Yeah, that error is caused when the character isn't actually at the bank.

    Time for some fail-safes!
    w00t w00t, I'm learning so much from this script, One day i might be able to create my own. I wish i started young though

  13. #263
    Join Date
    Dec 2011
    Posts
    8
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    please just help me instead of redirecting me to some other thread. Basically i've downloaded the script, when you click on the download script Simba opens up but i when i put my details in and press the play button the script works but it doesnt enter my details and tells me that there are no stats saved wtf. please don't send me somewhere else like everyone else does help me please thank you.

  14. #264
    Join Date
    Jun 2008
    Location
    United States
    Posts
    818
    Mentioned
    60 Post(s)
    Quoted
    90 Post(s)

    Default

    Quote Originally Posted by dead4lyfe View Post
    please just help me instead of redirecting me to some other thread. Basically i've downloaded the script, when you click on the download script Simba opens up but i when i put my details in and press the play button the script works but it doesnt enter my details and tells me that there are no stats saved wtf. please don't send me somewhere else like everyone else does help me please thank you.
    People redirect you to other threads because those other threads contain the answers you seek. If you would read the threads they linked to, more often than not, your questions would be answered. Those other threads exist as central places to answer the questions that get asked over and over again. If you would post what is printed in the debug box, we may be able to help you.
    [10/14/13:19:03] <BenLand100> this is special relatively, just cleverly disguised with yachts

  15. #265
    Join Date
    Mar 2007
    Location
    USA
    Posts
    1,433
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by dead4lyfe View Post
    please just help me instead of redirecting me to some other thread. Basically i've downloaded the script, when you click on the download script Simba opens up but i when i put my details in and press the play button the script works but it doesnt enter my details and tells me that there are no stats saved wtf. please don't send me somewhere else like everyone else does help me please thank you.
    What you are talking about is it asking you for SRL stats. It's a separate account from your forum one, and should be created at stats.villavu.com. I ask you to fill that in because it helps me keep track of how the script is doing. It doesn't collect your username, password, or anything like that. If you want to see what it collects, look at the master progress report in the first post.

    I hope this answers your question
    I'm Silent SPY
    Secret project: 0%
    Need help? Send me a PM

  16. #266
    Join Date
    Dec 2011
    Posts
    8
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i'm sorry, i got it to work and then it did 6k flax overnight amazing script.

  17. #267
    Join Date
    Oct 2008
    Location
    C:\Simba\Includes\
    Posts
    7,566
    Mentioned
    19 Post(s)
    Quoted
    180 Post(s)

    Default

    Awesome job!

    Progress Report:
    /=======================================================\
    | Finishing load #102
    | Running for..3 Hours, 15 Minutes and 0 Seconds
    | Strings made = 2856
    | Experience gained...42840
    | Levels gained.......26
    \=======================================================/
    Away for awhile, life is keeping me busy. | Want to get my attention in a thread? @Kyle Undefined; me.
    { MSI Phoenix || SRL Stats Sigs || Paste || Scripts || Quotes || Graphics }

    When posting a bug, please post debug! Help us, help you!

    I would love to change the world, but they won't give me the source code. || To be the best, you've got to beat the rest. || Logic never changes, just the syntax.
    If you PM me with a stupid question or one listed in FAQ, or about a script that is not mine, I will NOT respond.


    SRL is a Library of routines made by the SRL community written for the Program Simba. We produce Scripts for the game Runescape.


  18. #268
    Join Date
    Dec 2011
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Nvm fixed it
    Last edited by TheHoac; 12-31-2011 at 10:47 PM. Reason: stupid mistake on my part

  19. #269
    Join Date
    Oct 2008
    Location
    C:\Simba\Includes\
    Posts
    7,566
    Mentioned
    19 Post(s)
    Quoted
    180 Post(s)

    Default

    Just finished my 10k flax! Never messed up, except for that one issue with banking that you fixed in IRC. Love this script! Got me from level 10 to level 54!



    Also, just noticed the stats page. Crafting EXP (Gained) : 9453360!!! HOLY!
    Away for awhile, life is keeping me busy. | Want to get my attention in a thread? @Kyle Undefined; me.
    { MSI Phoenix || SRL Stats Sigs || Paste || Scripts || Quotes || Graphics }

    When posting a bug, please post debug! Help us, help you!

    I would love to change the world, but they won't give me the source code. || To be the best, you've got to beat the rest. || Logic never changes, just the syntax.
    If you PM me with a stupid question or one listed in FAQ, or about a script that is not mine, I will NOT respond.


    SRL is a Library of routines made by the SRL community written for the Program Simba. We produce Scripts for the game Runescape.


  20. #270
    Join Date
    Sep 2007
    Location
    Australia, NSW
    Posts
    934
    Mentioned
    6 Post(s)
    Quoted
    145 Post(s)

    Default

    ^^ I got from level 10 to 58 crafting all with this script so that must mean I've done more than 10k flax :O

    INACTIVE
    How-to: Make S.M.A.R.T. less laggy

    Sell me your Maple Shieldbows (u)! Up to 95gp ea!

    My Scripts:
    Ivy Chopper Ultra [RS3] | Fantastic Fletcher [RS3]
    99 x78 | 99 x10 | 99 x2 | 99 x12


    Use the REPORT tags when posting progress reports to make life easier (:
    [REPORT]Put progress report in here![/REPORT]

    Super Savvy Smither V1.06Cool Classy Cooker V1.02 [EoC]

  21. #271
    Join Date
    Dec 2011
    Posts
    18
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Simba Code:
    Trying to open the bank: 1 out of 11
    Error: Out Of Range at line 325
    The following DTMs were not freed: [SRL - Lamp bitmap, 1, 2, 3]
    The following bitmaps were not freed: [SRL - Mod bitmap, SRL - Admin bitmap, SRL - Flag bitmap]

    I getting this alot.

    And its taking 20-30 seconds some times to find the spinner. Could you speed it up?

  22. #272
    Join Date
    Oct 2008
    Location
    C:\Simba\Includes\
    Posts
    7,566
    Mentioned
    19 Post(s)
    Quoted
    180 Post(s)

    Default

    It never took that long for me, are you sure you set everything up correctly?
    Away for awhile, life is keeping me busy. | Want to get my attention in a thread? @Kyle Undefined; me.
    { MSI Phoenix || SRL Stats Sigs || Paste || Scripts || Quotes || Graphics }

    When posting a bug, please post debug! Help us, help you!

    I would love to change the world, but they won't give me the source code. || To be the best, you've got to beat the rest. || Logic never changes, just the syntax.
    If you PM me with a stupid question or one listed in FAQ, or about a script that is not mine, I will NOT respond.


    SRL is a Library of routines made by the SRL community written for the Program Simba. We produce Scripts for the game Runescape.


  23. #273
    Join Date
    Mar 2007
    Location
    USA
    Posts
    1,433
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by kuiper View Post
    Simba Code:
    Trying to open the bank: 1 out of 11
    Error: Out Of Range at line 325
    The following DTMs were not freed: [SRL - Lamp bitmap, 1, 2, 3]
    The following bitmaps were not freed: [SRL - Mod bitmap, SRL - Admin bitmap, SRL - Flag bitmap]

    I getting this alot.

    And its taking 20-30 seconds some times to find the spinner. Could you speed it up?
    I have a fix for that first error that will be going up tomorrow, along with an SRL 5 version of this.
    I'm Silent SPY
    Secret project: 0%
    Need help? Send me a PM

  24. #274
    Join Date
    Nov 2011
    Posts
    93
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Banking problems:
    Trying to open the bank: 1 out of 11
    Error: Out Of Range at line 324
    The following DTMs were not freed: [SRL - Mod bitmap, SRL - Admi
    n bitmap, SRl - Flag bitmap]

  25. #275
    Join Date
    Mar 2007
    Location
    USA
    Posts
    1,433
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by chelmid View Post
    Banking problems:
    Trying to open the bank: 1 out of 11
    Error: Out Of Range at line 324
    The following DTMs were not freed: [SRL - Mod bitmap, SRL - Admi
    n bitmap, SRl - Flag bitmap]
    Temp fix. Replace the entire banking function with this:

    Simba Code:
    function Banking: Boolean;
    var
    p, t, w: Integer;

    begin
      if not LoggedIn then
        Exit;
      Result:= false;
      t := 0; //Tries starts at zero
        repeat
          Inc(t);
          SetAngle(SRL_ANGLE_HIGH);
          Writeln('Trying to open the bank: ' + IntToStr(t) + ' out of 11');
          MakeCompass('s');
          if not (OpenLumbridgeBank) then
          begin
            Writeln('Method one failed, trying method two.');
            Writeln('Opening bank failed, trying again');
            if not OpenBankNPC then
              if not OpenBankFast('lb') then
              begin
                Continue;
              end;
          end;

          Wait(Random(700));
        until BankScreen or PinScreen or (t > 10);

        if PinScreen then
        begin
        p := 0;
          repeat
            InPin(Players[0].Pin);
            Inc(p)
          until BankScreen or (p > 0) or not (LoggedIn);
        end;

        if BankScreen then
        begin
          Writeln('Opened the bank...');
          FixBankTab;
          DepositAll;
          repeat
          WithdrawMaterial;
          Inc(w);
          until (InvCount > 27) or (w > 5)
          if (InvCount > 27) then
          begin
            MakeCompass('n');
            Wait(RandomRange(400, 500));
            Result:= true;
          end else
          begin
            Writeln('Getting '+ Players[CurrentPlayer].Strings[1] + ' failed');
            CloseBank;
            Logout;
            Exit;
          end;
        end;
    end;
    I'm Silent SPY
    Secret project: 0%
    Need help? Send me a PM

Page 11 of 32 FirstFirst ... 91011121321 ... 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
  •