Jump to content

Search the Community

Showing results for tags 'banking'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • OSBot
    • News & Announcements
    • Community Discussion
    • Bot Manager
    • Support Section
    • Mirror Client VIP
    • Script Factory
  • Scripts
    • Official OSBot Scripts
    • Script Factory
    • Unofficial Scripts & Applications
    • Script Requests
  • Market
    • OSBot Official Voucher Shop
    • Currency
    • Accounts
    • Services
    • Other & Membership Codes
    • Disputes
  • Graphics
    • Graphics
  • Archive

Product Groups

  • Premium Scripts
    • Combat & Slayer
    • Money Making
    • Minigames
    • Others
    • Plugins
    • Agility
    • Mining & Smithing
    • Woodcutting & Firemaking
    • Fishing & Cooking
    • Fletching & Crafting
    • Farming & Herblore
    • Magic & Prayer
    • Hunter
    • Thieving
    • Construction
    • Runecrafting
  • Donations
  • OSBot Membership
  • Backup

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


MSN


Website URL


ICQ


Yahoo


Skype


Location:


Interests

Found 4 results

  1. wrote a simple script cuts and banks, must have DS1 completed to access the resource area. Start on the island, next version I'll make where you can start anywhere, if you can't equip your axe and have 28 free inventory slots then change method check 4 to [4, Inventory, getAmount, 1:Maple logs, 2:27, 1:==]. Have fun guys.
  2. REDWOOD CUTTER with Bank Support What does the Script do? Cuts Redwood Trees at Woodcutting Guild. Automatically deposits logs into deposit box when inv full. How do I download the script? Available for free on the Script Factory Script Network. You can check out Script Factory here. Requirements Woodcutting Axe equipped. Access to Woodcutting Guild. Start at woodcutting guild by bank deposit box. To Be Added Magic Trees Yew Trees Drop Inv Teleport support Chatbot support
  3. Seagull Slaughter About This is my first script release. I wanted to make a simple script that could survive fighting multiple hours without any requirements on an account. It's a script to help you achieve early combat levels. This script is ideal for training combat levels between 1-60; using this script for levels higher than 60 will result in very slow progression. I've personally tested the script for several hours on multiple accounts. I've mainly used melee combat and haven't tested ranged combat long enough, but it worked well during testing. Although the script supports picking up arrows, it will not equip them; once you run out of arrows the script will run into problems. To avoid this, babysit or equip a decent stack size of arrows. This script was not made with magic combat in mind, please refrain from training magic with this script until it is implemented. Features - Pickup arrows that meet the specified stack size requirement - Bury bones (Slow in mirror mode, planning to implement my own method to interact with the bones more efficiently) - Bank bones - Goal for desired level of the selected combat style, once reached, the script will stop Instructions Download the jar file and place it into your C:\Users\"Username"\OSBot\Scripts directory. Launch the script while standing on Port Sarim near the seagulls. Once you've selected your combat style and other miscellaneous options, click "Start" to begin the script. Bugs If you encounter any bugs, please let me know and send me a copy of the script log and maybe a screenshot of what the bot was doing if and when the script ran into trouble. Download V1.0 Download Link Changelog Future Additions Screenshots
  4. Hello Guys, Im working on a script that makes tuna potatoes from cooked ingredients in the bank It basically works like this: Inventory contains 9 Bowl, 9 Cooked sweetcorn, 9 Tuna and a Knife Combines items to 9 Corn and tuna Bank to get 9 Pat of butter and 9 Baked potato Combines items to get Potato with butter and after that makes the Tuna potatoes And leaves the inventory with 9 Bowl and 9 Tuna Potatoes But I can’t get the banking to work I’ve tried this: case BANK: if (!getBank().isOpen()) { getBank().open(); } else { // Inventory 9 Tuna and corn, 9 Pat of butter, 9 Baked Potato and 1 knife inventory ready for making Potato with butter and Tuna Potato. if (this.inventory.getAmount(new String[] { "Tuna and corn" }) == 9) { sleep(random(333, 666)); getBank().depositAllExcept(new String[] { "Knife", "Tuna and corn" }); sleep(random(300, 800)); getBank().withdraw("Pat of butter", 9); sleep(random(300, 800)); getBank().withdraw("Baked Potato", 9); sleep(random(300, 800)); if (this.inventory.getAmount(new String[] { "Pat of butter", "Baked Potato" }) == 18){ getBank().close(); sleep(random(300, 800)); return Main.random(300, 800); }} // Inventory 9 Bowl, 9 Tuna, 9 Cooked Sweedcorn and 1 knife start and finish of inventory. if (this.inventory.getAmount(new String[] { "Bowl" }) == 9) { sleep(random(333, 666)); getBank().depositAllExcept(new String[] { "Knife", "Bowl" }); sleep(random(300, 800)); getBank().withdraw("Tuna", 9); sleep(random(300, 800)); getBank().withdraw("Cooked Sweedcorn", 9); sleep(random(300, 800)); if (this.inventory.getAmount(new String[] { "Tuna", "Cooked Sweedcorn" }) == 18){ getBank().close(); sleep(random(300, 800)); return Main.random(300, 800); }} } break; Some help would be appreciated ;)
×
×
  • Create New...