Jump to content

PlagueDoctor

Members
  • Posts

    197
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by PlagueDoctor

  1. 29 i believe. http://2007.runescape.wikia.com/wiki/Pay-to-play_Smithing_training Another method you can do is iron nails, not sure if its faster or slower than what Jack suggested.
  2. Well i guess we'll just have to agree to disagree on those points. I don't believe its acceptable to harass an innocent party due to the actions of someone else. I don't think someone should have to take responsibility for something someone else did if they're not involved in it. Reminds me of the SJWs who blame white people for things their ancestors did before they were born.
  3. "If you negatively impact the lives around someone, the person that caused it all will feel worse" Negatively impacting the lives around someone might as well be described as punishing them. "I didn't imply that the people around them should be punished, I said that it'll be beneficial to punishing the scammer" Saying that negatively impacting the lives of the people around the scammer will improve the punishment of the scammer is still implying that its good to negatively impact them (the family members, etc) even though they are not innocent and not involved in the scamming. I don't think its intellectually honest to pretend otherwise..
  4. "It's good to impact other peoples lives that are close to the scammer. Because they will feel worse about it lol" Here you are implying that parties should be punished even if they're not responsible or took any part of it. Aren't you contradicting yourself?
  5. getBank().enableMode(Bank.BankMode.WITHDRAW_NOTE); new ConditionalSleep(10000) { @[member='Override'] public boolean condition() throws InterruptedException { return getBank().getWithdrawMode() == Bank.BankMode.WITHDRAW_NOTE; } }.sleep(); getBank().withdrawAll("Shortbow"); new ConditionalSleep(10000) { @[member='Override'] public boolean condition() throws InterruptedException { return !getBank().contains("Shortbow"); } }.sleep(); Here, this should work. Rather than having a random sleep after withdrawing, try using a conditional sleep. This will make it so it only sleeps as long as it needs to. EDIT: Encapsulate the bankmode stuff into an if statement as shown in Lewis's reply.
  6. Because you are punishing innocent parties.. This is very obvious stuff. If someone in your family kills someone, should you be punished too?
  7. The amount of people on this thread of think doxing and harassing people as a punishment is a good idea.. is incredibly worrying. This is autism on a whole other level.. are you a super villain?
  8. One would hope, if this was implemented, they'd make sure there is a legitimate reason before banning
  9. GOAT https://www.youtube.com/watch?v=xoiOA9Xtp0s&feature=youtu.be
  10. One way to do it is to create a variable like int log = 36 // or whatever the xp per log is and times it by how many logs you've cut. Another way would be to create a variable that contains your woodcutting xp when the script started, and another variable that contains your current woodcutting xp. Subtract your starting woodcutting xp from your current xp and divide it by the exp you get from a single log.
  11. Yeah just go crazy with the torrenting LOL. Thats a good way to make your drums, its definitely less generic if you're essentially making the drums yourself.
  12. Not bad man, I recommend some of Dodge & Fuski's tutorials on youtube. Keep making stuff, practice makes perfect.
  13. I'd imagine its possible to make a list or array work, but straight up use won't work. EDIT: Adding in failsafes to what i've written below would be an improvement, if statements like how bamboozled wrote it is a step in the right direction. private String items[] = new String[] {"Death rune", "Nature rune", "Battlestaff", }; bank.withdrawAll(items); // this won't work. /////////////////////////////////////////////////////////////////////////// This is how i would write it. getBank().enableMode(Bank.BankMode.WITHDRAW_NOTE); bank.withdrawAll(A); new ConditionalSleep(10000) { @[member='Override'] public boolean condition() throws InterruptedException { return inventory.contains(A); } }.sleep(); bank.withdrawAll(B); new ConditionalSleep(10000) { @[member='Override'] public boolean condition() throws InterruptedException { return inventory.contains(B); } }.sleep(); bank.withdrawAll(C); new ConditionalSleep(10000) { @[member='Override'] public boolean condition() throws InterruptedException { return inventory.contains(C); } }.sleep();
  14. Is what im using (-script Test:params), essentially the same as -script Test:null? It works, i was just guessing when i set it up lmao.
×
×
  • Create New...