Jump to content

Yusi

Members
  • Posts

    12
  • Joined

  • Last visited

  • Feedback

    0%

Profile Information

  • Gender
    Male

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Yusi's Achievements

Newbie

Newbie (1/10)

1

Reputation

  1. Damn thank you thats a lot
  2. Hello is colorful log possible in osbot? If it is can you tell me how?
  3. I have made this and its working properly thank you if (ernestTheChickenQuest != null && ernestTheChickenQuest.isVisible() && ernestTheChickenQuest.getAbsY() > 254 && ernestTheChickenQuest.getAbsY() < 415) { log("koyashScript"); }
  4. Hello, I want to make the map bigger until the icon that symboling my player on map interface is visible so the point is even if widget is not visible on main screen osbot dedects it as visible. It works more like != null than isVisible() even if i use something like this: randomQuestWidget = Quests.Quest.Doric's_Quest if (randomQuestWidget != null && randomQuestWidget.isVisible()) { randomQuestWidget.hover(); } it hovers the mouse on invisible quest -> https://prnt.sc/ROEan6Kj0oZH how can i check if a widget actually isVisible or not?
  5. Thanks to y'all ill try it
  6. I didn't see any error log while it stucked about the missclick it happening oftenly and it happens the same way everytime also waits until it almost reached at the point it missclicked so it takes a little bit time and i don't think its an script issue im not doing anything that possibly cause that problem btw love your scripts public void webWalkEventArea(Area targetArea) { WebWalkEvent webWalkEventArea = new WebWalkEvent(targetArea); webWalkEventArea.setMinDistanceThreshold(0); webWalkEventArea.setEnergyThreshold(random(11,36)); webWalkEventArea.setBreakCondition(new Condition() { @Override public boolean evaluate() { return myPlayer().isUnderAttack(); } }); execute(webWalkEventArea); }
  7. While im using WebWalkEvent Bot stucks at this point it clicking the main screen but he can't find a way out (It should go to Lumbridge bank upstairs) Also if the bot chooses to go from the right upstairts https://prnt.sc/OdO1HivpoVsv it clicks the dot i pointed at and walks there for a few seconds then clicks the upstairs from here https://prnt.sc/hD5ISms3tZO_
  8. Thank you ill try it out
  9. random events especially for walking like customized camera movements or missclicks
  10. For random events while walking
  11. Hello, i'm tryng to make a counter while webwalk but it never works. I guess no other process is running until the webwalk is finished. Can anyone tell me how can i make a counter while walking? Here's the code example: int count = 0; int counterRandom = random(1,15); @Override public int onLoop() throws InterruptedException { if (myPlayer().isMoving()) { count += 1; sleep(1000); log(count); } if (count == counterRandom) { log("Done"); counterRandom = random(1,15); count = 0; } return 0; }
×
×
  • Create New...