Poll: Shall I make a FlaxSpinner?

Results 1 to 16 of 16

Thread: Flax Spinner

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

    Default Flax Spinner

    Is anyone in need of (another) Flax Spinner in Lumby?
    No Reflection!
    Ce ne sont que des gueux


  2. #2
    Join Date
    Oct 2007
    Location
    The deep web
    Posts
    2,496
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    do it.
    Did someone say GDK?

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

    Default

    I'd make it, but my members account is still banned, so I'll have to wait for a week more before I release it =[
    Ce ne sont que des gueux


  4. #4
    Join Date
    Sep 2008
    Location
    Not here.
    Posts
    5,422
    Mentioned
    13 Post(s)
    Quoted
    242 Post(s)

    Default

    even better would be a flax picker then spinner... then they don't have to restart the script everytime they run out of flax...

  5. #5
    Join Date
    Oct 2007
    Location
    The deep web
    Posts
    2,496
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    nah. u get xp this way
    Did someone say GDK?

  6. #6
    Join Date
    Sep 2008
    Location
    Not here.
    Posts
    5,422
    Mentioned
    13 Post(s)
    Quoted
    242 Post(s)

    Default

    well then maybe an option to pick and spin(in catherby) or to just use the already bought stuff...(lumbridge)

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

    Default

    I'm not such a hero when it comes to non-Reflection walking, but DDTM's; I know.
    I might do this.. but really I need to FIRST get my account back.

    And, tbh only-spinner is my goal, I might later add picking, but that would be merging 2 scripts so that's gonna take a while, I might first make them seperate, then merge them, but FIRST I'm gonna do Lumby-Spinning only.
    Ce ne sont que des gueux


  8. #8
    Join Date
    Feb 2007
    Posts
    433
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    you'll have some competition with Narcle :P

    but if you wanna make one, go for it :]

  9. #9
    Join Date
    Oct 2007
    Location
    The deep web
    Posts
    2,496
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    Quote Originally Posted by Pwnt by Pwnt View Post
    you'll have some competition with Narcle :P

    but if you wanna make one, go for it :]
    isnt his reflection?
    Did someone say GDK?

  10. #10
    Join Date
    Feb 2007
    Posts
    433
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

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

    Default

    I won't make my SPINNER reflection, not because I hate it, but just because it's a little simple =']
    Ce ne sont que des gueux


  12. #12
    Join Date
    Feb 2007
    Posts
    433
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    :P
    it's simple but works beautifully <3

    but I know what you mean

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

    Default

    I'd say go for it
    I had a great time making mine a while ago and i'm still using it ^^

    Good luck

    ~Sir

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

    Default

    Thanks, and I'd like to give you a suggestion, in ReFlax, you just do a few big Waits while spinning, but I'm just checking if the last flax (inv spot 28) has been spun.
    Like:
    SCAR Code:
    While Not BowStringInInv Do // LastFlaxSpun = 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.

    EDIT:
    This works:
    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;
    Ce ne sont que des gueux


  15. #15
    Join Date
    Sep 2008
    Location
    Not here.
    Posts
    5,422
    Mentioned
    13 Post(s)
    Quoted
    242 Post(s)

    Default

    for your bow string in inv function... you could add an inv spot variable to check if a bowstring is in a certain inv spot.

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

    Default

    Meh. That's not needed, looking at the script.
    Ce ne sont que des gueux


Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Flax Spinner.
    By VivaLaRofl in forum RS3 Outdated / Broken Scripts
    Replies: 0
    Last Post: 02-05-2008, 10:33 PM
  2. Anyone got a flax spinner???
    By ronny.m.p in forum RS3 Outdated / Broken Scripts
    Replies: 5
    Last Post: 12-13-2007, 06:12 AM
  3. Flax spinner
    By qcrist in forum RS3 Outdated / Broken Scripts
    Replies: 4
    Last Post: 10-22-2007, 12:07 AM
  4. Flax Spinner
    By TheGhostofChristmasPast in forum RS3 Outdated / Broken Scripts
    Replies: 0
    Last Post: 10-07-2007, 06:14 PM
  5. Flax Spinner!!!
    By Godlike007 in forum RS3 Outdated / Broken Scripts
    Replies: 1
    Last Post: 07-20-2007, 10:34 AM

Posting Permissions

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