

uyfgfarOS
Members-
Posts
51 -
Joined
-
Last visited
-
Feedback
0%
Everything posted by uyfgfarOS
-
Sorted now, thankyou everyone for your help.
-
Thanks Explv, could you perhaps show me how it's used? I used my above method in a previous herb cleaning script and it worked fine! maybe this? int slot = getInventory().getSlot("Prayer potion(4)"); getMouse().click(new InventorySlotDestination(getBot(), slot));
-
Cheers mate. Just thrown this quick script together but it doesn't interact with anything. Maybe I'm missing something? import org.osbot.rs07.api.GrandExchange; import org.osbot.rs07.api.Prayer; import org.osbot.rs07.api.Bank.BankMode; import org.osbot.rs07.api.model.Player; import org.osbot.rs07.api.ui.Skill; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; import java.awt.*; @ScriptManifest(name = "Skeleton", author = "Alek", version = 1.0, info = "", logo = "") public class main extends Script { @Override public void onStart() { //Code here will execute before the loop is started } private enum State { PRAYERPOT, OVERLOAD, WAIT }; private State getState() { if (getSkills().getDynamic(Skill.PRAYER) < 20) { return State.PRAYERPOT; } if (getSkills().getDynamic(Skill.HITPOINTS) > 51) { return State.OVERLOAD; } return State.WAIT; } public int onLoop() throws InterruptedException { switch (getState()) { case PRAYERPOT: if (getInventory().contains("Prayer potion(4)")) { inventory.getItem("Prayer potion(4)"); mouse.click(false); } else if (getInventory().contains("Prayer potion(3)")) { inventory.getItem("Prayer potion(3)"); mouse.click(false); } else if (getInventory().contains("Prayer potion(2)")) { inventory.getItem("Prayer potion(2)"); mouse.click(false); } else if (getInventory().contains("Prayer potion(1)")) { inventory.getItem("Prayer potion(1)"); mouse.click(false); } break; case OVERLOAD: if (getInventory().contains("Overload (4)")) { inventory.getItem("Overload (4)"); mouse.click(false); } else if (getInventory().contains("Overload (3)")) { inventory.getItem("Overload (3)"); mouse.click(false); } else if (getInventory().contains("Overload (2)")) { inventory.getItem("Overload (2)"); mouse.click(false); } else if (getInventory().contains("Overload (1)")) { inventory.getItem("Overload (1)"); mouse.click(false); } break; case WAIT: sleep(3000); break; } return random(200, 300); } @Override public void onExit() { //Code here will execute after the script ends } public void onPaint(Graphics2D g) { //This is where you will put your code for paint(s) } }
-
Hello all, had a big break from scripting and getting back into it again. Simply, how would I check the players prayer & hp? Just working on a personal NMZ bot to pot up when prayer falls below a certain parameter, then to use overload when HP is above a certain parameter. Cheers
-
case BUY: grandExchange.collect(); sleep(random(100, 200)); RS2Widget buyButton = widgets.get(465, 7, 26); if (buyButton != null) { buyButton.interact(); sleep(random(800, 900)); keyboard.typeString(searchTerm); keyboard.sleep(5000); RS2Widget buySelection = widgets.get(162, 38, 1); sleep(random(500, 700)); if (buySelection != null) { buySelection.interact(); RS2Widget confirmButton = widgets.get(265, 27); RS2Widget buyPrice = widgets.get(465, 24, 52); RS2Widget quantity = widgets.get(465, 24, 49); sleep(random(200,300)); if (buyPrice != null) { buyPrice.interact(); sleep(random(900, 1200)); keyboard.typeString(price); keyboard.pressKey(13); keyboard.sleep(5000); sleep(random(200,300)); if (quantity != null) { long quantityAmount = getInventory().getAmount("Coins"); int quantityEquation = (((Number)quantityAmount).intValue() / Integer.parseInt(price) - 10); String quantityString = Integer.toString(quantityEquation); quantity.interact(); sleep(random(600, 700)); keyboard.typeString(quantityString); keyboard.pressKey(13); keyboard.sleep(5000); sleep(random(200,300)); grandExchange.confirm(); ge = false; } } } } Wrote my own buying method using widgets, finally working lol. Here's the code if anyone is having the same issue as me.
-
Low resource mode? any more info on this? I leave mine to run but it just stops attempting to buy after typing the item in 3 times. Really annoying me because it's the only thing I need working to finish the script. veerrrryyyy frustratingggg. pretty much rewrote the script (i was gonna do this anyway not just because of this problem) and still the same problem.
-
Mine isn't So I've imported the simple ge api and used the .createBuyOffer() method. It still types it out 3 times! So it must be something to do with my code I just can't figure it out. It doesn't repeat anything else 3 times just the buy offer
-
Tried this, it simply does nothing. Haha! Has anyone tested either method recently?
-
Could you link me? I tried GrandExchange.java but also no luck
-
I used it the same way and it was working a few days ago on another script! weird
-
Hi all! I've had buying working before, so I've used code again, however in this script when I call the grandExchange.buyItem() method it writes "Grimy guam leaf" 2 times over, confirms without settings how many to buy then it ends up sending "Grimy guam leaf" on chat as it writes it a third time! EDIT: ignore how many im buying and selling, it's purely just testing if (buy == true) { //Sell all guam sleep(random(500,900)); grandExchange.sellItem(250, 10, 50000); sleep(random(5000,6000)); grandExchange.confirm(); sleep(random(700,1300)); do { sleep(random(1,30)); } while (grandExchange.getStatus(GrandExchange.Box.BOX_1) == GrandExchange.Status.PENDING_SALE); grandExchange.collect(); getGrandExchange().buyItem(200, "Grimy guam leaf", 20, 100); sleep(random(700,1300)); do { sleep(random(700,1300)); } while (grandExchange.getStatus(GrandExchange.Box.BOX_1) == GrandExchange.Status.PENDING_BUY); grandExchange.collect(); buy = false; }
-
The withdrawing works fine, it takes the grimy harralanders out, closes the bank then it doesn't seem to want to change over to the Clean state, it just sits there hovering over the GE
-
I've been working on a herb cleaning script for a few days, been working fine, i've not even touched the code but I noticed Jagex changed the name of "Grimy harralanders" to "Grimy Harralanders". As my initial script skeleton was just for Harralanders, so i changed it so it matched but nothing seems to be working. It won't even click through my inventory anymore. All this seems to be doing is withdrawing grimy harralanders and then opening the grand exchange, which is completely wrong as it should be cleaning the herbs first, then banking and withdrawing clean ones. here's all my code, please ignore the spacing, after copy and pasting it on here it seems like my code is everywhere. Might be my mac... import org.osbot.rs07.api.Bank.BankMode; import org.osbot.rs07.api.model.Entity; import org.osbot.rs07.api.model.NPC; import org.osbot.rs07.api.model.RS2Object; import org.osbot.rs07.api.ui.RS2Widget; import org.osbot.rs07.script.Script; import org.osbot.rs07.api.GrandExchange; import org.osbot.rs07.script.ScriptManifest; import org.osbot.rs07.utility.ConditionalSleep; import java.awt.*; import java.util.Random; @ScriptManifest(author = "Matt", info = "Cleans Herbs", name = "Matt's Herb Cleaner", version = 0, logo = "") public class main extends Script { paint Paint; String Status = " "; @[member=Override] public void onStart() { log("Beginning of script"); } private enum State { WITHDRAW, CLEAN, WAIT } private State getState() { if (getInventory().contains("Grimy harralander")) { return State.CLEAN; } if (!getInventory().contains("Grimy harralander")) { return State.WITHDRAW; } return State.WAIT; } @[member=Override] public int onLoop() throws InterruptedException { switch (getState()) { case WITHDRAW: doBanking(); if (!getGrandExchange().isOpen()) { //Checks if ge is open sellItem(); //Process sale if (grandExchange.getStatus(GrandExchange.Box.BOX_1) == GrandExchange.Status.PENDING_SALE) { //Waiting for sale }else if (grandExchange.getStatus(GrandExchange.Box.BOX_1) == GrandExchange.Status.FINISHED_SALE) { grandExchange.collect(); } buyItem(); //Process Buy if (grandExchange.getStatus(GrandExchange.Box.BOX_1) == GrandExchange.Status.PENDING_BUY) { //Waiting for buy }else if (grandExchange.getStatus(GrandExchange.Box.BOX_1) == GrandExchange.Status.FINISHED_BUY) { grandExchange.collect(); } } else { doBanking(); } break; case CLEAN: if (getInventory().contains("Grimy harralander")) { doCleaning(); } else { break; } case WAIT: break; } return random(200, 300); } @[member=Override] public void onExit() { log("Exit script"); } @[member=Override] public void onPaint(Graphics2D g) { } public void doCleaning() throws InterruptedException { for(int i=0;i<28;i++) { mouse.move(inventory.getMouseDestination(i)); mouse.click(false); } sleep(random(1000,2000)); if (getInventory().contains("Grimy harralander")) { inventory.getItem("Grimy harralander"); mouse.click(false); } } public boolean offerItem(String string) { for (int n = 0; n < 27; n++) { RS2Widget inventoryWidget = getWidgets().get(467, 0, n); if (getInventory().getItemInSlot(n).getName().contains(string)) { return inventoryWidget.interact("Offer"); } } return false; } public void sellItem() throws InterruptedException { if (!grandExchange.isOpen()) { //Open GE openGrandExchange(); sleep(random(500,900)); grandExchange.sellItem(256, 539, 224); sleep(random(5000,6000)); grandExchange.confirm(); } } public void buyItem() throws InterruptedException { if (!grandExchange.isOpen()) { openGrandExchange(); sleep(random(500,900)); grandExchange.buyItem(205, "Grimy harralander", 565, 224); sleep(random(5000,6000)); grandExchange.confirm(); } } public void openGrandExchange() { RS2Object geBooth = this.getObjects().closest("Grand Exchange booth"); NPC exchangeWorker = this.getNpcs().closest("Grand Exchange Clerk"); int random = new Random().nextInt(10); if (geBooth != null && random < 5) { geBooth.interact("Exchange"); new ConditionalSleep(2500, 3000) { @[member=Override] public boolean condition() { return getGrandExchange().isOpen(); } }.sleep(); } if (exchangeWorker != null && random >= 5) { exchangeWorker.interact("Exchange"); new ConditionalSleep(2500, 3000) { @[member=Override] public boolean condition() { return getGrandExchange().isOpen(); } }.sleep(); } } private void doBanking() throws InterruptedException { if(!bank.isOpen()){ Status = "Banking: Opening Bank."; NPC banker = npcs.closest("Banker"); if(banker != null) { if (banker.isOnScreen()) { Status = "Banking: Interacting Banker."; banker.interact("Bank"); sleep(random(900, 1200)); } } } else { Status = "Banking: Depositing."; if (!inventory.isEmpty()) { bank.depositAll(); } else { //Contains grimy if (bank.contains("Grimy harralander")) { if (getBank().getWithdrawMode().equals(BankMode.WITHDRAW_NOTE)) { getBank().enableMode(BankMode.WITHDRAW_ITEM); bank.withdraw("Grimy harralander", 28); } else { bank.withdraw("Grimy harralander", 28); } bank.close(); } //Doesn't contain grimy avantoes else if (!bank.contains("Grimy harralander")) { //Contains clean avantoes if (bank.contains("Harralander")) { //Withdraw 100 if (!getBank().getWithdrawMode().equals(BankMode.WITHDRAW_NOTE)) { getBank().enableMode(BankMode.WITHDRAW_NOTE); bank.withdraw("Harralander", 224); bank.withdraw("Coins", 30000); bank.close(); } //new GrandExchange instance with our script } } } sleep(random(250, 450)); } } }
-
Cheers mate, completely forgot about the onLoop! Thanks mate! I'll post when I've finished it
-
Hi all, I'm developing a simple herb cleaner that cleans herbs, sells clean, buys grimy and repeat. I'm a bit stuck on the Grand Exchange, I'm just trying to find out how to get the grand exchange window to stay open and wait for the offers to buy or sell to complete, then collect. This is my logic so far: while (grandExchange.getStatus(GrandExchange.Box.BOX_1).valueOf(getName()).toString() == "PENDING_SALE") { if (grandExchange.getStatus(GrandExchange.Box.BOX_1).valueOf(getName()).toString() == "FINISHED_SALE"); { grandExchange.collect(); break; } } Cheers
-
Cheers mate
-
How do you open the grand exchange window? I was original using .openGE(); but now that I'm using the default API I can't figure out how to open it! public void sellItem() throws InterruptedException { //Open GE OPEN GE WINDOW sleep(random(500,900)); grandExchange.sellItem(256, 539, 224); sleep(random(5000,6000)); grandExchange.confirm();
-
Hi, I've written a script to clean some herbs. I'm also implementing a function that sells the herbs back to the GE and buys grimy ones again, however I can't figure out how to withdraw noted items!