Jump to content

Token

Script Officer
  • Posts

    8431
  • Joined

  • Last visited

  • Days Won

    49
  • Feedback

    100%

Everything posted by Token

  1. Click enable proxy, type in the ip and port then just start OSBot. The new ip:port will be automatically added to the list and will replace the nulls, you can check that simply by opening another client. If your proxy is not working or you typed in the wrong information, you will see something like "bot initialization error - please check the forums for the bot status"
  2. Token

    Stealth Quester

    You get a popup message when adding the quest which asks you what you want it to use the XP on Thanks, I'll look into it
  3. Token

    Stealth Quester

    I was adding quests monthly, that's how it went from 17 quests in the first version to 40 atm, it will expand only if no one considers the script is too big. My first priority is bug fixes to keep the current content flawless, not content updates.
  4. Token

    Stealth Quester

    Idk, there had been lots of updates but not content, just bug fixes
  5. Token

    Stealth Quester

    Authed May be some nice additions but the time it takes to complete them varies a lot, stuff change every client update and every script update, as for prices, they are grabbed dynamically during runtime and have about 4 different sources on top of which it applies mathematical formulas to obtain "suitable prices" so that would be hard to guess and the prices vary a lot between sources
  6. Token

    Stealth Quester

    Yes but right now there are no quests that give def xp
  7. Token

    Stealth Quester

    Authed Yes, just had to slow down the development as it went too quickly from 17 quests to 40 Authed Yes it is lifetime
  8. Token

    Stealth Quester

    Quests which require area access through stage progression do not support deathwalking/starting in progress, they can only be run in debug mode by getting all items it had before interrupting at the certain location
  9. Token

    Stealth Quester

    Are you sure you didn't complete them on that account?
  10. Token

    Stealth Quester

    Not in the current version
  11. Token

    Stealth Quester

    You have an ava's accumulator in your preset, check it in the gear editor tab, there is no code to buy an ava's accumulator otherwise Only if you use the quick start options which have predefined gear presets for each quest Authed
  12. Token

    Stealth Quester

    No, but you can always make your own quest list by using the second tab instead of the quick start options
  13. Token

    Stealth Quester

    It's not an error, that's just a quick start option. You can use your own quest list with your own gear presets in the second tab instead
  14. Token

    Stealth Quester

    Don't put untradeable items in your gear presets, it will buy all missing items including gear on the GE
  15. Token

    Stealth Quester

    Authed What's printed in the logger?
  16. Token

    Stealth Quester

    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
  17. Token

    GUI 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
  18. Token

    Stealth Quester

    I don't think there are any bugs on Ernest the Chicken, at least they were not reported
  19. 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
×
×
  • Create New...