Jump to content

Jack

Members
  • Posts

    2125
  • Joined

  • Last visited

  • Days Won

    2
  • Feedback

    100%

Everything posted by Jack

  1. I cant connect to chat and I dont think im banned. Anyone else?
  2. I protected my code by obfuscating it. To use my script, put all your other scripts in a different folder have my script be the only script in your scripts folder.
  3. Is one of them my aio fighter?
  4. Jack

    BETA v1.7.76

    lol i have not updated since 71
  5. Jack

    Paint XP Drop

    nice, I hope i helped
  6. ty
  7. where? ive had people get 4+ hour proggys...
  8. You lost the game.
  9. no because then it would be called 60 times per second not 5 times per second
  10. Its not looking like a bright future tbh.
  11. Jack

    Version Checker

    so u host the text file on a website? where can i host?
  12. Good Fight Signature
  13. *This only works in chrome! Download this chrome extension: https://chrome.google.com/webstore/detail/blocker/epdedalbkhcbhcmcpfglmhngjpgimcmm/related Scroll to the signature of the picture you want to block Click this X in the url bar: Click Block: Hover over the side of the image so the image has a yellow border: Click the yellow border Then press OK on the popup: Refresh the page and the image will never show up again! If I helped you avoid those awkward glances from your family members, please press like
  14. Jack

    Private Scripts

    Can there please be a way that I can provide people private scripts while osbot still gets a portion of the sale? Can there be a seperate section on the sdn for private scripts? Thanks.
  15. Turtle beach x32s are what I use for xbox. They are $100 and good quality.
  16. omg all the info for a clue scroll script...
  17. You have to go make the flour, get the egg, and milk the cow. It is just going to be the first quest. Im starting easy and getting harder.
  18. I have almost finished a base for a script that will flawlessly do quests. I need: Quests I should add Skypes of users willing to test quests on their accounts. (Mostly lvl 3 accounts for now) The first quest I am making is "The Cooks Assistant" to test the system I am using to write the scripts. Any feedback is welcome
  19. Hi scripters. Here is code to put a mini screen the user can use to babysit their bot. import java.awt.BorderLayout; import java.awt.Graphics; import java.awt.image.BufferedImage; import javax.swing.JFrame; import javax.swing.JPanel; public class GUI extends JFrame{ private JPanel contentPane; BufferedImage capture; public GUI() { setResizable(false); setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE); setSize(384, 255); contentPane = new JPanel(); setContentPane(contentPane); JPanel panel = new JPanel(); contentPane.add(panel, BorderLayout.CENTER); } public void paint(Graphics g) { g.drawImage(capture,2,30,getContentPane().getWidth(),getContentPane().getHeight(),getContentPane()); } public void setImage(BufferedImage image) { capture = image; } } How to Implement: BufferedImage capture; GUI gui; public int onLoop() throws InterruptedException { capture = client.getColorPicker().getBufferedImage(); gui.setImage(capture); gui.repaint(); return 200; } public void onStart(){ gui = new GUI(); gui.setVisible(true); }
  20. ((e^3)/2)/10
  21. go to al karid scimitar shop...
×
×
  • Create New...