Jump to content

Maxo

Members
  • Posts

    44
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    0%

Maxo last won the day on September 29 2022

Maxo had the most liked content!

Profile Information

  • Gender
    Male
  • Location:
    Netherlands

Recent Profile Visitors

1234 profile views

Maxo's Achievements

Bronze Poster

Bronze Poster (2/10)

5

Reputation

  1. 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
  2. Wow since when is mirror available?
  3. Interested in this too
  4. I think you are confusing widgets with an Entity/Object. What are you trying to do exactly?
  5. 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
  6. 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");
  7. So when the script starts to use webWalking it asks for permission to move or create map.bin, is there a possibility to standard always allow this? Without me needed to approve the action?
  8. It's down for everyone, we're waiting for an update of OSBot. Would be nice if they acknowledged the problem somewhere here.
  9. Im having same problem on my Ubuntu 20.04 servers
  10. 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:
  11. 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.
×
×
  • Create New...