Jump to content

snoots

Members
  • Posts

    15
  • Joined

  • Last visited

  • Feedback

    0%

Profile Information

  • Gender
    Male

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

snoots's Achievements

Newbie

Newbie (1/10)

5

Reputation

  1. I've been playing on this account while I'm AFK training my main. Before I put this account up for sale, I'm planning on reaching 65 on all melee, 61 slayer, 50 prayer, and getting a fire cape. Does anyone know how much approximately this account will go for? Thanks!
  2. Title says pretty much all, recently found my old account (f2p) that has level 30 on all stats anyone know how much it's worth? thinking about selling it for 30 USD edit: also has 10 quest points & not restricted (obviously)
  3. I removed the public and it didnt work, so I just removed the whole code and used myPlayer().
  4. I see no reason for the bot not to turn on at all, could someone hopefully tell me what I'm doing wrong? package SnootsAnchovyFisher; import org.osbot.rs07.api.map.Area; import org.osbot.rs07.api.model.NPC; import org.osbot.rs07.api.model.Player; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; import org.osbot.rs07.utility.ConditionalSleep; @ScriptManifest(version = 0.1, logo = "", info = "Simple Anchovy fisher & cooker", name = "Snoots' Anchovy Fisher", author = "Snoots") public class Main extends Script { // @NAME: Areas // @DESCRIPTION: All the areas we will be using private Area fishingArea = new Area(3266, 3149, 3278, 3139); private Area bankArea = new Area(3271, 3161, 3269, 3173); //This boolean determines if the player has chosen the fishing option or not static boolean isFishing = true; public Player bot = myPlayer(); // @NAME: Fishing Function // @DESCRIPTION: This method stores the code for the fishing bot public void fishingFunction() throws InterruptedException { NPC anchovyFish = getNpcs().closest("Fishing spot"); //If bot is at the fishing area & not interacting with the anchovies, then interact with them if(fishingArea.contains(bot)) { if(anchovyFish != null) { if(!bot.isInteracting(anchovyFish)) { if(anchovyFish.interact("Small Net")) { sleep(random(5000, 1000)); new ConditionalSleep(25000) { @Override public boolean condition() { return !bot.isInteracting(anchovyFish) || !anchovyFish.exists(); } }.sleep(); //If a dialogue opens up, click continue } if(dialogues.inDialogue()) { dialogues.clickContinue(); } } } //If bot is not at the fishing area, then walk to the fishing area } else if(!fishingArea.contains(bot)) { walking.webWalk(fishingArea); } } // @NAME: onStart function // @DESCRIPTION: Script gets executed once everytime the bot starts @Override public void onStart() { log("'Snoots' Anchovy fishing & cooking' has been started."); } // @NAME: onLoop function // @DESCRIPTION: Script loops whatever is inside this method @Override public int onLoop() throws InterruptedException { if(!getInventory().isFull() && isFishing == true) { fishingFunction(); } return 1000; } // @NAME: onExit function // @DESCRIPTION: Script gets executed once everytime the bot stops @Override public void onExit() { log("'Snoots' Anchovy fishing & cooking' has stopped."); } }
  5. Good idea, didn't mean to come off like that lol
  6. I don't want to do private scripts. I want to do scripts that I could put out publicly for everyone to use. I am just taking requests really. Sorry if the title is a bit misunderstanding.
  7. I have no idea where a post like this belongs, so my apologies if its the wrong place. In order to get some great practice for bot development, I decided that I'll do some free script requests! If you're interested, just plop down your discord bellow and I'll get in touch! ToS - You might have to provide the account. (depends if my botting account has the requirements to do what you request) - The script will be public. - The script's source code will be on GitHub. - I am not responsible for any bans. - I have the right to refuse to any script. (this includes if I already started writing the bot) Thank you! And I hope we'll get in touch soon!
  8. Hey guys, so I've been trying to make a fishing bot recently and I keep getting a weird bug. Usually when you fish using a small fishing net, the player casts the fishing net and doesn't stop fishing until the inventory is full or until there is no more fish. But my bot instead casts the fishing net, fishes for 10 seconds and then the animation stops. Does anyone have any idea why my player animation stops after 10 seconds? No, my bot doesn't click on the fishing spot after 10 seconds, the conditional sleep makes it so the bot waits for the animation to stop, or clicks on the fishing spot every 4 minutes. here is my code: Thanks in advance!
  9. sorry for late response, was at work. Here is a image of my module settings (since the bot is on a module) I used to make bots on poopbot, so I am currently using the poopbot method. It worked once for me with OSBot and then stopped working for some reason.
  10. It worked before, I'm not sure why I keep getting this error. I attached the artifact to the OSBot's client.jar, so I shouldn't be getting any errors from this.
  11. snoots

    Howdy

    Thanks for the warm welcome! and will do my friend, will do
  12. snoots

    Howdy

    Howdy, the name's snoots. I like Java and I like runescape. I think bots and automated programs are pretty bad ass. If you also like bots and runescape, then we are gonna be good friends. In all seriousness, looking forward for my stay here :^) hopefully I could join in on the scripting side of osbot and share some of my very own scripts here. see you around!
×
×
  • Create New...