Everything posted by Zappa
-
[REWARDS] BFungus - Collects Fungus in Mort Myre Swamp [400k+/hr]
Have you tried it recently? I just pushed an update.
-
[REWARDS] BFungus - Collects Fungus in Mort Myre Swamp [400k+/hr]
Version 1.6 is released
- 1 + 1 = 0
-
[FLAWLESS] [200K+/HR] BTanner - Tans hides in Al Kharid [1800+ Hides Per Hour]
-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
-
[FLAWLESS] BGemMiner - Mines Gems in Shilo Village [200k+/hr]
The script is going on the SDN either today or tomorrow, so I removed the dl link You can download it soon though!
-
[REWARDS] BFungus - Collects Fungus in Mort Myre Swamp [400k+/hr]
Waiting for admins to push my update
-
AntiBan - Zappa & 5uck
It is a good AntiBan, yes
-
AntiBan - Zappa & 5uck
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); }
-
[REWARDS] BFungus - Collects Fungus in Mort Myre Swamp [400k+/hr]
Fixed the problem for you via skype!
-
[REWARDS] BFungus - Collects Fungus in Mort Myre Swamp [400k+/hr]
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
-
[REWARDS] BFungus - Collects Fungus in Mort Myre Swamp [400k+/hr]
It must be, if not the prices will crash way too much
-
[REWARDS] BFungus - Collects Fungus in Mort Myre Swamp [400k+/hr]
Will consider it, when some more people purchase
-
Zappa's Path Walking
Yea man! That is why it is in the snippet section!
-
[REWARDS] BFungus - Collects Fungus in Mort Myre Swamp [400k+/hr]
Added rewards for progress reports!
- Learning Groovy
-
[REWARDS] BFungus - Collects Fungus in Mort Myre Swamp [400k+/hr]
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)
-
[REWARDS] BFungus - Collects Fungus in Mort Myre Swamp [400k+/hr]
Was considering doing this but as Divine pointed out, the prices of fungus would drop a lot.
-
Colour Chooser Tool
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); } }
-
These pretzels are making me thirsty!
hahahaha! Check out reddit.com/r/seinfeld
-
These pretzels are making me thirsty!
Seinfeld
-
[REWARDS] BFungus - Collects Fungus in Mort Myre Swamp [400k+/hr]
I will consider adding energy potion support
-
These pretzels are making me thirsty!
Dammit Jerry!
-
[REWARDS] BFungus - Collects Fungus in Mort Myre Swamp [400k+/hr]
Thanks!
-
1 + 1 = 0
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.
- OSBot Subreddit