Jump to content

the1btcuser

Scripter I
  • Posts

    8
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by the1btcuser

  1. I'll definitely update it when I have the time.
  2. [INFO][01/22 04:32:54 PM]: Welcome to OSBot 2.6.41! [INFO][01/22 04:32:55 PM]: Loaded 0 RS accounts! [INFO][01/22 04:32:56 PM]: Script list refreshed and loaded 17 scripts. [INFO][01/22 04:33:02 PM]: Updated injection hooks for client revision : 202! [DEBUG][Bot #1][01/22 04:33:02 PM]: Initializing mirror client bot... [INFO][01/22 04:33:02 PM]: Started bot #1 [ERROR][Bot #1][01/22 04:33:03 PM]: Could not load stream library java.lang.RuntimeException: Could not load stream library at client.nat.stream.Stream.cjug(Unknown Source) at client.WOO.rfyq(Unknown Source) at client.emu.LK.run(Unknown Source) Caused by: java.lang.RuntimeException: s3 ... 3 more I'm getting this server even though I have osrs installed. I'm running linux with jdk8. No other java version or osrs client is installed.
  3. Yes, other people are also getting the same error and they can't acces the site in some cases.
  4. 1burier Description: 1burier is a bone burier aimed at free-to-play bots. It supports Lum. chickens and cows. No items or stats required. Start the script from anywhere and it will walk to your destination. If the player has items in its inventory, they will be deposited on top of the Lumbridge Castle because the scripts drops non-bone objects which it sometime picks up from the ground. Upcoming features include support for giant frogs and hillgiants, and a trade accepter (you receive plenty of donations). Progress from 1 hour at cows: If you encounter a problem make sure to include logs and stealth/mirror.
  5. https://imgur.com/bCOKWZy I'm trying to move the "Pickaxe" JLabel and Button to a new line using only flowlayout (so no fixed x,y positions). JPanel mainPanel = new JPanel(); mainPanel.setLayout(new BoxLayout(mainPanel, BoxLayout.PAGE_AXIS)); mainPanel.setBorder(new EmptyBorder(23, 5, 50, 5)); mainDialog.getContentPane().add(mainPanel); JPanel treeSelectionPanel = new JPanel(); TitledBorder leftBorder = BorderFactory.createTitledBorder("Settings"); leftBorder.setTitleJustification(TitledBorder.LEFT); treeSelectionPanel.setLayout(new FlowLayout(FlowLayout.LEFT)); treeSelectionPanel.setBorder(leftBorder); JLabel treeSelectionLabel = new JLabel("Type:"); treeSelectionPanel.add(treeSelectionLabel); treeSelector = new JComboBox<>(Tree.values()); treeSelectionPanel.add(treeSelector); mainPanel.add(treeSelectionPanel); JLabel pixtypetext = new JLabel("Pickaxe:"); treeSelectionPanel.add(pixtypetext); pixselector = new JComboBox<>(pixtype.values()); treeSelectionPanel.add(pixselector); Any help is appreciated.
×
×
  • Create New...