Everything posted by dokato
-
implementing GUI in main class
nope still doesnt work, i also tried some additional thing as well but nothing works
-
implementing GUI in main class
still doesnt work
-
implementing GUI in main class
Ok so i've made this unfinished gui using window builder and now I want it to just pop up when i start my script, nothing more. I've tried to make an object of it in my main script class and also experimented and tried a bunch of diffrent things but nothing works (the script wont even start up). my gui class: http://pastebin.com/38v3WGrE
-
interacting or not?
How can u determine if the player is interacting with a specific object? And i mean something else than isAnimating(). Is there another method for that? cuz i tried to search in api but found nothing.
-
house glory
What is the best code to use if i'd like to interact with my amulet of glory in my house? Because if i try this: objects.closest("Amulet of Glory").interact("Karamja"); it will fail to click on it and it takes like a minute or more till it finaly clicks right.
-
onMessage()
works fine for me THX alot bro
-
onMessage()
If i'd like to capture when i recieve for example willog logs, is this the correct code to use? public void onMessage(String message) throws InterruptedException{ if(message.contains("logs")){ amountOfLogs++; } } i saw it this way in some other guides but it doesnt work
-
Error launching OSBot!
i didnt have this before and i didnt do anything accept for restarting pc, and when i try to open the client i get this message: There was an error launching OSBot! Please verify that your boot options are valid! i tried to chek firewall, antivirus,... also removed osbot file and redownloaded but still error.
- house?
-
house?
How can i let the bot do something in my house (from construction). if(/*I'm in the house (what code?)*/){ ... } what should i write there? because i noticed the Area coördinates change or are my eyes malfunctioning?
-
mouse speed
I noticed the mouse moves around the screen randomly when u let it do something, it doesnt go straight the fastest way or am i wrong? If not, is the mouse speed random as well?
-
mouse speed
I'd like to know whats the default mouse speed (if there is any) or a mouse speed that is considerd "human". like: setSpeed(/*what number?*/); Or any tips to make it move more human?
- prayer
- prayer
-
interaction with object using position
thx alot
-
interaction with object using position
could u guys pls give an example on how to use the PositionFilter?
-
interaction with object using position
for example, there are multiple objects with the same id in a certain location. But I only want to interact with the object that has a specific position x,y,z. What code could i use for this? Because it will automatically interact with all he objects... something i dont want