Jump to content
View in the app

A better way to browse. Learn more.

OSBot :: 2007 OSRS Botting

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Zappa

Trade With Caution
  • Joined

  • Last visited

Everything posted by Zappa

  1. Have you tried it recently? I just pushed an update.
  2. Zappa replied to Zappa's topic in Archive
    What do you think every Prime Minister/President does? Pays people to make decisions for them.
  3. -AntiBan -Al Kharid support -Informative Paint -Tans all hides -1800+ hides per hour! -200k+ gp per hour! -Hides to tan -cash to tan the hides (20gp per hide) -Start in Al Kharid bank -Have your cash in your inventory -Have a full inventory of hides -Put the rest of your hides at the top of your bank
  4. The script is going on the SDN either today or tomorrow, so I removed the dl link You can download it soon though!
  5. Waiting for admins to push my update
  6. Zappa replied to Zappa's topic in Snippets
    It is a good AntiBan, yes
  7. 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); }
  8. Fixed the problem for you via skype!
  9. It must be, if not the prices will crash way too much Yeah I think it's best off being paid. I apologize . Also do you have skype? I want to talk to you about something. Yea, my skype is blahs44
  10. It must be, if not the prices will crash way too much
  11. Will consider it, when some more people purchase
  12. Zappa replied to Zappa's topic in Snippets
    Yea man! That is why it is in the snippet section!
  13. Added rewards for progress reports!
  14. Zappa replied to before's topic in Archive
    OSBot does not support groovy
  15. Was considering doing this but as Divine pointed out, the prices of fungus would drop a lot. so many people selling low aswell yea, I just do not want prices to drop anymore (which is why it is not a free script)
  16. Was considering doing this but as Divine pointed out, the prices of fungus would drop a lot.
  17. Zappa posted a topic in Snippets
    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); } }
  18. hahahaha! Check out reddit.com/r/seinfeld
  19. I will consider adding energy potion support
  20. Zappa replied to Zappa's topic in Archive
    Isn't that what I just said? Your argument isn't even making sense anymore. Philosophy in general doesn't make sense. Kind of like getting a degree in Philosophy, it's worthless and you'd be an idiot to attempt it. Math makes the world work. Everything you own was designed using some form of math. Even before calculus was discovered, brewing barrels for whisky were made by trial and error to find the optimum shape. (look it up if you don't believe me) Fast forward 1000 years, and we can use calculus to derive the shape they found by trial and error in one semi simple equation using polar coordinates. Sure math might not be real, but it sure as hell is real for every person who uses it in their daily life. (ALL OF US) I swear, anytime philosophy is brought up in an argument, it's just to fuck with people. It has no real value in this world. "You cant prove I exist!" "Neither can you!" LETS THROW STONES ARE EACHOTHER TILL WE DIE LOLOLOL Oh- and if math doesn't exist, then I don't exist. Because clearly you're dreaming and it's time to wake up and face reality. You come off as both ignorant and arrogant here. Philosophy has a lot of merit, and just because you are not a person who can not understand what philosophy is, does not mean you have to bash other people. "I swear, anytime philosophy is brought up in an argument, it's just to fuck with people. It has no real value in this world." It is not to "fuck with people" and it does have value because it is the most real thing that we have.
  21. Zappa replied to Zappa's topic in Spam/Off Topic
    ah ok, will look into it

Account

Navigation

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.