Everything posted by Camaro
-
AIO SafeSpotter
awesome, ill let you know when im ready to add it
-
Webwalk with threaded eat.
Well, that just comes down to the fact that you have multiple threads trying to take control of the mouse at the same time. For this situation, its probably better to just break from the webwalk event to eat.
-
Webwalk with threaded eat.
First one should work fine. I've never used the add/remove children methods, so not too sure about the second one, but looks like it should work.
-
Webwalk with threaded eat.
Execute an async event instead
-
How to Proxy the Right Way on OSBot Native Client!
- Wine Telegrab
Issue should be fixed now- Wine Telegrab
That is extremely weird. Is it every time you stop the script? Ill give it a couple runs later to find out what could be causing it.- Option to disable the client's camera rotation
You can execute custom interaction events that disable camera rotation. You can also check if the entity is visible before interacting, and only interact if it is.- Wine Telegrab
Actually, turns out to be an api issue. May have to wait for the next client version- Wine Telegrab
Pushed a fix for this, should be ready later today or tomorrow. You can make sure this doesnt happen again for now by making sure that every world is completely visible in the world selector and isnt partially cut off by the top or bottom.- AIO SafeSpotter
Strange, are you able to add it back?- MirrorClient v5.0
Just click the "Mirror mode" option when opening osbot- Wine Telegrab
With the wizard mind bombs, I try to keep it as high as I can at all times. As long as it isn't going over the max and wasting it, I don't see a problem with that. I am also doing the same with the lobsters. I have the concept of "can eat" and "need to eat." "Can eat" is triggered whenever your hitpoints are less than your max level - 12. (lobsters only heal 12 btw) These things are efficiency related as it is better to heal/restore magic while waiting for the combat timer to be up rather than doing this when it could have telegrabbed another wine. If you see a larger problem with this, let me know.- Wine Telegrab
Check what the logger says- How to log items left in bank?
You would have to store the value in a variable when opening the bank. There is no way to tell without having it open.- How do I launch OSRS + Mirror Mode in a docker container?
If youre fine with having no gui, you could use windows cotnainers. If you figure out how to run mirror mode on linux, theres a pretty convenient docker extension the uses x11 https://github.com/mviereck/x11docker I think docker's native proxy settings use http proxies, not socks. Although programs such as proxychains can help out proxy only the osrs client on linux- AIO SafeSpotter
You can find it here https://osbot.org/mvc/sdn2/scripts/22- AIO SafeSpotter
Lend an account with a cannon and I'll see what I can do- Full working and robust networking code
Wouldnt it be easier for a 'Packet' to only contain one String which senders and receivers can parse accordingly? That way, the protocal can know even less about the data being sent and theres no need to define multiple 'Packets'- NPE when trying to access MethodProvider instance
You could also fix that by calling MP.exchangeContext(getBot()) in onStart()- Can anyone figure out the problem with this code?
Seems to work fine for me. Print userChoice to the logger at the end of onStart and see if you see the result.- Wine Telegrab
Very strange that both of them would log out. Can you post what is in the logger?- Proxy
Scripts have the ability to change the top bar to whatever they want- How do I create a BotMouseListener??
private final BotMouseListener listener = new BotMouseListener() { @Override public void checkMouseEvent(MouseEvent mouseEvent) { //do stuff } }; @Override public void onStart() { getBot().addMouseListener(listener); } @Override public void onExit() { getBot().removeMouseListener(listener); }- Run Time scripts (show off)
Set artifact build output directory to osbot\scripts folder, set artifact to build on project build, map ctrl+s to be a build project hotkey, boom 1 second rebuilds. But either way, interesting stuff, good job. - Wine Telegrab