Jump to content

Shudsy

Scripter I
  • Posts

    841
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by Shudsy

  1. Why didn't we think of this before? Such a great candidate!
  2. 1. Pictures of the account stats 07 Stats. RS3 Stats. 2. Pictures of the login details 3. Pictures of the total wealth (if there is any) Dragon defender/Torso. 4. Pictures of the quests completed 5. The price you will be starting bids at Unknown. 6. The A/W (Auto-win) for your account 100M 7. The methods of payment you are accepting 07 Gold. 8. Your trading conditions You go first or MM. 9. Pictures of the account status 10. Original/previous owners AND Original Email Address I am original owner. Account has a username login.
  3. It's not in testing phase. if people find bugs i try to fix them asap and they'll be fixed later on during the day. I'll give you a trial for you to check out the script.
  4. PM or add my skype: ShudsyOsbot
  5. If you're getting TBed, you're simply dead. Sorry but i can't code anything that will save you from this, and Anti PK wil only work if someone just tries to attack and kill you. I can make it teleport back to edge. I'll push a update later today for this. If your character got skulled, it may be because the interactionEvent misclicked, and this isn't the fault of the script. However, why in the world didn't you turn attack off for players if it missclicked? This makes no sense. It should also world hop if you get killed or emergency teleports.
  6. Add my skype or PM me. You go first. Skype: Shudsyosbot Paying paypal
  7. Still looking. PM me if you got any accounts.
  8. Looking for a Zerker account. Don't care about untradeables, i can get them myself. Minimum stats: Attack: 60 Str: 80 Def: 40 Ranged: 70 Pray: Dont care Mage: 94 Has to have mandatory zerker quests and def quests done. Examples: RFD - Min rune gloves MM done with rewards claimed. Dragon slayer.
  9. I gave you a trial when you asked for 6 hours. Don't ask for trials if you cannot start using them from the time you ask. However, i'll give you one more, so try using it this time.
  10. Any proggies from people receiving trials are appreciated!
  11. Now on SDN! Would appreciate feedback and bug reports if you guys find any
  12. Shudsy

    tune

    I remember liking this song when i first heard it. Then bam it was all over youtube.
  13. Alek said "Tomorrow" then he said "Soon". And now we just sit calmy and wait
  14. Currently looking for someone to backup/back me up on sdmm when pking. Anyone that has a team with geared people? pref 70+ combat and ancients. My stats atm: Goal atm is getting 60 attack and 70+ str.
  15. Shudsy

    perm

    my thieving suicide acc got banned within the last hour aswell
  16. If you're looking for help then you need to start giving more specific questions. "Not starting" doesn't really help. Does the script start but it stands there and does nothing? or you cant even start it? put logs on your states and see if they log.
  17. 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. And you've compiled your script and put the .jar file in the osbot folder?
×
×
  • Create New...