-
Posts
32 -
Joined
-
Last visited
-
Feedback
100%
Posts posted by EsotericRS
-
-
I found this thread while doing some research because I was interested as well. You could hover over various widgets to your hearts content but I would imagine just the most basic random mouse movement / interaction would cut it and also be the most effective as well
-
2 minutes ago, Juggles said:
Rip me a new one fam. I meant Boolean LOL.
Thats why you don't type in a harry
LOL they are giving you a hard time, I understood exactly what you meant and it was what I was going for
QuoteStore all your quests in an enum and just check the config is > 0 to check if it's started.
This is great advice. Thank you.
Thanks everyone
-
15 hours ago, Juggles said:
A lot of the Quest API doesn't work and it would take a long time to fix it as there's so many quests.
Much easier for Scripters just to use configs to code their own quests when needed. Quests aren't a very popular thing with botsThanks for this -- I did go ahead and try to move and grab the config when Goblin Diplomacy is picked up.
I captured 62:3 the moment the quest was accepted... Is there anything else to it?
-
For the life of me this code doesn't do what I think it does
Believe it or not the code inside this if statement executes when the quest is STARTED
In other words NOT is quest started is evaluating to TRUE when the quest IS started
Does anyone have any best practices or any resources on code snippets to getting quest state / progress?
I've been going in raw just from the API and pulling my hair out.
-
36 minutes ago, Mencista said:
Ive just recieved 1 day ban aswell, from apa agility probs haha it got stuck in seers bank upstairs
I took a ban recently from a stuck, could you tell me the delay between the time you got stuck and the ban? For me i was stuck for like 10 minutes then permad.
-
1 hour ago, whitesins said:
hi when i try to buy a script it says invalid shipping address.... tried alot of addresses in other countries.
please help me fix this
Just a hunch, maybe try using the address associated with your card?
-
22 minutes ago, Imthabawse said:
Perhaps split the script into 2 methods
Private void chop () {
// chop code here
Private void bank () {
// bank code here
Definitely feel this here. The readability of this code should jump out at you.
1 hour ago, 12we12qw12 said:I'm making a woodcutting script but I have ran into an issue, when I get a full inventory of logs my character will walk to the back but will not deposit the logs but instead run back to the trees and try to cut them down. This making my character run back and forth. Script is below, I don't know what to add to fix this. If you guys have any other recommendations to add to the script or tips let me know, Thanks.
int wcLvl = getSkills().getStatic(Skill.WOODCUTTING); if (getInventory().isEmptyExcept("Bronze axe", "Iron axe", "Steel Axe", "Black axe", "Mithril axe", "Adamant axe", "Rune axe", "Dragon axe")) ; } ....... if (Banks.VARROCK_WEST.contains(myPosition()) && bankbooth != null && !getBank().isOpen()) { getBank().withdraw("Steel axe",1); }
I would look into flow control for help with this...
-
Just discovered this and I have to say this is a life-saver. Should be a default feature to the app tbh. Great job!
-
23 minutes ago, Micah2kool4u said:
I went to java.com and updated the latest version and it is still saying that it is invalid. Not sure what I am doing wrong.
Just uninstall all version of Java (verify via the Java directory that they have been removed) and install just java 8 if all things fail.
GL
-
14 hours ago, hxhvxhgfhg said:
how do u use the code?????
You download the JAR file he linked and place it in the \OSBot\Scripts directory
Then when you launch OSBot, and hit the green play arrow - It will appear as a [Local] script.
-
1 hour ago, legacyZZ said:
Just that?
Here's some pseudo-ish code:
get a list of all the worlds i.e. getWorlds.getAvailableWorlds()
Iterate through this list and pick out the ones that are paid worlds using .isMembersWorld() and put them in your own list of worlds maybe call it membersWorldsList
find the index of the current world within that membersWorldsList you just created
hop to membersWorldsList[index+1] until the end then wrap around... maybe consider a linked list or something
Havn't tested or tried this specific problem yet - but thats how Id go about solving it
-
Grasping at straws now - Add the JAR path to allowed apps through Windows Defender Firewall and/or any other anti-virus software. Afterwards, run it as administrator. If that does not work uninstall osrs and remove all osbot components and do a fresh install.
If that doesn't work, you'll have to wait for someone who really understands your localized problem, sorry.
-
-
On 4/9/2019 at 3:52 PM, far2hybrid said:
for the last month or so I've been playing legit because I've been getting an initialization error. anyone else experiencing this? I dont run on a proxy or anything, i just open it up put info in and run but as of a month ago I've been getting this error.
Just to start things off, do you mind screen-shotting your proxy tab?
For example here is what mine looks like:
This may seem like a fairly idiot question from me, but its necessary to start from the simplest possible explanation (user-error) before moving onto more complicated ones.
-
On 5/4/2019 at 12:24 PM, 99erythang said:
1600 total level 90% botted
Was it botted from the beginning, or a hand-started account? Member or Free?
Also RIP
-
On 5/3/2019 at 6:06 PM, Zummy said:
Hey guys is it possible to stop a camera moveToEntity() event when the object is clickable instead of stopping when the object is completely visible or have other break conditions?
moveToEntity() stops when it wants to stop which is
Though I imagine if you wanted to break your neck - you could override this method; however, I'm having a hard time comprehending the difference between clickability() and visibility 'within the gamescreen'
To exactly answer your question, I am not seeing anything in the API doc that accomplishes precisely what your looking for, so you will most likely need to implement your own solution.
-
-
3 hours ago, dbowkillsu said:
how much did that cost u, and did u continue getting locks?
I spent 5 bucks (51 accounts with tutorial finished). The locks are actually from MY vpn I am using - which is Nord VPN.
The accounts I bought from him lock after 10 minutes of botting 100% of the time using my VPN (my issue not theirs). I keep a ledger of my bots and pretty easily paste them into the website for unlock.
First batch of unlocks I requested took 2 minutes, the next batch took 30.
I had an issue with the wait time so I pinged them in their discord to resolve the issue.
Pretty good service all around tbh even though I expected unlocks to be faster.
-
I had issue with this same thing. You would think it would be under myPlayer()
-
OSBot default API is probably better than anything you could come up with TBH.
Using getCamera().toEntity() has been looking very nice for me. Additionally .interact() is actually pretty natural and smooth by default if you watch the mouse trails in the debugger.
Honestly you could add some 'Anti-ban' if you are superstitious such as have the mouse leave the screen after actions using ,moveOutsideScreen(). Just check out the mouse api generally.
If you are superstitious, like I am
, I would be pouring your time into anti-pattern recognition rather than implementing any anti-ban features.
-
At least 5-6 more years. After that I see it going Diablo II status and becoming a much more underground community rather than popular as it is now.
-
59 minutes ago, Imthabawse said:
Noticing when you start a script that uses webWalker it goes into quests tab sits there for a bit then back to inventory really fast then starts the webWalk. Anyone know why this happens or have had it happen to you?
Yup I've noticed the same.
51 minutes ago, Lewis said:probs checking if certains quests complete for webwalker short cuts
Prolly, atleast I hope so
-
30 minutes ago, Imthabawse said:
Look into configs. Every time you change an attack style your config #'s will change. You can do this by going into the OSbot clients Settings<Options<Debug<Configs. Personally haven't used configs yet but i'd imagine you can do something along the lines of this (Don't copy & paste these config #s are made up)
if(getConfigs == 123 && getSkills.getStatic(Skill.ATTACK) == 10) {
change attack style code here, maybe use widgets for this may be easier way..
}
Thanks a lot for this. Got me down the right path. If anyone else is interested there is a detailed explanation into this in this guide under 'Configs'.
-
1
-
-
I was wondering if anyone knows if combat stances are implemented anywhere in the API?
I'm looking to create a combat script that levels attack/strength/defence evenly up to 30.
For example, levels 1-10 attack then switches to strength 1-10 etc.
Was just curious if there was a better way to do this other than through widgets...
Here is the code I made to solve the issue...
Question on autoclickers
in Botting & Bans
Posted
Wanted to ask a quick question on anyone with experience with autoclickers/basic mouse macros
Does it matter which one?
I have the razer naga which supports pretty advanced macro / autoclicking functionality.
I dont plan on unattended autoclicking with these macros -- will mostly just use it for alching while doing agility course i.e. snap mouse to high alch and double click.
Is this low risk as I'm actually playing and just relying on it for that one functionality / is there anything I should watch out for or be aware of beyond the obvious?
Thanks in advance