Page 3 of 5 FirstFirst 12345 LastLast
Results 51 to 75 of 120

Thread: ReFlax Lumby Flax Spinner

  1. #51
    Join Date
    Dec 2008
    Posts
    25
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Gonna try this, thanks if it works

  2. #52
    Join Date
    Aug 2007
    Posts
    12
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Wow this seems pretty decent.

  3. #53
    Join Date
    Dec 2008
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    stupid question but how do i download it

  4. #54
    Join Date
    Dec 2008
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    someone tell me how it works ugh

  5. #55
    Join Date
    Jul 2007
    Location
    's-Gravenpolder, Holland
    Posts
    204
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    To download go to the first post, and click the version you want to download.

    ~Sir

  6. #56
    Join Date
    Dec 2008
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default no idea

    i have no idea how to do this lol.

  7. #57
    Join Date
    Dec 2008
    Posts
    80
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    can you post some images cause i just want to make sure i'm doing it right

  8. #58
    Join Date
    Jan 2008
    Location
    Stanford, CA
    Posts
    329
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Dude, work on your standards. I almost threw up they were so bad. FRee bitmaps too and more failsafes.

  9. #59
    Join Date
    Jul 2007
    Location
    's-Gravenpolder, Holland
    Posts
    204
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by freakymonkey View Post
    Dude, work on your standards. I almost threw up they were so bad. FRee bitmaps too and more failsafes.
    Yayaya i know. You're like the 100000th person to say that.
    This was my first script after being away for more then 1,5 year, you can't blame me for having sucky standards then.

  10. #60
    Join Date
    Dec 2008
    Posts
    4
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    hey can you please show me how to use the script. i don't kno alot so can you plz show me how to use the script thanks

  11. #61
    Join Date
    May 2008
    Posts
    1,345
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    You could make it search the bank for flax, then withdraw from the first place . Would make it be able to be ANYWHERE in the bank, and would remove the need for a BMP/DTM.

  12. #62
    Join Date
    Dec 2008
    Posts
    80
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    theres a few problems

    1. it seems to have problem looking for the spinning wheel

    2.sometimes it walks like bit to the north on second floor thus causing it cannot find the spinning wheel icon on the map

  13. #63
    Join Date
    Dec 2008
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Everytime I run the script i get the error - Line 1: [Error] (1:1): Unable to register function function FindGapsTPA(TPA : TPointArray; MinPixels: Integer): T2DPointArray; in script C:\Users\Joey\Downloads\ReFlax%20V4.scar

    Any help would be much appreciated

  14. #64
    Join Date
    Feb 2007
    Location
    Access Violation at 0x00000000
    Posts
    2,865
    Mentioned
    3 Post(s)
    Quoted
    18 Post(s)

    Default

    Suggestion
    You just use a few big Wait()s, I'd suggest this:
    Waits while spinning, but I'm just checking if the last flax (inv spot 28) has been spun.
    Like:
    SCAR Code:
    {*******************************************************************************
    Function BowStringInInv(Fixed : Boolean): Boolean;
    by: Floor66
    Description: Fixed true: checks inv spot 28
                 Fixed false: checks any spot.
    *******************************************************************************}


    Function BowStringInInv(Fixed : Boolean): Boolean;
    Var
      BSDTM, x, y : Integer;
      Box         : TBox;
    Begin
      BSDTM := DTMFromString('78DA63B467666090606440058C482490F607A' +
             'A9123A0C605A84699801A33A01A45026AAC806A8409A83105AA11' +
             'C5AF0600243E0244');
      If Fixed Then
      Begin
        Box := InvBox(28);
        If FindDTM(BSDTM, x, y, Box.x1, Box.y1, Box.x2, Box.y2) Then
        Begin
          Result := True;
        End Else Result := False;
      End Else
      Begin
        If FindDTM(BSDTM, x, y, MIX1, MIY1, MIX2, MIY2) Then
        Begin
          Result := True;
        End Else Result := False;
      End;
      FreeDTM(BSDTM);
    End;

    While Not BowStringInInv(True) Do // BowStringInInv(True) = check if invspot 28 = bowstring DTM
    Begin
      FindNormalRandoms;
      AntiBan;
      //maybe a wait
    End;

    And, looking it over, if you'd use it to apply to SRL members, read some Standards tutorials, it makes reading over a script way easier.
    Ce ne sont que des gueux


  15. #65
    Join Date
    Dec 2008
    Posts
    14
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I used it for a few loads and... it works good for me, sometimes it cant find the chairs but thats fine

  16. #66
    Join Date
    Dec 2008
    Posts
    80
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    You need to fix some spinning and banking it just seems to run and when it fails to look for the object its looking for it just stands and does nothing

  17. #67
    Join Date
    Dec 2008
    Posts
    14
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Much trouble finding the stairs and bank...

    Attached a smart version...

  18. #68
    Join Date
    Jan 2009
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by joey tull View Post
    Everytime I run the script i get the error - Line 1: [Error] (1:1): Unable to register function function FindGapsTPA(TPA : TPointArray; MinPixels: Integer): T2DPointArray; in script C:\Users\Joey\Downloads\ReFlax%20V4.scar

    Any help would be much appreciated
    I got the same thing

    Can someone help me?

  19. #69
    Join Date
    Jan 2009
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    v4 dont work spins flax then says outta range

  20. #70
    Join Date
    Jan 2009
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    some1 help everytime i start it looks at viewing options changes things then says

    Runtime Error] : Out Of Range in line 453 in script C:\Program Files\SCAR 3.15\includes\SRL/SRL/Core/Login.scar wtf!!!

  21. #71
    Join Date
    Jan 2009
    Location
    America
    Posts
    26
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    ty for this hack i will use it thanks again

  22. #72
    Join Date
    Jan 2009
    Location
    Finland
    Posts
    16
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    great script, works perfectly

  23. #73
    Join Date
    Nov 2008
    Posts
    4
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i dunno but it doesnt work for me after like 14 minutes its stops

  24. #74
    Join Date
    Jan 2009
    Location
    Finland
    Posts
    16
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Heres a proggy
    ||----------- ProgressReport -----------||
    ||- Flax Spun : 868 -||
    ||- Loads Done: 31 -||
    ||- Ran For: 59 Minutes and 45 Seconds -||
    ||--------------------------------------||

  25. #75
    Join Date
    Jan 2009
    Location
    Manchester, England
    Posts
    58
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Your smart version works a hell of a lot better! But still can't find spinning wheel!
    Something to look at in the next version.
    Dani Bx

Page 3 of 5 FirstFirst 12345 LastLast

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. ReFlax Flax Spinner
    By SirPa in forum RS3 Outdated / Broken Scripts
    Replies: 32
    Last Post: 08-23-2009, 01:23 AM
  2. Flax Spinner For Lumby
    By Ratchet in forum RS3 Outdated / Broken Scripts
    Replies: 17
    Last Post: 08-06-2007, 02:04 AM
  3. need lumby flax spinner
    By perreault121 in forum RS3 Outdated / Broken Scripts
    Replies: 7
    Last Post: 07-26-2007, 10:47 AM
  4. Lumby Flax Spinner
    By Burt in forum RS3 Outdated / Broken Scripts
    Replies: 0
    Last Post: 07-21-2007, 10:27 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
  •