Page 1 of 8 123 ... LastLast
Results 1 to 25 of 191

Thread: [SRL-6] [F]antastic [F]letcher !

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

    Default [SRL-6] [F]antastic [F]letcher !




    Status: Fully Functional!
    23rd July, 2014 (Post RS3)
    Version: 2.00




    Contents!

    1.0 : First Off - Things you'll want to know!

    2.0 : Getting started - So how do I actually use it?

    3.0 : History and the Future - Records; and what's next?

    4.0 : Making bulk maple shieldbows (u)? Sell them to me for greater profits - up to 95gp ea!

    END : END END END




    First things First!

    Introduction:
    This script is one of my greatest achievements - I am really proud of it. The first version of this script was released in 2011, a few days before Christmas. And in only 2 weeks, stats recorded that one hundred million fletching experience was gained using my script; I was amazed. Another month and a week passed, and we had reached one billion experience. A true milestone. (See the old thread?) Just over a year later, Beta testing ceased and a fully fledged Fletching script was released for Evolution of Combat.

    Fast forward another year; re-done, re-worked and re-vamped...now released for Runescape 3 and SRL6 compatible. Please enjoy this free script and use it well. Colour bots are the way to go!

    We are the hunted for over seven years.

    News:
    [23rd JUL 2014] Version 2.00 released! RS3 and SRL6 compatible! (See version history for details)

    [26th JUN 2013] New longest proggy; over 4 and a half days long (internet connection failure)!
    [1st MAR 2013] Version 1.06 released! (See version history for details) Next version will include setup form and a fixed auto-updater/version checker!
    [17th FEB 2013] Version 1.05 released! (See version history for details)
    [28th JAN 2013] Version 1.00 released! Out of BETA and into EoC!


    Requirements:
    1. You will need the latest version of Simba and SRL. For details on installing Simba and SRL click here.
    2. You will need a Runescape account with membership, since fletching is a member's skill.
    3. You will also need to read the setup instructions on this thread carefully.



    Features:
    • Basically the most comprehensive All-in-One (AIO) Fletcher:
      • Cuts logs into bows,
      • Cuts logs into crossbow limbs,
      • Cut logs into shafts,
      • Strings unstrung bows,
      • Strings unstrung crossbows,
      • Fletches arrow shafts into headless arrows,
      • Fletches headless arrows into arrows,
      • Fletches unfinished bolts into bolts (pearl and gem bolts not supported yet),
      • Fletches dart tips into darts, and
      • Joins crossbow limbs with stocks to make unstrung crossbows.
    • Banks at any SRL supported bank booth or chest.
    • Anti-ban (asks like a human).
    • Takes breaks.
    • Quick, fast and stable.
    • Supports multiplier.
    • Option for 'going AFK' like a real human.
    • Performs exceedingly well on fps lag.
    • Takes a screenshot upon failure (hides RSN and stats).



    Achieved 99's:
    78 accounts have "Level 99 Fletching" with the [F]antastic [F]letcher achieved to date!
    Progress Report:
    lxgodxl
    Smingo (x2)
    iiNveRsioN
    iKhemical
    Fredecus
    Kyle Undefined (x2)
    dmiZE brah
    bloopa1
    NJChronos
    fryt0l
    firevenge007 
    -daazndagger- (x3)
    Herosoul 
    grats
    Delusion
    Scaper
    Adobe
    aspire
    elfiik
    noobscam
    Neega Rose
    holysin
    jdoggy 
    InHuman
    Shaaaaun
    beezkneez
    Sulferx
    lays
    bigmike6675 
    anvi89
    Harry
    superbuster4
    maxxfilth 
    Tuning1st
    xThai
    Mattie403
    Pound
    thisguy
    Salut
    dylan7
    DarkKnight 
    kurtboi
    rowan131
    qwertybotter
    industries24
    8me
    iETHOSi
    rzeetry
    tubs-12
    shreder
    chiquo
    Lisida19
    erde0
    Peter
    archermaths
    Hazzah (x5)
    taint3dporky (x3)
    runb4udie
    Theoretic 
    stayon
    Casperftw
    Sh!nE
    benjaminvtz
    Trigys
    Austin
    Raiden702
    Kazimx 
    ding ding
    
    Count = 78



    Getting Started!

    Setup Instructions:
    Step 1. Download (at the bottom of this post) the .zip file and extract it. Open the "[ RUN ME ]" file.
    Step 2. In the script, set up the variables required from the title banner to the 'STOP' banner (see code below).
    Simba Code:
    1. {------------------------------------------------------------------------------]
    2. [  VARIBLE SETUP:                                                              ]
    3. [     See the thread for details.                                              ]
    4. [------------------------------------------------------------------------------}
    5. procedure loadGlobals();
    6. begin
    7.   whenBreak     := 180;       // Minutes until break
    8.   actAFK        := false;     // Do you randomly want to go AFK?
    9.   antiBan       := 100;       // How much anti-ban? [1=Always, 100=Sometimes]
    10. end;
    11.  
    12. {------------------------------------------------------------------------------]
    13. [  PLAYER DECLARATION:                                                         ]
    14. [     Change accordingly.                                                      ]
    15. [------------------------------------------------------------------------------}
    16. procedure declarePlayers();
    17. begin
    18.   howManyPlayers := 1;
    19.   setLength(players, howManyPlayers);
    20.   currentPlayer := 0;
    21.  
    22.   with players[0] do
    23.   begin
    24.     loginName       :='';         // Username
    25.     displayName     :='';         // Display name
    26.     password        :='';         // Password
    27.     bankPin         :='';         // Bank PIN
    28.  
    29.     integers[P_BANK_LOC]    := BANK_CHEST_SW; // Bank location; which bank? Refer to "SRL\lib\interfaces\bankscreen.simba".
    30.     integers[P_BANK_TAB]    := 1;             // Bank Tab which items are located.
    31.     integers[P_BANK_SLOT]   := 1;             // Bank Slot which items are located.
    32.     integers[P_COMPASS]     := MM_DIRECTION_EAST;  // The direction we should face.
    33.  
    34.     integers[P_MODE]      := MODE_CUT;      // Cuttng Bows, Stringing Bows, or Fletching Arrows? (See thread)
    35.     integers[P_TYPE]      := TYPE_MAPLE;    // What log/bow type? [TYPE_NORMAL, TYPE_OAK, TYPE_WILLOW, etc..]
    36.                                             // OR What arrow type? [TYPE_BRONZE, TYPE_IRON, TYPE_STEEL, etc..]
    37.     integers[P_BOW]       := BOW_SHIELD;    // Shieldbow or Shortbow? [BOW_SHIELD, BOW_SHORT]
    38.  
    39.     world         := -1;          // Default -1 clicks the play button
    40.     isMember      := true;
    41.     isActive      := true;
    42.   end;
    43. end;
    STEP 3. On your Runescape account, make sure that all materials are
    a) In the correct bank slots (see next section), or
    b) In the correct inventory slots (see next section).
    STEP 4. Make sure you are standing right next to the bank you declared in the setup).
    STEP 5. Make sure the "Make-X progress window" is toggled off (click to find out how).
    STEP 6. Make sure the "XP Pop-ups" is toggled off (click to find out how).
    STEP 7. Press "PLAY" in Simba, and watch the magic unfold!


    Valid Arguments: (for Step 1)
    In the setup, each option is given by a global constant. This section shows you what options are available. For the following, we will refer to the line number in the code above.

    What bank will you be using? (Line 29)
    Bank locations
    Code:
    VALID ARGUMENTS:
      BANK_NPC_BLUE
      BANK_NPC_GREY
      BANK_NPC_GREEN
      BANK_NPC_DRAYNOR
      BANK_BOOTH
      BANK_CHEST_SW
      BANK_CHEST_SHANTAY
      BANK_CHEST_DUEL
      BANK_CHEST_CW
      BANK_CHEST_GROTTO
      BANK_CHEST_LUMBRIDGE
      BANK_TABLE_BURTHORPE
    Simba Code:
    Integers[P_BANK_LOC]    := [SRL_BANK_SW];  // This example shows Soul Wars bank chest being set


    What mode will you be using? (Line 34)
    Modes
    Code:
    VALID ARGUMENTS:
    
      MODE_CUT               = Cuts logs into bows, or cuts logs into crossbow limbs
      MODE_STRING            = Strings unstrung bows, or strings unstrung crossbows
      MODE_SHAFTS            = Cut logs into shafts
      MODE_SHAFT_TO_HEADLESS = Fletches arrow shafts into headless arrows
      MODE_HEADLESS_TO_ARROW = Fletches headless arrows into arrows
      MODE_UNF_TO_BOLT       = Fletches unfinished bolts into bolts
      MODE_TIP_TO_DART       = Fletches dart tips into darts
      MODE_UNSTRUNG_CROSSBOW = Joins crossbow limbs with stocks to make unstrung crossbows.
    Simba Code:
    Integers[P_MODE]      := MODE_CUT;   //This example shows that you are either cutting logs into bows, or cutting logs into crossbow limbs


    What is the log or bow type you will be making? (Line 35)
    Material Types
    Code:
    VALID ARGUMENTS: 
    
    { *** For Type (Bow) }
      TYPE_NORMAL    
      TYPE_OAK       
      TYPE_COMP_OGRE 
      TYPE_WILLOW    
      TYPE_TEAK      
      TYPE_MAPLE     
      TYPE_MAHOGANY  
      TYPE_YEW       
      TYPE_MAGIC     
    
    { *** For Type (Arrow) }
      TYPE_BRONZE         
      TYPE_OGRE           
      TYPE_IRON           
      TYPE_STEEL          
      TYPE_MITHRIL        
      TYPE_BROAD          
      TYPE_ADAMANT        
      TYPE_RUNE           
      TYPE_ABYSSALBANE    
      TYPE_BASILISKBANE    
      TYPE_DRAGONBANE     
      TYPE_WALLASALKIBANE  
      TYPE_DRAGON         
    
    { *** For Type (Extras for bolts) }
      TYPE_BLURITE        = 23;
      TYPE_SILVER         = 24;
      TYPE_BROAD_TIPPED   = 25;
    Simba Code:
    Integers[P_TYPE]      := TYPE_MAPLE;     // This example shows that the bow being is maple
    Integers[P_TYPE]      := TYPE_MITHRIL;   // This example shows that the arrow/bolt/dart begin made is mithril


    What is type of bow or crossbow will be making? (Line 37)
    Finished product Type
    Code:
    VALID ARGUMENTS:
    
    { *** For Bow }
      BOW_SHORT           
      BOW_SHIELD           
      BOW_COMP_OGRE        
    
      BOW_CROSSBOW         
      BOW_OFFHAND_CROSSBOW 
      BOW_2H_CROSSBOW      
      
      DART_NORMAL        
      DART_OFFHAND         
     
      BOW_N_A      = Use this if you are cutting crossbow stocks
    Simba Code:
    Integers[P_BOW]       := BOW_SHIELD;        // This example shows you're making a Shieldbow
    Integers[P_BOW]       := BOW_2H_CROSSBOW;   // This example shows you're making a 2H Crossbow
    Integers[P_BOW]       := DART_OFFHAND;      // This example shows you're making offhand darts
    Integers[P_BOW]       := BOW_N_A;           // This example shows you're cutting crossbow stocks


    IMPORTANT: Sometimes you will not need to input anything or a particular mode. You must not leave it blank. Please input '0'.

    Setting up your bank: (For modes CUT, STRING, SHAFTS and UNSTRUNG_CROSSBOW)
    Setting up your bank
    What bank tab and slot are your materials in? (Lines 41 and 42)
    Each tab in the banking screen has a specified slot starting from the top left (bank slot 1). Tab number 1 is the tab with the infinity symbol. ie.



    As you can see, my maple logs are in Tab 3, Slot 22!
    Simba Code:
    Integers[P_BANK_TAB]  := 3;   // This example shows bank tab 3
    Integers[P_BANK_SLOT]  := 22;   // This example shows bank slot 22
    For mode:
    • STRING, make sure your unstrung bows are in the specified spot and bow strings are in the next bank slot.
    • UNSTRUNG_CROSSBOW, make sure your unstrung crossbows are in the specified spot and crossbow strings are in the next bank slot.


    IMPORTANT: Any Sacred clay knives are to be put one bank slot before the specified bank slot.
    IMPORTANT: Note that by SRL's functions, only the visible bank slots can be used. ie. Just don't be silly and use slot numbers that exceed 50.

    Setting up your inventory: (For modes SHAFT_TO_HEADLESS, HEADLESS_TO_ARROW, UNF_TO_BOLT and TIP_TO_DART)
    Setting up your inventory
    When making Arrow shafts into Headless arrows:
    1. Shafts in the first inventory slot,
    2. Feathers in the second inventory slot,
    3. Headless arrows will be made and appear in the third slot.



    When making Headless arrows into Arrows:
    1. Headless arrows in the first inventory slot,
    2. Arrow tips in the second inventory slot,
    3. Arrows will be made and appear in the third slot.



    When making Unfinished bolts into Bolts:
    1. Unfinished bolts in the first inventory slot,
    2. Feathers in the second inventory slot,
    3. Bolts will be made and appear in the third slot.


    When making Dart tips into Darts:
    1. Dart tips in the first inventory slot,
    2. Feathers in the second inventory slot,
    3. Darts will be made and appear in the third slot.



    History and the Future!

    To-do list:
    • Greater item support:
      • Tipped (pearl and gem) bolts.
      • Eldar bows
      • Dark arrow
      • Brutal arrows
      • Ascension bolt
    • Fast version with bank presets and keyboard hotkeys.
    • Setup form.
    • Stealing Creation Knife support (will continue to fletch when all in bank have run out).
    • Version checker and auto-updater.
    • Suggest me some things!
    • If anyone needs more banks added, give me a shout.


    Known Bugs:
    • Not applicable.




    Version History:
    Development log
    Progress Report:
    [------------------------------------------------------------------------------]
    [  Beta Development                                                            ]
    [------------------------------------------------------------------------------]
    [                                                                              ]
    [  ## Version 0.50 BETA (21/12/11):                                            ]
    [    - Released to villavu.com                                                 ]
    [    - Supports cutting and stringing                                          ]
    [  ## Version 0.51 BETA (22/12/11):                                            ]
    [    - Fixed timer countdown while waiting to fletch                           ]
    [    - Continues even if it cant find the bank/minigame symbols                ]
    [    - Added check to see in logs/bows have run out!                           ]
    [    - Other minor amendments                                                  ]
    [   *** Version 0.51.5 BETA ***                                                ]
    [      - Deposits after LevelUp (Temporary Implementation)                     ]
    [  ## Version 0.52 BETA (22/12/11):                                            ]
    [    - Added SC Knife compatability                                            ]
    [    - Changed my for loops to reapeat-until loops. This makes the script      ]
    [      more reliable. I used for loops because I was lazy :P                   ]
    [    - Removed CheckLoc; you now have to input which bank you're at            ]
    [  ## Version 0.53 BETA (23/12/11):                                            ]
    [    - Flushed out many bugs in the system!                                    ]
    [    - Added anti-ban frequency options                                        ]
    [    - Eliminated the most annoying 'Could not find Craft' error               ]
    [    - Fixed withdraw eror where it would missclick the bank and logout        ]
    [  ## Version 0.54 BETA (2/01/12):                                             ]
    [    - Many small improvements                                                 ]
    [    - Version checker                                                         ]
    [    - Fixed 'Normal long/shortbow' finding                                    ]
    [    - Improved Progress Report                                                ]
    [  ## Version 0.55 BETA (05/01/12):                                            ]
    [    - Fixed withdrawing bug and "TPA less than 1 bug"                         ]
    [    - Minor Progress report bug fix                                           ]
    [    - SRL5!                                                                   ]
    [   *** Version 0.55.5 BETA ***                                                ]
    [      - Small bug fix: didn't want to cut the logs!                           ]
    [  ## Version 0.60 BETA (17/01/12):                                            ]
    [    - Added Burthrope Bank                                                    ]
    [    - Added fletching arrow shafts                                            ]
    [    - Added arrow shafts to headless arrows                                   ]
    [    - Added headless arrows to arrows                                         ]
    [    - New and improved bank chest finding function                            ]
    [    - Improved code structure and small fixes everywhere!                     ]
    [                                                                              ]
    [------------------------------------------------------------------------------]  
    [  Evolution of Combat Development                                             ]
    [------------------------------------------------------------------------------]
    [                                                                              ]
    [  ## Version 1.00 (28th Jan, 2013):                                           ]
    [    - Update for EoC! Re-worked EVERYTHING!                                   ]
    [  ## Version 1.05 (17th Feb, 2013):                                           ]
    [    - Fixed progress report issues.                                           ]
    [    - Fixed bug which caused script termination on 'Session Expired'.         ]
    [    - Plus other small bugs.                                                  ]
    [    - Takes a screenshot if the script fails now.                             ]
    [  ## Version 1.06 (1st Mar, 2013):                                            ]
    [    - Added custom level-up function (which solves firework bug)              ]
    [    - More stable; tries each step 3 times!                                   ]
    [    - Screenshots hide RSN and stats.                                         ]
    [  ## Version 1.10 (Unreleased):                                               ]
    [    - Top secrets.                                                            ]
    [                                                                              ]
    [------------------------------------------------------------------------------]
    [  Runescape 3 Development                                                     ]
    [------------------------------------------------------------------------------]
    [                                                                              ]
    [  ## Version 2.00 (23rd July, 2014):                                          ]
    [    - Re-written for RS3 and SRL6!                                            ]
    [    - Follows a more structural and logical method with more documentation.   ]
    [    - SC Knife feature removed (don't worry, it will be back).                ]
    [                                                                              ]
    [------------------------------------------------------------------------------]




    Top Progress Reports:

    Crème de la Crème
    -daazndagger-
    Progress Report:
    [16:07:50]: /-------------------------------------------------------------\
    [16:07:50]: |-------------------------------------------------------------|
    [16:07:50]: |                        Press Play's                         |
    [16:07:50]: |                   [F]antastic [F]letcher                    |
    [16:07:50]: |                        Version 1.10                         |
    [16:07:50]: |-------------------------------------------------------------|
    [16:07:50]: |     TOTALS :                                                |
    [16:07:50]: |       Time Running  : 112 hr 7 min 50 sec                   |
    [16:07:50]: |       Logs Cut      : 156688                                |
    [16:07:51]: |       Exp Gained    : 9134910                               |
    [16:07:51]: |                                                             |
    [16:07:51]: |     PLAYER 0 : [ Cutting Maple Shieldbow (U) ]              |
    [16:07:51]: |       Time Running  : 111 hr 58 min 3 sec                   |
    [16:07:51]: |       Logs Cut      : 156688                                |
    [16:07:51]: |       Exp Gained    : 9134910                               |
    [16:07:51]: |       Exp / Hour    : 81586                                 |
    [16:07:51]: |       False Reason  : Error Connecting                      |
    [16:07:51]: |                                                             |
    [16:07:51]: |                                                             |
    [16:07:52]: |-------------------------------------------------------------|
    [16:07:52]: \-------------------------------------------------------------/


    stayon
    Progress Report:
    /-------------------------------------------------------------\
    |-------------------------------------------------------------|
    |                       -daazndagger-'s                       |
    |                   [F]antastic [F]letcher                    |
    |                        Version 1.06                         |
    |-------------------------------------------------------------|
    |     TOTALS :                                                |
    |       Time Running  : 41 hr 37 min 26 sec                   |
    |       Fletched      : 1081200                               |
    |       Exp Gained    : 1081200                               |
    |                                                             |
    |     PLAYER 0 : [ Fletching Headless Arrows ]                |
    |       Time Running  : 41 hr 33 min 17 sec                   |
    |       Fletched      : 1081200                               |
    |       Exp Gained    : 1081200                               |
    |       Exp / Hour    : 26022                                 |
    |       False Reason  : Used up all items: 1                  |
    |                                                             |
    |                                                             |
    |-------------------------------------------------------------|
    \-------------------------------------------------------------/


    -daazndagger-
    Progress Report:
    /-------------------------------------------------------------\
    |-------------------------------------------------------------|
    |                       -daazndagger-'s                       |
    |                   [F]antastic [F]letcher                    |
    |                        Version 1.06                         |
    |-------------------------------------------------------------|
    |     TOTALS :                                                |
    |       Time Running  : 16 hr 34 min 17 sec                   |
    |       Fletched      : 450000                                |
    |       Exp Gained    : 450000                                |
    |                                                             |
    |     PLAYER 0 : [ Fletching Headless Arrows ]                |
    |       Time Running  : 16 hr 31 min 52 sec                   |
    |       Fletched      : 450000                                |
    |       Exp Gained    : 450000                                |
    |       Exp / Hour    : 27245                                 |
    |       False Reason  : Used up all items: 1                  |
    |                                                             |
    |                                                             |
    |-------------------------------------------------------------|
    \-------------------------------------------------------------/







    Previous Views:

    FantasticFletcherV0.50BETA.simba (26.7 KB, 34 views)
    FantasticFletcherV0.51BETA.simba (27.8 KB, 10 views)
    FantasticFletcherV0.51.5BETA.simba (28.2 KB, 19 views)
    FantasticFletcherV0.52BETA.simba (30.3 KB, 46 views)
    FantasticFletcherV0.53BETA.simba (32.6 KB, 291 views)
    FantasticFletcherV0.54BETA.simba (40.7 KB, 125 views)
    FantasticFletcherV0.55BETA.simba (42.9 KB, 19 views)
    FantasticFletcherV0.55.5BETA.simba (43.1 KB, 547 views)
    FantasticFletcherV0.60BETA.simba (45.3 KB, 1389 views)
    FantasticFletcherV0.70BETA_dev.simba (45.3 KB, 3371 views)
    FantasticFletcherV0.71BETA.simba (46.2 KB, 1629 views)

    Fantastic Fletcher (Release Pack V1.00).zip (12.2 KB, 91 views)
    Fantastic Fletcher (Release Pack V1.05).zip (12.3 KB, 58 views)
    Fantastic Fletcher (Release Pack V1.06).zip (13.9 KB, 467 views)

    Total views: 8096

    Beta Development Thread - Replies: 1,225; Views: 53,500
    Attached Files Attached Files
    Last edited by Press Play; 07-23-2014 at 08:14 AM. Reason: RS3 and SRL6 re-done and re-worked!

    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]

  2. #2
    Join Date
    Feb 2012
    Location
    Wonderland
    Posts
    1,988
    Mentioned
    41 Post(s)
    Quoted
    272 Post(s)

    Default

    Oh nice, I heard you were going to do this; congrats on release!!

    Always feels nice to see another member visit back and redo/learn from old script(s) (granted the minimal/maximal variation in having to redo/change/learn)



    Again Congrats,
    Lj

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

    Default

    Quote Originally Posted by Le Jingle View Post
    Oh nice, I heard you were going to do this; congrats on release!!

    Always feels nice to see another member visit back and redo/learn from old script(s) (granted the minimal/maximal variation in having to redo/change/learn)



    Again Congrats,
    Lj
    Thanks! Yeah, I had to pretty much re-do everything. Mind you, scripting for Runescape has become a lot easier. I got rid of so many functions from my old script!

    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. #4
    Join Date
    Sep 2012
    Location
    Australia.
    Posts
    839
    Mentioned
    16 Post(s)
    Quoted
    225 Post(s)

    Default

    When you included SRL.simba and SmartGraphics.simba, you have it as SRL-5/SRL/---.simba. Might want to add that somewhere in your post to change that.

    Trying now. Looks very good!

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

    Default

    Quote Originally Posted by Chris! View Post
    When you included SRL.simba and SmartGraphics.simba, you have it as SRL-5/SRL/---.simba. Might want to add that somewhere in your post to change that.

    Trying now. Looks very good!
    Thanks for that! Re-uploaded it Tell me how it goes!

    By the way, I used your guide to the new forum layout to create this awesome thread post with all the contents and that It's really good.

    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]

  6. #6
    Join Date
    Dec 2011
    Location
    Hyrule
    Posts
    8,662
    Mentioned
    179 Post(s)
    Quoted
    1870 Post(s)

  7. #7
    Join Date
    Jan 2013
    Posts
    14
    Mentioned
    0 Post(s)
    Quoted
    11 Post(s)

    Default

    Hi!
    It looks great, but i'm having this problem "[Error] C:\Simba\Includes\SRL/SRL/misc/SmartParams.Simba(281:149): Invalid number of parameters at line 280
    Compiling failed."

    I don't know what to do!

  8. #8
    Join Date
    Mar 2006
    Location
    Belgium
    Posts
    3,564
    Mentioned
    111 Post(s)
    Quoted
    1475 Post(s)

    Default

    Quote Originally Posted by TheCharred View Post
    Hi!
    It looks great, but i'm having this problem "[Error] C:\Simba\Includes\SRL/SRL/misc/SmartParams.Simba(281:149): Invalid number of parameters at line 280
    Compiling failed."

    I don't know what to do!
    http://villavu.com/forum/showthread....83#post1141283


    Well done on the release Looks good on the eyes.

    Creds to DannyRS for this wonderful sig!

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

    Default

    Quote Originally Posted by TheCharred View Post
    Hi!
    It looks great, but i'm having this problem "[Error] C:\Simba\Includes\SRL/SRL/misc/SmartParams.Simba(281:149): Invalid number of parameters at line 280
    Compiling failed."

    I don't know what to do!
    You probably have SMARTv7.2 - my script uses SMARTv8.0. To run the script with your current version, change line 2 from
    Simba Code:
    {$DEFINE SMART8}
    to
    Simba Code:
    {$DEFINE SMART}

    Although, I highly recommend you update to SMARTv8.0 - see here.

    Quote Originally Posted by Ashaman88 View Post
    Nice job on the re-release! Very clean thread setup
    Quote Originally Posted by Sjoekeloe View Post
    http://villavu.com/forum/showthread....83#post1141283


    Well done on the release Looks good on the eyes.
    Thanks guys I took ages to make the first post look good ahaha

    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]

  10. #10
    Join Date
    Jan 2013
    Location
    Ohio
    Posts
    155
    Mentioned
    1 Post(s)
    Quoted
    76 Post(s)

    Default

    i keep getting an error where i get this on the statues bar of simba.
    * im gonna try to run it with the production statues bar open to see if it does it again.

    Player 0 is cutting Yew shieldbow (u)
    ** Warning in OpenBankFast: Unknown bank: 20 **
    ** Warning in OpenBankQuiet: Unknown bank: 20 **
    Successfully deposited items into the bank.
    BankSlotPoint: (9, 0)
    Could not withdraw! 1
    Successfully withdrawn items.
    Closed Bank.
    Fletching.
    Random Inventory slot choosen: 5
    PanelIndexSelected: 3
    Clicking big blue button.
    Could not find StatusScreen.
    Loging out...

    the production progress bar for runescape is required for this script to run properly

  11. #11
    Join Date
    May 2012
    Location
    Somewhere in, PA
    Posts
    1,810
    Mentioned
    9 Post(s)
    Quoted
    226 Post(s)

    Default

    Great to see this script up and running again! I got 70-98 fletching with this script back before EoC . When I get 99 I'll be sure to post a pic and you can add me to the list
    My First Build!, Selling Downloadable Games
    -------------------------------------

  12. #12
    Join Date
    Sep 2012
    Location
    Legolan, Ireland
    Posts
    542
    Mentioned
    0 Post(s)
    Quoted
    50 Post(s)

    Default

    Does it automatically detect the first popup for cutting logs?
    Have you felt the whale lately?
    .__________.
    Whale so hard.

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

    Default

    Quote Originally Posted by Rogue Sniper View Post
    i keep getting an error where i get this on the statues bar of simba.
    * im gonna try to run it with the production statues bar open to see if it does it again.

    Player 0 is cutting Yew shieldbow (u)
    ** Warning in OpenBankFast: Unknown bank: 20 **
    ** Warning in OpenBankQuiet: Unknown bank: 20 **
    Successfully deposited items into the bank.
    BankSlotPoint: (9, 0)
    Could not withdraw! 1
    Successfully withdrawn items.
    Closed Bank.
    Fletching.
    Random Inventory slot choosen: 5
    PanelIndexSelected: 3
    Clicking big blue button.
    Could not find StatusScreen.
    Loging out...

    the production progress bar for runescape is required for this script to run properly
    The script is saying that it can't find the "Status Screen":

    I wasn't aware you could turn this off?

    Quote Originally Posted by Austin View Post
    Great to see this script up and running again! I got 70-98 fletching with this script back before EoC . When I get 99 I'll be sure to post a pic and you can add me to the list
    You got so close! Ahaha, let me know definitely

    Quote Originally Posted by ___ View Post
    Does it automatically detect the first popup for cutting logs?
    Yes, it detects the "Choose a Tool" pop-up. Is that what your talking about?

    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]

  14. #14
    Join Date
    Aug 2012
    Posts
    38
    Mentioned
    0 Post(s)
    Quoted
    23 Post(s)

    Default

    Disregard this post, sorry wrong thread XD

    Formerly: [Dan] Zeldakid1227 of RsCheata.net

    http://www.frement.net/srl/simba_user4.png

  15. #15
    Join Date
    Feb 2012
    Location
    Wonderland
    Posts
    1,988
    Mentioned
    41 Post(s)
    Quoted
    272 Post(s)

    Default

    Quote Originally Posted by -daazndagger- View Post
    The script is saying that it can't find the "Status Screen":

    I wasn't aware you could turn this off?
    I didn't know this either for the longest time, too >.<
    Turns out, you simply right click the XP circle (where you open the XP counter) and select, "Toggle Production Dialog"

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

    Default

    Quote Originally Posted by Le Jingle View Post
    I didn't know this either for the longest time, too >.<
    Turns out, you simply right click the XP circle (where you open the XP counter) and select, "Toggle Production Dialog"
    I shall add to the instructions to keep that up then lol. My script uses that to see when the fletching has finished. I had no idea you could disable it!

    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]

  17. #17
    Join Date
    Jan 2012
    Location
    Calgary, AB, Canada
    Posts
    1,819
    Mentioned
    5 Post(s)
    Quoted
    120 Post(s)

    Default

    Great to see this bad boy updated and functional used it to get 94 on a secondary sometime ago, will probably use to get the last few levels
    Current Project: Retired

  18. #18
    Join Date
    Jan 2013
    Location
    Ohio
    Posts
    155
    Mentioned
    1 Post(s)
    Quoted
    76 Post(s)

    Default

    ok so after 2hrs 40mins 35secs the script gave this report ... i have the break time set to 180mins with no AFK.

    Could not find StatusScreen or ToolSelectScreen.
    Loging out...

    Any idea what went wrong? Here is Proggy

    TOTALS :
    | Time Running : 2 hr 40 min 58 sec
    | Logs Cut : 4032
    | Exp Gained : 0
    |
    | PLAYER 0 : [ Cutting Yew Shieldbow (U) ]
    | Time Running : 0 sec
    | Logs Cut : 4032
    | Exp Gained : 302400
    | Exp / Hour : DIVIDE BY ZERO ERROR
    | False Reason : Could not fletch

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

    Default

    Quote Originally Posted by Rogue Sniper View Post
    ok so after 2hrs 40mins 35secs the script gave this report ... i have the break time set to 180mins with no AFK.

    Could not find StatusScreen or ToolSelectScreen.
    Loging out...

    Any idea what went wrong? Here is Proggy

    Progress Report:
    TOTALS :                                                
    |       Time Running  : 2 hr 40 min 58 sec                    
    |       Logs Cut      : 4032                                  
    |       Exp Gained    : 0                                     
    |                                                             
    |     PLAYER 0 : [ Cutting Yew Shieldbow (U) ]                
    |       Time Running  : 0 sec                                 
    |       Logs Cut      : 4032                                  
    |       Exp Gained    : 302400                                
    |       Exp / Hour    : DIVIDE BY ZERO ERROR                  
    |       False Reason  : Could not fletch
    You may have just hit a lag, and it timed out trying to look for the StatusScreen. I think I will increase the timer for the next version. Thanks for the feedback. Next time, would you mind copying a bit more of the debug. And, post it in [REPORT] tags, as I have done ^^.

    I will also have a look at the timing problem. I'm not too sure why it's showing "Time Running : 0 sec" for your character.

    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]

  20. #20
    Join Date
    Feb 2013
    Posts
    3
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    NO idea how to paste the bank location in. Do I remove the []?

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

    Default

    Quote Originally Posted by euros only View Post
    NO idea how to paste the bank location in. Do I remove the []?
    No you don't have to remove the [ ]. What bank are you trying to use?
    Last edited by Press Play; 02-02-2013 at 12:37 PM.

    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]

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

    Default

    Decided to buy 120k arrow shafts and feathers to test - a perfect run making headless arrows. (Note: Statistics will not show in the progress report for V1.00; I forgot to add that in).
    Progress Report:
    /-------------------------------------------------------------\
    |-------------------------------------------------------------|
    |                       -daazndagger-'s                       |
    |                   [F]antastic [F]letcher                    |
    |                        Version 1.01                         |
    |-------------------------------------------------------------|
    |     TOTALS :                                                |
    |       Time Running  : 4 hr 28 min 11 sec                    |
    |       Fletched      : 120000                                |
    |       Exp Gained    : 120000                                |
    |                                                             |
    |     PLAYER 0 : [ Fletching Headless Arrows ]                |
    |       Time Running  : 4 hr 27 min 53 sec                    |
    |       Fletched      : 120000                                |
    |       Exp Gained    : 120000                                |
    |       Exp / Hour    : 26966                                 |
    |       False Reason  : Could not fletch                      |
    |                                                             |
    |                                                             |
    |-------------------------------------------------------------|
    \-------------------------------------------------------------/


    For those interested - That's about 1m profit

    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]

  23. #23
    Join Date
    Jan 2013
    Location
    Ohio
    Posts
    155
    Mentioned
    1 Post(s)
    Quoted
    76 Post(s)

    Default

    /-------------------------------------------------------------\
    |-------------------------------------------------------------|
    | -daazndagger-'s |
    | [F]antastic [F]letcher |
    | Version 1.00 |
    |-------------------------------------------------------------|
    | TOTALS : |
    | Time Running : 4 hr 40 sec |
    | Bows Strung : 5390 |
    | Exp Gained : 0 |
    | |
    | PLAYER 0 : [ Stringing Yew Shieldbow ] |
    | Time Running : 4 hr 36 sec |
    | Bows Strung : 5390 |
    | Exp Gained : 404250 |
    | Exp / Hour : 101062 |
    | False Reason : |
    | |
    | |
    |-------------------------------------------------------------|
    \-------------------------------------------------------------/

    a simple 4 hour proggy stringing yew shieldbows -- used script to cut them too

    using this script ive gotting from 75 fletching to 86 with no major problems

    i still get a few 20 min run times but just start it back up like 10 mins later and it goes for hours on end

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

    Default

    Quote Originally Posted by Rogue Sniper View Post
    /-------------------------------------------------------------\
    |-------------------------------------------------------------|
    | -daazndagger-'s |
    | [F]antastic [F]letcher |
    | Version 1.00 |
    |-------------------------------------------------------------|
    | TOTALS : |
    | Time Running : 4 hr 40 sec |
    | Bows Strung : 5390 |
    | Exp Gained : 0 |
    | |
    | PLAYER 0 : [ Stringing Yew Shieldbow ] |
    | Time Running : 4 hr 36 sec |
    | Bows Strung : 5390 |
    | Exp Gained : 404250 |
    | Exp / Hour : 101062 |
    | False Reason : |
    | |
    | |
    |-------------------------------------------------------------|
    \-------------------------------------------------------------/

    a simple 4 hour proggy stringing yew shieldbows -- used script to cut them too

    using this script ive gotting from 75 fletching to 86 with no major problems

    i still get a few 20 min run times but just start it back up like 10 mins later and it goes for hours on end
    Sweet proggy If it stuffs up after 10 minutes or something, you should post the debug, so I can have a look. I'm going to put up the next version sometime soon - a lot is fixed in it!

    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]

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

    Default

    Double post (again), sorry, but this news has to be seen. It's my longest proggy!
    Progress Report:
    /-------------------------------------------------------------\
    |-------------------------------------------------------------|
    |                       -daazndagger-'s                       |
    |                   [F]antastic [F]letcher                    |
    |                        Version 1.05                         |
    |-------------------------------------------------------------|
    |     TOTALS :                                                |
    |       Time Running  : 21 hr 46 min 5 sec                    |
    |       Logs Cut      : 28308                                 |
    |       Exp Gained    : 1650356                               |
    |                                                             |
    |     PLAYER 0 : [ Cutting Maple Shieldbow (U) ]              |
    |       Time Running  : 21 hr 42 min 18 sec                   |
    |       Logs Cut      : 28308                                 |
    |       Exp Gained    : 1650356                               |
    |       Exp / Hour    : 76053                                 |
    |       False Reason  :                                       |
    |                                                             |
    |                                                             |
    |-------------------------------------------------------------|
    \-------------------------------------------------------------/
    
    Successfully deposited items into the bank.
    BankSlotPoint: (2, 1)
    Successfully withdrawn items.
    Closed Bank.
    Fletching.
    Random Inventory slot choosen: 5
    Could not find StatusScreen or ToolSelectScreen.
    Loging out...


    I'm guessing that my internet disconnected... happens all the time I'm still working on this version (1.05). Its improved, but I can improve more! I gotta get to that one day proggy mark

    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]

Page 1 of 8 123 ... 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
  •