Jump to content

Sean

Trade With Caution
  • Posts

    478
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by Sean

  1. Sean

    Perfect Thiever AIO

    can I get a trial please? Want to use for deadman mode EDIT: Thank you!
  2. You will have a high chance of being perma banned but do it at your own risk as you are flagged.
  3. Sean

    Bosses

    bandos for sure but mole etc is very easy
  4. Good fun... until you died
  5. They will sell LEGAL gold for less than gold sites. Don't worry you won't get banned if you buy from us
  6. Seems to be so many doing that though so why would they want to buy from me also? :P
  7. I mainly only sell accounts I make since I enjoy having money + making new accounts. What type of account should I make thats easy to sell/in demand. I can make probably 4+ at a time unless its not afk. Any suggestions?
  8. Il need to wait till I got my account with membership back :P
  9. Your friend got lucky then. Nothing to do with the script, just botting in general got you banned.
  10. Piety pure. Mine still going strong as fuck.
  11. The script doesn't start when I press the play button. It just sits on the client like no script is running so I can play as normal. Wondering what might be causing it to not start.
  12. When I press the play button. The script in general doesn't start so nothing happens. I don't get the stop button appearing so I can't even start it. Edit: Im off pc now so any code changes will need to happen tomorrow.
  13. Thx for the corrections Figured out why it wasn't appearing on my scripts list so that's fixed. Only problem Im having now is it won't start when I press the play button.
  14. Yea I put it here C:\Users\Sean\OSBot\Scripts\TrialScript.jar Also got an "x" here though
  15. Thank you changed that but the script still doesn't show up as a local script on the osbot client which is my main issue. Edit: I see alot of red "X" by the lines of my code. Is that an issue? (assuming)
  16. I could but don't want to embarrass myself if I did something retarded lol
  17. Was following this tutorial so shoutout to Apaec Bascially changing it up to make it pickpocket men in lumby. Problem I'm having currently is that the script won't start when I press the play button. So it doesn't run. Code here since people said post it import org.osbot.rs07.api.model.NPC; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; import java.awt.*; import java.lang.Thread.State; @ScriptManifest(author = "Sean", info = "My first script", name = "Man Pickpocketer", version = 0, logo = "") public class main extends Script { @Override public void onStart() { log("Welcome to my Trial Script (Thieving)"); } private enum State { PICKPOCKET, WAIT; }; private State getState(){ NPC Man = npcs.closest("Man"); if (Man != null) return State.PICKPOCKET; return State.WAIT; } @Override public int onLoop() throws InterruptedException { switch (getState()) { case PICKPOCKET: NPC Man = npcs.closest("Man"); if (Man !=null) { Man.interact("Pickpocket"); } break; case WAIT: sleep(random(400,600)); break; } return random(200, 300); } @Override public void onExit() { log("Thx for using this script"); } @Override public void onPaint(Graphics2D g) { } }
  18. How often do you bot with that script a day?
×
×
  • Create New...