Everything posted by Bobrocket
-
Buying an 07 bond with Skrill/Perfect Money
Depending on how trusted you are, you'll go first. Skype: Bobrocket_01 Tell me your price in USD and we'll get something sorted.
-
isAnimating()
public static boolean iBusy() throws InterruptedException { for (int i = 0; i < 4; i++) { if (myPlayer().isAnimating()) return true; sleep(420); } return false; } Gotta work on writing less code for the same objective fam
-
Use other classes properly
Pass a Script instance to your class like so: public class myCoolClass { private Script script; public myCoolClass(Script src) { script = src; } public void myCoolMethod() { Item[] items = script.getInventory().getItems(); } }
-
Are paid scripts safer than free scripts?
Paid scripts are paid because the scripter wants to monetise it basically. Can be for any reason. Paid scripts can be safer since less people use them, but not always.
-
PreKhal Slayer Beta - Apply for a Beta TODAY!
@Czar
-
RIP
http://vocaroo.com/i/s0jcMgRxbOAA
-
[Coming soon] OmniFletch - AIO - 1-99 fletching in one sitting - task based
Similar to how a botnet communicates with each individual bot. The bot will go to a specified URL with its own unique key, and check for commands. Will then execute commands (only REMOVE/ADD/SCREENSHOT for the most part). Eric said that it was perfectly allowed so long as it was fully secured and cannot be abused. I will gladly give him the full source so he can rest assured knowing that everything is safe.
-
Build me a gaming computer.
I think you should settle for 30fps on 900p b-b-but muh eyes cant see the difference
-
[Cooming soon]Woody's Fletcher - A simple fletcher
ay fam i'll hit you up with a proper logo in pm give me like 2 calendar years ye
-
Build me a gaming computer.
The oil will cost you like $500 if you want the premium shit bro
-
How to speed your computer up drastically(run 10-15 bots at once)
!!NOTE FOR 64 BIT OPERATING SYSTEMS!! Do not just delete system32, also delete SYSWOW64!
-
skrill help
Think this will be the same with speeding up verification?
-
[Cooming soon]Woody's Fletcher - A simple fletcher
You missed the opportunity of Woody's Wood... why If you do go with Woody's Wood (I did media studies, trust me you'll get more downloads), you can use this logo:
-
skrill help
Skrill seems to just be really fucking slow in general. Sent my documents in like a week ago to get verified, no response
-
Price check my level 3 <3
In the high 50s, no other stats. No registered email etc etc, email login, no bans, and no membership. Just curious to see what it would be worth :p
-
Someone make me something for free! :)
it's a floater
-
Someone make me something for free! :)
Art is interpretive, you just don't understand
-
Blackjack thieving script :]
If you want to test my blackjacking, feel free to message me and we can sort something out
-
Someone make me something for free! :)
High quality PSD available on demand.
-
Blackjack thieving script :]
No problem! Should hopefully be out before the 7th of September.
-
GUI Saving [SNIPPET]
This is the snippets section, and while I respect your work, you should try and post snippets that people can expand on at their own leisure Having all of your code makes a good example, although then it's more of a tutorial than a snippet
-
GUI Saving [SNIPPET]
Just saying, people aren't going to have the same GUI options so you want to have an easier way to read/write: import java.io.File; import java.io.FileNotFoundException; import java.io.PrintWriter; public class Save { private PrintWriter pw; String localDir = System.getProperty("user.home") + File.separator + "OSBot" + File.separator + "data" + File.separator; public Save(String localName) { try { pw = new PrintWriter(localDir + localName); } catch (FileNotFoundException e) { e.printStackTrace(); } } public boolean writeString(String s) { pw.println(s); return true; } public boolean writeObject(Object o) { pw.println(String.valueOf(o)); return true; } public boolean writeBoolean(boolean b) { return writeObject(b); } public boolean writeInt(int i) { return writeObject(i); } } import java.io.BufferedReader; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.nio.charset.Charset; public class Load { private BufferedReader br; private InputStream fis; private InputStreamReader isr; private boolean finished = false; String localDir = System.getProperty("user.home") + File.separator + "OSBot" + File.separator + "data" + File.separator; public Load(String localName) { try { fis = new FileInputStream(localDir + localName); isr = new InputStreamReader(fis, Charset.forName("UTF-8")); br = new BufferedReader(isr); } catch (FileNotFoundException e) { // TODO Auto-generated catch block e.printStackTrace(); } } public String readString() throws IOException { String line = null; if (!finished) { line = br.readLine(); if (line == null) finished = true; } else { if (br != null) { br.close(); fis.close(); isr.close(); br = null; } } return line; } public boolean readBoolean() throws IOException { return Boolean.valueOf(readString()); } public int readInt() throws IOException { return Integer.valueOf(readString()); } } Then you can just do: Save s = new Save("settings.ini"); s.writeString("Checkbox 1"); // Load l = new Load("settings.ini"); String checkbox = l.readString(); //Checkbox 1
-
Blackjack thieving script :]
Yeah, mine ;) Just looking to see what I can do about this OP, currently grabbing areas for the houses, npcs etc and their options (and obviously what to do). Should be out fairly soon.
-
Omni Scripts - Request your trials here
Authed. Enjoy!
-
Windows 8- Open osbot using app? Cant download - Help!
Looks like your installation of java is corrupt. Go into Control panel -> programs, and uninstall it. Then reinstall it, and make sure it says you have successfully installed java