Jump to content

Zappster

Suspended
  • Posts

    1015
  • Joined

  • Last visited

  • Days Won

    3
  • Feedback

    100%

Everything posted by Zappster

  1. Look all these peasents using an IDE, what ever happened to using Notepad and cmd compiling? Notepad++ masterrace checking in. Srsly tho, I used Eclipse and IntelliJ, It's completly down to personal preference really. Try them both. Edit: Look at this guy
  2. THERE'S SO MANY THEADS TELLING ME TO VOTE YES WHAT IF THEY REALLY WANT ME TO VOTE NO FFFFFFUCK *votes no*
  3. That song is litterly on my playlist still lol
  4. The last season I played on DMM I renamed to MC Smalley to give it up to my homie
  5. Ok so you got a few things you want to learn, cool. Let's start with getting what floor you're on. int a = myPlayer().getPosition().getZ(); switch (a){ case 0: //do stuff on ground floor break; case 1: //do stuff on second floor break; case 2: //do stuff on top floor break; } Obviously, you don't need to use a switch, but i've done it like so, so you know what the levels are. Next, we have the inventory issue. You can find out if you have a full inventory by: if(inventory.isFull()){ //do stuff after inventory is full } Here's where you tell your program to start climbing the stairs to go to the bank i guess. If you're on the second floor, you'll need another check to see if you want to go up or down the stairs, you can make the same inventory.isFull() call to find your answer. Banks are easy to interact with thanks to the API, all you gotta do is: bank.Open(); if(bank.isOpen()){ bank.deposit("Knife", 28); } API for ref: Bank: http://osbot.org/api/org/osbot/rs07/api/Bank.html Player: http://osbot.org/api/org/osbot/rs07/api/model/Player.html Inventory: http://osbot.org/api/org/osbot/rs07/api/Inventory.html
  6. You can change your vote in some states if you've changed your mind
  7. https://vault.fbi.gov/nikola-tesla/ Just incase you wasn't aware, the FBI released some tesla documents last night, including something about a death ray and a "Chinese Wall of Defense". Looks like Trumps doesn't need to build a wall, it's been there for more than 60 fucking years. Page 3, https://vault.fbi.gov/nikola-tesla/Nikola%20Tesla%20Part%2001%20of%2003/view Here's a little part of it:
  8. Well @jackshow, I guess this is checkmate. Now you must reveal your methods.
  9. what Whats happening QQ
  10. You could try reading the widget and finding the wilderness level from it keep -1 your position until you are at < 20 wildy Edit: there's a method in the API to get the wilderness level
  11. Only possible explanation, he's a more serious memer than @Keven
  12. Coming to a store near you 2018. Maldesto Soda Pop is carbonated cherry flavoured softdrink. Enjoy the satisfying fizz of Maldesto! With a new Automated Carbonator. With the latest technology in Soda Pop engineering, we can program each bubble to pop exactly after the last, leaving behind a nice cherry scent and light fizz..
  13. Step 1. Create the function to eat + check health, something like private void eat(){ if(myPlayer().getHealth < 40){ inventory.interact("Eat","Lobster"); } } Then you would add the call right under this line: public int onLoop() throws InterruptedException {
  14. Fool me once, shame on you; fool me twice, shame on me; fool me thrice kill me
  15. Just had one of these today, I've heard of a few other people get one too Have you had one yet? What did yours say. Thanks OSBot, you're doing gods work.
×
×
  • Create New...