Jump to content

Shudsy

Scripter I
  • Posts

    841
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by Shudsy

  1. Why would you need any recent proggies? the script hasnt changed since the last ones were posted
  2. asks for jailbreakers and you give Android root details
  3. npc.interact("Attack") uses interactionEvent and will turn the camera if the npc is not visible.
  4. Use states! use states! @Explv agrees
  5. Don't have any bug reports atm and the profit does calculate materials costs. You should start using stamina pots instead. it'll fix this problem and increase your gp/h
  6. oh shit 2 am brainderp
  7. they hate us cuz they aint us
  8. pls package infinitewalker; import org.osbot.rs07.api.map.Area; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; import java.awt.Color; import java.awt.Graphics2D; @ScriptManifest(author = "Shudsy", info = "Walks all around runescape and does not stop!", name = "Shudsy's InfiniteWalker", version = 1, logo = "") public class Infinite extends Script { private long timeBegan; final public Area runescape = new Area(2297, 3918, 3442, 2957); @Override public void onStart() throws InterruptedException { timeBegan = System.currentTimeMillis(); } @Override public int onLoop() throws InterruptedException { { getWalking().webWalk(runescape.getRandomPosition()); } return 0; } @Override public void onPaint(Graphics2D g) { long timeRan = System.currentTimeMillis() - timeBegan; g.setColor(Color.GREEN); g.drawString("Timeran: " + ft(timeRan), 20, 230); } private String ft(long ms){ long s = ms / 1000, m = s / 60, h = m / 60, d = h / 24; s %= 60; m %= 60; h %= 24; return d > 0 ? String.format("%02d:%02d:%02d:%02d", d, h, m, s) : h > 0 ? String.format("%02d:%02d:%02d", h, m, s) : String.format("%02d:%02d", m, s); } }
  9. the most humanlike thing would probably be if (getInventory().isFull() && getInventory().contains("bones")) { bones.interact("bury"); }
  10. inb4 i get roasted by @Explv for bad code
  11. should of named it RuNesCaPe
  12. package infinitewalker; import org.osbot.rs07.api.map.Area; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; import java.awt.Color; import java.awt.Graphics2D; @ScriptManifest(author = "Shudsy", info = "Walks", name = "Shudsy's InfiniteWalker", version = 2, logo = "") public class infinite extends Script { private long timeBegan; private long timeRan; public Area Runescape = new Area(2297, 3918, 3442, 2957); @Override public void onStart() throws InterruptedException { timeBegan = System.currentTimeMillis(); } @Override public int onLoop() throws InterruptedException { if (!myPlayer().isMoving()) { getWalking().webWalk(Runescape.getRandomPosition()); } return 100; } @Override public void onExit() { log("hello"); } @Override public void onPaint(Graphics2D g) { timeRan = System.currentTimeMillis() - timeBegan; g.setColor(Color.GREEN); g.drawString("Timeran: " + ft(timeRan), 20, 230); } private String ft(long ms){ long s = ms / 1000, m = s / 60, h = m / 60, d = h / 24; s %= 60; m %= 60; h %= 24; return d > 0 ? String.format("%02d:%02d:%02d:%02d", d, h, m, s) : h > 0 ? String.format("%02d:%02d:%02d", h, m, s) : String.format("%02d:%02d", m, s); } } Decided to release this for free. enjoy
  13. I'll pay 10m if someone can write me a plugin like this with WooCommence Support. Its basically a elo boosting calculator.
  14. im mother fucking shudsy
  15. who are you who are you also
  16. Death teleport with a glory is only supported on Glory mode atm. I might add support for death teleport on House tab mode later on.
  17. It already uses a glory to teleport back to the bank. Are you using house tabs or glory?
  18. Thank you for providing such useful information. /s How do you expect me to do anything when you tell a scripter "it gets stuck a lot". You're providing me zero information about anything.
  19. I'll fix the bank issue. you gotta reopen the gate a few times to get the option to remove the warning urself.
×
×
  • Create New...