Jump to content

RandomInc

Members
  • Posts

    19
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    0%

RandomInc last won the day on November 9 2017

RandomInc had the most liked content!

Profile Information

  • Gender
    Male

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

RandomInc's Achievements

Newbie

Newbie (1/10)

14

Reputation

  1. Dialogue api works just fine in mirror mode
  2. RandomInc

    OSBot 2.4.145

    You using java 9? if so, you need to use java 8 to startup OsBot.
  3. Today? Because after the update yesterday, everything worked just fine. However, after testing the same code today, it is indeed broken.
  4. The isPendingOption does always return false atm. Yesterday it worked just fine. I don't know how this can break so suddenly? IsPendingContinuation does still work Code: log(dialogues.isPendingOption() + " - " + dialogues.isPendingContinuation() + " - " + dialogues.inDialogue()); Proof:
  5. If you get banned on a proxy, you should "never" use it again. You shouldn't change proxies while botting on the same account
  6. For the maple logs and knife problem, try using conditional sleeps. After each interaction, you check for animations, or inventory items. After opening and closing the bank, you check for that etc. For the webwalking, I haven't working with that yet. Can't help you
  7. Alright thanks. Guess I need to made some small modifications. I'll apply tomorrow or the day after tomorrow.
  8. Had to choose between passing the script around or using a static class with 5 ish variables. Amh, I know it isn't perfect, but it looks clean if it doesn't get too big imo.
  9. Thanks! Yes, I have the script writer rank on another oldschool botting site (house rules say I cannot say the name..).
  10. 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?
  11. Mirror client version 2.4.144 Console output / terminal output Nothing Crash report if a crash occurred No crash, just bot like behaviour Script that you ran my own Hooks that failed none JVM/Browser bit version (32 / 64) Code used: for (Item item : api.store.getItems()) { for (Rune rune : runesToBuy) { if (item.getId() == rune.getRuneId()) { int amount = api.store.getAmount(item.getId()); if (amount > 0) { api.store.buy(item.getName(), amount); } } } } Behaviour: Mouse will move to empty spot, or won't move at all. It will buy a few runes from the first type. than it stops working.. Location: Shop from Ali Morrisane's in Al kharid EDIT: GIF: https://i.imgur.com/gCccjeo.gif EDIT 2: I'm currently using widgets, and it works great too. But I would still very much like the store api to get fixed. (Or am I doing something wrong here?)
×
×
  • Create New...