-
Colorful Log [Question]
Damn thank you thats a lot❤️
-
Colorful Log [Question]
Hello is colorful log possible in osbot? If it is can you tell me how?
-
Widget is always visible if its not null
I have made this and its working properly thank you 🙂 if (ernestTheChickenQuest != null && ernestTheChickenQuest.isVisible() && ernestTheChickenQuest.getAbsY() > 254 && ernestTheChickenQuest.getAbsY() < 415) { log("koyashScript"); }
-
Widget is always visible if its not null
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?
-
WebWalkEvent stuck
Thanks to y'all ill try it
-
WebWalkEvent stuck
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); }
-
WebWalkEvent stuck
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_
-
Yusi changed their profile photo
-
Counting while webwalk
Thank you ill try it out
-
Counting while webwalk
random events especially for walking like customized camera movements or missclicks
-
Counting while webwalk
For random events while walking
-
Counting while webwalk
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; }