-
Content Count
244 -
Joined
-
Last visited
-
Feedback
100%
Community Reputation
77 Iron
About Nbacon
-
Rank
Steel Poster
Profile Information
-
Gender
Male
Recent Profile Visitors
1017 profile views
-
trying to make my script eat while it is webwalking?
Nbacon replied to mitsuki's topic in Scripting Help
I think these might help? -
Why would you care if the interaction is succesful? you just click and move on and if it fails come back with a second(slower) pass
-
Our loops do the same exact thing and will fuck up in the same way..... but mine can do diffent chaining types...
-
Script stops when paused or when logged back in from a dc/break
Nbacon replied to Syndo's topic in Scripting Help
Post code in a git or paste bin, no way to know what the problem is with out see the code. -
I think this is would be better... int chain[] ={0,1,2,3,4,5,6,...,28}; int chain[] ={0,4,8,12,16,20,24,1,5,9,13,17,...}; for (int i = 0; i < 28; i++) { Item item =getInventory().getItemInSlot(chain[i]); if (item!=null &&(item.getName().contains("pack"))){ getInventory().interact(chain[i],"Open"); sleep.... } }
-
Does Authentication work when you run it out side, solo[by it self]? I was have problems with google Sheets API and clojue and might have the fix.
-
I want to build a cheap pc for botting osrs ?
Nbacon replied to yagizbasoglu's topic in General Help
Yes, But amount of shit that go wrong. Cheep parts that are fire hazards, Fake/rebranded parts that fit but are not as good, parts that take legit months to get to you(covid or not), miss matched parts. No refunds... list could go on. With a pre-built by you get within x day (almost guaranteed )... Its plug and play...most people have a refunds...you know what you are getting... Its Botting in the next 2 week for 250 dallars or possibly botting in 1-2 months for 100-150 dallars. In the end its your money do what ever you want. -
Are you using an emulator? because I think that is a dead give way.
-
I want to build a cheap pc for botting osrs ?
Nbacon replied to yagizbasoglu's topic in General Help
Look at this. https://www.ebay.com/sch/i.html?_from=R40&_trksid=p2334524.m570.l1313&_nkw=Dell+T3600+8+core&_sacat=0&LH_TitleDesc=0&_osacat=0&_odkw=Dell+T3600 (We don't know your budget you might want the world but are not willing to pay for it) -
I want to build a cheap pc for botting osrs ?
Nbacon replied to yagizbasoglu's topic in General Help
I don't know what you mean.... I gave a recommandation for a full pc that is just plug and play at your door within the week. -
I want to build a cheap pc for botting osrs ?
Nbacon replied to yagizbasoglu's topic in General Help
look into Dell precision T3600 on ebay with 8 cores for $150-300. get one without a graphics card to save money. I can run 8 mirror-10 and 20 injection -
Tried making gui with tabs now script wont even start
Nbacon replied to skillerkidos1's topic in Scripting Help
Wow.... comment out... "mainDialog.setLayout(new BoxLayout(mainDialog, BoxLayout.PAGE_AXIS));" works on my pc with this test code. public class Main { public static void main(String[] args) { AtomicReference<GUI> gui = new AtomicReference<GUI>(new GUI()); try { SwingUtilities.invokeAndWait(() -> { gui.set(new GUI()); gui.get().open(); }); } catch (InterruptedException | InvocationTargetException e) { return; } System.out.println("Done"); } } -
Tried making gui with tabs now script wont even start
Nbacon replied to skillerkidos1's topic in Scripting Help
Ok. I was mistaken on the Jpanel.Try this mainDialog = new JDialog(); mainDialog.setTitle("KO Corp"); mainDialog.setModal(true); mainDialog.setLayout(new BoxLayout(mainDialog, BoxLayout.PAGE_AXIS)); mainDialog.setModalityType(Dialog.ModalityType.APPLICATION_MODAL); JPanel mainPanel = new JPanel(); mainPanel.setLayout(new BoxLayout(mainPanel, BoxLayout.PAGE_AXIS)); mainDialog.getContentPane().add(mainPanel); JTabbedPane tabbedPane = new JTabbedPane(); tabbedPane.setBorder(new EmptyBorder(15 -
Tried making gui with tabs now script wont even start
Nbacon replied to skillerkidos1's topic in Scripting Help
Were is JFrame frame? (I think that is your problem) -
heres the 2 ways to do mutiple classes. I know there are more but these are simple. Type 1: public class Something extends MethodProvider { public void doSomething(){ getBank().Open() } } in your main script do this Something something = new Something() void onStart(){ something.exchangeContext(getBot()); } Type 2: public class Something{ MethodProvider mp; public Something(MethodProvider mp){ this.mp =mp } public void doSomething(){ mp.getBank().Open() } } REad your question wrong this is something you like Just warning scripts writ