Jump to content

kani339

Members
  • Posts

    6
  • Joined

  • Last visited

  • Feedback

    0%

Profile Information

  • Gender
    Male

kani339's Achievements

Newbie

Newbie (1/10)

0

Reputation

  1. Great script idea, may I be authed?
  2. Seems it doesn't work on Linux Error: Could not find or load main class main.ExplvOSBotManager
  3. Thank you so much for your help! So the only problem was that this element wasn't visible yet.
  4. Hello, i just started to getting into scripting for Osbot and faced a problem with crossing wilderness ditch. I searched forums and found couple of solutions but unfortunately none of them worked for me. So my problem is when script is clicking on cross wilderness there is a pop-up with message "Enter wilderness" script is waiting for several seconds before clicking on it but unfortuantly it just click again on "cross" if i test this separately bu just manually clicking on "Cross wilderness" it is working but not all code together. I would appreciate your help. Thank you! RS2Widget enterWild = getWidgets().getWidgetContainingText("Enter Wilderness"); RS2Object wildDitch = getObjects().closest("Wilderness Ditch"); if (wildDitch != null && !myPlayer().isAnimating()) { wildDitch.interact("Cross"); sleep(10000); if(enterWild != null) { log("Enter Wilderness"); enterWild.interact("Enter Wilderness"); sleep(8000); } }
×
×
  • Create New...