Everything posted by Swizzbeat
-
Herb Data
There's no reason to have an empty default constructor, and your toString could be a lot cleaner and efficient: @Override public String toString() { final StringBuilder sb = new StringBuilder(super.toString()); return sb.charAt(0) + sb.substring(1).toLowerCase().replace("_", " "); }
-
Youtube embed on forums
- Custom Inventory dropping method :/
Dunno, I forget the exact formula for getting menu destinations.- Custom Inventory dropping method :/
final Inventory inven = client.getInventory(); for (final Item item : inven.getItems()) { if (item != null && Arrays.asList(item.getDefinition().getActions()).contains("Drop")) { inven.interactWithId(item.getId(), "Drop"); } } Wrote in 5 seconds without IDE.- Interface based condition not working? halp pl0x
It's probably throwing an exception since you're invoking #isVisible() on a null instance. Create an RS2Interface object like so: final RS2Interface parent = client.getInterface(469); and do a null check on it before doing any type of interaction/method.- Miner suggestions
Varrock west for clay!- Yew Ent ID
- Who's your favorite Ex-Staff?
Where is @Peter? And yes he is ex-staff. Legit staff, not cba.- Need 3 more testers for my Account Starter script!
And another...- SuperScript Factory 3 Day Free Trials
150+ iterations per script loop. Oh my fucking lel. OT goodluck but I'm 99% sure there's going to be an official OSBot rule added limiting the amount of SSF advertisements- I rear ended someone...
If you're still driving it it's not totaled....- Update OSRS #49 and Website Maintainence
Could you maybe have an option to just reload local scripts? It's annoying having to wait 10 seconds while it connects to the server while I only want to test something out.- So I took shrooms some time ago..
I lose all respect for people that boast about their drug use.- Handy paint-making tool
Did you post this elsewhere on the site? If not I guess someone else modified it for OS as well, because I have the OS version on my comp.- Botting Vocab
- Handy paint-making tool
This is Enfilade's from p****bot.- Requesting Sig
Nick Took me about an hour to decide on the perfect color so I hope it wasn't for nothing- Rockwings
Scripter has barely ever been active and his last login was one week ago. His rock crabs script ( http://osbot.org/forum/store/product/324-rrockcrabs/ ) has apparently been broken for awhile as well as his shark fisher ( http://osbot.org/forum/topic/25339-rsharks/ ).- Auto Quester
- Auto Quester
Could you guys add me on Skype if you're willing to help with the SCRIPTING aspect? Add OSSwizzbeat. Also, if this scares you: or you don't even know how to use enums please don't ask to help.- Auto Quester
http://osbot.org/forum/topic/51395-swizzbeats-auto-quester/ Looking for people who want to aid in the development of this. I'm looking to expand this to have as many quests as possible, so the more people involved the better. As it is a premium script profits will be split accordingly. People involved: @Swizzbeat @Articron (maybe?)- Starting to develop scripts!
Mine was O_o nonetheless goodluck- Starting to develop scripts!
Lol did someone really delete half the posts on here?- Got any tips for making my first script
To much effort.- Got any tips for making my first script
I've tried fixing it before but it keeps reverting back O_o - Custom Inventory dropping method :/