Everything posted by Token
-
Stealth Quester
Don't put untradeable items in your gear presets, it will buy all missing items including gear on the GE
-
Grats on 200K OSBOT!
and 35K banned members
- Stealth Quester
-
Stealth Quester
Authed What's printed in the logger?
-
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
-
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
- Stealth Quester
-
Stealth Quester
I don't think there are any bugs on Ernest the Chicken, at least they were not reported
-
Account sales 100 post requirement
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
-
Account sales 100 post requirement
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.
-
Advice on scripts....
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
-
everyones thoughts on lms?
Nop, not much luck but It will take you many attempts to achieve your goals :doge: :doge:
-
everyones thoughts on lms?
Yes it's good
-
Why have 100postcount before selling an account?
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
-
g.e 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
-
g.e help
Write your own JSON parser that doesn't rely on reflection
-
Stealth Quester
Scripts on OSBot have no limits on how many accounts you can use them on
-
Arceeus spellbook ?
Idk, the shitbox will be fine without me for now
- Arceeus spellbook ?
-
Stealth Quester
The quick start options all use earth strike, you can use other spells with your own gear presets though
-
Stealth Quester
Thanks for the feedback, I'll look into it
- Stealth Quester
-
Stealth Quester
Yes, auths aren't unlimited Thanks, I'll add another bug report for the webwalker
-
Stealth Quester
Never had a bug report on those and it's $19.95 lifetime Thanks for the feedback
- Stealth Quester