Everything posted by Token
-
Green pasta
That moment when you use google chrome scripts to cheat on a cheating site
-
Ayy lmao quite large sweep
Still untouchable
-
crashing on second script
Read my replies on this http://osbot.org/forum/topic/104166-high-cpu-usage/ It's not a script/client issue, but allocating more ram will work
-
online viagra?1
Pretty much every rogue pharmacy online sells viagra
-
Random question
There's no benefit, that's just bad coding
-
:?:
I'm not using any extensions, just the website
-
:?:
There is nothing infected on my PC. It's the website code.
-
:?:
HOW MUCH JAVASCRIPT IS THIS SITE USING
-
:?:
Just having OSBot open in my browser takes up to 25% of my CPU... and it's a damn i7 4720HQ and then it sometimes crashes
-
Logger
1. public void printStackTrace(Exception e) { for (StackTraceElement el : e.getStackTrace()) { log(el.toString()); } } 2. You don't need access to anything in there
-
Scripting expert confirms on reddit that colour detection based bots are the best way of botting
I admire your perseverance, I gave up after he said he goldfarmed until 6 months ago
-
Scripting expert confirms on reddit that colour detection based bots are the best way of botting
Scripting expert on OSBot confirms jagex detects more legit players than actual bots
-
Invoke GUI Checkbox in main class
public interface Observer { public void update(); } public interface Observable { public void registerObserver(Observer observer); public void sendUpdate(); } @ScriptManifest(name = "LeScript", author = "Token", version = 2.0, info = "", logo = "") public class Main extends Script implements Observer { UI ui; boolean checkBoxValue; @ Override public void update() { checkBoxValue = ui.getCheckBoxValue(); } @ Override public void onStart() { ui = new UI(); } @ Override public int onLoop() throws InterruptedException { return 69; } } @SuppressWarnings("serial") public class UI extends JFrame implements Observable { ArrayList<Observer> observers = new ArrayList<Observer>(); @ Override public void registerObserver(Observer observer) { observers.add(observer); } @ Override public void sendUpdate() { observers.forEach(o -> o.update()); } JCheckBox checkBox; JPanel contentPane; public boolean getCheckBoxValue() { return checkBox.isSelected(); } UI() { setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE); setTitle("LeTitle"); setResizable(false); contentPane = new JPanel(); contentPane.setBorder(new EmptyBorder(5, 5, 5, 5)); setContentPane(contentPane); setBounds(100, 100, 582, 401); contentPane.setLayout(null); checkBox = new JCheckBox("Checkbox"); checkBox.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent arg0) { sendUpdate(); } }); checkBox.setBounds(181, 52, 97, 23); contentPane.add(checkBox); setVisible(true); } } That's an implementation of the Observer pattern which is used whenever it comes to programming user interfaces, also internally by the swing/awt/javafx libraries and pretty much any other library You can test it like this public static void main(String[] args) { UI ui = new UI(); Observer obs = new Observer() { @ Override public void update() { System.out.println("updated"); } }; ui.registerObserver(obs); } PS: put each class in a separate module
-
How to buy/sell items on the Grand Exchange
It clicks the collect button that appears on the top right corner of the main ge window
-
How to buy/sell items on the Grand Exchange
Men :tears: You gravedigging 1 year old before I even became a scripter Memories :tears: :tears: :tears:
-
How to get "Virgin" Proxy's
99% of all proxies on the market have been sold in the last years to runescape goldfarmers so all of them are recycled. You can see how many times a proxy has run into jagex by trying to create an account, the more difficult the captcha is to complete, the more used is the proxy. On my private home addresses in a country where no one plays runescape and the IP has never been sold on the internet I don't even have to go through the captcha because jagex has never encountered my IPs. If you are asked to complete a captcha then you know the proxy has been resold at least once to another runescape goldfarmer.
-
Pop the champagne
Midnight for me You got 2 more hours to wait
-
Pop the champagne
- Woodcutting vs fishing
My answer is don't goldfarm manually because they will ban you for botting- Woodcutting vs fishing
I wouldn't risk doing them manually, they ban anyone who owns an axe or pickaxe- Zulrah Scripts
- Zulrah Scripts
Awww I would never leave, you would have to ban me- Zulrah Scripts
There was 1 more person who wanted to write a zulrah script tho Unfortunately his request was denied- java.security.AccessControlException: access denied ("java.awt.AWTPermission" "createRobot")
Mouse data is not sent to jagex, it's legacy code. Can't you just generate mouse movements using the associated ClientMouseEventHandler instance?- java.security.AccessControlException: access denied ("java.awt.AWTPermission" "createRobot")
You can't - Woodcutting vs fishing