Jump to content

Zappa

Trade With Caution
  • Posts

    1075
  • Joined

  • Last visited

  • Days Won

    3
  • Feedback

    100%

Everything posted by Zappa

  1. Kati is also Raf apparently...
  2. it is a joke because everybody was saying that Maxi was dead looool
  3. http://osbot.org/forum/topic/17192-flawless-bgemminer-mines-gems-in-shilo-village-200khr/
  4. Yeah man, if you want to make a big circle hit another circle, and bounce apart, learn Turing man I forgot to mention, these circles are flat 2 Dimensional objects that you drew in paint, or stole off of Google Sorry Zappa I took Turing in highschool, biggest waste of my time (BUT on your behalf you're right, its a great start to organizing and beginner scripting) ! I understood basic C++ at the time, so it pissed me off That's the only reason im so bias towards it! I thought it was too, but it is not. It teaches you the skills a programmer needs and how to think like a programmer and how to solve problems, which is needed to code anything.
  5. http://osbot.org/forum/forum/150-payment-issues/
  6. Honestly, do not start with Java, it is a medium difficulty programming language. Learn Turing first. It is the easiest language to learn (it is called the teaching language). Compsci.ca is the home of turing. Next, learn basic Java, then read the main API for OSBot, and start scripting
  7. It is a good AntiBan, yes
  8. Here is my AntiBan, which was improved upon by 5uck. private void AntiBan() throws InterruptedException { switch (random(1, 768)) { case 1: this.client.rotateCameraPitch(50 + random(40)); case 2: this.client.rotateCameraToAngle(200 + random(150)); case 3: this.client.rotateCameraToAngle(200 + random(150)); this.client.rotateCameraPitch(50 + random(40)); case 4: openTab(Tab.SKILLS); sleep(800 + random(500)); if (random(0, 2) == 1) { if (random(0, 12) != 1) { client.moveMouse(new RectangleDestination(550, 210, 175, 210), false); sleep(1500 + random(700)); } else { client.moveMouse( new RectangleDestination(550, 425, 120, 25), false); sleep(1800 + random(700)); } } case 5: for (int i = 0; i < Tab.values().length; i++) { if (random(1, 50) == 1) { openTab(Tab.values()[i]); sleep(1500 + random(5000)); break; } } case 6: moveMouseOutsideScreen(); sleep(random(5000, 15000)); case 7: openTab(Tab.MAGIC); sleep(1000 + random(1000)); for (int i = 0; i < Spell.values().length; i++) { if (random(1, 100) == 1) { magicTab.hoverSpell(Spell.values()[i]); sleep(1500 + random(500)); break; } } } random(100, 500); openTab(Tab.INVENTORY); }
  9. Yea man! That is why it is in the snippet section!
  10. This is a colour chooser tool you can use for paints or w/e package ColourChooser; import javax.swing.JDialog; import javax.swing.JFrame; import javax.swing.JPanel; import javax.swing.JButton; import javax.swing.JTextArea; import java.awt.EventQueue; import java.awt.BorderLayout; import java.awt.Color; import java.awt.GridLayout; import java.awt.event.ActionListener; import java.awt.event.ActionEvent; import javax.swing.JColorChooser; public class ColorChooserProgram { JFrame guiFrame; JTextArea tracker; JPanel optPanel; //Note: Typically the main method will be in a //separate class. As this is a simple one class //example it's all in the one class. public static void main(String[] args) { //Use the event dispatch thread for Swing components EventQueue.invokeLater(new Runnable() { @Override public void run() { new ColorChooserProgram(); } }); } public ColorChooserProgram() { guiFrame = new JFrame(); //make sure the program exits when the frame closes guiFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); guiFrame.setTitle("Dialog Box Example"); guiFrame.setSize(500,300); //This will center the JFrame in the middle of the screen guiFrame.setLocationRelativeTo(null); guiFrame.setLayout(new BorderLayout()); //Using a JTextArea to diplay feedback tracker = new JTextArea("File Tracker:"); tracker.setVisible(true); guiFrame.add(tracker, BorderLayout.NORTH); optPanel = new JPanel(); optPanel.setLayout(new GridLayout(1,2)); guiFrame.add(optPanel,BorderLayout.SOUTH); //button for the show dialog method JButton showButton = new JButton("Show Color Dialog"); showButton.setActionCommand("Show Color Dialog"); showButton.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent event) { Color selectedColor = JColorChooser.showDialog(guiFrame, "Pick a Color" , Color.GREEN); if (selectedColor != null) { tracker.append("\nThe selected color is make up of Red: " + selectedColor.getRed() + " Blue: " + selectedColor.getBlue() + " Green: " + selectedColor.getGreen()); } } }); optPanel.add(showButton); //button for the create dialog method JButton createButton = new JButton("Create Color Dialog"); createButton.setActionCommand("Create Color Dialog"); createButton.addActionListener(new ActionListener() { @Override public void actionPerformed(ActionEvent event) { //this users a JColorchooser instance in combination //with a JDialog to create a color chooser dialog. It's modeless //and the OK and Cancel buttons can be listened to. final JColorChooser colorChooser = new JColorChooser(); JDialog dialog = JColorChooser.createDialog(guiFrame, "Set Text Area color", false, colorChooser , new ActionListener() { @Override public void actionPerformed(ActionEvent event) { //this actionListenerr is for the OK button tracker.append("\nI can feel my color being changed to " + colorChooser.getColor()); tracker.setBackground(colorChooser.getColor()); } } , new ActionListener() { @Override public void actionPerformed(ActionEvent event) { //this actionListener is for the cancel button tracker.append("\nCancel button clicked.."); } } ); dialog.setVisible(true); } }); optPanel.add(createButton); guiFrame.setVisible(true); } }
  11. hahahaha! Check out reddit.com/r/seinfeld
  12. ah ok, will look into it
  13. the us version was soooooooooooo bad!
  14. The Inbetweeners is the funniest show! (UK version, not US version)
×
×
  • Create New...