Leaderboard
Popular Content
Showing content with the highest reputation on 02/18/17 in all areas
-
This world is a crazy place. Your life can change in a moments notice, same goes for the ones you love. Being 21 years old and having already lost one parent, you learn that you can't take everything for granted. I lost my dad in 2002 due to liver failure. Being 7 at the time you don't understand what it really means but as you grow older you find out what it means not to see them again. Last night I almost lost my mom due to a drunk driver running a red light and t-boning her on the drivers side. It hits you hard when you first hear about it, start to lose your mind, not sure what to expect. Hoping you don't have to go through the same thing again. I'm not looking for sympathy. This is just a message for everyone here to make sure that your family knows that you love them, because they might not be there the next time you talk to them.8 points
-
Someone asked me for the source, here you go: import org.osbot.rs07.api.map.Area; import org.osbot.rs07.api.model.GroundItem; import org.osbot.rs07.api.model.Item; import org.osbot.rs07.api.model.NPC; import org.osbot.rs07.api.ui.EquipmentSlot; import org.osbot.rs07.api.ui.Skill; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; import org.osbot.rs07.utility.ConditionalSleep; import java.awt.*; import java.util.Arrays; import java.util.Comparator; import java.util.Optional; import java.util.function.Predicate; import java.util.stream.Collectors; /** * Created by Alek on 6/26/2016. */ @ScriptManifest(name = "Macro Killer", author = "Alek", version = 1.4, info = "Macro Killer", logo = "") public class MacroKiller extends Script { private boolean isUsingRanged = false; private Area combatArea; private String state = "State: Idle"; private Font titleFont = new Font("Sans-Serif", Font.BOLD, 10); private String ammoType; private int ammoRemaining = 0; private boolean isAvasEquipped = false; private int collectAmmo = 0; private Predicate<NPC> suitableNPC = n -> getMap().canReach(n) && n.getHealthPercent() > 0 && n.hasAction("Attack") && combatArea.contains(n) && !n.isUnderAttack() && getMap().realDistance(n) < 7; private Predicate<GroundItem> suitableArrowStack = g -> g.getName().contains(ammoType) && getMap().realDistance(g) < 4; @Override public void onPaint(Graphics2D g) { g.setFont(titleFont); g.setColor(Color.WHITE); g.drawRect(mouse.getPosition().x - 3, mouse.getPosition().y - 3, 6, 6); g.drawString("Macro Killer v1.5 - Written by Alek", 10, 250); g.drawString(state, 10, 265); if (isUsingRanged) g.drawString("Remaining " + ammoType + "s: " + ammoRemaining, 10, 280); } @Override public void onStart() { if (getEquipment().getItemInSlot(EquipmentSlot.WEAPON.slot).getName().contains("bow")) { Item ammo = getEquipment().getItemInSlot(EquipmentSlot.ARROWS.slot); if (ammo != null && ammo.getAmount() > 1) { ammoType = ammo.getName().toLowerCase().split(" ")[1]; isUsingRanged = true; } if (isUsingRanged) { Item item = getEquipment().getItemInSlot(EquipmentSlot.CAPE.slot); isAvasEquipped = item != null && (item.getName().contains("Ava's")); } } combatArea = myPlayer().getArea(6); } @Override public int onLoop() { if (getSkills().getDynamic(Skill.HITPOINTS) < (getSkills().getStatic(Skill.HITPOINTS) / 2)) { state = "State: Looking for food to eat"; Optional<Item> foodItem = Arrays.stream(getInventory().getItems()).filter(i -> i != null && (i.hasAction("Eat") || i.hasAction("Drink"))).findFirst(); if (foodItem.isPresent()) { state = "State: Eating food " + foodItem.get().getName(); foodItem.get().interact("Eat", "Drink"); } else { state = "State: No food remaining, logging out"; stop(true); } } else if (!getCombat().isFighting() || myPlayer().getInteracting() == null) { if (isUsingRanged) { state = "State: Checking equipment for " + ammoType + "s"; Item arrows = getEquipment().getItemInSlot(EquipmentSlot.ARROWS.slot); if (arrows == null || arrows.getAmount() < 10) { state = "State: Not enough arrows, logging out"; stop(true); return 0; } ammoRemaining = arrows.getAmount(); state = "State: Scanning ground for " + ammoType + "s"; java.util.List<GroundItem> arrowItems = groundItems.getAll().stream().filter(suitableArrowStack).collect(Collectors.toList()); arrowItems.sort(Comparator.comparingInt(GroundItem::getAmount).thenComparingInt(GroundItem::getAmount).reversed()); if (!isAvasEquipped && !arrowItems.isEmpty()) { if (arrowItems.get(0).getAmount() > 1 || ((collectAmmo = ~collectAmmo & 1) == 1)) { state = "State: Looting " + arrowItems.get(0).getName() + "(s) with a stack size of " + arrowItems.get(0).getAmount(); if (arrowItems.get(0).interact("Take")) { ConditionalSleep pickup = new ConditionalSleep(4000, 500) { @Override public boolean condition() throws InterruptedException { return !arrowItems.get(0).exists(); } }; if (pickup.sleep()) { if (arrowItems.get(0).getName().equals(getEquipment().getItemInSlot(EquipmentSlot.ARROWS.slot).getName())) getInventory().interact("Wield", arrowItems.get(0).getId()); } } } } } state = "State: Searching for monsters to kill"; java.util.List<NPC> npcs = getNpcs().getAll().stream().filter(suitableNPC).collect(Collectors.toList()); if (!npcs.isEmpty()) { npcs.sort(Comparator.<NPC>comparingInt(a -> getMap().realDistance(a)).thenComparingInt(b -> getMap().realDistance(b))); if (npcs.get(0).interact("Attack")) { state = "State: Attacking " + npcs.get(0).getName(); new ConditionalSleep(3000, 500) { @Override public boolean condition() throws InterruptedException { return !npcs.get(0).exists() || npcs.get(0).isUnderAttack(); } }.sleep(); } } } return 500; } }5 points
-
5 points
-
We dont mind the one in your avatar seeing as its a bit less obvious but we have an issue with the one in your signature. We do play runescape, yes. You should also know that there are underage people who play runescape too. We at osbot don't entertain the idea of nudity otherwise most people would have a nude signature/avatar. You might say yours is a cartoon but if we let you carry on with that "cartoon penis" we'd have to make exceptions for other people as well, which we wont be doing. Regarding your refund for lifetime sponsor, if you genuinely believe you'll be refunded for us not allowing you to have a penis as your signature, you're mistaken. Also, next time you have an issue or concern like this please PM one of the staff members.5 points
-
Bot farming is extremely competitive, very few people are keen on sharing anything too special about their success. Start small, experiment, trial & error, see what works for you. Try and behave as humanlike as possible when playing, utilize OSBot's Mirror Mode feature, use breaks, etc. Get more "reckless" over time, and get away with as much as you can. Everyone finds their own preferred methods and techniques after practice. Jagex has stepped their anti-botting game up a lot since the "glory days" of the early 2000s, but lots of people are still able to successfully farm with enough practice. GL, Happy Botting.4 points
-
βCzarScripts #1 Bots β Proven the #1 selling, most users, most replies Script Series on the market. Big THANK YOU to all our wonderful users and supporters over the 8 years, we couldn't have done it without you. Czar Bots have always been the Best and the most Feature-rich bots available with the most total sales in OSBot history. Come and find out why everyone is choosing Czar Bots today. β LATEST BOTS β If you want a trial - just post the script name and it will be activated after I hit 'like' on your post Requirements: hit 'like' on this thread3 points
-
Before buying, please ensure you check-out with the correct script. Swapping scripts is not possible. View in store $4.99 for lifetime access Features: All spawns - Supports every multi-crab spawn point both along the south coast of Zeah and Crab Claw Isle All combat styles - Supports Ranged, Magic and Melee combat training. The script will not bank runes of any type Saving GUI - Intuitive, re-sizeable and fully tool tipped GUI (Graphical User Interface) allowing you to tailor the script session to your needs, with configuration saving / loading Human replication - Designed with human simulation in mind - multiple options to replicate human behaviour available in the GUI Setup customiser - Inventory customiser allows you to visually see your trip setup CLI support - The script can be started from the command line All potions - Supports all relevant potion types (including divine potions!), multiple potion types simultaneously and varying potion ratios Healing in a range - Dual slider allows you to specify a range within which to consume food. Exact eat percentages are calculated using a Gaussian distributed generator at run time Healing to full at the bank - When banking, the script will eat up to full hit points to extend trip times Safe breaking - Working alongside the OSBot break manager, the script will walk to safe place approximately two minutes before a break starts to ensure a successful log out Anti-crash - Smart crash detection supports multiple anti-crash modes (chosen in the GUI): Hop worlds if crashed - the script will walk to a safe place and hop worlds until it finds a free one, at which point it will resume training Force attack if crashed - the script will fight back and manually fight pre-spawned sand crabs until the crasher leaves Stop if crashed - the script will walk to a safe place and stop Ammo and Clue looting - Clue scroll and Ammo looting system based on a Gaussian-randomised timing scheme All ammo - Supports all OSRS ammo types and qualities Spec activation - Special attack support for the current weapon to maximise your exp per hour Auto-retaliate toggling - The script will toggle auto-retaliate on if you forget Move mouse outside screen - Option to move the mouse outside the screen while idle, simulating an AFK player switching tabs Refresh delay - Option to add a Gaussian-randomised delay before refreshing the chosen session location, simulating an AFK player's reaction delay Visual Paint and Logger - Optional movable self-generating Paint and Timeout Scrolling Logger show all the information you would need to know about the script and your progress Progress bars - Automatically generated exp progress bars track the combat skills that you are using Web walking - Utilises the OSBot Web alongside a custom local path network to navigate the area. This means the script can be started from anywhere! Safe banking - Custom banking system ensures the script will safely stop if you run out of any configured items Safe stopping - Safely and automatically stops when out of supplies, ammo or runes Dropping - Drops useless/accidentally looted items to prevent inventory and bank clutter All food - Supports pretty much every OSRS food known to man. Seriously - there's too many to list! ... and many more - if you haven't already, trial it! Things to consider before trying/buying: Mirror mode - currently there appear to be some inconsistencies with behaviour between Mirror mode and Stealth Injection meaning the script can behave or stop unexpectedly while running on Mirror. I would urge users to use the script with Stealth Injection to ensure a flawless experience! Since Stealth Injection is widely considered equally 'safe' to mirror mode and comes with a host of other benefits such as lower resource usage, this hopefully shouldn't be a problem. Using breaks - the script supports breaks and will walk to a safe place ready to log out approximately two minutes before a configured break starts. However, upon logging back in, your spot may no longer be open. If you configure the crash mode to be either 'Hop if crashed' (default) or 'Stop if crashed', this will not prove to be a problem. However if using 'Force attack if crashed', the script will attempt to take back the spot by crashing the occupying player and manually attacking spawned sand crabs. Be aware that players have a tendency to report anti-social behaviour such as this! Avoiding bans - while I have done my utmost to make the script move and behave naturally, bans do occasionally happen, albeit rarely. To minimise your chances of receiving a ban, I would strongly suggest reviewing this thread written by the lead content developer of OSBot. If you take on board the advice given in that thread and run sensible botting periods with generous breaks, you should be fine. That being said, please keep in mind that botting is against the Oldschool Runescape game rules, thus your account will never be completely safe and you use this software at your own risk. Setting the script up - I have done my best to make the GUI (Graphical User Interface) as intuitive as possible by making all options as self explanatory as I could, however if you are not sure as to what a particular setting does, you can hover over it for more information. If that doesn't help, just ask on this thread! Web-walking - alongside a network of paths, the script moves around with the OSBot web-walking system, using it when in unknown territory. While it has proven very reliable, there are naturally some areas for which the web-walker may struggle. As a result, prior to starting the script, I would highly recommend manually navigating your player close to the sand crabs bank, however in practice, anywhere on Zeah should be fine. Script trials: I believe that trying a script before buying is paramount. After trying the script, hopefully you will be convinced to get a copy for yourself, but if not you will have gained some precious combat experience! If you're interested in a trial, please follow the instructions on my trials thread which can be found here. Gallery: Start up GUI (Graphical User Interface): Paint (optional, movable and self-generating): User screenshots: Recent Testimonials: Starting from CLI: This script can be started from the command line interface. There is a single parameter, which can take two (and only two) values: 'gui' or 'nogui'. 'gui' will start the script and show the gui, 'nogui' will skip the GUI setup and start the script using your save file as the configuration. To start from CLI with 'nogui', the script requires a valid GUI save file to be present - if you haven't already, start the script manually and configure the GUI to suit your needs. Then hit 'Save configuration' and in future starting from CLI will use these configured settings. The script ID is 886. Example CLI startup: java -jar "osbot 2.4.137.jar" -login apaec:password -bot apaec@example.com:password:1234 -debug 5005 -script 886:nogui3 points
-
Explv's Scripting 101 Prerequisite: basic knowledge of Java 1. Setting up the Java Development Kit and an Integrated Development Environment (IDE) 2. The Script Skeleton 3. Building the script 4. The Script class continued 5. The MethodProvider class, accessing the Inventory, Bank, Player, etc. instances 6. Positions, areas and moving the player 7. Entities (Players, RS2Objects, NPCs and GroundItems) 8. Interactions 9. Sleeping 10. Items and ItemContainers (Inventory, Bank, Equipment, Store, ...) 11. Filtering 12. Widgets 13. Configs 14. Adding a paint 15. Putting it all together, an example script (Smelting iron bars in Al-kharid) 16. Adding a GUI3 points
-
This is what I used: Stream.concat(getObjects().getAll().stream(), getNpcs().getAll().stream()) .filter(entity -> entity.getName().contains("Portal")) .findAny() .ifPresent(portal -> { if (portal.interact("Use", "Exit")) { Sleep.sleepUntil(() -> !portal.isVisible(), 10_000); } });3 points
-
My mom had a stroke a few months ago, when the symptoms start appearing you have 6 hours to respond and get to the hospital for treathment. We were 2,5 hours late(8.5 after it started) and she could have been paralyzed. Luckily she didnt and had to stay for a week in the hospital. But next monday she gotta go to the dentist to pull a teeth, there is a significant higher risk of getting another stroke due to the teeth being pulled. My mom just turned 49 last tuesday Life can be short, make the most of it.3 points
-
3 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 Discord2 points
-
PPOSB - AIO Hunter Brand new trapping system just released in 2024! *ChatGPT Supported via AltChat* https://www.pposb.org/ ***Black chinchompas and Black salamanders have been added back*** Supports the completion of Varrock Museum & Eagle's Peak OR CLICK HERE TO PAY WITH 07 GOLD! The script has been completely rewritten from the ground up! Enjoy the all new v2 of the script JOIN THE DISCORD CHAT FOR QUESTIONS/ SUPPORT/ CHATTING/ UPDATES! New GUI: Features: Click Here Current functioning hunter tasks: (green - complete || yellow - started || red - incomplete) Screenshots: Progressive Leveling: 1-19 --> Crimson swift 19-43 --> Tropical wagtail 43-63 --> Falconry 63+ --> Red chinchompas Updates How to setup Dynamic Signatures Report a bug CLI Support - The script now supports starting up with CLI. The commands are given below. Please put in ALL values (true or false) for CLI to work properly. Make sure they are lowercase values, and they are each separated with an underscore. The script ID for the hunter bot is 677. Parameters: EnableProgression_EnableVarrockMuseum_EnableEaglesPeak_EnableGrandExchange Example: -script 677:true_true_false_true ***Don't forget to check out some of my other scripts!*** OSRS Script Factory Click here to view thread LEAVE A LIKE A COMMENT FOR A TRIAL The script is not intended for Ironman accounts. It still works for Ironman accounts, but you must have all equipment, gear, and items.2 points
-
Molly's Chaos Druids This script fights chaos druids in Taverly dungeon, Edgeville dungeon and Ardougne. Profits can easily exceed 200k p/h and 60k combat exp/ph, this is a great method for training low level accounts and pures. Buy HERE Like this post and then post on this thread requesting a 24hr trial. When I have given you a trial I will like your post so you will receive a notification letting you know you got a trial. Requirements - 46 Thieving for Ardougne -82 Thieving and a Lockpick for Yanille - 5 Agility for Taverly(recommended) - No other requirements! Though I do recommend combat stats of 20+ as a minimum Features: - Supports eating any food - Hopping out of bot worlds - Recovers from deaths(respawn point must be lumbridge), includes re-equipping items on death - Potion support - Automatically detects and withdraws/uses Falador teleport tabs if using Taverly dungeon - Automatically detects and withdraws/equips/uses glories if using Edgeville dungeon - Supports looting bag Setup: Start the script, fill out the GUI, and be in the general area of where you want to run the script. CLI setup: Proggies: In the works: Known bugs: Bug report form, this is a MUST for problems to be resolved quickly: Description of bug(where, what, when, why): Log: Your settings: Mirror mode: Y/N2 points
-
Hey guys, Found a solution to the various locks and bans happening. This has helped be loads and as the community is always there, I'd love to share! Solution:2 points
-
HAND DONE NO BOTS AT ALl After finishing my 31 Pray 50 atk zerker i've decided to make another one, this time with 60 attack. It will be around the same combat lvl but far more lethal due to the combat lvls gained by 42-45 and 16-31. End goals: 60 Attack 80 strength 42 defence 85 ranged 93 mage ( 94 is one extra combat) 75 hp ( cannon ranged, barrel on head for str ) B gloves ect Combat lvl 76. Day one progress 18/022 points
-
Pogba is right, karma will make its way back around to that drunk driver, he will get what he deserves. I hope your mom is doing good and praying for a quick recovery if she was injured at all.2 points
-
Disputed Member: m i m 1 c / topshotter Why it should be removed: http://prnt.sc/eaeutq http://prnt.sc/eaeuw6 Details: "." / feedback for pricechecking account? we all had to do actual services to get feedback when we started Link to topic:2 points
-
2 points
-
Looks like the message for depleting a trident has been changed with thursdays update. Will update, thank you. EDIT: Committed the update. Will be live within 24h (Version 1.5.12)2 points
-
honestly me being good at designing stuff was like a meme, i used to say i deserved designer when my art was shit, but realistically i probably am worthy of a designer rank now2 points
-
Hate it when you're sick, suffering from man flu and just been throwing up for a good 20 minutes, someone come look after me, my partner has gone straight to sleep and when I started she woke up to see if I were ok before turning over again.... bitch I ain't okay no2 points
-
So I have recently been advised about my signature has been removed. "the staff have agreed we don't think it is appropriate for the forums." The signature in question is I would like to point out a few things. A) Its a cartoon B) Its a fucking penis (half of the world's population has one). C) This particular penis has a joint in its mouth and is holding a hand gun. It is a comical character for a bit of fun. D) My username as you are probably aware is "bigdicky" and this signature represents my user. E) This community is full of not politically correct things. (This community is based on the idea of breaking the rules of a game.) F) It has been my signature for over a month with no issue until now. I have not too long been a member of this forum, up until recently I have really enjoyed the caliber of people that I have engaged with here. If you are offended by my signature I apologize. I agree it is a little immature but we play Runescape don't we? I don't understand how you, who is participating in a forum of this nature can be offended by such a comical character. Has the world gone this mad? My signature isn't having a stab at something or someone, it is just a bit of fun. To put it simply if the Osbot community can't handle the humored nature of my signature then I have made a mistake by joining and no longer wish to be apart of this community. In which case I would request a refund for my lifetime sponsor. Regards, The biggest dick of them all bigdicky2 points
-
2 points
-
Current version: V1.4.2 What is this? - This program uses cli to easily and automatically start your bots without having to type in anything once it's configured. How do i use this? - I've created a few gifs to show you how to use this program. Don't know how to/Don't want to use script parameters? - simply don't fill them in, and run it. It will boot up OSBot, login and start the script and bring up the script's GUI if it has one. If you don't fill in these fields, it will use the default value -Memory(mb) -Proxy(it will simply not use it if you dont fill in the fields) -debug port(default: 5005) note: You wont be able to run multiple clients on the same port. -Script parameters -Bot Pin Shortcuts -Double click: runs a script -Del: deletes 1 or more scripts Can i run multiple scripts at once? - Yes, select multiple scripts and press run NOTE: - If you run multiple scripts, be sure to not have them all use the same port number(for example 5005) - Creating a new script Running a script. Simply press the run button! OSBot updated? New OSBot jar? No problem! press edit and select the new jar Create and load presets Simply update ALL of your scripts with a new OSBot jar This application is FULLY OPEN SOURCE! feel free to look around and change things if you wish to do so Source: https://github.com/TehHeroOfTime/OSBOT-CLI-Script-creator Download: https://github.com/TehHeroOfTime/OSBOT-CLI-Script-creator/raw/master/Setup/Debug/Setup.msi changelog V1.2 Fixed an issue with reading a file that didnt exist V1.3 fixed spacing issues. local scripts can now contain spaces. V1.4 You are now able to mass-update all of your scripts with a new OSBot jar V1.4.1 Fixed a spacing issue for people with a space in their name, as that is now possible with the new forums V1.4.2 Added 3 new permissions. -Norandoms -NoInterface -NoRender DISCLAIMER: Since @Alek did not reply to my pm saying something is wrong, and the fact that he liked my post showing it, i assumed it is ok to release, Since there is an OSBot logo in the application. If this is not okay i will remove it immediately.1 point
-
Don't use PayPal? Want to use RSGP? Contact @Juggles on Skype (Joey-Bots) for a voucher.1 point
-
1 point
-
Havent been doing this for to long so any positive feedback would be nice Original:1 point
-
1 point
-
1 point
-
1 point
-
good stuff just a few pointers: 1. look into nested if-statements 2. OSBot has an XP tracker that tracks XP/hr, xp gained, current level, xp till next level, and levels gained. 3. You can calculate the number of logs cut more accurately (and more easily) from the XP gained if you know xp/log 4. Fields go before methods by convention. Good work on the script bro1 point
-
1 point
-
1 point
-
https://www.reddit.com/r/HipHopImages/comments/58smvk/dds_savage_im_just_bottin_on_my_exmain/1 point
-
Second only to the feeling of transferring over all the items you're up and realising the price of them has spiked stupidly high on GE and you're making double profit for the day1 point
-
1 point
-
Man i had this on new years eve and the days after so i legit couldn't eat anything for 4 days or id throw it up. Felt so sick thought i was gonna die too. I feel ya fam1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
I also got this problem since yesterday. the reason is you are probably checking woodcutting xp, during the tutorial island/quests. Many big goldfarmers use this as antiban. but now they detect it and implement the straight ban in game by the update yesterday. the solution for me is to checking prayer xp, and pray that they dont ban you1 point