Everything posted by Botre
-
OSRS August ahead VS. OSBuddy
OSBuddy is a great way to measure demand and community approval for those kind of features, as long as OSBuddy keeps ahead and continues adding relevant new features they'll be fine, otherwise they'll just die. We'll see, if OSBuddy were to open their API and allow outsiders to create plugins they'd significantly raise their odds of survival, meh.
-
Automatic Path Mapping Snippet
Position p = myPosition(); Position l = path.peekLast(); if(l == null || p.distance(l) > granularity) { path.add(p); } A position is only added to a non-empty path if the player's current position is a specified distance away from the last added position. There's no need to check for equality (for which you would use the equals(Object o) but whatever) because my condition already excludes that (2 points that have a distance greater than zero between them can't be the same).
-
Automatic Path Mapping Snippet
public class PathCollector extends BasicScript { private LinkedList<Position> path; private int granularity = 4; @Override public void initialize() { path = new LinkedList<>(); } @Override public void loop() { Position p = myPosition(); Position l = path.peekLast(); if(l == null || p.distance(l) > granularity) { path.add(p); } } @Override public void onExit() throws InterruptedException { StringBuilder positions = new StringBuilder(); positions.append("new Position[]{"); for (Position position : path) { String sp = "new Position(" + position.getX() + ", " + position.getY() + ", " + position.getZ() + ") ,"; positions.append(sp); } positions.append("}"); StringSelection s = new StringSelection (positions.toString()); Clipboard c = Toolkit.getDefaultToolkit().getSystemClipboard (); c.setContents(s, null); log("Path copied to clipboard"); log(positions.toString()); } }
-
How Many Ram is needed 25 bots?
4K, not any CPU would be able to handle that though
- Chilling with OSBot users
-
AIO Farming(Premium)
Not many people would. That's why it's a shit market for scripters.
-
Interesting Bans from Jagex
Might be flagged as a goldfarmer :x
- Selling 32M (osrs)
- Selling 32M (osrs)
-
A poem by Epsilon - Monster above the covers.
Art without rules A playground for fools
-
A poem by Epsilon - Monster above the covers.
https://en.wikipedia.org/wiki/Metre_(poetry)
-
RS #86 & Upcoming update
Wew a Maxi post.
-
OSBot Store Link
Combat scripts are underpriced
-
Who is your favorite OSBot member?
Me
-
What is the best way?
UML or just write a basic skeleton by working out the logic in your head an then write out the implementation of it as you go
-
NMZ host bot free
can I have some free money for it ?
- Drake Just Destroyed Meek Mill LOL
-
OSBot with Windows 10
Fix said that "it" (the client + mirror) should be compatible considering the platform independent nature of java. I then pointed out that that the mirror isn't written in java but in c++. This means that the mirror might not work because it's not written in java and therefore doesn't benefit from java's platform independent nature. The fact that the mirror relies on the regular client, which is written in java, is completely irrelevant and doesn't guarantee cross platform compatibility (ask any linux or mac user who wasn't able to use the mirror for months). So, think again.
-
OSBot with Windows 10
I think you missed my point.
-
OSBot with Windows 10
Mirror mode is written in c++ though :x
- rate my new ava
- Sold
- Sold
-
Microsoft Windows 10 Countdown
It's a revised version of windows 8.1. It's going to get the most attention in terms up maintenance and security updates from ms. It's free and compatible with your system.
-
Microsoft Windows 10 Countdown
http://www.itpro.co.uk/desktop-software/23216/windows-10-vs-windows-81-what-s-new