-
Posts
251 -
Joined
-
Last visited
-
Feedback
100%
Everything posted by Nbacon
-
How much are untrade restricted accounts worth ?
Nbacon replied to RuneMaster's topic in Price Check
500k-1m -
Hello
-
Can't get OSRS client (wine) to connect to Mirror Mode. Help, please
Nbacon replied to 10jbp1042's topic in Bug reports
My recommendation. To get Mirror mode on linux use oracle virtualbox to run "tiny 7" or "tiny xp". Google arround for an iso. The overhead of tiny 7 is like 500-700mb of ram and its full windows 7 or tiny xp is like 200-300mb. But if you wan't to do it with wine use playonlinux. Download and run firefox on it then download and itstall java, the rs client, osbot with it. Just keep running it and fix all the drivers that your missing one at a time till it works. -
This is a code from my scheme bot . arr= {"Black bead", "White bead", "Red bead", "Yellow bead"} GroundItem ff = Scheme.scemeBot.getGroundItems().closest(arr); int emptySlots = Scheme.scemeBot.getInventory().getEmptySlots(); if (ff!=null&&ff.interact("Take")) { Sleep.sleepUntil(() -> { return Scheme.scemeBot.getInventory().getEmptySlots() < emptySlots || Scheme.scemeBot.getGroundItems().closest(arr) == null; }, 5000); } P.S. You should always null check Things that return objects getNpcs().closest() Look in to condition sleeps
-
Better proxies, register the accounts I also found waiting 24-72 hours before log in for the first time does has a low chance of locking the accounts. PS jagex does not give a shit about those.
-
keep getting this means you have stoped and started it over again? Check your java is it java 8? Try rebooting your pc like a full shutdown and start. If that does not work download the official client and run that for a few sec. If all of these dont work we have problem.
-
Functional programming with osbot [run time scripts]
Nbacon replied to Nbacon's topic in Spam/Off Topic
Week 4: I was making a gui with a file tree and some how deleted all my java projects. Just a friendly reminder to always use version control offen. Only lost 2 or 3 days of work mostly gui. Aio fishing done. Im going to get videos of quest and write the bots later. Quest: waterfall quest varbits writen Tree Gnome Village varbits writen Monk's Friend varbits writen Hazeel Cult varbits writen Murder Mystery (going to be hard because there are 6 varents) varbits writen Recruitment Drive (have the varbits so the bot has a 90% chance of passing it every time.) -
I dont agree with these wisply prices. W/O coal bag there worth as much as the membership if smithing is there only skill and its low. With coal bag anywere between 10-30m [they can get ice gloves with there 50+ mining]
-
OSBot is stuck at applying client injections/modifications
Nbacon replied to Yumi's topic in General Help
Have you tried rebooting your pc? -
Im kinda lost. Is this a script? That runs other scripts with serialization[?] and sits in the back ground tracking data? or a 3th party plugin that other programers have to add to there scripts?
-
[Something that i have always wanted to see was a botting os with a website dashboard/database/api. So you just rent a server and slap your os on it. boom up and running in minutes.] Would you use a dashboard? yes. Things that I would like to see simple[Like my mom could use it by just looking at it.] Offer control overclients on a one by one bases Cross plateform work on windows/osx/linux Abilty to control it anywere website or appitation. What reasons would you not use the dashboard? Privacy and security What reasons would you use the dashboard? I think easy of use starting 10+ clients is a pain the ass
-
15+ year account 7 years of members on and off. Banned after making a fletching bot.
-
How to get the walk position the mouse hovers over
Nbacon replied to pigfarmer's topic in Scripting Help
When I did it had to do a hacky way. I can't find the code but I made a 25x25 area with mybot as the center and used getPositions and then filtered potions with ( s->s.isVisible() ) then filtered with something like ( s->new InteractionEvent(bot,s, new String[0]).isHover()) new Area( ).getPositions().stream().filter(s->s.isVisible() ).filter( s->new InteractionEvent(bot,s, new String[0]).isHover()).collect(Collectors.toList()) Tell me if this works If not ill look for my code. -
why do it in this sequence and not other way around? No. Things are not instantaneous and they are blocking you from clicking the tree !myPlayer().isAnimating() my player is not choping a tree ! myPlayer().isMoving() my player is not moving tree != null The tree exist. tree.interact("Chop down")) maybe the de morgan's law of the stament will help you get it. !(myPlayer().isAnimating() || myPlayer().isMoving() || tree == null) && tree.interact("Chop down")) The important part is !(myPlayer().isAnimating() || myPlayer().isMoving() || tree == null) If any of myPlayer().isAnimating() || myPlayer().isMoving() || tree == null are true you should never click a tree. so this says they must all most be false for full statment to be true and do the sleep
-
Functional programming with osbot [run time scripts]
Nbacon replied to Nbacon's topic in Spam/Off Topic
I did not have alot free time this week. With the time i did have I made 2 new skill bots herb and fletching(they need to be remade because they poorly coded) and Import. Week 3 Updates: Import (user defined functions ) (import "bank" "wc" ) this will import all methods bank folder and woodcutting wc folder (import "bank\1" "wc\enum" ) this will import a just that file or the full folder Wipe and load This will wipe out all old code and load a file (hopefully with code that tells the bot to do something) Log-in (Log-in username password) item-closest As seen in firemaking video Finds the closest item with that name or id to mouse Quest: Enter the abyss Skills(tring to write these in a better way) herblore fletching -
Hello Jebemvammater, line by line
-
Becuse walking is not an animation. if ( !myPlayer().isMoving() && tree != null && tree.interact("Chop down")) { Here is a good thread on how sleep works. You can make your return 500; into a return random(500,3000);
-
Tut island accounts | No trade restriction | Old accounts
Nbacon replied to Phoenix's topic in Price Check
500-1m 2-3m is way to much. My Reasoning the accounts still need 100 levels, 20 hoursand 10 qp no matter what to trade. This only takes 1-2 hours to get level +qp. And you can afk the rest. -
Yes.
-
I use 33mail you just make a random username like Random@YourURL.33mail.com and they all get sent to the same email. I currently have 35 accounts made with mine. You can use referral link or just go to https://33mail.com/
-
How to get the "widget" of options when I right click
Nbacon replied to pigfarmer's topic in Scripting Help
Ahoy. Look at https://osbot.org/api/org/osbot/rs07/api/Menu.html or getActions() for items -
When i only use static sleeps in few cases things just take forever Cannonballs things with no acctions/var bits Pizza making Dough making Anti-ban? Make your own chat completer that does not use the sleep times that are built. (I think this has lower my bans the most out anyhing ive ever done) Afking Alching Yea, mostly likly if you program in a looping paterner you can just use the not of the case that gets you into that block of code.
-
I think this is the best way to get 100 tl with greater then 10 quest points Tutorial island get 2 mining 2 fishing 2 cooking Trade a mule for beads (Imp Catcher) iron clay copper (Dorics Quest) Cash 10k garilc, beer, mind runes, air runes, earth staff 2 iron bars and berry pie(optional) 3 golblin mail dyes spade Jugs of wine Pot of flour Egg Bucket of milk Do Bank -spade, cash, mind runes, air runes, earth staff, beads, Pot of flour Egg Bucket of milk Do Cooks Assistant Start x marks the spot Do spot 1 Start Restless Ghost Do spot 2 Get the ghost speak + skull Do Imp Catcher get 9 magic on the lesser deamon Start auto casting earth blask walk to draynor Do spot 3 Start Vampire Slayer Bank - iron, clay, copper, 3 golblin mail, dyes spade, beer Buy a chronicle +2/3 tp Do spot 4 End X marks the spot (xp on fishing) Walk to falador Start Knight sword (optional) Do Dorics Quest, goblin diplomacy Tp chronicle get the spike for vamp slayer Do the part in the libary (Knight Sword ) (optional) Bank - garlic, skull, ghost speak, Runes , spike, Wines Tp Lumby End Restless Ghost End Vampire Slayer Do the rest of Knight Sword or do cooking, crafting , fm, wc Takes 1 hour and 30 min by hand
-
You all are just haters. This is 100% legit. When I made mine All it cared about was how the inventory looked. and the 61 minutes there clearly on Decimal time...
-
you could try getInventory().getItem(ITEM).interact() if your out side of a bank but also i think "Equip" should be "Wear".