Everything posted by liverare
-
Mod Detector
A detector of some kind would be better than nothing, but you're only going to force Jagex's hand and have them spy on bots via sock-puppet accounts. Although that assumes your detected is something Jagex cannot simply overcome in the first place. Remember: RuneScape is Jagex's game. The data the client downloads is whatever Jagex allow; I imagine Jagex could easily just hide their presence server-side, aka. be 100% invisible.
-
Live's Betting Post
I can't, or rather I don't know how. I'll see if the devs know of any way.
-
Live's Betting Post
If you're using the custom keyboard, this is one of the problems associated with it. I do say before you enable it that you are required to focus solely on the bot's window, otherwise text will be entered on whichever window is focused (even Notepad lol).
- Live's Betting Post
-
Bolter and Darter
RuneScape updated. Don't worry, though! I've fixed it.
-
Gambling Script with timestamp needed. <3
I can do this as I have already developed a gambling script. I'll do this for 50m, 25m up front.
-
Tanner & Crafter
No. I am restricting trials to accounts that are one-week-old and have at least 100 posts. Please ask again when you get that.
- [ignore]
-
Live's Betting Post
Unfortunately this is not a supported feature. I may include this in a future build as I have been interested in giving players the ability to call out commands, such as the !giveaway one which I've seen work nicely.
-
Just watched Human Centipede 3
It sucks. Absolutely shit-tier. HC2 is far better.
-
Live's Betting Post
There's a checkbox on the GUI that says "Enable custom keyboard (Recommended)" -- as shown in the main post of this thread. Select it, read the requirements displayed in a popup window, submit the changes and then meet those requirements.
-
Hide paint?
Do you hate us or something? Has OSBot wronged you in any way?
-
Live's Betting Post
Enable fast keyboard typing and hit submit.
-
Live's Betting Post
It's already available.
-
Live's Betting Post
I think I have found the problem and should be resolved for the next build.
-
Live's Betting Post
Custom keyboard = robot types as though it were you typing. You need to have the bot running on a separate computer if you wish to have the custom keyboard enabled.
-
B-But!
Sadly the project was nearly finished. There was a minor inconsistency with the herb patches and the framework only needed to be tweaked slightly to allow the variable 'special' plants. Meh. It would have been a cool project to have had released if I weren't so damn lazy.
- B-But!
- B-But!
- B-But!
-
B-But!
- Basic streams, and how to use them
There can be as many arguments as you like, however the expressions can easily become cluttered and messy, so if you've got a lot of parameters, consider boxing them inside of an new object and passing that object as a single parameter. When you have multiple arguments, you have to wrap them in brackets and give each parameter a name, e.g.; #forEach((param1, param2, param3, param4, param5, param6, param7) -> doSomething(param5)); This is why Comparator works and why I've used it as so in my earlier post. Any interface can be used just so long as that interface is a functional interface, aka. an interface that only has one method. For instance, in Lambda, you cannot use MouseListener (or the other mouse/key listener variants), because they have two or more required methods implementations. If you wanted to implement interfaces via Lambda expressions for one MouseListener function (e.g., #mouseClicked(MouseEvent)), then you could do a work around such as this: import java.awt.event.MouseEvent; import java.awt.event.MouseListener; import java.util.ArrayList; import java.util.List; public class MouseClicked implements MouseListener { // Create a list to store our new functional interface type (below) private final List<Listener> listenerList; public MouseClicked() { this.listenerList = new ArrayList<>(); } @Override public void mouseClicked(MouseEvent e) { // Check if list is empty if (!listenerList.isEmpty()) { // Iterate through the list and pass the MouseEvent to the functional interfaces listenerList.forEach(listener -> listener.mouseClicked(e)); } } // Delegate methods: public void addListener(Listener listener) { listenerList.add(listener); } public void removeListener(Listener listener) { listenerList.remove(listener); } // New functional interface: public static interface Listener { void mouseClicked(MouseEvent e); } /* * To hold true to the interface "contract", we will have to implement the * other methods that come packaged with MouseListener. However since we * don't need to use them/interact with them, we can leave their code bodies * empty. * * Irrelevant methods implements: */ @Override public void mousePressed(MouseEvent e) { // Ignored. } @Override public void mouseReleased(MouseEvent e) { // Ignored. } @Override public void mouseEntered(MouseEvent e) { // Ignored. } @Override public void mouseExited(MouseEvent e) { // Ignored. } } Then in your script: public void doSomething() { // Create new object, which also functions as valid MouseListener MouseClicked mc = new MouseClicked(); // Add MouseClicked listeners as Lambda expressions mc.addListener((e) -> System.out.println(e)); // Register the entire listener getBot().addMouseListener(mc); }- Basic streams, and how to use them
Two minor improvements: Create a separate function to handle the logic of the filtering. It makes the Lambda expression more readable. Include comparator as a Lambda expression also. For example: /** * * @param npc * NPC object instance * @param name * Name to check against (case insensitive) * @return <tt>NPC is defined</tt> */ private boolean isDefined(NPC npc, String name) { return npc != null && npc.exists() && npc.getName().equalsIgnoreCase(name); } /** * * @param name * Name to check against (case insensitive) * @return NPC object instances */ public NPC getClosestNPC(String name) { return getNpcs().getAll().stream() .filter(npc -> isDefined(npc, name)) .min((npc1, npc2) -> Integer.compare(getMap().distance(npc1), getMap().distance(npc2))) .orElse(null); } Oh and everything after #stream(), I break-line each of the running expressions, to make them more readable also.- Live's Betting Post
The 'pro' mode is still under development, so only use the 'basic' mode for now. On bot account, join a CC, make sure the CC tab is open and run the script. On your host account, join the same CC and...host. When hosts need to play a game, they call out commands in the CC (e.g., !dd) to get random output from the bot. ??? Profit.- ADS ON YOUTUBE?
Can you link me to an example of forced YouTube ads? I've browsed a few popular goyim ones and my Google Chrome Adblocker seems to be working just fine. - Basic streams, and how to use them