nmba Posted January 6, 2022 Share Posted January 6, 2022 hello guys , today ive been working on my first script. Due to @Explv advise i finally finished my java bootcamp and im feeling way more comfortable to code now. Anyways can u guys maybe give some tips on how i maybe can improve my script/code. import org.osbot.rs07.api.map.Area; import org.osbot.rs07.api.map.constants.Banks; import org.osbot.rs07.api.model.RS2Object; 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.util.Random; @ScriptManifest(author = "Mob", name = "simple", info = "test", version = 0.1, logo = "") public final class TestingBot extends Script { @Override public final int onLoop() throws InterruptedException { //checking what wc lvl u are to check what to chop int startWcLevel = getSkills().getStatic(Skill.WOODCUTTING); //lvl < 20 and inv not full --> chop if (startWcLevel < 20 && !getInventory().isFull()){ chop(); //lvl > 20 and inv not full --> chopoak }else if (startWcLevel > 20 && !getInventory().isFull()){ chopOak(); }else bank(); return 200; } public void chop() throws InterruptedException { //making area , if position is not in the area --> walk to random pos. in the area Area treeArea = new Area(3181,3235,3205,3256); if (!treeArea.contains(myPosition())){ getWalking().webWalk(treeArea.getRandomPosition()); } //getting closest tree in the area --> if not null and can interact RS2Object tree = getObjects().closest(treeArea,"tree"); if (tree != null && tree.interact("Chop down")) { //sleeps while doing action to click the tree sleep(random(1800,2500)); //new conditional sleep when animating , tree doesnt exist new ConditionalSleep(random(5000,7000)) { @Override public boolean condition() { return !myPlayer().isAnimating() || !tree.exists(); } }.sleep(); } } public void chopOak() throws InterruptedException { Area treeOakArea = new Area(3186,3238,3207,3253); if (!treeOakArea.contains(myPosition())){ getWalking().webWalk(treeOakArea.getRandomPosition()); } RS2Object tree = getObjects().closest(treeOakArea,"Oak"); if (tree != null && tree.interact("Chop down")) { sleep(random(1800,2500)); new ConditionalSleep(random(5000,7000)) { @Override public boolean condition() { return !myPlayer().isAnimating() || !tree.exists(); } }.sleep(); } } public void bank() throws InterruptedException { int randomSleepAfterBank = random(5000,25000); if (!Banks.LUMBRIDGE_UPPER.contains(myPosition())){ getWalking().webWalk(Banks.LUMBRIDGE_UPPER); }else if(!getBank().isOpen()) { getBank().open(); getBank().depositAll("Logs"); getBank().close(); sleep(randomSleepAfterBank); } } } 1 Quote Link to comment Share on other sites More sharing options...
maximiliano1 Posted January 6, 2022 Share Posted January 6, 2022 I'd transform this code to Node based framework where each node has validate execute methods, this makes the code much cleaner 1 Quote Link to comment Share on other sites More sharing options...
FuryShark Posted January 6, 2022 Share Posted January 6, 2022 FuryShark#6969 on Discord if you want me to help you Quote Link to comment Share on other sites More sharing options...
PyNN Posted January 6, 2022 Share Posted January 6, 2022 2 hours ago, nmba said: public void chopOak() throws InterruptedException { Area treeOakArea = new Area(3186,3238,3207,3253); Since this is a constant value it would be better to initialize this as a member of the class instead of inside of the function, since this is re-initializing the area every time the function is called which isn't needed, not a huge deal here since this is a simple script but generally should not be done. 2 hours ago, nmba said: sleep(random(1800,2500)); new ConditionalSleep(random(5000,7000)) { Explv also has a really nice sleeping class in his scripting 101 thread that you can use to avoid these big conditional sleep blocks and clean up your code 2 hours ago, nmba said: getBank().open(); getBank().depositAll("Logs"); getBank().close(); Each of these return booleans which you can check to make sure the action was successful, most functions in the osbot api are also like this 1 Quote Link to comment Share on other sites More sharing options...
nmba Posted January 7, 2022 Author Share Posted January 7, 2022 4 hours ago, PyNN said: Since this is a constant value it would be better to initialize this as a member of the class instead of inside of the function, since this is re-initializing the area every time the function is called which isn't needed, not a huge deal here since this is a simple script but generally should not be done. Explv also has a really nice sleeping class in his scripting 101 thread that you can use to avoid these big conditional sleep blocks and clean up your code Each of these return booleans which you can check to make sure the action was successful, most functions in the osbot api are also like this i changed to bank method to this : public void bank() throws InterruptedException { int randomSleepAfterBank = random(5000,25000); if (!Banks.LUMBRIDGE_UPPER.contains(myPosition())){ getWalking().webWalk(Banks.LUMBRIDGE_UPPER); }else if(!getBank().isOpen()) { getBank().open(); }else if (!getInventory().isEmpty()){ getBank().depositAll("logs"); }else getBank().close(); } is this any better? thanks for the tips already tho Quote Link to comment Share on other sites More sharing options...