Everything posted by Spoodermon
-
RDM's AIO Service is hiring IMMEDIATELY
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???
- Expression
-
BotReady - Coming Soon
10/10, bought 10 proxies off him for $15, all of em worked, will definitely buy again
-
Spidy's Voucher shop 1m 07 = $1.1
1m 07 = $1.1 I will be using a middle man Add me on skype = jakethebeast378
-
Simple bot - not starting issue
Awesome, you guys have been so helpful.
-
Simple bot - not starting issue
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?
-
Simple bot - not starting issue
lmao true, thats what i did before i just havent touched java in like a year. thanks
-
Simple bot - not starting issue
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.
-
Simple bot - not starting issue
It Started yes thank you, but it doesnt do anything hahaha, my scriping lvls are not dank enuf yet, can anyone find my error?
-
Simple bot - not starting issue
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