Jump to content

Team Cape

Members
  • Posts

    2607
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    100%

Everything posted by Team Cape

  1. In any real world situation, if a worker makes a huge fault, losing the company money, it's taken out of his paycheck or he gets fired.
  2. His incompetence caused the loss of at least $100. Let's call this 100m. It's more than likely he scammed. Your momentary lapse of incompetence would be subtracted from your salary in any real job setting, then the resulting money would be given to you. That's law. So, let's do the math. Income - Amount lost = Received amount 27m - 100m = -73m Oh wow! Looks like he owes them 73m. Bottom line.
  3. Oh ok. Let me go tell this scumbag who embezzled 5 million dollars from a non-profit organization that she deserves more money for her dutiful work.
  4. He's not jackpot's worker. He was fired for scamming. That's like saying an accountant fired for embezzling should still get his weekly paycheck. What the hell?
  5. he let over $100 of merchandise get scammed.
  6. good catch. would probably take it a step further and just say !foundHide.exists()
  7. firstly, this isn't a tutorial. next time, post in scripting help. secondly, GroundItem foundHide = groundItems.closest("Cowhide"); if(foundHide != null) { long pastHide = inventory.getAmount("Cowhide"); if(foundHide.interact("Take")) { new ConditionalSleep(5000) { @ Override public boolean condition() throws InterruptedException { return !foundHide.exists(); } }.sleep(); if(inventory.getAmount("Cowhide") > pastHide) { paintCounter++; } } }
  8. Problem fixed and uploaded to SDN - It will be on soon (the devs normally get to updates pretty quick) Edit: Also included a walking fix and an interaction fix that will help on all courses
  9. private scripts are the way to go
  10. getTabs().open(Tab.values()[random(0, Tab.values().length-1)]); ^ opens a random tab
  11. what? why are you counting freespace? This is all you need to do: GroundItem foundBones = groundItems.closest("Bones"); if(foundBones != null) { long pastBones = inventory.getAmount("Bones"); if(foundBones.interact("Take")) { new ConditionalSleep(5000) { @ Override public boolean condition() throws InterruptedException { return inventory.getAmount("Bones") > pastBones; } }.sleep(); if(inventory.getAmount("Bones") > pastBones) { bonesCollected++; } } } Edit: Also, please never use += 1.
  12. I will look into this. Thanks for reporting
  13. Team Cape

    Clan?

    Zezima clan chat is always full
  14. Not knowing what '!' means is a pretty hard signal that you don't know much about Java. To be blunt, you need to learn a lot more before you will realistically know what you're doing.
  15. Honestly, I feel as though most of this stuff was already pretty basically known (not sure if this is real tbh). Still a pretty interesting read, though.
  16. Where did you get this from? There are typos, so I don't believe this was any peer-reviewed article on the RS forums.
  17. glad we're on the same side that both america and syria are run by genocidal maniacs
  18. I think I'm gonna apply for CBA too.
  19. people settle, build up their civilization, develop some 'nice stuff'. then that civilization falls in 1 of 2 ways: 1st way: people want that 'nice stuff', so they come in and take it forcefully 2nd way: people on the inside grow discontent with their cushy lives and revolt, inadvertently destroying their civilization completely then the process repeats thats where the saying 'weak men create hard times, hard times create strong men' comes from
  20. You're picking at this analogy really hard m8..
×
×
  • Create New...