Jump to content

Spoodermon

Members
  • Posts

    12
  • Joined

  • Last visited

  • Feedback

    100%

Profile Information

  • Gender
    Male

Recent Profile Visitors

1086 profile views

Spoodermon's Achievements

Newbie

Newbie (1/10)

2

Reputation

  1. so hold up, your hiring people to do services for other people that want services from you? 1st. We aren't chinese. 2nd. why would we not just host our own services???
  2. why do people shitpost?
  3. 10/10, bought 10 proxies off him for $15, all of em worked, will definitely buy again
  4. Awesome, you guys have been so helpful.
  5. adding the logs made it work some how, even tho its shoulda have oh well thanks for the help ok thanks for the notes, about the ifs, i have 1 more question about this bot, when i mine the clay i want it to stay at the most northern clay in varrock west so i dont get attacked by the mugger, how would i make it stay just on that one, because its doing find closest clay and then running the one south, and then running back up cuz it checks that its not in the clay area and runs back north, which will get banned really fast, how do i fix that?
  6. lmao true, thats what i did before i just havent touched java in like a year. thanks
  7. package Clayminer; import java.awt.Graphics2D; import org.osbot.rs07.api.Bank; import org.osbot.rs07.api.Inventory; import org.osbot.rs07.api.map.Area; import org.osbot.rs07.api.model.Entity; import org.osbot.rs07.api.model.Player; import org.osbot.rs07.api.model.RS2Object; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; @ScriptManifest(author = "Spooder", info = "Mines clay in varrock west", logo = "", name = "ClayMiner + banking", version = 1) public class ClayMiner extends Script { final int clay = 7454; final Area CLAY_AREA = new Area(3183, 3378, 3183, 3378); final Area BANK_AREA = new Area(3185, 3445, 3182, 3436); @Override public void onStart() { log("The Script has started"); } @Override public int onLoop() throws InterruptedException { if (!inventory.isFull()) { if (CLAY_AREA.contains(myPlayer())) { if (!myPlayer().isMoving()) { if (!myPlayer().isAnimating()) { RS2Object rock = getObjects().closest(clay); if (rock != null) { rock.interact("mine"); sleep(random(50, 120)); } } }else{ sleep(1000); } } else{ getWalking().webWalk(CLAY_AREA); } } if (inventory.isFull()) { getWalking().webWalk(BANK_AREA); if (BANK_AREA.contains(myPlayer())) { if (!getBank().isOpen()) { getBank().open(); } else { bank.deposit(434, 28); } } } return 800; } @Override public void onPaint(Graphics2D g) { } @Override public void onExit() { } } I changed it up a little bit but im guessing that the myPlayer(), is not grabbing my player, because when i start the script he does absolutely nothing.
  8. It Started yes thank you, but it doesnt do anything hahaha, my scriping lvls are not dank enuf yet, can anyone find my error?
  9. package Clayminer; import java.awt.Graphics2D; import org.osbot.rs07.api.Bank; import org.osbot.rs07.api.Inventory; import org.osbot.rs07.api.map.Area; import org.osbot.rs07.api.model.Entity; import org.osbot.rs07.api.model.Player; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; @ScriptManifest(author = "Spooder", info = "Mines clay in varrock west", logo = "", name = "ClayMiner + banking", version = 1) public class ClayMiner extends Script { final int clay = 7454; final Area CLAY_AREA = new Area(3183, 3378, 3183, 3378); final Area BANK_AREA = new Area(3185, 3445, 3182, 3436); Inventory inven = getInventory(); Player player = myPlayer(); Bank bank = getBank(); @Override public void onStart() { log("The Script has started"); } @Override public int onLoop() throws InterruptedException { getWalking().webWalk(CLAY_AREA); if (!inven.isFull()) { if (CLAY_AREA.contains(player)) { if (!player.isMoving()) { if (!player.isAnimating()) { Entity rock = getObjects().closest(clay); if (rock != null) { rock.interact("mine"); sleep(random(50, 120)); } } } } } if (inven.isFull()) { getWalking().webWalk(BANK_AREA); if (BANK_AREA.contains(player)) { if (!getBank().isOpen()) { getBank().open(); } else { bank.deposit(434, 28); } } } return 80; } @Override public void onPaint(Graphics2D g) { } @Override public void onExit() { } } Since i dont know how people bring in the script i just copied and pasted. If you cant already see, this script is very scrubby, because this is my first ever attempt at writing a script, not sure why its not starting. Look forward to a solution. Thanks
×
×
  • Create New...