Jump to content

Jeremy1235

Members
  • Posts

    22
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by Jeremy1235

  1. Could I get a trial, Really interested in this.
  2. Will you add yews at wc guild?
  3. Jeremy1235

    help please

    Some updates it'll still work for, but there was an interface change which probably is the main reason the boy will not load now. Just a guess from me though. Don't quote me.
  4. Jeremy1235

    help please

    There was a rs update, just gotta wait for the bot to be updated.
  5. I think it was since osbot was updated
  6. I keep getting a problem when it wont attack another monster, it just stops. Going to test out the newest version to see if it works, but will let you know.
  7. Of course its really not that exciting... but I got banned on my noob, who i havent played in a few days. but my main who just did a 40 hour non stop didnt get banned... good job Jagex My noob was mainly killing chickens for like 6 hours 2 days ago.
  8. Well i think i hit a milestone? Probably the best script ive used since i started using osbot...
  9. Just got to my 24 hour mark, heres a new proggy great script man thanks!
  10. 12 Hour runtime I'd like to share
  11. I'm pretty new to scripting, made a few that I have gotten to work, but they were just learning tutorials and i edit them a bit, Was trying to see if someone can tell me about how to use an item from my inventory on an object.
  12. I found my problem as soon as you said something... the fishing location is a NPC not a object... I told you I was overlooking it.
  13. I am proboably 100% over looking where my error is... I'll start the bot and then it wont do anything, just standing there.. Its a simple power fisher. My first script practically, I had some things working before on a different script but decided to stop, any help would be appreciated. import java.awt.Graphics2D; import org.osbot.rs07.api.model.Entity; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; import org.osbot.rs07.utility.Area; @ScriptManifest(name = "Express Fish", author = "Express", version =0.1, info = "Fishing", logo = "") public class Express extends Script { public static final int[] FISHING_ID = {303}; public static final int[] RAWFISH = {317}; public static final int[] FISH = {1530}; private static final Area FISH1 = new Area(3248, 3161, 3237, 3148); @Override public void onStart() { log("Welcome to Express Fish by Express."); log("If you experience any issues while running this script please report them to me on the forums."); log("Enjoy the script!"); //Code here will execute before the loop is started } private enum State { DROP, FISH }; private State getState() { if (inventory.isFull() && FISH1.contains(myPlayer())) return State.DROP; return State.FISH; } @Override public void onExit() { //Code here will execute after the script ends } @Override public int onLoop() throws InterruptedException { switch (getState()) { case DROP: inventory.dropAllExcept(FISHING_ID); break; case FISH: if (inventory.isEmptyExcept(303)); { Entity Spot = objects.closest(FISH); if (Spot != null) { Spot.interact("Net"); sleep(random(100, 300)); } } } return 100; //The amount of time in milliseconds before the loop starts over } @Override public void onPaint(Graphics2D g) { //This is where you will put your code for paint(s) } }
  14. Learning this Java stuff

×
×
  • Create New...