Everything posted by qverkk
-
[ANON POLL] Whose excited I'm leaving? AKA no more shit posting
Tom4S3
- Mio??
- BUYING MILLS
-
account locked
thank you for this, can confirm, tried registering accounts with several proxies automated and manually, the automated ones got locked, 5 - 15 minutes after tutorials
-
Winners announced for vip give away!
why not?
-
Checking if my player is standing on a fire
public boolean isStandingOnFire(){ for(RS2Object o : objects.getAll()){ if(o.getName().equals("Fire")){ if(o.getPosition().getX() == myPlayer().getPosition().getX() && o.getPosition().getY() == myPlayer().getPosition().getY()) return true; } } return false; }
- Hi! : D
-
[FREE] hEssenceMiner | EFFICIENT ESSENCE MINING | MULE SUPPORT
essence miner, reminds me of the good old runescape times
-
Price Check Old PC (Original Links)
$80 bid
- Cya OSBOT
-
is the bot down?
- Audio / Sound Snippet
I don't even know what you're talking about, bruh- Getting inventory slot 'bounding-box' coordinates.
maybe this will help public boolean isHoveringWidget(RS2Widget w) throws InterruptedException { WidgetDestination destination = new WidgetDestination(script.bot, w); if (w != null) { Rectangle r = destination.getBoundingBox(); if (r != null) { if (r.contains(script.mouse.getPosition())) return true; return false; } } return false; }- trade.isSecondInterfaceOpen,have trouble with,,help me
what i have understood is you want to check item amount in second trade window, I don't think that getTheirOffers() / getOurOffers() works in this case It might be possible to do so using this (@TheScrub) public List<TradeItem> getItemsSecondaryScreen(String text) throws ParseException { ArrayList<TradeItem> list = new ArrayList<TradeItem>(); if (text == null || !text.contains("<br>")) { return list; } String items[] = text.split("<br>"); for (String s : items) { String[] itemData = s.split("<col=[0-9A-Fa-f]{6}>"); if (itemData.length == 2) { list.add(new TradeItem(itemData[1])); } else if (itemData.length == 4) { list.add(new TradeItem(itemData[1], parseQuantity(itemData[3]))); } else { try { throw new Exception("Sorry please check the item"); } catch (Exception e) { e.printStackTrace(); } } } return list; } private int parseQuantity(String text) throws ParseException { if (text == null) { return -1; } if (text.contains("(") && text.contains(")")) { text = text.substring(text.indexOf('(') + 1, text.indexOf(')')); NumberFormat.getIntegerInstance(java.util.Locale.US).parse(text) .intValue(); } return NumberFormat.getIntegerInstance(java.util.Locale.US).parse(text) .intValue(); } public class TradeItem { private String name; private boolean stackable; private int amount; public TradeItem(String name) { this.name = name; this.stackable = false; this.amount = 1; } public TradeItem(String name, int amount) { this.name = name; this.amount = amount; this.stackable = true; } public String getName() { return this.name; } public int getAmount() { return this.amount; } public boolean isStackable() { return this.stackable; } } anyways, why do you have to detect it?- When your farm crashes and you make it to reddit
looks like- When your farm crashes and you make it to reddit
reminds me the varrock west merchant job- Remove the ability to gain post count from the off-topic section
Too much engine work, will not happen, close pls- Abuse's DIY Projector Screen/Home cinema build
this is awesome- Guranteed Dismissal of Random Events
they follow u- I had 3 warning points now I have 2
fiji pls- I had 3 warning points now I have 2
when- free postcount
- Bot Max Main v2
- Merlo's Magic Tea Thiever (First script, wouldn't recommend)
amazing!- Top cat
- Audio / Sound Snippet