Jump to content
View in the app

A better way to browse. Learn more.

OSBot :: 2007 OSRS Botting

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Token

Scripter III
  • Joined

  • Last visited

Everything posted by Token

  1. Token replied to Token's topic in Others
    Don't put untradeable items in your gear presets, it will buy all missing items including gear on the GE
  2. and 35K banned members
  3. Token replied to Token's topic in Others
    Authed
  4. Token replied to Token's topic in Others
    Authed What's printed in the logger?
  5. Token replied to Token's topic in Others
    Yes, it will add all quests to the list but once it reaches Animal Magnetism for example, it checks requirements and if you don't have them it ignore that quest and move to the next one
  6. Token replied to imancity's topic in Scripting Help
    public class GUI extends JFrame { private JPanel contentPane; private Boolean finished = false; public Boolean isFinished() { return finished; } public Rock getSelection() { return (Rock) comboBox.getSelectedItem(); } JComboBox<Rock> comboBox; public GUI() { setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE); setBounds(100, 100, 450, 300); contentPane = new JPanel(); contentPane.setBorder(new EmptyBorder(5, 5, 5, 5)); contentPane.setLayout(new BorderLayout(0, 0)); setContentPane(contentPane); JButton btnNewButton = new JButton("Start"); btnNewButton.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent arg0) { finished = true; } }); contentPane.add(btnNewButton, BorderLayout.WEST); comboBox = new JComboBox<Rock>(); comboBox.setModel(new DefaultComboBoxModel<Rock>(Rock.values())); contentPane.add(comboBox, BorderLayout.CENTER); setVisible(true); } } Where Rock.java is defined as public enum Rock { TIN(3151), IRON(215), CLAY(45), COAL(211); private int color; Rock(int color) { this.color=color; } public int getColor() { return color; } } Using modified color is a much better way to distinguish rocks. Every rock type has lots of ids based on the mesh but the color is the same for all of them, hence it's a better approach. You can either use the enum model comboboxes or get enum fields using the Enum#valueOf() on a String based model. EDIT: those rock colors are not real, it's just for the sake of the example, I can't be bothered opening eclipse and looking through my projects for my actual Rock enum
  7. Token replied to Token's topic in Others
    Authed
  8. Token replied to Token's topic in Others
    I don't think there are any bugs on Ernest the Chicken, at least they were not reported
  9. 100 post can take 30 mins to 50 mins with a minimum of decency not to be considered "shitposting" But you wouldn't support 100 post count either in that case though so why does it matter You mean something like this? Not hard to bypass a mod's judgement on "shitposting" I got 4 likes in the last 30 mins, my like count is at about half my post count They can't create another account, the IP check is very easy to do and account sale threads require staff approval Interacting != spamming, it's easier for people who actually care about the community therefore less likely to scam, and A LOT harder for scammers
  10. Can we replace this with a 10 post likes requirement? It's even easier to obtain than 100 posts, provided that you aren't just spamming the forums with nonsense. Post likes cannot be farmed easily as account threads are subject to staff approval who can verify IP, and they definitely prove more participation in the community than posting "gl", "support" and asking for trials on all script threads as you will receive feedback from the community that proves you managed to post some quality content, even if it's only 3 posts.
  11. Feel free to ask opinion based questions in the shitbox instead of spamming the forums, as it doesn't fit in the General Help section
  12. Nop, not much luck but It will take you many attempts to achieve your goals :doge: :doge:
  13. Yes it's good
  14. Forums look nicer with more diversity so if every scammer spammed 100 posts before scamming, the spam/off topic section would have a more diverse fauna rather than just @Krys and @The Hero of Time
  15. Token replied to madago227's topic in Scripting Help
    Parsing without reflection means you have to know the structure of the JSON. All you have to do if read the document and interpret it as fields and values { "item": { "name":"Cannonball", "id":2, "price":340 } } translates into public class Item { private String name; private Integer id; private Integer price; } So you can read the page into a string, get rid of "item": { } and " ", split by , and you will have field:value pairs which you can insert into your Item instances
  16. Token replied to madago227's topic in Scripting Help
    Write your own JSON parser that doesn't rely on reflection
  17. Token replied to Token's topic in Others
    Scripts on OSBot have no limits on how many accounts you can use them on
  18. Idk, the shitbox will be fine without me for now
  19. We had one ?
  20. Token replied to Token's topic in Others
    The quick start options all use earth strike, you can use other spells with your own gear presets though
  21. Token replied to Token's topic in Others
    Thanks for the feedback, I'll look into it
  22. Token replied to Token's topic in Others
    Sure...
  23. Token replied to Token's topic in Others
    Yes, auths aren't unlimited Thanks, I'll add another bug report for the webwalker
  24. Token replied to Token's topic in Others
    Never had a bug report on those and it's $19.95 lifetime Thanks for the feedback
  25. Token replied to Token's topic in Others
    Authed

Account

Navigation

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.