Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 08/27/15 in Posts

  1. CzarScripts #1 Bots LATEST BOTS If you want a trial - just post below with the script name, you can choose multiple too. Requirements Hit 'like' on this thread
    5 points
  2. Dear Community, I have removed the 100 post count limit to account sales, but they still need to be approved by a moderator before it shows up to the public. This is so people can respond without 100 posts to buy an account. We will not be approving any threads for account sales by new users, spammers, or any other thing we see suspicious. If you feel someone is suspicious, feel free to report the thread or pm a staff member. Thanks, @Maldesto
    4 points
  3. Can you show me where you claimed he can not resell this method? If not, I have no grounds to punish him at all. It is an unbanning method, if you gave it to him, he has the right to share it with anyone and charge what he wants.
    4 points
  4. There is no difference in ban chance.... It's a retarded myth.
    4 points
  5. ..........I spammed so hard for that 100 post count
    3 points
  6. High quality PSD available on demand.
    2 points
  7. I doubt it makes any difference, but that's my opinion only.
    2 points
  8. Mirror = waste of ram and cpu
    2 points
  9. 2 points
  10. So, neither of you claim to be leveling the account, even though Rambo said he is the original owner...?
    2 points
  11. 2 points
  12. 2 points
  13. Note: No additional quests or PoH interiors are required anymore. Please take the time to read through the following information, they may answer your questions If not, feel free to ask in this thread Barrows Barrows is a dangerous combat minigame, located in the southern parts of Morytania. The purpose of the minigame is to kill all 6 barrow brothers and finally claim their treasure, providing a chance to receive the unique and valuable barrows equipment, as well as other precious loot. Feature Guide Starting the script Proggies (Post your own in this thread to have them added) Change Log Troubleshooting FAQ Dynamic Signatures Bug report template http://frostbug.dk/dynsig_barrows.png?username=All
    1 point
  14. Since last semester ended, I have been working on a little project for a couple of weeks to learn and have some fun. I didnt actually intend to add it to the osbot client, I just started it as a separate project. Yesterday I decided I would add it on to the client for fun. Basically I wrote a server application in java, its hosted on a remote host. Anyone who has the client application can connect to the server. This is just a beta stage still, but its coming along nicely (in my opinion). It will keep track of online users etc. When you type '/online' it will print out a list of online users, as you can see in that image. It just pulls your username from the osb client and logs you on to the chat as that user. Current commands: '/online' - Prints the current online users. '/clear' - Clears all of the previous chat history from your client. What do you guys think? Would this be cool to add on to the client/scripts, or would it just be annoying if it poped up? Of course there could be an option when you run the script to connect or not.
    1 point
  15. Hello if you are wondering how to do this, here we go. Example: public class HillGiantMagicianGUI extends JFrame { Settings prop = new Settings(new File(System.getProperty("user.home") + File.separator + "OSBot" + File.separator + "data" + File.separator), this, myPlayer().getName()); public HillGiantMagicianGUI() { initComponents(); prop.load(); } private void button1ActionPerformed(ActionEvent e) { prop.save(); } public static class Settings { private File PATH_FILE; private String FILE_NAME = "SETTINGS.ini"; private HillGiantMagicianGUI gui; private final Properties prop = new Properties(); public Settings(File f, HillGiantMagicianGUI gui, String accountName) { if (!f.exists()) { f.mkdirs(); } FILE_NAME = accountName.toUpperCase() + "_" + FILE_NAME; PATH_FILE = new File(f, FILE_NAME); this.gui = gui; } public synchronized void save() { try { if (!PATH_FILE.exists() && !PATH_FILE.createNewFile()) { return; } if (!PATH_FILE.canWrite()) { PATH_FILE.setWritable(true); } prop.clear(); prop.put("I1", gui.comboBox1.getSelectedItem()); prop.put("T2", gui.textField2.getText()); prop.put("I2", gui.comboBox2.getSelectedItem()); prop.put("T3", gui.textField3.getText()); prop.put("I3", gui.comboBox3.getSelectedItem()); prop.put("T4", gui.textField4.getText()); prop.put("I4", gui.comboBox4.getSelectedItem()); prop.put("T5", gui.textField5.getText()); prop.put("I7", gui.comboBox7.getSelectedItem()); prop.put("T6", gui.textField6.getText()); prop.put("I5", gui.comboBox5.getSelectedItem()); prop.put("T7", gui.textField7.getText()); prop.put("I6", gui.comboBox6.getSelectedItem()); prop.put("T8", gui.textField8.getText()); prop.put("I8", gui.comboBox8.getSelectedItem()); prop.put("T9", gui.textField9.getText()); prop.put("c1", String.valueOf(gui.checkBox1.isSelected())); prop.put("c2", String.valueOf(gui.checkBox2.isSelected())); prop.put("c3", String.valueOf(gui.checkBox3.isSelected())); prop.put("c4", String.valueOf(gui.checkBox4.isSelected())); prop.put("c5", String.valueOf(gui.checkBox5.isSelected())); prop.put("c6", String.valueOf(gui.checkBox6.isSelected())); prop.put("r1", String.valueOf(gui.radioButton1.isSelected())); prop.put("r2", String.valueOf(gui.radioButton2.isSelected())); prop.put("r3", String.valueOf(gui.radioButton3.isSelected())); prop.put("r4", String.valueOf(gui.radioButton4.isSelected())); prop.put("r5", String.valueOf(gui.radioButton5.isSelected())); prop.put("r6", String.valueOf(gui.radioButton6.isSelected())); prop.put("r7", String.valueOf(gui.radioButton7.isSelected())); prop.put("r8", String.valueOf(gui.radioButton8.isSelected())); prop.put("r9", String.valueOf(gui.radioButton9.isSelected())); prop.put("r10", String.valueOf( gui.radioButton10.isSelected())); prop.put("r11", String.valueOf(gui.radioButton11.isSelected())); prop.put("r12", String.valueOf( gui.radioButton12.isSelected())); prop.put("r14", String.valueOf(gui.radioButton14.isSelected())); prop.put("r15", String.valueOf(gui.radioButton15.isSelected())); prop.put("r16", String.valueOf(gui.radioButton16.isSelected())); prop.put("r17", String.valueOf(gui.radioButton17.isSelected())); prop.put("r18", String.valueOf(gui.radioButton18.isSelected())); prop.put("r19", String.valueOf(gui.radioButton19.isSelected())); prop.put("r20", String.valueOf(gui.radioButton20.isSelected())); prop.put("r21", String.valueOf(gui.radioButton21.isSelected())); prop.store(new FileOutputStream(PATH_FILE), "GUI Settings"); PATH_FILE.setReadOnly(); } catch (Throwable e) { } } public synchronized void load() { try { if (PATH_FILE.exists()) { prop.load(new FileInputStream(PATH_FILE)); gui.comboBox1.setSelectedItem(prop.getProperty("I1")); if (prop.getProperty("T2").toString() != "") { gui.textField2.setText(prop.getProperty("T2")); } gui.comboBox2.setSelectedItem(prop.getProperty("I2")); if (prop.getProperty("T3").toString() != "") { gui.textField3.setText(prop.getProperty("T3")); } gui.comboBox3.setSelectedItem(prop.getProperty("I3")); if (prop.getProperty("T4").toString() != "") { gui.textField4.setText(prop.getProperty("T4")); } gui.comboBox4.setSelectedItem(prop.getProperty("I4")); if (prop.getProperty("T5").toString() != "") { gui.textField5.setText(prop.getProperty("T5")); } gui.comboBox7.setSelectedItem(prop.getProperty("I7")); if (prop.getProperty("T6").toString() != "") { gui.textField6.setText(prop.getProperty("T6")); } gui.comboBox5.setSelectedItem(prop.getProperty("I5")); if (prop.getProperty("T7").toString() != "") { gui.textField7.setText(prop.getProperty("T7")); } gui.comboBox6.setSelectedItem(prop.getProperty("I6")); if (prop.getProperty("T8").toString() != "") { gui.textField8.setText(prop.getProperty("T8")); } gui.comboBox8.setSelectedItem(prop.getProperty("I8")); if (prop.getProperty("T9").toString() != "") { gui.textField9.setText(prop.getProperty("T9")); } gui.checkBox1.setSelected(Boolean.valueOf(prop.getProperty("c1", "false"))); gui.checkBox2.setSelected(Boolean.valueOf(prop.getProperty("c2", "false"))); gui.checkBox3.setSelected(Boolean.valueOf(prop.getProperty("c3", "false"))); gui.checkBox4.setSelected(Boolean.valueOf(prop.getProperty("c4", "false"))); gui.checkBox5.setSelected(Boolean.valueOf(prop.getProperty("c5", "false"))); gui.checkBox6.setSelected(Boolean.valueOf(prop.getProperty("c6", "false"))); gui.radioButton1.setSelected(Boolean.valueOf(prop.getProperty("r1", "false"))); gui.radioButton2.setSelected(Boolean.valueOf(prop.getProperty("r2", "false"))); gui.radioButton3.setSelected(Boolean.valueOf(prop.getProperty("r3", "false"))); gui.radioButton4.setSelected(Boolean.valueOf(prop.getProperty("r4", "false"))); gui.radioButton5.setSelected(Boolean.valueOf(prop.getProperty("r5", "false"))); gui.radioButton6.setSelected(Boolean.valueOf(prop.getProperty("r6", "false"))); gui.radioButton7.setSelected(Boolean.valueOf(prop.getProperty("r7", "false"))); gui.radioButton8.setSelected(Boolean.valueOf(prop.getProperty("r8", "false"))); gui.radioButton9.setSelected(Boolean.valueOf(prop.getProperty("r9", "false"))); gui.radioButton10.setSelected(Boolean.valueOf(prop.getProperty("r10", "false"))); gui.radioButton11.setSelected(Boolean.valueOf(prop.getProperty("r11", "false"))); gui.radioButton12.setSelected(Boolean.valueOf(prop.getProperty("r12", "false"))); gui.radioButton14.setSelected(Boolean.valueOf(prop.getProperty("r14", "false"))); gui.radioButton15.setSelected(Boolean.valueOf(prop.getProperty("r15", "false"))); gui.radioButton16.setSelected(Boolean.valueOf(prop.getProperty("r16", "false"))); gui.radioButton17.setSelected(Boolean.valueOf(prop.getProperty("r17", "false"))); gui.radioButton18.setSelected(Boolean.valueOf(prop.getProperty("r18", "false"))); gui.radioButton19.setSelected(Boolean.valueOf(prop.getProperty("r19", "false"))); gui.radioButton20.setSelected(Boolean.valueOf(prop.getProperty("r20", "false"))); gui.radioButton21.setSelected(Boolean.valueOf(prop.getProperty("r21", "false"))); } } catch (Throwable e) {} } }
    1 point
  16. Amen. Ain't worth 25m at all.
    1 point
  17. 1 point
  18. all excellent script works perfectly well all very detailed and comprehensive! EXCELLENT without words
    1 point
  19. Streaming TSM bootcamp atm and I get 3k+ viewers each stream Obviously you would pay some money & has to be within game/twitch rules could be vps advert mayb proof: https://gyazo.com/ed196f190e987ba3afbba664d4861b84
    1 point
  20. Can confirm chat is real the songs are fucking dank
    1 point
  21. 9/11 for this method I personally like to format my one and only hard drive for max mirror bots
    1 point
  22. holy shit im running 10 mirror bots now thanks op huge vouch
    1 point
  23. 1 point
  24. Hey Czar I'm really enjoying the trial you gave me, Will have a nice proggie up in about 10 hours from now (if my trial survives that long) :P The only issue I'm having is that a few seconds after it finishes powerdropping it kind of actions like therre are more logs in the inventory. https://gyazo.com/28f66770cf1e1e80836c04c294521084 I don't think it's a huge issue at all but I thought i'd point it out. I'm using a custom location with the afk on and the "check axe" option on cutting oaks. (custom location was the best idea ever!!) Czar is love Czar is life, that is all.
    1 point
  25. just bought this script. to be honest I was busy and didnt get to test out the trial you gave me in time, but its okay, everythings working great so far. (cooking lobs @ catherby) thanks OP!
    1 point
  26. It's not a deadlock problem. You never call notify in your button's action listener, so the script thread stays waiting
    1 point
  27. If I'm not mistaking you have a deadlock. You're waiting indefinitely in a synchronization block locked on Main.class The EDT tries to enter a synchronization block also locked on Main.class in order to notify the above thread = The EDT cannot enter the synchronization block because a thread is waiting in the first synchronization block = The first thread is never notified
    1 point
  28. yea this will help, that way nobody has to spam the forums anymore
    1 point
  29. Hey guys, Go to control panel > Programs and Features > Uninstall all verisons of Java (you will problem have a 32 and 64 bit java installed) Install 32 bit java That should fix it, This worked for me!
    1 point
  30. My bot keeps getting stuck at the bottom of the ladder. It's happened for sure 7 times today, and every single time I have to click on the ladder for it to go up. If I don't it just stands there and does nothing. There's nothing in the notepad thing that says anythings wrong (no java exceptions, null pointer exceptions, etc), it just keeps clicking the ladder when it runs toward the ore spots near the ladder it seems. My inventory isn't even full when it does it. Is there anyway to add in a check to see if ore < 26 it goes back up? Thanks.
    1 point
  31. Just purchased this script and went to start doing darts, it banks all the darts and feathers then withdraws 1 feather then just idles?
    1 point
  32. I honestly see no problems with this script anymore. The run option is working perfectly now, aaaand i find that the bot immediately reboards the ship after the round finishes. IMO SO SATISFIED AND CAN'T SEE MUCH WAYS TO IMPROVE
    1 point
  33. Luring is basically scamming people that are a bit slow in the head.
    1 point
  34. For a blackmarket /runescape rule breaking website? Come on now. Unless it's scamming members i assume it's all above board?
    1 point
  35. Jagex hates him! Discover this one simple trick that this single mum used to achieve unlimited RuneScape membership today!
    1 point
×
×
  • Create New...