Jump to content

Team Cape

Members
  • Posts

    2607
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    100%

Everything posted by Team Cape

  1. Renting accounts is not allowed. I told you this in chatbox 20 minutes ago.
  2. RS2Object o = getObjects().closest(AREA, "Door"); if(o != null)... Checks if there's an object with the name 'Door' in AREA
  3. public boolean shouldHop() { return getPlayers().filter(p -> p != null && myPlayer().getArea(5).contains(p)).size() > 1; }
  4. gross. way too high. 50-60 is the ideal number here, people
  5. im gonna start offering for $10 suck it
  6. you said it downloads as a white page, correct? if I'm not mistaken, that means that it's not recognizing the file type (.jar). when you try to open it, what message do you get?
  7. gold prices would plummet to an all-time low
  8. Member @Anne:Feedback on activity: meh, didnt include me in the listShitposts or qualityposts: a solid 5/7What could @Anne improve on?: including me in the listAnything else?: the gameOverall Rating 1/10: 5/7
  9. ive found that mcdonalds is very fulfilling if you're up for it
  10. chris is right. you can have the Player muleaccount; definition at the top, but you can't have any references to Script before onStart(), so you need to put the assignment in onStart() your onStart() should look like this: public void onStart() throws InterruptedException { startTime = System.currentTimeMillis(); muleAccount = getPlayers(...); log("Welcome to beef slave"); log("This is a quick money making method"); log("Please post errors to thread"); }
  11. private boolean containsMe(Area[] areas) { for(Area a: areas) { if(a.contains(myPlayer()) { return true; } } return false; }
  12. Is this a possibility? The option to switch between the new/old layouts of the OSBot forums?
  13. can i see the context in which you're using it? i am 100% sure the code is correct.
  14. public boolean areaContainsPlayers(Area a) { return getPlayers().closest(p -> p != null && !p.equals(myPlayer()) && a.contains(p)) != null; }
×
×
  • Create New...