Everything posted by Neku
-
Exco Clue Solver
Shall I wait for v2.2 to be released before running?
-
Exco Clue Solver
Can I get a trial of this script, would like to test it out before buying it as there seems to be a heap of bugs.
-
Fury AIO Looter
Hey can I grab a trial, wanna see profit P/H 😍
-
Neku Progessive Lobster Fisher
Updated Karamja Fishing logic and walking & fixed any major script breaking bugs. Ran & Tested Flawlessly overnight with 6 accounts
-
Neku Progessive Lobster Fisher
Let me know how you go/Any bugs you encounter
-
Neku Progessive Lobster Fisher
You will need to import the code into a java based editor and compile it, i'll post the .Jar later today along with a fair few bug fixes
-
Private Script Giveaway!
bump for a cheeky christmas script!
-
Excellent Fungus
Was just in the process of making my own fungi script as well ?' Grats on the release!
-
Khal Essence Miner
It's mainly aimed at mass farming F2p, aintiban is pointless as the ban rates are so high (10-20 hours ban time while suiciding)
-
Malcolm's Private Script Shop! [Fast] [Customized] [Reliable] [Competent] [Committed] [Lifetime Maintenance]
mans making waves in the osbot community
-
Neku Progessive Lobster Fisher
I'll look into both options and see which is easier to code for suicide purposes
-
Neku Progessive Lobster Fisher
Hey OSBot! It's been awhile but i'm finally back and going to release my progressive lobster fisher for you all to use and abuse! I have gotten some great results with this i'll post a progress pic below of my suicide farm. Still plenty of bugs in the script so if you encounter any please post and i'll get around to fixing it! Currently doesn't support muling as i'm not exactly sure how to implement it so you'll have to manually obtain the lobster from each account. Update Log: V1.1 - Various Bug fixes, Removed Pirates Treasure Quest Requirement. V1.2 - Complete re-write of Karamja fishing logic which fixes 90% of issues REQUIREMENTS: Enough Money to Buy the feathers, fly fishing rod, Lobster Pot & charter the boat (Roughly 30k) Pirates Treasure Quest for getting to Karamja via boat 1 click NO LONGER REQUIRED Thanks to @Divergent07 for the Idea Be prepared for chain bans! Any Tips on how to improve would be greatly appreciated! Also please give me ideas on other scripts to make! Progress from testing phase and de-bugging Picture is roughly 1 month old so prices may not be accurate. Download For the Jar: NekuFisher.jar
-
What script does OSBot need?
Have a feeling that this won't happen haha
-
Neku's Potato Picker.
Can't believe the legendary Juggles would comment on a shocking post like this! As for webwalking it has a few issues trying to open the gate and then eventually breaks outside the fence hence why i had to create a gate opening event all on it's own as for the webwalking part in the onloop() it seems i already implemented that without even realizing }else { if (!flyFishing.contains(myPlayer())){ log("Walking to Fly Fishing Spot"); getWalking().webWalk(flyFishing); }else { if (getInventory().isFull()) { getInventory().dropAllExcept("Fly fishing rod", "Feather"); }else { log("Lets start Fly Fishing"); if (lure != null); lure.interact("Lure"); sleep(4000); new ConditionalSleep(200000) { @Override public boolean condition() throws InterruptedException { return !myPlayer().isAnimating(); } }.sleep();
-
Neku's Potato Picker.
Was actually looking through a heap of your code and it's improved so much! Your picker inspired me to make my own lmao Currently working on a progressive fishing script as i tried my hand at a progressive miner but couldn't for the life of me work out how to differentiate the rocks as i didn't want to use Rock IDs As for the code tag thing, i'll make sure to do that when i update my picker as it's still got HELLA bugs in it that's screwing with my gold farming LOL
-
Neku's Potato Picker.
Yeah it is, any tips? Also there is a slight bug with banking that I need to sort out ?
-
Best Bot For Cash With Little Account Requirements?
A simple collection script which you can run 50 or so bots at once and just suicide
-
Neku's Potato Picker.
Ever wanted to become your own french fry king? Well i've brought a Potato picker due to the current SDN version being broken and killing my personal bot farm Hope you guys enjoy! Any feedback would be appreciated Also thanks to @Malcolm_OS for assisting me with a very dumb error! TODO: PAINT ----- DONE LOGO GP Per Hour----- IN PROGRESS TIMER ----- IN PROGRESS Mule Support import org.osbot.rs07.api.map.Area; import org.osbot.rs07.api.map.constants.Banks; import org.osbot.rs07.api.model.*; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; import org.osbot.rs07.utility.ConditionalSleep; import static org.osbot.rs07.api.map.constants.Banks.DRAYNOR; @ScriptManifest(author = "Neku", info = "Potato Picker", name = "NekuPicker", logo = "", version = 1.0) public class Main extends Script { @Override public void onStart() throws InterruptedException { log("Welcome to NekuPicker I hope you Enjoy"); log("Starting Script Please Wait...."); } @Override public int onLoop() throws InterruptedException { Area Field = new Area(3155, 3290, 3140, 3268); Area Pregate = new Area(3142, 3295, 3148, 3292); Area Postgate = new Area(3144, 3291, 3147, 3289); Area BANKS [] = {Banks.DRAYNOR}; Entity Potato = objects.closest("Potato"); Entity Gate = objects.closest("Gate"); if (!getInventory().isFull()) { //If my inventory is empty if (!Field.contains(myPlayer())) { //If Player isn't in the Field Walk to Gate log("Started WebWalking"); getWalking().webWalk(Pregate); Gate.interact("Open"); log("Opening Gate"); getWalking().webWalk(Field); } else { // If player is in the field Start Picking if (Potato != null) ; Potato.interact("Pick"); new ConditionalSleep(750, 500) { @Override public boolean condition() throws InterruptedException { return myPlayer().isAnimating() && myPlayer().isMoving(); } }.sleep(); return 600; } } else if (!Banks.DRAYNOR.contains(myPlayer())){ //If you aren't inside the bank getWalking().webWalk(DRAYNOR); log("Web walking to Bank"); if (!getBank().isOpen()){ getBank().open(); new ConditionalSleep(2000,500){ @Override public boolean condition() throws InterruptedException { return getBank().isOpen(); } }.sleep(); getBank().depositAll(); new ConditionalSleep(1000,500) { @Override public boolean condition() throws InterruptedException { return getInventory().isEmpty(); } }.sleep(); getBank().close(); new ConditionalSleep(1500,500) { @Override public boolean condition() throws InterruptedException { return !getBank().isOpen(); } }.sleep(); } } return 0; } }
-
Hey all
Lmao i'm sure Malcoms will be better than anything i manage to put out right now
-
A Beginners Guide to Writing OSBot Scripts (where to get started!) by Apaec
Figured it out haha, thanks for the response though! now to just implement walking to the draynor bank
-
Hey all
hahah currently making a potato picking script but a cabbage one would take a few minutes extra to change some variables if you want
-
A Beginners Guide to Writing OSBot Scripts (where to get started!) by Apaec
Seems everyone is posting their code here for some help so i may as well do the same So it seems i'm getting "Error:(36, 15) java: 'else' without 'if' " but i'm unsure as to how my else if statement is incorrect @Override public int onLoop() throws InterruptedException { Area Field = new Area(3140,3508,3154,3272); Entity Potato = objects.closest("Potato"); if (!getInventory().isFull());{ //If inventory is full If statement if (!Field.contains(myPlayer()));{ getWalking().webWalk(Field); } else { if(Potato !=null); Potato.interact("Pick"); new ConditionalSleep(1500,500) { @Override public boolean condition() throws InterruptedException { return myPlayer().isAnimating() && myPlayer().isMoving(); } }.sleep(); All fixed! was a simple semi colon that cooked it hahah
-
Hey all
Hey osbot, Have been Botting Runescape for almost 10 years now so I wanted to start scripting myself! Hopefully osbot can be a great home for my (probably very bad) scripts in the near future ?