-
Posts
1664 -
Joined
-
Last visited
-
Days Won
4 -
Feedback
100%
Everything posted by Bobrocket
-
They say if you do an emote before you bot there's less of a chance of you getting banned
-
betrayal at falador
-
Yeah, it's going to be a long journey but it's primarily something that I can put on my portfolio to show my AI knowledge (+ I get to use it as a free chatbot for my scripts if all goes well) At the end, I want to be able to try and predict the tone for a specific message, and then get the robot to build a sentence from scratch using its knowledge. Either way, it works and (some) people are taking this seriously :p
-
It's the start of a neural network. When I get a decent database of conversations, I can begin working out equations and getting a solid framework down
-
Alright, so I'm trying to make a basic chatbot. Link: http://bobrocket.co/omniscript/chatbot/portal.php You can teach the robot a conversation, or attempt to talk to it. Rules: No punctuation, the robot does not recognise this Try to use lowercase only (the robot is smart enough to convert to lowercase, but just a precaution) Please don't put stupid shit into this. I am going to use this for my scripts, so I would like to not have to go through 10,000 "jokes". Your submissions will not be visible immediately, I have to approve them and modify (add synonyms and markup for the robot to understand better) first. Thanks, and enjoy! Please report any stupid stuff to me ASAP
-
It is very possible for people to be ddosed for days, weeks, months etc. What is improbable (note, not impossible), however, is a random trader being ddosed for days on end. Also, police really can't do much to a ddoser unless they actually make a company lose money (eg ddosing amazon would lose them millions of dollars every minute). Just thought I'd put my 2 cents here
-
Well you have to update java to your latest version and then
-
Check if you have something in your inventory
Bobrocket replied to hajar424's topic in Scripting Help
if (!getInventory().contains("Iron battleaxe")) { //no battleaxe } if (getInventory().contains(999, 1337, 289)) { //Has all of those IDs } -
20m the worst you can do?
-
Legally: go with benq. High quality and cheap af. Illegally: buy them from amazon, claim when you got them the box was empty OR (pro version) you plugged the monitor in and it smelt of bubblegum and expanded rapidly (common problem with li. ion batteries, most amazon support will sympathise and refund; I do not recommend this as it is illegal and fraud etc etc)
-
I really would invest in 2 or more monitors. I have 2x 24" monitors and they're lifted above my desks with my monitor stand, and it's worth every penny. Takes up no space and works wonders.
-
I believe RS3 has less of a chance of getting banned. In OSRS, just about any members skill will make you good money. Fletching, thieving, herblore etc. can all net you 100-200k/hr easily. In RS3, I think divination is the skill you should work on. And OSBot is best bot
-
[Started] Application For Leveling Services
Bobrocket replied to Prozen's topic in Software Development
Bit old, but those guys will cost you thousands. It's worth it if you need a bulletproof application, but you're honestly better off learning programming in the long run if you want to save money. Also, OP. I did something familiar to this, except I used PHP. If you need any help with the logic, feel free to message me Good luck! -
Anyone know how many clients I can run with these specs?
Bobrocket replied to Impensus's topic in Botting & Bans
Anywhere from 4-6. How much does one RS client cost you in CPU %? Add that + your CPU from OSBot (will come under as Java.exe), and do (90 / (that value)) - that is how many clients you can run without any problems whatsoever. -
[WIP] iWarrior [Food support] [Looting support]
Bobrocket replied to iJodix's topic in Combat & Prayer
Looks good! Good luck with the script -
That's pretty cool, but for physical coupons you can do things like Suite #1, Suite #2 etc to reuse your address.
-
A fire giants script couldn't hurt, pretty good exp and overall low reqs to get there (obviously they hit hard at lower levels)
-
Yeah, pretty sure the rules were just updated to allow it This may sound a little biased considering I have released a script that does this, but master farmers can make a lot of money. There's a maybe 1/64 chance to get a ranarr seed (20k; estimated chance), and at 38 thieving fresh you can do maybe 250 interactions per hour. That's 80k/hr (roughly ofc) per account at 38 thieving. Remember that is just with ranarrs, if you include other rarer seeds it would total to maybe 120k/hr at 38 thieving, and then when you get higher thieving you could maybe get up to 300k. Making certain herb potions (unf) can also net you some sweet profit, as can fletching. Pretty sure you also profit from turning gold bars to gold bracelets (which is only like 9 crafting), depends on supply primarily. Combat scripts are also great for money. Bot to 40/40/40 and then go straight to flesh crawlers. At 60/60/60 you can go to ankous for more money. Buying from stores can also net you sweet profit. The RFD chest springs to mind, but you can also do with bstaffs, wizard hats, and maybe other stuff. Cannonballs can also get you some money. Good luck!
-
To add to this, people get IP addresses by resolving your Skype to an IP address. The simple solution to solve this is to tick the box in your advanced -> connection settings that says "Allow direct connections to your contacts only." like so: I also personally run Skype through a random proxy from HMA, so that when someone knocks my Skype off they don't actually knock my home connection off (+ they don't get my real IP) Good luck getting this resolved OP
-
Yes, of course this is possible. You would need to use a heuristic to accurately calculate the distance between A and B (just doing (diffx + diffy) is extremely unreliable since a mouse can move 8 different ways), take the Octile Heuristic: distance = horizontalCost * (horizontal + vertical) + (diagonalCost - 2 * horizontalCost) * min(horizontal, vertical) Where: horizontalCost is the "cost" to move one tile left, right, up or down (in this example, it would be 10 as per the octile heuristic) diagonalCost is the "cost" to move a diagonal (in this example, would be 14 as per the octile heuristic) horizontal is the absolute value of (xstart - xend) vertical is the absolute value of (ystart - yend) Now, of course, this isn't completely accurate. The octile heuristic is a derivative of another heuristic which is the same, except it uses 1 for the horizontalCost and sqrt(2) for the diagonalCost. In an application like this, it may be wiser to use 1 & sqrt(2). People also have faster or slower mouse speeds, this is just an estimate. If we followed the estimates perfectly, would it help us seem less bot-like? Furthermore, this is more of an equation used for designers to see if their positioning is accurate or not - whether or not it is in an optimal position (T needs to be as little as possible)
-
I like the idea of it, but I do not like the square. I want them all to be somewhat circular :p
-
Maybe instead of just writing your opinion you could release your "fixed" version? Would be interested to see it
-
getExperienceTracker().startAll() getExperienceTracker().get(....) (Written on my phone; double check syntax before using)