Jump to content

Search the Community

Showing results for tags 'source'.

  • 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 2 results

  1. RandomIncSudokuSolver Hello everyone, this is my first script I made for the OsBot client. It was my intention to learn the api. This script will try to solve the sudoku minigame, after solving it, it will buy runes. (Default settings are DEATH, NATURE and COSMIC runes). I'm too lazy to make a GUI at the moment. You can change the runes and the solve speed in the main Script class. There is a simple paint that tells you how many sudoku's you've solved and how much profit you've made. Don't run this script for too long and without the break handler! The sudoku minigame has a high ban rate... It will automatically detect your screen brightness and set it on the forth position (since it relies on color data). You need to start it next to Ali (it will not web walk or anything like that). Make sure you have enough money in your inventory. If it runs out, the script will be stopped. Source and jar download Feedback is welcome! Happy botting ~RandomInc Edit: I would like to apply for the script writer rank I, is this possible with current script?
  2. An open source Oldschool Runescape account creator with proxy and anticaptcha support! below is a snippet of how to use it. The only requirement is to specify your api key from anti-captcha.com public static final String API_KEY = "INSERT_API_KEY_HERE"; public static final String WEBSITE_URL = "https://secure.runescape.com/m=account-creation/g=oldscape/create_account?trialactive=true"; public static final String WEBSITE_KEY = "6LccFA0TAAAAAHEwUJx_c1TfTBWMTAOIphwTtd1b"; public static void main(String[] args) throws InterruptedException, MalformedURLException { Scanner in = new Scanner(System.in); AccountCreator creator = new AccountCreator(); System.out.print("IP : "); String ip = in.next(); System.out.print("PORT : "); int port = in.nextInt(); System.out.print("DISPLAY NAME : "); String displayName = in.next(); System.out.print("EMAIL : "); String email = in.next(); System.out.print("PASSWORD : "); String password = in.next(); System.out.print("AGE : "); int age = in.nextInt(); in.close(); creator.getBalance(); creator.createAccount(ip, port, displayName, email, password, age); }
×
×
  • Create New...