Jump to content

Team Cape

Members
  • Posts

    2607
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    100%

Everything posted by Team Cape

  1. block him on skype first. THEN call your ISP
  2. only 2 pizzas for 400 people?
  3. @Sysm @Manner (lol jk nub) @Zerker cuz y not
  4. they're from saturday and you only just noticed them?
  5. Disputed member: @bluejays420 Thread Link: None Explanation: He has 6 negatives total, 3 from 2 different people. It seems like he's a scammer, and I think this needs to be looked into, though i don't know why they didn't make scam disputes regarding the topic. Evidence: His feedback page.
  6. private long startTime; private int costOfItem; private int logsCut; private int logsPerHour; private double gpGained; private double totalGpGained; private int gpPerHour; private int totalGpPerHour; private int xpGained; private int xpPerHour; private int currentXp; private int currentLevel; private int beginningXp; private double nextLevelXp; private long timeTNL; private double xpTillNextLevel; private int beginningLevel; private int levelsGained; final int[] XP_TABLE = { 0, 0, 83, 174, 276, 388, 512, 650, 801, 969, 1154, 1358, 1584, 1833, 2107, 2411, 2746, 3115, 3523, 3973, 4470, 5018, 5624, 6291, 7028, 7842, 8740, 9730, 10824, 12031, 13363, 14833, 16456, 18247, 20224, 22406, 24815, 27473, 30408, 33648, 37224, 41171, 45529, 50339, 55649, 61512, 67983, 75127, 83014, 91721, 101333, 111945, 123660, 136594, 150872, 166636, 184040, 203254, 224466, 247886, 273742, 302288, 333804, 368599, 407015, 449428, 496254, 547953, 605032, 668051, 737627, 814445, 899257, 992895, 1096278, 1210421, 1336443, 1475581, 1629200, 1798808, 1986068, 2192818, 2421087, 2673114, 2951373, 3258594, 3597792, 3972294, 4385776, 4842295, 5346332, 5902831, 6517253, 7195629, 7944614, 8771558, 9684577, 10692629, 11805606, 13034431, 200000000 }; // Area Variables private static final Area TREE_AREA = new Area(3049, 3276, 3060, 3265); private static final Area BANK_AREA = new Area(3043, 3234, 3047, 3237);
  7. good stuff just a few pointers: 1. look into nested if-statements 2. OSBot has an XP tracker that tracks XP/hr, xp gained, current level, xp till next level, and levels gained. 3. You can calculate the number of logs cut more accurately (and more easily) from the XP gained if you know xp/log 4. Fields go before methods by convention. Good work on the script bro
  8. dharok and you win the money that everybody puts in at the start
  9. Nobody mentioned Muslims. Just you.
  10. I see @DrDu around more than you lol
  11. alright, it seems like everything that everybody else has been suggesting isn't working. here's a new suggestion: go into their live chat
  12. definitely a tough decision to make. all the best bro
  13. well whats the scenario where you need to get the bounding tiles? there might be a more efficient way around creating this code
  14. would be easy to do this with a rectangular area, but you'd need a little bit of work with a poly area. This was something that I quickly wrote out, but the idea is there. Would be interested to see other peoples' solvencies. might do something like this: class Rectanglarea extends Area { private final int x1, y1, x2, y2; public Rectanglarea(int x1, int y1, int x2, int y2) { super(x1, y1, x2, y2); this.x1 = x1; this.x2 = x2; this.y1 = y1; this.y2 = y2; } public List<Position> getOuterPositions() { List<Position> outerPositions = new ArrayList<>(); for(int y = y1; y <= y2; y++) { outerPositions.add(new Position(x1, y, getZ())); outerPositions.add(new Position(x2, y, getZ())); } for(int x = x1; x <= x2; x++) { outerPositions.add(new Position(x, y1, getZ())); outerPositions.add(new Position(x, y2, getZ())); } return outerPositions; } }
  15. m8 you dont need to pay. go in chatbox and ill help you
  16. ^ this they take a gigantic fucking cut of your profits
  17. 1. Bump button 2. Report button
×
×
  • Create New...