-
Posts
8431 -
Joined
-
Last visited
-
Days Won
49 -
Feedback
100%
Everything posted by Token
-
You can bot for months without bans. Botting a max account takes 20 days. Getting 1 ban every 6 months doesnt mean all you 1000 bots get banned at once. There are quite a few people who aren't willing to give botting a try though. I guess it's just like religion
-
You can bot 130k xp/hr so that is completely afk. Not a single ban if you do it properly. The difference is, I can easily manage 100 accounts while you won't do it manually on more than 5 and still takes less effort. In the long run it's still more profitable.
-
May I ask why you don't bot the accounts? Actually learning how to bot without getting banned is much faster than training accounts by hand, provided you have an average IQ so you can understand how your botting yields bans.
-
Are you seriously doing all this legit? And yes you can just use your games necklace to teleport to corp and go kill it...
-
There is no summers end in osrs Leveling accounts fast is all about your leveling technique. If your first goal is 40/1/40 and you do this at monks, I seriously doubt you will ever get those 12 accounts done.
-
Pastebin your code in the scripting section. More than 20 scripters will be able to help you. That's much faster than asking someone to teamview you.
-
Lolasaurus-Rex :sarcasm: Great account and you show off its cooking level. PS: I bid 29,999,999 gold coins.
-
There is no way to change a static IP but you can always use proxies for whatever you are doing. You can even forward all your internet traffic through a proxy. PS: new signature.
-
I highly doubt flaming me for trying to help him solve his problem is going to get you anywhere. But if you do insist on trying to prove I'm wrong, you aren't going to get anywhere because simply by saying that my condition is wrong and the widget state can change between those 2 calls prove you don't know anything about scripting, the OSBot API or programming in general. Some reputable scripters on this site have public APIs they implemented in their scripts which you might want to take a look at before accusing my code of being "shit", you definately have a lot to learn from that and you might be surprised to find solutions very similar to the one I presented above. TL;DR: Find something constructive to do with your time.
-
Filtering streams is actually very fast. You may cache the widget if you want but then you will continously null check it and verify its visibility which you pretty much do with the above code. As a general rule when writing code, you first make it work and in future iterations you begin optimising it.
-
Any site that is not related to botting and is not advertised on a botting site. You will only get flagged proxies otherwise as no one is dumb enough to stop selling a proxy after someone else used it for 1 month and no longer rents it (got enough bans on it maybe ). Also they are usually bad proxies if you buy from botters I know that from my own experience of using them for other activities.
-
Just like you said. It increases by 1. cc++ is equivalent with cc = cc + 1.
-
Just like your teacher tells you to write in Swedish so she can understand, the rest of the world will ask you to write in English so that they can understand.
-
Put 2nd line on first line and press enter after you have generated the indexing. If that doesn't work then pressing tab at the start of the line might help.
-
A variable followed by ++ denotes an incrementation in most languages including Java. The opposite of incrementation is decrementation (--). As a side note, if you ever plan to write code, do it in english. In 7 years I've never written code in my native language and I'm not going to.
-
if (widgets.getAll().stream().filter(w -> w.isVisible() && w.hasAction("Cook All")).count > 0) widgets.getAll().stream().filter(w -> w.isVisible() && w.hasAction("Cook All")).findFirst().get().interact("Cook All"); The above code will select the option "Cook All" on any widget if the widget is visible. Make sure the action is spelled correctly with uppercase C and A as I don't know if it's supposed to be uppercase or lowercase A.
-
Ban incoming. Jagex does delayed bans so don't be surprised if you will get hit by the banhammer soon. But anyway, Czar's scripts are ok if you are a casual botter, probably some of the best public scripts available, but they are nothing compared to most private scripts.
-
All you have to do is walking.webWalk(new Position(3069, 3069, 0)); You can specify whatever position you want. The bot will attempt to walk to that position.
-
where did you buy that proxy
-
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
Token replied to
Zappster's topic in Spam/Off Topic5/7 would read again -
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.
-
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.
-
Proper list code Properly using it