Jump to content

Team Cape

Members
  • Posts

    2607
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    100%

Everything posted by Team Cape

  1. definitely not german
  2. RS2Widget widgey = widgets.getWidgetContainingText("wishes to trade with you"); //this is what you're looking for, BUT \/ That will get you any trade offer thats made though, regardless of where it is within the chatbox. You'll want to, instead, keep track of when the trade request appeared (by getting when the text occurred inside of the chatbox, probably using onMessage) and if it's within a certain timeframe, accept the trade offer
  3. My favorite song: http://bit.ly/IqT6zt
  4. damn dis sum beef even hindus wouldnt touch
  5. = $3 saved. Meaning that from the original 30, you only paid $27. You got to keep the other $3 amongst yourselves. There is no $29. You had the original question, then convoluted it into 2, so the captain got to keep $4 in total, which is incorrect. You had 30. You paid $27. You kept $3. 30 - 27 = 3. Basic math.
  6. 15m normally, but with your lack of feedback, acc date created, etc, probably 7m if you're lucky
  7. Team Cape

    @Krys

    dunno why u were looking for it but thats a pretty impressive catch lol ban dbuffed for scamming now
  8. good stuff. didnt realize this was a setting - thank you
  9. I often see myself mentioned when I check back on random threads (signified by the @Imateamcape being slightly blue), but I never receive the notifications that I should be. Wasn't sure where to post this, but i thought it might be a forum bug, so I put it here.
  10. Note: I wrote this up in like 5 minutes, so don't take it word for word, but this is the general idea: public class MyScript extends Script { private boolean eat = false; private final GUI gui = new GUI(); @@Override public void onStart() throws InterruptedException { gui.createGUI(); while(!gui.getStarted()) { sleep(random(500, 1000)); } eat = gui.shouldEat(); } } public class GUI { private boolean started = false; private boolean shouldEat = false; private final JFrame frame = new JFrame(); //you should probably attach a content pane to this, but i didnt because its only an example public void createGUI() { JButton startScript = new JButton(); startScript.addActionListener(new ActionListener() { @@Override public void buttonPressed(ActionEvent e) { //i cant remember the name for this. could use the other format, but i think this shows it better frame.setVisible(false); frame.dispose(); started = true; } }); frame.add(startScript); JButton eat = new JButton(); //add specifics for eat frame.add(eat); frame.setVisible(true); } public boolean getStarted() { return started; } public boolean shouldEat() { return shouldEat; } }
  11. the walker wont get you banned. getWalking().walk() takes less CPU, but doesn't handle obstacles getWalking().webWalk() takes more CPU, but handles most obstacles
  12. to webwalk: getWalking().webWalk(Position) to walk normally: getWalking().walk(Position) would recommend going through the API http://osbot.org/api/ it'll solve most of your questions
  13. why not use the inbuilt walker?
  14. make sure this is the real rs website just to be safe
  15. will test run it this weekend
  16. can implement a fix for this and have the SDN script updated in roughly 3 days glad you like the script
×
×
  • Create New...