Everything posted by Token
- Osbot injection proxy
-
Osbot injection proxy
where did you buy that proxy
-
Need someone to check my work. Getting NPE
Didn't go through all of those but from a quick look I can tell you that there's a problem in your WoodcuttingStyle constructor. It takes 3 arguments, an area name, an area and a main instance. You don't store that main object that is passed anywhere even though you created a main field in your class (which remains null) and you are using that later on in your code, which probably generates NPE's. thats supposed to be public WoodcuttingStyle(String areaName, Area bank, Main main) { this.areaName = areaName; this.bank = bank; this.main = main; }
-
[GUIDE][Free] How to make a small fortune goldfarming
5/7 would read again
-
Get all the objects of in ID inside an area.
There are 2 ways to do this 1. Using OSBot Filter API List<RS2Object> objs = objects.filter(new Filter<RS2Object>() { @Override public boolean match(RS2Object o) { return o.getId() == ID && AREA.contains(o); } }); 2. Using lambda expressions RS2Object[] objs = objects.getAll().stream().filter(o -> o.getId() == ID && AREA.contains(o)).toArray(RS2Object[]::new); First one returns a list, while the second returns an array. That doesn't make much difference if you know how to use them. As for your second question, I'm pretty sure it's the same object, hence we have an exists() method in the API which is used to check if that object still exists.
-
More JForm trouble
You dont need to change anything to the addValues() method. Use it as I wrote it. Put all values in the String[] above that. Ignore core related code because that snippet is just an implementation of JFrame in my scripts and the core stuff is not related to OSBot API. Was meant to show how the listmodel.add and listmodel.remove methods work.
-
More JForm trouble
Proper list code Properly using it
-
More JForm trouble
If you don't use a GUI creation tool you are wasting your life.
-
More JForm trouble
If you use a GUI creation tool make sure you change all list models to DefaultListModel because most of them generate AbstractListModel which cannot be used properly. Also adding items to a JList is done via adding the respective item to its list model.
-
Favorite OSBot member(s)?
Profile
-
Requierments for 2 DAY Ban
There is no strict rule for bans. Both the 2 day and the permanent bans are the result of an account review. The mod reviewing your account will decide whether to give you a 2 day ban or permanent ban. They generally tend to give the 2 day ban when they think you are a legit player and is very likely you will stop botting after the ban. If they believe you are a goldfarmer, they will definately give you a permanent ban.
-
"could not load stream library"
You either downloaded the wrong OSBot (not from this site) or your antivirus is a piece of shit.
-
"could not load stream library"
Reinstall your Java. Make sure you have the latest version for your system architecture. Reinstall the JDK too if you have it.
-
Using new VPN IP everytime I bot?
No, it's advised NOT TO USE VPN as those IP's are shared.
-
Using new VPN IP everytime I bot?
No but it is very likely to get locked for suspicious activity. You don't use VPNs for botting at all.
-
Best scripter 2015
holy shit its very close #trump2016
-
Best scripter 2015
fuck you all i vote for profile
-
How can I create bulk accounts?
You will end up losing more money than making if you go with anything that's free on this market.
-
How can I create bulk accounts?
ever heard of proxies?
-
GrandExchange functions
try if (grandExchange.getStatus(GrandExchange.Box.BOX_1) == GrandExchange.Status.FINISHED_BUY)
-
Proxy - Maxthon
change from "Use proxy server for" to " Bypass proxy server for"
- Count to one million!
- Count to one million!
-
Fastest way to 70/70/1?
Well, you can't do anything on f2p, so make them p2p, do waterfall quest, kill rock crabs til desired lvl.
-
Fastest way to 70/70/1?
I don't get it. Are you trying to play legit?