-
[Q] Mirror Mode Ubuntu / Linux support?
I do not recommend doing it. kindoff defeats the purpose of using ubuntu, which is low usage. Mirror = high resource usage You're better off using stealth
-
Full and Updated CLI Commands Table
Wow since when is mirror available? 😮
- [Stable] OSBot 2.6.55
- proxy's
-
Widget Tool has a Bugg?
I think you are confusing widgets with an Entity/Object. What are you trying to do exactly?
-
Won't move one tile to the left/right
Is there a way to just check if there is a fire on the tile where i am standing? Seems stupid to just try and and see if it works every time
-
Client has item Null selected
My firemaking scripts sporadically walks into the problem where it's having null selected somehow. i tried resolving this with the following, but this doesn't seem to resolve the issue. Does anyone know how to prevent this? if (logAmount >= 1) { api.inventory.interact("Use", Main.Logs); if (!api.getInventory().isItemSelected()) { api.getInventory().deselectItem(); } api.inventory.interact("Use", "Tinderbox"); } Would this prevent it maybe? api.inventory.interact("Use", Main.Logs); if (api.getInventory().getSelectedItemName() == null) { api.getInventory().deselectItem(); } api.inventory.interact("Use", "Tinderbox");
- [GUIDE] How To Run Multiple Mirror Mode Clients With Seperate Proxies (Bypass Unable to Create Advertising Error)
- [Stable] OSBot 2.6.54
-
Osbot down?
It's down for everyone, we're waiting for an update of OSBot. Would be nice if they acknowledged the problem somewhere here.
-
"Could not load stream library"
What is 'the special way' ? xD
- [GUIDE] How To Run Multiple Mirror Mode Clients With Seperate Proxies (Bypass Unable to Create Advertising Error)
-
"Could not load stream library"
Im having same problem on my Ubuntu 20.04 servers
-
Launching OSBot in Java Docker container
So i've been trying to setup a Java docker container for my bots, following this thread: My Dockerfile FROM openjdk:8 ENV DISPLAY :0.0 RUN apt-get update RUN apt-get install libx11-dev libxext-dev libxrender-dev libxrandr-dev libxtst-dev libxt-dev xvfb -y RUN mkdir -p /root/OSBot/Data RUN mkdir -p /root/OSBot/Scripts RUN wget https://osbot.org/mvc/get -O /root/OSBot/osbot.jar COPY map.bin /root/OSBot/Data COPY script.jar /root/OSBot/Scripts COPY entrypoint.sh / ENTRYPOINT ["/entrypoint.sh"] Im running into the following error:
-
Won't move one tile to the left/right
I can not get this to work so it moves one position to the south, it does log all the loggers, but does not move. I have tried putting a conditional sleep after the walk but doesn't work The idea is that when player is standing on a fire in the 'firemakingStartingArea' and tries to light a log, the message pops up, and it moves one tile to the south.