Leaderboard
Popular Content
Showing content with the highest reputation on 11/09/17 in all areas
-
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?3 points
-
Want to buy with OSGP? Contact me on Discord! Detailed feature list: - Chop & Bank (Presets) Preset locations for quick a start without too much settings to choice from (Barbarian assault, Castle wars, Catherby, Draynor, Edgeville, Falador-East, Gnome stronghold, Grand exchange, Hardwood grove, Mage training arena, Neitiznot, Port sarim, Rimmington, Seers, Varrock-East/West, Woodcutting guild, ...) - Chop & bank (Custom) Chop on any location of your choice Set a chop position and a chop radius Select the tree type you want to chop Banks at the closest bank possible - Chop & Drop Chop on any location of your choice Set a chop position and a chop radius Select the tree type you want to chop Drops all logs (unless fletching is used) Option to fletch your logs into arrow shafts OR bets item possible based on your level and Logs UIM mode (Only drops logs, carefull with bird nests etc.) - Redwood Option to drop logs instead of banking - Forestry support (Struggling sapling, Tree roots, Fox, Pheasant, Ritual circles, Leprechaun, Entlings, Beehive) - Log basket support - Bird nest pickup support - Axe special attack (Crystal, Dragon, Infernal, ...) - Progressive axe upgrading - Humanlike idles - Menu invokes - CLI support for goldfarmers Custom Breakmanager: - Setup Bot and break times - Randomize your break times - Stop script on certain conditions (Stop on first break, Stop after X amount of minutes, Stop when skill level is reached) - Worldhopping - Crucial part to botting in 2023! Script queueing: - Support queueing multiple script in a row - All Khal scripts support flawless transitions in between scripts - Start creating your acc in a few clicks from scratch to multiple 99's - Flawless CLI support - Learn more here: How to use CLI parameters: - Example Usage: -script 569:ScriptFile.BreakFile.DiscordFile SAVEFILE = Saved Filename BREAKFILE = Breakmanager Filename - SAVEFILE: Save file can be created in the GUI. Navigate to the tab you want to run and press "Save As CLI file". Please choose your filename wisely (No special characters) - BREAKFILE (Optional): Breakfile can also be create in the GUI, set the breaksettings you wish to use and press "Save new CLI BreakFile". Please choose your filename wisely (No special characters) - Final form (Note that with some bot managers you do not need to specify -script 569): -script 569:TaskList1.4515breaks (With breaks) -script 569:TaskList1.4515breaks.discord1 (With breaks & discord) -script 569:TaskList1..discord1 (NO breaks & discord) Proggies:2 points
-
Alright thanks. Guess I need to made some small modifications. I'll apply tomorrow or the day after tomorrow.2 points
-
2 points
-
Thanks! Yes, I have the script writer rank on another oldschool botting site (house rules say I cannot say the name..).2 points
-
I've gone ahead and banned the user, if he wishes to return, he will have to refund.2 points
-
Not mine: import java.io.BufferedReader; import java.io.InputStream; import java.io.InputStreamReader; import java.net.URL; import java.util.ArrayList; import java.util.HashMap; public class Exchange { private static HashMap<Integer, Integer> cache = new HashMap<Integer, Integer>(); public static String getData(int itemID) { try { StringBuilder sb = new StringBuilder("https://api.rsbuddy.com/grandExchange?a=guidePrice&i="); sb.append(String.valueOf(itemID)); InputStream inputStream = new URL(sb.toString()).openStream(); InputStreamReader inputStreamReader = new InputStreamReader(inputStream); BufferedReader bufferedReader = new BufferedReader(inputStreamReader); String line; while ((line = bufferedReader.readLine()) != null) { if (line.contains("{")) { sb = new StringBuilder(line); sb.deleteCharAt(0); return sb.toString(); } } } catch (Exception e) { return e.getMessage(); } return null; } public static String[] parseData(String data) { ArrayList<String> holder = new ArrayList<String>(); String[] parts = data.split(","); //Now we have strings in format "x":y for (String s : parts) { s = s.replace("\"", ""); //Remove " - now in format x:y holder.add(s.split(":")[1]); //Extract y from format x:y } String[] ret = new String[holder.size()]; return holder.toArray(ret); } public static int getPrice(int itemID) { if (itemID == 995) return 1; if (cache.containsKey(itemID)) { return cache.get(itemID); } String[] data = parseData(getData(itemID)); int price = Integer.valueOf(data[0]); cache.put(itemID, price); return price; } } Use: Item item = getInventory().getItem("Coal"); int price = Exchange.getPrice(item.getId())2 points
-
2 points
-
2 points
-
@Ace @Oven Mitts @Lagginglemon @Eagle Scripts @Failure @Hi Im Meako @TheDMan22 @AresScripts @lawf @Exylum @Deceiver @Maldesto @crico @tmanowen @maxvldz @evilhell @angus3 @montie @tr1zym @Tuhto @Han @Barnie @Joster @bazmorekentos @molier @Incarnationz @scaletta58 @gearing @socallmemaybe @logi @Solzhenitsyn @AddeyB @Sub_Zero @jython @Jammer @walterww @Drkohler @tranzystor3 @decal @diltom1998 @Fairy Tail @thepeople @roguehippo @Zulrah @Jungle_walk @payton9812 @Spore @SuikaBooty @YuhhMauls @Acke @dimka5112 @Kaarthal @BlindedIBall @remfu @cartel132 @johnny12303 @dorsai68 @dorsai67 @seeker @MockingJayG @jojangers @purplewatilla @killercrak @victoremidio159 @THS @BotLearn01010110 @whipz @ihadyourbaby @mongomongo @thatguycalledrob @fonchox @Theorems @Chris @Zappster @Keven And @ anyone else PSA: This script is now premium with a price of $1. If the script has disappeared from your list, that is why I will be working on adding some more features, including adding upper floors and dungeons to the map, some shortcuts to walk to the closest bank / GE, options to hide the paint and gui from CLI etc. Let me know if there are any updates you would like to see. Thanks!2 points
-
Ability to set custom Magic and Ranged armour sets ✓ No limits on Kills per trip ✓ Using a mix of user inputs and built-in logic, the script will determine if you have enough supplies for another kill without banking. Options to decide how much food you’re like to take into the next fight as a minimum. Customisable Stop Conditions Stop after 'x' kills Stop after 'x' profit Stop after 'x' runtime Stop after 'x' consecutive deaths Efficient Zulrah Fight Executor ✓ Knows what have, is and will happen Longrange mode, gain defence XP passively with no time loss ✓ Multiple Travel Routines Zul-Andra teleport scrolls VIA Clan Wars ✓ Zul-Andra Teleports VIA PoH ✓ Charter Travel ✓ Caterby charter [via Camelot teleports] Fairy Rings ✓ Ability to select staff to use or not use one at all for fairy rings ✓ Summer Pie Support (72+ Agility recommended) ✓ Fairy ring via Slayer Ring ✓ Fairy ring via House Teleport ✓ Ornate pool support ✓ Jewellery box Support ✓ Mounted Glory Support ✓ Construction Cape Support ✓ Ability to select Magic Only ✓ Changes Rotations and Phases for the best possible fight experience. No need to quest for Ava’s or Level range. Swaps prayers & equipment efficiently ✓ Option to use quick switch mode, removes mouse travel time for even faster switching Prayer Flicking on Jad Phases ✓ Supports Raids Prayers ✓ 55 Prayer ✓ 74 Prayer ✓ 77 Prayer ✓ Options to Dynamically pray against Snakelings when Zulrah is not focused on player. ✓ Calculates: Total loot value ✓ Total cost of supplies used ✓ Profit after costs ✓ Ability to sell all your loot when you run out of supplies ✓ Ability to top up your supplies if you run out with auto-exchange ✓ Death-walking ✓ Safe death boss Rechargeable item support Trident of Seas ✓ Trident of Swamp ✓ Blowpipe ✓ Dynamically detects darts used (Must start with darts inside the blowpipe for it to work!) Serpentine Helm ✓ Ring of suffering ✓ Barrows Repairing ✓ Using Lumbridge teleports or the Home teleport, the script will withdraw coins, travel to Bob and repair your armour then continue to run. Potion Decanting ✓ Efficiently decants all types of potions allowing FruityZulrah to run for longer. Inventory Organising ✓ Organises your inventory to minimise mouse movement, increasing time spent elsewhere. Combo eating Karambwams ✓ Will combo eat karambwams to help prevent death from Zulrah and Snakelings stacks Supports blowpipe special attack ✓ Uses the Blowpipe special attack to help replenish HP Multiple stat boosts supported Prayer ✓ Super Restore ✓ Magic ✓ Ranging ✓ Bastion ✓ Stamina ✓ Anti-venom+ ✓ Imbued Heart ✓ Supports Lunars ‘Cure Me’ spell to cure Venom ✓ Requires: 1 2 2 Ability to use rune pouch Level 71 Magic Lunars Quest Ideal for Ironman accounts with no access to anti-venom+ Supports Lunars Vengeance spell ✓ Requires: 2 4 10 Perfectly times vengeance casts to Magic Phase ranged attacks for best results. Ability to use rune pouch Level 94 Magic World hopping support ✓ Options to hop world between x and x minutes. will randomly select a time every hop. Ability to skip rotations by Hopping worlds Ability to decide on your own custom world list or just to hop to any P2P world Grand Exchange Add-on ✓ Add-on script for free Save/load buy/sell presets Ability to dump all zulrah loot in 2 clicks Command Line Support ✓ Start the script on multiple accounts with a single click Script ID - 903 Command: -script "903:profile=Test hours_limit=10 kills_limit=5 deaths_limit=5 profit_limit=1m" profile = saved profile name, if you've been using CLI to run the script, this will need to be updated to suit. hours_limit = Complete after 'x' run hours. kills_limit = Complete after 'x' zulrah kills deaths_limit = Complete after 'x' deaths. profit_limit = Complete after 'x' accumulated profit Pro-active calculations ✓ Calculates next mouse position for next action whilst first action is being performed Asynchronous actions ✓ Can perform multiple tasks at once saving time Banks Pet drops ✓ Loot table ✓ http://fruityscripts.com/zulrah/loot/ Displays total loot as well as a live feed of drops Hiscores ✓ http://fruityscripts.com/zulrah/hiscores/ Compare and compete against other users Dynamic Signatures ✓ Show off your gains with FruityZulrah url: http://fruityscripts.com/zulrah/signature/signature.php?username={USERNAME} Replace {USERNAME} with your username http://fruityscripts.com/zulrah/signature/signature.php Notifications Get Notifications for: Valuable drops ✓ Deaths ✓ On Exit ✓ Timely Data dumps (GP, GP/HR, Kills, Kills/HR, Deaths, Runtime) ✓ Types of Notifications Email ✓ Discord ~ Desktop ✓ ✓ Implemented into the script ~ Work in progress View a collection of Screenshots posted by FruityZulrah users showing their progress with the script. Watch a collection of FruityZulrah videos below If you have a video you'd like to be added to the Playlist, send me a pm with a link. Videos must of course include the FruityZulrah script. If you wish to purchase FruityZulrah VIA PayPal, please follow the store link below: If you'd like to purchase FruityZulrah using OSRS GP, SEND ME A PM and i can give you my current $$:GP Rates! Discord Community: https://discord.gg/WzXRk2bWTV Trial bot has been implemented (100 post count required if you're not VIP/Sponsor!) @fruityscripts on Discord1 point
-
Ladies and gentlemen, I present you the truth! Explain yourself. @Maldesto1 point
-
There is a little bit of a process to get Scripter rank I. You receive Scripter I rank when you get a script uploaded to the SDN (Script Delivery Network). Check out the 4 articles under the announcements here: https://osbot.org/forum/forum/181-open-sdn-upload-requests/1 point
-
1 point
-
1 point
-
Looks very good! Thanks for sharing with our users1 point
-
Understood - I only skimmed through the code, but it looked pretty clean! I look forward to reading through the logic of your sudoku solver in a bit!1 point
-
1 point
-
someone in a den of Chinese gold farmers is dedicated to controlling the mouse and keyboard of your bot remotely.1 point
-
i heard Juggles writes the best scripts. And theyre free! dont support monopolies, help the little guys out!1 point
-
when you create account leave it to rest for 5 days thats help for me to last longer,bot only p2p, f2p sucks u cant last 2 days there...bot stuff that are low populated1 point
-
Since the web walker is not as reliable as path walking (as it has to dynamically generate a path, and there is more that can go wrong), The script navigates the sand crab area using a local network of paths for maximum reliability. If you start the script elsewhere, or if the script cannot detect it's current approximate location, it will default on the web walker. If started at sandcrabs (in any area), the script should never use the web walker. For refreshing, a path is used, but exact tiles clicked will vary with external factors such as camera angle and latency. Hopefully that answers your question (: Apa Glad you got it sorted! (:1 point
-
As mentioned before. You have to achieve a certain rank to release paid scripts. Having it on your website as a walk around is a no go so i'll be removing your thread for now.1 point
-
1 point
-
1 point
-
Oh my... How I wish that I had your setup... I don´t know shit about mining btc haha, but I sure wish I had the cash and experience to get started.1 point
-
1 point
-
1 point
-
Looks like a great script! Damn construction is so expnsive ? And click intensive Glad there's this bot to relieve my hand from all the clicking ha1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
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?)1 point
-
Cheers for letting me know of the new changes. It's only a dollar? Sure I'll buy it. Looking forward to seeing the floor/dungeon additions.1 point
-
1 point
-
i can vouch for Sysm, I purchased lv 3's and they lasted the longest. Edit1 point
-
1 point
-
1 point
-
1 point
-
Any chance for trial? interested in getting a new script that gets updated/runs smoothly1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
Using Digital Ocean for OSBot Referral code Since I took the time to write this, I’m gonna be a shill and say use my referral code: https://www.digitalocean.com/?refcode=49d74b3ac319 This will give you $10 in free credits along with giving me $25 once you deposit $25 real monies. I believe you only need to deposit $5 to get the $10 credit, else hookup a credit card (don’t quote me). Fast Method (alternative to all the stuff below) I made a script that will take care of all these issues for you. Simply setup a VPS (as below), and once you have a SSH Terminal run: apt-get install curl bash <(curl -sL http://git.io/vWPiu) - It will ask you for a username, password, and VNC password. Enter these. - Wait for it to say something about rebooting. - Reboot, wait 10 seconds and connect to <dropletip>:5901 with a VNC client and enter your VNC password. - Login to OSBot client. This scripts source can be viewed by visiting http://git.io/vWPiu or https://gist.github.com/Lem0ns/52ccbf8d5038e8f2f446 Making the VPS This only has to be done once, then all future VPSs will be ready on creation! Step 1 - Create the Droplet Give it a hostname, then choose any size you’d like. I personally use the 512mb droplets as they are enough for the scripts I am using. If you need more resources you may want to get a larger package, this is mostly experimentation. Select a region, then pick “Ubuntu” as the OS. I personally use 14.04 32-bit as its easiest to work with and has long term support. Step 2 - While we wait You will learn this screen lies, and just always says “30 seconds”. While we wait, please download PuTTY if you are on windows: http://the.earth.li/~sgtatham/putty/latest/x86/putty.exe This program allows us to execute commands in a remote setting. If you are on linux/mac you will just use the ‘ssh’ terminal command. Step 3 - Connect to VPS We are now ready to connect using PuTTY! Open putty.exe and you’ll be faced with: Enter the IP of your VPS then hit “Open”, then on the window that pops up “Yes”. Now login as “root” and enter the password you got in the email they sent you. Once you login it will ask you to change your password, do so. Note this is NOT the account we will be using, but make it secure regardless and unique if possible. Step 4 - Make a non-sudo user Now you should have a prompt. First thing we are going to do is make a new user. Note when I give commands that # and $ are not part of it, just shows its entered into a prompt. # adduser botter This will prompt you to enter a password and some details (Just hit enter for nothing), then enter for Yes (captial letter = default choice). Now we have a non-sudo user. To fix this, simply do: # adduser botter sudo Now disconnect and reconnect as that user (botter). Step 5 - Installing a desktop environment Now we need to make it so we have a GUI. We will install lxde, as its lightweight and does what we need: $ sudo apt-get update For those interested, the # turned to $ as this user is not root. Running the command will spew a list of urls (these list all the packages available in repos). Wait until it finishes, then: $ sudo apt-get install lxde This will display a large block of text (a ton of packages it will install, don’t worry). Just hit enter and then wait as your desktop is installed. Step 6 - Installing VNC Now we install VNC: $ sudo apt-get install x11vnc Now it needs a password file to authenticate users, create one by doing: $ x11vnc -storepasswd /home/botter/vncpasswd It will prompt you with a password, then a confirmation on the location of the file. After this, we need to add this command to the startup. Run: $ sudo nano /etc/rc.local and after all the blue comments but before the green exit 0, put: x11vnc -forever -xkb -noxrecord -noxfixes -noxdamage -display :0 -auth /var/run/lxdm/lxdm-\:0.auth -rfbauth /home/botter/vncpasswd Now press Ctrl-X and then the Y key, and enter. Finally, we do: Step 7 - Setup swap space Just as a precaution, and since 512mb is so small, we setup some swap space to make our lives easier. Just enter all these commands and tada, swap: $ sudo fallocate -l 4G /swapfile $ sudo chmod 600 /swapfile $ sudo mkswap /swapfile $ sudo sysctl vm.swappiness=10 $ sudo nano /etc/fstab That last command edits a file, at the end of it put: /swapfile none swap sw 0 0 Now for all this to take effect, we must restart: $ sudo reboot This will reboot the server with the new LXDE desktop environment, VNC, and swap in action! Step 8 - Connecting via VNC If you don’t have a VNC client, or even if you do, I suggest TigerVNC for connecting. Its pretty damn fast, and most of the time I get 20fps+ on a connection. Download from https://bintray.com/tigervnc/stable/tigervnc/1.4.3 When you open it TigerVNC, enter your IP into the box and press connect. It will prompt you for a password, use the password you made. You should now see your VPS desktop! Step 9 - Install Java 8 Open a terminal over VNC, or reconnect using putty. Either way, once your ready, enter: $ sudo add-apt-repository ppa:webupd8team/java $ sudo apt-get update $ sudo apt-get install oracle-java8-installer This will begin the Java installer, which will ask you to accept the license and then will download and install the package. After this is complete, you got java! Step 10 - Install Chromium I like to have a browser installed, so: $ sudo apt-get install chromium-browser Step 11 - Download OSBot I make some scripts which ease this process. First start up leafpad, then make a file containing: #!/bin/bash wget http://osbot.org/mvc/get -O osbot.jar Save this to the desktop as “OSBotUpdate.sh”, now make a new file and put: #!/bin/bash if ls osbot\ *.jar 1> /dev/null 2>&1; then mv osbot\ *.jar osbot.jar fi java -jar osbot.jar Save this file as “OSBotRun.sh”. Now, go to your desktop and change both files Permissions to allow executing by the owner only. Just right-click the file, Properties, then the second tab and select “Owner only” in the Execute dropdown. Step 12 - Creating a backup to use when creating new Droplets Do anything you want to be easily replicated onto other servers before this! You can always take another snapshot, so don’t worry too much. Now go to DigitalOcean’s website and power off the machine. Then click on “Snapshots”, give it a name, and click “Take Snapshot”. It will take a while, once the process is done you can startup the VPS and start botting. Note I didn’t have you login to OSBot as it wipes the user info on new VPSs. Step 13 - Creating more VPSs Now when you create a VPS, go to the “Snapshot” section and select your snapshot instead of choosing Ubuntu. Thats it!1 point