

IDontEB
$100.00 Donor-
Posts
739 -
Joined
-
Last visited
-
Days Won
1 -
Feedback
100%
Everything posted by IDontEB
-
There's one of two ways to solve this: Either you get creative and look for something else to sleep for or create a method which sleeps until player hasnt animated for 10 seconds. Im pretty sure the first one would be easier for you. ex: check for items in inv or something
-
As the above user explained it is possible but a waste of time. The money youd have to spend to get someone knowledgeable enough to go through all the sites and make it so it works for those survey sites wouldn't be cheap. Also itd be prone to breaking if theres ever a new site added to the survey list.
-
SCRIPTERS ASSEMBLE (and anyone else.) SUPERSCRIPT FACTORY
IDontEB replied to melomel's topic in Spam/Off Topic
To reiterate my point in the simplest way possible: you WILL have to spend time learning how to use this script if you want to make anything useful. If you spent the same amount of time learning how to make an actual OSBot script/Java it would benefit you much further and you may even get a better script. There is no way around it, you will have to spend time learning something. If the point is not clear enough than I cannot say anymore. -
SCRIPTERS ASSEMBLE (and anyone else.) SUPERSCRIPT FACTORY
IDontEB replied to melomel's topic in Spam/Off Topic
How you gonna use the script than if you're unwilling to take time out of your day to learn something for the sole purpose of botting runescape? -
SCRIPTERS ASSEMBLE (and anyone else.) SUPERSCRIPT FACTORY
IDontEB replied to melomel's topic in Spam/Off Topic
You dont need to know much java, all you need is basic comprehension of the language which even this script would require since it would be a pseudo language in a sense. If someone took the time to learn this script's "language" which would be required to make anything than why not spend the same amount of time learning Java. All you'd need from java is: Data types: Boolean, Int, String, etc that = sets values and == compares two things the basic loops Besides those things the rest would be all logic which the person would need for both the script and Java. -
SCRIPTERS ASSEMBLE (and anyone else.) SUPERSCRIPT FACTORY
IDontEB replied to melomel's topic in Spam/Off Topic
This already exists, its located here: https://osbot.org/api/ -
SCRIPTERS ASSEMBLE (and anyone else.) SUPERSCRIPT FACTORY
IDontEB replied to melomel's topic in Spam/Off Topic
From what you described itd be a lot easier to just learn basic parts of Java and write the actual script using the API. You'd get greater control of actions than provided by that script -
Paint is on a separate thread yes, but for simple code like multiplying and dividing to get two numbers youd be hard pressed to hit CPU limitations before ram limitations of the bot itself. Also a clean install of an OS still has 500ish give or take threads even with nothing open. By opening and closing OSbot and looking at threads in task Manager OSbot has around 40-50 threads itself.
-
runtime would be near negligible but calculating GP/h depends on whether your getting prices from GE constantly and what other calculation your doing. if its a simple calculation also near negligible
-
Doing (Filter<Player>) makes it so you cast to that data type but what you are looking for is something like script.getPlayers().closest(n -> !n.getName().equals(script.myPlayer().getName()) && n != null);
-
I was thinking more along the lines of the system wont even boot without the new CPU on an old motherboard. From what I read that supporting the 6 core configuration will require a different socket which means all other CPU's that arent made for that socket will not work at all
-
Im currently in Canada and a used Gtx 1060 goes for more than a new one since theres no new ones in stock. I'm starting to see 1070s slowly come into more readily available supply but below that not really. AMD I wont even mention because those are never in stock.
-
They will have more cores but also require a new generation motherboard since the current generation will not support it. Personally for the things you listed above I would suggest a ryzen r5 1600-1600x since its 6 core/ 12 thread for less than what intel would charge for a 4 core/ 4 thread CPU. It would play OS fine and be better at streaming than would a similarly priced one. As for the GPU its really up to you since OS doesnt use GPU at all. The hard part of getting a GPU right now is almost everything that isnt a high end part like 1080s are practically sold out due to mining.
-
Hur dur XD tho
-
For number 3) there is some slight variance of a couple minutes in playtime and break time between each cycle but in general it just repeats play 1h break 10min play 1h break 10min.
-
Ahh forgot the purpose so yeah it doesnt make sense!
-
Asking for 15-20 a day is asking for 450-600 a month that someone else could be making if they didnt say anything
-
If it doesnt work its likely that the conditional sleep caches the value of the boolean and doesnt check if it's changed so make it a volatile Boolean and that should work, I think!
-
listen to chatbox for a message and turn a variable true when that message is received and then have your conditional sleep until that boolean is true
-
Anyone with pile of coins as their display pic is gonna take your GP
-
Some people go through over 1k a day depending what their doing
-
Code wise use stop(); you can have stop( boolean ) if you want it too log out or not
-
Press the red circle in top left by the place you started the bot with the green triangle.
-
My university offers almost all their educational resources online for free. You can find the required courses at http://www.calendar.ubc.ca/Vancouver/index.cfm?tree=12,215,410,421 The computer science stuff will be listed as CPSC. To find the related course material you would google search "UBC CPSCS (course number here)" for example UBC CPSC 210 which is Software construction in Java will turn up results for course registration but if you scroll down abit you can find the online recorded lectures https://www.youtube.com/channel/UCuBUhZjInWsEUm-sON5HNMQ for other classes like CPSC 110 you get an edX course online which you can look through for free https://edge.edx.org/courses/course-v1:UBC+CPSC110+2017S/info . This is heavily theory oriented and less "heres how to code" but I believe most universities teaching computer science rather than computer programming are doing this.